Home | History | Annotate | Line # | Download | only in login
login_pam.c revision 1.5
      1 /*     $NetBSD: login_pam.c,v 1.5 2005/03/30 01:30:21 christos Exp $       */
      2 
      3 /*-
      4  * Copyright (c) 1980, 1987, 1988, 1991, 1993, 1994
      5  *	The Regents of the University of California.  All rights reserved.
      6  *
      7  * Redistribution and use in source and binary forms, with or without
      8  * modification, are permitted provided that the following conditions
      9  * are met:
     10  * 1. Redistributions of source code must retain the above copyright
     11  *    notice, this list of conditions and the following disclaimer.
     12  * 2. Redistributions in binary form must reproduce the above copyright
     13  *    notice, this list of conditions and the following disclaimer in the
     14  *    documentation and/or other materials provided with the distribution.
     15  * 3. Neither the name of the University nor the names of its contributors
     16  *    may be used to endorse or promote products derived from this software
     17  *    without specific prior written permission.
     18  *
     19  * THIS SOFTWARE IS PROVIDED BY THE REGENTS 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 REGENTS 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 #include <sys/cdefs.h>
     33 #ifndef lint
     34 __COPYRIGHT(
     35 "@(#) Copyright (c) 1980, 1987, 1988, 1991, 1993, 1994\n\
     36 	The Regents of the University of California.  All rights reserved.\n");
     37 #endif /* not lint */
     38 
     39 #ifndef lint
     40 #if 0
     41 static char sccsid[] = "@(#)login.c	8.4 (Berkeley) 4/2/94";
     42 #endif
     43 __RCSID("$NetBSD: login_pam.c,v 1.5 2005/03/30 01:30:21 christos Exp $");
     44 #endif /* not lint */
     45 
     46 /*
     47  * login [ name ]
     48  * login -h hostname	(for telnetd, etc.)
     49  * login -f name	(for pre-authenticated login: datakit, xterm, etc.)
     50  */
     51 
     52 #include <sys/param.h>
     53 #include <sys/stat.h>
     54 #include <sys/time.h>
     55 #include <sys/resource.h>
     56 #include <sys/file.h>
     57 #include <sys/wait.h>
     58 #include <sys/socket.h>
     59 
     60 #include <err.h>
     61 #include <errno.h>
     62 #include <grp.h>
     63 #include <pwd.h>
     64 #include <setjmp.h>
     65 #include <signal.h>
     66 #include <stdio.h>
     67 #include <stdlib.h>
     68 #include <string.h>
     69 #include <syslog.h>
     70 #include <time.h>
     71 #include <ttyent.h>
     72 #include <tzfile.h>
     73 #include <unistd.h>
     74 #include <util.h>
     75 #include <login_cap.h>
     76 #include <vis.h>
     77 
     78 #include <security/pam_appl.h>
     79 #include <security/openpam.h>
     80 
     81 #include "pathnames.h"
     82 
     83 void	 badlogin (char *);
     84 static void	 update_db (int);
     85 void	 getloginname (void);
     86 int	 main (int, char *[]);
     87 void	 motd (char *);
     88 int	 rootterm (char *);
     89 void	 sigint (int);
     90 void	 sleepexit (int);
     91 const	 char *stypeof (const char *);
     92 void	 timedout (int);
     93 void	 decode_ss (const char *);
     94 void	 usage (void);
     95 
     96 static struct pam_conv pamc = { openpam_ttyconv, NULL };
     97 
     98 #define	TTYGRPNAME	"tty"		/* name of group to own ttys */
     99 
    100 #define DEFAULT_BACKOFF 3
    101 #define DEFAULT_RETRIES 10
    102 
    103 /*
    104  * This bounds the time given to login.  Not a define so it can
    105  * be patched on machines where it's too small.
    106  */
    107 u_int	timeout = 300;
    108 
    109 struct	passwd *pwd, pwres;
    110 char	pwbuf[1024];
    111 struct	group *gr;
    112 int	failures, have_ss;
    113 char	term[64], *envinit[1], *hostname, *username, *tty, *nested;
    114 struct timeval now;
    115 struct sockaddr_storage ss;
    116 
    117 extern const char copyrightstr[];
    118 
    119 int
    120 main(int argc, char *argv[])
    121 {
    122 	extern char **environ;
    123 	struct stat st;
    124 	int ask, ch, cnt, fflag, hflag, pflag, sflag, quietlog, rootlogin;
    125 	int auth_passed;
    126 	int Fflag;
    127 	uid_t uid, saved_uid;
    128 	gid_t saved_gid, saved_gids[NGROUPS_MAX];
    129 	int nsaved_gids;
    130 	char *domain, *p, *ttyn, *pwprompt;
    131 	char tbuf[MAXPATHLEN + 2], tname[sizeof(_PATH_TTY) + 10];
    132 	char localhost[MAXHOSTNAMELEN + 1];
    133 	int need_chpass, require_chpass;
    134 	int login_retries = DEFAULT_RETRIES,
    135 	    login_backoff = DEFAULT_BACKOFF;
    136 	char *shell = NULL;
    137 	login_cap_t *lc = NULL;
    138 	pam_handle_t *pamh = NULL;
    139 	int pam_err;
    140 	void *oint;
    141 	void *oabrt;
    142 	const void *newuser;
    143 	int pam_silent = PAM_SILENT;
    144 	pid_t xpid, pid;
    145 	int status;
    146 	char *saved_term;
    147 	char **pamenv;
    148 
    149 	tbuf[0] = '\0';
    150 	pwprompt = NULL;
    151 	nested = NULL;
    152 	need_chpass = require_chpass = 0;
    153 
    154 	(void)signal(SIGALRM, timedout);
    155 	(void)alarm(timeout);
    156 	(void)signal(SIGQUIT, SIG_IGN);
    157 	(void)signal(SIGINT, SIG_IGN);
    158 	(void)setpriority(PRIO_PROCESS, 0, 0);
    159 
    160 	openlog("login", 0, LOG_AUTH);
    161 
    162 	/*
    163 	 * -p is used by getty to tell login not to destroy the environment
    164 	 * -f is used to skip a second login authentication
    165 	 * -h is used by other servers to pass the name of the remote host to
    166 	 *    login so that it may be placed in utmp/utmpx and wtmp/wtmpx
    167 	 * -a in addition to -h, a server my supply -a to pass the actual
    168 	 *    server address.
    169 	 * -s is used to force use of S/Key or equivalent.
    170 	 */
    171 	domain = NULL;
    172 	if (gethostname(localhost, sizeof(localhost)) < 0)
    173 		syslog(LOG_ERR, "couldn't get local hostname: %m");
    174 	else
    175 		domain = strchr(localhost, '.');
    176 	localhost[sizeof(localhost) - 1] = '\0';
    177 
    178 	Fflag = fflag = hflag = pflag = sflag = 0;
    179 	have_ss = 0;
    180 	uid = getuid();
    181 	while ((ch = getopt(argc, argv, "a:Ffh:ps")) != -1)
    182 		switch (ch) {
    183 		case 'a':
    184 			if (uid) {
    185 				errno = EPERM;
    186 				err(EXIT_FAILURE, "-a option");
    187 			}
    188 			decode_ss(optarg);
    189 #ifdef notdef
    190 			(void)sockaddr_snprintf(optarg,
    191 			    sizeof(struct sockaddr_storage), "%a", (void *)&ss);
    192 #endif
    193 			break;
    194 		case 'F':
    195 			Fflag = 1;
    196 			/* FALLTHROUGH */
    197 		case 'f':
    198 			fflag = 1;
    199 			break;
    200 		case 'h':
    201 			if (uid) {
    202 				errno = EPERM;
    203 				err(EXIT_FAILURE, "-h option");
    204 			}
    205 			hflag = 1;
    206 			if (domain && (p = strchr(optarg, '.')) != NULL &&
    207 			    strcasecmp(p, domain) == 0)
    208 				*p = '\0';
    209 			hostname = optarg;
    210 			break;
    211 		case 'p':
    212 			pflag = 1;
    213 			break;
    214 		case 's':
    215 			sflag = 1;
    216 			break;
    217 		default:
    218 		case '?':
    219 			usage();
    220 			break;
    221 		}
    222 
    223 	setproctitle(NULL);
    224 	argc -= optind;
    225 	argv += optind;
    226 
    227 	if (*argv) {
    228 		username = *argv;
    229 		ask = 0;
    230 	} else
    231 		ask = 1;
    232 
    233 #ifdef F_CLOSEM
    234 	(void)fcntl(3, F_CLOSEM, 0);
    235 #else
    236 	for (cnt = getdtablesize(); cnt > 2; cnt--)
    237 		(void)close(cnt);
    238 #endif
    239 
    240 	ttyn = ttyname(STDIN_FILENO);
    241 	if (ttyn == NULL || *ttyn == '\0') {
    242 		(void)snprintf(tname, sizeof(tname), "%s??", _PATH_TTY);
    243 		ttyn = tname;
    244 	}
    245 	if ((tty = strstr(ttyn, "/pts/")) != NULL)
    246 		++tty;
    247 	else if ((tty = strrchr(ttyn, '/')) != NULL)
    248 		++tty;
    249 	else
    250 		tty = ttyn;
    251 
    252 	if (issetugid()) {
    253 		nested = strdup(user_from_uid(getuid(), 0));
    254 		if (nested == NULL) {
    255                 	syslog(LOG_ERR, "strdup: %m");
    256                 	sleepexit(EXIT_FAILURE);
    257 		}
    258 	}
    259 
    260 	/* Get "login-retries" and "login-backoff" from default class */
    261 	if ((lc = login_getclass(NULL)) != NULL) {
    262 		login_retries = (int)login_getcapnum(lc, "login-retries",
    263 		    DEFAULT_RETRIES, DEFAULT_RETRIES);
    264 		login_backoff = (int)login_getcapnum(lc, "login-backoff",
    265 		    DEFAULT_BACKOFF, DEFAULT_BACKOFF);
    266 		login_close(lc);
    267 		lc = NULL;
    268 	}
    269 
    270 
    271 	for (cnt = 0;; ask = 1) {
    272 		if (ask) {
    273 			fflag = 0;
    274 			getloginname();
    275 		}
    276 		rootlogin = 0;
    277 		auth_passed = 0;
    278 		if (strlen(username) > MAXLOGNAME)
    279 			username[MAXLOGNAME] = '\0';
    280 
    281 		/*
    282 		 * Note if trying multiple user names; log failures for
    283 		 * previous user name, but don't bother logging one failure
    284 		 * for nonexistent name (mistyped username).
    285 		 */
    286 		if (failures && strcmp(tbuf, username)) {
    287 			if (failures > (pwd ? 0 : 1))
    288 				badlogin(tbuf);
    289 			failures = 0;
    290 		}
    291 
    292 #define PAM_END(msg) do { 						\
    293 	syslog(LOG_ERR, "%s: %s", msg, pam_strerror(pamh, pam_err)); 	\
    294 	warnx("%s: %s", msg, pam_strerror(pamh, pam_err));		\
    295 	pam_end(pamh, pam_err);						\
    296 	sleepexit(EXIT_FAILURE);					\
    297 } while (/*CONSTCOND*/0)
    298 
    299 		pam_err = pam_start("login", username, &pamc, &pamh);
    300 		if (pam_err != PAM_SUCCESS) {
    301 			if (pamh != NULL)
    302 				PAM_END("pam_start");
    303 			/* Things went really bad... */
    304 			syslog(LOG_ERR, "pam_start failed: %s",
    305 			    pam_strerror(pamh, pam_err));
    306 			errx(EXIT_FAILURE, "pam_start failed");
    307 		}
    308 
    309 #define PAM_SET_ITEM(item, var)	do {					\
    310 	pam_err = pam_set_item(pamh, (item), (var));			\
    311 	if (pam_err != PAM_SUCCESS)					\
    312 		PAM_END("pam_set_item(" # item ")");			\
    313 } while (/*CONSTCOND*/0)
    314 
    315 		/*
    316 		 * Fill hostname tty, and nested user
    317 		 */
    318 		PAM_SET_ITEM(PAM_RHOST, hostname);
    319 		PAM_SET_ITEM(PAM_TTY, tty);
    320 		if (nested)
    321 			PAM_SET_ITEM(PAM_NUSER, nested);
    322 		if (have_ss)
    323 			PAM_SET_ITEM(PAM_SOCKADDR, &ss);
    324 
    325 		if (getpwnam_r(username, &pwres, pwbuf, sizeof(pwbuf),
    326 		    &pwd) != 0) {
    327 			pam_end(pamh, PAM_SUCCESS);
    328 			syslog(LOG_ERR, "Cannot find user `%s'", username);
    329 			errx(EXIT_FAILURE, "Cannot find user `%s'", username);
    330 		}
    331 
    332 		/*
    333 		 * Establish the class now, before we might goto
    334 		 * within the next block. pwd can be NULL since it
    335 		 * falls back to the "default" class if it is.
    336 		 */
    337 		lc = login_getclass(pwd ? pwd->pw_class : NULL);
    338 
    339 		/*
    340 		 * if we have a valid account name, and it doesn't have a
    341 		 * password, or the -f option was specified and the caller
    342 		 * is root or the caller isn't changing their uid, don't
    343 		 * authenticate.
    344 		 */
    345 		if (pwd) {
    346 			if (pwd->pw_uid == 0)
    347 				rootlogin = 1;
    348 
    349 			if (fflag && (uid == 0 || uid == pwd->pw_uid)) {
    350 				/* already authenticated */
    351 				auth_passed = 1;
    352 				goto skip_auth;
    353 			}
    354 		}
    355 
    356 		(void)setpriority(PRIO_PROCESS, 0, -4);
    357 
    358 		switch(pam_err = pam_authenticate(pamh, pam_silent)) {
    359 		case PAM_SUCCESS:
    360 			/*
    361 			 * PAM can change the user, refresh
    362 			 * username, pwd, and lc.
    363 			 */
    364 			pam_err = pam_get_item(pamh, PAM_USER, &newuser);
    365 			if (pam_err != PAM_SUCCESS)
    366 				PAM_END("pam_get_item(PAM_USER)");
    367 
    368 			username = (char *)newuser;
    369 			if (getpwnam_r(username, &pwres, pwbuf, sizeof(pwbuf),
    370 			    &pwd) != 0) {
    371 				pam_end(pamh, PAM_SUCCESS);
    372 				syslog(LOG_ERR, "Cannot find user `%s'",
    373 				    username);
    374 				errx(EXIT_FAILURE, "Cannot find user `%s'",
    375 				    username);
    376 			}
    377 			lc = login_getpwclass(pwd);
    378 			auth_passed = 1;
    379 
    380 			switch (pam_err = pam_acct_mgmt(pamh, pam_silent)) {
    381 			case PAM_SUCCESS:
    382 				break;
    383 
    384 			case PAM_NEW_AUTHTOK_REQD:
    385 				pam_err = pam_chauthtok(pamh,
    386 				    pam_silent|PAM_CHANGE_EXPIRED_AUTHTOK);
    387 
    388 				if (pam_err != PAM_SUCCESS)
    389 					PAM_END("pam_chauthtok");
    390 				break;
    391 
    392 			default:
    393 				PAM_END("pam_acct_mgmt");
    394 				break;
    395 			}
    396 			break;
    397 
    398 		case PAM_AUTH_ERR:
    399 		case PAM_USER_UNKNOWN:
    400 		case PAM_MAXTRIES:
    401 			auth_passed = 0;
    402 			break;
    403 
    404 		default:
    405 			PAM_END("pam_authenticate");
    406 			break;
    407 		}
    408 
    409 		(void)setpriority(PRIO_PROCESS, 0, 0);
    410 
    411 skip_auth:
    412 		/*
    413 		 * If the user exists and authentication passed,
    414 		 * get out of the loop and login the user.
    415 		 */
    416 		if (pwd && auth_passed)
    417 			break;
    418 
    419 		(void)printf("Login incorrect\n");
    420 		failures++;
    421 		cnt++;
    422 		/* we allow 10 tries, but after 3 we start backing off */
    423 		if (cnt > login_backoff) {
    424 			if (cnt >= login_retries) {
    425 				badlogin(username);
    426 				pam_end(pamh, PAM_SUCCESS);
    427 				sleepexit(EXIT_FAILURE);
    428 			}
    429 			sleep((u_int)((cnt - 3) * 5));
    430 		}
    431 	}
    432 
    433 	/* committed to login -- turn off timeout */
    434 	(void)alarm((u_int)0);
    435 
    436 	endpwent();
    437 
    438         quietlog = login_getcapbool(lc, "hushlogin", 0);
    439 
    440 	/*
    441 	 * Temporarily give up special privileges so we can change
    442 	 * into NFS-mounted homes that are exported for non-root
    443 	 * access and have mode 7x0
    444 	 */
    445 	saved_uid = geteuid();
    446 	saved_gid = getegid();
    447 	nsaved_gids = getgroups(NGROUPS_MAX, saved_gids);
    448 
    449 	(void)setegid(pwd->pw_gid);
    450 	initgroups(username, pwd->pw_gid);
    451 	(void)seteuid(pwd->pw_uid);
    452 
    453 	if (chdir(pwd->pw_dir) != 0) {
    454                 if (login_getcapbool(lc, "requirehome", 0)) {
    455 			(void)printf("Home directory %s required\n",
    456 			    pwd->pw_dir);
    457 			pam_end(pamh, PAM_SUCCESS);
    458                         exit(EXIT_FAILURE);
    459 		}
    460 
    461 		(void)printf("No home directory %s!\n", pwd->pw_dir);
    462 		if (chdir("/")) {
    463 			pam_end(pamh, PAM_SUCCESS);
    464 			exit(EXIT_SUCCESS);
    465 		}
    466 		pwd->pw_dir = "/";
    467 		(void)printf("Logging in with home = \"/\".\n");
    468 	}
    469 
    470 	if (!quietlog) {
    471 		quietlog = access(_PATH_HUSHLOGIN, F_OK) == 0;
    472 		pam_silent = 0;
    473 	}
    474 
    475 	/* regain special privileges */
    476 	setegid(saved_gid);
    477 	setgroups(nsaved_gids, saved_gids);
    478 	seteuid(saved_uid);
    479 
    480 	(void)chown(ttyn, pwd->pw_uid,
    481 	    (gr = getgrnam(TTYGRPNAME)) ? gr->gr_gid : pwd->pw_gid);
    482 
    483 	if (ttyaction(ttyn, "login", pwd->pw_name))
    484 		(void)printf("Warning: ttyaction failed.\n");
    485 
    486 	/* Nothing else left to fail -- really log in. */
    487         update_db(quietlog);
    488 
    489 	if (nested == NULL && setusercontext(lc, pwd, pwd->pw_uid,
    490 	    LOGIN_SETLOGIN) != 0) {
    491 		syslog(LOG_ERR, "setusercontext failed");
    492 		pam_end(pamh, PAM_SUCCESS);
    493 		exit(EXIT_FAILURE);
    494 	}
    495 
    496 	if (tty[sizeof("tty")-1] == 'd')
    497 		syslog(LOG_INFO, "DIALUP %s, %s", tty, pwd->pw_name);
    498 
    499 	/* If fflag is on, assume caller/authenticator has logged root login. */
    500 	if (rootlogin && fflag == 0) {
    501 		if (hostname)
    502 			syslog(LOG_NOTICE, "ROOT LOGIN (%s) ON %s FROM %s",
    503 			    username, tty, hostname);
    504 		else
    505 			syslog(LOG_NOTICE, "ROOT LOGIN (%s) ON %s",
    506 			    username, tty);
    507 	}
    508 
    509 	/*
    510 	 * Establish groups
    511 	 */
    512 	if (setusercontext(lc, pwd, pwd->pw_uid, LOGIN_SETGROUP) != 0) {
    513 		syslog(LOG_ERR, "setusercontext failed");
    514 		pam_end(pamh, PAM_SUCCESS);
    515 		exit(EXIT_FAILURE);
    516 	}
    517 
    518 	pam_err = pam_setcred(pamh, pam_silent|PAM_ESTABLISH_CRED);
    519 	if (pam_err != PAM_SUCCESS)
    520 		PAM_END("pam_setcred");
    521 
    522 	pam_err = pam_open_session(pamh, pam_silent);
    523 	if (pam_err != PAM_SUCCESS)
    524 		PAM_END("pam_open_session");
    525 
    526 	/*
    527 	 * Fork because we need to call pam_closesession as root.
    528 	 * Make sure signals cannot kill the parent.
    529 	 * This is copied from crontab(8), which has to
    530          * cope with a similar situation.
    531 	 */
    532 	oint = signal(SIGINT, SIG_IGN);
    533 	oabrt = signal(SIGABRT, SIG_IGN);
    534 
    535 	switch(pid = fork()) {
    536 	case -1:
    537 		pam_err = pam_close_session(pamh, 0);
    538 		if (pam_err != PAM_SUCCESS) {
    539 			syslog(LOG_ERR, "pam_close_session: %s",
    540 			    pam_strerror(pamh, pam_err));
    541 			warnx("pam_close_session: %s",
    542 			    pam_strerror(pamh, pam_err));
    543 		}
    544 		syslog(LOG_ERR, "fork failed: %m");
    545 		warn("fork failed");
    546 		pam_end(pamh, pam_err);
    547 		exit(EXIT_FAILURE);
    548 		break;
    549 
    550 	case 0: /* Child */
    551 		break;
    552 
    553 	default:
    554 		/*
    555 		 * Parent: wait for the child to terminate
    556 		 * and call pam_close_session.
    557 		 */
    558 		if ((xpid = waitpid(pid, &status, 0)) != pid) {
    559 			pam_err = pam_close_session(pamh, 0);
    560 			if (pam_err != PAM_SUCCESS) {
    561 				syslog(LOG_ERR,
    562 				    "pam_close_session: %s",
    563 				    pam_strerror(pamh, pam_err));
    564 				warnx("pam_close_session: %s",
    565 				    pam_strerror(pamh, pam_err));
    566 			}
    567 			pam_end(pamh, pam_err);
    568 			if (xpid != -1)
    569 				warnx("wrong PID: %d != %d", pid, xpid);
    570 			else
    571 				warn("wait for pid %d failed", pid);
    572 			exit(EXIT_FAILURE);
    573 		}
    574 
    575 		(void)signal(SIGINT, oint);
    576 		(void)signal(SIGABRT, oabrt);
    577 		if ((pam_err = pam_close_session(pamh, 0)) != PAM_SUCCESS) {
    578 			syslog(LOG_ERR, "pam_close_session: %s",
    579 			    pam_strerror(pamh, pam_err));
    580 			warnx("pam_close_session: %s",
    581 			    pam_strerror(pamh, pam_err));
    582 		}
    583 		pam_end(pamh, PAM_SUCCESS);
    584 		exit(EXIT_SUCCESS);
    585 		break;
    586 	}
    587 
    588 	/*
    589 	 * The child: starting here, we don't have to care about
    590 	 * handling PAM issues if we exit, the parent will do the
    591 	 * job when we exit.
    592          *
    593 	 * Destroy environment unless user has requested its preservation.
    594 	 * Try to preserve TERM anyway.
    595 	 */
    596 	saved_term = getenv("TERM");
    597 	if (!pflag) {
    598 		environ = envinit;
    599 		if (saved_term)
    600 			setenv("TERM", saved_term, 0);
    601 	}
    602 
    603 	if (*pwd->pw_shell == '\0')
    604 		pwd->pw_shell = _PATH_BSHELL;
    605 
    606 	shell = login_getcapstr(lc, "shell", pwd->pw_shell, pwd->pw_shell);
    607 	if (*shell == '\0')
    608 		shell = pwd->pw_shell;
    609 
    610 	if ((pwd->pw_shell = strdup(shell)) == NULL) {
    611 		syslog(LOG_ERR, "Cannot alloc mem");
    612 		exit(EXIT_FAILURE);
    613 	}
    614 
    615 	(void)setenv("HOME", pwd->pw_dir, 1);
    616 	(void)setenv("SHELL", pwd->pw_shell, 1);
    617 	if (term[0] == '\0') {
    618 		char *tt = (char *)stypeof(tty);
    619 
    620 		if (tt == NULL)
    621 			tt = login_getcapstr(lc, "term", NULL, NULL);
    622 
    623 		/* unknown term -> "su" */
    624 		(void)strlcpy(term, tt != NULL ? tt : "su", sizeof(term));
    625 	}
    626 	(void)setenv("TERM", term, 0);
    627 	(void)setenv("LOGNAME", pwd->pw_name, 1);
    628 	(void)setenv("USER", pwd->pw_name, 1);
    629 
    630 	/*
    631 	 * Add PAM environement
    632 	 */
    633 	if ((pamenv = pam_getenvlist(pamh)) != NULL) {
    634 		char **envitem;
    635 
    636 		for (envitem = pamenv; *envitem; envitem++) {
    637 			putenv(*envitem);
    638 			free(*envitem);
    639 		}
    640 
    641 		free(pamenv);
    642 	}
    643 
    644 	/* This drops root privs */
    645 	if (setusercontext(lc, pwd, pwd->pw_uid,
    646 	    (LOGIN_SETALL & ~LOGIN_SETLOGIN)) != 0) {
    647 		syslog(LOG_ERR, "setusercontext failed");
    648 		exit(EXIT_FAILURE);
    649 	}
    650 
    651 	if (!quietlog) {
    652 		char *fname;
    653 
    654 		fname = login_getcapstr(lc, "copyright", NULL, NULL);
    655 		if (fname != NULL && access(fname, F_OK) == 0)
    656 			motd(fname);
    657 		else
    658 			(void)printf("%s", copyrightstr);
    659 
    660                 fname = login_getcapstr(lc, "welcome", NULL, NULL);
    661                 if (fname == NULL || access(fname, F_OK) != 0)
    662                         fname = _PATH_MOTDFILE;
    663                 motd(fname);
    664 
    665 		(void)snprintf(tbuf,
    666 		    sizeof(tbuf), "%s/%s", _PATH_MAILDIR, pwd->pw_name);
    667 		if (stat(tbuf, &st) == 0 && st.st_size != 0)
    668 			(void)printf("You have %smail.\n",
    669 			    (st.st_mtime > st.st_atime) ? "new " : "");
    670 	}
    671 
    672 	login_close(lc);
    673 
    674 	(void)signal(SIGALRM, SIG_DFL);
    675 	(void)signal(SIGQUIT, SIG_DFL);
    676 	(void)signal(SIGINT, SIG_DFL);
    677 	(void)signal(SIGTSTP, SIG_IGN);
    678 
    679 	tbuf[0] = '-';
    680 	(void)strlcpy(tbuf + 1, (p = strrchr(pwd->pw_shell, '/')) ?
    681 	    p + 1 : pwd->pw_shell, sizeof(tbuf) - 1);
    682 
    683 	execlp(pwd->pw_shell, tbuf, 0);
    684 	err(EXIT_FAILURE, "%s", pwd->pw_shell);
    685 }
    686 
    687 #define	NBUFSIZ		(MAXLOGNAME + 1)
    688 
    689 
    690 void
    691 getloginname(void)
    692 {
    693 	int ch;
    694 	char *p;
    695 	static char nbuf[NBUFSIZ];
    696 
    697 	for (;;) {
    698 		(void)printf("login: ");
    699 		for (p = nbuf; (ch = getchar()) != '\n'; ) {
    700 			if (ch == EOF) {
    701 				badlogin(username);
    702 				exit(EXIT_SUCCESS);
    703 			}
    704 			if (p < nbuf + (NBUFSIZ - 1))
    705 				*p++ = ch;
    706 		}
    707 		if (p > nbuf) {
    708 			if (nbuf[0] == '-')
    709 				(void)fprintf(stderr,
    710 				    "login names may not start with '-'.\n");
    711 			else {
    712 				*p = '\0';
    713 				username = nbuf;
    714 				break;
    715 			}
    716 		}
    717 	}
    718 }
    719 
    720 int
    721 rootterm(char *ttyn)
    722 {
    723 	struct ttyent *t;
    724 
    725 	return ((t = getttynam(ttyn)) && t->ty_status & TTY_SECURE);
    726 }
    727 
    728 jmp_buf motdinterrupt;
    729 
    730 void
    731 motd(char *fname)
    732 {
    733 	int fd, nchars;
    734 	sig_t oldint;
    735 	char tbuf[8192];
    736 
    737 	if ((fd = open(fname ? fname : _PATH_MOTDFILE, O_RDONLY, 0)) < 0)
    738 		return;
    739 	oldint = signal(SIGINT, sigint);
    740 	if (setjmp(motdinterrupt) == 0)
    741 		while ((nchars = read(fd, tbuf, sizeof(tbuf))) > 0)
    742 			(void)write(fileno(stdout), tbuf, nchars);
    743 	(void)signal(SIGINT, oldint);
    744 	(void)close(fd);
    745 }
    746 
    747 /* ARGSUSED */
    748 void
    749 sigint(int signo)
    750 {
    751 
    752 	longjmp(motdinterrupt, 1);
    753 }
    754 
    755 /* ARGSUSED */
    756 void
    757 timedout(int signo)
    758 {
    759 
    760 	(void)fprintf(stderr, "Login timed out after %d seconds\n", timeout);
    761 	exit(EXIT_SUCCESS);
    762 }
    763 
    764 static void
    765 update_db(int quietlog)
    766 {
    767 	if (nested != NULL) {
    768 		if (hostname != NULL)
    769 			syslog(LOG_NOTICE, "%s to %s on tty %s from %s",
    770 			    nested, pwd->pw_name, tty, hostname);
    771 		else
    772 			syslog(LOG_NOTICE, "%s to %s on tty %s", nested,
    773 			    pwd->pw_name, tty);
    774 
    775 	}
    776 	if (hostname != NULL && have_ss == 0) {
    777 		socklen_t len = sizeof(ss);
    778 		(void)getpeername(STDIN_FILENO, (struct sockaddr *)&ss, &len);
    779 	}
    780 	(void)gettimeofday(&now, NULL);
    781 }
    782 
    783 void
    784 badlogin(char *name)
    785 {
    786 
    787 	if (failures == 0)
    788 		return;
    789 	if (hostname) {
    790 		syslog(LOG_NOTICE, "%d LOGIN FAILURE%s FROM %s",
    791 		    failures, failures > 1 ? "S" : "", hostname);
    792 		syslog(LOG_AUTHPRIV|LOG_NOTICE,
    793 		    "%d LOGIN FAILURE%s FROM %s, %s",
    794 		    failures, failures > 1 ? "S" : "", hostname, name);
    795 	} else {
    796 		syslog(LOG_NOTICE, "%d LOGIN FAILURE%s ON %s",
    797 		    failures, failures > 1 ? "S" : "", tty);
    798 		syslog(LOG_AUTHPRIV|LOG_NOTICE,
    799 		    "%d LOGIN FAILURE%s ON %s, %s",
    800 		    failures, failures > 1 ? "S" : "", tty, name);
    801 	}
    802 }
    803 
    804 const char *
    805 stypeof(const char *ttyid)
    806 {
    807 	struct ttyent *t;
    808 
    809 	return (ttyid && (t = getttynam(ttyid)) ? t->ty_type : NULL);
    810 }
    811 
    812 void
    813 sleepexit(int eval)
    814 {
    815 
    816 	(void)sleep(5);
    817 	exit(eval);
    818 }
    819 
    820 void
    821 decode_ss(const char *arg)
    822 {
    823 	struct sockaddr_storage *ssp;
    824 	size_t len = strlen(arg);
    825 
    826 	if (len > sizeof(*ssp) * 4 + 1 || len < sizeof(*ssp))
    827 		errx(EXIT_FAILURE, "Bad argument");
    828 
    829 	if ((ssp = malloc(len)) == NULL)
    830 		err(EXIT_FAILURE, NULL);
    831 
    832 	if (strunvis((char *)ssp, arg) != sizeof(*ssp))
    833 		errx(EXIT_FAILURE, "Decoding error");
    834 
    835 	(void)memcpy(&ss, ssp, sizeof(ss));
    836 	have_ss = 1;
    837 }
    838 
    839 void
    840 usage(void)
    841 {
    842 	(void)fprintf(stderr,
    843 	    "Usage: %s [-Ffps] [-a address] [-h hostname] [username]\n",
    844 	    getprogname());
    845 	exit(EXIT_FAILURE);
    846 }
    847