declare xmalloc
[platform/upstream/coreutils.git] / src / users.c
1 /* GNU's users.
2    Copyright (C) 92, 93, 94, 95, 96, 1997 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 /* Written by jla; revised by djm */
19
20 #include <config.h>
21 #include <getopt.h>
22
23 #include "system.h"
24 #include "error.h"
25 #include "readutmp.h"
26
27 char *xmalloc ();
28
29 /* The name this program was run with. */
30 char *program_name;
31
32 /* If nonzero, display usage information and exit.  */
33 static int show_help;
34
35 /* If nonzero, print the version on standard output and exit.  */
36 static int show_version;
37
38 static struct option const longopts[] =
39 {
40   {"help", no_argument, &show_help, 1},
41   {"version", no_argument, &show_version, 1},
42   {NULL, 0, NULL, 0}
43 };
44
45 static int
46 userid_compare (const void *v_a, const void *v_b)
47 {
48   char **a = (char **) v_a;
49   char **b = (char **) v_b;
50   return strcmp (*a, *b);
51 }
52
53 static void
54 list_entries_users (int n)
55 {
56   register STRUCT_UTMP *this = utmp_contents;
57   char **u;
58   int i;
59   int n_entries;
60
61   n_entries = 0;
62   u = (char **) xmalloc (n * sizeof (u[0]));
63   for (i = 0; i < n; i++)
64     {
65       if (this->ut_name[0]
66 #ifdef USER_PROCESS
67           && this->ut_type == USER_PROCESS
68 #endif
69          )
70         {
71           char *trimmed_name;
72
73           trimmed_name = extract_trimmed_name (this);
74
75           u[n_entries] = trimmed_name;
76           ++n_entries;
77         }
78       this++;
79     }
80
81   qsort (u, n_entries, sizeof (u[0]), userid_compare);
82
83   for (i = 0; i < n_entries; i++)
84     {
85       int c;
86       fputs (u[i], stdout);
87       c = (i < n_entries-1 ? ' ' : '\n');
88       putchar (c);
89     }
90
91   for (i = 0; i < n_entries; i++)
92     free (u[i]);
93   free (u);
94 }
95
96 /* Display a list of users on the system, according to utmp file FILENAME. */
97
98 static void
99 users (const char *filename)
100 {
101   int n_users = read_utmp (filename);
102   list_entries_users (n_users);
103 }
104
105 static void
106 usage (int status)
107 {
108   if (status != 0)
109     fprintf (stderr, _("Try `%s --help' for more information.\n"),
110              program_name);
111   else
112     {
113       printf (_("Usage: %s [OPTION]... [ FILE ]\n"), program_name);
114       printf (_("\
115 Output who is currently logged in according to FILE.\n\
116 If FILE is not specified, use %s.  %s as FILE is common.\n\
117 \n\
118       --help        display this help and exit\n\
119       --version     output version information and exit\n"),
120               UTMP_FILE, WTMP_FILE);
121       puts (_("\nReport bugs to <sh-utils-bugs@gnu.ai.mit.edu>."));
122     }
123   exit (status);
124 }
125
126 int
127 main (int argc, char **argv)
128 {
129   int optc, longind;
130   program_name = argv[0];
131   setlocale (LC_ALL, "");
132   bindtextdomain (PACKAGE, LOCALEDIR);
133   textdomain (PACKAGE);
134
135   while ((optc = getopt_long (argc, argv, "", longopts, &longind)) != -1)
136     {
137       switch (optc)
138         {
139         case 0:
140           break;
141
142         default:
143           usage (1);
144         }
145     }
146
147   if (show_version)
148     {
149       printf ("users (%s) %s\n", GNU_PACKAGE, VERSION);
150       exit (0);
151     }
152
153   if (show_help)
154     usage (0);
155
156   switch (argc - optind)
157     {
158     case 0:                     /* users */
159       users (UTMP_FILE);
160       break;
161
162     case 1:                     /* users <utmp file> */
163       users (argv[optind]);
164       break;
165
166     default:                    /* lose */
167       error (0, 0, _("too many arguments"));
168       usage (1);
169     }
170
171   exit (0);
172 }