]> andersk Git - openssh.git/blame - auth-passwd.c
- (bal) Slight auth2-pam.c clean up.
[openssh.git] / auth-passwd.c
CommitLineData
8efc0c15 1/*
5260325f 2 * Author: Tatu Ylonen <ylo@cs.hut.fi>
3 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
4 * All rights reserved
5260325f 5 * Password authentication. This file contains the functions to check whether
6 * the password is valid for the user.
bcbf86ec 7 *
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 *
bcbf86ec 14 * Copyright (c) 1999 Dug Song. All rights reserved.
bcbf86ec 15 * 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.
5260325f 36 */
8efc0c15 37
38#include "includes.h"
59c97189 39RCSID("$OpenBSD: auth-passwd.c,v 1.19 2001/01/18 16:59:59 markus Exp $");
8efc0c15 40
4d33e531 41#if !defined(USE_PAM) && !defined(HAVE_OSF_SIA)
42
8efc0c15 43#include "packet.h"
44#include "ssh.h"
45#include "servconf.h"
46#include "xmalloc.h"
b2344d54 47
59c97189 48#include "auth.h"
49
4c40f834 50#ifdef WITH_AIXAUTHENTICATE
2b763e31 51# include <login.h>
52#endif
0bbfbdeb 53#ifdef __hpux
2b763e31 54# include <hpsecurity.h>
55# include <prot.h>
4c40f834 56#endif
77bb0bca 57#ifdef HAVE_SCO_PROTECTED_PW
58# include <sys/security.h>
59# include <sys/audit.h>
60# include <prot.h>
61#endif /* HAVE_SCO_PROTECTED_PW */
0bbfbdeb 62#if defined(HAVE_SHADOW_H) && !defined(DISABLE_SHADOW)
d94aa2ae 63# include <shadow.h>
caf3bc51 64#endif
0bbfbdeb 65#if defined(HAVE_GETPWANAM) && !defined(DISABLE_SHADOW)
a423beaf 66# include <sys/label.h>
67# include <sys/audit.h>
68# include <pwdadj.h>
69#endif
d94aa2ae 70#if defined(HAVE_MD5_PASSWORDS) && !defined(HAVE_MD5_CRYPT)
71# include "md5crypt.h"
72#endif /* defined(HAVE_MD5_PASSWORDS) && !defined(HAVE_MD5_CRYPT) */
caf3bc51 73
3c62e7eb 74#ifdef HAVE_CYGWIN
75#undef ERROR
76#include <windows.h>
77#include <sys/cygwin.h>
78#define is_winnt (GetVersion() < 0x80000000)
79#endif
80
5260325f 81/*
82 * Tries to authenticate the user using password. Returns true if
83 * authentication succeeds.
84 */
6ae2364d 85int
5260325f 86auth_password(struct passwd * pw, const char *password)
8efc0c15 87{
5260325f 88 extern ServerOptions options;
89 char *encrypted_password;
f498ed15 90 char *pw_password;
91 char *salt;
0bbfbdeb 92#ifdef __hpux
93 struct pr_passwd *spw;
94#endif
77bb0bca 95#ifdef HAVE_SCO_PROTECTED_PW
96 struct pr_passwd *spw;
97#endif /* HAVE_SCO_PROTECTED_PW */
0bbfbdeb 98#if defined(HAVE_SHADOW_H) && !defined(DISABLE_SHADOW)
5260325f 99 struct spwd *spw;
b2344d54 100#endif
0bbfbdeb 101#if defined(HAVE_GETPWANAM) && !defined(DISABLE_SHADOW)
a423beaf 102 struct passwd_adjunct *spw;
103#endif
4c40f834 104#ifdef WITH_AIXAUTHENTICATE
105 char *authmsg;
106 char *loginmsg;
107 int reenter = 1;
108#endif
8efc0c15 109
13f825f4 110 /* deny if no user. */
111 if (pw == NULL)
112 return 0;
3c62e7eb 113#ifndef HAVE_CYGWIN
aa3378df 114 if (pw->pw_uid == 0 && options.permit_root_login == 2)
5260325f 115 return 0;
3c62e7eb 116#endif
117#ifdef HAVE_CYGWIN
118 /*
119 * Empty password is only possible on NT if the user has _really_
120 * an empty password and authentication is done, though.
121 */
122 if (!is_winnt)
123#endif
aa3378df 124 if (*password == '\0' && options.permit_empty_passwd == 0)
5260325f 125 return 0;
8efc0c15 126
3c62e7eb 127#ifdef HAVE_CYGWIN
128 if (is_winnt) {
129 HANDLE hToken = cygwin_logon_user(pw, password);
130
131 if (hToken == INVALID_HANDLE_VALUE)
132 return 0;
133 cygwin_set_impersonation_token(hToken);
134 return 1;
135 }
136#endif
137
4c40f834 138#ifdef WITH_AIXAUTHENTICATE
139 return (authenticate(pw->pw_name,password,&reenter,&authmsg) == 0);
140#endif
141
57112b5a 142#ifdef KRB4
143 if (options.kerberos_authentication == 1) {
144 int ret = auth_krb4_password(pw, password);
145 if (ret == 1 || ret == 0)
146 return ret;
5260325f 147 /* Fall back to ordinary passwd authentication. */
8efc0c15 148 }
57112b5a 149#endif
5260325f 150
7f8f5e00 151
0bbfbdeb 152 pw_password = pw->pw_passwd;
8efc0c15 153
0bbfbdeb 154 /*
155 * Various interfaces to shadow or protected password data
156 */
59dd7a31 157#if defined(HAVE_SHADOW_H) && !defined(DISABLE_SHADOW)
5260325f 158 spw = getspnam(pw->pw_name);
76b8607f 159 if (spw != NULL)
76b8607f 160 pw_password = spw->sp_pwdp;
f498ed15 161#endif /* defined(HAVE_SHADOW_H) && !defined(DISABLE_SHADOW) */
77bb0bca 162
163#ifdef HAVE_SCO_PROTECTED_PW
164 spw = getprpwnam(pw->pw_name);
165 if (spw != NULL)
166 pw_password = spw->ufld.fd_encrypt;
167#endif /* HAVE_SCO_PROTECTED_PW */
168
a423beaf 169#if defined(HAVE_GETPWANAM) && !defined(DISABLE_SHADOW)
170 if (issecure() && (spw = getpwanam(pw->pw_name)) != NULL)
a423beaf 171 pw_password = spw->pwa_passwd;
a423beaf 172#endif /* defined(HAVE_GETPWANAM) && !defined(DISABLE_SHADOW) */
77bb0bca 173
0bbfbdeb 174#if defined(__hpux)
175 if (iscomsec() && (spw = getprpwnam(pw->pw_name)) != NULL)
176 pw_password = spw->ufld.fd_encrypt;
177#endif /* defined(__hpux) */
178
179 /* Check for users with no password. */
180 if ((password[0] == '\0') && (pw_password[0] == '\0'))
181 return 1;
b2344d54 182
f498ed15 183 if (pw_password[0] != '\0')
184 salt = pw_password;
5260325f 185 else
f498ed15 186 salt = "xx";
59dd7a31 187
188#ifdef HAVE_MD5_PASSWORDS
f498ed15 189 if (is_md5_salt(salt))
190 encrypted_password = md5_crypt(password, salt);
59dd7a31 191 else
f498ed15 192 encrypted_password = crypt(password, salt);
59dd7a31 193#else /* HAVE_MD5_PASSWORDS */
0bbfbdeb 194# ifdef __hpux
195 if (iscomsec())
196 encrypted_password = bigcrypt(password, salt);
197 else
198 encrypted_password = crypt(password, salt);
2b763e31 199# else
f498ed15 200 encrypted_password = crypt(password, salt);
0bbfbdeb 201# endif /* __hpux */
59dd7a31 202#endif /* HAVE_MD5_PASSWORDS */
b2344d54 203
5260325f 204 /* Authentication is accepted if the encrypted passwords are identical. */
f498ed15 205 return (strcmp(encrypted_password, pw_password) == 0);
8efc0c15 206}
4d33e531 207#endif /* !USE_PAM && !HAVE_OSF_SIA */
This page took 0.09854 seconds and 5 git commands to generate.