su.c revision 161815
1/*
2 * Copyright (c) 2002, 2005 Networks Associates Technologies, Inc.
3 * All rights reserved.
4 *
5 * Portions of this software were developed for the FreeBSD Project by
6 * ThinkSec AS and NAI Labs, the Security Research Division of Network
7 * Associates, Inc.  under DARPA/SPAWAR contract N66001-01-C-8035
8 * ("CBOSS"), as part of the DARPA CHATS research program.
9 *
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
12 * are met:
13 * 1. Redistributions of source code must retain the above copyright
14 *    notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 *    notice, this list of conditions and the following disclaimer in the
17 *    documentation and/or other materials provided with the distribution.
18 *
19 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
20 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22 * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
23 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29 * SUCH DAMAGE.
30 */
31/*-
32 * Copyright (c) 1988, 1993, 1994
33 *	The Regents of the University of California.  All rights reserved.
34 *
35 * Redistribution and use in source and binary forms, with or without
36 * modification, are permitted provided that the following conditions
37 * are met:
38 * 1. Redistributions of source code must retain the above copyright
39 *    notice, this list of conditions and the following disclaimer.
40 * 2. Redistributions in binary form must reproduce the above copyright
41 *    notice, this list of conditions and the following disclaimer in the
42 *    documentation and/or other materials provided with the distribution.
43 * 3. All advertising materials mentioning features or use of this software
44 *    must display the following acknowledgement:
45 *	This product includes software developed by the University of
46 *	California, Berkeley and its contributors.
47 * 4. Neither the name of the University nor the names of its contributors
48 *    may be used to endorse or promote products derived from this software
49 *    without specific prior written permission.
50 *
51 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
52 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
53 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
54 * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
55 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
56 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
57 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
58 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
59 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
60 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
61 * SUCH DAMAGE.
62 */
63
64#ifndef lint
65static const char copyright[] =
66"@(#) Copyright (c) 1988, 1993, 1994\n\
67	The Regents of the University of California.  All rights reserved.\n";
68#endif /* not lint */
69
70#if 0
71#ifndef lint
72static char sccsid[] = "@(#)su.c	8.3 (Berkeley) 4/2/94";
73#endif /* not lint */
74#endif
75
76#include <sys/cdefs.h>
77__FBSDID("$FreeBSD: head/usr.bin/su/su.c 161815 2006-09-01 13:39:02Z csjp $");
78
79#include <sys/param.h>
80#include <sys/time.h>
81#include <sys/resource.h>
82#include <sys/wait.h>
83
84#ifdef USE_BSM_AUDIT
85#include <bsm/libbsm.h>
86#include <bsm/audit_uevents.h>
87#endif
88
89#include <err.h>
90#include <errno.h>
91#include <grp.h>
92#include <login_cap.h>
93#include <paths.h>
94#include <pwd.h>
95#include <signal.h>
96#include <stdio.h>
97#include <stdlib.h>
98#include <string.h>
99#include <syslog.h>
100#include <unistd.h>
101#include <stdarg.h>
102
103#include <security/pam_appl.h>
104#include <security/openpam.h>
105
106#define PAM_END() do {							\
107	int local_ret;							\
108	if (pamh != NULL) {						\
109		local_ret = pam_setcred(pamh, PAM_DELETE_CRED);		\
110		if (local_ret != PAM_SUCCESS)				\
111			syslog(LOG_ERR, "pam_setcred: %s",		\
112				pam_strerror(pamh, local_ret));		\
113		if (asthem) {						\
114			local_ret = pam_close_session(pamh, 0);		\
115			if (local_ret != PAM_SUCCESS)			\
116				syslog(LOG_ERR, "pam_close_session: %s",\
117					pam_strerror(pamh, local_ret));	\
118		}							\
119		local_ret = pam_end(pamh, local_ret);			\
120		if (local_ret != PAM_SUCCESS)				\
121			syslog(LOG_ERR, "pam_end: %s",			\
122				pam_strerror(pamh, local_ret));		\
123	}								\
124} while (0)
125
126
127#define PAM_SET_ITEM(what, item) do {					\
128	int local_ret;							\
129	local_ret = pam_set_item(pamh, what, item);			\
130	if (local_ret != PAM_SUCCESS) {					\
131		syslog(LOG_ERR, "pam_set_item(" #what "): %s",		\
132			pam_strerror(pamh, local_ret));			\
133		errx(1, "pam_set_item(" #what "): %s",			\
134			pam_strerror(pamh, local_ret));			\
135		/* NOTREACHED */					\
136	}								\
137} while (0)
138
139enum tristate { UNSET, YES, NO };
140
141static pam_handle_t *pamh = NULL;
142static char	**environ_pam;
143
144static char	*ontty(void);
145static int	chshell(const char *);
146static void	usage(void) __dead2;
147static void	export_pam_environment(void);
148static int	ok_to_export(const char *);
149
150extern char	**environ;
151
152int
153main(int argc, char *argv[])
154{
155	static char	*cleanenv;
156	struct passwd	*pwd;
157	struct pam_conv	conv = { openpam_ttyconv, NULL };
158	enum tristate	iscsh;
159	login_cap_t	*lc;
160	union {
161		const char	**a;
162		char		* const *b;
163	}		np;
164	uid_t		ruid;
165	pid_t		child_pid, child_pgrp, pid;
166	int		asme, ch, asthem, fastlogin, prio, i, retcode,
167			statusp, setmaclabel;
168	u_int		setwhat;
169	char		*username, *class, shellbuf[MAXPATHLEN];
170	const char	*p, *user, *shell, *mytty, **nargv;
171	struct sigaction sa, sa_int, sa_quit, sa_pipe;
172	int temp, fds[2];
173#ifdef USE_BSM_AUDIT
174	const char	*aerr;
175	au_id_t		 auid;
176#endif
177
178	shell = class = cleanenv = NULL;
179	asme = asthem = fastlogin = statusp = 0;
180	user = "root";
181	iscsh = UNSET;
182	setmaclabel = 0;
183
184	while ((ch = getopt(argc, argv, "-flmsc:")) != -1)
185		switch ((char)ch) {
186		case 'f':
187			fastlogin = 1;
188			break;
189		case '-':
190		case 'l':
191			asme = 0;
192			asthem = 1;
193			break;
194		case 'm':
195			asme = 1;
196			asthem = 0;
197			break;
198		case 's':
199			setmaclabel = 1;
200			break;
201		case 'c':
202			class = optarg;
203			break;
204		case '?':
205		default:
206			usage();
207		/* NOTREACHED */
208		}
209
210	if (optind < argc)
211		user = argv[optind++];
212
213	if (user == NULL)
214		usage();
215	/* NOTREACHED */
216
217	/*
218	 * Try to provide more helpful debugging output if su(1) is running
219	 * non-setuid, or was run from a file system not mounted setuid.
220	 */
221	if (geteuid() != 0)
222		errx(1, "not running setuid");
223
224#ifdef USE_BSM_AUDIT
225	if (getauid(&auid) < 0 && errno != ENOSYS) {
226		syslog(LOG_AUTH | LOG_ERR, "getauid: %s", strerror(errno));
227		errx(1, "Permission denied");
228	}
229#endif
230	if (strlen(user) > MAXLOGNAME - 1) {
231#ifdef USE_BSM_AUDIT
232		if (audit_submit(AUE_su, auid,
233		    1, EPERM, "username too long: '%s'", user))
234			errx(1, "Permission denied");
235#endif
236		errx(1, "username too long");
237	}
238
239	nargv = malloc(sizeof(char *) * (size_t)(argc + 4));
240	if (nargv == NULL)
241		errx(1, "malloc failure");
242
243	nargv[argc + 3] = NULL;
244	for (i = argc; i >= optind; i--)
245		nargv[i + 3] = argv[i];
246	np.a = &nargv[i + 3];
247
248	argv += optind;
249
250	errno = 0;
251	prio = getpriority(PRIO_PROCESS, 0);
252	if (errno)
253		prio = 0;
254
255	setpriority(PRIO_PROCESS, 0, -2);
256	openlog("su", LOG_CONS, LOG_AUTH);
257
258	/* get current login name, real uid and shell */
259	ruid = getuid();
260	username = getlogin();
261	pwd = getpwnam(username);
262	if (username == NULL || pwd == NULL || pwd->pw_uid != ruid)
263		pwd = getpwuid(ruid);
264	if (pwd == NULL) {
265#ifdef USE_BSM_AUDIT
266		if (audit_submit(AUE_su, auid, 1, EPERM,
267		    "unable to determine invoking subject: '%s'", username))
268			errx(1, "Permission denied");
269#endif
270		errx(1, "who are you?");
271	}
272
273	username = strdup(pwd->pw_name);
274	if (username == NULL)
275		err(1, "strdup failure");
276
277	if (asme) {
278		if (pwd->pw_shell != NULL && *pwd->pw_shell != '\0') {
279			/* must copy - pwd memory is recycled */
280			shell = strncpy(shellbuf, pwd->pw_shell,
281			    sizeof(shellbuf));
282			shellbuf[sizeof(shellbuf) - 1] = '\0';
283		}
284		else {
285			shell = _PATH_BSHELL;
286			iscsh = NO;
287		}
288	}
289
290	/* Do the whole PAM startup thing */
291	retcode = pam_start("su", user, &conv, &pamh);
292	if (retcode != PAM_SUCCESS) {
293		syslog(LOG_ERR, "pam_start: %s", pam_strerror(pamh, retcode));
294		errx(1, "pam_start: %s", pam_strerror(pamh, retcode));
295	}
296
297	PAM_SET_ITEM(PAM_RUSER, username);
298
299	mytty = ttyname(STDERR_FILENO);
300	if (!mytty)
301		mytty = "tty";
302	PAM_SET_ITEM(PAM_TTY, mytty);
303
304	retcode = pam_authenticate(pamh, 0);
305	if (retcode != PAM_SUCCESS) {
306#ifdef USE_BSM_AUDIT
307		if (audit_submit(AUE_su, auid, 1, EPERM, "bad su %s to %s on %s",
308		    username, user, mytty))
309			errx(1, "Permission denied");
310#endif
311		syslog(LOG_AUTH|LOG_WARNING, "BAD SU %s to %s on %s",
312		    username, user, mytty);
313		errx(1, "Sorry");
314	}
315#ifdef USE_BSM_AUDIT
316	if (audit_submit(AUE_su, auid, 0, 0, "successful authentication"))
317		errx(1, "Permission denied");
318#endif
319	retcode = pam_get_item(pamh, PAM_USER, (const void **)&p);
320	if (retcode == PAM_SUCCESS)
321		user = p;
322	else
323		syslog(LOG_ERR, "pam_get_item(PAM_USER): %s",
324		    pam_strerror(pamh, retcode));
325	pwd = getpwnam(user);
326	if (pwd == NULL) {
327#ifdef USE_BSM_AUDIT
328		if (audit_submit(AUE_su, auid, 1, EPERM,
329		    "unknown subject: %s", user))
330			errx(1, "Permission denied");
331#endif
332		errx(1, "unknown login: %s", user);
333	}
334
335	retcode = pam_acct_mgmt(pamh, 0);
336	if (retcode == PAM_NEW_AUTHTOK_REQD) {
337		retcode = pam_chauthtok(pamh,
338			PAM_CHANGE_EXPIRED_AUTHTOK);
339		if (retcode != PAM_SUCCESS) {
340#ifdef USE_BSM_AUDIT
341			aerr = pam_strerror(pamh, retcode);
342			if (aerr == NULL)
343				aerr = "Unknown PAM error";
344			if (audit_submit(AUE_su, auid, 1, EPERM,
345			    "pam_chauthtok: %s", aerr))
346				errx(1, "Permission denied");
347#endif
348			syslog(LOG_ERR, "pam_chauthtok: %s",
349			    pam_strerror(pamh, retcode));
350			errx(1, "Sorry");
351		}
352	}
353	if (retcode != PAM_SUCCESS) {
354#ifdef USE_BSM_AUDIT
355		if (audit_submit(AUE_su, auid, 1, EPERM, "pam_acct_mgmt: %s",
356		    pam_strerror(pamh, retcode)))
357			errx(1, "Permission denied");
358#endif
359		syslog(LOG_ERR, "pam_acct_mgmt: %s",
360			pam_strerror(pamh, retcode));
361		errx(1, "Sorry");
362	}
363
364	/* get target login information */
365	if (class == NULL)
366		lc = login_getpwclass(pwd);
367	else {
368		if (ruid != 0) {
369#ifdef USE_BSM_AUDIT
370			if (audit_submit(AUE_su, auid, 1, EPERM,
371			    "only root may use -c"))
372				errx(1, "Permission denied");
373#endif
374			errx(1, "only root may use -c");
375		}
376		lc = login_getclass(class);
377		if (lc == NULL)
378			errx(1, "unknown class: %s", class);
379	}
380
381	/* if asme and non-standard target shell, must be root */
382	if (asme) {
383		if (ruid != 0 && !chshell(pwd->pw_shell))
384			errx(1, "permission denied (shell)");
385	}
386	else if (pwd->pw_shell && *pwd->pw_shell) {
387		shell = pwd->pw_shell;
388		iscsh = UNSET;
389	}
390	else {
391		shell = _PATH_BSHELL;
392		iscsh = NO;
393	}
394
395	/* if we're forking a csh, we want to slightly muck the args */
396	if (iscsh == UNSET) {
397		p = strrchr(shell, '/');
398		if (p)
399			++p;
400		else
401			p = shell;
402		iscsh = strcmp(p, "csh") ? (strcmp(p, "tcsh") ? NO : YES) : YES;
403	}
404	setpriority(PRIO_PROCESS, 0, prio);
405
406	/* Switch to home directory */
407	if (asthem) {
408		if (chdir(pwd->pw_dir) < 0)
409			errx(1, "no directory");
410	}
411
412	/*
413	 * PAM modules might add supplementary groups in pam_setcred(), so
414	 * initialize them first.
415	 */
416	if (setusercontext(lc, pwd, pwd->pw_uid, LOGIN_SETGROUP) < 0)
417		err(1, "setusercontext");
418
419	retcode = pam_setcred(pamh, PAM_ESTABLISH_CRED);
420	if (retcode != PAM_SUCCESS) {
421		syslog(LOG_ERR, "pam_setcred: %s",
422		    pam_strerror(pamh, retcode));
423		errx(1, "failed to establish credentials.");
424	}
425	if (asthem) {
426		retcode = pam_open_session(pamh, 0);
427		if (retcode != PAM_SUCCESS) {
428			syslog(LOG_ERR, "pam_open_session: %s",
429			    pam_strerror(pamh, retcode));
430			errx(1, "failed to open session.");
431		}
432	}
433
434	/*
435	 * We must fork() before setuid() because we need to call
436	 * pam_setcred(pamh, PAM_DELETE_CRED) as root.
437	 */
438	sa.sa_flags = SA_RESTART;
439	sa.sa_handler = SIG_IGN;
440	sigemptyset(&sa.sa_mask);
441	sigaction(SIGINT, &sa, &sa_int);
442	sigaction(SIGQUIT, &sa, &sa_quit);
443	sigaction(SIGPIPE, &sa, &sa_pipe);
444	sa.sa_handler = SIG_DFL;
445	sigaction(SIGTSTP, &sa, NULL);
446	statusp = 1;
447	if (pipe(fds) == -1) {
448		PAM_END();
449		err(1, "pipe");
450	}
451	child_pid = fork();
452	switch (child_pid) {
453	default:
454		sa.sa_handler = SIG_IGN;
455		sigaction(SIGTTOU, &sa, NULL);
456		close(fds[0]);
457		setpgid(child_pid, child_pid);
458		if (tcgetpgrp(STDERR_FILENO) == getpgrp())
459			tcsetpgrp(STDERR_FILENO, child_pid);
460		close(fds[1]);
461		sigaction(SIGPIPE, &sa_pipe, NULL);
462		while ((pid = waitpid(child_pid, &statusp, WUNTRACED)) != -1) {
463			if (WIFSTOPPED(statusp)) {
464				child_pgrp = getpgid(child_pid);
465				if (tcgetpgrp(STDERR_FILENO) == child_pgrp)
466					tcsetpgrp(STDERR_FILENO, getpgrp());
467				kill(getpid(), SIGSTOP);
468				if (tcgetpgrp(STDERR_FILENO) == getpgrp()) {
469					child_pgrp = getpgid(child_pid);
470					tcsetpgrp(STDERR_FILENO, child_pgrp);
471				}
472				kill(child_pid, SIGCONT);
473				statusp = 1;
474				continue;
475			}
476			break;
477		}
478		child_pgrp = getpgid(child_pid);
479		if (tcgetpgrp(STDERR_FILENO) == child_pgrp)
480			tcsetpgrp(STDERR_FILENO, getpgrp());
481		if (pid == -1)
482			err(1, "waitpid");
483		PAM_END();
484		exit(WEXITSTATUS(statusp));
485	case -1:
486		PAM_END();
487		err(1, "fork");
488	case 0:
489		close(fds[1]);
490		read(fds[0], &temp, 1);
491		close(fds[0]);
492		sigaction(SIGPIPE, &sa_pipe, NULL);
493		sigaction(SIGINT, &sa_int, NULL);
494		sigaction(SIGQUIT, &sa_quit, NULL);
495
496		/*
497		 * Set all user context except for: Environmental variables
498		 * Umask Login records (wtmp, etc) Path
499		 */
500		setwhat = LOGIN_SETALL & ~(LOGIN_SETENV | LOGIN_SETUMASK |
501			   LOGIN_SETLOGIN | LOGIN_SETPATH | LOGIN_SETGROUP |
502			   LOGIN_SETMAC);
503		/*
504		 * If -s is present, also set the MAC label.
505		 */
506		if (setmaclabel)
507			setwhat |= LOGIN_SETMAC;
508		/*
509		 * Don't touch resource/priority settings if -m has been used
510		 * or -l and -c hasn't, and we're not su'ing to root.
511		 */
512		if ((asme || (!asthem && class == NULL)) && pwd->pw_uid)
513			setwhat &= ~(LOGIN_SETPRIORITY | LOGIN_SETRESOURCES);
514		if (setusercontext(lc, pwd, pwd->pw_uid, setwhat) < 0)
515			err(1, "setusercontext");
516
517		if (!asme) {
518			if (asthem) {
519				p = getenv("TERM");
520				environ = &cleanenv;
521			}
522
523			if (asthem || pwd->pw_uid)
524				setenv("USER", pwd->pw_name, 1);
525			setenv("HOME", pwd->pw_dir, 1);
526			setenv("SHELL", shell, 1);
527
528			if (asthem) {
529				/*
530				 * Add any environmental variables that the
531				 * PAM modules may have set.
532				 */
533				environ_pam = pam_getenvlist(pamh);
534				if (environ_pam)
535					export_pam_environment();
536
537				/* set the su'd user's environment & umask */
538				setusercontext(lc, pwd, pwd->pw_uid,
539					LOGIN_SETPATH | LOGIN_SETUMASK |
540					LOGIN_SETENV);
541				if (p)
542					setenv("TERM", p, 1);
543			}
544		}
545		login_close(lc);
546
547		if (iscsh == YES) {
548			if (fastlogin)
549				*np.a-- = "-f";
550			if (asme)
551				*np.a-- = "-m";
552		}
553		/* csh strips the first character... */
554		*np.a = asthem ? "-su" : iscsh == YES ? "_su" : "su";
555
556		if (ruid != 0)
557			syslog(LOG_NOTICE, "%s to %s%s", username, user,
558			    ontty());
559
560		execv(shell, np.b);
561		err(1, "%s", shell);
562	}
563}
564
565static void
566export_pam_environment(void)
567{
568	char	**pp;
569
570	for (pp = environ_pam; *pp != NULL; pp++) {
571		if (ok_to_export(*pp))
572			putenv(*pp);
573		free(*pp);
574	}
575}
576
577/*
578 * Sanity checks on PAM environmental variables:
579 * - Make sure there is an '=' in the string.
580 * - Make sure the string doesn't run on too long.
581 * - Do not export certain variables.  This list was taken from the
582 *   Solaris pam_putenv(3) man page.
583 * Note that if the user is chrooted, PAM may have a better idea than we
584 * do of where her home directory is.
585 */
586static int
587ok_to_export(const char *s)
588{
589	static const char *noexport[] = {
590		"SHELL", /* "HOME", */ "LOGNAME", "MAIL", "CDPATH",
591		"IFS", "PATH", NULL
592	};
593	const char **pp;
594	size_t n;
595
596	if (strlen(s) > 1024 || strchr(s, '=') == NULL)
597		return 0;
598	if (strncmp(s, "LD_", 3) == 0)
599		return 0;
600	for (pp = noexport; *pp != NULL; pp++) {
601		n = strlen(*pp);
602		if (s[n] == '=' && strncmp(s, *pp, n) == 0)
603			return 0;
604	}
605	return 1;
606}
607
608static void
609usage(void)
610{
611
612	fprintf(stderr, "usage: su [-] [-flms] [-c class] [login [args]]\n");
613	exit(1);
614	/* NOTREACHED */
615}
616
617static int
618chshell(const char *sh)
619{
620	int r;
621	char *cp;
622
623	r = 0;
624	setusershell();
625	while ((cp = getusershell()) != NULL && !r)
626	    r = (strcmp(cp, sh) == 0);
627	endusershell();
628	return r;
629}
630
631static char *
632ontty(void)
633{
634	char *p;
635	static char buf[MAXPATHLEN + 4];
636
637	buf[0] = 0;
638	p = ttyname(STDERR_FILENO);
639	if (p)
640		snprintf(buf, sizeof(buf), " on %s", p);
641	return buf;
642}
643