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