1 /* su for GNU. Run a shell with substitute user and group IDs.
2 Copyright (C) 1992-2006, 2008-2009 Free Software Foundation, Inc.
4 This program is free software: you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation, either version 3 of the License, or
7 (at your option) any later version.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program. If not, see <http://www.gnu.org/licenses/>. */
17 /* Run a shell with the real and effective UID and GID and groups
18 of USER, default `root'.
20 The shell run is taken from USER's password entry, /bin/sh if
21 none is specified there. If the account has a password, su
22 prompts for a password unless run by a user with real UID 0.
24 Does not change the current directory.
25 Sets `HOME' and `SHELL' from the password entry for USER, and if
26 USER is not root, sets `USER' and `LOGNAME' to USER.
27 The subshell is not a login shell.
29 If one or more ARGs are given, they are passed as additional
30 arguments to the subshell.
32 Does not handle /bin/sh or other shells specially
33 (setting argv[0] to "-su", passing -c only to certain shells, etc.).
34 I don't see the point in doing that, and it's ugly.
36 This program intentionally does not support a "wheel group" that
37 restricts who can su to UID 0 accounts. RMS considers that to
41 -DSYSLOG_SUCCESS Log successful su's (by default, to root) with syslog.
42 -DSYSLOG_FAILURE Log failed su's (by default, to root) with syslog.
44 -DSYSLOG_NON_ROOT Log all su's, not just those to root (UID 0).
45 Never logs attempted su's to nonexistent accounts.
47 Written by David MacKenzie <djm@gnu.ai.mit.edu>. */
52 #include <sys/types.h>
59 #if HAVE_SYSLOG_H && HAVE_SYSLOG
62 # undef SYSLOG_SUCCESS
63 # undef SYSLOG_FAILURE
64 # undef SYSLOG_NON_ROOT
68 # include <sys/param.h>
72 # define endgrent() ((void) 0)
76 # define endpwent() ((void) 0)
85 /* The official name of this program (e.g., no `g' prefix). */
86 #define PROGRAM_NAME "su"
88 #define AUTHORS proper_name ("David MacKenzie")
94 /* The default PATH for simulated logins to non-superuser accounts. */
96 # define DEFAULT_LOGIN_PATH _PATH_DEFPATH
98 # define DEFAULT_LOGIN_PATH ":/usr/ucb:/bin:/usr/bin"
101 /* The default PATH for simulated logins to superuser accounts. */
102 #ifdef _PATH_DEFPATH_ROOT
103 # define DEFAULT_ROOT_LOGIN_PATH _PATH_DEFPATH_ROOT
105 # define DEFAULT_ROOT_LOGIN_PATH "/usr/ucb:/bin:/usr/bin:/etc"
108 /* The shell to run if none is given in the user's passwd entry. */
109 #define DEFAULT_SHELL "/bin/sh"
111 /* The user to become if none is specified. */
112 #define DEFAULT_USER "root"
114 char *crypt (char const *key
, char const *salt
);
116 static void run_shell (char const *, char const *, char **, size_t)
119 /* If true, pass the `-f' option to the subshell. */
120 static bool fast_startup
;
122 /* If true, simulate a login instead of just starting a shell. */
123 static bool simulate_login
;
125 /* If true, change some environment vars to indicate the user su'd to. */
126 static bool change_environment
;
128 static struct option
const longopts
[] =
130 {"command", required_argument
, NULL
, 'c'},
131 {"fast", no_argument
, NULL
, 'f'},
132 {"login", no_argument
, NULL
, 'l'},
133 {"preserve-environment", no_argument
, NULL
, 'p'},
134 {"shell", required_argument
, NULL
, 's'},
135 {GETOPT_HELP_OPTION_DECL
},
136 {GETOPT_VERSION_OPTION_DECL
},
140 /* Add NAME=VAL to the environment, checking for out of memory errors. */
143 xsetenv (char const *name
, char const *val
)
145 size_t namelen
= strlen (name
);
146 size_t vallen
= strlen (val
);
147 char *string
= xmalloc (namelen
+ 1 + vallen
+ 1);
148 strcpy (string
, name
);
149 string
[namelen
] = '=';
150 strcpy (string
+ namelen
+ 1, val
);
151 if (putenv (string
) != 0)
155 #if defined SYSLOG_SUCCESS || defined SYSLOG_FAILURE
156 /* Log the fact that someone has run su to the user given by PW;
157 if SUCCESSFUL is true, they gave the correct password, etc. */
160 log_su (struct passwd
const *pw
, bool successful
)
162 const char *new_user
, *old_user
, *tty
;
164 # ifndef SYSLOG_NON_ROOT
168 new_user
= pw
->pw_name
;
169 /* The utmp entry (via getlogin) is probably the best way to identify
170 the user, especially if someone su's from a su-shell. */
171 old_user
= getlogin ();
174 /* getlogin can fail -- usually due to lack of utmp entry.
175 Resort to getpwuid. */
176 struct passwd
*pwd
= getpwuid (getuid ());
177 old_user
= (pwd
? pwd
->pw_name
: "");
179 tty
= ttyname (STDERR_FILENO
);
182 /* 4.2BSD openlog doesn't have the third parameter. */
183 openlog (last_component (program_name
), 0
189 # ifdef SYSLOG_NON_ROOT
190 "%s(to %s) %s on %s",
194 successful
? "" : "FAILED SU ",
195 # ifdef SYSLOG_NON_ROOT
203 /* Ask the user for a password.
204 Return true if the user gives the correct password for entry PW,
205 false if not. Return true without asking for a password if run by UID 0
206 or if PW has an empty password. */
209 correct_password (const struct passwd
*pw
)
211 char *unencrypted
, *encrypted
, *correct
;
212 #if HAVE_GETSPNAM && HAVE_STRUCT_SPWD_SP_PWDP
213 /* Shadow passwd stuff for SVR3 and maybe other systems. */
214 struct spwd
*sp
= getspnam (pw
->pw_name
);
218 correct
= sp
->sp_pwdp
;
221 correct
= pw
->pw_passwd
;
223 if (getuid () == 0 || !correct
|| correct
[0] == '\0')
226 unencrypted
= getpass (_("Password:"));
229 error (0, 0, _("getpass: cannot open /dev/tty"));
232 encrypted
= crypt (unencrypted
, correct
);
233 memset (unencrypted
, 0, strlen (unencrypted
));
234 return STREQ (encrypted
, correct
);
237 /* Update `environ' for the new shell based on PW, with SHELL being
238 the value for the SHELL environment variable. */
241 modify_environment (const struct passwd
*pw
, const char *shell
)
245 /* Leave TERM unchanged. Set HOME, SHELL, USER, LOGNAME, PATH.
246 Unset all other environment variables. */
247 char const *term
= getenv ("TERM");
249 term
= xstrdup (term
);
250 environ
= xmalloc ((6 + !!term
) * sizeof (char *));
253 xsetenv ("TERM", term
);
254 xsetenv ("HOME", pw
->pw_dir
);
255 xsetenv ("SHELL", shell
);
256 xsetenv ("USER", pw
->pw_name
);
257 xsetenv ("LOGNAME", pw
->pw_name
);
258 xsetenv ("PATH", (pw
->pw_uid
260 : DEFAULT_ROOT_LOGIN_PATH
));
264 /* Set HOME, SHELL, and if not becoming a super-user,
266 if (change_environment
)
268 xsetenv ("HOME", pw
->pw_dir
);
269 xsetenv ("SHELL", shell
);
272 xsetenv ("USER", pw
->pw_name
);
273 xsetenv ("LOGNAME", pw
->pw_name
);
279 /* Become the user and group(s) specified by PW. */
282 change_identity (const struct passwd
*pw
)
284 #ifdef HAVE_INITGROUPS
286 if (initgroups (pw
->pw_name
, pw
->pw_gid
) == -1)
287 error (EXIT_CANCELED
, errno
, _("cannot set groups"));
290 if (setgid (pw
->pw_gid
))
291 error (EXIT_CANCELED
, errno
, _("cannot set group id"));
292 if (setuid (pw
->pw_uid
))
293 error (EXIT_CANCELED
, errno
, _("cannot set user id"));
296 /* Run SHELL, or DEFAULT_SHELL if SHELL is empty.
297 If COMMAND is nonzero, pass it to the shell with the -c option.
298 Pass ADDITIONAL_ARGS to the shell as more arguments; there
299 are N_ADDITIONAL_ARGS extra arguments. */
302 run_shell (char const *shell
, char const *command
, char **additional_args
,
303 size_t n_additional_args
)
305 size_t n_args
= 1 + fast_startup
+ 2 * !!command
+ n_additional_args
+ 1;
306 char const **args
= xnmalloc (n_args
, sizeof *args
);
312 char *shell_basename
;
314 shell_basename
= last_component (shell
);
315 arg0
= xmalloc (strlen (shell_basename
) + 2);
317 strcpy (arg0
+ 1, shell_basename
);
321 args
[0] = last_component (shell
);
323 args
[argno
++] = "-f";
326 args
[argno
++] = "-c";
327 args
[argno
++] = command
;
329 memcpy (args
+ argno
, additional_args
, n_additional_args
* sizeof *args
);
330 args
[argno
+ n_additional_args
] = NULL
;
331 execv (shell
, (char **) args
);
334 int exit_status
= (errno
== ENOENT
? EXIT_ENOENT
: EXIT_CANNOT_INVOKE
);
335 error (0, errno
, "%s", shell
);
340 /* Return true if SHELL is a restricted shell (one not returned by
341 getusershell), else false, meaning it is a standard shell. */
344 restricted_shell (const char *shell
)
349 while ((line
= getusershell ()) != NULL
)
351 if (*line
!= '#' && STREQ (line
, shell
))
364 if (status
!= EXIT_SUCCESS
)
365 fprintf (stderr
, _("Try `%s --help' for more information.\n"),
369 printf (_("Usage: %s [OPTION]... [-] [USER [ARG]...]\n"), program_name
);
371 Change the effective user id and group id to that of USER.\n\
373 -, -l, --login make the shell a login shell\n\
374 -c, --command=COMMAND pass a single COMMAND to the shell with -c\n\
375 -f, --fast pass -f to the shell (for csh or tcsh)\n\
376 -m, --preserve-environment do not reset environment variables\n\
378 -s, --shell=SHELL run SHELL if /etc/shells allows it\n\
380 fputs (HELP_OPTION_DESCRIPTION
, stdout
);
381 fputs (VERSION_OPTION_DESCRIPTION
, stdout
);
384 A mere - implies -l. If USER not given, assume root.\n\
386 emit_ancillary_info ();
392 main (int argc
, char **argv
)
395 const char *new_user
= DEFAULT_USER
;
396 char *command
= NULL
;
399 struct passwd pw_copy
;
401 initialize_main (&argc
, &argv
);
402 set_program_name (argv
[0]);
403 setlocale (LC_ALL
, "");
404 bindtextdomain (PACKAGE
, LOCALEDIR
);
405 textdomain (PACKAGE
);
407 initialize_exit_failure (EXIT_CANCELED
);
408 atexit (close_stdout
);
410 fast_startup
= false;
411 simulate_login
= false;
412 change_environment
= true;
414 while ((optc
= getopt_long (argc
, argv
, "c:flmps:", longopts
, NULL
)) != -1)
427 simulate_login
= true;
432 change_environment
= false;
439 case_GETOPT_HELP_CHAR
;
441 case_GETOPT_VERSION_CHAR (PROGRAM_NAME
, AUTHORS
);
444 usage (EXIT_CANCELED
);
448 if (optind
< argc
&& STREQ (argv
[optind
], "-"))
450 simulate_login
= true;
454 new_user
= argv
[optind
++];
456 pw
= getpwnam (new_user
);
457 if (! (pw
&& pw
->pw_name
&& pw
->pw_name
[0] && pw
->pw_dir
&& pw
->pw_dir
[0]
459 error (EXIT_CANCELED
, 0, _("user %s does not exist"), new_user
);
461 /* Make a copy of the password information and point pw at the local
462 copy instead. Otherwise, some systems (e.g. GNU/Linux) would clobber
463 the static data through the getlogin call from log_su.
464 Also, make sure pw->pw_shell is a nonempty string.
465 It may be NULL when NEW_USER is a username that is retrieved via NIS (YP),
466 but that doesn't have a default shell listed. */
469 pw
->pw_name
= xstrdup (pw
->pw_name
);
470 pw
->pw_passwd
= xstrdup (pw
->pw_passwd
);
471 pw
->pw_dir
= xstrdup (pw
->pw_dir
);
472 pw
->pw_shell
= xstrdup (pw
->pw_shell
&& pw
->pw_shell
[0]
477 if (!correct_password (pw
))
479 #ifdef SYSLOG_FAILURE
482 error (EXIT_CANCELED
, 0, _("incorrect password"));
484 #ifdef SYSLOG_SUCCESS
491 if (!shell
&& !change_environment
)
492 shell
= getenv ("SHELL");
493 if (shell
&& getuid () != 0 && restricted_shell (pw
->pw_shell
))
495 /* The user being su'd to has a nonstandard shell, and so is
496 probably a uucp account or has restricted access. Don't
497 compromise the account by allowing access with a standard
499 error (0, 0, _("using restricted shell %s"), pw
->pw_shell
);
502 shell
= xstrdup (shell
? shell
: pw
->pw_shell
);
503 modify_environment (pw
, shell
);
505 change_identity (pw
);
506 if (simulate_login
&& chdir (pw
->pw_dir
) != 0)
507 error (0, errno
, _("warning: cannot change directory to %s"), pw
->pw_dir
);
509 run_shell (shell
, command
, argv
+ optind
, MAX (0, argc
- optind
));