Home | History | Annotate | Line # | Download | only in su
      1  1.25    andvar /*	$NetBSD: su_pam.c,v 1.25 2025/09/07 21:31:20 andvar Exp $	*/
      2   1.1  christos 
      3   1.1  christos /*
      4   1.1  christos  * Copyright (c) 1988 The Regents of the University of California.
      5   1.1  christos  * All rights reserved.
      6   1.1  christos  *
      7   1.1  christos  * Redistribution and use in source and binary forms, with or without
      8   1.1  christos  * modification, are permitted provided that the following conditions
      9   1.1  christos  * are met:
     10   1.1  christos  * 1. Redistributions of source code must retain the above copyright
     11   1.1  christos  *    notice, this list of conditions and the following disclaimer.
     12   1.1  christos  * 2. Redistributions in binary form must reproduce the above copyright
     13   1.1  christos  *    notice, this list of conditions and the following disclaimer in the
     14   1.1  christos  *    documentation and/or other materials provided with the distribution.
     15   1.1  christos  * 3. Neither the name of the University nor the names of its contributors
     16   1.1  christos  *    may be used to endorse or promote products derived from this software
     17   1.1  christos  *    without specific prior written permission.
     18   1.1  christos  *
     19   1.1  christos  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     20   1.1  christos  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     21   1.1  christos  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     22   1.1  christos  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     23   1.1  christos  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     24   1.1  christos  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     25   1.1  christos  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     26   1.1  christos  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     27   1.1  christos  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     28   1.1  christos  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     29   1.1  christos  * SUCH DAMAGE.
     30   1.1  christos  */
     31   1.1  christos 
     32   1.1  christos #include <sys/cdefs.h>
     33   1.1  christos #ifndef lint
     34  1.15     lukem __COPYRIGHT("@(#) Copyright (c) 1988\
     35  1.15     lukem  The Regents of the University of California.  All rights reserved.");
     36   1.1  christos #endif /* not lint */
     37   1.1  christos 
     38   1.1  christos #ifndef lint
     39   1.1  christos #if 0
     40   1.1  christos static char sccsid[] = "@(#)su.c	8.3 (Berkeley) 4/2/94";*/
     41   1.1  christos #else
     42  1.25    andvar __RCSID("$NetBSD: su_pam.c,v 1.25 2025/09/07 21:31:20 andvar Exp $");
     43   1.1  christos #endif
     44   1.1  christos #endif /* not lint */
     45   1.1  christos 
     46   1.1  christos #include <sys/param.h>
     47   1.1  christos #include <sys/time.h>
     48   1.1  christos #include <sys/resource.h>
     49   1.1  christos #include <sys/wait.h>
     50   1.1  christos #include <err.h>
     51   1.1  christos #include <errno.h>
     52   1.1  christos #include <grp.h>
     53   1.1  christos #include <paths.h>
     54   1.1  christos #include <pwd.h>
     55   1.6  christos #include <signal.h>
     56   1.1  christos #include <stdio.h>
     57   1.1  christos #include <stdlib.h>
     58   1.1  christos #include <string.h>
     59   1.1  christos #include <syslog.h>
     60   1.1  christos #include <time.h>
     61   1.1  christos #include <tzfile.h>
     62   1.1  christos #include <unistd.h>
     63  1.13  christos #include <util.h>
     64   1.1  christos #include <login_cap.h>
     65   1.1  christos 
     66   1.1  christos #include <security/pam_appl.h>
     67   1.1  christos #include <security/openpam.h>   /* for openpam_ttyconv() */
     68   1.1  christos 
     69  1.13  christos #ifdef ALLOW_GROUP_CHANGE
     70  1.13  christos #include "grutil.h"
     71  1.13  christos #endif
     72  1.13  christos #include "suutil.h"
     73   1.1  christos 
     74  1.13  christos static const struct pam_conv pamc = { &openpam_ttyconv, NULL };
     75   1.1  christos 
     76   1.1  christos #define	ARGSTRX	"-dflm"
     77   1.1  christos 
     78   1.1  christos #ifdef LOGIN_CAP
     79   1.1  christos #define ARGSTR	ARGSTRX "c:"
     80   1.1  christos #else
     81   1.1  christos #define ARGSTR ARGSTRX
     82   1.1  christos #endif
     83   1.1  christos 
     84  1.17     joerg static void logit(const char *, ...) __printflike(1, 2);
     85  1.13  christos 
     86  1.18  christos static const char *
     87  1.18  christos safe_pam_strerror(pam_handle_t *pamh, int pam_err) {
     88  1.18  christos 	const char *msg;
     89  1.18  christos 
     90  1.18  christos 	if ((msg = pam_strerror(pamh, pam_err)) != NULL)
     91  1.18  christos 		return msg;
     92  1.18  christos 
     93  1.18  christos 	static char buf[1024];
     94  1.18  christos 	snprintf(buf, sizeof(buf), "Unknown pam error %d", pam_err);
     95  1.18  christos 	return buf;
     96  1.18  christos }
     97  1.18  christos 
     98   1.1  christos int
     99   1.1  christos main(int argc, char **argv)
    100   1.1  christos {
    101   1.1  christos 	extern char **environ;
    102   1.7  christos 	struct passwd *pwd, pwres;
    103   1.1  christos 	char *p;
    104   1.1  christos 	uid_t ruid;
    105  1.13  christos 	int asme, ch, asthem, fastlogin, prio, gohome;
    106  1.13  christos 	u_int setwhat;
    107   1.1  christos 	enum { UNSET, YES, NO } iscsh = UNSET;
    108  1.13  christos 	const char *user, *shell, *avshell;
    109  1.13  christos 	char *username, *class;
    110  1.13  christos 	char **np;
    111   1.1  christos 	char shellbuf[MAXPATHLEN], avshellbuf[MAXPATHLEN];
    112   1.1  christos 	int pam_err;
    113   1.1  christos 	char hostname[MAXHOSTNAMELEN];
    114   1.1  christos 	char *tty;
    115   1.1  christos 	const char *func;
    116   1.1  christos 	const void *newuser;
    117   1.1  christos 	login_cap_t *lc;
    118   1.2  christos 	pam_handle_t *pamh = NULL;
    119   1.8        he 	char pwbuf[1024];
    120   1.1  christos #ifdef PAM_DEBUG
    121   1.1  christos 	extern int _openpam_debug;
    122   1.8        he 
    123   1.1  christos 	_openpam_debug = 1;
    124   1.1  christos #endif
    125  1.13  christos #ifdef ALLOW_GROUP_CHANGE
    126  1.13  christos 	char *gname;
    127  1.13  christos #endif
    128   1.1  christos 
    129  1.14  christos 	(void)setprogname(argv[0]);
    130   1.1  christos 	asme = asthem = fastlogin = 0;
    131   1.1  christos 	gohome = 1;
    132   1.1  christos 	shell = class = NULL;
    133   1.1  christos 	while ((ch = getopt(argc, argv, ARGSTR)) != -1)
    134   1.1  christos 		switch((char)ch) {
    135   1.1  christos 		case 'c':
    136   1.1  christos 			class = optarg;
    137   1.1  christos 			break;
    138   1.1  christos 		case 'd':
    139   1.1  christos 			asme = 0;
    140   1.1  christos 			asthem = 1;
    141   1.1  christos 			gohome = 0;
    142   1.1  christos 			break;
    143   1.1  christos 		case 'f':
    144   1.1  christos 			fastlogin = 1;
    145   1.1  christos 			break;
    146   1.1  christos 		case '-':
    147   1.1  christos 		case 'l':
    148   1.1  christos 			asme = 0;
    149   1.1  christos 			asthem = 1;
    150   1.1  christos 			break;
    151   1.1  christos 		case 'm':
    152   1.1  christos 			asme = 1;
    153   1.1  christos 			asthem = 0;
    154   1.1  christos 			break;
    155   1.1  christos 		case '?':
    156   1.1  christos 		default:
    157   1.1  christos 			(void)fprintf(stderr,
    158  1.13  christos #ifdef ALLOW_GROUP_CHANGE
    159  1.13  christos 			    "Usage: %s [%s] [login[:group] [shell arguments]]\n",
    160  1.13  christos #else
    161   1.1  christos 			    "Usage: %s [%s] [login [shell arguments]]\n",
    162  1.13  christos #endif
    163   1.1  christos 			    getprogname(), ARGSTR);
    164   1.7  christos 			exit(EXIT_FAILURE);
    165   1.1  christos 		}
    166   1.1  christos 	argv += optind;
    167   1.1  christos 
    168   1.1  christos 	/* Lower the priority so su runs faster */
    169   1.1  christos 	errno = 0;
    170   1.1  christos 	prio = getpriority(PRIO_PROCESS, 0);
    171   1.1  christos 	if (errno)
    172   1.1  christos 		prio = 0;
    173   1.1  christos 	if (prio > -2)
    174   1.1  christos 		(void)setpriority(PRIO_PROCESS, 0, -2);
    175   1.1  christos 	openlog("su", 0, LOG_AUTH);
    176   1.1  christos 
    177   1.1  christos 	/* get current login name and shell */
    178   1.1  christos 	ruid = getuid();
    179   1.1  christos 	username = getlogin();
    180  1.13  christos 	if (username == NULL ||
    181   1.7  christos 	    getpwnam_r(username, &pwres, pwbuf, sizeof(pwbuf), &pwd) != 0 ||
    182   1.9  christos 	    pwd == NULL || pwd->pw_uid != ruid) {
    183   1.7  christos 		if (getpwuid_r(ruid, &pwres, pwbuf, sizeof(pwbuf), &pwd) != 0)
    184   1.7  christos 			pwd = NULL;
    185   1.7  christos 	}
    186   1.1  christos 	if (pwd == NULL)
    187   1.7  christos 		errx(EXIT_FAILURE, "who are you?");
    188  1.13  christos 	username = estrdup(pwd->pw_name);
    189   1.1  christos 
    190   1.1  christos 	if (asme) {
    191   1.1  christos 		if (pwd->pw_shell && *pwd->pw_shell) {
    192  1.13  christos 			(void)estrlcpy(shellbuf, pwd->pw_shell, sizeof(shellbuf));
    193   1.1  christos 			shell = shellbuf;
    194   1.1  christos 		} else {
    195   1.1  christos 			shell = _PATH_BSHELL;
    196   1.1  christos 			iscsh = NO;
    197   1.1  christos 		}
    198   1.1  christos 	}
    199   1.1  christos 	/* get target login information, default to root */
    200   1.1  christos 	user = *argv ? *argv : "root";
    201   1.1  christos 	np = *argv ? argv : argv - 1;
    202   1.1  christos 
    203  1.13  christos #ifdef ALLOW_GROUP_CHANGE
    204  1.13  christos 	if ((p = strchr(user, ':')) != NULL) {
    205  1.13  christos 		*p = '\0';
    206  1.13  christos 		gname = ++p;
    207  1.24       kre 		if (*gname == '\0')
    208  1.24       kre 			errx(EXIT_FAILURE, "missing 'group' after ':'");
    209  1.24       kre 	} else
    210  1.13  christos 		gname = NULL;
    211  1.13  christos 
    212  1.13  christos #ifdef ALLOW_EMPTY_USER
    213  1.13  christos 	if (user[0] == '\0')
    214  1.13  christos 		user = username;
    215  1.13  christos #endif
    216  1.13  christos #endif
    217   1.9  christos 	if (getpwnam_r(user, &pwres, pwbuf, sizeof(pwbuf), &pwd) != 0 ||
    218   1.9  christos 	    pwd == NULL)
    219   1.7  christos 		errx(EXIT_FAILURE, "unknown login %s", user);
    220   1.1  christos 
    221   1.1  christos 	/*
    222   1.1  christos 	 * PAM initialization
    223   1.1  christos 	 */
    224  1.22    rillig #define PAM_END(msg) do { func = msg; goto done;} /* NOTREACHED */ while (0)
    225   1.1  christos 
    226   1.1  christos 	if ((pam_err = pam_start("su", user, &pamc, &pamh)) != PAM_SUCCESS) {
    227   1.1  christos 		if (pamh != NULL)
    228   1.1  christos 			PAM_END("pam_start");
    229   1.1  christos 		/* Things went really bad... */
    230   1.3  christos 		syslog(LOG_ERR, "pam_start failed: %s",
    231  1.18  christos 		    safe_pam_strerror(pamh, pam_err));
    232   1.7  christos 		errx(EXIT_FAILURE, "pam_start failed");
    233   1.1  christos 	}
    234   1.1  christos 
    235   1.1  christos #define PAM_END_ITEM(item)	PAM_END("pam_set_item(" # item ")")
    236   1.4      manu #define PAM_SET_ITEM(item, var) 					    \
    237   1.4      manu 	if ((pam_err = pam_set_item(pamh, (item), (var))) != PAM_SUCCESS)   \
    238   1.1  christos 		PAM_END_ITEM(item)
    239   1.1  christos 
    240   1.1  christos 	/*
    241   1.1  christos 	 * Fill hostname, username and tty
    242   1.1  christos 	 */
    243   1.1  christos 	PAM_SET_ITEM(PAM_RUSER, username);
    244   1.1  christos 	if (gethostname(hostname, sizeof(hostname)) != -1)
    245   1.1  christos 		PAM_SET_ITEM(PAM_RHOST, hostname);
    246   1.1  christos 
    247   1.1  christos 	if ((tty = ttyname(STDERR_FILENO)) != NULL)
    248   1.1  christos 		PAM_SET_ITEM(PAM_TTY, tty);
    249   1.1  christos 
    250  1.13  christos 	/*
    251  1.13  christos 	 * Authentication
    252   1.1  christos 	 */
    253   1.1  christos 	if ((pam_err = pam_authenticate(pamh, 0)) != PAM_SUCCESS) {
    254   1.3  christos 		syslog(LOG_WARNING, "BAD SU %s to %s%s: %s",
    255  1.18  christos 		    username, user, ontty(), safe_pam_strerror(pamh, pam_err));
    256  1.13  christos 		(void)pam_end(pamh, pam_err);
    257  1.20       shm 		errx(EXIT_FAILURE, "Sorry: %s", safe_pam_strerror(NULL, pam_err));
    258   1.1  christos 	}
    259   1.1  christos 
    260   1.1  christos 	/*
    261   1.1  christos 	 * Authorization
    262   1.1  christos 	 */
    263   1.1  christos 	switch(pam_err = pam_acct_mgmt(pamh, 0)) {
    264   1.1  christos 	case PAM_NEW_AUTHTOK_REQD:
    265   1.1  christos 		pam_err = pam_chauthtok(pamh, PAM_CHANGE_EXPIRED_AUTHTOK);
    266   1.1  christos 		if (pam_err != PAM_SUCCESS)
    267   1.1  christos 			PAM_END("pam_chauthok");
    268   1.1  christos 		break;
    269   1.1  christos 	case PAM_SUCCESS:
    270   1.1  christos 		break;
    271   1.1  christos 	default:
    272   1.1  christos 		PAM_END("pam_acct_mgmt");
    273   1.1  christos 		break;
    274   1.1  christos 	}
    275   1.1  christos 
    276   1.1  christos 	/*
    277  1.13  christos 	 * pam_authenticate might have changed the target user.
    278   1.1  christos 	 * refresh pwd and user
    279   1.1  christos 	 */
    280   1.1  christos 	pam_err = pam_get_item(pamh, PAM_USER, &newuser);
    281   1.1  christos 	if (pam_err != PAM_SUCCESS) {
    282   1.1  christos 		syslog(LOG_WARNING,
    283  1.18  christos 		    "pam_get_item(PAM_USER): %s", safe_pam_strerror(pamh, pam_err));
    284   1.1  christos 	} else {
    285  1.13  christos 		user = (char *)__UNCONST(newuser);
    286   1.9  christos 		if (getpwnam_r(user, &pwres, pwbuf, sizeof(pwbuf), &pwd) != 0 ||
    287   1.9  christos 		    pwd == NULL) {
    288  1.13  christos 			(void)pam_end(pamh, pam_err);
    289   1.1  christos 			syslog(LOG_ERR, "unknown login: %s", username);
    290   1.7  christos 			errx(EXIT_FAILURE, "unknown login: %s", username);
    291   1.1  christos 		}
    292   1.1  christos 	}
    293   1.1  christos 
    294   1.1  christos #define ERRX_PAM_END(args) do {			\
    295  1.13  christos 	(void)pam_end(pamh, pam_err);		\
    296   1.1  christos 	errx args;				\
    297  1.23    rillig } while (0)
    298   1.1  christos 
    299   1.1  christos #define ERR_PAM_END(args) do {			\
    300  1.13  christos 	(void)pam_end(pamh, pam_err);		\
    301   1.1  christos 	err args;				\
    302  1.23    rillig } while (0)
    303  1.13  christos 
    304   1.1  christos 	/* force the usage of specified class */
    305   1.1  christos 	if (class) {
    306  1.13  christos 		if (ruid)
    307   1.7  christos 			ERRX_PAM_END((EXIT_FAILURE, "Only root may use -c"));
    308   1.1  christos 
    309   1.1  christos 		pwd->pw_class = class;
    310   1.1  christos 	}
    311   1.2  christos 
    312   1.1  christos 	if ((lc = login_getclass(pwd->pw_class)) == NULL)
    313   1.7  christos 		ERRX_PAM_END((EXIT_FAILURE,
    314   1.7  christos 		    "Unknown class %s\n", pwd->pw_class));
    315   1.1  christos 
    316   1.1  christos 	if (asme) {
    317   1.1  christos 		/* if asme and non-standard target shell, must be root */
    318  1.13  christos 		if (chshell(pwd->pw_shell) == 0 && ruid)
    319   1.7  christos 			ERRX_PAM_END((EXIT_FAILURE,
    320   1.7  christos 			    "permission denied (shell)."));
    321   1.1  christos 	} else if (pwd->pw_shell && *pwd->pw_shell) {
    322   1.1  christos 		shell = pwd->pw_shell;
    323   1.1  christos 		iscsh = UNSET;
    324   1.1  christos 	} else {
    325   1.1  christos 		shell = _PATH_BSHELL;
    326   1.1  christos 		iscsh = NO;
    327   1.1  christos 	}
    328   1.1  christos 
    329   1.1  christos 	if ((p = strrchr(shell, '/')) != NULL)
    330   1.1  christos 		avshell = p + 1;
    331   1.1  christos 	else
    332   1.1  christos 		avshell = shell;
    333   1.1  christos 
    334   1.1  christos 	/* if we're forking a csh, we want to slightly muck the args */
    335   1.1  christos 	if (iscsh == UNSET)
    336   1.1  christos 		iscsh = strstr(avshell, "csh") ? YES : NO;
    337   1.1  christos 
    338   1.2  christos 	/*
    339   1.2  christos 	 * Initialize the supplemental groups before pam gets to them,
    340   1.2  christos 	 * so that other pam modules get a chance to add more when
    341  1.21     htodd 	 * we do setcred. Note, we don't relinquish our set-userid yet
    342   1.1  christos 	 */
    343  1.13  christos 	/* if we aren't changing users, keep the current group members */
    344  1.13  christos 	if (ruid != pwd->pw_uid &&
    345  1.13  christos 	    setusercontext(lc, pwd, pwd->pw_uid, LOGIN_SETGROUP) == -1)
    346   1.7  christos 		ERR_PAM_END((EXIT_FAILURE, "setting user context"));
    347   1.2  christos 
    348  1.13  christos #ifdef ALLOW_GROUP_CHANGE
    349  1.13  christos 	addgroup(lc, gname, pwd, ruid, "Group Password:");
    350  1.13  christos #endif
    351   1.2  christos 	if ((pam_err = pam_setcred(pamh, PAM_ESTABLISH_CRED)) != PAM_SUCCESS)
    352   1.2  christos 		PAM_END("pam_setcred");
    353   1.1  christos 
    354   1.1  christos 	/*
    355  1.13  christos 	 * Manage session.
    356   1.1  christos 	 */
    357   1.1  christos 	if (asthem) {
    358   1.1  christos 		pid_t pid, xpid;
    359   1.6  christos 		int status = 1;
    360   1.6  christos 		struct sigaction sa, sa_int, sa_pipe, sa_quit;
    361   1.6  christos 		int fds[2];
    362   1.1  christos 
    363   1.1  christos  		if ((pam_err = pam_open_session(pamh, 0)) != PAM_SUCCESS)
    364   1.1  christos 			PAM_END("pam_open_session");
    365   1.1  christos 
    366   1.1  christos 		/*
    367   1.1  christos 		 * In order to call pam_close_session after the
    368  1.13  christos 		 * command terminates, we need to fork.
    369   1.1  christos 		 */
    370   1.6  christos 		sa.sa_flags = SA_RESTART;
    371   1.6  christos 		sa.sa_handler = SIG_IGN;
    372  1.13  christos 		(void)sigemptyset(&sa.sa_mask);
    373   1.6  christos 		(void)sigaction(SIGINT, &sa, &sa_int);
    374   1.6  christos 		(void)sigaction(SIGQUIT, &sa, &sa_quit);
    375   1.6  christos 		(void)sigaction(SIGPIPE, &sa, &sa_pipe);
    376   1.6  christos 		sa.sa_handler = SIG_DFL;
    377   1.6  christos 		(void)sigaction(SIGTSTP, &sa, NULL);
    378   1.6  christos 		/*
    379   1.6  christos 		 * Use a pipe to guarantee the order of execution of
    380   1.6  christos 		 * the parent and the child.
    381   1.6  christos 		 */
    382   1.6  christos 		if (pipe(fds) == -1) {
    383   1.6  christos 			warn("pipe failed");
    384   1.6  christos 			goto out;
    385   1.6  christos 		}
    386  1.13  christos 
    387   1.1  christos 		switch (pid = fork()) {
    388   1.1  christos 		case -1:
    389   1.6  christos 			logit("fork failed (%s)", strerror(errno));
    390   1.6  christos 			goto out;
    391   1.1  christos 
    392   1.1  christos 		case 0:	/* Child */
    393   1.6  christos 			(void)close(fds[1]);
    394   1.6  christos 			(void)read(fds[0], &status, 1);
    395   1.6  christos 			(void)close(fds[0]);
    396   1.6  christos 			(void)sigaction(SIGINT, &sa_int, NULL);
    397   1.6  christos 			(void)sigaction(SIGQUIT, &sa_quit, NULL);
    398   1.6  christos 			(void)sigaction(SIGPIPE, &sa_pipe, NULL);
    399   1.1  christos 			break;
    400   1.1  christos 
    401   1.1  christos 		default:
    402   1.6  christos 			sa.sa_handler = SIG_IGN;
    403   1.6  christos 			(void)sigaction(SIGTTOU, &sa, NULL);
    404   1.6  christos 			(void)close(fds[0]);
    405   1.6  christos 			(void)setpgid(pid, pid);
    406   1.6  christos 			(void)tcsetpgrp(STDERR_FILENO, pid);
    407   1.6  christos 			(void)close(fds[1]);
    408   1.6  christos 			(void)sigaction(SIGPIPE, &sa_pipe, NULL);
    409   1.1  christos 			/*
    410   1.1  christos 			 * Parent: wait for the child to terminate
    411   1.1  christos 			 * and call pam_close_session.
    412   1.1  christos 			 */
    413   1.6  christos 			while ((xpid = waitpid(pid, &status, WUNTRACED))
    414   1.6  christos 			    == pid) {
    415   1.6  christos 				if (WIFSTOPPED(status)) {
    416   1.6  christos 					(void)kill(getpid(), SIGSTOP);
    417   1.6  christos 					(void)tcsetpgrp(STDERR_FILENO,
    418   1.6  christos 					    getpgid(pid));
    419   1.6  christos 					(void)kill(pid, SIGCONT);
    420   1.6  christos 					status = 1;
    421   1.6  christos 					continue;
    422   1.5  christos 				}
    423   1.6  christos 				break;
    424   1.1  christos 			}
    425   1.1  christos 
    426   1.6  christos 			(void)tcsetpgrp(STDERR_FILENO, getpgid(0));
    427   1.6  christos 
    428   1.6  christos 			if (xpid == -1) {
    429   1.6  christos 			    logit("Error waiting for pid %d (%s)", pid,
    430   1.6  christos 				strerror(errno));
    431   1.6  christos 			} else if (xpid != pid) {
    432   1.6  christos 			    /* Can't happen. */
    433   1.6  christos 			    logit("Wrong PID: %d != %d", pid, xpid);
    434   1.6  christos 			}
    435   1.6  christos out:
    436   1.6  christos 			pam_err = pam_setcred(pamh, PAM_DELETE_CRED);
    437   1.1  christos 			if (pam_err != PAM_SUCCESS)
    438  1.13  christos 				logit("pam_setcred: %s",
    439  1.18  christos 				    safe_pam_strerror(pamh, pam_err));
    440   1.6  christos 			pam_err = pam_close_session(pamh, 0);
    441   1.6  christos 			if (pam_err != PAM_SUCCESS)
    442  1.13  christos 				logit("pam_close_session: %s",
    443  1.18  christos 				    safe_pam_strerror(pamh, pam_err));
    444  1.13  christos 			(void)pam_end(pamh, pam_err);
    445   1.6  christos 			exit(WEXITSTATUS(status));
    446  1.13  christos 			break;
    447   1.1  christos 		}
    448   1.1  christos 	}
    449   1.1  christos 
    450  1.13  christos 	/*
    451   1.1  christos 	 * The child: starting here, we don't have to care about
    452  1.13  christos 	 * handling PAM issues if we exit, the parent will do the
    453   1.1  christos 	 * job when we exit.
    454   1.1  christos 	 */
    455   1.1  christos #undef PAM_END
    456   1.1  christos #undef ERR_PAM_END
    457   1.1  christos #undef ERRX_PAM_END
    458   1.1  christos 
    459   1.1  christos 	if (!asme) {
    460   1.1  christos 		if (asthem) {
    461   1.1  christos 			char **pamenv;
    462   1.1  christos 
    463   1.1  christos 			p = getenv("TERM");
    464  1.13  christos 			/*
    465  1.13  christos 			 * Create an empty environment
    466   1.1  christos 			 */
    467  1.13  christos 			environ = emalloc(sizeof(char *));
    468   1.1  christos 			environ[0] = NULL;
    469   1.1  christos 
    470  1.13  christos 			/*
    471  1.25    andvar 			 * Add PAM environment, before the LOGIN_CAP stuff:
    472   1.1  christos 			 * if the login class is unspecified, we'll get the
    473   1.1  christos 			 * same data from PAM, if -c was used, the specified
    474   1.1  christos 			 * class must override PAM.
    475   1.1  christos 	 		 */
    476   1.1  christos 			if ((pamenv = pam_getenvlist(pamh)) != NULL) {
    477   1.1  christos 				char **envitem;
    478   1.1  christos 
    479  1.13  christos 				/*
    480  1.13  christos 				 * XXX Here FreeBSD filters out
    481   1.1  christos 				 * SHELL, LOGNAME, MAIL, CDPATH, IFS, PATH
    482   1.1  christos 				 * how could we get untrusted data here?
    483   1.1  christos 				 */
    484   1.1  christos 				for (envitem = pamenv; *envitem; envitem++) {
    485  1.16      tron 					if (putenv(*envitem) == -1)
    486  1.16      tron 						free(*envitem);
    487   1.1  christos 				}
    488   1.1  christos 
    489   1.1  christos 				free(pamenv);
    490   1.1  christos 			}
    491   1.1  christos 
    492  1.13  christos 			if (setusercontext(lc, pwd, pwd->pw_uid, LOGIN_SETPATH |
    493  1.13  christos 				LOGIN_SETENV | LOGIN_SETUMASK) == -1)
    494   1.7  christos 				err(EXIT_FAILURE, "setting user context");
    495   1.1  christos 			if (p)
    496   1.1  christos 				(void)setenv("TERM", p, 1);
    497  1.13  christos 		}
    498   1.1  christos 
    499  1.10    kleink 		if (asthem || pwd->pw_uid) {
    500  1.10    kleink 			(void)setenv("LOGNAME", pwd->pw_name, 1);
    501   1.1  christos 			(void)setenv("USER", pwd->pw_name, 1);
    502  1.10    kleink 		}
    503   1.1  christos 		(void)setenv("HOME", pwd->pw_dir, 1);
    504   1.1  christos 		(void)setenv("SHELL", shell, 1);
    505   1.1  christos 	}
    506   1.1  christos 	(void)setenv("SU_FROM", username, 1);
    507   1.1  christos 
    508   1.1  christos 	if (iscsh == YES) {
    509   1.1  christos 		if (fastlogin)
    510  1.13  christos 			*np-- = __UNCONST("-f");
    511   1.1  christos 		if (asme)
    512  1.13  christos 			*np-- = __UNCONST("-m");
    513   1.1  christos 	} else {
    514   1.1  christos 		if (fastlogin)
    515  1.13  christos 			(void)unsetenv("ENV");
    516   1.1  christos 	}
    517   1.1  christos 
    518   1.1  christos 	if (asthem) {
    519   1.1  christos 		avshellbuf[0] = '-';
    520  1.13  christos 		(void)estrlcpy(avshellbuf + 1, avshell, sizeof(avshellbuf) - 1);
    521   1.1  christos 		avshell = avshellbuf;
    522   1.1  christos 	} else if (iscsh == YES) {
    523   1.1  christos 		/* csh strips the first character... */
    524   1.1  christos 		avshellbuf[0] = '_';
    525  1.13  christos 		(void)estrlcpy(avshellbuf + 1, avshell, sizeof(avshellbuf) - 1);
    526   1.1  christos 		avshell = avshellbuf;
    527   1.1  christos 	}
    528  1.13  christos 	*np = __UNCONST(avshell);
    529   1.1  christos 
    530   1.1  christos 	if (ruid != 0)
    531   1.1  christos 		syslog(LOG_NOTICE, "%s to %s%s",
    532   1.1  christos 		    username, pwd->pw_name, ontty());
    533   1.1  christos 
    534  1.12   mlelstv 	/* Raise our priority back to what we had before */
    535  1.12   mlelstv 	(void)setpriority(PRIO_PROCESS, 0, prio);
    536  1.12   mlelstv 
    537   1.2  christos 	/*
    538   1.2  christos 	 * Set user context, except for umask, and the stuff
    539   1.2  christos 	 * we have done before.
    540   1.2  christos 	 */
    541  1.13  christos 	setwhat = LOGIN_SETALL & ~(LOGIN_SETENV | LOGIN_SETUMASK |
    542  1.13  christos 	    LOGIN_SETLOGIN | LOGIN_SETPATH | LOGIN_SETGROUP);
    543   1.2  christos 
    544   1.2  christos 	/*
    545   1.2  christos 	 * Don't touch resource/priority settings if -m has been used
    546   1.2  christos 	 * or -l and -c hasn't, and we're not su'ing to root.
    547   1.2  christos 	 */
    548   1.2  christos 	if ((asme || (!asthem && class == NULL)) && pwd->pw_uid)
    549  1.13  christos 		setwhat &= ~(LOGIN_SETPRIORITY | LOGIN_SETRESOURCES);
    550   1.2  christos 
    551   1.2  christos 	if (setusercontext(lc, pwd, pwd->pw_uid, setwhat) == -1)
    552   1.7  christos 		err(EXIT_FAILURE, "setusercontext");
    553   1.1  christos 
    554  1.19   mlelstv 	if (!asme) {
    555  1.19   mlelstv 		if (asthem) {
    556  1.19   mlelstv 			if (gohome && chdir(pwd->pw_dir) == -1)
    557  1.19   mlelstv 				errx(EXIT_FAILURE, "no directory");
    558  1.19   mlelstv 		}
    559  1.19   mlelstv 	}
    560  1.19   mlelstv 
    561   1.1  christos 	(void)execv(shell, np);
    562   1.7  christos 	err(EXIT_FAILURE, "%s", shell);
    563   1.1  christos done:
    564  1.18  christos 	logit("%s: %s", func, safe_pam_strerror(pamh, pam_err));
    565  1.13  christos 	(void)pam_end(pamh, pam_err);
    566   1.7  christos 	return EXIT_FAILURE;
    567   1.1  christos }
    568   1.1  christos 
    569   1.6  christos static void
    570   1.6  christos logit(const char *fmt, ...)
    571   1.6  christos {
    572   1.6  christos 	va_list ap;
    573   1.6  christos 
    574   1.6  christos 	va_start(ap, fmt);
    575   1.6  christos 	vwarnx(fmt, ap);
    576  1.18  christos 	va_end(ap);
    577  1.18  christos 	va_start(ap, fmt);
    578   1.6  christos 	vsyslog(LOG_ERR, fmt, ap);
    579   1.6  christos 	va_end(ap);
    580   1.6  christos }
    581