diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2011-11-15 13:23:24 -0800 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2011-11-15 13:24:02 -0800 |
commit | 8f512f9bdb2cf436e4ec63c31410d8033d75779a (patch) | |
tree | 802f4b4d2a5737774286cfca31689323e4314686 /src | |
parent | e36e6f2c6e95d6e23be805f7bab6c596b1818d22 (diff) | |
download | coreutils-8f512f9bdb2cf436e4ec63c31410d8033d75779a.tar.xz |
id: fix bug when euid != ruid
* src/id.c (main): Report an error if no args are given and getuid
fails, because print_full_info needs ruid. Redo code so that
getuid and friends are invoked only when needed; this makes the
code easier to follow, and is how I found the above bug.
Diffstat (limited to 'src')
-rw-r--r-- | src/id.c | 51 |
1 files changed, 30 insertions, 21 deletions
@@ -207,27 +207,36 @@ main (int argc, char **argv) uid_t NO_UID = -1; gid_t NO_GID = -1; - errno = 0; - euid = geteuid (); - if (euid == NO_UID && errno && !use_real - && !just_group && !just_group_list && !just_context) - error (EXIT_FAILURE, errno, _("cannot get effective UID")); - - errno = 0; - ruid = getuid (); - if (ruid == NO_UID && errno && use_real - && !just_group && !just_group_list && !just_context) - error (EXIT_FAILURE, errno, _("cannot get real UID")); - - errno = 0; - egid = getegid (); - if (egid == NO_GID && errno && !use_real && !just_user) - error (EXIT_FAILURE, errno, _("cannot get effective GID")); - - errno = 0; - rgid = getgid (); - if (rgid == NO_GID && errno && use_real && !just_user) - error (EXIT_FAILURE, errno, _("cannot get real GID")); + if (just_user ? !use_real + : !just_group && !just_group_list && !just_context) + { + errno = 0; + euid = geteuid (); + if (euid == NO_UID && errno) + error (EXIT_FAILURE, errno, _("cannot get effective UID")); + } + + if (just_user ? use_real + : !just_group && (just_group_list || !just_context)) + { + errno = 0; + ruid = getuid (); + if (ruid == NO_UID && errno) + error (EXIT_FAILURE, errno, _("cannot get real UID")); + } + + if (!just_user && (just_group || just_group_list || !just_context)) + { + errno = 0; + egid = getegid (); + if (egid == NO_GID && errno) + error (EXIT_FAILURE, errno, _("cannot get effective GID")); + + errno = 0; + rgid = getgid (); + if (rgid == NO_GID && errno) + error (EXIT_FAILURE, errno, _("cannot get real GID")); + } } if (just_user) |