]> CyberLeo.Net >> Repos - FreeBSD/stable/8.git/blob - usr.bin/su/su.c
MFC 266296:
[FreeBSD/stable/8.git] / usr.bin / su / su.c
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
65 static 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
72 static 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$");
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
139 enum tristate { UNSET, YES, NO };
140
141 static pam_handle_t *pamh = NULL;
142 static char     **environ_pam;
143
144 static char     *ontty(void);
145 static int      chshell(const char *);
146 static void     usage(void) __dead2;
147 static void     export_pam_environment(void);
148 static int      ok_to_export(const char *);
149
150 extern char     **environ;
151
152 int
153 main(int argc, char *argv[])
154 {
155         static char     *cleanenv;
156         struct passwd   *pwd = NULL;
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         const void      *v;
172         struct sigaction sa, sa_int, sa_quit, sa_pipe;
173         int temp, fds[2];
174 #ifdef USE_BSM_AUDIT
175         const char      *aerr;
176         au_id_t          auid;
177 #endif
178
179         shell = class = cleanenv = NULL;
180         asme = asthem = fastlogin = statusp = 0;
181         user = "root";
182         iscsh = UNSET;
183         setmaclabel = 0;
184
185         while ((ch = getopt(argc, argv, "-flmsc:")) != -1)
186                 switch ((char)ch) {
187                 case 'f':
188                         fastlogin = 1;
189                         break;
190                 case '-':
191                 case 'l':
192                         asme = 0;
193                         asthem = 1;
194                         break;
195                 case 'm':
196                         asme = 1;
197                         asthem = 0;
198                         break;
199                 case 's':
200                         setmaclabel = 1;
201                         break;
202                 case 'c':
203                         class = optarg;
204                         break;
205                 case '?':
206                 default:
207                         usage();
208                 /* NOTREACHED */
209                 }
210
211         if (optind < argc)
212                 user = argv[optind++];
213
214         if (user == NULL)
215                 usage();
216         /* NOTREACHED */
217
218         /*
219          * Try to provide more helpful debugging output if su(1) is running
220          * non-setuid, or was run from a file system not mounted setuid.
221          */
222         if (geteuid() != 0)
223                 errx(1, "not running setuid");
224
225 #ifdef USE_BSM_AUDIT
226         if (getauid(&auid) < 0 && errno != ENOSYS) {
227                 syslog(LOG_AUTH | LOG_ERR, "getauid: %s", strerror(errno));
228                 errx(1, "Permission denied");
229         }
230 #endif
231         if (strlen(user) > MAXLOGNAME - 1) {
232 #ifdef USE_BSM_AUDIT
233                 if (audit_submit(AUE_su, auid,
234                     EPERM, 1, "username too long: '%s'", user))
235                         errx(1, "Permission denied");
236 #endif
237                 errx(1, "username too long");
238         }
239
240         nargv = malloc(sizeof(char *) * (size_t)(argc + 4));
241         if (nargv == NULL)
242                 errx(1, "malloc failure");
243
244         nargv[argc + 3] = NULL;
245         for (i = argc; i >= optind; i--)
246                 nargv[i + 3] = argv[i];
247         np.a = &nargv[i + 3];
248
249         argv += optind;
250
251         errno = 0;
252         prio = getpriority(PRIO_PROCESS, 0);
253         if (errno)
254                 prio = 0;
255
256         setpriority(PRIO_PROCESS, 0, -2);
257         openlog("su", LOG_CONS, LOG_AUTH);
258
259         /* get current login name, real uid and shell */
260         ruid = getuid();
261         username = getlogin();
262         if (username != NULL)
263                 pwd = getpwnam(username);
264         if (pwd == NULL || pwd->pw_uid != ruid)
265                 pwd = getpwuid(ruid);
266         if (pwd == NULL) {
267 #ifdef USE_BSM_AUDIT
268                 if (audit_submit(AUE_su, auid, EPERM, 1,
269                     "unable to determine invoking subject: '%s'", username))
270                         errx(1, "Permission denied");
271 #endif
272                 errx(1, "who are you?");
273         }
274
275         username = strdup(pwd->pw_name);
276         if (username == NULL)
277                 err(1, "strdup failure");
278
279         if (asme) {
280                 if (pwd->pw_shell != NULL && *pwd->pw_shell != '\0') {
281                         /* must copy - pwd memory is recycled */
282                         shell = strncpy(shellbuf, pwd->pw_shell,
283                             sizeof(shellbuf));
284                         shellbuf[sizeof(shellbuf) - 1] = '\0';
285                 }
286                 else {
287                         shell = _PATH_BSHELL;
288                         iscsh = NO;
289                 }
290         }
291
292         /* Do the whole PAM startup thing */
293         retcode = pam_start("su", user, &conv, &pamh);
294         if (retcode != PAM_SUCCESS) {
295                 syslog(LOG_ERR, "pam_start: %s", pam_strerror(pamh, retcode));
296                 errx(1, "pam_start: %s", pam_strerror(pamh, retcode));
297         }
298
299         PAM_SET_ITEM(PAM_RUSER, username);
300
301         mytty = ttyname(STDERR_FILENO);
302         if (!mytty)
303                 mytty = "tty";
304         PAM_SET_ITEM(PAM_TTY, mytty);
305
306         retcode = pam_authenticate(pamh, 0);
307         if (retcode != PAM_SUCCESS) {
308 #ifdef USE_BSM_AUDIT
309                 if (audit_submit(AUE_su, auid, EPERM, 1, "bad su %s to %s on %s",
310                     username, user, mytty))
311                         errx(1, "Permission denied");
312 #endif
313                 syslog(LOG_AUTH|LOG_WARNING, "BAD SU %s to %s on %s",
314                     username, user, mytty);
315                 errx(1, "Sorry");
316         }
317 #ifdef USE_BSM_AUDIT
318         if (audit_submit(AUE_su, auid, 0, 0, "successful authentication"))
319                 errx(1, "Permission denied");
320 #endif
321         retcode = pam_get_item(pamh, PAM_USER, &v);
322         if (retcode == PAM_SUCCESS)
323                 user = v;
324         else
325                 syslog(LOG_ERR, "pam_get_item(PAM_USER): %s",
326                     pam_strerror(pamh, retcode));
327         pwd = getpwnam(user);
328         if (pwd == NULL) {
329 #ifdef USE_BSM_AUDIT
330                 if (audit_submit(AUE_su, auid, EPERM, 1,
331                     "unknown subject: %s", user))
332                         errx(1, "Permission denied");
333 #endif
334                 errx(1, "unknown login: %s", user);
335         }
336
337         retcode = pam_acct_mgmt(pamh, 0);
338         if (retcode == PAM_NEW_AUTHTOK_REQD) {
339                 retcode = pam_chauthtok(pamh,
340                         PAM_CHANGE_EXPIRED_AUTHTOK);
341                 if (retcode != PAM_SUCCESS) {
342 #ifdef USE_BSM_AUDIT
343                         aerr = pam_strerror(pamh, retcode);
344                         if (aerr == NULL)
345                                 aerr = "Unknown PAM error";
346                         if (audit_submit(AUE_su, auid, EPERM, 1,
347                             "pam_chauthtok: %s", aerr))
348                                 errx(1, "Permission denied");
349 #endif
350                         syslog(LOG_ERR, "pam_chauthtok: %s",
351                             pam_strerror(pamh, retcode));
352                         errx(1, "Sorry");
353                 }
354         }
355         if (retcode != PAM_SUCCESS) {
356 #ifdef USE_BSM_AUDIT
357                 if (audit_submit(AUE_su, auid, EPERM, 1, "pam_acct_mgmt: %s",
358                     pam_strerror(pamh, retcode)))
359                         errx(1, "Permission denied");
360 #endif
361                 syslog(LOG_ERR, "pam_acct_mgmt: %s",
362                         pam_strerror(pamh, retcode));
363                 errx(1, "Sorry");
364         }
365
366         /* get target login information */
367         if (class == NULL)
368                 lc = login_getpwclass(pwd);
369         else {
370                 if (ruid != 0) {
371 #ifdef USE_BSM_AUDIT
372                         if (audit_submit(AUE_su, auid, EPERM, 1,
373                             "only root may use -c"))
374                                 errx(1, "Permission denied");
375 #endif
376                         errx(1, "only root may use -c");
377                 }
378                 lc = login_getclass(class);
379                 if (lc == NULL)
380                         errx(1, "unknown class: %s", class);
381         }
382
383         /* if asme and non-standard target shell, must be root */
384         if (asme) {
385                 if (ruid != 0 && !chshell(pwd->pw_shell))
386                         errx(1, "permission denied (shell)");
387         }
388         else if (pwd->pw_shell && *pwd->pw_shell) {
389                 shell = pwd->pw_shell;
390                 iscsh = UNSET;
391         }
392         else {
393                 shell = _PATH_BSHELL;
394                 iscsh = NO;
395         }
396
397         /* if we're forking a csh, we want to slightly muck the args */
398         if (iscsh == UNSET) {
399                 p = strrchr(shell, '/');
400                 if (p)
401                         ++p;
402                 else
403                         p = shell;
404                 iscsh = strcmp(p, "csh") ? (strcmp(p, "tcsh") ? NO : YES) : YES;
405         }
406         setpriority(PRIO_PROCESS, 0, prio);
407
408         /*
409          * PAM modules might add supplementary groups in pam_setcred(), so
410          * initialize them first.
411          */
412         if (setusercontext(lc, pwd, pwd->pw_uid, LOGIN_SETGROUP) < 0)
413                 err(1, "setusercontext");
414
415         retcode = pam_setcred(pamh, PAM_ESTABLISH_CRED);
416         if (retcode != PAM_SUCCESS) {
417                 syslog(LOG_ERR, "pam_setcred: %s",
418                     pam_strerror(pamh, retcode));
419                 errx(1, "failed to establish credentials.");
420         }
421         if (asthem) {
422                 retcode = pam_open_session(pamh, 0);
423                 if (retcode != PAM_SUCCESS) {
424                         syslog(LOG_ERR, "pam_open_session: %s",
425                             pam_strerror(pamh, retcode));
426                         errx(1, "failed to open session.");
427                 }
428         }
429
430         /*
431          * We must fork() before setuid() because we need to call
432          * pam_setcred(pamh, PAM_DELETE_CRED) as root.
433          */
434         sa.sa_flags = SA_RESTART;
435         sa.sa_handler = SIG_IGN;
436         sigemptyset(&sa.sa_mask);
437         sigaction(SIGINT, &sa, &sa_int);
438         sigaction(SIGQUIT, &sa, &sa_quit);
439         sigaction(SIGPIPE, &sa, &sa_pipe);
440         sa.sa_handler = SIG_DFL;
441         sigaction(SIGTSTP, &sa, NULL);
442         statusp = 1;
443         if (pipe(fds) == -1) {
444                 PAM_END();
445                 err(1, "pipe");
446         }
447         child_pid = fork();
448         switch (child_pid) {
449         default:
450                 sa.sa_handler = SIG_IGN;
451                 sigaction(SIGTTOU, &sa, NULL);
452                 close(fds[0]);
453                 setpgid(child_pid, child_pid);
454                 if (tcgetpgrp(STDERR_FILENO) == getpgrp())
455                         tcsetpgrp(STDERR_FILENO, child_pid);
456                 close(fds[1]);
457                 sigaction(SIGPIPE, &sa_pipe, NULL);
458                 while ((pid = waitpid(child_pid, &statusp, WUNTRACED)) != -1) {
459                         if (WIFSTOPPED(statusp)) {
460                                 child_pgrp = getpgid(child_pid);
461                                 if (tcgetpgrp(STDERR_FILENO) == child_pgrp)
462                                         tcsetpgrp(STDERR_FILENO, getpgrp());
463                                 kill(getpid(), SIGSTOP);
464                                 if (tcgetpgrp(STDERR_FILENO) == getpgrp()) {
465                                         child_pgrp = getpgid(child_pid);
466                                         tcsetpgrp(STDERR_FILENO, child_pgrp);
467                                 }
468                                 kill(child_pid, SIGCONT);
469                                 statusp = 1;
470                                 continue;
471                         }
472                         break;
473                 }
474                 tcsetpgrp(STDERR_FILENO, getpgrp());
475                 if (pid == -1)
476                         err(1, "waitpid");
477                 PAM_END();
478                 exit(WEXITSTATUS(statusp));
479         case -1:
480                 PAM_END();
481                 err(1, "fork");
482         case 0:
483                 close(fds[1]);
484                 read(fds[0], &temp, 1);
485                 close(fds[0]);
486                 sigaction(SIGPIPE, &sa_pipe, NULL);
487                 sigaction(SIGINT, &sa_int, NULL);
488                 sigaction(SIGQUIT, &sa_quit, NULL);
489
490                 /*
491                  * Set all user context except for: Environmental variables
492                  * Umask Login records (wtmp, etc) Path
493                  */
494                 setwhat = LOGIN_SETALL & ~(LOGIN_SETENV | LOGIN_SETUMASK |
495                            LOGIN_SETLOGIN | LOGIN_SETPATH | LOGIN_SETGROUP |
496                            LOGIN_SETMAC);
497                 /*
498                  * If -s is present, also set the MAC label.
499                  */
500                 if (setmaclabel)
501                         setwhat |= LOGIN_SETMAC;
502                 /*
503                  * Don't touch resource/priority settings if -m has been used
504                  * or -l and -c hasn't, and we're not su'ing to root.
505                  */
506                 if ((asme || (!asthem && class == NULL)) && pwd->pw_uid)
507                         setwhat &= ~(LOGIN_SETPRIORITY | LOGIN_SETRESOURCES);
508                 if (setusercontext(lc, pwd, pwd->pw_uid, setwhat) < 0)
509                         err(1, "setusercontext");
510
511                 if (!asme) {
512                         if (asthem) {
513                                 p = getenv("TERM");
514                                 environ = &cleanenv;
515                         }
516
517                         if (asthem || pwd->pw_uid)
518                                 setenv("USER", pwd->pw_name, 1);
519                         setenv("HOME", pwd->pw_dir, 1);
520                         setenv("SHELL", shell, 1);
521
522                         if (asthem) {
523                                 /*
524                                  * Add any environmental variables that the
525                                  * PAM modules may have set.
526                                  */
527                                 environ_pam = pam_getenvlist(pamh);
528                                 if (environ_pam)
529                                         export_pam_environment();
530
531                                 /* set the su'd user's environment & umask */
532                                 setusercontext(lc, pwd, pwd->pw_uid,
533                                         LOGIN_SETPATH | LOGIN_SETUMASK |
534                                         LOGIN_SETENV);
535                                 if (p)
536                                         setenv("TERM", p, 1);
537
538                                 p = pam_getenv(pamh, "HOME");
539                                 if (chdir(p ? p : pwd->pw_dir) < 0)
540                                         errx(1, "no directory");
541                         }
542                 }
543                 login_close(lc);
544
545                 if (iscsh == YES) {
546                         if (fastlogin)
547                                 *np.a-- = "-f";
548                         if (asme)
549                                 *np.a-- = "-m";
550                 }
551                 /* csh strips the first character... */
552                 *np.a = asthem ? "-su" : iscsh == YES ? "_su" : "su";
553
554                 if (ruid != 0)
555                         syslog(LOG_NOTICE, "%s to %s%s", username, user,
556                             ontty());
557
558                 execv(shell, np.b);
559                 err(1, "%s", shell);
560         }
561 }
562
563 static void
564 export_pam_environment(void)
565 {
566         char    **pp;
567         char    *p;
568
569         for (pp = environ_pam; *pp != NULL; pp++) {
570                 if (ok_to_export(*pp)) {
571                         p = strchr(*pp, '=');
572                         *p = '\0';
573                         setenv(*pp, p + 1, 1);
574                 }
575                 free(*pp);
576         }
577 }
578
579 /*
580  * Sanity checks on PAM environmental variables:
581  * - Make sure there is an '=' in the string.
582  * - Make sure the string doesn't run on too long.
583  * - Do not export certain variables.  This list was taken from the
584  *   Solaris pam_putenv(3) man page.
585  * Note that if the user is chrooted, PAM may have a better idea than we
586  * do of where her home directory is.
587  */
588 static int
589 ok_to_export(const char *s)
590 {
591         static const char *noexport[] = {
592                 "SHELL", /* "HOME", */ "LOGNAME", "MAIL", "CDPATH",
593                 "IFS", "PATH", NULL
594         };
595         const char **pp;
596         size_t n;
597
598         if (strlen(s) > 1024 || strchr(s, '=') == NULL)
599                 return 0;
600         if (strncmp(s, "LD_", 3) == 0)
601                 return 0;
602         for (pp = noexport; *pp != NULL; pp++) {
603                 n = strlen(*pp);
604                 if (s[n] == '=' && strncmp(s, *pp, n) == 0)
605                         return 0;
606         }
607         return 1;
608 }
609
610 static void
611 usage(void)
612 {
613
614         fprintf(stderr, "usage: su [-] [-flms] [-c class] [login [args]]\n");
615         exit(1);
616         /* NOTREACHED */
617 }
618
619 static int
620 chshell(const char *sh)
621 {
622         int r;
623         char *cp;
624
625         r = 0;
626         setusershell();
627         while ((cp = getusershell()) != NULL && !r)
628             r = (strcmp(cp, sh) == 0);
629         endusershell();
630         return r;
631 }
632
633 static char *
634 ontty(void)
635 {
636         char *p;
637         static char buf[MAXPATHLEN + 4];
638
639         buf[0] = 0;
640         p = ttyname(STDERR_FILENO);
641         if (p)
642                 snprintf(buf, sizeof(buf), " on %s", p);
643         return buf;
644 }