]> granicus.if.org Git - shadow/blob - src/su.c
* src/usermod.c (move_home): It is always an error to use -m if
[shadow] / src / su.c
1 /*
2  * Copyright (c) 1989 - 1994, Julianne Frances Haugh
3  * Copyright (c) 1996 - 2000, Marek Michałkiewicz
4  * Copyright (c) 2000 - 2006, Tomasz Kłoczko
5  * Copyright (c) 2007 - 2011, Nicolas François
6  * All rights reserved.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
11  * 1. Redistributions of source code must retain the above copyright
12  *    notice, this list of conditions and the following disclaimer.
13  * 2. Redistributions in binary form must reproduce the above copyright
14  *    notice, this list of conditions and the following disclaimer in the
15  *    documentation and/or other materials provided with the distribution.
16  * 3. The name of the copyright holders or contributors may not be used to
17  *    endorse or promote products derived from this software without
18  *    specific prior written permission.
19  *
20  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
23  * PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE COPYRIGHT
24  * HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
25  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
26  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
30  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31  */
32
33 /* Some parts substantially derived from an ancestor of:
34    su for GNU.  Run a shell with substitute user and group IDs.
35
36    Copyright (C) 1992-2003 Free Software Foundation, Inc.
37
38    This program is free software; you can redistribute it and/or modify
39    it under the terms of the GNU General Public License as published by
40    the Free Software Foundation; either version 2, or (at your option)
41    any later version.
42
43    This program is distributed in the hope that it will be useful,
44    but WITHOUT ANY WARRANTY; without even the implied warranty of
45    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
46    GNU General Public License for more details.
47
48    You should have received a copy of the GNU General Public License
49    along with this program; if not, write to the Free Software
50    Foundation, Inc., 51 Franklin Street, Fifth Floor,
51    Boston, MA 02110-1301, USA.  */
52
53
54 #include <config.h>
55
56 #ident "$Id$"
57
58 #include <getopt.h>
59 #include <grp.h>
60 #include <pwd.h>
61 #include <signal.h>
62 #include <stdio.h>
63 #include <sys/types.h>
64 #include <unistd.h>
65 #ifndef USE_PAM
66 #include <sys/ioctl.h>
67 #include <sys/types.h>
68 #include <sys/stat.h>
69 #include <fcntl.h>
70 #endif                          /* !USE_PAM */
71 #include "prototypes.h"
72 #include "defines.h"
73 #include "pwauth.h"
74 #include "getdef.h"
75 #ifdef USE_PAM
76 #include "pam_defs.h"
77 #endif                          /* USE_PAM */
78 /*@-exitarg@*/
79 #include "exitcodes.h"
80
81 /*
82  * Global variables
83  */
84 const char *Prog;
85 static const char *caller_tty = NULL;   /* Name of tty SU is run from */
86 static bool caller_is_root = false;
87 static uid_t caller_uid;
88 #ifndef USE_PAM
89 static int caller_on_console = 0;
90 #ifdef SU_ACCESS
91 static char *caller_pass;
92 #endif
93 #endif                          /* !USE_PAM */
94 static bool doshell = false;
95 static bool fakelogin = false;
96 static char *shellstr = NULL;
97 static char *command = NULL;
98
99
100 /* not needed by sulog.c anymore */
101 static char name[BUFSIZ];
102 static char caller_name[BUFSIZ];
103
104 /* If nonzero, change some environment vars to indicate the user su'd to. */
105 static bool change_environment = true;
106
107 #ifdef USE_PAM
108 static pam_handle_t *pamh = NULL;
109 static int caught = 0;
110 /* PID of the child, in case it needs to be killed */
111 static pid_t pid_child = 0;
112 #endif
113
114 /*
115  * External identifiers
116  */
117
118 extern char **newenvp; /* libmisc/env.c */
119 extern size_t newenvc; /* libmisc/env.c */
120
121 /* local function prototypes */
122
123 static void execve_shell (const char *shellname,
124                           char *args[],
125                           char *const envp[]);
126 #ifdef USE_PAM
127 static RETSIGTYPE kill_child (int unused(s));
128 static void prepare_pam_close_session (void);
129 #else                           /* !USE_PAM */
130 static RETSIGTYPE die (int);
131 static bool iswheel (const char *);
132 #endif                          /* !USE_PAM */
133 static bool restricted_shell (const char *shellname);
134 static void su_failure (const char *tty, bool su_to_root);
135 static struct passwd * check_perms (void);
136 #ifdef USE_PAM
137 static void check_perms_pam (struct passwd *pw);
138 #else                           /* !USE_PAM */
139 static void check_perms_nopam (struct passwd *pw);
140 #endif                          /* !USE_PAM */
141 static void save_caller_context (char **argv);
142 static void process_flags (int argc, char **argv);
143 static void set_environment (struct passwd *pw);
144
145 #ifndef USE_PAM
146 /*
147  * die - set or reset termio modes.
148  *
149  *      die() is called before processing begins. signal() is then called
150  *      with die() as the signal handler. If signal later calls die() with a
151  *      signal number, the terminal modes are then reset.
152  */
153 static RETSIGTYPE die (int killed)
154 {
155         static TERMIO sgtty;
156
157         if (killed != 0) {
158                 STTY (0, &sgtty);
159         } else {
160                 GTTY (0, &sgtty);
161         }
162
163         if (killed != 0) {
164                 closelog ();
165                 exit (128+killed);
166         }
167 }
168
169 static bool iswheel (const char *username)
170 {
171         struct group *grp;
172
173         grp = getgrnam ("wheel"); /* !USE_PAM, no need for xgetgrnam */
174         if (   (NULL ==grp)
175             || (NULL == grp->gr_mem)) {
176                 return false;
177         }
178         return is_on_list (grp->gr_mem, username);
179 }
180 #else                           /* USE_PAM */
181 static RETSIGTYPE kill_child (int unused(s))
182 {
183         if (0 != pid_child) {
184                 (void) kill (pid_child, SIGKILL);
185                 (void) fputs (_(" ...killed.\n"), stderr);
186         } else {
187                 (void) fputs (_(" ...waiting for child to terminate.\n"),
188                               stderr);
189         }
190         exit (255);
191 }
192 #endif                          /* USE_PAM */
193
194 /* borrowed from GNU sh-utils' "su.c" */
195 static bool restricted_shell (const char *shellname)
196 {
197         char *line;
198
199         setusershell ();
200         while ((line = getusershell ()) != NULL) {
201                 if (('#' != *line) && (strcmp (line, shellname) == 0)) {
202                         endusershell ();
203                         return false;
204                 }
205         }
206         endusershell ();
207         return true;
208 }
209
210 static void su_failure (const char *tty, bool su_to_root)
211 {
212         sulog (tty, false, caller_name, name);  /* log failed attempt */
213 #ifdef USE_SYSLOG
214         if (getdef_bool ("SYSLOG_SU_ENAB")) {
215                 SYSLOG ((su_to_root ? LOG_NOTICE : LOG_INFO,
216                          "- %s %s:%s", tty,
217                          ('\0' != caller_name[0]) ? caller_name : "???",
218                          ('\0' != name[0]) ? name : "???"));
219         }
220         closelog ();
221 #endif
222         exit (1);
223 }
224
225 /*
226  * execve_shell - Execute a shell with execve, or interpret it with
227  * /bin/sh
228  */
229 static void execve_shell (const char *shellname,
230                           char *args[],
231                           char *const envp[])
232 {
233         int err;
234         (void) execve (shellname, (char **) args, envp);
235         err = errno;
236
237         if (access (shellname, R_OK|X_OK) == 0) {
238                 /*
239                  * Assume this is a shell script (with no shebang).
240                  * Interpret it with /bin/sh
241                  */
242                 size_t n_args = 0;
243                 char **targs;
244                 while (NULL != args[n_args]) {
245                         n_args++;
246                 }
247                 targs = (char **) xmalloc ((n_args + 3) * sizeof (args[0]));
248                 targs[0] = "sh";
249                 targs[1] = "-";
250                 targs[2] = xstrdup (shellname);
251                 targs[n_args+2] = NULL;
252                 while (1 != n_args) {
253                         targs[n_args+1] = args[n_args - 1];
254                         n_args--;
255                 }
256
257                 (void) execve (SHELL, targs, envp);
258         } else {
259                 errno = err;
260         }
261 }
262
263 #ifdef USE_PAM
264 /* Signal handler for parent process later */
265 static void catch_signals (int sig)
266 {
267         caught = sig;
268 }
269
270 /*
271  * prepare_pam_close_session - Fork and wait for the child to close the session
272  *
273  *      Only the child returns. The parent will wait for the child to
274  *      terminate and exit.
275  */
276 static void prepare_pam_close_session (void)
277 {
278         sigset_t ourset;
279         int status;
280         int ret;
281
282         pid_child = fork ();
283         if (pid_child == 0) {   /* child shell */
284                 return; /* Only the child will return from pam_create_session */
285         } else if ((pid_t)-1 == pid_child) {
286                 (void) fprintf (stderr,
287                                 _("%s: Cannot fork user shell\n"),
288                                 Prog);
289                 SYSLOG ((LOG_WARN, "Cannot execute %s", shellstr));
290                 closelog ();
291                 exit (1);
292                 /* Only the child returns. See above. */
293         }
294
295         /* parent only */
296         sigfillset (&ourset);
297         if (sigprocmask (SIG_BLOCK, &ourset, NULL) != 0) {
298                 (void) fprintf (stderr,
299                                 _("%s: signal malfunction\n"),
300                                 Prog);
301                 caught = SIGTERM;
302         }
303         if (0 == caught) {
304                 struct sigaction action;
305
306                 action.sa_handler = catch_signals;
307                 sigemptyset (&action.sa_mask);
308                 action.sa_flags = 0;
309                 sigemptyset (&ourset);
310
311                 if (   (sigaddset (&ourset, SIGTERM) != 0)
312                     || (sigaddset (&ourset, SIGALRM) != 0)
313                     || (sigaction (SIGTERM, &action, NULL) != 0)
314                     || (   !doshell /* handle SIGINT (Ctrl-C), SIGQUIT
315                                      * (Ctrl-\), and SIGTSTP (Ctrl-Z)
316                                      * since the child will not control
317                                      * the tty.
318                                      */
319                         && (   (sigaddset (&ourset, SIGINT)  != 0)
320                             || (sigaddset (&ourset, SIGQUIT) != 0)
321                             || (sigaddset (&ourset, SIGTSTP) != 0)
322                             || (sigaction (SIGINT,  &action, NULL) != 0)
323                             || (sigaction (SIGQUIT, &action, NULL) != 0)
324                             || (sigaction (SIGTSTP,  &action, NULL) != 0)))
325                     || (sigprocmask (SIG_UNBLOCK, &ourset, NULL) != 0)
326                     ) {
327                         fprintf (stderr,
328                                  _("%s: signal masking malfunction\n"),
329                                  Prog);
330                         caught = SIGTERM;
331                 }
332         }
333
334         if (0 == caught) {
335                 bool stop = true;
336
337                 do {
338                         pid_t pid;
339                         stop = true;
340
341                         pid = waitpid (-1, &status, WUNTRACED);
342
343                         /* When interrupted by signal, the signal will be
344                          * forwarded to the child, and termination will be
345                          * forced later.
346                          */
347                         if (   ((pid_t)-1 == pid)
348                             && (EINTR == errno)
349                             && (SIGTSTP == caught)) {
350                                 /* Except for SIGTSTP, which request to
351                                  * stop the child.
352                                  * We will SIGSTOP ourself on the next
353                                  * waitpid round.
354                                  */
355                                 kill (pid_child, SIGSTOP);
356                                 stop = false;
357                         } else if (   ((pid_t)-1 != pid)
358                                    && (0 != WIFSTOPPED (status))) {
359                                 /* The child (shell) was suspended.
360                                  * Suspend su. */
361                                 kill (getpid (), SIGSTOP);
362                                 /* wake child when resumed */
363                                 kill (pid, SIGCONT);
364                                 stop = false;
365                         }
366                 } while (!stop);
367         }
368
369         if (0 != caught) {
370                 (void) fputs ("\n", stderr);
371                 (void) fputs (_("Session terminated, terminating shell..."),
372                               stderr);
373                 (void) kill (pid_child, caught);
374         }
375
376         ret = pam_close_session (pamh, 0);
377         if (PAM_SUCCESS != ret) {
378                 SYSLOG ((LOG_ERR, "pam_close_session: %s",
379                          pam_strerror (pamh, ret)));
380                 fprintf (stderr, _("%s: %s\n"), Prog, pam_strerror (pamh, ret));
381         }
382
383         (void) pam_setcred (pamh, PAM_DELETE_CRED);
384         (void) pam_end (pamh, PAM_SUCCESS);
385
386         if (0 != caught) {
387                 (void) signal (SIGALRM, kill_child);
388                 (void) alarm (2);
389
390                 (void) wait (&status);
391                 (void) fputs (_(" ...terminated.\n"), stderr);
392         }
393
394         exit ((0 != WIFEXITED (status)) ? WEXITSTATUS (status)
395                                         : WTERMSIG (status) + 128);
396         /* Only the child returns. See above. */
397 }
398 #endif                          /* USE_PAM */
399
400 /*
401  * usage - print command line syntax and exit
402  */
403 static void usage (int status)
404 {
405         fputs (_("Usage: su [options] [LOGIN]\n"
406                  "\n"
407                  "Options:\n"
408                  "  -c, --command COMMAND         pass COMMAND to the invoked shell\n"
409                  "  -h, --help                    display this help message and exit\n"
410                  "  -, -l, --login                make the shell a login shell\n"
411                  "  -m, -p,\n"
412                  "  --preserve-environment        do not reset environment variables, and\n"
413                  "                                keep the same shell\n"
414                  "  -s, --shell SHELL             use SHELL instead of the default in passwd\n"
415                  "\n"), (E_SUCCESS != status) ? stderr : stdout);
416         exit (status);
417 }
418
419 #ifdef USE_PAM
420 static void check_perms_pam (struct passwd *pw)
421 {
422         int ret;
423         ret = pam_authenticate (pamh, 0);
424         if (PAM_SUCCESS != ret) {
425                 SYSLOG ((LOG_ERR, "pam_authenticate: %s",
426                          pam_strerror (pamh, ret)));
427                 fprintf (stderr, _("%s: %s\n"), Prog, pam_strerror (pamh, ret));
428                 (void) pam_end (pamh, ret);
429                 su_failure (caller_tty, 0 == pw->pw_uid);
430         }
431
432         ret = pam_acct_mgmt (pamh, 0);
433         if (PAM_SUCCESS != ret) {
434                 if (caller_is_root) {
435                         fprintf (stderr,
436                                  _("%s: %s\n(Ignored)\n"),
437                                  Prog, pam_strerror (pamh, ret));
438                 } else if (PAM_NEW_AUTHTOK_REQD == ret) {
439                         ret = pam_chauthtok (pamh, PAM_CHANGE_EXPIRED_AUTHTOK);
440                         if (PAM_SUCCESS != ret) {
441                                 SYSLOG ((LOG_ERR, "pam_chauthtok: %s",
442                                          pam_strerror (pamh, ret)));
443                                 fprintf (stderr,
444                                          _("%s: %s\n"),
445                                          Prog, pam_strerror (pamh, ret));
446                                 (void) pam_end (pamh, ret);
447                                 su_failure (caller_tty, 0 == pw->pw_uid);
448                         }
449                 } else {
450                         SYSLOG ((LOG_ERR, "pam_acct_mgmt: %s",
451                                  pam_strerror (pamh, ret)));
452                         fprintf (stderr,
453                                  _("%s: %s\n"),
454                                  Prog, pam_strerror (pamh, ret));
455                         (void) pam_end (pamh, ret);
456                         su_failure (caller_tty, 0 == pw->pw_uid);
457                 }
458         }
459 }
460 #else                           /* !USE_PAM */
461 static void check_perms_nopam (struct passwd *pw)
462 {
463         struct spwd *spwd = NULL;
464         RETSIGTYPE (*oldsig) (int);
465
466         if (caller_is_root) {
467                 return;
468         }
469
470         /*
471          * BSD systems only allow "wheel" to SU to root. USG systems don't,
472          * so we make this a configurable option.
473          */
474
475         /* The original Shadow 3.3.2 did this differently. Do it like BSD:
476          *
477          * - check for UID 0 instead of name "root" - there are systems with
478          *   several root accounts under different names,
479          *
480          * - check the contents of /etc/group instead of the current group
481          *   set (you must be listed as a member, GID 0 is not sufficient).
482          *
483          * In addition to this traditional feature, we now have complete su
484          * access control (allow, deny, no password, own password).  Thanks
485          * to Chris Evans <lady0110@sable.ox.ac.uk>.
486          */
487
488         if (   (0 == pw->pw_uid)
489             && getdef_bool ("SU_WHEEL_ONLY")
490             && !iswheel (caller_name)) {
491                 fprintf (stderr,
492                          _("You are not authorized to su %s\n"),
493                          name);
494                 exit (1);
495         }
496         spwd = getspnam (name); /* !USE_PAM, no need for xgetspnam */
497 #ifdef SU_ACCESS
498         if (strcmp (pw->pw_passwd, SHADOW_PASSWD_STRING) == 0) {
499                 if (NULL != spwd) {
500                         pw->pw_passwd = spwd->sp_pwdp;
501                 }
502         }
503
504         switch (check_su_auth (caller_name, name, 0 == pw->pw_uid)) {
505         case 0: /* normal su, require target user's password */
506                 break;
507         case 1: /* require no password */
508                 pw->pw_passwd = "";     /* XXX warning: const */
509                 break;
510         case 2: /* require own password */
511                 puts (_("(Enter your own password)"));
512                 pw->pw_passwd = caller_pass;
513                 break;
514         default:        /* access denied (-1) or unexpected value */
515                 fprintf (stderr,
516                          _("You are not authorized to su %s\n"),
517                          name);
518                 exit (1);
519         }
520 #endif                          /* SU_ACCESS */
521         /*
522          * Set up a signal handler in case the user types QUIT.
523          */
524         die (0);
525         oldsig = signal (SIGQUIT, die);
526
527         /*
528          * See if the system defined authentication method is being used. 
529          * The first character of an administrator defined method is an '@'
530          * character.
531          */
532         if (pw_auth (pw->pw_passwd, name, PW_SU, (char *) 0) != 0) {
533                 SYSLOG (((pw->pw_uid != 0)? LOG_NOTICE : LOG_WARN,
534                          "Authentication failed for %s", name));
535                 fprintf(stderr, _("%s: Authentication failure\n"), Prog);
536                 su_failure (caller_tty, 0 == pw->pw_uid);
537         }
538         (void) signal (SIGQUIT, oldsig);
539
540         /*
541          * Check to see if the account is expired. root gets to ignore any
542          * expired accounts, but normal users can't become a user with an
543          * expired password.
544          */
545         if (NULL != spwd) {
546                 (void) expire (pw, spwd);
547         }
548
549         /*
550          * Check to see if the account permits "su". root gets to ignore any
551          * restricted accounts, but normal users can't become a user if
552          * there is a "SU" entry in the /etc/porttime file denying access to
553          * the account.
554          */
555         if (!isttytime (name, "SU", time ((time_t *) 0))) {
556                 SYSLOG (((0 != pw->pw_uid) ? LOG_WARN : LOG_CRIT,
557                          "SU by %s to restricted account %s",
558                          caller_name, name));
559                 fprintf (stderr,
560                          _("%s: You are not authorized to su at that time\n"),
561                          Prog);
562                 su_failure (caller_tty, 0 == pw->pw_uid);
563         }
564 }
565 #endif                          /* !USE_PAM */
566
567 /*
568  * check_perms - check permissions to switch to the user 'name'
569  *
570  *      In case of subsystem login, the user is first authenticated in the
571  *      caller's root subsystem, and then in the user's target subsystem.
572  */
573 static struct passwd * check_perms (void)
574 {
575 #ifdef USE_PAM
576         const char *tmp_name;
577         int ret;
578 #endif                          /* !USE_PAM */
579         /*
580          * The password file entries for the user is gotten and the account
581          * validated.
582          */
583         struct passwd *pw = xgetpwnam (name);
584         if (NULL == pw) {
585                 (void) fprintf (stderr,
586                                 _("No passwd entry for user '%s'\n"), name);
587                 SYSLOG ((LOG_ERR, "No passwd entry for user '%s'", name));
588                 su_failure (caller_tty, true);
589         }
590
591         (void) signal (SIGINT, SIG_IGN);
592         (void) signal (SIGQUIT, SIG_IGN);
593
594 #ifdef USE_PAM
595         check_perms_pam (pw);
596         /* PAM authentication can request a change of account */
597         ret = pam_get_item(pamh, PAM_USER, (const void **) &tmp_name);
598         if (ret != PAM_SUCCESS) {
599                 SYSLOG((LOG_ERR, "pam_get_item: internal PAM error\n"));
600                 (void) fprintf (stderr,
601                                 "%s: Internal PAM error retrieving username\n",
602                                 Prog);
603                 (void) pam_end (pamh, ret);
604                 su_failure (caller_tty, 0 == pw->pw_uid);
605         }
606         if (strcmp (name, tmp_name) != 0) {
607                 SYSLOG ((LOG_INFO,
608                          "Change user from '%s' to '%s' as requested by PAM",
609                          name, tmp_name));
610                 strncpy (name, tmp_name, sizeof(name) - 1);
611                 name[sizeof(name) - 1] = '\0';
612                 pw = xgetpwnam (name);
613                 if (NULL == pw) {
614                         (void) fprintf (stderr,
615                                         _("No passwd entry for user '%s'\n"),
616                                         name);
617                         SYSLOG ((LOG_ERR,
618                                  "No passwd entry for user '%s'", name));
619                         su_failure (caller_tty, true);
620                 }
621         }
622 #else                           /* !USE_PAM */
623         check_perms_nopam (pw);
624 #endif                          /* !USE_PAM */
625
626         (void) signal (SIGINT, SIG_DFL);
627         (void) signal (SIGQUIT, SIG_DFL);
628
629         /*
630          * Even if --shell is specified, the subsystem login test is based on
631          * the shell specified in /etc/passwd (not the one specified with
632          * --shell, which will be the one executed in the chroot later).
633          */
634         if ('*' == pw->pw_shell[0]) {   /* subsystem root required */
635                 subsystem (pw); /* change to the subsystem root */
636                 endpwent ();            /* close the old password databases */
637                 endspent ();
638                 return check_perms ();  /* authenticate in the subsystem */
639         }
640
641         return pw;
642 }
643
644 /*
645  * save_caller_context - save information from the call context
646  *
647  *      Save the program's name (Prog), caller's UID (caller_uid /
648  *      caller_is_root), name (caller_name), and password (caller_pass),
649  *      the TTY (ttyp), and whether su was called from a console
650  *      (is_console) for further processing and before they might change.
651  */
652 static void save_caller_context (char **argv)
653 {
654         struct passwd *pw = NULL;
655         /*
656          * Get the program name. The program name is used as a prefix to
657          * most error messages.
658          */
659         Prog = Basename (argv[0]);
660
661         caller_uid = getuid ();
662         caller_is_root = (caller_uid == 0);
663
664         /*
665          * Get the tty name. Entries will be logged indicating that the user
666          * tried to change to the named new user from the current terminal.
667          */
668         caller_tty = ttyname (0);
669         if ((isatty (0) != 0) && (NULL != caller_tty)) {
670 #ifndef USE_PAM
671                 caller_on_console = console (caller_tty);
672 #endif
673         } else {
674                 /*
675                  * Be more paranoid, like su from SimplePAMApps.  --marekm
676                  */
677                 if (!caller_is_root) {
678                         fprintf (stderr,
679                                  _("%s: must be run from a terminal\n"),
680                                  Prog);
681                         exit (1);
682                 }
683                 caller_tty = "???";
684         }
685
686         /*
687          * Get the user's real name. The current UID is used to determine
688          * who has executed su. That user ID must exist.
689          */
690         pw = get_my_pwent ();
691         if (NULL == pw) {
692                 fprintf (stderr,
693                          _("%s: Cannot determine your user name.\n"),
694                          Prog);
695                 SYSLOG ((LOG_WARN, "Cannot determine the user name of the caller (UID %lu)",
696                          (unsigned long) caller_uid));
697                 su_failure (caller_tty, true); /* unknown target UID*/
698         }
699         STRFCPY (caller_name, pw->pw_name);
700
701 #ifndef USE_PAM
702 #ifdef SU_ACCESS
703         /*
704          * Sort out the password of user calling su, in case needed later
705          * -- chris
706          */
707         if (strcmp (pw->pw_passwd, SHADOW_PASSWD_STRING) == 0) {
708                 struct spwd *spwd = getspnam (caller_name);
709                 if (NULL != spwd) {
710                         pw->pw_passwd = spwd->sp_pwdp;
711                 }
712         }
713         caller_pass = xstrdup (pw->pw_passwd);
714 #endif                          /* SU_ACCESS */
715 #endif                          /* !USE_PAM */
716 }
717
718 /*
719  * process_flags - Process the command line arguments
720  *
721  *      process_flags() interprets the command line arguments and sets
722  *      the values that the user will be created with accordingly. The
723  *      values are checked for sanity.
724  */
725 static void process_flags (int argc, char **argv)
726 {
727         int option_index = 0;
728         int c;
729         static struct option long_options[] = {
730                 {"command", required_argument, NULL, 'c'},
731                 {"help", no_argument, NULL, 'h'},
732                 {"login", no_argument, NULL, 'l'},
733                 {"preserve-environment", no_argument, NULL, 'p'},
734                 {"shell", required_argument, NULL, 's'},
735                 {NULL, 0, NULL, '\0'}
736         };
737
738         while ((c = getopt_long (argc, argv, "c:hlmps:", long_options,
739                                  &option_index)) != -1) {
740                 switch (c) {
741                 case 'c':
742                         command = optarg;
743                         break;
744                 case 'h':
745                         usage (E_SUCCESS);
746                         break;
747                 case 'l':
748                         fakelogin = true;
749                         break;
750                 case 'm':
751                 case 'p':
752                         /* This will only have an effect if the target
753                          * user do not have a restricted shell, or if
754                          * su is called by root.
755                          */
756                         change_environment = false;
757                         break;
758                 case 's':
759                         shellstr = optarg;
760                         break;
761                 default:
762                         usage (E_USAGE);        /* NOT REACHED */
763                 }
764         }
765
766         if ((optind < argc) && (strcmp (argv[optind], "-") == 0)) {
767                 fakelogin = true;
768                 optind++;
769                 if (   (optind < argc)
770                     && (strcmp (argv[optind], "--") == 0)) {
771                         optind++;
772                 }
773         }
774
775         /*
776          * The next argument must be either a user ID, or some flag to a
777          * subshell. Pretty sticky since you can't have an argument which
778          * doesn't start with a "-" unless you specify the new user name.
779          * Any remaining arguments will be passed to the user's login shell.
780          */
781         if ((optind < argc) && ('-' != argv[optind][0])) {
782                 STRFCPY (name, argv[optind++]); /* use this login id */
783                 if ((optind < argc) && (strcmp (argv[optind], "--") == 0)) {
784                         optind++;
785                 }
786         }
787         if ('\0' == name[0]) {          /* use default user */
788                 struct passwd *root_pw = getpwnam ("root");
789                 if ((NULL != root_pw) && (0 == root_pw->pw_uid)) {
790                         (void) strcpy (name, "root");
791                 } else {
792                         root_pw = getpwuid (0);
793                         if (NULL == root_pw) {
794                                 SYSLOG ((LOG_CRIT, "There is no UID 0 user."));
795                                 su_failure (caller_tty, true);
796                         }
797                         (void) strcpy (name, root_pw->pw_name);
798                 }
799         }
800
801         doshell = (argc == optind);     /* any arguments remaining? */
802         if (NULL != command) {
803                 doshell = false;
804         }
805 }
806
807 static void set_environment (struct passwd *pw)
808 {
809         const char *cp;
810         /*
811          * If a new login is being set up, the old environment will be
812          * ignored and a new one created later on.
813          */
814         if (change_environment && fakelogin) {
815                 /*
816                  * The terminal type will be left alone if it is present in
817                  * the environment already.
818                  */
819                 cp = getenv ("TERM");
820                 if (NULL != cp) {
821                         addenv ("TERM", cp);
822                 }
823
824                 /*
825                  * For some terminals COLORTERM seems to be the only way
826                  * for checking for that specific terminal. For instance,
827                  * gnome-terminal sets its TERM as "xterm" but its
828                  * COLORTERM as "gnome-terminal". The COLORTERM variable
829                  * is also of use when running GNU screen since it sets
830                  * TERM to "screen" but doesn't touch COLORTERM.
831                  */
832                 cp = getenv ("COLORTERM");
833                 if (NULL != cp) {
834                         addenv ("COLORTERM", cp);
835                 }
836
837 #ifndef USE_PAM
838                 cp = getdef_str ("ENV_TZ");
839                 if (NULL != cp) {
840                         addenv (('/' == *cp) ? tz (cp) : cp, NULL);
841                 }
842
843                 /*
844                  * The clock frequency will be reset to the login value if required
845                  */
846                 cp = getdef_str ("ENV_HZ");
847                 if (NULL != cp) {
848                         addenv (cp, NULL);      /* set the default $HZ, if one */
849                 }
850 #endif                          /* !USE_PAM */
851
852                 /*
853                  * Also leave DISPLAY and XAUTHORITY if present, else
854                  * pam_xauth will not work.
855                  */
856                 cp = getenv ("DISPLAY");
857                 if (NULL != cp) {
858                         addenv ("DISPLAY", cp);
859                 }
860                 cp = getenv ("XAUTHORITY");
861                 if (NULL != cp) {
862                         addenv ("XAUTHORITY", cp);
863                 }
864         } else {
865                 char **envp = environ;
866                 while (NULL != *envp) {
867                         addenv (*envp, NULL);
868                         envp++;
869                 }
870         }
871
872         cp = getdef_str ((pw->pw_uid == 0) ? "ENV_SUPATH" : "ENV_PATH");
873         if (NULL == cp) {
874                 addenv ((pw->pw_uid == 0) ? "PATH=/sbin:/bin:/usr/sbin:/usr/bin" : "PATH=/bin:/usr/bin", NULL);
875         } else if (strchr (cp, '=') != NULL) {
876                 addenv (cp, NULL);
877         } else {
878                 addenv ("PATH", cp);
879         }
880
881         if (getenv ("IFS") != NULL) {   /* don't export user IFS ... */
882                 addenv ("IFS= \t\n", NULL);     /* ... instead, set a safe IFS */
883         }
884
885 #ifdef USE_PAM
886         /* we need to setup the environment *after* pam_open_session(),
887          * else the UID is changed before stuff like pam_xauth could
888          * run, and we cannot access /etc/shadow and co
889          */
890         environ = newenvp;      /* make new environment active */
891
892         if (change_environment) {
893                 /* update environment with all pam set variables */
894                 char **envcp = pam_getenvlist (pamh);
895                 if (NULL != envcp) {
896                         while (NULL != *envcp) {
897                                 addenv (*envcp, NULL);
898                                 envcp++;
899                         }
900                 }
901         }
902
903 #else                           /* !USE_PAM */
904         environ = newenvp;      /* make new environment active */
905 #endif                          /* !USE_PAM */
906
907         if (change_environment) {
908                 if (fakelogin) {
909                         pw->pw_shell = shellstr;
910                         setup_env (pw);
911                 } else {
912                         addenv ("HOME", pw->pw_dir);
913                         addenv ("USER", pw->pw_name);
914                         addenv ("LOGNAME", pw->pw_name);
915                         addenv ("SHELL", shellstr);
916                 }
917         }
918
919 }
920
921 /*
922  * su - switch user id
923  *
924  *      su changes the user's ids to the values for the specified user.  if
925  *      no new user name is specified, "root" or UID 0 is used by default.
926  *
927  *      Any additional arguments are passed to the user's shell. In
928  *      particular, the argument "-c" will cause the next argument to be
929  *      interpreted as a command by the common shell programs.
930  */
931 int main (int argc, char **argv)
932 {
933         const char *cp;
934         struct passwd *pw = NULL;
935
936 #ifdef USE_PAM
937         int ret;
938 #endif                          /* USE_PAM */
939
940         (void) setlocale (LC_ALL, "");
941         (void) bindtextdomain (PACKAGE, LOCALEDIR);
942         (void) textdomain (PACKAGE);
943
944         save_caller_context (argv);
945
946         OPENLOG ("su");
947
948         process_flags (argc, argv);
949
950         initenv ();
951
952 #ifdef USE_PAM
953         ret = pam_start ("su", name, &conv, &pamh);
954         if (PAM_SUCCESS != ret) {
955                 SYSLOG ((LOG_ERR, "pam_start: error %d", ret);
956                 fprintf (stderr,
957                          _("%s: pam_start: error %d\n"),
958                          Prog, ret));
959                 exit (1);
960         }
961
962         ret = pam_set_item (pamh, PAM_TTY, (const void *) caller_tty);
963         if (PAM_SUCCESS == ret) {
964                 ret = pam_set_item (pamh, PAM_RUSER, (const void *) caller_name);
965         }
966         if (PAM_SUCCESS != ret) {
967                 SYSLOG ((LOG_ERR, "pam_set_item: %s",
968                          pam_strerror (pamh, ret)));
969                 fprintf (stderr, _("%s: %s\n"), Prog, pam_strerror (pamh, ret));
970                 pam_end (pamh, ret);
971                 exit (1);
972         }
973 #endif                          /* USE_PAM */
974
975         pw = check_perms ();
976
977         /* If the user do not want to change the environment,
978          * use the current SHELL.
979          * (unless another shell is required by the command line)
980          */
981         if ((NULL == shellstr) && !change_environment) {
982                 shellstr = getenv ("SHELL");
983         }
984
985         /* If su is not called by root, and the target user has a
986          * restricted shell, the environment must be changed and the shell
987          * must be the one specified in /etc/passwd.
988          */
989         if (   !caller_is_root
990             && restricted_shell (pw->pw_shell)) {
991                 shellstr = NULL;
992                 change_environment = true;
993         }
994
995         /* If the shell is not set at this time, use the shell specified
996          * in /etc/passwd.
997          */
998         if (NULL == shellstr) {
999                 shellstr = (char *) strdup (pw->pw_shell);
1000         }
1001
1002         /*
1003          * Set the default shell.
1004          */
1005         if ((NULL == shellstr) || ('\0' == shellstr[0])) {
1006                 shellstr = SHELL;
1007         }
1008
1009         sulog (caller_tty, true, caller_name, name);    /* save SU information */
1010 #ifdef USE_SYSLOG
1011         if (getdef_bool ("SYSLOG_SU_ENAB")) {
1012                 SYSLOG ((LOG_INFO, "+ %s %s:%s", caller_tty,
1013                          ('\0' != caller_name[0]) ? caller_name : "???",
1014                          ('\0' != name[0]) ? name : "???"));
1015         }
1016 #endif
1017
1018 #ifdef USE_PAM
1019         /* set primary group id and supplementary groups */
1020         if (setup_groups (pw) != 0) {
1021                 pam_end (pamh, PAM_ABORT);
1022                 exit (1);
1023         }
1024
1025         /*
1026          * pam_setcred() may do things like resource limits, console groups,
1027          * and much more, depending on the configured modules
1028          */
1029         ret = pam_setcred (pamh, PAM_ESTABLISH_CRED);
1030         if (PAM_SUCCESS != ret) {
1031                 SYSLOG ((LOG_ERR, "pam_setcred: %s", pam_strerror (pamh, ret)));
1032                 fprintf (stderr, _("%s: %s\n"), Prog, pam_strerror (pamh, ret));
1033                 (void) pam_end (pamh, ret);
1034                 exit (1);
1035         }
1036
1037         ret = pam_open_session (pamh, 0);
1038         if (PAM_SUCCESS != ret) {
1039                 SYSLOG ((LOG_ERR, "pam_open_session: %s",
1040                          pam_strerror (pamh, ret)));
1041                 fprintf (stderr, _("%s: %s\n"), Prog, pam_strerror (pamh, ret));
1042                 pam_setcred (pamh, PAM_DELETE_CRED);
1043                 (void) pam_end (pamh, ret);
1044                 exit (1);
1045         }
1046
1047         prepare_pam_close_session ();
1048
1049         /* become the new user */
1050         if (change_uid (pw) != 0) {
1051                 exit (1);
1052         }
1053 #else                           /* !USE_PAM */
1054         /* no limits if su from root (unless su must fake login's behavior) */
1055         if (!caller_is_root || fakelogin) {
1056                 setup_limits (pw);
1057         }
1058
1059         if (setup_uid_gid (pw, caller_on_console) != 0) {
1060                 exit (1);
1061         }
1062 #endif                          /* !USE_PAM */
1063
1064         set_environment (pw);
1065
1066         if (!doshell) {
1067                 /* There is no need for a controlling terminal.
1068                  * This avoids the callee to inject commands on
1069                  * the caller's tty. */
1070                 int err = -1;
1071
1072 #ifdef USE_PAM
1073                 /* When PAM is used, we are on the child */
1074                 err = setsid ();
1075 #else
1076                 /* Otherwise, we cannot use setsid */
1077                 int fd = open ("/dev/tty", O_RDWR);
1078
1079                 if (fd >= 0) {
1080                         err = ioctl (fd, TIOCNOTTY, (char *) 0);
1081                         (void) close (fd);
1082                 }
1083 #endif                          /* USE_PAM */
1084
1085                 if (-1 == err) {
1086                         (void) fprintf (stderr,
1087                                         _("%s: Cannot drop the controlling terminal\n"),
1088                                         Prog);
1089                         exit (1);
1090                 }
1091         }
1092
1093         /*
1094          * PAM_DATA_SILENT is not supported by some modules, and
1095          * there is no strong need to clean up the process space's
1096          * memory since we will either call exec or exit.
1097         pam_end (pamh, PAM_SUCCESS | PAM_DATA_SILENT);
1098          */
1099
1100         endpwent ();
1101         endspent ();
1102         /*
1103          * This is a workaround for Linux libc bug/feature (?) - the
1104          * /dev/log file descriptor is open without the close-on-exec flag
1105          * and used to be passed to the new shell. There is "fcntl(LogFile,
1106          * F_SETFD, 1)" in libc/misc/syslog.c, but it is commented out (at
1107          * least in 5.4.33). Why?  --marekm
1108          */
1109         closelog ();
1110
1111         /*
1112          * See if the user has extra arguments on the command line. In that
1113          * case they will be provided to the new user's shell as arguments.
1114          */
1115         if (fakelogin) {
1116                 char *arg0;
1117
1118                 cp = getdef_str ("SU_NAME");
1119                 if (NULL == cp) {
1120                         cp = Basename (shellstr);
1121                 }
1122
1123                 arg0 = xmalloc (strlen (cp) + 2);
1124                 arg0[0] = '-';
1125                 strcpy (arg0 + 1, cp);
1126                 cp = arg0;
1127         } else {
1128                 cp = Basename (shellstr);
1129         }
1130
1131         if (!doshell) {
1132                 int err;
1133                 /* Position argv to the remaining arguments */
1134                 argv += optind;
1135                 if (NULL != command) {
1136                         argv -= 2;
1137                         argv[0] = "-c";
1138                         argv[1] = command;
1139                 }
1140                 /*
1141                  * Use the shell and create an argv
1142                  * with the rest of the command line included.
1143                  */
1144                 argv[-1] = cp;
1145                 execve_shell (shellstr, &argv[-1], environ);
1146                 err = errno;
1147                 (void) fprintf (stderr,
1148                                 _("Cannot execute %s\n"), shellstr);
1149                 errno = err;
1150         } else {
1151                 (void) shell (shellstr, cp, environ);
1152         }
1153
1154         return (errno == ENOENT ? E_CMD_NOTFOUND : E_CMD_NOEXEC);
1155 }
1156