pam_unix.c revision 115470
1/*-
2 * Copyright 1998 Juniper Networks, Inc.
3 * All rights reserved.
4 * Copyright (c) 2002-2003 Networks Associates Technology, Inc.
5 * All rights reserved.
6 *
7 * Portions of this software was developed for the FreeBSD Project by
8 * ThinkSec AS and NAI Labs, the Security Research Division of Network
9 * Associates, Inc.  under DARPA/SPAWAR contract N66001-01-C-8035
10 * ("CBOSS"), as part of the DARPA CHATS research program.
11 *
12 * Redistribution and use in source and binary forms, with or without
13 * modification, are permitted provided that the following conditions
14 * are met:
15 * 1. Redistributions of source code must retain the above copyright
16 *    notice, this list of conditions and the following disclaimer.
17 * 2. Redistributions in binary form must reproduce the above copyright
18 *    notice, this list of conditions and the following disclaimer in the
19 *    documentation and/or other materials provided with the distribution.
20 * 3. The name of the author may not be used to endorse or promote
21 *    products derived from this software without specific prior written
22 *    permission.
23 *
24 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
25 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27 * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
28 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 * SUCH DAMAGE.
35 */
36
37#include <sys/cdefs.h>
38__FBSDID("$FreeBSD: head/lib/libpam/modules/pam_unix/pam_unix.c 115470 2003-05-31 17:19:03Z des $");
39
40#include <sys/param.h>
41#include <sys/socket.h>
42#include <sys/time.h>
43#include <netinet/in.h>
44#include <arpa/inet.h>
45
46#include <login_cap.h>
47#include <netdb.h>
48#include <pwd.h>
49#include <stdlib.h>
50#include <string.h>
51#include <stdio.h>
52#include <syslog.h>
53#include <unistd.h>
54
55#include <libutil.h>
56
57#ifdef YP
58#include <ypclnt.h>
59#endif
60
61#define PAM_SM_AUTH
62#define PAM_SM_ACCOUNT
63#define	PAM_SM_PASSWORD
64
65#include <security/pam_appl.h>
66#include <security/pam_modules.h>
67#include <security/pam_mod_misc.h>
68
69#define PASSWORD_HASH		"md5"
70#define DEFAULT_WARN		(2L * 7L * 86400L)  /* Two weeks */
71#define	SALTSIZE		32
72
73static void makesalt(char []);
74
75static char password_hash[] =		PASSWORD_HASH;
76
77#define PAM_OPT_LOCAL_PASS	"local_pass"
78#define PAM_OPT_NIS_PASS	"nis_pass"
79
80char *tempname = NULL;
81
82/*
83 * authentication management
84 */
85PAM_EXTERN int
86pam_sm_authenticate(pam_handle_t *pamh, int flags __unused,
87    int argc __unused, const char *argv[] __unused)
88{
89	login_cap_t *lc;
90	struct passwd *pwd;
91	int retval;
92	const char *pass, *user, *realpw, *prompt;
93
94	if (openpam_get_option(pamh, PAM_OPT_AUTH_AS_SELF)) {
95		pwd = getpwnam(getlogin());
96	} else {
97		retval = pam_get_user(pamh, &user, NULL);
98		if (retval != PAM_SUCCESS)
99			return (retval);
100		pwd = getpwnam(user);
101	}
102
103	PAM_LOG("Got user: %s", user);
104
105	if (pwd != NULL) {
106		PAM_LOG("Doing real authentication");
107		realpw = pwd->pw_passwd;
108		if (realpw[0] == '\0') {
109			if (!(flags & PAM_DISALLOW_NULL_AUTHTOK) &&
110			    openpam_get_option(pamh, PAM_OPT_NULLOK))
111				return (PAM_SUCCESS);
112			realpw = "*";
113		}
114		lc = login_getpwclass(pwd);
115	} else {
116		PAM_LOG("Doing dummy authentication");
117		realpw = "*";
118		lc = login_getclass(NULL);
119	}
120	prompt = login_getcapstr(lc, "passwd_prompt", NULL, NULL);
121	retval = pam_get_authtok(pamh, PAM_AUTHTOK, &pass, prompt);
122	login_close(lc);
123	if (retval != PAM_SUCCESS)
124		return (retval);
125	PAM_LOG("Got password");
126	if (strcmp(crypt(pass, realpw), realpw) == 0)
127		return (PAM_SUCCESS);
128
129	PAM_VERBOSE_ERROR("UNIX authentication refused");
130	return (PAM_AUTH_ERR);
131}
132
133PAM_EXTERN int
134pam_sm_setcred(pam_handle_t *pamh __unused, int flags __unused,
135    int argc __unused, const char *argv[] __unused)
136{
137
138	return (PAM_SUCCESS);
139}
140
141/*
142 * account management
143 */
144PAM_EXTERN int
145pam_sm_acct_mgmt(pam_handle_t *pamh, int flags __unused,
146    int argc __unused, const char *argv[] __unused)
147{
148	struct addrinfo hints, *res;
149	struct passwd *pwd;
150	struct timeval tp;
151	login_cap_t *lc;
152	time_t warntime;
153	int retval;
154	const char *rhost, *tty, *user;
155	char rhostip[MAXHOSTNAMELEN] = "";
156
157	retval = pam_get_user(pamh, &user, NULL);
158	if (retval != PAM_SUCCESS)
159		return (retval);
160
161	if (user == NULL || (pwd = getpwnam(user)) == NULL)
162		return (PAM_SERVICE_ERR);
163
164	PAM_LOG("Got user: %s", user);
165
166	retval = pam_get_item(pamh, PAM_RHOST, (const void **)&rhost);
167	if (retval != PAM_SUCCESS)
168		return (retval);
169
170	retval = pam_get_item(pamh, PAM_TTY, (const void **)&tty);
171	if (retval != PAM_SUCCESS)
172		return (retval);
173
174	if (*pwd->pw_passwd == '\0' &&
175	    (flags & PAM_DISALLOW_NULL_AUTHTOK) != 0)
176		return (PAM_NEW_AUTHTOK_REQD);
177
178	lc = login_getpwclass(pwd);
179	if (lc == NULL) {
180		PAM_LOG("Unable to get login class for user %s", user);
181		return (PAM_SERVICE_ERR);
182	}
183
184	PAM_LOG("Got login_cap");
185
186	if (pwd->pw_change || pwd->pw_expire)
187		gettimeofday(&tp, NULL);
188
189	/*
190	 * Check pw_expire before pw_change - no point in letting the
191	 * user change the password on an expired account.
192	 */
193
194	if (pwd->pw_expire) {
195		warntime = login_getcaptime(lc, "warnexpire",
196		    DEFAULT_WARN, DEFAULT_WARN);
197		if (tp.tv_sec >= pwd->pw_expire) {
198			login_close(lc);
199			return (PAM_ACCT_EXPIRED);
200		} else if (pwd->pw_expire - tp.tv_sec < warntime &&
201		    (flags & PAM_SILENT) == 0) {
202			pam_error(pamh, "Warning: your account expires on %s",
203			    ctime(&pwd->pw_expire));
204		}
205	}
206
207	retval = PAM_SUCCESS;
208	if (pwd->pw_change) {
209		warntime = login_getcaptime(lc, "warnpassword",
210		    DEFAULT_WARN, DEFAULT_WARN);
211		if (tp.tv_sec >= pwd->pw_change) {
212			retval = PAM_NEW_AUTHTOK_REQD;
213		} else if (pwd->pw_change - tp.tv_sec < warntime &&
214		    (flags & PAM_SILENT) == 0) {
215			pam_error(pamh, "Warning: your password expires on %s",
216			    ctime(&pwd->pw_change));
217		}
218	}
219
220	/*
221	 * From here on, we must leave retval untouched (unless we
222	 * know we're going to fail), because we need to remember
223	 * whether we're supposed to return PAM_SUCCESS or
224	 * PAM_NEW_AUTHTOK_REQD.
225	 */
226
227	if (rhost && *rhost) {
228		memset(&hints, 0, sizeof(hints));
229		hints.ai_family = AF_UNSPEC;
230		if (getaddrinfo(rhost, NULL, &hints, &res) == 0) {
231			getnameinfo(res->ai_addr, res->ai_addrlen,
232			    rhostip, sizeof(rhostip), NULL, 0,
233			    NI_NUMERICHOST|NI_WITHSCOPEID);
234		}
235		if (res != NULL)
236			freeaddrinfo(res);
237	}
238
239	/*
240	 * Check host / tty / time-of-day restrictions
241	 */
242
243	if (!auth_hostok(lc, rhost, rhostip) ||
244	    !auth_ttyok(lc, tty) ||
245	    !auth_timeok(lc, time(NULL)))
246		retval = PAM_AUTH_ERR;
247
248	login_close(lc);
249
250	return (retval);
251}
252
253/*
254 * password management
255 *
256 * standard Unix and NIS password changing
257 */
258PAM_EXTERN int
259pam_sm_chauthtok(pam_handle_t *pamh, int flags,
260    int argc __unused, const char *argv[] __unused)
261{
262#ifdef YP
263	struct ypclnt *ypclnt;
264	const char *yp_domain, *yp_server;
265#endif
266	char salt[SALTSIZE + 1];
267	login_cap_t * lc;
268	struct passwd *pwd, *old_pwd;
269	const char *user, *old_pass, *new_pass;
270	char *encrypted;
271	int pfd, tfd, retval;
272
273	if (openpam_get_option(pamh, PAM_OPT_AUTH_AS_SELF))
274		pwd = getpwnam(getlogin());
275	else {
276		retval = pam_get_user(pamh, &user, NULL);
277		if (retval != PAM_SUCCESS)
278			return (retval);
279		pwd = getpwnam(user);
280	}
281
282	if (pwd == NULL)
283		return (PAM_AUTHTOK_RECOVERY_ERR);
284
285	PAM_LOG("Got user: %s", user);
286
287	if (flags & PAM_PRELIM_CHECK) {
288
289		PAM_LOG("PRELIM round");
290
291		if (getuid() == 0 &&
292		    (pwd->pw_fields & _PWF_SOURCE) == _PWF_FILES)
293			/* root doesn't need the old password */
294			return (pam_set_item(pamh, PAM_OLDAUTHTOK, ""));
295
296		if (pwd->pw_passwd[0] == '\0'
297		    && openpam_get_option(pamh, PAM_OPT_NULLOK)) {
298			/*
299			 * No password case. XXX Are we giving too much away
300			 * by not prompting for a password?
301			 * XXX check PAM_DISALLOW_NULL_AUTHTOK
302			 */
303			old_pass = "";
304		} else {
305			retval = pam_get_authtok(pamh,
306			    PAM_OLDAUTHTOK, &old_pass, NULL);
307			if (retval != PAM_SUCCESS)
308				return (retval);
309		}
310		PAM_LOG("Got old password");
311		/* always encrypt first */
312		encrypted = crypt(old_pass, pwd->pw_passwd);
313		if (old_pass[0] == '\0' &&
314		    !openpam_get_option(pamh, PAM_OPT_NULLOK))
315			return (PAM_PERM_DENIED);
316		if (strcmp(encrypted, pwd->pw_passwd) != 0)
317			return (PAM_PERM_DENIED);
318	}
319	else if (flags & PAM_UPDATE_AUTHTOK) {
320		PAM_LOG("UPDATE round");
321
322		retval = pam_get_authtok(pamh,
323		    PAM_OLDAUTHTOK, &old_pass, NULL);
324		if (retval != PAM_SUCCESS)
325			return (retval);
326		PAM_LOG("Got old password");
327
328		/* get new password */
329		for (;;) {
330			retval = pam_get_authtok(pamh,
331			    PAM_AUTHTOK, &new_pass, NULL);
332			if (retval != PAM_TRY_AGAIN)
333				break;
334			pam_error(pamh, "Mismatch; try again, EOF to quit.");
335		}
336		PAM_LOG("Got new password");
337		if (retval != PAM_SUCCESS) {
338			PAM_VERBOSE_ERROR("Unable to get new password");
339			return (retval);
340		}
341
342		if (getuid() != 0 && new_pass[0] == '\0' &&
343		    !openpam_get_option(pamh, PAM_OPT_NULLOK))
344			return (PAM_PERM_DENIED);
345
346		if ((old_pwd = pw_dup(pwd)) == NULL)
347			return (PAM_BUF_ERR);
348
349		pwd->pw_change = 0;
350		lc = login_getclass(NULL);
351		if (login_setcryptfmt(lc, password_hash, NULL) == NULL)
352			openpam_log(PAM_LOG_ERROR,
353			    "can't set password cipher, relying on default");
354		login_close(lc);
355		makesalt(salt);
356		pwd->pw_passwd = crypt(new_pass, salt);
357#ifdef YP
358		switch (old_pwd->pw_fields & _PWF_SOURCE) {
359		case _PWF_FILES:
360#endif
361			retval = PAM_SERVICE_ERR;
362			if (pw_init(NULL, NULL))
363				openpam_log(PAM_LOG_ERROR, "pw_init() failed");
364			else if ((pfd = pw_lock()) == -1)
365				openpam_log(PAM_LOG_ERROR, "pw_lock() failed");
366			else if ((tfd = pw_tmp(-1)) == -1)
367				openpam_log(PAM_LOG_ERROR, "pw_tmp() failed");
368			else if (pw_copy(pfd, tfd, pwd, old_pwd) == -1)
369				openpam_log(PAM_LOG_ERROR, "pw_copy() failed");
370			else if (pw_mkdb(pwd->pw_name) == -1)
371				openpam_log(PAM_LOG_ERROR, "pw_mkdb() failed");
372			else
373				retval = PAM_SUCCESS;
374			pw_fini();
375#ifdef YP
376			break;
377		case _PWF_NIS:
378			yp_domain = yp_server = NULL;
379			(void)pam_get_data(pamh,
380			    "yp_domain", (const void **)&yp_domain);
381			(void)pam_get_data(pamh,
382			    "yp_server", (const void **)&yp_server);
383			ypclnt = ypclnt_new(yp_domain,
384			    "passwd.byname", yp_server);
385			if (ypclnt == NULL) {
386				retval = PAM_BUF_ERR;
387			} else if (ypclnt_connect(ypclnt) == -1 ||
388			    ypclnt_passwd(ypclnt, pwd, old_pass) == -1) {
389				openpam_log(PAM_LOG_ERROR, "%s", ypclnt->error);
390				retval = PAM_SERVICE_ERR;
391			} else {
392				retval = PAM_SUCCESS;
393			}
394			ypclnt_free(ypclnt);
395			break;
396		default:
397			openpam_log(PAM_LOG_ERROR, "unsupported source 0x%x",
398			    pwd->pw_fields & _PWF_SOURCE);
399			retval = PAM_SERVICE_ERR;
400		}
401#endif
402		free(old_pwd);
403	}
404	else {
405		/* Very bad juju */
406		retval = PAM_ABORT;
407		PAM_LOG("Illegal 'flags'");
408	}
409
410	return (retval);
411}
412
413/* Mostly stolen from passwd(1)'s local_passwd.c - markm */
414
415static unsigned char itoa64[] =		/* 0 ... 63 => ascii - 64 */
416	"./0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz";
417
418static void
419to64(char *s, long v, int n)
420{
421	while (--n >= 0) {
422		*s++ = itoa64[v&0x3f];
423		v >>= 6;
424	}
425}
426
427/* Salt suitable for traditional DES and MD5 */
428void
429makesalt(char salt[SALTSIZE])
430{
431	int i;
432
433	/* These are not really random numbers, they are just
434	 * numbers that change to thwart construction of a
435	 * dictionary. This is exposed to the public.
436	 */
437	for (i = 0; i < SALTSIZE; i += 4)
438		to64(&salt[i], arc4random(), 4);
439	salt[SALTSIZE] = '\0';
440}
441
442PAM_MODULE_ENTRY("pam_unix");
443