Use a consistent style for including <config.h>.
[gnulib.git] / lib / readutmp.c
1 /* GNU's read utmp module.
2    Copyright (C) 1992-2001, 2003, 2004, 2005 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
17
18 /* Written by jla; revised by djm */
19
20 #ifdef HAVE_CONFIG_H
21 # include <config.h>
22 #endif
23
24 #include "readutmp.h"
25
26 #include <errno.h>
27 #include <stdio.h>
28
29 #include <sys/types.h>
30 #include <sys/stat.h>
31 #include <signal.h>
32 #include <stdbool.h>
33 #include <string.h>
34 #include <stdlib.h>
35
36 #include "xalloc.h"
37
38 #if USE_UNLOCKED_IO
39 # include "unlocked-io.h"
40 #endif
41
42 #ifndef SIZE_MAX
43 # define SIZE_MAX ((size_t) -1)
44 #endif
45
46 /* Copy UT->ut_name into storage obtained from malloc.  Then remove any
47    trailing spaces from the copy, NUL terminate it, and return the copy.  */
48
49 char *
50 extract_trimmed_name (const STRUCT_UTMP *ut)
51 {
52   char *p, *trimmed_name;
53
54   trimmed_name = xmalloc (sizeof (UT_USER (ut)) + 1);
55   strncpy (trimmed_name, UT_USER (ut), sizeof (UT_USER (ut)));
56   /* Append a trailing NUL.  Some systems pad names shorter than the
57      maximum with spaces, others pad with NULs.  Remove any trailing
58      spaces.  */
59   trimmed_name[sizeof (UT_USER (ut))] = '\0';
60   for (p = trimmed_name + strlen (trimmed_name);
61        trimmed_name < p && p[-1] == ' ';
62        *--p = '\0')
63     continue;
64   return trimmed_name;
65 }
66
67 /* Is the utmp entry U desired by the user who asked for OPTIONS?  */
68
69 static inline bool
70 desirable_utmp_entry (STRUCT_UTMP const *u, int options)
71 {
72   return ! (options & READ_UTMP_CHECK_PIDS
73             && IS_USER_PROCESS (u)
74             && (UT_PID (u) <= 0
75                 || (kill (UT_PID (u), 0) < 0 && errno == ESRCH)));
76 }
77
78 /* Read the utmp entries corresponding to file FILE into freshly-
79    malloc'd storage, set *UTMP_BUF to that pointer, set *N_ENTRIES to
80    the number of entries, and return zero.  If there is any error,
81    return -1, setting errno, and don't modify the parameters.
82    If OPTIONS & READ_UTMP_CHECK_PIDS is nonzero, omit entries whose
83    process-IDs do not currently exist.  */
84
85 #ifdef UTMP_NAME_FUNCTION
86
87 int
88 read_utmp (char const *file, size_t *n_entries, STRUCT_UTMP **utmp_buf,
89            int options)
90 {
91   size_t n_read = 0;
92   size_t n_alloc = 0;
93   STRUCT_UTMP *utmp = NULL;
94   STRUCT_UTMP *u;
95
96   /* Ignore the return value for now.
97      Solaris' utmpname returns 1 upon success -- which is contrary
98      to what the GNU libc version does.  In addition, older GNU libc
99      versions are actually void.   */
100   UTMP_NAME_FUNCTION (file);
101
102   SET_UTMP_ENT ();
103
104   while ((u = GET_UTMP_ENT ()) != NULL)
105     if (desirable_utmp_entry (u, options))
106       {
107         if (n_read == n_alloc)
108           utmp = x2nrealloc (utmp, &n_alloc, sizeof *utmp);
109
110         utmp[n_read++] = *u;
111       }
112
113   END_UTMP_ENT ();
114
115   *n_entries = n_read;
116   *utmp_buf = utmp;
117
118   return 0;
119 }
120
121 #else
122
123 int
124 read_utmp (char const *file, size_t *n_entries, STRUCT_UTMP **utmp_buf,
125            int options)
126 {
127   size_t n_read = 0;
128   size_t n_alloc = 0;
129   STRUCT_UTMP *utmp = NULL;
130   int saved_errno;
131   FILE *f = fopen (file, "r");
132
133   if (! f)
134     return -1;
135
136   for (;;)
137     {
138       if (n_read == n_alloc)
139         utmp = x2nrealloc (utmp, &n_alloc, sizeof *utmp);
140       if (fread (&utmp[n_read], sizeof utmp[n_read], 1, f) == 0)
141         break;
142       n_read += desirable_utmp_entry (&utmp[n_read], options);
143     }
144
145   saved_errno = ferror (f) ? errno : 0;
146   if (fclose (f) != 0)
147     saved_errno = errno;
148   if (saved_errno != 0)
149     {
150       free (utmp);
151       errno = saved_errno;
152       return -1;
153     }
154
155   *n_entries = n_read;
156   *utmp_buf = utmp;
157
158   return 0;
159 }
160
161 #endif