]> andersk Git - openssh.git/blame - auth-passwd.c
- (dtucker) Check return value of setpcred().
[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"
897ef106 39RCSID("$OpenBSD: auth-passwd.c,v 1.27 2002/05/24 16:45:16 stevesk Exp $");
8efc0c15 40
41#include "packet.h"
42f11eb2 42#include "log.h"
43#include "servconf.h"
59c97189 44#include "auth.h"
f58c0e01 45#include "canohost.h"
59c97189 46
05114c74 47#if !defined(HAVE_OSF_SIA)
48/* Don't need any of these headers for the SIA cases */
fde58bd4 49# ifdef HAVE_CRYPT_H
50# include <crypt.h>
51# endif
fde58bd4 52# ifdef __hpux
53# include <hpsecurity.h>
54# include <prot.h>
55# endif
6e879cb4 56# ifdef HAVE_SECUREWARE
fde58bd4 57# include <sys/security.h>
58# include <sys/audit.h>
59# include <prot.h>
6e879cb4 60# endif /* HAVE_SECUREWARE */
fde58bd4 61# if defined(HAVE_SHADOW_H) && !defined(DISABLE_SHADOW)
62# include <shadow.h>
63# endif
64# if defined(HAVE_GETPWANAM) && !defined(DISABLE_SHADOW)
65# include <sys/label.h>
66# include <sys/audit.h>
67# include <pwdadj.h>
68# endif
69# if defined(HAVE_MD5_PASSWORDS) && !defined(HAVE_MD5_CRYPT)
70# include "md5crypt.h"
71# endif /* defined(HAVE_MD5_PASSWORDS) && !defined(HAVE_MD5_CRYPT) */
72
73# ifdef HAVE_CYGWIN
74# undef ERROR
75# include <windows.h>
76# include <sys/cygwin.h>
77# define is_winnt (GetVersion() < 0x80000000)
78# endif
05114c74 79#endif /* !HAVE_OSF_SIA */
af774732 80
81extern ServerOptions options;
b7c4a4cc 82#ifdef WITH_AIXAUTHENTICATE
83extern char *aixloginmsg;
84#endif
af774732 85
5260325f 86/*
87 * Tries to authenticate the user using password. Returns true if
88 * authentication succeeds.
89 */
6ae2364d 90int
af774732 91auth_password(Authctxt *authctxt, const char *password)
8efc0c15 92{
f656b61e 93 struct passwd * pw = authctxt->pw;
68ece370 94 int ok = authctxt->valid;
05114c74 95#if !defined(HAVE_OSF_SIA)
5260325f 96 char *encrypted_password;
f498ed15 97 char *pw_password;
98 char *salt;
882a3870 99# if defined(__hpux) || defined(HAVE_SECUREWARE)
0bbfbdeb 100 struct pr_passwd *spw;
882a3870 101# endif /* __hpux || HAVE_SECUREWARE */
102# if defined(HAVE_SHADOW_H) && !defined(DISABLE_SHADOW)
5260325f 103 struct spwd *spw;
882a3870 104# endif
105# if defined(HAVE_GETPWANAM) && !defined(DISABLE_SHADOW)
a423beaf 106 struct passwd_adjunct *spw;
882a3870 107# endif
108# ifdef WITH_AIXAUTHENTICATE
4c40f834 109 char *authmsg;
b7c4a4cc 110 int authsuccess;
4c40f834 111 int reenter = 1;
882a3870 112# endif
05114c74 113#endif /* !defined(HAVE_OSF_SIA) */
8efc0c15 114
13f825f4 115 /* deny if no user. */
116 if (pw == NULL)
68ece370 117 ok = 0;
3c62e7eb 118#ifndef HAVE_CYGWIN
68ece370 119 if (pw && pw->pw_uid == 0 && options.permit_root_login != PERMIT_YES)
120 ok = 0;
3c62e7eb 121#endif
f656b61e 122 if (*password == '\0' && options.permit_empty_passwd == 0)
68ece370 123 ok = 0;
882a3870 124
05114c74 125#if defined(HAVE_OSF_SIA)
68ece370 126 if (!ok)
127 return 0;
882a3870 128 return auth_sia_password(authctxt, password);
129#else
68ece370 130 if (!ok)
131 return 0;
882a3870 132# ifdef KRB5
ced49be2 133 if (options.kerberos_authentication == 1) {
134 int ret = auth_krb5_password(authctxt, password);
135 if (ret == 1 || ret == 0)
136 return ret;
137 /* Fall back to ordinary passwd authentication. */
138 }
882a3870 139# endif
140# ifdef HAVE_CYGWIN
3c62e7eb 141 if (is_winnt) {
142 HANDLE hToken = cygwin_logon_user(pw, password);
143
144 if (hToken == INVALID_HANDLE_VALUE)
c5a7d788 145 return (0);
3c62e7eb 146 cygwin_set_impersonation_token(hToken);
c5a7d788 147 return (1);
3c62e7eb 148 }
882a3870 149# endif
150# ifdef WITH_AIXAUTHENTICATE
b7c4a4cc 151 authsuccess = (authenticate(pw->pw_name,password,&reenter,&authmsg) == 0);
152
c5a7d788 153 if (authsuccess) {
b7c4a4cc 154 /* We don't have a pty yet, so just label the line as "ssh" */
155 if (loginsuccess(authctxt->user,
c5a7d788 156 get_canonical_hostname(options.use_dns),
157 "ssh", &aixloginmsg) < 0) {
158 aixloginmsg = NULL;
159 }
160 }
b7c4a4cc 161
c5a7d788 162 return (authsuccess);
882a3870 163# endif
164# ifdef KRB4
57112b5a 165 if (options.kerberos_authentication == 1) {
ced49be2 166 int ret = auth_krb4_password(authctxt, password);
57112b5a 167 if (ret == 1 || ret == 0)
168 return ret;
5260325f 169 /* Fall back to ordinary passwd authentication. */
8efc0c15 170 }
882a3870 171# endif
172# ifdef BSD_AUTH
ced49be2 173 if (auth_userokay(pw->pw_name, authctxt->style, "auth-ssh",
174 (char *)password) == 0)
175 return 0;
176 else
177 return 1;
882a3870 178# endif
0bbfbdeb 179 pw_password = pw->pw_passwd;
8efc0c15 180
0bbfbdeb 181 /*
182 * Various interfaces to shadow or protected password data
183 */
882a3870 184# if defined(HAVE_SHADOW_H) && !defined(DISABLE_SHADOW)
5260325f 185 spw = getspnam(pw->pw_name);
2b87da3b 186 if (spw != NULL)
76b8607f 187 pw_password = spw->sp_pwdp;
882a3870 188# endif /* defined(HAVE_SHADOW_H) && !defined(DISABLE_SHADOW) */
77bb0bca 189
882a3870 190# if defined(HAVE_GETPWANAM) && !defined(DISABLE_SHADOW)
a423beaf 191 if (issecure() && (spw = getpwanam(pw->pw_name)) != NULL)
a423beaf 192 pw_password = spw->pwa_passwd;
882a3870 193# endif /* defined(HAVE_GETPWANAM) && !defined(DISABLE_SHADOW) */
77bb0bca 194
882a3870 195# ifdef HAVE_SECUREWARE
6e879cb4 196 if ((spw = getprpwnam(pw->pw_name)) != NULL)
197 pw_password = spw->ufld.fd_encrypt;
882a3870 198# endif /* HAVE_SECUREWARE */
6e879cb4 199
882a3870 200# if defined(__hpux) && !defined(HAVE_SECUREWARE)
0bbfbdeb 201 if (iscomsec() && (spw = getprpwnam(pw->pw_name)) != NULL)
202 pw_password = spw->ufld.fd_encrypt;
882a3870 203# endif /* defined(__hpux) && !defined(HAVE_SECUREWARE) */
0bbfbdeb 204
205 /* Check for users with no password. */
206 if ((password[0] == '\0') && (pw_password[0] == '\0'))
207 return 1;
b2344d54 208
f498ed15 209 if (pw_password[0] != '\0')
210 salt = pw_password;
5260325f 211 else
f498ed15 212 salt = "xx";
59dd7a31 213
882a3870 214# ifdef HAVE_MD5_PASSWORDS
f498ed15 215 if (is_md5_salt(salt))
216 encrypted_password = md5_crypt(password, salt);
59dd7a31 217 else
f498ed15 218 encrypted_password = crypt(password, salt);
882a3870 219# else /* HAVE_MD5_PASSWORDS */
220# if defined(__hpux) && !defined(HAVE_SECUREWARE)
0bbfbdeb 221 if (iscomsec())
222 encrypted_password = bigcrypt(password, salt);
223 else
224 encrypted_password = crypt(password, salt);
554e28b2 225# else
882a3870 226# ifdef HAVE_SECUREWARE
227 encrypted_password = bigcrypt(password, salt);
228# else
f498ed15 229 encrypted_password = crypt(password, salt);
882a3870 230# endif /* HAVE_SECUREWARE */
231# endif /* __hpux && !defined(HAVE_SECUREWARE) */
232# endif /* HAVE_MD5_PASSWORDS */
b2344d54 233
5260325f 234 /* Authentication is accepted if the encrypted passwords are identical. */
f498ed15 235 return (strcmp(encrypted_password, pw_password) == 0);
05114c74 236#endif /* !HAVE_OSF_SIA */
fde58bd4 237}
This page took 0.169568 seconds and 5 git commands to generate.