Update ChangeLog.old/ChangeLog.23.
[glibc.git] / login / logout.c
blobbf78e0915ecef1518325f751cbcc9ae73105a66c
1 /* Copyright (C) 1996-2021 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
3 Contributed by Ulrich Drepper <drepper@cygnus.com>, 1996.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, see
17 <https://www.gnu.org/licenses/>. */
19 #include <errno.h>
20 #include <string.h>
21 #include <utmp.h>
22 #include <time.h>
23 #include <sys/time.h>
24 #include <shlib-compat.h>
26 int
27 __logout (const char *line)
29 struct utmp tmp, utbuf;
30 struct utmp *ut;
31 int result = 0;
33 /* Tell that we want to use the UTMP file. */
34 if (__utmpname (_PATH_UTMP) == -1)
35 return 0;
37 /* Open UTMP file. */
38 __setutent ();
40 /* Fill in search information. */
41 tmp.ut_type = USER_PROCESS;
42 strncpy (tmp.ut_line, line, sizeof tmp.ut_line);
44 /* Read the record. */
45 if (__getutline_r (&tmp, &utbuf, &ut) >= 0)
47 /* Clear information about who & from where. */
48 memset (ut->ut_name, '\0', sizeof ut->ut_name);
49 memset (ut->ut_host, '\0', sizeof ut->ut_host);
51 struct __timespec64 ts;
52 __clock_gettime64 (CLOCK_REALTIME, &ts);
53 TIMESPEC_TO_TIMEVAL (&ut->ut_tv, &ts);
54 ut->ut_type = DEAD_PROCESS;
56 if (__pututline (ut) != NULL)
57 result = 1;
60 /* Close UTMP file. */
61 __endutent ();
63 return result;
65 versioned_symbol (libc, __logout, logout, GLIBC_2_34);
66 libc_hidden_ver (__logout, logout)
68 #if OTHER_SHLIB_COMPAT (libutil, GLIBC_2_0, GLIBC_2_34)
69 compat_symbol (libutil, __logout, logout, GLIBC_2_0);
70 #endif