freebsd-src/crypto/openssh/auth-passwd.c

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

224 lines
6.4 KiB
C
Raw Normal View History

2021-04-23 19:10:38 +00:00
/* $OpenBSD: auth-passwd.c,v 1.48 2020/10/18 11:32:01 djm Exp $ */
2000-02-24 14:29:47 +00: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.
*
* 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.
2000-02-24 14:29:47 +00:00
*/
#include "includes.h"
2006-09-30 13:29:51 +00:00
#include <sys/types.h>
#include <pwd.h>
#include <stdio.h>
#include <string.h>
#include <stdarg.h>
2000-02-24 14:29:47 +00:00
#include "packet.h"
2018-08-28 10:47:58 +00:00
#include "sshbuf.h"
#include "ssherr.h"
#include "log.h"
2015-01-05 16:09:55 +00:00
#include "misc.h"
#include "servconf.h"
2018-08-28 10:47:58 +00:00
#include "sshkey.h"
2006-09-30 13:29:51 +00:00
#include "hostfile.h"
#include "auth.h"
2004-02-26 10:38:49 +00:00
#include "auth-options.h"
2000-02-24 14:29:47 +00:00
2018-08-28 10:47:58 +00:00
extern struct sshbuf *loginmsg;
2004-01-07 11:10:17 +00:00
extern ServerOptions options;
2004-02-26 10:38:49 +00:00
2005-06-05 15:40:50 +00: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 */
2017-01-31 12:29:48 +00:00
#define MAX_PASSWORD_LEN 1024
2000-02-24 14:29:47 +00:00
/*
* Tries to authenticate the user using password. Returns true if
* authentication succeeds.
*/
2000-05-15 04:37:24 +00:00
int
2018-05-06 12:27:04 +00:00
auth_password(struct ssh *ssh, const char *password)
2000-02-24 14:29:47 +00:00
{
2018-05-06 12:27:04 +00:00
Authctxt *authctxt = ssh->authctxt;
struct passwd *pw = authctxt->pw;
2005-06-05 15:40:50 +00:00
int result, ok = authctxt->valid;
2004-10-28 16:03:53 +00:00
#if defined(USE_SHADOW) && defined(HAS_SHADOW_EXPIRE)
2004-02-26 10:38:49 +00:00
static int expire_checked = 0;
2004-10-28 16:03:53 +00:00
#endif
2000-02-24 14:29:47 +00:00
2017-01-31 12:29:48 +00:00
if (strlen(password) > MAX_PASSWORD_LEN)
return 0;
2002-06-27 22:31:32 +00:00
#ifndef HAVE_CYGWIN
2004-02-26 10:38:49 +00:00
if (pw->pw_uid == 0 && options.permit_root_login != PERMIT_YES)
2004-01-07 11:10:17 +00:00
ok = 0;
2002-06-27 22:31:32 +00:00
#endif
2000-02-24 14:29:47 +00:00
if (*password == '\0' && options.permit_empty_passwd == 0)
return 0;
2004-02-26 10:38:49 +00:00
#ifdef KRB5
2002-03-18 09:55:03 +00:00
if (options.kerberos_authentication == 1) {
int ret = auth_krb5_password(authctxt, password);
if (ret == 1 || ret == 0)
2004-01-07 11:10:17 +00:00
return ret && ok;
2002-03-18 09:55:03 +00:00
/* Fall back to ordinary passwd authentication. */
}
2004-02-26 10:38:49 +00:00
#endif
#ifdef HAVE_CYGWIN
2009-10-01 15:19:37 +00:00
{
2002-06-27 22:31:32 +00:00
HANDLE hToken = cygwin_logon_user(pw, password);
if (hToken == INVALID_HANDLE_VALUE)
return 0;
cygwin_set_impersonation_token(hToken);
2004-01-07 11:10:17 +00:00
return ok;
2002-06-27 22:31:32 +00:00
}
2004-02-26 10:38:49 +00:00
#endif
2004-10-28 16:03:53 +00:00
#ifdef USE_PAM
if (options.use_pam)
return (sshpam_auth_passwd(authctxt, password) && ok);
#endif
2004-02-26 10:38:49 +00:00
#if defined(USE_SHADOW) && defined(HAS_SHADOW_EXPIRE)
if (!expire_checked) {
expire_checked = 1;
2005-06-05 15:40:50 +00:00
if (auth_shadow_pwexpired(authctxt))
2004-02-26 10:38:49 +00:00
authctxt->force_pwchange = 1;
}
#endif
2018-05-06 12:27:04 +00:00
result = sys_auth_passwd(ssh, password);
2005-06-05 15:40:50 +00:00
if (authctxt->force_pwchange)
2018-05-06 12:27:04 +00:00
auth_restrict_session(ssh);
2005-06-05 15:40:50 +00:00
return (result && ok);
2004-02-26 10:38:49 +00:00
}
2004-01-07 11:10:17 +00:00
2004-02-26 10:38:49 +00:00
#ifdef BSD_AUTH
2005-06-05 15:40:50 +00:00
static void
warn_expiry(Authctxt *authctxt, auth_session_t *as)
{
2018-08-28 10:47:58 +00:00
int r;
2005-06-05 15:40:50 +00:00
quad_t pwtimeleft, actimeleft, daysleft, pwwarntime, acwarntime;
pwwarntime = acwarntime = TWO_WEEKS;
pwtimeleft = auth_check_change(as);
actimeleft = auth_check_expire(as);
#ifdef HAVE_LOGIN_CAP
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;
2018-08-28 10:47:58 +00:00
if ((r = sshbuf_putf(loginmsg,
2005-06-05 15:40:50 +00:00
"Your password will expire in %lld day%s.\n",
2018-08-28 10:47:58 +00:00
daysleft, daysleft == 1 ? "" : "s")) != 0)
2021-04-23 19:10:38 +00:00
fatal_fr(r, "buffer error");
2005-06-05 15:40:50 +00:00
}
if (actimeleft != 0 && actimeleft < acwarntime) {
daysleft = actimeleft / DAY + 1;
2018-08-28 10:47:58 +00:00
if ((r = sshbuf_putf(loginmsg,
2005-06-05 15:40:50 +00:00
"Your account will expire in %lld day%s.\n",
2018-08-28 10:47:58 +00:00
daysleft, daysleft == 1 ? "" : "s")) != 0)
2021-04-23 19:10:38 +00:00
fatal_fr(r, "buffer error");
2005-06-05 15:40:50 +00:00
}
}
2004-02-26 10:38:49 +00:00
int
2018-05-06 12:27:04 +00:00
sys_auth_passwd(struct ssh *ssh, const char *password)
2004-02-26 10:38:49 +00:00
{
2018-05-06 12:27:04 +00:00
Authctxt *authctxt = ssh->authctxt;
2004-02-26 10:38:49 +00:00
auth_session_t *as;
2005-06-05 15:40:50 +00:00
static int expire_checked = 0;
2004-02-26 10:38:49 +00:00
2018-05-06 12:27:04 +00:00
as = auth_usercheck(authctxt->pw->pw_name, authctxt->style, "auth-ssh",
2004-02-26 10:38:49 +00:00
(char *)password);
2005-09-03 06:59:33 +00:00
if (as == NULL)
return (0);
2004-02-26 10:38:49 +00:00
if (auth_getstate(as) & AUTH_PWEXPIRED) {
auth_close(as);
2018-05-06 12:27:04 +00:00
auth_restrict_session(ssh);
2004-02-26 10:38:49 +00:00
authctxt->force_pwchange = 1;
return (1);
} else {
2005-06-05 15:40:50 +00:00
if (!expire_checked) {
expire_checked = 1;
warn_expiry(authctxt, as);
}
2004-02-26 10:38:49 +00:00
return (auth_close(as));
2000-02-24 14:29:47 +00:00
}
2004-02-26 10:38:49 +00:00
}
#elif !defined(CUSTOM_SYS_AUTH_PASSWD)
int
2018-05-06 12:27:04 +00:00
sys_auth_passwd(struct ssh *ssh, const char *password)
2004-02-26 10:38:49 +00:00
{
2018-05-06 12:27:04 +00:00
Authctxt *authctxt = ssh->authctxt;
2004-02-26 10:38:49 +00:00
struct passwd *pw = authctxt->pw;
2017-01-31 12:29:48 +00:00
char *encrypted_password, *salt = NULL;
2004-02-26 10:38:49 +00:00
2004-01-07 11:10:17 +00:00
/* Just use the supplied fake password if authctxt is invalid */
char *pw_password = authctxt->valid ? shadow_pw(pw) : pw->pw_passwd;
2002-06-27 22:31:32 +00:00
2019-02-05 15:03:53 +00:00
if (pw_password == NULL)
return 0;
2000-02-24 14:29:47 +00:00
/* Check for users with no password. */
2004-01-07 11:10:17 +00:00
if (strcmp(pw_password, "") == 0 && strcmp(password, "") == 0)
2004-02-26 10:38:49 +00:00
return (1);
2004-01-07 11:10:17 +00:00
2017-01-31 12:29:48 +00:00
/*
* Encrypt the candidate password using the proper salt, or pass a
* NULL and let xcrypt pick one.
*/
if (authctxt->valid && pw_password[0] && pw_password[1])
salt = pw_password;
encrypted_password = xcrypt(password, salt);
2002-06-27 22:31:32 +00:00
2004-02-26 10:38:49 +00:00
/*
* Authentication is accepted if the encrypted passwords
* are identical.
*/
2012-08-29 15:55:54 +00:00
return encrypted_password != NULL &&
strcmp(encrypted_password, pw_password) == 0;
2000-02-24 14:29:47 +00:00
}
2004-02-26 10:38:49 +00:00
#endif