merge with 1.10n2
[platform/upstream/coreutils.git] / src / whoami.c
1 /* whoami -- print effective userid
2    Copyright (C) 89, 90, 91, 92, 93, 1994 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 2, or (at your option)
7    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, write to the Free Software
16    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
17
18 /* Equivalent to `id -un'. */
19 /* Written by Richard Mlynarik. */
20
21 #ifdef HAVE_CONFIG_H
22 #include <config.h>
23 #endif
24
25 #include <stdio.h>
26 #include <sys/types.h>
27 #include <pwd.h>
28 #include <getopt.h>
29
30 #include "version.h"
31 #include "system.h"
32
33 /* The name this program was run with. */
34 char *program_name;
35
36 /* If non-zero, display usage information and exit.  */
37 static int show_help;
38
39 /* If non-zero, print the version on standard output and exit.  */
40 static int show_version;
41
42 static struct option const long_options[] =
43 {
44   {"help", no_argument, &show_help, 1},
45   {"version", no_argument, &show_version, 1},
46   {0, 0, 0, 0}
47 };
48
49 static void
50 usage (status)
51      int status;
52 {
53   if (status != 0)
54     fprintf (stderr, "Try `%s --help' for more information.\n",
55              program_name);
56   else
57     {
58       printf ("Usage: %s [OPTION]...\n", program_name);
59       printf ("\
60 \n\
61   --help      display this help and exit\n\
62   --version   output version information and exit\n\
63 \n\
64 Same as id -un.\n\
65 ");
66     }
67   exit (status);
68 }
69
70 void
71 main (argc, argv)
72      int argc;
73      char *argv[];
74 {
75   register struct passwd *pw;
76   register uid_t uid;
77   int c;
78
79   program_name = argv[0];
80
81   while ((c = getopt_long (argc, argv, "", long_options, (int *) 0)) != EOF)
82     {
83       switch (c)
84         {
85         case 0:
86           break;
87
88         default:
89           usage (1);
90         }
91     }
92
93   if (show_version)
94     {
95       printf ("whoami - %s\n", version_string);
96       exit (0);
97     }
98
99   if (show_help)
100     usage (0);
101
102
103   if (optind != argc)
104     usage (1);
105
106   uid = geteuid ();
107   pw = getpwuid (uid);
108   if (pw)
109     {
110       puts (pw->pw_name);
111       exit (0);
112     }
113   fprintf (stderr, "%s: cannot find username for UID %u\n",
114            program_name, (unsigned) uid);
115   exit (1);
116 }