8a4673cedf55e20ab02b1ad2c86da9a111748a0d
[platform/upstream/coreutils.git] / src / groups.c
1 /* groups -- print the groups a user is in
2    Copyright (C) 1989-2008 Free Software Foundation, Inc.
3
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.
8
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.
13
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/>.  */
16
17 /* Written by James Youngman based on id.c and groups.sh,
18    which were written by Arnold Robbins and David MacKenzie. */
19
20 #include <config.h>
21 #include <stdio.h>
22 #include <getopt.h>
23 #include <sys/types.h>
24 #include <pwd.h>
25 #include <grp.h>
26 #include <getopt.h>
27
28 #include "system.h"
29 #include "error.h"
30 #include "group-list.h"
31
32 /* The name this program was run with. */
33 char *program_name;
34
35 /* The official name of this program (e.g., no `g' prefix).  */
36 #define PROGRAM_NAME "groups"
37
38 #define AUTHORS "David MacKenzie", "James Youngman"
39
40
41 static struct option const longopts[] =
42 {
43   {GETOPT_HELP_OPTION_DECL},
44   {GETOPT_VERSION_OPTION_DECL},
45   {NULL, 0, NULL, 0}
46 };
47
48 void
49 usage (int status)
50 {
51   if (status != EXIT_SUCCESS)
52     fprintf (stderr, _("Try `%s --help' for more information.\n"),
53              program_name);
54   else
55     {
56       printf (_("Usage: %s [OPTION]... [USERNAME]\n"), program_name);
57       fputs (_("\
58 Print information for USERNAME or, if no USERNAME is specified,\n\
59 the current process (which is different if the groups database has changed).\n"),
60              stdout);
61       fputs (HELP_OPTION_DESCRIPTION, stdout);
62       fputs (VERSION_OPTION_DESCRIPTION, stdout);
63       emit_bug_reporting_address ();
64     }
65   exit (status);
66 }
67
68 static void
69 write_error (void)
70 {
71   error (0, errno, _("write error"));
72 }
73
74
75 int
76 main (int argc, char **argv)
77 {
78   int optc;
79   bool ok = true;
80   gid_t rgid, egid;
81   uid_t ruid;
82
83   initialize_main (&argc, &argv);
84   program_name = argv[0];
85   setlocale (LC_ALL, "");
86   bindtextdomain (PACKAGE, LOCALEDIR);
87   textdomain (PACKAGE);
88
89   atexit (close_stdout);
90
91   /* Processing the arguments this way makes groups.c behave differently to
92    * groups.sh if one of the arguments is "--".
93    */
94   while ((optc = getopt_long (argc, argv, "", longopts, NULL)) != -1)
95     {
96       switch (optc)
97         {
98         case_GETOPT_HELP_CHAR;
99         case_GETOPT_VERSION_CHAR (PROGRAM_NAME, AUTHORS);
100         default:
101           usage (EXIT_FAILURE);
102         }
103     }
104
105   if (optind == argc)
106     {
107       /* No arguments.  Divulge the details of the current process. */
108       ruid = getuid ();
109       egid = getegid ();
110       rgid = getgid ();
111
112       if (!print_group_list (NULL, ruid, rgid, egid, true))
113         ok = false;
114       if (EOF == putchar ('\n'))
115         {
116           write_error ();
117           ok = false;
118         }
119     }
120   else
121     {
122       /* At least one argument.  Divulge the details of the specified users. */
123       while (optind < argc)
124         {
125           struct passwd *pwd = getpwnam (argv[optind]);
126           if (pwd == NULL)
127             error (EXIT_FAILURE, 0, _("%s: No such user"), argv[optind]);
128           ruid = pwd->pw_uid;
129           rgid = egid = pwd->pw_gid;
130
131           if (printf ("%s : ", argv[optind]) < 0)
132             {
133               write_error ();
134               ok = false;
135             }
136           if (!print_group_list (argv[optind++], ruid, rgid, egid, true))
137             ok = false;
138           if (EOF == putchar ('\n'))
139             {
140               write_error ();
141               ok = false;
142             }
143         }
144     }
145
146   exit (ok ? EXIT_SUCCESS : EXIT_FAILURE);
147 }
148
149 /*
150  * Local variables:
151  *  indent-tabs-mode: nil
152  * End:
153  */