declare program_name consistently
[platform/upstream/coreutils.git] / src / users.c
1 /* GNU's users.
2    Copyright (C) 1992-2005, 2007-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 jla; revised by djm */
18
19 #include <config.h>
20 #include <getopt.h>
21 #include <stdio.h>
22
23 #include <sys/types.h>
24 #include "system.h"
25
26 #include "error.h"
27 #include "long-options.h"
28 #include "quote.h"
29 #include "readutmp.h"
30
31 /* The official name of this program (e.g., no `g' prefix).  */
32 #define PROGRAM_NAME "users"
33
34 #define AUTHORS \
35   proper_name ("Joseph Arceneaux"), \
36   proper_name ("David MacKenzie")
37
38 /* The name this program was run with. */
39 char const *program_name;
40
41 static int
42 userid_compare (const void *v_a, const void *v_b)
43 {
44   char **a = (char **) v_a;
45   char **b = (char **) v_b;
46   return strcmp (*a, *b);
47 }
48
49 static void
50 list_entries_users (size_t n, const STRUCT_UTMP *this)
51 {
52   char **u = xnmalloc (n, sizeof *u);
53   size_t i;
54   size_t n_entries = 0;
55
56   while (n--)
57     {
58       if (IS_USER_PROCESS (this))
59         {
60           char *trimmed_name;
61
62           trimmed_name = extract_trimmed_name (this);
63
64           u[n_entries] = trimmed_name;
65           ++n_entries;
66         }
67       this++;
68     }
69
70   qsort (u, n_entries, sizeof (u[0]), userid_compare);
71
72   for (i = 0; i < n_entries; i++)
73     {
74       char c = (i < n_entries - 1 ? ' ' : '\n');
75       fputs (u[i], stdout);
76       putchar (c);
77     }
78
79   for (i = 0; i < n_entries; i++)
80     free (u[i]);
81   free (u);
82 }
83
84 /* Display a list of users on the system, according to utmp file FILENAME.
85    Use read_utmp OPTIONS to read FILENAME.  */
86
87 static void
88 users (const char *filename, int options)
89 {
90   size_t n_users;
91   STRUCT_UTMP *utmp_buf;
92
93   if (read_utmp (filename, &n_users, &utmp_buf, options) != 0)
94     error (EXIT_FAILURE, errno, "%s", filename);
95
96   list_entries_users (n_users, utmp_buf);
97
98   free (utmp_buf);
99 }
100
101 void
102 usage (int status)
103 {
104   if (status != EXIT_SUCCESS)
105     fprintf (stderr, _("Try `%s --help' for more information.\n"),
106              program_name);
107   else
108     {
109       printf (_("Usage: %s [OPTION]... [ FILE ]\n"), program_name);
110       printf (_("\
111 Output who is currently logged in according to FILE.\n\
112 If FILE is not specified, use %s.  %s as FILE is common.\n\
113 \n\
114 "),
115               UTMP_FILE, WTMP_FILE);
116       fputs (HELP_OPTION_DESCRIPTION, stdout);
117       fputs (VERSION_OPTION_DESCRIPTION, stdout);
118       emit_bug_reporting_address ();
119     }
120   exit (status);
121 }
122
123 int
124 main (int argc, char **argv)
125 {
126   initialize_main (&argc, &argv);
127   program_name = argv[0];
128   setlocale (LC_ALL, "");
129   bindtextdomain (PACKAGE, LOCALEDIR);
130   textdomain (PACKAGE);
131
132   atexit (close_stdout);
133
134   parse_long_options (argc, argv, PROGRAM_NAME, PACKAGE_NAME, VERSION,
135                       usage, AUTHORS, (char const *) NULL);
136   if (getopt_long (argc, argv, "", NULL, NULL) != -1)
137     usage (EXIT_FAILURE);
138
139   switch (argc - optind)
140     {
141     case 0:                     /* users */
142       users (UTMP_FILE, READ_UTMP_CHECK_PIDS);
143       break;
144
145     case 1:                     /* users <utmp file> */
146       users (argv[optind], 0);
147       break;
148
149     default:                    /* lose */
150       error (0, 0, _("extra operand %s"), quote (argv[optind + 1]));
151       usage (EXIT_FAILURE);
152     }
153
154   exit (EXIT_SUCCESS);
155 }