blob: 3ec378b9a91f523369482922a20bb14a1c8501d5 [file] [log] [blame]
andre2ff7b5d2000-06-03 14:57:40 +00001/*
2 * Copyright (c) 2000 Andre Lucas. All rights reserved.
andre61e67252000-06-04 17:07:49 +00003 * Portions copyright (c) 1998 Todd C. Miller
4 * Portions copyright (c) 1996 Jason Downs
5 * Portions copyright (c) 1996 Theo de Raadt
andre2ff7b5d2000-06-03 14:57:40 +00006 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
andre2ff7b5d2000-06-03 14:57:40 +000015 *
16 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
17 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
18 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
19 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
20 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
21 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
22 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
23 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
25 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26 */
27
Kevin Stevesef4eea92001-02-05 12:42:17 +000028/**
andre2ff7b5d2000-06-03 14:57:40 +000029 ** loginrec.c: platform-independent login recording and lastlog retrieval
30 **/
31
andre61e67252000-06-04 17:07:49 +000032/*
33 The new login code explained
34 ============================
35
36 This code attempts to provide a common interface to login recording
37 (utmp and friends) and last login time retrieval.
38
39 Its primary means of achieving this is to use 'struct logininfo', a
40 union of all the useful fields in the various different types of
41 system login record structures one finds on UNIX variants.
42
43 We depend on autoconf to define which recording methods are to be
44 used, and which fields are contained in the relevant data structures
45 on the local system. Many C preprocessor symbols affect which code
46 gets compiled here.
47
48 The code is designed to make it easy to modify a particular
49 recording method, without affecting other methods nor requiring so
50 many nested conditional compilation blocks as were commonplace in
51 the old code.
52
53 For login recording, we try to use the local system's libraries as
54 these are clearly most likely to work correctly. For utmp systems
55 this usually means login() and logout() or setutent() etc., probably
56 in libutil, along with logwtmp() etc. On these systems, we fall back
57 to writing the files directly if we have to, though this method
58 requires very thorough testing so we do not corrupt local auditing
59 information. These files and their access methods are very system
60 specific indeed.
Kevin Stevesef4eea92001-02-05 12:42:17 +000061
andre61e67252000-06-04 17:07:49 +000062 For utmpx systems, the corresponding library functions are
63 setutxent() etc. To the author's knowledge, all utmpx systems have
64 these library functions and so no direct write is attempted. If such
65 a system exists and needs support, direct analogues of the [uw]tmp
66 code should suffice.
67
68 Retrieving the time of last login ('lastlog') is in some ways even
69 more problemmatic than login recording. Some systems provide a
70 simple table of all users which we seek based on uid and retrieve a
71 relatively standard structure. Others record the same information in
72 a directory with a separate file, and others don't record the
73 information separately at all. For systems in the latter category,
74 we look backwards in the wtmp or wtmpx file for the last login entry
75 for our user. Naturally this is slower and on busy systems could
76 incur a significant performance penalty.
77
78 Calling the new code
79 --------------------
Kevin Stevesef4eea92001-02-05 12:42:17 +000080
andre61e67252000-06-04 17:07:49 +000081 In OpenSSH all login recording and retrieval is performed in
82 login.c. Here you'll find working examples. Also, in the logintest.c
83 program there are more examples.
84
85 Internal handler calling method
86 -------------------------------
Kevin Stevesef4eea92001-02-05 12:42:17 +000087
andre61e67252000-06-04 17:07:49 +000088 When a call is made to login_login() or login_logout(), both
89 routines set a struct logininfo flag defining which action (log in,
90 or log out) is to be taken. They both then call login_write(), which
91 calls whichever of the many structure-specific handlers autoconf
92 selects for the local system.
93
94 The handlers themselves handle system data structure specifics. Both
95 struct utmp and struct utmpx have utility functions (see
96 construct_utmp*()) to try to make it simpler to add extra systems
97 that introduce new features to either structure.
98
99 While it may seem terribly wasteful to replicate so much similar
100 code for each method, experience has shown that maintaining code to
101 write both struct utmp and utmpx in one function, whilst maintaining
102 support for all systems whether they have library support or not, is
103 a difficult and time-consuming task.
104
105 Lastlog support proceeds similarly. Functions login_get_lastlog()
106 (and its OpenSSH-tuned friend login_get_lastlog_time()) call
107 getlast_entry(), which tries one of three methods to find the last
108 login time. It uses local system lastlog support if it can,
109 otherwise it tries wtmp or wtmpx before giving up and returning 0,
110 meaning "tilt".
111
112 Maintenance
113 -----------
114
115 In many cases it's possible to tweak autoconf to select the correct
116 methods for a particular platform, either by improving the detection
117 code (best), or by presetting DISABLE_<method> or CONF_<method>_FILE
118 symbols for the platform.
119
120 Use logintest to check which symbols are defined before modifying
Tim Riceb89e6942001-10-29 18:50:39 -0800121 configure.ac and loginrec.c. (You have to build logintest yourself
andre61e67252000-06-04 17:07:49 +0000122 with 'make logintest' as it's not built by default.)
123
124 Otherwise, patches to the specific method(s) are very helpful!
Kevin Stevesef4eea92001-02-05 12:42:17 +0000125
andre61e67252000-06-04 17:07:49 +0000126*/
127
andre2ff7b5d2000-06-03 14:57:40 +0000128/**
129 ** TODO:
Damien Millere5192fa2000-08-29 14:30:37 +1100130 ** homegrown ttyslot()
andre61e67252000-06-04 17:07:49 +0000131 ** test, test, test
andre2ff7b5d2000-06-03 14:57:40 +0000132 **
133 ** Platform status:
134 ** ----------------
135 **
136 ** Known good:
Damien Millere5192fa2000-08-29 14:30:37 +1100137 ** Linux (Redhat 6.2, Debian)
138 ** Solaris
andre2ff7b5d2000-06-03 14:57:40 +0000139 ** HP-UX 10.20 (gcc only)
andre6bb92372000-06-19 08:20:03 +0000140 ** IRIX
Ben Lindstromdcca9812000-11-10 03:28:31 +0000141 ** NeXT - M68k/HPPA/Sparc (4.2/3.3)
andre2ff7b5d2000-06-03 14:57:40 +0000142 **
143 ** Testing required: Please send reports!
andre2ff7b5d2000-06-03 14:57:40 +0000144 ** NetBSD
145 ** HP-UX 11
andre60f3c982000-06-03 16:18:19 +0000146 ** AIX
andre2ff7b5d2000-06-03 14:57:40 +0000147 **
148 ** Platforms with known problems:
Damien Millere5192fa2000-08-29 14:30:37 +1100149 ** Some variants of Slackware Linux
andre2ff7b5d2000-06-03 14:57:40 +0000150 **
151 **/
152
153#include "includes.h"
154
andre2ff7b5d2000-06-03 14:57:40 +0000155#include "ssh.h"
156#include "xmalloc.h"
157#include "loginrec.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000158#include "log.h"
159#include "atomicio.h"
andre2ff7b5d2000-06-03 14:57:40 +0000160
Damien Millerb0419f22004-08-23 21:53:28 +1000161RCSID("$Id: loginrec.c,v 1.59 2004/08/23 11:53:28 djm Exp $");
Ben Lindstromdcca9812000-11-10 03:28:31 +0000162
163#ifdef HAVE_UTIL_H
164# include <util.h>
165#endif
andre2ff7b5d2000-06-03 14:57:40 +0000166
Ben Lindstrome2fb8d32000-12-28 00:07:07 +0000167#ifdef HAVE_LIBUTIL_H
168# include <libutil.h>
169#endif
170
andre2ff7b5d2000-06-03 14:57:40 +0000171/**
172 ** prototypes for helper functions in this file
173 **/
174
175#if HAVE_UTMP_H
andre2ff7b5d2000-06-03 14:57:40 +0000176void set_utmp_time(struct logininfo *li, struct utmp *ut);
177void construct_utmp(struct logininfo *li, struct utmp *ut);
178#endif
179
180#ifdef HAVE_UTMPX_H
andre2ff7b5d2000-06-03 14:57:40 +0000181void set_utmpx_time(struct logininfo *li, struct utmpx *ut);
182void construct_utmpx(struct logininfo *li, struct utmpx *ut);
183#endif
184
185int utmp_write_entry(struct logininfo *li);
186int utmpx_write_entry(struct logininfo *li);
187int wtmp_write_entry(struct logininfo *li);
188int wtmpx_write_entry(struct logininfo *li);
189int lastlog_write_entry(struct logininfo *li);
190int syslogin_write_entry(struct logininfo *li);
191
192int getlast_entry(struct logininfo *li);
193int lastlog_get_entry(struct logininfo *li);
194int wtmp_get_entry(struct logininfo *li);
195int wtmpx_get_entry(struct logininfo *li);
196
andre6bb92372000-06-19 08:20:03 +0000197/* pick the shortest string */
198#define MIN_SIZEOF(s1,s2) ( sizeof(s1) < sizeof(s2) ? sizeof(s1) : sizeof(s2) )
199
andre2ff7b5d2000-06-03 14:57:40 +0000200/**
201 ** platform-independent login functions
202 **/
203
andre6bb92372000-06-19 08:20:03 +0000204/* login_login(struct logininfo *) -Record a login
Kevin Stevesef4eea92001-02-05 12:42:17 +0000205 *
andre6bb92372000-06-19 08:20:03 +0000206 * Call with a pointer to a struct logininfo initialised with
207 * login_init_entry() or login_alloc_entry()
208 *
209 * Returns:
210 * >0 if successful
211 * 0 on failure (will use OpenSSH's logging facilities for diagnostics)
212 */
andre61e67252000-06-04 17:07:49 +0000213int
214login_login (struct logininfo *li)
215{
216 li->type = LTYPE_LOGIN;
217 return login_write(li);
218}
219
220
andre6bb92372000-06-19 08:20:03 +0000221/* login_logout(struct logininfo *) - Record a logout
222 *
223 * Call as with login_login()
224 *
225 * Returns:
226 * >0 if successful
227 * 0 on failure (will use OpenSSH's logging facilities for diagnostics)
228 */
andre61e67252000-06-04 17:07:49 +0000229int
230login_logout(struct logininfo *li)
231{
232 li->type = LTYPE_LOGOUT;
233 return login_write(li);
234}
235
andre6bb92372000-06-19 08:20:03 +0000236/* login_get_lastlog_time(int) - Retrieve the last login time
237 *
238 * Retrieve the last login time for the given uid. Will try to use the
239 * system lastlog facilities if they are available, but will fall back
240 * to looking in wtmp/wtmpx if necessary
241 *
242 * Returns:
243 * 0 on failure, or if user has never logged in
244 * Time in seconds from the epoch if successful
245 *
246 * Useful preprocessor symbols:
247 * DISABLE_LASTLOG: If set, *never* even try to retrieve lastlog
248 * info
249 * USE_LASTLOG: If set, indicates the presence of system lastlog
250 * facilities. If this and DISABLE_LASTLOG are not set,
251 * try to retrieve lastlog information from wtmp/wtmpx.
252 */
andre61e67252000-06-04 17:07:49 +0000253unsigned int
254login_get_lastlog_time(const int uid)
255{
256 struct logininfo li;
257
andre6bb92372000-06-19 08:20:03 +0000258 if (login_get_lastlog(&li, uid))
259 return li.tv_sec;
260 else
261 return 0;
andre61e67252000-06-04 17:07:49 +0000262}
263
andre6bb92372000-06-19 08:20:03 +0000264/* login_get_lastlog(struct logininfo *, int) - Retrieve a lastlog entry
265 *
266 * Retrieve a logininfo structure populated (only partially) with
267 * information from the system lastlog data, or from wtmp/wtmpx if no
268 * system lastlog information exists.
269 *
270 * Note this routine must be given a pre-allocated logininfo.
271 *
272 * Returns:
273 * >0: A pointer to your struct logininfo if successful
274 * 0 on failure (will use OpenSSH's logging facilities for diagnostics)
275 *
276 */
andre61e67252000-06-04 17:07:49 +0000277struct logininfo *
278login_get_lastlog(struct logininfo *li, const int uid)
279{
andre6bb92372000-06-19 08:20:03 +0000280 struct passwd *pw;
andre6bb92372000-06-19 08:20:03 +0000281
Damien Miller348c9b72000-08-15 10:01:22 +1000282 memset(li, '\0', sizeof(*li));
andre61e67252000-06-04 17:07:49 +0000283 li->uid = uid;
andre6bb92372000-06-19 08:20:03 +0000284
Kevin Stevesef4eea92001-02-05 12:42:17 +0000285 /*
Damien Miller53c5d462000-06-28 00:50:50 +1000286 * If we don't have a 'real' lastlog, we need the username to
andre6bb92372000-06-19 08:20:03 +0000287 * reliably search wtmp(x) for the last login (see
Kevin Stevesef4eea92001-02-05 12:42:17 +0000288 * wtmp_get_entry().)
Damien Miller53c5d462000-06-28 00:50:50 +1000289 */
andre6bb92372000-06-19 08:20:03 +0000290 pw = getpwuid(uid);
Damien Millerdd47aa22000-06-27 11:18:27 +1000291 if (pw == NULL)
292 fatal("login_get_lastlog: Cannot find account for uid %i", uid);
Kevin Stevesef4eea92001-02-05 12:42:17 +0000293
andre98cabe02000-06-19 09:11:30 +0000294 /* No MIN_SIZEOF here - we absolutely *must not* truncate the
Kevin Stevesef4eea92001-02-05 12:42:17 +0000295 * username */
Damien Millerf8af08d2000-06-27 09:40:06 +1000296 strlcpy(li->username, pw->pw_name, sizeof(li->username));
Damien Millerdd47aa22000-06-27 11:18:27 +1000297
andre61e67252000-06-04 17:07:49 +0000298 if (getlast_entry(li))
299 return li;
300 else
Damien Millerdd47aa22000-06-27 11:18:27 +1000301 return NULL;
andre61e67252000-06-04 17:07:49 +0000302}
303
304
andre6bb92372000-06-19 08:20:03 +0000305/* login_alloc_entry(int, char*, char*, char*) - Allocate and initialise
Kevin Stevesef4eea92001-02-05 12:42:17 +0000306 * a logininfo structure
307 *
andre6bb92372000-06-19 08:20:03 +0000308 * This function creates a new struct logininfo, a data structure
309 * meant to carry the information required to portably record login info.
310 *
311 * Returns a pointer to a newly created struct logininfo. If memory
312 * allocation fails, the program halts.
313 */
andre61e67252000-06-04 17:07:49 +0000314struct
315logininfo *login_alloc_entry(int pid, const char *username,
316 const char *hostname, const char *line)
317{
andre2ff7b5d2000-06-03 14:57:40 +0000318 struct logininfo *newli;
319
Damien Miller348c9b72000-08-15 10:01:22 +1000320 newli = (struct logininfo *) xmalloc (sizeof(*newli));
andre61e67252000-06-04 17:07:49 +0000321 (void)login_init_entry(newli, pid, username, hostname, line);
322 return newli;
323}
andre2ff7b5d2000-06-03 14:57:40 +0000324
325
andre6bb92372000-06-19 08:20:03 +0000326/* login_free_entry(struct logininfo *) - free struct memory */
andre61e67252000-06-04 17:07:49 +0000327void
328login_free_entry(struct logininfo *li)
329{
330 xfree(li);
331}
332
andre2ff7b5d2000-06-03 14:57:40 +0000333
andre6bb92372000-06-19 08:20:03 +0000334/* login_init_entry(struct logininfo *, int, char*, char*, char*)
335 * - initialise a struct logininfo
Kevin Stevesef4eea92001-02-05 12:42:17 +0000336 *
andre6bb92372000-06-19 08:20:03 +0000337 * Populates a new struct logininfo, a data structure meant to carry
338 * the information required to portably record login info.
339 *
340 * Returns: 1
341 */
andre61e67252000-06-04 17:07:49 +0000342int
Kevin Stevesef4eea92001-02-05 12:42:17 +0000343login_init_entry(struct logininfo *li, int pid, const char *username,
andre61e67252000-06-04 17:07:49 +0000344 const char *hostname, const char *line)
345{
Damien Millerf8af08d2000-06-27 09:40:06 +1000346 struct passwd *pw;
Kevin Stevesef4eea92001-02-05 12:42:17 +0000347
Damien Miller348c9b72000-08-15 10:01:22 +1000348 memset(li, 0, sizeof(*li));
Kevin Stevesef4eea92001-02-05 12:42:17 +0000349
andre61e67252000-06-04 17:07:49 +0000350 li->pid = pid;
Damien Millerf8af08d2000-06-27 09:40:06 +1000351
andre2ff7b5d2000-06-03 14:57:40 +0000352 /* set the line information */
andre61e67252000-06-04 17:07:49 +0000353 if (line)
andre2ff7b5d2000-06-03 14:57:40 +0000354 line_fullname(li->line, line, sizeof(li->line));
andre2ff7b5d2000-06-03 14:57:40 +0000355
Damien Millerf8af08d2000-06-27 09:40:06 +1000356 if (username) {
andre2ff7b5d2000-06-03 14:57:40 +0000357 strlcpy(li->username, username, sizeof(li->username));
Damien Millerf8af08d2000-06-27 09:40:06 +1000358 pw = getpwnam(li->username);
359 if (pw == NULL)
360 fatal("login_init_entry: Cannot find user \"%s\"", li->username);
361 li->uid = pw->pw_uid;
362 }
Damien Millerdd47aa22000-06-27 11:18:27 +1000363
andre61e67252000-06-04 17:07:49 +0000364 if (hostname)
andre2ff7b5d2000-06-03 14:57:40 +0000365 strlcpy(li->hostname, hostname, sizeof(li->hostname));
Damien Millerf8af08d2000-06-27 09:40:06 +1000366
andre61e67252000-06-04 17:07:49 +0000367 return 1;
andre2ff7b5d2000-06-03 14:57:40 +0000368}
369
andre6bb92372000-06-19 08:20:03 +0000370/* login_set_current_time(struct logininfo *) - set the current time
371 *
372 * Set the current time in a logininfo structure. This function is
373 * meant to eliminate the need to deal with system dependencies for
374 * time handling.
375 */
andre2ff7b5d2000-06-03 14:57:40 +0000376void
andre61e67252000-06-04 17:07:49 +0000377login_set_current_time(struct logininfo *li)
378{
andre2ff7b5d2000-06-03 14:57:40 +0000379 struct timeval tv;
380
381 gettimeofday(&tv, NULL);
Kevin Stevesef4eea92001-02-05 12:42:17 +0000382
Damien Millerf8af08d2000-06-27 09:40:06 +1000383 li->tv_sec = tv.tv_sec;
384 li->tv_usec = tv.tv_usec;
andre2ff7b5d2000-06-03 14:57:40 +0000385}
386
andre61e67252000-06-04 17:07:49 +0000387/* copy a sockaddr_* into our logininfo */
andre2ff7b5d2000-06-03 14:57:40 +0000388void
andre61e67252000-06-04 17:07:49 +0000389login_set_addr(struct logininfo *li, const struct sockaddr *sa,
390 const unsigned int sa_size)
391{
392 unsigned int bufsize = sa_size;
393
394 /* make sure we don't overrun our union */
395 if (sizeof(li->hostaddr) < sa_size)
396 bufsize = sizeof(li->hostaddr);
397
398 memcpy((void *)&(li->hostaddr.sa), (const void *)sa, bufsize);
andre2ff7b5d2000-06-03 14:57:40 +0000399}
400
andre2ff7b5d2000-06-03 14:57:40 +0000401
andre61e67252000-06-04 17:07:49 +0000402/**
403 ** login_write: Call low-level recording functions based on autoconf
404 ** results
405 **/
andre2ff7b5d2000-06-03 14:57:40 +0000406int
andre61e67252000-06-04 17:07:49 +0000407login_write (struct logininfo *li)
408{
Damien Millerbac2d8a2000-09-05 16:13:06 +1100409#ifndef HAVE_CYGWIN
andre2ff7b5d2000-06-03 14:57:40 +0000410 if ((int)geteuid() != 0) {
Damien Miller996acd22003-04-09 20:59:48 +1000411 logit("Attempt to write login records by non-root user (aborting)");
andre2ff7b5d2000-06-03 14:57:40 +0000412 return 1;
413 }
Damien Millerbac2d8a2000-09-05 16:13:06 +1100414#endif
Damien Millerdd47aa22000-06-27 11:18:27 +1000415
andre2ff7b5d2000-06-03 14:57:40 +0000416 /* set the timestamp */
417 login_set_current_time(li);
418#ifdef USE_LOGIN
419 syslogin_write_entry(li);
420#endif
421#ifdef USE_LASTLOG
422 if (li->type == LTYPE_LOGIN) {
423 lastlog_write_entry(li);
424 }
425#endif
426#ifdef USE_UTMP
427 utmp_write_entry(li);
428#endif
429#ifdef USE_WTMP
430 wtmp_write_entry(li);
431#endif
432#ifdef USE_UTMPX
433 utmpx_write_entry(li);
434#endif
435#ifdef USE_WTMPX
436 wtmpx_write_entry(li);
437#endif
Darren Tucker397a2f22004-08-15 00:09:11 +1000438#ifdef CUSTOM_SYS_AUTH_RECORD_LOGIN
439 if (li->type == LTYPE_LOGIN &&
440 !sys_auth_record_login(li->username,li->hostname,li->line))
441 logit("Writing login record failed for %s", li->username);
442#endif
andre2ff7b5d2000-06-03 14:57:40 +0000443 return 0;
444}
445
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000446#ifdef LOGIN_NEEDS_UTMPX
447int
448login_utmp_only(struct logininfo *li)
449{
Damien Millera8e06ce2003-11-21 23:48:55 +1100450 li->type = LTYPE_LOGIN;
Ben Lindstrom9197c592001-10-26 15:56:55 +0000451 login_set_current_time(li);
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000452# ifdef USE_UTMP
453 utmp_write_entry(li);
454# endif
455# ifdef USE_WTMP
456 wtmp_write_entry(li);
457# endif
458# ifdef USE_UTMPX
459 utmpx_write_entry(li);
460# endif
461# ifdef USE_WTMPX
462 wtmpx_write_entry(li);
463# endif
464 return 0;
465}
466#endif
467
andre2ff7b5d2000-06-03 14:57:40 +0000468/**
andre61e67252000-06-04 17:07:49 +0000469 ** getlast_entry: Call low-level functions to retrieve the last login
470 ** time.
andre2ff7b5d2000-06-03 14:57:40 +0000471 **/
472
andre61e67252000-06-04 17:07:49 +0000473/* take the uid in li and return the last login time */
474int
475getlast_entry(struct logininfo *li)
476{
477#ifdef USE_LASTLOG
Damien Miller53c5d462000-06-28 00:50:50 +1000478 return(lastlog_get_entry(li));
Damien Millerdd47aa22000-06-27 11:18:27 +1000479#else /* !USE_LASTLOG */
andre61e67252000-06-04 17:07:49 +0000480
Damien Millerdd47aa22000-06-27 11:18:27 +1000481#ifdef DISABLE_LASTLOG
Kevin Stevesef4eea92001-02-05 12:42:17 +0000482 /* On some systems we shouldn't even try to obtain last login
andreecaabf12000-06-12 22:21:44 +0000483 * time, e.g. AIX */
484 return 0;
Damien Millerdd47aa22000-06-27 11:18:27 +1000485# else /* DISABLE_LASTLOG */
andre61e67252000-06-04 17:07:49 +0000486 /* Try to retrieve the last login time from wtmp */
Damien Millerdd47aa22000-06-27 11:18:27 +1000487# if defined(USE_WTMP) && (defined(HAVE_TIME_IN_UTMP) || defined(HAVE_TV_IN_UTMP))
andre61e67252000-06-04 17:07:49 +0000488 /* retrieve last login time from utmp */
Damien Millerdd47aa22000-06-27 11:18:27 +1000489 return (wtmp_get_entry(li));
490# else /* defined(USE_WTMP) && (defined(HAVE_TIME_IN_UTMP) || defined(HAVE_TV_IN_UTMP)) */
andre61e67252000-06-04 17:07:49 +0000491 /* If wtmp isn't available, try wtmpx */
Damien Millerdd47aa22000-06-27 11:18:27 +1000492# if defined(USE_WTMPX) && (defined(HAVE_TIME_IN_UTMPX) || defined(HAVE_TV_IN_UTMPX))
andre61e67252000-06-04 17:07:49 +0000493 /* retrieve last login time from utmpx */
Damien Millerdd47aa22000-06-27 11:18:27 +1000494 return (wtmpx_get_entry(li));
495# else
andre61e67252000-06-04 17:07:49 +0000496 /* Give up: No means of retrieving last login time */
497 return 0;
Damien Millerdd47aa22000-06-27 11:18:27 +1000498# endif /* USE_WTMPX && (HAVE_TIME_IN_UTMPX || HAVE_TV_IN_UTMPX) */
499# endif /* USE_WTMP && (HAVE_TIME_IN_UTMP || HAVE_TV_IN_UTMP) */
Kevin Stevesef4eea92001-02-05 12:42:17 +0000500# endif /* DISABLE_LASTLOG */
Damien Millerdd47aa22000-06-27 11:18:27 +1000501#endif /* USE_LASTLOG */
andre61e67252000-06-04 17:07:49 +0000502}
503
504
505
andre2ff7b5d2000-06-03 14:57:40 +0000506/*
andre61e67252000-06-04 17:07:49 +0000507 * 'line' string utility functions
508 *
509 * These functions process the 'line' string into one of three forms:
510 *
andre2ff7b5d2000-06-03 14:57:40 +0000511 * 1. The full filename (including '/dev')
512 * 2. The stripped name (excluding '/dev')
andre61e67252000-06-04 17:07:49 +0000513 * 3. The abbreviated name (e.g. /dev/ttyp00 -> yp00
514 * /dev/pts/1 -> ts/1 )
andre2ff7b5d2000-06-03 14:57:40 +0000515 *
516 * Form 3 is used on some systems to identify a .tmp.? entry when
517 * attempting to remove it. Typically both addition and removal is
andre61e67252000-06-04 17:07:49 +0000518 * performed by one application - say, sshd - so as long as the choice
519 * uniquely identifies a terminal it's ok.
andre2ff7b5d2000-06-03 14:57:40 +0000520 */
521
522
andre61e67252000-06-04 17:07:49 +0000523/* line_fullname(): add the leading '/dev/' if it doesn't exist make
524 * sure dst has enough space, if not just copy src (ugh) */
andre2ff7b5d2000-06-03 14:57:40 +0000525char *
andre61e67252000-06-04 17:07:49 +0000526line_fullname(char *dst, const char *src, int dstsize)
527{
andre2ff7b5d2000-06-03 14:57:40 +0000528 memset(dst, '\0', dstsize);
Damien Millerf5a81472000-09-30 21:34:44 +1100529 if ((strncmp(src, "/dev/", 5) == 0) || (dstsize < (strlen(src) + 5))) {
andre2ff7b5d2000-06-03 14:57:40 +0000530 strlcpy(dst, src, dstsize);
Damien Millerf5a81472000-09-30 21:34:44 +1100531 } else {
Damien Miller1a132252000-06-13 21:23:17 +1000532 strlcpy(dst, "/dev/", dstsize);
andre2ff7b5d2000-06-03 14:57:40 +0000533 strlcat(dst, src, dstsize);
534 }
535 return dst;
536}
537
andre61e67252000-06-04 17:07:49 +0000538/* line_stripname(): strip the leading '/dev' if it exists, return dst */
andre2ff7b5d2000-06-03 14:57:40 +0000539char *
andre61e67252000-06-04 17:07:49 +0000540line_stripname(char *dst, const char *src, int dstsize)
541{
andre2ff7b5d2000-06-03 14:57:40 +0000542 memset(dst, '\0', dstsize);
543 if (strncmp(src, "/dev/", 5) == 0)
Damien Millerf5a81472000-09-30 21:34:44 +1100544 strlcpy(dst, src + 5, dstsize);
andre2ff7b5d2000-06-03 14:57:40 +0000545 else
546 strlcpy(dst, src, dstsize);
547 return dst;
andre61e67252000-06-04 17:07:49 +0000548}
549
andre61e67252000-06-04 17:07:49 +0000550/* line_abbrevname(): Return the abbreviated (usually four-character)
551 * form of the line (Just use the last <dstsize> characters of the
552 * full name.)
553 *
554 * NOTE: use strncpy because we do NOT necessarily want zero
555 * termination */
andre2ff7b5d2000-06-03 14:57:40 +0000556char *
Kevin Stevesef4eea92001-02-05 12:42:17 +0000557line_abbrevname(char *dst, const char *src, int dstsize)
Damien Millerdd47aa22000-06-27 11:18:27 +1000558{
559 size_t len;
Kevin Stevesef4eea92001-02-05 12:42:17 +0000560
andre2ff7b5d2000-06-03 14:57:40 +0000561 memset(dst, '\0', dstsize);
Kevin Stevesef4eea92001-02-05 12:42:17 +0000562
Damien Miller8e81ed32000-07-01 13:17:42 +1000563 /* Always skip prefix if present */
564 if (strncmp(src, "/dev/", 5) == 0)
565 src += 5;
Kevin Stevesef4eea92001-02-05 12:42:17 +0000566
Damien Millerf1b9d112002-04-23 23:09:19 +1000567#ifdef WITH_ABBREV_NO_TTY
568 if (strncmp(src, "tty", 3) == 0)
569 src += 3;
570#endif
571
Damien Millerdd47aa22000-06-27 11:18:27 +1000572 len = strlen(src);
573
Damien Miller8e81ed32000-07-01 13:17:42 +1000574 if (len > 0) {
575 if (((int)len - dstsize) > 0)
576 src += ((int)len - dstsize);
577
578 /* note: _don't_ change this to strlcpy */
Kevin Stevesef4eea92001-02-05 12:42:17 +0000579 strncpy(dst, src, (size_t)dstsize);
Damien Millerdd47aa22000-06-27 11:18:27 +1000580 }
Kevin Stevesef4eea92001-02-05 12:42:17 +0000581
andre2ff7b5d2000-06-03 14:57:40 +0000582 return dst;
583}
584
andre2ff7b5d2000-06-03 14:57:40 +0000585/**
586 ** utmp utility functions
andre61e67252000-06-04 17:07:49 +0000587 **
588 ** These functions manipulate struct utmp, taking system differences
589 ** into account.
andre2ff7b5d2000-06-03 14:57:40 +0000590 **/
591
592#if defined(USE_UTMP) || defined (USE_WTMP) || defined (USE_LOGIN)
593
andre2ff7b5d2000-06-03 14:57:40 +0000594/* build the utmp structure */
595void
andre61e67252000-06-04 17:07:49 +0000596set_utmp_time(struct logininfo *li, struct utmp *ut)
597{
Damien Millerdd47aa22000-06-27 11:18:27 +1000598# ifdef HAVE_TV_IN_UTMP
andre2ff7b5d2000-06-03 14:57:40 +0000599 ut->ut_tv.tv_sec = li->tv_sec;
600 ut->ut_tv.tv_usec = li->tv_usec;
Damien Millerdd47aa22000-06-27 11:18:27 +1000601# else
andre2ff7b5d2000-06-03 14:57:40 +0000602# ifdef HAVE_TIME_IN_UTMP
603 ut->ut_time = li->tv_sec;
604# endif
Damien Millerdd47aa22000-06-27 11:18:27 +1000605# endif
andre2ff7b5d2000-06-03 14:57:40 +0000606}
607
608void
609construct_utmp(struct logininfo *li,
andre61e67252000-06-04 17:07:49 +0000610 struct utmp *ut)
611{
Damien Miller02e16ad2003-01-03 14:42:27 +1100612# ifdef HAVE_ADDR_V6_IN_UTMP
613 struct sockaddr_in6 *sa6;
614# endif
Damien Miller348c9b72000-08-15 10:01:22 +1000615 memset(ut, '\0', sizeof(*ut));
andre6bb92372000-06-19 08:20:03 +0000616
617 /* First fill out fields used for both logins and logouts */
618
Damien Millerdd47aa22000-06-27 11:18:27 +1000619# ifdef HAVE_ID_IN_UTMP
andre2ff7b5d2000-06-03 14:57:40 +0000620 line_abbrevname(ut->ut_id, li->line, sizeof(ut->ut_id));
Damien Millerdd47aa22000-06-27 11:18:27 +1000621# endif
andre2ff7b5d2000-06-03 14:57:40 +0000622
Damien Millerdd47aa22000-06-27 11:18:27 +1000623# ifdef HAVE_TYPE_IN_UTMP
andre6bb92372000-06-19 08:20:03 +0000624 /* This is done here to keep utmp constants out of struct logininfo */
andre2ff7b5d2000-06-03 14:57:40 +0000625 switch (li->type) {
626 case LTYPE_LOGIN:
627 ut->ut_type = USER_PROCESS;
Tim Rice81ed5182002-09-25 17:38:46 -0700628#ifdef _UNICOS
Ben Lindstrom6db66ff2001-08-06 23:29:16 +0000629 cray_set_tmpdir(ut);
630#endif
andre2ff7b5d2000-06-03 14:57:40 +0000631 break;
632 case LTYPE_LOGOUT:
633 ut->ut_type = DEAD_PROCESS;
Tim Rice81ed5182002-09-25 17:38:46 -0700634#ifdef _UNICOS
Ben Lindstrom6db66ff2001-08-06 23:29:16 +0000635 cray_retain_utmp(ut, li->pid);
636#endif
andre2ff7b5d2000-06-03 14:57:40 +0000637 break;
638 }
Damien Millerdd47aa22000-06-27 11:18:27 +1000639# endif
andre6bb92372000-06-19 08:20:03 +0000640 set_utmp_time(li, ut);
andre2ff7b5d2000-06-03 14:57:40 +0000641
andre6bb92372000-06-19 08:20:03 +0000642 line_stripname(ut->ut_line, li->line, sizeof(ut->ut_line));
Damien Millerdd47aa22000-06-27 11:18:27 +1000643
644# ifdef HAVE_PID_IN_UTMP
andre2ff7b5d2000-06-03 14:57:40 +0000645 ut->ut_pid = li->pid;
Damien Millerdd47aa22000-06-27 11:18:27 +1000646# endif
andre6bb92372000-06-19 08:20:03 +0000647
648 /* If we're logging out, leave all other fields blank */
649 if (li->type == LTYPE_LOGOUT)
650 return;
651
Damien Millerdd47aa22000-06-27 11:18:27 +1000652 /*
653 * These fields are only used when logging in, and are blank
Kevin Stevesef4eea92001-02-05 12:42:17 +0000654 * for logouts.
Damien Millerdd47aa22000-06-27 11:18:27 +1000655 */
andre6bb92372000-06-19 08:20:03 +0000656
657 /* Use strncpy because we don't necessarily want null termination */
Damien Miller7a0e5dc2000-07-11 12:15:54 +1000658 strncpy(ut->ut_name, li->username, MIN_SIZEOF(ut->ut_name, li->username));
Damien Millerdd47aa22000-06-27 11:18:27 +1000659# ifdef HAVE_HOST_IN_UTMP
andre6bb92372000-06-19 08:20:03 +0000660 strncpy(ut->ut_host, li->hostname, MIN_SIZEOF(ut->ut_host, li->hostname));
Damien Millerdd47aa22000-06-27 11:18:27 +1000661# endif
662# ifdef HAVE_ADDR_IN_UTMP
andre61e67252000-06-04 17:07:49 +0000663 /* this is just a 32-bit IP address */
664 if (li->hostaddr.sa.sa_family == AF_INET)
665 ut->ut_addr = li->hostaddr.sa_in.sin_addr.s_addr;
Kevin Stevesef4eea92001-02-05 12:42:17 +0000666# endif
Damien Miller02e16ad2003-01-03 14:42:27 +1100667# ifdef HAVE_ADDR_V6_IN_UTMP
668 /* this is just a 128-bit IPv6 address */
669 if (li->hostaddr.sa.sa_family == AF_INET6) {
670 sa6 = ((struct sockaddr_in6 *)&li->hostaddr.sa);
671 memcpy(ut->ut_addr_v6, sa6->sin6_addr.s6_addr, 16);
672 if (IN6_IS_ADDR_V4MAPPED(&sa6->sin6_addr)) {
673 ut->ut_addr_v6[0] = ut->ut_addr_v6[3];
674 ut->ut_addr_v6[1] = 0;
675 ut->ut_addr_v6[2] = 0;
676 ut->ut_addr_v6[3] = 0;
677 }
678 }
679# endif
andre61e67252000-06-04 17:07:49 +0000680}
Damien Millerdd47aa22000-06-27 11:18:27 +1000681#endif /* USE_UTMP || USE_WTMP || USE_LOGIN */
andre61e67252000-06-04 17:07:49 +0000682
andre2ff7b5d2000-06-03 14:57:40 +0000683/**
684 ** utmpx utility functions
andre61e67252000-06-04 17:07:49 +0000685 **
686 ** These functions manipulate struct utmpx, accounting for system
687 ** variations.
andre2ff7b5d2000-06-03 14:57:40 +0000688 **/
689
690#if defined(USE_UTMPX) || defined (USE_WTMPX)
andre2ff7b5d2000-06-03 14:57:40 +0000691/* build the utmpx structure */
692void
andre61e67252000-06-04 17:07:49 +0000693set_utmpx_time(struct logininfo *li, struct utmpx *utx)
694{
Damien Millerdd47aa22000-06-27 11:18:27 +1000695# ifdef HAVE_TV_IN_UTMPX
andre2ff7b5d2000-06-03 14:57:40 +0000696 utx->ut_tv.tv_sec = li->tv_sec;
697 utx->ut_tv.tv_usec = li->tv_usec;
Damien Millerdd47aa22000-06-27 11:18:27 +1000698# else /* HAVE_TV_IN_UTMPX */
andre2ff7b5d2000-06-03 14:57:40 +0000699# ifdef HAVE_TIME_IN_UTMPX
700 utx->ut_time = li->tv_sec;
Damien Millerdd47aa22000-06-27 11:18:27 +1000701# endif /* HAVE_TIME_IN_UTMPX */
702# endif /* HAVE_TV_IN_UTMPX */
andre2ff7b5d2000-06-03 14:57:40 +0000703}
704
andre61e67252000-06-04 17:07:49 +0000705void
706construct_utmpx(struct logininfo *li, struct utmpx *utx)
707{
Damien Miller02e16ad2003-01-03 14:42:27 +1100708# ifdef HAVE_ADDR_V6_IN_UTMP
709 struct sockaddr_in6 *sa6;
710# endif
Damien Miller348c9b72000-08-15 10:01:22 +1000711 memset(utx, '\0', sizeof(*utx));
Damien Miller8e81ed32000-07-01 13:17:42 +1000712# ifdef HAVE_ID_IN_UTMPX
andre2ff7b5d2000-06-03 14:57:40 +0000713 line_abbrevname(utx->ut_id, li->line, sizeof(utx->ut_id));
Damien Miller8e81ed32000-07-01 13:17:42 +1000714# endif
andre2ff7b5d2000-06-03 14:57:40 +0000715
716 /* this is done here to keep utmp constants out of loginrec.h */
717 switch (li->type) {
718 case LTYPE_LOGIN:
719 utx->ut_type = USER_PROCESS;
720 break;
721 case LTYPE_LOGOUT:
722 utx->ut_type = DEAD_PROCESS;
723 break;
724 }
andre2ff7b5d2000-06-03 14:57:40 +0000725 line_stripname(utx->ut_line, li->line, sizeof(utx->ut_line));
andre2ff7b5d2000-06-03 14:57:40 +0000726 set_utmpx_time(li, utx);
andre6bb92372000-06-19 08:20:03 +0000727 utx->ut_pid = li->pid;
Tim Ricee06ae4a2002-02-24 17:56:46 -0800728 /* strncpy(): Don't necessarily want null termination */
729 strncpy(utx->ut_name, li->username, MIN_SIZEOF(utx->ut_name, li->username));
andre6bb92372000-06-19 08:20:03 +0000730
731 if (li->type == LTYPE_LOGOUT)
732 return;
733
Damien Millerdd47aa22000-06-27 11:18:27 +1000734 /*
735 * These fields are only used when logging in, and are blank
Kevin Stevesef4eea92001-02-05 12:42:17 +0000736 * for logouts.
Damien Millerdd47aa22000-06-27 11:18:27 +1000737 */
andre6bb92372000-06-19 08:20:03 +0000738
Damien Millerdd47aa22000-06-27 11:18:27 +1000739# ifdef HAVE_HOST_IN_UTMPX
andre6bb92372000-06-19 08:20:03 +0000740 strncpy(utx->ut_host, li->hostname, MIN_SIZEOF(utx->ut_host, li->hostname));
Damien Millerdd47aa22000-06-27 11:18:27 +1000741# endif
742# ifdef HAVE_ADDR_IN_UTMPX
Damien Millerd6f204d2000-09-23 13:57:27 +1100743 /* this is just a 32-bit IP address */
744 if (li->hostaddr.sa.sa_family == AF_INET)
745 utx->ut_addr = li->hostaddr.sa_in.sin_addr.s_addr;
Damien Millerdd47aa22000-06-27 11:18:27 +1000746# endif
Damien Miller02e16ad2003-01-03 14:42:27 +1100747# ifdef HAVE_ADDR_V6_IN_UTMP
748 /* this is just a 128-bit IPv6 address */
749 if (li->hostaddr.sa.sa_family == AF_INET6) {
750 sa6 = ((struct sockaddr_in6 *)&li->hostaddr.sa);
751 memcpy(ut->ut_addr_v6, sa6->sin6_addr.s6_addr, 16);
752 if (IN6_IS_ADDR_V4MAPPED(&sa6->sin6_addr)) {
753 ut->ut_addr_v6[0] = ut->ut_addr_v6[3];
754 ut->ut_addr_v6[1] = 0;
755 ut->ut_addr_v6[2] = 0;
756 ut->ut_addr_v6[3] = 0;
757 }
758 }
759# endif
Damien Millerdd47aa22000-06-27 11:18:27 +1000760# ifdef HAVE_SYSLEN_IN_UTMPX
andre6bb92372000-06-19 08:20:03 +0000761 /* ut_syslen is the length of the utx_host string */
762 utx->ut_syslen = MIN(strlen(li->hostname), sizeof(utx->ut_host));
Damien Millerdd47aa22000-06-27 11:18:27 +1000763# endif
andre61e67252000-06-04 17:07:49 +0000764}
Damien Millerdd47aa22000-06-27 11:18:27 +1000765#endif /* USE_UTMPX || USE_WTMPX */
andre2ff7b5d2000-06-03 14:57:40 +0000766
767/**
andre61e67252000-06-04 17:07:49 +0000768 ** Low-level utmp functions
andre2ff7b5d2000-06-03 14:57:40 +0000769 **/
770
771/* FIXME: (ATL) utmp_write_direct needs testing */
andre2ff7b5d2000-06-03 14:57:40 +0000772#ifdef USE_UTMP
773
andre2ff7b5d2000-06-03 14:57:40 +0000774/* if we can, use pututline() etc. */
Damien Millerdd47aa22000-06-27 11:18:27 +1000775# if !defined(DISABLE_PUTUTLINE) && defined(HAVE_SETUTENT) && \
776 defined(HAVE_PUTUTLINE)
andre2ff7b5d2000-06-03 14:57:40 +0000777# define UTMP_USE_LIBRARY
Damien Millerdd47aa22000-06-27 11:18:27 +1000778# endif
andre2ff7b5d2000-06-03 14:57:40 +0000779
780
781/* write a utmp entry with the system's help (pututline() and pals) */
Damien Millerdd47aa22000-06-27 11:18:27 +1000782# ifdef UTMP_USE_LIBRARY
andre2ff7b5d2000-06-03 14:57:40 +0000783static int
andre61e67252000-06-04 17:07:49 +0000784utmp_write_library(struct logininfo *li, struct utmp *ut)
785{
andre2ff7b5d2000-06-03 14:57:40 +0000786 setutent();
787 pututline(ut);
788
Damien Millerdd47aa22000-06-27 11:18:27 +1000789# ifdef HAVE_ENDUTENT
andre2ff7b5d2000-06-03 14:57:40 +0000790 endutent();
Damien Millerdd47aa22000-06-27 11:18:27 +1000791# endif
andre2ff7b5d2000-06-03 14:57:40 +0000792 return 1;
andre61e67252000-06-04 17:07:49 +0000793}
Damien Millerdd47aa22000-06-27 11:18:27 +1000794# else /* UTMP_USE_LIBRARY */
andre2ff7b5d2000-06-03 14:57:40 +0000795
796/* write a utmp entry direct to the file */
andre61e67252000-06-04 17:07:49 +0000797/* This is a slightly modification of code in OpenBSD's login.c */
andre2ff7b5d2000-06-03 14:57:40 +0000798static int
andre61e67252000-06-04 17:07:49 +0000799utmp_write_direct(struct logininfo *li, struct utmp *ut)
800{
andre2ff7b5d2000-06-03 14:57:40 +0000801 struct utmp old_ut;
802 register int fd;
803 int tty;
804
andre6bb92372000-06-19 08:20:03 +0000805 /* FIXME: (ATL) ttyslot() needs local implementation */
Damien Miller348c9b72000-08-15 10:01:22 +1000806
Damien Millere5192fa2000-08-29 14:30:37 +1100807#if defined(HAVE_GETTTYENT)
Damien Miller348c9b72000-08-15 10:01:22 +1000808 register struct ttyent *ty;
809
810 tty=0;
811
812 setttyent();
813 while ((struct ttyent *)0 != (ty = getttyent())) {
814 tty++;
815 if (!strncmp(ty->ty_name, ut->ut_line, sizeof(ut->ut_line)))
816 break;
817 }
818 endttyent();
819
820 if((struct ttyent *)0 == ty) {
Damien Miller81409592004-08-15 19:12:52 +1000821 logit("%s: tty not found", __func__);
822 return (0);
Damien Miller348c9b72000-08-15 10:01:22 +1000823 }
824#else /* FIXME */
825
andre2ff7b5d2000-06-03 14:57:40 +0000826 tty = ttyslot(); /* seems only to work for /dev/ttyp? style names */
827
Damien Millere5192fa2000-08-29 14:30:37 +1100828#endif /* HAVE_GETTTYENT */
Damien Miller348c9b72000-08-15 10:01:22 +1000829
andre2ff7b5d2000-06-03 14:57:40 +0000830 if (tty > 0 && (fd = open(UTMP_FILE, O_RDWR|O_CREAT, 0644)) >= 0) {
Damien Miller81409592004-08-15 19:12:52 +1000831 off_t pos, ret;
832
833 pos = (off_t)tty * sizeof(struct utmp);
834 if ((ret = lseek(fd, pos, SEEK_SET)) == -1) {
Damien Millerb0419f22004-08-23 21:53:28 +1000835 logit("%s: lseek: %s", __func__, strerror(errno));
Damien Miller81409592004-08-15 19:12:52 +1000836 return (0);
837 }
838 if (ret != pos) {
Damien Millerb0419f22004-08-23 21:53:28 +1000839 logit("%s: Couldn't seek to tty %d slot in %s",
840 __func__, tty, UTMP_FILE);
Damien Miller81409592004-08-15 19:12:52 +1000841 return (0);
842 }
andre2ff7b5d2000-06-03 14:57:40 +0000843 /*
844 * Prevent luser from zero'ing out ut_host.
845 * If the new ut_line is empty but the old one is not
Damien Miller7a0e5dc2000-07-11 12:15:54 +1000846 * and ut_line and ut_name match, preserve the old ut_line.
andre2ff7b5d2000-06-03 14:57:40 +0000847 */
Kevin Stevesef4eea92001-02-05 12:42:17 +0000848 if (atomicio(read, fd, &old_ut, sizeof(old_ut)) == sizeof(old_ut) &&
849 (ut->ut_host[0] == '\0') && (old_ut.ut_host[0] != '\0') &&
850 (strncmp(old_ut.ut_line, ut->ut_line, sizeof(ut->ut_line)) == 0) &&
Damien Miller7a0e5dc2000-07-11 12:15:54 +1000851 (strncmp(old_ut.ut_name, ut->ut_name, sizeof(ut->ut_name)) == 0)) {
andre2ff7b5d2000-06-03 14:57:40 +0000852 (void)memcpy(ut->ut_host, old_ut.ut_host, sizeof(ut->ut_host));
Damien Miller53c5d462000-06-28 00:50:50 +1000853 }
Kevin Stevesef4eea92001-02-05 12:42:17 +0000854
Damien Miller81409592004-08-15 19:12:52 +1000855 if ((ret = lseek(fd, pos, SEEK_SET)) == -1) {
Damien Millerb0419f22004-08-23 21:53:28 +1000856 logit("%s: lseek: %s", __func__, strerror(errno));
Damien Miller81409592004-08-15 19:12:52 +1000857 return (0);
858 }
859 if (ret != pos) {
Damien Millerb0419f22004-08-23 21:53:28 +1000860 logit("%s: Couldn't seek to tty %d slot in %s",
Damien Miller81409592004-08-15 19:12:52 +1000861 __func__, tty, UTMP_FILE);
862 return (0);
863 }
Darren Tucker8661b562003-07-06 15:20:46 +1000864 if (atomicio(vwrite, fd, ut, sizeof(*ut)) != sizeof(*ut))
Damien Miller81409592004-08-15 19:12:52 +1000865 logit("%s: error writing %s: %s", __func__,
andre6bb92372000-06-19 08:20:03 +0000866 UTMP_FILE, strerror(errno));
Kevin Stevesef4eea92001-02-05 12:42:17 +0000867
andre2ff7b5d2000-06-03 14:57:40 +0000868 (void)close(fd);
869 return 1;
Damien Miller53c5d462000-06-28 00:50:50 +1000870 } else {
andre2ff7b5d2000-06-03 14:57:40 +0000871 return 0;
Damien Miller53c5d462000-06-28 00:50:50 +1000872 }
andre61e67252000-06-04 17:07:49 +0000873}
Damien Millerdd47aa22000-06-27 11:18:27 +1000874# endif /* UTMP_USE_LIBRARY */
andre2ff7b5d2000-06-03 14:57:40 +0000875
876static int
andre61e67252000-06-04 17:07:49 +0000877utmp_perform_login(struct logininfo *li)
878{
andre2ff7b5d2000-06-03 14:57:40 +0000879 struct utmp ut;
880
881 construct_utmp(li, &ut);
Damien Millerdd47aa22000-06-27 11:18:27 +1000882# ifdef UTMP_USE_LIBRARY
andre2ff7b5d2000-06-03 14:57:40 +0000883 if (!utmp_write_library(li, &ut)) {
Damien Miller996acd22003-04-09 20:59:48 +1000884 logit("utmp_perform_login: utmp_write_library() failed");
andre2ff7b5d2000-06-03 14:57:40 +0000885 return 0;
886 }
Damien Millerdd47aa22000-06-27 11:18:27 +1000887# else
andre2ff7b5d2000-06-03 14:57:40 +0000888 if (!utmp_write_direct(li, &ut)) {
Damien Miller996acd22003-04-09 20:59:48 +1000889 logit("utmp_perform_login: utmp_write_direct() failed");
andre2ff7b5d2000-06-03 14:57:40 +0000890 return 0;
891 }
Damien Millerdd47aa22000-06-27 11:18:27 +1000892# endif
andre2ff7b5d2000-06-03 14:57:40 +0000893 return 1;
andre61e67252000-06-04 17:07:49 +0000894}
andre2ff7b5d2000-06-03 14:57:40 +0000895
896
897static int
andre61e67252000-06-04 17:07:49 +0000898utmp_perform_logout(struct logininfo *li)
899{
andre2ff7b5d2000-06-03 14:57:40 +0000900 struct utmp ut;
901
andre6bb92372000-06-19 08:20:03 +0000902 construct_utmp(li, &ut);
Damien Millerdd47aa22000-06-27 11:18:27 +1000903# ifdef UTMP_USE_LIBRARY
andre6bb92372000-06-19 08:20:03 +0000904 if (!utmp_write_library(li, &ut)) {
Damien Miller996acd22003-04-09 20:59:48 +1000905 logit("utmp_perform_logout: utmp_write_library() failed");
andre6bb92372000-06-19 08:20:03 +0000906 return 0;
907 }
Damien Millerdd47aa22000-06-27 11:18:27 +1000908# else
andre6bb92372000-06-19 08:20:03 +0000909 if (!utmp_write_direct(li, &ut)) {
Damien Miller996acd22003-04-09 20:59:48 +1000910 logit("utmp_perform_logout: utmp_write_direct() failed");
andre6bb92372000-06-19 08:20:03 +0000911 return 0;
912 }
Damien Millerdd47aa22000-06-27 11:18:27 +1000913# endif
andre2ff7b5d2000-06-03 14:57:40 +0000914 return 1;
andre61e67252000-06-04 17:07:49 +0000915}
andre2ff7b5d2000-06-03 14:57:40 +0000916
917
918int
andre61e67252000-06-04 17:07:49 +0000919utmp_write_entry(struct logininfo *li)
920{
andre2ff7b5d2000-06-03 14:57:40 +0000921 switch(li->type) {
922 case LTYPE_LOGIN:
923 return utmp_perform_login(li);
924
925 case LTYPE_LOGOUT:
926 return utmp_perform_logout(li);
927
928 default:
Damien Miller996acd22003-04-09 20:59:48 +1000929 logit("utmp_write_entry: invalid type field");
andre2ff7b5d2000-06-03 14:57:40 +0000930 return 0;
931 }
andre61e67252000-06-04 17:07:49 +0000932}
Damien Millerdd47aa22000-06-27 11:18:27 +1000933#endif /* USE_UTMP */
andre2ff7b5d2000-06-03 14:57:40 +0000934
935
936/**
andre61e67252000-06-04 17:07:49 +0000937 ** Low-level utmpx functions
andre2ff7b5d2000-06-03 14:57:40 +0000938 **/
939
940/* not much point if we don't want utmpx entries */
941#ifdef USE_UTMPX
942
andre2ff7b5d2000-06-03 14:57:40 +0000943/* if we have the wherewithall, use pututxline etc. */
Damien Millerdd47aa22000-06-27 11:18:27 +1000944# if !defined(DISABLE_PUTUTXLINE) && defined(HAVE_SETUTXENT) && \
945 defined(HAVE_PUTUTXLINE)
andre2ff7b5d2000-06-03 14:57:40 +0000946# define UTMPX_USE_LIBRARY
Damien Millerdd47aa22000-06-27 11:18:27 +1000947# endif
andre2ff7b5d2000-06-03 14:57:40 +0000948
949
950/* write a utmpx entry with the system's help (pututxline() and pals) */
Damien Millerdd47aa22000-06-27 11:18:27 +1000951# ifdef UTMPX_USE_LIBRARY
andre2ff7b5d2000-06-03 14:57:40 +0000952static int
andre61e67252000-06-04 17:07:49 +0000953utmpx_write_library(struct logininfo *li, struct utmpx *utx)
954{
andre2ff7b5d2000-06-03 14:57:40 +0000955 setutxent();
956 pututxline(utx);
957
Damien Millerdd47aa22000-06-27 11:18:27 +1000958# ifdef HAVE_ENDUTXENT
andre2ff7b5d2000-06-03 14:57:40 +0000959 endutxent();
Damien Millerdd47aa22000-06-27 11:18:27 +1000960# endif
andre2ff7b5d2000-06-03 14:57:40 +0000961 return 1;
andre61e67252000-06-04 17:07:49 +0000962}
andre2ff7b5d2000-06-03 14:57:40 +0000963
Damien Millerdd47aa22000-06-27 11:18:27 +1000964# else /* UTMPX_USE_LIBRARY */
andre2ff7b5d2000-06-03 14:57:40 +0000965
966/* write a utmp entry direct to the file */
967static int
andre61e67252000-06-04 17:07:49 +0000968utmpx_write_direct(struct logininfo *li, struct utmpx *utx)
Kevin Stevesef4eea92001-02-05 12:42:17 +0000969{
Damien Miller996acd22003-04-09 20:59:48 +1000970 logit("utmpx_write_direct: not implemented!");
andre2ff7b5d2000-06-03 14:57:40 +0000971 return 0;
andre61e67252000-06-04 17:07:49 +0000972}
Damien Millerdd47aa22000-06-27 11:18:27 +1000973# endif /* UTMPX_USE_LIBRARY */
andre2ff7b5d2000-06-03 14:57:40 +0000974
975static int
andre61e67252000-06-04 17:07:49 +0000976utmpx_perform_login(struct logininfo *li)
977{
andre2ff7b5d2000-06-03 14:57:40 +0000978 struct utmpx utx;
979
980 construct_utmpx(li, &utx);
Damien Millerdd47aa22000-06-27 11:18:27 +1000981# ifdef UTMPX_USE_LIBRARY
andre2ff7b5d2000-06-03 14:57:40 +0000982 if (!utmpx_write_library(li, &utx)) {
Damien Miller996acd22003-04-09 20:59:48 +1000983 logit("utmpx_perform_login: utmp_write_library() failed");
andre2ff7b5d2000-06-03 14:57:40 +0000984 return 0;
985 }
Damien Millerdd47aa22000-06-27 11:18:27 +1000986# else
andre2ff7b5d2000-06-03 14:57:40 +0000987 if (!utmpx_write_direct(li, &ut)) {
Damien Miller996acd22003-04-09 20:59:48 +1000988 logit("utmpx_perform_login: utmp_write_direct() failed");
andre2ff7b5d2000-06-03 14:57:40 +0000989 return 0;
990 }
Damien Millerdd47aa22000-06-27 11:18:27 +1000991# endif
andre2ff7b5d2000-06-03 14:57:40 +0000992 return 1;
andre61e67252000-06-04 17:07:49 +0000993}
andre2ff7b5d2000-06-03 14:57:40 +0000994
995
996static int
andre61e67252000-06-04 17:07:49 +0000997utmpx_perform_logout(struct logininfo *li)
998{
andre2ff7b5d2000-06-03 14:57:40 +0000999 struct utmpx utx;
1000
Tim Ricee06ae4a2002-02-24 17:56:46 -08001001 construct_utmpx(li, &utx);
Damien Millerdd47aa22000-06-27 11:18:27 +10001002# ifdef HAVE_ID_IN_UTMPX
andre2ff7b5d2000-06-03 14:57:40 +00001003 line_abbrevname(utx.ut_id, li->line, sizeof(utx.ut_id));
Damien Millerdd47aa22000-06-27 11:18:27 +10001004# endif
1005# ifdef HAVE_TYPE_IN_UTMPX
andre2ff7b5d2000-06-03 14:57:40 +00001006 utx.ut_type = DEAD_PROCESS;
Damien Millerdd47aa22000-06-27 11:18:27 +10001007# endif
andre2ff7b5d2000-06-03 14:57:40 +00001008
Damien Millerdd47aa22000-06-27 11:18:27 +10001009# ifdef UTMPX_USE_LIBRARY
andre2ff7b5d2000-06-03 14:57:40 +00001010 utmpx_write_library(li, &utx);
Damien Millerdd47aa22000-06-27 11:18:27 +10001011# else
andre2ff7b5d2000-06-03 14:57:40 +00001012 utmpx_write_direct(li, &utx);
Damien Millerdd47aa22000-06-27 11:18:27 +10001013# endif
andre2ff7b5d2000-06-03 14:57:40 +00001014 return 1;
andre61e67252000-06-04 17:07:49 +00001015}
andre2ff7b5d2000-06-03 14:57:40 +00001016
andre2ff7b5d2000-06-03 14:57:40 +00001017int
andre61e67252000-06-04 17:07:49 +00001018utmpx_write_entry(struct logininfo *li)
1019{
andre2ff7b5d2000-06-03 14:57:40 +00001020 switch(li->type) {
1021 case LTYPE_LOGIN:
1022 return utmpx_perform_login(li);
1023 case LTYPE_LOGOUT:
1024 return utmpx_perform_logout(li);
1025 default:
Damien Miller996acd22003-04-09 20:59:48 +10001026 logit("utmpx_write_entry: invalid type field");
andre2ff7b5d2000-06-03 14:57:40 +00001027 return 0;
1028 }
andre61e67252000-06-04 17:07:49 +00001029}
Damien Millerdd47aa22000-06-27 11:18:27 +10001030#endif /* USE_UTMPX */
andre2ff7b5d2000-06-03 14:57:40 +00001031
1032
1033/**
andre61e67252000-06-04 17:07:49 +00001034 ** Low-level wtmp functions
andre2ff7b5d2000-06-03 14:57:40 +00001035 **/
1036
Kevin Stevesef4eea92001-02-05 12:42:17 +00001037#ifdef USE_WTMP
andre2ff7b5d2000-06-03 14:57:40 +00001038
andre2ff7b5d2000-06-03 14:57:40 +00001039/* write a wtmp entry direct to the end of the file */
andre61e67252000-06-04 17:07:49 +00001040/* This is a slight modification of code in OpenBSD's logwtmp.c */
andre2ff7b5d2000-06-03 14:57:40 +00001041static int
andre61e67252000-06-04 17:07:49 +00001042wtmp_write(struct logininfo *li, struct utmp *ut)
1043{
andre2ff7b5d2000-06-03 14:57:40 +00001044 struct stat buf;
1045 int fd, ret = 1;
1046
1047 if ((fd = open(WTMP_FILE, O_WRONLY|O_APPEND, 0)) < 0) {
Damien Miller996acd22003-04-09 20:59:48 +10001048 logit("wtmp_write: problem writing %s: %s",
andre2ff7b5d2000-06-03 14:57:40 +00001049 WTMP_FILE, strerror(errno));
1050 return 0;
1051 }
Kevin Stevesef4eea92001-02-05 12:42:17 +00001052 if (fstat(fd, &buf) == 0)
Darren Tucker8661b562003-07-06 15:20:46 +10001053 if (atomicio(vwrite, fd, ut, sizeof(*ut)) != sizeof(*ut)) {
andre2ff7b5d2000-06-03 14:57:40 +00001054 ftruncate(fd, buf.st_size);
Damien Miller996acd22003-04-09 20:59:48 +10001055 logit("wtmp_write: problem writing %s: %s",
andre2ff7b5d2000-06-03 14:57:40 +00001056 WTMP_FILE, strerror(errno));
1057 ret = 0;
1058 }
1059 (void)close(fd);
andre2ff7b5d2000-06-03 14:57:40 +00001060 return ret;
andre61e67252000-06-04 17:07:49 +00001061}
andre2ff7b5d2000-06-03 14:57:40 +00001062
andre2ff7b5d2000-06-03 14:57:40 +00001063static int
Damien Millerdd47aa22000-06-27 11:18:27 +10001064wtmp_perform_login(struct logininfo *li)
1065{
andre2ff7b5d2000-06-03 14:57:40 +00001066 struct utmp ut;
1067
1068 construct_utmp(li, &ut);
1069 return wtmp_write(li, &ut);
andre61e67252000-06-04 17:07:49 +00001070}
andre2ff7b5d2000-06-03 14:57:40 +00001071
1072
1073static int
andre61e67252000-06-04 17:07:49 +00001074wtmp_perform_logout(struct logininfo *li)
1075{
andre2ff7b5d2000-06-03 14:57:40 +00001076 struct utmp ut;
1077
1078 construct_utmp(li, &ut);
andre2ff7b5d2000-06-03 14:57:40 +00001079 return wtmp_write(li, &ut);
andre61e67252000-06-04 17:07:49 +00001080}
andre2ff7b5d2000-06-03 14:57:40 +00001081
1082
1083int
andre61e67252000-06-04 17:07:49 +00001084wtmp_write_entry(struct logininfo *li)
1085{
andre2ff7b5d2000-06-03 14:57:40 +00001086 switch(li->type) {
1087 case LTYPE_LOGIN:
1088 return wtmp_perform_login(li);
1089 case LTYPE_LOGOUT:
1090 return wtmp_perform_logout(li);
1091 default:
Damien Miller996acd22003-04-09 20:59:48 +10001092 logit("wtmp_write_entry: invalid type field");
andre2ff7b5d2000-06-03 14:57:40 +00001093 return 0;
1094 }
andre61e67252000-06-04 17:07:49 +00001095}
andre2ff7b5d2000-06-03 14:57:40 +00001096
1097
andre6bb92372000-06-19 08:20:03 +00001098/* Notes on fetching login data from wtmp/wtmpx
Kevin Stevesef4eea92001-02-05 12:42:17 +00001099 *
andre6bb92372000-06-19 08:20:03 +00001100 * Logouts are usually recorded with (amongst other things) a blank
1101 * username on a given tty line. However, some systems (HP-UX is one)
1102 * leave all fields set, but change the ut_type field to DEAD_PROCESS.
1103 *
1104 * Since we're only looking for logins here, we know that the username
1105 * must be set correctly. On systems that leave it in, we check for
1106 * ut_type==USER_PROCESS (indicating a login.)
1107 *
1108 * Portability: Some systems may set something other than USER_PROCESS
1109 * to indicate a login process. I don't know of any as I write. Also,
1110 * it's possible that some systems may both leave the username in
1111 * place and not have ut_type.
1112 */
1113
andre6bb92372000-06-19 08:20:03 +00001114/* return true if this wtmp entry indicates a login */
1115static int
1116wtmp_islogin(struct logininfo *li, struct utmp *ut)
1117{
Kevin Stevesef4eea92001-02-05 12:42:17 +00001118 if (strncmp(li->username, ut->ut_name,
Damien Miller7a0e5dc2000-07-11 12:15:54 +10001119 MIN_SIZEOF(li->username, ut->ut_name)) == 0) {
Damien Millerdd47aa22000-06-27 11:18:27 +10001120# ifdef HAVE_TYPE_IN_UTMP
andre6bb92372000-06-19 08:20:03 +00001121 if (ut->ut_type & USER_PROCESS)
1122 return 1;
Damien Millerdd47aa22000-06-27 11:18:27 +10001123# else
andre6bb92372000-06-19 08:20:03 +00001124 return 1;
Damien Millerdd47aa22000-06-27 11:18:27 +10001125# endif
andre6bb92372000-06-19 08:20:03 +00001126 }
1127 return 0;
1128}
1129
andre2ff7b5d2000-06-03 14:57:40 +00001130int
andre61e67252000-06-04 17:07:49 +00001131wtmp_get_entry(struct logininfo *li)
1132{
andre2ff7b5d2000-06-03 14:57:40 +00001133 struct stat st;
1134 struct utmp ut;
andre6bb92372000-06-19 08:20:03 +00001135 int fd, found=0;
1136
1137 /* Clear the time entries in our logininfo */
1138 li->tv_sec = li->tv_usec = 0;
andre2ff7b5d2000-06-03 14:57:40 +00001139
1140 if ((fd = open(WTMP_FILE, O_RDONLY)) < 0) {
Damien Miller996acd22003-04-09 20:59:48 +10001141 logit("wtmp_get_entry: problem opening %s: %s",
andre2ff7b5d2000-06-03 14:57:40 +00001142 WTMP_FILE, strerror(errno));
1143 return 0;
1144 }
Kevin Stevesef4eea92001-02-05 12:42:17 +00001145 if (fstat(fd, &st) != 0) {
Damien Miller996acd22003-04-09 20:59:48 +10001146 logit("wtmp_get_entry: couldn't stat %s: %s",
andre2ff7b5d2000-06-03 14:57:40 +00001147 WTMP_FILE, strerror(errno));
1148 close(fd);
1149 return 0;
1150 }
andre2ff7b5d2000-06-03 14:57:40 +00001151
andre6bb92372000-06-19 08:20:03 +00001152 /* Seek to the start of the last struct utmp */
Kevin Steves52172652001-10-02 00:29:00 +00001153 if (lseek(fd, -(off_t)sizeof(struct utmp), SEEK_END) == -1) {
andre6bb92372000-06-19 08:20:03 +00001154 /* Looks like we've got a fresh wtmp file */
1155 close(fd);
1156 return 0;
1157 }
1158
1159 while (!found) {
Damien Miller53c5d462000-06-28 00:50:50 +10001160 if (atomicio(read, fd, &ut, sizeof(ut)) != sizeof(ut)) {
Damien Miller996acd22003-04-09 20:59:48 +10001161 logit("wtmp_get_entry: read of %s failed: %s",
andre2ff7b5d2000-06-03 14:57:40 +00001162 WTMP_FILE, strerror(errno));
1163 close (fd);
1164 return 0;
1165 }
andre6bb92372000-06-19 08:20:03 +00001166 if ( wtmp_islogin(li, &ut) ) {
1167 found = 1;
1168 /* We've already checked for a time in struct
1169 * utmp, in login_getlast(). */
Damien Millerdd47aa22000-06-27 11:18:27 +10001170# ifdef HAVE_TIME_IN_UTMP
andre2ff7b5d2000-06-03 14:57:40 +00001171 li->tv_sec = ut.ut_time;
Damien Millerdd47aa22000-06-27 11:18:27 +10001172# else
andre2ff7b5d2000-06-03 14:57:40 +00001173# if HAVE_TV_IN_UTMP
1174 li->tv_sec = ut.ut_tv.tv_sec;
1175# endif
Damien Millerdd47aa22000-06-27 11:18:27 +10001176# endif
andre6bb92372000-06-19 08:20:03 +00001177 line_fullname(li->line, ut.ut_line,
1178 MIN_SIZEOF(li->line, ut.ut_line));
Damien Millerdd47aa22000-06-27 11:18:27 +10001179# ifdef HAVE_HOST_IN_UTMP
andre6bb92372000-06-19 08:20:03 +00001180 strlcpy(li->hostname, ut.ut_host,
1181 MIN_SIZEOF(li->hostname, ut.ut_host));
Damien Millerdd47aa22000-06-27 11:18:27 +10001182# endif
andre6bb92372000-06-19 08:20:03 +00001183 continue;
andre2ff7b5d2000-06-03 14:57:40 +00001184 }
andre6bb92372000-06-19 08:20:03 +00001185 /* Seek back 2 x struct utmp */
Kevin Steves52172652001-10-02 00:29:00 +00001186 if (lseek(fd, -(off_t)(2 * sizeof(struct utmp)), SEEK_CUR) == -1) {
andre6bb92372000-06-19 08:20:03 +00001187 /* We've found the start of the file, so quit */
andre2ff7b5d2000-06-03 14:57:40 +00001188 close (fd);
1189 return 0;
1190 }
andre6bb92372000-06-19 08:20:03 +00001191 }
1192
1193 /* We found an entry. Tidy up and return */
1194 close(fd);
andre2ff7b5d2000-06-03 14:57:40 +00001195 return 1;
andre61e67252000-06-04 17:07:49 +00001196}
Damien Millerdd47aa22000-06-27 11:18:27 +10001197# endif /* USE_WTMP */
andre2ff7b5d2000-06-03 14:57:40 +00001198
1199
1200/**
andre61e67252000-06-04 17:07:49 +00001201 ** Low-level wtmpx functions
andre2ff7b5d2000-06-03 14:57:40 +00001202 **/
1203
1204#ifdef USE_WTMPX
andre2ff7b5d2000-06-03 14:57:40 +00001205/* write a wtmpx entry direct to the end of the file */
andre61e67252000-06-04 17:07:49 +00001206/* This is a slight modification of code in OpenBSD's logwtmp.c */
andre2ff7b5d2000-06-03 14:57:40 +00001207static int
andre61e67252000-06-04 17:07:49 +00001208wtmpx_write(struct logininfo *li, struct utmpx *utx)
1209{
Darren Tuckerc28b88a2004-02-10 16:49:35 +11001210#ifndef HAVE_UPDWTMPX
andre2ff7b5d2000-06-03 14:57:40 +00001211 struct stat buf;
1212 int fd, ret = 1;
1213
1214 if ((fd = open(WTMPX_FILE, O_WRONLY|O_APPEND, 0)) < 0) {
Damien Miller996acd22003-04-09 20:59:48 +10001215 logit("wtmpx_write: problem opening %s: %s",
andre2ff7b5d2000-06-03 14:57:40 +00001216 WTMPX_FILE, strerror(errno));
1217 return 0;
1218 }
1219
Kevin Stevesef4eea92001-02-05 12:42:17 +00001220 if (fstat(fd, &buf) == 0)
Darren Tucker8661b562003-07-06 15:20:46 +10001221 if (atomicio(vwrite, fd, utx, sizeof(*utx)) != sizeof(*utx)) {
andre2ff7b5d2000-06-03 14:57:40 +00001222 ftruncate(fd, buf.st_size);
Damien Miller996acd22003-04-09 20:59:48 +10001223 logit("wtmpx_write: problem writing %s: %s",
andre2ff7b5d2000-06-03 14:57:40 +00001224 WTMPX_FILE, strerror(errno));
1225 ret = 0;
1226 }
1227 (void)close(fd);
1228
1229 return ret;
Darren Tuckerc28b88a2004-02-10 16:49:35 +11001230#else
1231 updwtmpx(WTMPX_FILE, utx);
1232 return 1;
1233#endif
andre61e67252000-06-04 17:07:49 +00001234}
andre2ff7b5d2000-06-03 14:57:40 +00001235
1236
1237static int
andre61e67252000-06-04 17:07:49 +00001238wtmpx_perform_login(struct logininfo *li)
1239{
andre2ff7b5d2000-06-03 14:57:40 +00001240 struct utmpx utx;
1241
1242 construct_utmpx(li, &utx);
1243 return wtmpx_write(li, &utx);
andre61e67252000-06-04 17:07:49 +00001244}
andre2ff7b5d2000-06-03 14:57:40 +00001245
1246
1247static int
andre61e67252000-06-04 17:07:49 +00001248wtmpx_perform_logout(struct logininfo *li)
1249{
andre2ff7b5d2000-06-03 14:57:40 +00001250 struct utmpx utx;
1251
1252 construct_utmpx(li, &utx);
andre2ff7b5d2000-06-03 14:57:40 +00001253 return wtmpx_write(li, &utx);
andre61e67252000-06-04 17:07:49 +00001254}
andre2ff7b5d2000-06-03 14:57:40 +00001255
1256
1257int
andre61e67252000-06-04 17:07:49 +00001258wtmpx_write_entry(struct logininfo *li)
1259{
andre2ff7b5d2000-06-03 14:57:40 +00001260 switch(li->type) {
1261 case LTYPE_LOGIN:
1262 return wtmpx_perform_login(li);
1263 case LTYPE_LOGOUT:
1264 return wtmpx_perform_logout(li);
1265 default:
Damien Miller996acd22003-04-09 20:59:48 +10001266 logit("wtmpx_write_entry: invalid type field");
andre2ff7b5d2000-06-03 14:57:40 +00001267 return 0;
1268 }
andre61e67252000-06-04 17:07:49 +00001269}
andre2ff7b5d2000-06-03 14:57:40 +00001270
andre6bb92372000-06-19 08:20:03 +00001271/* Please see the notes above wtmp_islogin() for information about the
1272 next two functions */
1273
1274/* Return true if this wtmpx entry indicates a login */
1275static int
1276wtmpx_islogin(struct logininfo *li, struct utmpx *utx)
1277{
Damien Miller7a0e5dc2000-07-11 12:15:54 +10001278 if ( strncmp(li->username, utx->ut_name,
1279 MIN_SIZEOF(li->username, utx->ut_name)) == 0 ) {
Damien Millerdd47aa22000-06-27 11:18:27 +10001280# ifdef HAVE_TYPE_IN_UTMPX
andre6bb92372000-06-19 08:20:03 +00001281 if (utx->ut_type == USER_PROCESS)
1282 return 1;
Damien Millerdd47aa22000-06-27 11:18:27 +10001283# else
andre6bb92372000-06-19 08:20:03 +00001284 return 1;
Damien Millerdd47aa22000-06-27 11:18:27 +10001285# endif
andre6bb92372000-06-19 08:20:03 +00001286 }
1287 return 0;
1288}
1289
andre2ff7b5d2000-06-03 14:57:40 +00001290
1291int
andre61e67252000-06-04 17:07:49 +00001292wtmpx_get_entry(struct logininfo *li)
1293{
andre2ff7b5d2000-06-03 14:57:40 +00001294 struct stat st;
1295 struct utmpx utx;
andre6bb92372000-06-19 08:20:03 +00001296 int fd, found=0;
1297
1298 /* Clear the time entries */
1299 li->tv_sec = li->tv_usec = 0;
andre2ff7b5d2000-06-03 14:57:40 +00001300
1301 if ((fd = open(WTMPX_FILE, O_RDONLY)) < 0) {
Damien Miller996acd22003-04-09 20:59:48 +10001302 logit("wtmpx_get_entry: problem opening %s: %s",
andre2ff7b5d2000-06-03 14:57:40 +00001303 WTMPX_FILE, strerror(errno));
1304 return 0;
1305 }
Kevin Stevesef4eea92001-02-05 12:42:17 +00001306 if (fstat(fd, &st) != 0) {
Damien Miller996acd22003-04-09 20:59:48 +10001307 logit("wtmpx_get_entry: couldn't stat %s: %s",
Tim Ricecdb82942002-07-14 15:33:20 -07001308 WTMPX_FILE, strerror(errno));
andre2ff7b5d2000-06-03 14:57:40 +00001309 close(fd);
1310 return 0;
1311 }
Kevin Stevesef4eea92001-02-05 12:42:17 +00001312
andre6bb92372000-06-19 08:20:03 +00001313 /* Seek to the start of the last struct utmpx */
Kevin Steves52172652001-10-02 00:29:00 +00001314 if (lseek(fd, -(off_t)sizeof(struct utmpx), SEEK_END) == -1 ) {
andre6bb92372000-06-19 08:20:03 +00001315 /* probably a newly rotated wtmpx file */
1316 close(fd);
1317 return 0;
1318 }
andre2ff7b5d2000-06-03 14:57:40 +00001319
andre6bb92372000-06-19 08:20:03 +00001320 while (!found) {
Damien Miller53c5d462000-06-28 00:50:50 +10001321 if (atomicio(read, fd, &utx, sizeof(utx)) != sizeof(utx)) {
Damien Miller996acd22003-04-09 20:59:48 +10001322 logit("wtmpx_get_entry: read of %s failed: %s",
andre2ff7b5d2000-06-03 14:57:40 +00001323 WTMPX_FILE, strerror(errno));
1324 close (fd);
1325 return 0;
1326 }
andre2ff7b5d2000-06-03 14:57:40 +00001327 /* Logouts are recorded as a blank username on a particular line.
1328 * So, we just need to find the username in struct utmpx */
andre6bb92372000-06-19 08:20:03 +00001329 if ( wtmpx_islogin(li, &utx) ) {
Tim Rice370e0ba2002-07-14 15:50:51 -07001330 found = 1;
Damien Millerdd47aa22000-06-27 11:18:27 +10001331# ifdef HAVE_TV_IN_UTMPX
andre2ff7b5d2000-06-03 14:57:40 +00001332 li->tv_sec = utx.ut_tv.tv_sec;
Damien Millerdd47aa22000-06-27 11:18:27 +10001333# else
andre2ff7b5d2000-06-03 14:57:40 +00001334# ifdef HAVE_TIME_IN_UTMPX
1335 li->tv_sec = utx.ut_time;
1336# endif
Damien Millerdd47aa22000-06-27 11:18:27 +10001337# endif
Damien Miller1a132252000-06-13 21:23:17 +10001338 line_fullname(li->line, utx.ut_line, sizeof(li->line));
Damien Millerdd47aa22000-06-27 11:18:27 +10001339# ifdef HAVE_HOST_IN_UTMPX
andre6bb92372000-06-19 08:20:03 +00001340 strlcpy(li->hostname, utx.ut_host,
1341 MIN_SIZEOF(li->hostname, utx.ut_host));
Damien Millerdd47aa22000-06-27 11:18:27 +10001342# endif
andre6bb92372000-06-19 08:20:03 +00001343 continue;
andre2ff7b5d2000-06-03 14:57:40 +00001344 }
Kevin Steves52172652001-10-02 00:29:00 +00001345 if (lseek(fd, -(off_t)(2 * sizeof(struct utmpx)), SEEK_CUR) == -1) {
andre2ff7b5d2000-06-03 14:57:40 +00001346 close (fd);
1347 return 0;
1348 }
andre6bb92372000-06-19 08:20:03 +00001349 }
1350
1351 close(fd);
andre2ff7b5d2000-06-03 14:57:40 +00001352 return 1;
andre61e67252000-06-04 17:07:49 +00001353}
Damien Millerd5bf3072000-06-07 21:32:13 +10001354#endif /* USE_WTMPX */
andre2ff7b5d2000-06-03 14:57:40 +00001355
andre2ff7b5d2000-06-03 14:57:40 +00001356/**
andre61e67252000-06-04 17:07:49 +00001357 ** Low-level libutil login() functions
andre2ff7b5d2000-06-03 14:57:40 +00001358 **/
1359
1360#ifdef USE_LOGIN
andre2ff7b5d2000-06-03 14:57:40 +00001361static int
andre61e67252000-06-04 17:07:49 +00001362syslogin_perform_login(struct logininfo *li)
1363{
andre2ff7b5d2000-06-03 14:57:40 +00001364 struct utmp *ut;
1365
Damien Miller348c9b72000-08-15 10:01:22 +10001366 if (! (ut = (struct utmp *)malloc(sizeof(*ut)))) {
Damien Miller996acd22003-04-09 20:59:48 +10001367 logit("syslogin_perform_login: couldn't malloc()");
andre2ff7b5d2000-06-03 14:57:40 +00001368 return 0;
1369 }
1370 construct_utmp(li, ut);
1371 login(ut);
Damien Millerf211efc2003-03-10 11:23:06 +11001372 free(ut);
andre2ff7b5d2000-06-03 14:57:40 +00001373
1374 return 1;
andre61e67252000-06-04 17:07:49 +00001375}
1376
andre2ff7b5d2000-06-03 14:57:40 +00001377static int
andre61e67252000-06-04 17:07:49 +00001378syslogin_perform_logout(struct logininfo *li)
1379{
Damien Millerdd47aa22000-06-27 11:18:27 +10001380# ifdef HAVE_LOGOUT
Darren Tucker4d2f3612004-04-08 10:57:05 +10001381 char line[UT_LINESIZE];
Kevin Stevesef4eea92001-02-05 12:42:17 +00001382
andre2ff7b5d2000-06-03 14:57:40 +00001383 (void)line_stripname(line, li->line, sizeof(line));
1384
1385 if (!logout(line)) {
Damien Miller996acd22003-04-09 20:59:48 +10001386 logit("syslogin_perform_logout: logout() returned an error");
Damien Millerdd47aa22000-06-27 11:18:27 +10001387# ifdef HAVE_LOGWTMP
andre2ff7b5d2000-06-03 14:57:40 +00001388 } else {
1389 logwtmp(line, "", "");
Damien Millerdd47aa22000-06-27 11:18:27 +10001390# endif
Damien Miller9b6d4ab2000-07-02 08:43:18 +10001391 }
andre6bb92372000-06-19 08:20:03 +00001392 /* FIXME: (ATL - if the need arises) What to do if we have
1393 * login, but no logout? what if logout but no logwtmp? All
1394 * routines are in libutil so they should all be there,
1395 * but... */
Damien Millerdd47aa22000-06-27 11:18:27 +10001396# endif
andre2ff7b5d2000-06-03 14:57:40 +00001397 return 1;
andre61e67252000-06-04 17:07:49 +00001398}
andre2ff7b5d2000-06-03 14:57:40 +00001399
andre2ff7b5d2000-06-03 14:57:40 +00001400int
andre61e67252000-06-04 17:07:49 +00001401syslogin_write_entry(struct logininfo *li)
1402{
andre2ff7b5d2000-06-03 14:57:40 +00001403 switch (li->type) {
1404 case LTYPE_LOGIN:
1405 return syslogin_perform_login(li);
1406 case LTYPE_LOGOUT:
1407 return syslogin_perform_logout(li);
1408 default:
Damien Miller996acd22003-04-09 20:59:48 +10001409 logit("syslogin_write_entry: Invalid type field");
andre2ff7b5d2000-06-03 14:57:40 +00001410 return 0;
1411 }
andre61e67252000-06-04 17:07:49 +00001412}
Damien Millerd5bf3072000-06-07 21:32:13 +10001413#endif /* USE_LOGIN */
andre2ff7b5d2000-06-03 14:57:40 +00001414
1415/* end of file log-syslogin.c */
1416
andre2ff7b5d2000-06-03 14:57:40 +00001417/**
andre61e67252000-06-04 17:07:49 +00001418 ** Low-level lastlog functions
andre2ff7b5d2000-06-03 14:57:40 +00001419 **/
1420
1421#ifdef USE_LASTLOG
Damien Millerdd47aa22000-06-27 11:18:27 +10001422#define LL_FILE 1
1423#define LL_DIR 2
1424#define LL_OTHER 3
andre2ff7b5d2000-06-03 14:57:40 +00001425
andre2ff7b5d2000-06-03 14:57:40 +00001426static void
andre61e67252000-06-04 17:07:49 +00001427lastlog_construct(struct logininfo *li, struct lastlog *last)
1428{
andre2ff7b5d2000-06-03 14:57:40 +00001429 /* clear the structure */
Damien Miller348c9b72000-08-15 10:01:22 +10001430 memset(last, '\0', sizeof(*last));
Kevin Stevesef4eea92001-02-05 12:42:17 +00001431
Damien Millerdd47aa22000-06-27 11:18:27 +10001432 (void)line_stripname(last->ll_line, li->line, sizeof(last->ll_line));
andre6bb92372000-06-19 08:20:03 +00001433 strlcpy(last->ll_host, li->hostname,
1434 MIN_SIZEOF(last->ll_host, li->hostname));
andre2ff7b5d2000-06-03 14:57:40 +00001435 last->ll_time = li->tv_sec;
andre61e67252000-06-04 17:07:49 +00001436}
andre2ff7b5d2000-06-03 14:57:40 +00001437
andre2ff7b5d2000-06-03 14:57:40 +00001438static int
andre61e67252000-06-04 17:07:49 +00001439lastlog_filetype(char *filename)
1440{
andre2ff7b5d2000-06-03 14:57:40 +00001441 struct stat st;
1442
Damien Millerdd47aa22000-06-27 11:18:27 +10001443 if (stat(LASTLOG_FILE, &st) != 0) {
Damien Miller996acd22003-04-09 20:59:48 +10001444 logit("lastlog_perform_login: Couldn't stat %s: %s", LASTLOG_FILE,
Damien Millerdd47aa22000-06-27 11:18:27 +10001445 strerror(errno));
andre2ff7b5d2000-06-03 14:57:40 +00001446 return 0;
1447 }
andre2ff7b5d2000-06-03 14:57:40 +00001448 if (S_ISDIR(st.st_mode))
1449 return LL_DIR;
1450 else if (S_ISREG(st.st_mode))
1451 return LL_FILE;
1452 else
1453 return LL_OTHER;
andre61e67252000-06-04 17:07:49 +00001454}
andre2ff7b5d2000-06-03 14:57:40 +00001455
1456
1457/* open the file (using filemode) and seek to the login entry */
1458static int
andre61e67252000-06-04 17:07:49 +00001459lastlog_openseek(struct logininfo *li, int *fd, int filemode)
1460{
andre2ff7b5d2000-06-03 14:57:40 +00001461 off_t offset;
1462 int type;
1463 char lastlog_file[1024];
1464
1465 type = lastlog_filetype(LASTLOG_FILE);
1466 switch (type) {
Damien Millerf8af08d2000-06-27 09:40:06 +10001467 case LL_FILE:
1468 strlcpy(lastlog_file, LASTLOG_FILE, sizeof(lastlog_file));
1469 break;
1470 case LL_DIR:
1471 snprintf(lastlog_file, sizeof(lastlog_file), "%s/%s",
1472 LASTLOG_FILE, li->username);
1473 break;
1474 default:
Damien Miller996acd22003-04-09 20:59:48 +10001475 logit("lastlog_openseek: %.100s is not a file or directory!",
Damien Millerf8af08d2000-06-27 09:40:06 +10001476 LASTLOG_FILE);
1477 return 0;
Damien Millerdd47aa22000-06-27 11:18:27 +10001478 }
andre2ff7b5d2000-06-03 14:57:40 +00001479
Damien Miller405dc602003-04-09 21:12:52 +10001480 *fd = open(lastlog_file, filemode, 0600);
andre2ff7b5d2000-06-03 14:57:40 +00001481 if ( *fd < 0) {
Damien Miller53c5d462000-06-28 00:50:50 +10001482 debug("lastlog_openseek: Couldn't open %s: %s",
andre2ff7b5d2000-06-03 14:57:40 +00001483 lastlog_file, strerror(errno));
1484 return 0;
1485 }
Kevin Stevesef4eea92001-02-05 12:42:17 +00001486
Damien Millere477ef62000-08-15 10:21:17 +10001487 if (type == LL_FILE) {
1488 /* find this uid's offset in the lastlog file */
Kevin Steves52172652001-10-02 00:29:00 +00001489 offset = (off_t) ((long)li->uid * sizeof(struct lastlog));
andre2ff7b5d2000-06-03 14:57:40 +00001490
Damien Millere477ef62000-08-15 10:21:17 +10001491 if ( lseek(*fd, offset, SEEK_SET) != offset ) {
Damien Miller996acd22003-04-09 20:59:48 +10001492 logit("lastlog_openseek: %s->lseek(): %s",
Kevin Stevesef4eea92001-02-05 12:42:17 +00001493 lastlog_file, strerror(errno));
Damien Millere477ef62000-08-15 10:21:17 +10001494 return 0;
1495 }
andre2ff7b5d2000-06-03 14:57:40 +00001496 }
Kevin Stevesef4eea92001-02-05 12:42:17 +00001497
andre2ff7b5d2000-06-03 14:57:40 +00001498 return 1;
andre61e67252000-06-04 17:07:49 +00001499}
andre2ff7b5d2000-06-03 14:57:40 +00001500
1501static int
andre61e67252000-06-04 17:07:49 +00001502lastlog_perform_login(struct logininfo *li)
1503{
andre2ff7b5d2000-06-03 14:57:40 +00001504 struct lastlog last;
1505 int fd;
1506
1507 /* create our struct lastlog */
1508 lastlog_construct(li, &last);
1509
Damien Miller405dc602003-04-09 21:12:52 +10001510 if (!lastlog_openseek(li, &fd, O_RDWR|O_CREAT))
Damien Millerc1132e72000-08-18 14:08:38 +10001511 return(0);
Kevin Stevesef4eea92001-02-05 12:42:17 +00001512
andre2ff7b5d2000-06-03 14:57:40 +00001513 /* write the entry */
Darren Tucker8661b562003-07-06 15:20:46 +10001514 if (atomicio(vwrite, fd, &last, sizeof(last)) != sizeof(last)) {
Damien Millerc1132e72000-08-18 14:08:38 +10001515 close(fd);
Damien Miller996acd22003-04-09 20:59:48 +10001516 logit("lastlog_write_filemode: Error writing to %s: %s",
Damien Millerc1132e72000-08-18 14:08:38 +10001517 LASTLOG_FILE, strerror(errno));
andre2ff7b5d2000-06-03 14:57:40 +00001518 return 0;
Damien Millerdd47aa22000-06-27 11:18:27 +10001519 }
Damien Millerc1132e72000-08-18 14:08:38 +10001520
1521 close(fd);
1522 return 1;
andre61e67252000-06-04 17:07:49 +00001523}
andre2ff7b5d2000-06-03 14:57:40 +00001524
andre2ff7b5d2000-06-03 14:57:40 +00001525int
andre61e67252000-06-04 17:07:49 +00001526lastlog_write_entry(struct logininfo *li)
1527{
andre2ff7b5d2000-06-03 14:57:40 +00001528 switch(li->type) {
1529 case LTYPE_LOGIN:
1530 return lastlog_perform_login(li);
1531 default:
Damien Miller996acd22003-04-09 20:59:48 +10001532 logit("lastlog_write_entry: Invalid type field");
andre2ff7b5d2000-06-03 14:57:40 +00001533 return 0;
1534 }
andre61e67252000-06-04 17:07:49 +00001535}
andre2ff7b5d2000-06-03 14:57:40 +00001536
andre2ff7b5d2000-06-03 14:57:40 +00001537static void
andre61e67252000-06-04 17:07:49 +00001538lastlog_populate_entry(struct logininfo *li, struct lastlog *last)
1539{
andre2ff7b5d2000-06-03 14:57:40 +00001540 line_fullname(li->line, last->ll_line, sizeof(li->line));
Kevin Stevesef4eea92001-02-05 12:42:17 +00001541 strlcpy(li->hostname, last->ll_host,
andre6bb92372000-06-19 08:20:03 +00001542 MIN_SIZEOF(li->hostname, last->ll_host));
andre2ff7b5d2000-06-03 14:57:40 +00001543 li->tv_sec = last->ll_time;
andre61e67252000-06-04 17:07:49 +00001544}
andre2ff7b5d2000-06-03 14:57:40 +00001545
andre2ff7b5d2000-06-03 14:57:40 +00001546int
andre61e67252000-06-04 17:07:49 +00001547lastlog_get_entry(struct logininfo *li)
1548{
andre2ff7b5d2000-06-03 14:57:40 +00001549 struct lastlog last;
Damien Miller7df881d2003-01-07 16:46:58 +11001550 int fd, ret;
andre2ff7b5d2000-06-03 14:57:40 +00001551
Damien Miller3a8a5cd2001-10-22 16:49:22 +10001552 if (!lastlog_openseek(li, &fd, O_RDONLY))
Damien Miller7df881d2003-01-07 16:46:58 +11001553 return (0);
Damien Miller3a8a5cd2001-10-22 16:49:22 +10001554
Damien Miller7df881d2003-01-07 16:46:58 +11001555 ret = atomicio(read, fd, &last, sizeof(last));
Damien Miller3a8a5cd2001-10-22 16:49:22 +10001556 close(fd);
1557
Damien Miller7df881d2003-01-07 16:46:58 +11001558 switch (ret) {
1559 case 0:
1560 memset(&last, '\0', sizeof(last));
1561 /* FALLTHRU */
1562 case sizeof(last):
1563 lastlog_populate_entry(li, &last);
1564 return (1);
1565 case -1:
Damien Millera8e06ce2003-11-21 23:48:55 +11001566 error("%s: Error reading from %s: %s", __func__,
Damien Miller7df881d2003-01-07 16:46:58 +11001567 LASTLOG_FILE, strerror(errno));
1568 return (0);
1569 default:
1570 error("%s: Error reading from %s: Expecting %d, got %d",
1571 __func__, LASTLOG_FILE, sizeof(last), ret);
1572 return (0);
1573 }
Damien Miller3a8a5cd2001-10-22 16:49:22 +10001574
Damien Miller7df881d2003-01-07 16:46:58 +11001575 /* NOTREACHED */
1576 return (0);
andre61e67252000-06-04 17:07:49 +00001577}
Damien Millerd5bf3072000-06-07 21:32:13 +10001578#endif /* USE_LASTLOG */