2007-10-26 06:25:12 +02:00
|
|
|
/* $OpenBSD: auth-passwd.c,v 1.43 2007/09/21 08:15:29 djm Exp $ */
|
1999-10-27 05:42:43 +02:00
|
|
|
/*
|
1999-11-24 14:26:21 +01:00
|
|
|
* Author: Tatu Ylonen <ylo@cs.hut.fi>
|
|
|
|
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
|
|
|
|
* All rights reserved
|
|
|
|
* Password authentication. This file contains the functions to check whether
|
|
|
|
* the password is valid for the user.
|
2000-09-16 04:29:08 +02:00
|
|
|
*
|
|
|
|
* As far as I am concerned, the code I have written for this software
|
|
|
|
* can be used freely for any purpose. Any derived versions of this
|
|
|
|
* software must be clearly marked as such, and if the derived work is
|
|
|
|
* incompatible with the protocol description in the RFC file, it must be
|
|
|
|
* called by a name other than "ssh" or "Secure Shell".
|
|
|
|
*
|
|
|
|
* Copyright (c) 1999 Dug Song. All rights reserved.
|
|
|
|
* Copyright (c) 2000 Markus Friedl. All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
|
|
|
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|
|
|
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|
|
|
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|
|
|
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|
|
|
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
1999-11-24 14:26:21 +01:00
|
|
|
*/
|
1999-10-27 05:42:43 +02:00
|
|
|
|
|
|
|
#include "includes.h"
|
|
|
|
|
2006-07-10 12:53:08 +02:00
|
|
|
#include <sys/types.h>
|
|
|
|
|
|
|
|
#include <pwd.h>
|
2006-08-05 03:37:59 +02:00
|
|
|
#include <stdio.h>
|
2006-07-24 06:13:33 +02:00
|
|
|
#include <string.h>
|
2006-08-05 04:39:39 +02:00
|
|
|
#include <stdarg.h>
|
2006-07-10 12:53:08 +02:00
|
|
|
|
1999-10-27 05:42:43 +02:00
|
|
|
#include "packet.h"
|
2005-01-24 11:55:49 +01:00
|
|
|
#include "buffer.h"
|
2001-01-22 06:34:40 +01:00
|
|
|
#include "log.h"
|
|
|
|
#include "servconf.h"
|
2006-08-05 04:39:39 +02:00
|
|
|
#include "key.h"
|
|
|
|
#include "hostfile.h"
|
2001-01-19 05:26:52 +01:00
|
|
|
#include "auth.h"
|
2004-02-06 06:24:31 +01:00
|
|
|
#include "auth-options.h"
|
2001-02-18 07:01:00 +01:00
|
|
|
|
2005-01-24 11:55:49 +01:00
|
|
|
extern Buffer loginmsg;
|
2001-02-18 07:01:00 +01:00
|
|
|
extern ServerOptions options;
|
2004-02-06 06:24:31 +01:00
|
|
|
|
2005-01-24 11:55:49 +01:00
|
|
|
#ifdef HAVE_LOGIN_CAP
|
|
|
|
extern login_cap_t *lc;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
#define DAY (24L * 60 * 60) /* 1 day in seconds */
|
|
|
|
#define TWO_WEEKS (2L * 7 * DAY) /* 2 weeks in seconds */
|
|
|
|
|
2004-02-10 02:50:19 +01:00
|
|
|
void
|
2004-02-06 06:24:31 +01:00
|
|
|
disable_forwarding(void)
|
|
|
|
{
|
|
|
|
no_port_forwarding_flag = 1;
|
|
|
|
no_agent_forwarding_flag = 1;
|
|
|
|
no_x11_forwarding_flag = 1;
|
|
|
|
}
|
2001-02-18 07:01:00 +01:00
|
|
|
|
1999-11-24 14:26:21 +01:00
|
|
|
/*
|
|
|
|
* Tries to authenticate the user using password. Returns true if
|
|
|
|
* authentication succeeds.
|
|
|
|
*/
|
2000-04-16 03:18:38 +02:00
|
|
|
int
|
2001-02-18 07:01:00 +01:00
|
|
|
auth_password(Authctxt *authctxt, const char *password)
|
1999-10-27 05:42:43 +02:00
|
|
|
{
|
2002-05-10 04:40:15 +02:00
|
|
|
struct passwd * pw = authctxt->pw;
|
2005-02-09 07:08:23 +01:00
|
|
|
int result, ok = authctxt->valid;
|
2004-06-22 05:37:11 +02:00
|
|
|
#if defined(USE_SHADOW) && defined(HAS_SHADOW_EXPIRE)
|
2004-02-22 00:23:35 +01:00
|
|
|
static int expire_checked = 0;
|
2004-06-22 05:37:11 +02:00
|
|
|
#endif
|
1999-10-27 05:42:43 +02:00
|
|
|
|
2000-09-05 07:13:06 +02:00
|
|
|
#ifndef HAVE_CYGWIN
|
2003-11-17 11:13:40 +01:00
|
|
|
if (pw->pw_uid == 0 && options.permit_root_login != PERMIT_YES)
|
2003-04-29 15:22:40 +02:00
|
|
|
ok = 0;
|
2000-09-05 07:13:06 +02:00
|
|
|
#endif
|
2002-05-10 04:40:15 +02:00
|
|
|
if (*password == '\0' && options.permit_empty_passwd == 0)
|
2003-04-29 15:22:40 +02:00
|
|
|
return 0;
|
2003-07-24 08:52:13 +02:00
|
|
|
|
2004-02-06 06:24:31 +01:00
|
|
|
#ifdef KRB5
|
2001-07-04 06:21:14 +02:00
|
|
|
if (options.kerberos_authentication == 1) {
|
|
|
|
int ret = auth_krb5_password(authctxt, password);
|
|
|
|
if (ret == 1 || ret == 0)
|
2003-09-02 23:32:45 +02:00
|
|
|
return ret && ok;
|
2001-07-04 06:21:14 +02:00
|
|
|
/* Fall back to ordinary passwd authentication. */
|
|
|
|
}
|
2004-02-06 06:24:31 +01:00
|
|
|
#endif
|
|
|
|
#ifdef HAVE_CYGWIN
|
2009-03-08 01:40:27 +01:00
|
|
|
{
|
2000-09-05 07:13:06 +02:00
|
|
|
HANDLE hToken = cygwin_logon_user(pw, password);
|
|
|
|
|
|
|
|
if (hToken == INVALID_HANDLE_VALUE)
|
2003-09-02 23:32:45 +02:00
|
|
|
return 0;
|
2000-09-05 07:13:06 +02:00
|
|
|
cygwin_set_impersonation_token(hToken);
|
2003-09-02 23:32:45 +02:00
|
|
|
return ok;
|
2000-09-05 07:13:06 +02:00
|
|
|
}
|
2004-02-06 06:24:31 +01:00
|
|
|
#endif
|
2004-05-30 12:43:59 +02:00
|
|
|
#ifdef USE_PAM
|
|
|
|
if (options.use_pam)
|
|
|
|
return (sshpam_auth_passwd(authctxt, password) && ok);
|
|
|
|
#endif
|
2004-02-11 08:48:52 +01:00
|
|
|
#if defined(USE_SHADOW) && defined(HAS_SHADOW_EXPIRE)
|
2004-02-22 00:23:35 +01:00
|
|
|
if (!expire_checked) {
|
|
|
|
expire_checked = 1;
|
2005-02-09 07:08:23 +01:00
|
|
|
if (auth_shadow_pwexpired(authctxt))
|
2004-02-22 00:23:35 +01:00
|
|
|
authctxt->force_pwchange = 1;
|
2004-02-10 03:01:14 +01:00
|
|
|
}
|
|
|
|
#endif
|
2005-02-09 07:08:23 +01:00
|
|
|
result = sys_auth_passwd(authctxt, password);
|
|
|
|
if (authctxt->force_pwchange)
|
|
|
|
disable_forwarding();
|
|
|
|
return (result && ok);
|
2004-02-06 06:24:31 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef BSD_AUTH
|
2005-01-24 11:55:49 +01:00
|
|
|
static void
|
|
|
|
warn_expiry(Authctxt *authctxt, auth_session_t *as)
|
|
|
|
{
|
|
|
|
char buf[256];
|
|
|
|
quad_t pwtimeleft, actimeleft, daysleft, pwwarntime, acwarntime;
|
|
|
|
|
|
|
|
pwwarntime = acwarntime = TWO_WEEKS;
|
|
|
|
|
|
|
|
pwtimeleft = auth_check_change(as);
|
|
|
|
actimeleft = auth_check_expire(as);
|
2005-01-24 12:50:47 +01:00
|
|
|
#ifdef HAVE_LOGIN_CAP
|
2005-01-24 11:55:49 +01:00
|
|
|
if (authctxt->valid) {
|
|
|
|
pwwarntime = login_getcaptime(lc, "password-warn", TWO_WEEKS,
|
|
|
|
TWO_WEEKS);
|
|
|
|
acwarntime = login_getcaptime(lc, "expire-warn", TWO_WEEKS,
|
|
|
|
TWO_WEEKS);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
if (pwtimeleft != 0 && pwtimeleft < pwwarntime) {
|
|
|
|
daysleft = pwtimeleft / DAY + 1;
|
|
|
|
snprintf(buf, sizeof(buf),
|
|
|
|
"Your password will expire in %lld day%s.\n",
|
|
|
|
daysleft, daysleft == 1 ? "" : "s");
|
|
|
|
buffer_append(&loginmsg, buf, strlen(buf));
|
|
|
|
}
|
|
|
|
if (actimeleft != 0 && actimeleft < acwarntime) {
|
|
|
|
daysleft = actimeleft / DAY + 1;
|
|
|
|
snprintf(buf, sizeof(buf),
|
|
|
|
"Your account will expire in %lld day%s.\n",
|
|
|
|
daysleft, daysleft == 1 ? "" : "s");
|
|
|
|
buffer_append(&loginmsg, buf, strlen(buf));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-02-06 06:24:31 +01:00
|
|
|
int
|
|
|
|
sys_auth_passwd(Authctxt *authctxt, const char *password)
|
|
|
|
{
|
|
|
|
struct passwd *pw = authctxt->pw;
|
|
|
|
auth_session_t *as;
|
2005-01-24 11:55:49 +01:00
|
|
|
static int expire_checked = 0;
|
2004-02-06 06:24:31 +01:00
|
|
|
|
|
|
|
as = auth_usercheck(pw->pw_name, authctxt->style, "auth-ssh",
|
|
|
|
(char *)password);
|
2005-07-26 13:54:11 +02:00
|
|
|
if (as == NULL)
|
|
|
|
return (0);
|
2004-02-06 06:24:31 +01:00
|
|
|
if (auth_getstate(as) & AUTH_PWEXPIRED) {
|
|
|
|
auth_close(as);
|
|
|
|
disable_forwarding();
|
|
|
|
authctxt->force_pwchange = 1;
|
|
|
|
return (1);
|
|
|
|
} else {
|
2005-01-24 11:55:49 +01:00
|
|
|
if (!expire_checked) {
|
|
|
|
expire_checked = 1;
|
|
|
|
warn_expiry(authctxt, as);
|
|
|
|
}
|
2004-02-06 06:24:31 +01:00
|
|
|
return (auth_close(as));
|
|
|
|
}
|
|
|
|
}
|
2004-02-10 02:50:19 +01:00
|
|
|
#elif !defined(CUSTOM_SYS_AUTH_PASSWD)
|
2004-02-06 06:24:31 +01:00
|
|
|
int
|
|
|
|
sys_auth_passwd(Authctxt *authctxt, const char *password)
|
|
|
|
{
|
|
|
|
struct passwd *pw = authctxt->pw;
|
|
|
|
char *encrypted_password;
|
|
|
|
|
2003-09-02 23:32:45 +02:00
|
|
|
/* Just use the supplied fake password if authctxt is invalid */
|
|
|
|
char *pw_password = authctxt->valid ? shadow_pw(pw) : pw->pw_passwd;
|
2000-09-16 06:55:52 +02:00
|
|
|
|
|
|
|
/* Check for users with no password. */
|
2003-09-18 10:25:46 +02:00
|
|
|
if (strcmp(pw_password, "") == 0 && strcmp(password, "") == 0)
|
2004-02-06 06:24:31 +01:00
|
|
|
return (1);
|
2003-07-24 08:52:13 +02:00
|
|
|
|
2004-02-06 06:24:31 +01:00
|
|
|
/* Encrypt the candidate password using the proper salt. */
|
|
|
|
encrypted_password = xcrypt(password,
|
|
|
|
(pw_password[0] && pw_password[1]) ? pw_password : "xx");
|
1999-11-13 05:40:10 +01:00
|
|
|
|
2004-02-06 06:24:31 +01:00
|
|
|
/*
|
|
|
|
* Authentication is accepted if the encrypted passwords
|
|
|
|
* are identical.
|
|
|
|
*/
|
2012-04-26 01:51:26 +02:00
|
|
|
return encrypted_password != NULL &&
|
|
|
|
strcmp(encrypted_password, pw_password) == 0;
|
2002-04-04 21:02:28 +02:00
|
|
|
}
|
2004-02-06 06:24:31 +01:00
|
|
|
#endif
|