blob: 654e0b8213e1d9df860e8c1a169b077357ff2833 [file] [log] [blame]
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001/*
Damien Miller95def091999-11-25 00:26:21 +11002 * Author: Tatu Ylonen <ylo@cs.hut.fi>
3 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
4 * All rights reserved
Damien Miller95def091999-11-25 00:26:21 +11005 * Password authentication. This file contains the functions to check whether
6 * the password is valid for the user.
Damien Millere4340be2000-09-16 13:29:08 +11007 *
8 * As far as I am concerned, the code I have written for this software
9 * can be used freely for any purpose. Any derived versions of this
10 * software must be clearly marked as such, and if the derived work is
11 * incompatible with the protocol description in the RFC file, it must be
12 * called by a name other than "ssh" or "Secure Shell".
13 *
Damien Millere4340be2000-09-16 13:29:08 +110014 * Copyright (c) 1999 Dug Song. All rights reserved.
Damien Millere4340be2000-09-16 13:29:08 +110015 * Copyright (c) 2000 Markus Friedl. All rights reserved.
16 *
17 * Redistribution and use in source and binary forms, with or without
18 * modification, are permitted provided that the following conditions
19 * are met:
20 * 1. Redistributions of source code must retain the above copyright
21 * notice, this list of conditions and the following disclaimer.
22 * 2. Redistributions in binary form must reproduce the above copyright
23 * notice, this list of conditions and the following disclaimer in the
24 * documentation and/or other materials provided with the distribution.
25 *
26 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
27 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
28 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
29 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
30 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
31 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
32 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
33 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
34 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
35 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Damien Miller95def091999-11-25 00:26:21 +110036 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100037
38#include "includes.h"
Darren Tucker218f1782005-01-24 22:50:47 +110039RCSID("$OpenBSD: auth-passwd.c,v 1.33 2005/01/24 11:47:13 dtucker Exp $");
Damien Millerd4a8b7e1999-10-27 13:42:43 +100040
41#include "packet.h"
Darren Tucker5c14c732005-01-24 21:55:49 +110042#include "buffer.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000043#include "log.h"
44#include "servconf.h"
Ben Lindstromdb65e8f2001-01-19 04:26:52 +000045#include "auth.h"
Darren Tucker23bc8d02004-02-06 16:24:31 +110046#include "auth-options.h"
Damien Miller60396b02001-02-18 17:01:00 +110047
Darren Tucker5c14c732005-01-24 21:55:49 +110048extern Buffer loginmsg;
Damien Miller60396b02001-02-18 17:01:00 +110049extern ServerOptions options;
Darren Tucker23bc8d02004-02-06 16:24:31 +110050
Darren Tucker5c14c732005-01-24 21:55:49 +110051#ifdef HAVE_LOGIN_CAP
52extern login_cap_t *lc;
53#endif
54
55
56#define DAY (24L * 60 * 60) /* 1 day in seconds */
57#define TWO_WEEKS (2L * 7 * DAY) /* 2 weeks in seconds */
58
Darren Tuckere3dba822004-02-10 12:50:19 +110059void
Darren Tucker23bc8d02004-02-06 16:24:31 +110060disable_forwarding(void)
61{
62 no_port_forwarding_flag = 1;
63 no_agent_forwarding_flag = 1;
64 no_x11_forwarding_flag = 1;
65}
Damien Miller60396b02001-02-18 17:01:00 +110066
Damien Miller95def091999-11-25 00:26:21 +110067/*
68 * Tries to authenticate the user using password. Returns true if
69 * authentication succeeds.
70 */
Damien Miller4af51302000-04-16 11:18:38 +100071int
Damien Miller60396b02001-02-18 17:01:00 +110072auth_password(Authctxt *authctxt, const char *password)
Damien Millerd4a8b7e1999-10-27 13:42:43 +100073{
Ben Lindstrom0b478142002-05-10 02:40:15 +000074 struct passwd * pw = authctxt->pw;
Darren Tucker92170a82005-02-09 17:08:23 +110075 int result, ok = authctxt->valid;
Ben Lindstrome35bf122004-06-22 03:37:11 +000076#if defined(USE_SHADOW) && defined(HAS_SHADOW_EXPIRE)
Darren Tuckerb4dc6c22004-02-22 10:23:35 +110077 static int expire_checked = 0;
Ben Lindstrome35bf122004-06-22 03:37:11 +000078#endif
Damien Millerd4a8b7e1999-10-27 13:42:43 +100079
Damien Millerbac2d8a2000-09-05 16:13:06 +110080#ifndef HAVE_CYGWIN
Damien Miller3e3b5142003-11-17 21:13:40 +110081 if (pw->pw_uid == 0 && options.permit_root_login != PERMIT_YES)
Damien Millereab4bae2003-04-29 23:22:40 +100082 ok = 0;
Damien Millerbac2d8a2000-09-05 16:13:06 +110083#endif
Ben Lindstrom0b478142002-05-10 02:40:15 +000084 if (*password == '\0' && options.permit_empty_passwd == 0)
Damien Millereab4bae2003-04-29 23:22:40 +100085 return 0;
Ben Lindstrom0410e322003-07-24 06:52:13 +000086
Darren Tucker23bc8d02004-02-06 16:24:31 +110087#ifdef KRB5
Ben Lindstromec95ed92001-07-04 04:21:14 +000088 if (options.kerberos_authentication == 1) {
89 int ret = auth_krb5_password(authctxt, password);
90 if (ret == 1 || ret == 0)
Damien Miller856f0be2003-09-03 07:32:45 +100091 return ret && ok;
Ben Lindstromec95ed92001-07-04 04:21:14 +000092 /* Fall back to ordinary passwd authentication. */
93 }
Darren Tucker23bc8d02004-02-06 16:24:31 +110094#endif
95#ifdef HAVE_CYGWIN
Damien Millerbac2d8a2000-09-05 16:13:06 +110096 if (is_winnt) {
97 HANDLE hToken = cygwin_logon_user(pw, password);
98
99 if (hToken == INVALID_HANDLE_VALUE)
Damien Miller856f0be2003-09-03 07:32:45 +1000100 return 0;
Damien Millerbac2d8a2000-09-05 16:13:06 +1100101 cygwin_set_impersonation_token(hToken);
Damien Miller856f0be2003-09-03 07:32:45 +1000102 return ok;
Damien Millerbac2d8a2000-09-05 16:13:06 +1100103 }
Darren Tucker23bc8d02004-02-06 16:24:31 +1100104#endif
Darren Tucker450a1582004-05-30 20:43:59 +1000105#ifdef USE_PAM
106 if (options.use_pam)
107 return (sshpam_auth_passwd(authctxt, password) && ok);
108#endif
Darren Tuckercee6d4c2004-02-11 18:48:52 +1100109#if defined(USE_SHADOW) && defined(HAS_SHADOW_EXPIRE)
Darren Tuckerb4dc6c22004-02-22 10:23:35 +1100110 if (!expire_checked) {
111 expire_checked = 1;
Darren Tucker92170a82005-02-09 17:08:23 +1100112 if (auth_shadow_pwexpired(authctxt))
Darren Tuckerb4dc6c22004-02-22 10:23:35 +1100113 authctxt->force_pwchange = 1;
Darren Tucker9df3def2004-02-10 13:01:14 +1100114 }
115#endif
Darren Tucker92170a82005-02-09 17:08:23 +1100116 result = sys_auth_passwd(authctxt, password);
117 if (authctxt->force_pwchange)
118 disable_forwarding();
119 return (result && ok);
Darren Tucker23bc8d02004-02-06 16:24:31 +1100120}
121
122#ifdef BSD_AUTH
Darren Tucker5c14c732005-01-24 21:55:49 +1100123static void
124warn_expiry(Authctxt *authctxt, auth_session_t *as)
125{
126 char buf[256];
127 quad_t pwtimeleft, actimeleft, daysleft, pwwarntime, acwarntime;
128
129 pwwarntime = acwarntime = TWO_WEEKS;
130
131 pwtimeleft = auth_check_change(as);
132 actimeleft = auth_check_expire(as);
Darren Tucker218f1782005-01-24 22:50:47 +1100133#ifdef HAVE_LOGIN_CAP
Darren Tucker5c14c732005-01-24 21:55:49 +1100134 if (authctxt->valid) {
135 pwwarntime = login_getcaptime(lc, "password-warn", TWO_WEEKS,
136 TWO_WEEKS);
137 acwarntime = login_getcaptime(lc, "expire-warn", TWO_WEEKS,
138 TWO_WEEKS);
139 }
140#endif
141 if (pwtimeleft != 0 && pwtimeleft < pwwarntime) {
142 daysleft = pwtimeleft / DAY + 1;
143 snprintf(buf, sizeof(buf),
144 "Your password will expire in %lld day%s.\n",
145 daysleft, daysleft == 1 ? "" : "s");
146 buffer_append(&loginmsg, buf, strlen(buf));
147 }
148 if (actimeleft != 0 && actimeleft < acwarntime) {
149 daysleft = actimeleft / DAY + 1;
150 snprintf(buf, sizeof(buf),
151 "Your account will expire in %lld day%s.\n",
152 daysleft, daysleft == 1 ? "" : "s");
153 buffer_append(&loginmsg, buf, strlen(buf));
154 }
155}
156
Darren Tucker23bc8d02004-02-06 16:24:31 +1100157int
158sys_auth_passwd(Authctxt *authctxt, const char *password)
159{
160 struct passwd *pw = authctxt->pw;
161 auth_session_t *as;
Darren Tucker5c14c732005-01-24 21:55:49 +1100162 static int expire_checked = 0;
Darren Tucker23bc8d02004-02-06 16:24:31 +1100163
164 as = auth_usercheck(pw->pw_name, authctxt->style, "auth-ssh",
165 (char *)password);
166 if (auth_getstate(as) & AUTH_PWEXPIRED) {
167 auth_close(as);
168 disable_forwarding();
169 authctxt->force_pwchange = 1;
170 return (1);
171 } else {
Darren Tucker5c14c732005-01-24 21:55:49 +1100172 if (!expire_checked) {
173 expire_checked = 1;
174 warn_expiry(authctxt, as);
175 }
Darren Tucker23bc8d02004-02-06 16:24:31 +1100176 return (auth_close(as));
177 }
178}
Darren Tuckere3dba822004-02-10 12:50:19 +1100179#elif !defined(CUSTOM_SYS_AUTH_PASSWD)
Darren Tucker23bc8d02004-02-06 16:24:31 +1100180int
181sys_auth_passwd(Authctxt *authctxt, const char *password)
182{
183 struct passwd *pw = authctxt->pw;
184 char *encrypted_password;
185
Damien Miller856f0be2003-09-03 07:32:45 +1000186 /* Just use the supplied fake password if authctxt is invalid */
187 char *pw_password = authctxt->valid ? shadow_pw(pw) : pw->pw_passwd;
Damien Miller8a1e6a62000-09-16 15:55:52 +1100188
189 /* Check for users with no password. */
Damien Miller5d07e6d2003-09-18 18:25:46 +1000190 if (strcmp(pw_password, "") == 0 && strcmp(password, "") == 0)
Darren Tucker23bc8d02004-02-06 16:24:31 +1100191 return (1);
Damien Miller2e1b0821999-12-25 10:11:29 +1100192
Darren Tucker23bc8d02004-02-06 16:24:31 +1100193 /* Encrypt the candidate password using the proper salt. */
194 encrypted_password = xcrypt(password,
195 (pw_password[0] && pw_password[1]) ? pw_password : "xx");
Damien Miller2e1b0821999-12-25 10:11:29 +1100196
Darren Tucker23bc8d02004-02-06 16:24:31 +1100197 /*
198 * Authentication is accepted if the encrypted passwords
199 * are identical.
200 */
201 return (strcmp(encrypted_password, pw_password) == 0);
Kevin Stevese683e762002-04-04 19:02:28 +0000202}
Darren Tucker23bc8d02004-02-06 16:24:31 +1100203#endif