1 /* Copyright (C) 1996-2017 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
3 Contributed by Ulrich Drepper <drepper@cygnus.com>
4 and Paul Janzen <pcj@primenet.com>, 1996.
6 The GNU C Library is free software; you can redistribute it and/or
7 modify it under the terms of the GNU Lesser General Public
8 License as published by the Free Software Foundation; either
9 version 2.1 of the License, or (at your option) any later version.
11 The GNU C Library is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Lesser General Public License for more details.
16 You should have received a copy of the GNU Lesser General Public
17 License along with the GNU C Library; if not, see
18 <http://www.gnu.org/licenses/>. */
29 #include <not-cancel.h>
30 #include <kernel-features.h>
32 #include "utmp-private.h"
33 #include "utmp-equal.h"
36 /* Descriptor for the file and position. */
37 static int file_fd
= -1;
38 static bool file_writable
;
39 static off64_t file_offset
;
41 /* Cache for the last read entry. */
42 static struct utmp last_entry
;
45 /* Locking timeout. */
50 /* Do-nothing handler for locking timeout. */
51 static void timeout_handler (int signum
) {};
53 /* LOCK_FILE(fd, type) failure_statement
54 attempts to get a lock on the utmp file referenced by FD. If it fails,
55 the failure_statement is executed, otherwise it is skipped.
57 jumps into the UNLOCK_FILE macro and ensures cleanup of LOCK_FILE.
59 unlocks the utmp file referenced by FD and performs the cleanup of
62 #define LOCK_FILE(fd, type) \
65 struct sigaction action, old_action; \
66 unsigned int old_timeout; \
68 /* Cancel any existing alarm. */ \
69 old_timeout = alarm (0); \
71 /* Establish signal handler. */ \
72 action.sa_handler = timeout_handler; \
73 __sigemptyset (&action.sa_mask); \
74 action.sa_flags = 0; \
75 __sigaction (SIGALRM, &action, &old_action); \
79 /* Try to get the lock. */ \
80 memset (&fl, '\0', sizeof (struct flock)); \
82 fl.l_whence = SEEK_SET; \
83 if (fcntl_not_cancel ((fd), F_SETLKW, &fl) < 0)
85 #define LOCKING_FAILED() \
88 #define UNLOCK_FILE(fd) \
89 /* Unlock the file. */ \
90 fl.l_type = F_UNLCK; \
91 fcntl_not_cancel ((fd), F_SETLKW, &fl); \
94 /* Reset the signal handler and alarm. We must reset the alarm \
95 before resetting the handler so our alarm does not generate a \
96 spurious SIGALRM seen by the user. However, we cannot just set \
97 the user's old alarm before restoring the handler, because then \
98 it's possible our handler could catch the user alarm's SIGARLM \
99 and then the user would never see the signal he expected. */ \
101 __sigaction (SIGALRM, &old_action, NULL); \
102 if (old_timeout != 0) \
103 alarm (old_timeout); \
107 /* Functions defined here. */
108 static int setutent_file (void);
109 static int getutent_r_file (struct utmp
*buffer
, struct utmp
**result
);
110 static int getutid_r_file (const struct utmp
*key
, struct utmp
*buffer
,
111 struct utmp
**result
);
112 static int getutline_r_file (const struct utmp
*key
, struct utmp
*buffer
,
113 struct utmp
**result
);
114 static struct utmp
*pututline_file (const struct utmp
*data
);
115 static void endutent_file (void);
116 static int updwtmp_file (const char *file
, const struct utmp
*utmp
);
118 /* Jump table for file functions. */
119 const struct utfuncs __libc_utmp_file_functions
=
131 #ifndef TRANSFORM_UTMP_FILE_NAME
132 # define TRANSFORM_UTMP_FILE_NAME(file_name) (file_name)
140 const char *file_name
;
142 file_name
= TRANSFORM_UTMP_FILE_NAME (__libc_utmp_file_name
);
144 file_writable
= false;
145 file_fd
= open_not_cancel_2
146 (file_name
, O_RDONLY
| O_LARGEFILE
| O_CLOEXEC
);
151 __lseek64 (file_fd
, 0, SEEK_SET
);
154 /* Make sure the entry won't match. */
155 #if _HAVE_UT_TYPE - 0
156 last_entry
.ut_type
= -1;
158 last_entry
.ut_line
[0] = '\177';
160 last_entry
.ut_id
[0] = '\0';
169 getutent_r_file (struct utmp
*buffer
, struct utmp
**result
)
173 assert (file_fd
>= 0);
175 if (file_offset
== -1l)
182 LOCK_FILE (file_fd
, F_RDLCK
)
188 /* Read the next entry. */
189 nbytes
= read_not_cancel (file_fd
, &last_entry
, sizeof (struct utmp
));
191 UNLOCK_FILE (file_fd
);
193 if (nbytes
!= sizeof (struct utmp
))
201 /* Update position pointer. */
202 file_offset
+= sizeof (struct utmp
);
204 memcpy (buffer
, &last_entry
, sizeof (struct utmp
));
212 internal_getut_r (const struct utmp
*id
, struct utmp
*buffer
,
217 LOCK_FILE (file_fd
, F_RDLCK
)
223 #if _HAVE_UT_TYPE - 0
224 if (id
->ut_type
== RUN_LVL
|| id
->ut_type
== BOOT_TIME
225 || id
->ut_type
== OLD_TIME
|| id
->ut_type
== NEW_TIME
)
227 /* Search for next entry with type RUN_LVL, BOOT_TIME,
228 OLD_TIME, or NEW_TIME. */
232 /* Read the next entry. */
233 if (read_not_cancel (file_fd
, buffer
, sizeof (struct utmp
))
234 != sizeof (struct utmp
))
240 file_offset
+= sizeof (struct utmp
);
242 if (id
->ut_type
== buffer
->ut_type
)
247 #endif /* _HAVE_UT_TYPE */
249 /* Search for the next entry with the specified ID and with type
250 INIT_PROCESS, LOGIN_PROCESS, USER_PROCESS, or DEAD_PROCESS. */
254 /* Read the next entry. */
255 if (read_not_cancel (file_fd
, buffer
, sizeof (struct utmp
))
256 != sizeof (struct utmp
))
262 file_offset
+= sizeof (struct utmp
);
264 if (__utmp_equal (buffer
, id
))
272 UNLOCK_FILE (file_fd
);
278 /* For implementing this function we don't use the getutent_r function
279 because we can avoid the reposition on every new entry this way. */
281 getutid_r_file (const struct utmp
*id
, struct utmp
*buffer
,
282 struct utmp
**result
)
284 assert (file_fd
>= 0);
286 if (file_offset
== -1l)
292 /* We don't have to distinguish whether we can lock the file or
293 whether there is no entry. */
294 bool lock_failed
= false;
295 if (internal_getut_r (id
, &last_entry
, &lock_failed
) < 0)
301 memcpy (buffer
, &last_entry
, sizeof (struct utmp
));
308 /* For implementing this function we don't use the getutent_r function
309 because we can avoid the reposition on every new entry this way. */
311 getutline_r_file (const struct utmp
*line
, struct utmp
*buffer
,
312 struct utmp
**result
)
314 assert (file_fd
>= 0);
316 if (file_offset
== -1l)
322 LOCK_FILE (file_fd
, F_RDLCK
)
330 /* Read the next entry. */
331 if (read_not_cancel (file_fd
, &last_entry
, sizeof (struct utmp
))
332 != sizeof (struct utmp
))
339 file_offset
+= sizeof (struct utmp
);
341 /* Stop if we found a user or login entry. */
343 #if _HAVE_UT_TYPE - 0
344 (last_entry
.ut_type
== USER_PROCESS
345 || last_entry
.ut_type
== LOGIN_PROCESS
)
348 !strncmp (line
->ut_line
, last_entry
.ut_line
, sizeof line
->ut_line
))
352 memcpy (buffer
, &last_entry
, sizeof (struct utmp
));
356 UNLOCK_FILE (file_fd
);
358 return ((*result
== NULL
) ? -1 : 0);
363 pututline_file (const struct utmp
*data
)
369 assert (file_fd
>= 0);
373 /* We must make the file descriptor writable before going on. */
374 const char *file_name
= TRANSFORM_UTMP_FILE_NAME (__libc_utmp_file_name
);
376 int new_fd
= open_not_cancel_2
377 (file_name
, O_RDWR
| O_LARGEFILE
| O_CLOEXEC
);
381 if (__lseek64 (new_fd
, __lseek64 (file_fd
, 0, SEEK_CUR
), SEEK_SET
) == -1
382 || __dup2 (new_fd
, file_fd
) < 0)
384 close_not_cancel_no_status (new_fd
);
387 close_not_cancel_no_status (new_fd
);
388 file_writable
= true;
391 /* Find the correct place to insert the data. */
394 #if _HAVE_UT_TYPE - 0
395 (last_entry
.ut_type
== data
->ut_type
396 && (last_entry
.ut_type
== RUN_LVL
397 || last_entry
.ut_type
== BOOT_TIME
398 || last_entry
.ut_type
== OLD_TIME
399 || last_entry
.ut_type
== NEW_TIME
))
402 __utmp_equal (&last_entry
, data
)))
406 bool lock_failed
= false;
407 found
= internal_getut_r (data
, &buffer
, &lock_failed
);
409 if (__builtin_expect (lock_failed
, false))
411 __set_errno (EAGAIN
);
416 LOCK_FILE (file_fd
, F_WRLCK
)
424 /* We append the next entry. */
425 file_offset
= __lseek64 (file_fd
, 0, SEEK_END
);
426 if (file_offset
% sizeof (struct utmp
) != 0)
428 file_offset
-= file_offset
% sizeof (struct utmp
);
429 __ftruncate64 (file_fd
, file_offset
);
431 if (__lseek64 (file_fd
, 0, SEEK_END
) < 0)
440 /* We replace the just read entry. */
441 file_offset
-= sizeof (struct utmp
);
442 __lseek64 (file_fd
, file_offset
, SEEK_SET
);
445 /* Write the new data. */
446 if (write_not_cancel (file_fd
, data
, sizeof (struct utmp
))
447 != sizeof (struct utmp
))
449 /* If we appended a new record this is only partially written.
452 (void) __ftruncate64 (file_fd
, file_offset
);
457 file_offset
+= sizeof (struct utmp
);
458 pbuf
= (struct utmp
*) data
;
462 UNLOCK_FILE (file_fd
);
471 assert (file_fd
>= 0);
473 close_not_cancel_no_status (file_fd
);
479 updwtmp_file (const char *file
, const struct utmp
*utmp
)
485 /* Open WTMP file. */
486 fd
= open_not_cancel_2 (file
, O_WRONLY
| O_LARGEFILE
);
490 LOCK_FILE (fd
, F_WRLCK
)
493 /* Remember original size of log file. */
494 offset
= __lseek64 (fd
, 0, SEEK_END
);
495 if (offset
% sizeof (struct utmp
) != 0)
497 offset
-= offset
% sizeof (struct utmp
);
498 __ftruncate64 (fd
, offset
);
500 if (__lseek64 (fd
, 0, SEEK_END
) < 0)
504 /* Write the entry. If we can't write all the bytes, reset the file
505 size back to the original size. That way, no partial entries
507 if (write_not_cancel (fd
, utmp
, sizeof (struct utmp
))
508 != sizeof (struct utmp
))
510 __ftruncate64 (fd
, offset
);
519 /* Close WTMP file. */
520 close_not_cancel_no_status (fd
);