3767074e6520a2f8ff0506464c8d09a9dc8747d4
[platform/upstream/coreutils.git] / src / whoami.c
1 /* whoami -- print effective userid
2    Copyright (C) 89,90, 1991-1997, 1999, 2000 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 Foundation,
16    Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
17
18 /* Equivalent to `id -un'. */
19 /* Written by Richard Mlynarik. */
20
21 #include <config.h>
22 #include <stdio.h>
23 #include <sys/types.h>
24 #include <pwd.h>
25 #include <getopt.h>
26
27 #include "system.h"
28 #include "long-options.h"
29 #include "closeout.h"
30
31 /* The official name of this program (e.g., no `g' prefix).  */
32 #define PROGRAM_NAME "whoami"
33
34 #define AUTHORS "Richard Mlynarik"
35
36 /* The name this program was run with. */
37 char *program_name;
38
39 static struct option const long_options[] =
40 {
41   {0, 0, 0, 0}
42 };
43
44 void
45 usage (int status)
46 {
47   if (status != 0)
48     fprintf (stderr, _("Try `%s --help' for more information.\n"),
49              program_name);
50   else
51     {
52       printf (_("Usage: %s [OPTION]...\n"), program_name);
53       printf (_("\
54 Print the user name associated with the current effective user id.\n\
55 Same as id -un.\n\
56 \n\
57       --help      display this help and exit\n\
58       --version   output version information and exit\n"));
59       puts (_("\nReport bugs to <bug-sh-utils@gnu.org>."));
60     }
61   exit (status);
62 }
63
64 int
65 main (int argc, char **argv)
66 {
67   register struct passwd *pw;
68   register uid_t uid;
69   int c;
70
71   program_name = argv[0];
72   setlocale (LC_ALL, "");
73   bindtextdomain (PACKAGE, LOCALEDIR);
74   textdomain (PACKAGE);
75
76   atexit (close_stdout);
77
78   parse_long_options (argc, argv, PROGRAM_NAME, GNU_PACKAGE, VERSION,
79                       AUTHORS, usage);
80
81   while ((c = getopt_long (argc, argv, "", long_options, NULL)) != -1)
82     {
83       switch (c)
84         {
85         case 0:
86           break;
87
88         default:
89           usage (1);
90         }
91     }
92
93   if (optind != argc)
94     usage (1);
95
96   uid = geteuid ();
97   pw = getpwuid (uid);
98   if (pw)
99     {
100       puts (pw->pw_name);
101       exit (0);
102     }
103   fprintf (stderr, _("%s: cannot find username for UID %u\n"),
104            program_name, (unsigned) uid);
105   exit (1);
106 }