.
[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 #if defined (CONFIG_BROKETS)
23 /* We use <config.h> instead of "config.h" so that a compilation
24    using -I. -I$srcdir will use ./config.h rather than $srcdir/config.h
25    (which it would do because it found this file in $srcdir).  */
26 #include <config.h>
27 #else
28 #include "config.h"
29 #endif
30 #endif
31
32 #include <stdio.h>
33 #include <sys/types.h>
34 #include <pwd.h>
35 #include <getopt.h>
36
37 #include "version.h"
38 #include "system.h"
39
40 /* The name this program was run with. */
41 char *program_name;
42
43 /* If non-zero, display usage information and exit.  */
44 static int show_help;
45
46 /* If non-zero, print the version on standard output and exit.  */
47 static int show_version;
48
49 static struct option const long_options[] =
50 {
51   {"help", no_argument, &show_help, 1},
52   {"version", no_argument, &show_version, 1},
53   {0, 0, 0, 0}
54 };
55
56 static void
57 usage (status)
58      int status;
59 {
60   if (status != 0)
61     fprintf (stderr, "Try `%s --help' for more information.\n",
62              program_name);
63   else
64     {
65       printf ("Usage: %s [OPTION]...\n", program_name);
66       printf ("\
67 \n\
68   --help      display this help and exit\n\
69   --version   output version information and exit\n\
70 \n\
71 Same as id -un.\n\
72 ");
73     }
74   exit (status);
75 }
76
77 void
78 main (argc, argv)
79      int argc;
80      char *argv[];
81 {
82   register struct passwd *pw;
83   register uid_t uid;
84   int c;
85
86   program_name = argv[0];
87
88   while ((c = getopt_long (argc, argv, "", long_options, (int *) 0)) != EOF)
89     {
90       switch (c)
91         {
92         case 0:
93           break;
94
95         default:
96           usage (1);
97         }
98     }
99
100   if (show_version)
101     {
102       printf ("%s\n", version_string);
103       exit (0);
104     }
105
106   if (show_help)
107     usage (0);
108
109
110   if (optind != argc)
111     usage (1);
112
113   uid = geteuid ();
114   pw = getpwuid (uid);
115   if (pw)
116     {
117       puts (pw->pw_name);
118       exit (0);
119     }
120   fprintf (stderr, "%s: cannot find username for UID %u\n",
121            program_name, (unsigned) uid);
122   exit (1);
123 }