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