blob: 4afe6fec1c516bb478e5b1a1dbfbe74c90feaedc [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.
15 * 3. All advertising materials mentioning features or use of this software
16 * must display the following acknowledgement:
17 * This product includes software developed by Markus Friedl.
18 * 4. The name of the author may not be used to endorse or promote products
19 * derived from this software without specific prior written permission.
20 *
21 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
22 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
23 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
24 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
25 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
26 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
30 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31 */
32
33/**
34 ** loginrec.c: platform-independent login recording and lastlog retrieval
35 **/
36
andre61e67252000-06-04 17:07:49 +000037/*
38 The new login code explained
39 ============================
40
41 This code attempts to provide a common interface to login recording
42 (utmp and friends) and last login time retrieval.
43
44 Its primary means of achieving this is to use 'struct logininfo', a
45 union of all the useful fields in the various different types of
46 system login record structures one finds on UNIX variants.
47
48 We depend on autoconf to define which recording methods are to be
49 used, and which fields are contained in the relevant data structures
50 on the local system. Many C preprocessor symbols affect which code
51 gets compiled here.
52
53 The code is designed to make it easy to modify a particular
54 recording method, without affecting other methods nor requiring so
55 many nested conditional compilation blocks as were commonplace in
56 the old code.
57
58 For login recording, we try to use the local system's libraries as
59 these are clearly most likely to work correctly. For utmp systems
60 this usually means login() and logout() or setutent() etc., probably
61 in libutil, along with logwtmp() etc. On these systems, we fall back
62 to writing the files directly if we have to, though this method
63 requires very thorough testing so we do not corrupt local auditing
64 information. These files and their access methods are very system
65 specific indeed.
66
67 For utmpx systems, the corresponding library functions are
68 setutxent() etc. To the author's knowledge, all utmpx systems have
69 these library functions and so no direct write is attempted. If such
70 a system exists and needs support, direct analogues of the [uw]tmp
71 code should suffice.
72
73 Retrieving the time of last login ('lastlog') is in some ways even
74 more problemmatic than login recording. Some systems provide a
75 simple table of all users which we seek based on uid and retrieve a
76 relatively standard structure. Others record the same information in
77 a directory with a separate file, and others don't record the
78 information separately at all. For systems in the latter category,
79 we look backwards in the wtmp or wtmpx file for the last login entry
80 for our user. Naturally this is slower and on busy systems could
81 incur a significant performance penalty.
82
83 Calling the new code
84 --------------------
85
86 In OpenSSH all login recording and retrieval is performed in
87 login.c. Here you'll find working examples. Also, in the logintest.c
88 program there are more examples.
89
90 Internal handler calling method
91 -------------------------------
92
93 When a call is made to login_login() or login_logout(), both
94 routines set a struct logininfo flag defining which action (log in,
95 or log out) is to be taken. They both then call login_write(), which
96 calls whichever of the many structure-specific handlers autoconf
97 selects for the local system.
98
99 The handlers themselves handle system data structure specifics. Both
100 struct utmp and struct utmpx have utility functions (see
101 construct_utmp*()) to try to make it simpler to add extra systems
102 that introduce new features to either structure.
103
104 While it may seem terribly wasteful to replicate so much similar
105 code for each method, experience has shown that maintaining code to
106 write both struct utmp and utmpx in one function, whilst maintaining
107 support for all systems whether they have library support or not, is
108 a difficult and time-consuming task.
109
110 Lastlog support proceeds similarly. Functions login_get_lastlog()
111 (and its OpenSSH-tuned friend login_get_lastlog_time()) call
112 getlast_entry(), which tries one of three methods to find the last
113 login time. It uses local system lastlog support if it can,
114 otherwise it tries wtmp or wtmpx before giving up and returning 0,
115 meaning "tilt".
116
117 Maintenance
118 -----------
119
120 In many cases it's possible to tweak autoconf to select the correct
121 methods for a particular platform, either by improving the detection
122 code (best), or by presetting DISABLE_<method> or CONF_<method>_FILE
123 symbols for the platform.
124
125 Use logintest to check which symbols are defined before modifying
126 configure.in and loginrec.c. (You have to build logintest yourself
127 with 'make logintest' as it's not built by default.)
128
129 Otherwise, patches to the specific method(s) are very helpful!
130
131*/
132
andre2ff7b5d2000-06-03 14:57:40 +0000133/**
134 ** TODO:
Damien Millere5192fa2000-08-29 14:30:37 +1100135 ** homegrown ttyslot()
andre61e67252000-06-04 17:07:49 +0000136 ** test, test, test
andre2ff7b5d2000-06-03 14:57:40 +0000137 **
138 ** Platform status:
139 ** ----------------
140 **
141 ** Known good:
Damien Millere5192fa2000-08-29 14:30:37 +1100142 ** Linux (Redhat 6.2, Debian)
143 ** Solaris
andre2ff7b5d2000-06-03 14:57:40 +0000144 ** HP-UX 10.20 (gcc only)
andre6bb92372000-06-19 08:20:03 +0000145 ** IRIX
Ben Lindstromdcca9812000-11-10 03:28:31 +0000146 ** NeXT - M68k/HPPA/Sparc (4.2/3.3)
andre2ff7b5d2000-06-03 14:57:40 +0000147 **
148 ** Testing required: Please send reports!
andre2ff7b5d2000-06-03 14:57:40 +0000149 ** NetBSD
150 ** HP-UX 11
andre60f3c982000-06-03 16:18:19 +0000151 ** AIX
andre2ff7b5d2000-06-03 14:57:40 +0000152 **
153 ** Platforms with known problems:
Damien Millere5192fa2000-08-29 14:30:37 +1100154 ** Some variants of Slackware Linux
andre2ff7b5d2000-06-03 14:57:40 +0000155 **
156 **/
157
158#include "includes.h"
159
andre2ff7b5d2000-06-03 14:57:40 +0000160#include "ssh.h"
161#include "xmalloc.h"
162#include "loginrec.h"
163
Ben Lindstrome2fb8d32000-12-28 00:07:07 +0000164RCSID("$Id: loginrec.c,v 1.29 2000/12/28 00:07:07 mouring Exp $");
Ben Lindstromdcca9812000-11-10 03:28:31 +0000165
166#ifdef HAVE_UTIL_H
167# include <util.h>
168#endif
andre2ff7b5d2000-06-03 14:57:40 +0000169
Ben Lindstrome2fb8d32000-12-28 00:07:07 +0000170#ifdef HAVE_LIBUTIL_H
171# include <libutil.h>
172#endif
173
andre2ff7b5d2000-06-03 14:57:40 +0000174/**
175 ** prototypes for helper functions in this file
176 **/
177
178#if HAVE_UTMP_H
andre2ff7b5d2000-06-03 14:57:40 +0000179void set_utmp_time(struct logininfo *li, struct utmp *ut);
180void construct_utmp(struct logininfo *li, struct utmp *ut);
181#endif
182
183#ifdef HAVE_UTMPX_H
andre2ff7b5d2000-06-03 14:57:40 +0000184void set_utmpx_time(struct logininfo *li, struct utmpx *ut);
185void construct_utmpx(struct logininfo *li, struct utmpx *ut);
186#endif
187
188int utmp_write_entry(struct logininfo *li);
189int utmpx_write_entry(struct logininfo *li);
190int wtmp_write_entry(struct logininfo *li);
191int wtmpx_write_entry(struct logininfo *li);
192int lastlog_write_entry(struct logininfo *li);
193int syslogin_write_entry(struct logininfo *li);
194
195int getlast_entry(struct logininfo *li);
196int lastlog_get_entry(struct logininfo *li);
197int wtmp_get_entry(struct logininfo *li);
198int wtmpx_get_entry(struct logininfo *li);
199
andre6bb92372000-06-19 08:20:03 +0000200/* pick the shortest string */
201#define MIN_SIZEOF(s1,s2) ( sizeof(s1) < sizeof(s2) ? sizeof(s1) : sizeof(s2) )
202
andre2ff7b5d2000-06-03 14:57:40 +0000203/**
204 ** platform-independent login functions
205 **/
206
andre6bb92372000-06-19 08:20:03 +0000207/* login_login(struct logininfo *) -Record a login
208 *
209 * Call with a pointer to a struct logininfo initialised with
210 * login_init_entry() or login_alloc_entry()
211 *
212 * Returns:
213 * >0 if successful
214 * 0 on failure (will use OpenSSH's logging facilities for diagnostics)
215 */
andre61e67252000-06-04 17:07:49 +0000216int
217login_login (struct logininfo *li)
218{
219 li->type = LTYPE_LOGIN;
220 return login_write(li);
221}
222
223
andre6bb92372000-06-19 08:20:03 +0000224/* login_logout(struct logininfo *) - Record a logout
225 *
226 * Call as with login_login()
227 *
228 * Returns:
229 * >0 if successful
230 * 0 on failure (will use OpenSSH's logging facilities for diagnostics)
231 */
andre61e67252000-06-04 17:07:49 +0000232int
233login_logout(struct logininfo *li)
234{
235 li->type = LTYPE_LOGOUT;
236 return login_write(li);
237}
238
andre6bb92372000-06-19 08:20:03 +0000239/* login_get_lastlog_time(int) - Retrieve the last login time
240 *
241 * Retrieve the last login time for the given uid. Will try to use the
242 * system lastlog facilities if they are available, but will fall back
243 * to looking in wtmp/wtmpx if necessary
244 *
245 * Returns:
246 * 0 on failure, or if user has never logged in
247 * Time in seconds from the epoch if successful
248 *
249 * Useful preprocessor symbols:
250 * DISABLE_LASTLOG: If set, *never* even try to retrieve lastlog
251 * info
252 * USE_LASTLOG: If set, indicates the presence of system lastlog
253 * facilities. If this and DISABLE_LASTLOG are not set,
254 * try to retrieve lastlog information from wtmp/wtmpx.
255 */
andre61e67252000-06-04 17:07:49 +0000256unsigned int
257login_get_lastlog_time(const int uid)
258{
259 struct logininfo li;
260
andre6bb92372000-06-19 08:20:03 +0000261 if (login_get_lastlog(&li, uid))
262 return li.tv_sec;
263 else
264 return 0;
andre61e67252000-06-04 17:07:49 +0000265}
266
andre6bb92372000-06-19 08:20:03 +0000267/* login_get_lastlog(struct logininfo *, int) - Retrieve a lastlog entry
268 *
269 * Retrieve a logininfo structure populated (only partially) with
270 * information from the system lastlog data, or from wtmp/wtmpx if no
271 * system lastlog information exists.
272 *
273 * Note this routine must be given a pre-allocated logininfo.
274 *
275 * Returns:
276 * >0: A pointer to your struct logininfo if successful
277 * 0 on failure (will use OpenSSH's logging facilities for diagnostics)
278 *
279 */
andre61e67252000-06-04 17:07:49 +0000280struct logininfo *
281login_get_lastlog(struct logininfo *li, const int uid)
282{
andre6bb92372000-06-19 08:20:03 +0000283 struct passwd *pw;
andre6bb92372000-06-19 08:20:03 +0000284
Damien Miller348c9b72000-08-15 10:01:22 +1000285 memset(li, '\0', sizeof(*li));
andre61e67252000-06-04 17:07:49 +0000286 li->uid = uid;
andre6bb92372000-06-19 08:20:03 +0000287
Damien Miller53c5d462000-06-28 00:50:50 +1000288 /*
289 * If we don't have a 'real' lastlog, we need the username to
andre6bb92372000-06-19 08:20:03 +0000290 * reliably search wtmp(x) for the last login (see
Damien Miller53c5d462000-06-28 00:50:50 +1000291 * wtmp_get_entry().)
292 */
andre6bb92372000-06-19 08:20:03 +0000293 pw = getpwuid(uid);
Damien Millerdd47aa22000-06-27 11:18:27 +1000294 if (pw == NULL)
295 fatal("login_get_lastlog: Cannot find account for uid %i", uid);
296
andre98cabe02000-06-19 09:11:30 +0000297 /* No MIN_SIZEOF here - we absolutely *must not* truncate the
298 * username */
Damien Millerf8af08d2000-06-27 09:40:06 +1000299 strlcpy(li->username, pw->pw_name, sizeof(li->username));
Damien Millerdd47aa22000-06-27 11:18:27 +1000300
andre61e67252000-06-04 17:07:49 +0000301 if (getlast_entry(li))
302 return li;
303 else
Damien Millerdd47aa22000-06-27 11:18:27 +1000304 return NULL;
andre61e67252000-06-04 17:07:49 +0000305}
306
307
andre6bb92372000-06-19 08:20:03 +0000308/* login_alloc_entry(int, char*, char*, char*) - Allocate and initialise
309 * a logininfo structure
310 *
311 * This function creates a new struct logininfo, a data structure
312 * meant to carry the information required to portably record login info.
313 *
314 * Returns a pointer to a newly created struct logininfo. If memory
315 * allocation fails, the program halts.
316 */
andre61e67252000-06-04 17:07:49 +0000317struct
318logininfo *login_alloc_entry(int pid, const char *username,
319 const char *hostname, const char *line)
320{
andre2ff7b5d2000-06-03 14:57:40 +0000321 struct logininfo *newli;
322
Damien Miller348c9b72000-08-15 10:01:22 +1000323 newli = (struct logininfo *) xmalloc (sizeof(*newli));
andre61e67252000-06-04 17:07:49 +0000324 (void)login_init_entry(newli, pid, username, hostname, line);
325 return newli;
326}
andre2ff7b5d2000-06-03 14:57:40 +0000327
328
andre6bb92372000-06-19 08:20:03 +0000329/* login_free_entry(struct logininfo *) - free struct memory */
andre61e67252000-06-04 17:07:49 +0000330void
331login_free_entry(struct logininfo *li)
332{
333 xfree(li);
334}
335
andre2ff7b5d2000-06-03 14:57:40 +0000336
andre6bb92372000-06-19 08:20:03 +0000337/* login_init_entry(struct logininfo *, int, char*, char*, char*)
338 * - initialise a struct logininfo
339 *
340 * Populates a new struct logininfo, a data structure meant to carry
341 * the information required to portably record login info.
342 *
343 * Returns: 1
344 */
andre61e67252000-06-04 17:07:49 +0000345int
346login_init_entry(struct logininfo *li, int pid, const char *username,
347 const char *hostname, const char *line)
348{
Damien Millerf8af08d2000-06-27 09:40:06 +1000349 struct passwd *pw;
350
Damien Miller348c9b72000-08-15 10:01:22 +1000351 memset(li, 0, sizeof(*li));
andre2ff7b5d2000-06-03 14:57:40 +0000352
andre61e67252000-06-04 17:07:49 +0000353 li->pid = pid;
Damien Millerf8af08d2000-06-27 09:40:06 +1000354
andre2ff7b5d2000-06-03 14:57:40 +0000355 /* set the line information */
andre61e67252000-06-04 17:07:49 +0000356 if (line)
andre2ff7b5d2000-06-03 14:57:40 +0000357 line_fullname(li->line, line, sizeof(li->line));
andre2ff7b5d2000-06-03 14:57:40 +0000358
Damien Millerf8af08d2000-06-27 09:40:06 +1000359 if (username) {
andre2ff7b5d2000-06-03 14:57:40 +0000360 strlcpy(li->username, username, sizeof(li->username));
Damien Millerf8af08d2000-06-27 09:40:06 +1000361 pw = getpwnam(li->username);
362 if (pw == NULL)
363 fatal("login_init_entry: Cannot find user \"%s\"", li->username);
364 li->uid = pw->pw_uid;
365 }
Damien Millerdd47aa22000-06-27 11:18:27 +1000366
andre61e67252000-06-04 17:07:49 +0000367 if (hostname)
andre2ff7b5d2000-06-03 14:57:40 +0000368 strlcpy(li->hostname, hostname, sizeof(li->hostname));
Damien Millerf8af08d2000-06-27 09:40:06 +1000369
andre61e67252000-06-04 17:07:49 +0000370 return 1;
andre2ff7b5d2000-06-03 14:57:40 +0000371}
372
andre6bb92372000-06-19 08:20:03 +0000373/* login_set_current_time(struct logininfo *) - set the current time
374 *
375 * Set the current time in a logininfo structure. This function is
376 * meant to eliminate the need to deal with system dependencies for
377 * time handling.
378 */
andre2ff7b5d2000-06-03 14:57:40 +0000379void
andre61e67252000-06-04 17:07:49 +0000380login_set_current_time(struct logininfo *li)
381{
andre2ff7b5d2000-06-03 14:57:40 +0000382 struct timeval tv;
383
384 gettimeofday(&tv, NULL);
Damien Millerf8af08d2000-06-27 09:40:06 +1000385
386 li->tv_sec = tv.tv_sec;
387 li->tv_usec = tv.tv_usec;
andre2ff7b5d2000-06-03 14:57:40 +0000388}
389
andre61e67252000-06-04 17:07:49 +0000390/* copy a sockaddr_* into our logininfo */
andre2ff7b5d2000-06-03 14:57:40 +0000391void
andre61e67252000-06-04 17:07:49 +0000392login_set_addr(struct logininfo *li, const struct sockaddr *sa,
393 const unsigned int sa_size)
394{
395 unsigned int bufsize = sa_size;
396
397 /* make sure we don't overrun our union */
398 if (sizeof(li->hostaddr) < sa_size)
399 bufsize = sizeof(li->hostaddr);
400
401 memcpy((void *)&(li->hostaddr.sa), (const void *)sa, bufsize);
andre2ff7b5d2000-06-03 14:57:40 +0000402}
403
andre2ff7b5d2000-06-03 14:57:40 +0000404
andre61e67252000-06-04 17:07:49 +0000405/**
406 ** login_write: Call low-level recording functions based on autoconf
407 ** results
408 **/
andre2ff7b5d2000-06-03 14:57:40 +0000409int
andre61e67252000-06-04 17:07:49 +0000410login_write (struct logininfo *li)
411{
Damien Millerbac2d8a2000-09-05 16:13:06 +1100412#ifndef HAVE_CYGWIN
andre2ff7b5d2000-06-03 14:57:40 +0000413 if ((int)geteuid() != 0) {
414 log("Attempt to write login records by non-root user (aborting)");
415 return 1;
416 }
Damien Millerbac2d8a2000-09-05 16:13:06 +1100417#endif
Damien Millerdd47aa22000-06-27 11:18:27 +1000418
andre2ff7b5d2000-06-03 14:57:40 +0000419 /* set the timestamp */
420 login_set_current_time(li);
421#ifdef USE_LOGIN
422 syslogin_write_entry(li);
423#endif
424#ifdef USE_LASTLOG
425 if (li->type == LTYPE_LOGIN) {
426 lastlog_write_entry(li);
427 }
428#endif
429#ifdef USE_UTMP
430 utmp_write_entry(li);
431#endif
432#ifdef USE_WTMP
433 wtmp_write_entry(li);
434#endif
435#ifdef USE_UTMPX
436 utmpx_write_entry(li);
437#endif
438#ifdef USE_WTMPX
439 wtmpx_write_entry(li);
440#endif
441 return 0;
442}
443
andre2ff7b5d2000-06-03 14:57:40 +0000444/**
andre61e67252000-06-04 17:07:49 +0000445 ** getlast_entry: Call low-level functions to retrieve the last login
446 ** time.
andre2ff7b5d2000-06-03 14:57:40 +0000447 **/
448
andre61e67252000-06-04 17:07:49 +0000449/* take the uid in li and return the last login time */
450int
451getlast_entry(struct logininfo *li)
452{
453#ifdef USE_LASTLOG
Damien Miller53c5d462000-06-28 00:50:50 +1000454 return(lastlog_get_entry(li));
Damien Millerdd47aa22000-06-27 11:18:27 +1000455#else /* !USE_LASTLOG */
andre61e67252000-06-04 17:07:49 +0000456
Damien Millerdd47aa22000-06-27 11:18:27 +1000457#ifdef DISABLE_LASTLOG
andreecaabf12000-06-12 22:21:44 +0000458 /* On some systems we shouldn't even try to obtain last login
459 * time, e.g. AIX */
460 return 0;
Damien Millerdd47aa22000-06-27 11:18:27 +1000461# else /* DISABLE_LASTLOG */
andre61e67252000-06-04 17:07:49 +0000462 /* Try to retrieve the last login time from wtmp */
Damien Millerdd47aa22000-06-27 11:18:27 +1000463# if defined(USE_WTMP) && (defined(HAVE_TIME_IN_UTMP) || defined(HAVE_TV_IN_UTMP))
andre61e67252000-06-04 17:07:49 +0000464 /* retrieve last login time from utmp */
Damien Millerdd47aa22000-06-27 11:18:27 +1000465 return (wtmp_get_entry(li));
466# else /* defined(USE_WTMP) && (defined(HAVE_TIME_IN_UTMP) || defined(HAVE_TV_IN_UTMP)) */
andre61e67252000-06-04 17:07:49 +0000467 /* If wtmp isn't available, try wtmpx */
Damien Millerdd47aa22000-06-27 11:18:27 +1000468# if defined(USE_WTMPX) && (defined(HAVE_TIME_IN_UTMPX) || defined(HAVE_TV_IN_UTMPX))
andre61e67252000-06-04 17:07:49 +0000469 /* retrieve last login time from utmpx */
Damien Millerdd47aa22000-06-27 11:18:27 +1000470 return (wtmpx_get_entry(li));
471# else
andre61e67252000-06-04 17:07:49 +0000472 /* Give up: No means of retrieving last login time */
473 return 0;
Damien Millerdd47aa22000-06-27 11:18:27 +1000474# endif /* USE_WTMPX && (HAVE_TIME_IN_UTMPX || HAVE_TV_IN_UTMPX) */
475# endif /* USE_WTMP && (HAVE_TIME_IN_UTMP || HAVE_TV_IN_UTMP) */
476# endif /* DISABLE_LASTLOG */
477#endif /* USE_LASTLOG */
andre61e67252000-06-04 17:07:49 +0000478}
479
480
481
andre2ff7b5d2000-06-03 14:57:40 +0000482/*
andre61e67252000-06-04 17:07:49 +0000483 * 'line' string utility functions
484 *
485 * These functions process the 'line' string into one of three forms:
486 *
andre2ff7b5d2000-06-03 14:57:40 +0000487 * 1. The full filename (including '/dev')
488 * 2. The stripped name (excluding '/dev')
andre61e67252000-06-04 17:07:49 +0000489 * 3. The abbreviated name (e.g. /dev/ttyp00 -> yp00
490 * /dev/pts/1 -> ts/1 )
andre2ff7b5d2000-06-03 14:57:40 +0000491 *
492 * Form 3 is used on some systems to identify a .tmp.? entry when
493 * attempting to remove it. Typically both addition and removal is
andre61e67252000-06-04 17:07:49 +0000494 * performed by one application - say, sshd - so as long as the choice
495 * uniquely identifies a terminal it's ok.
andre2ff7b5d2000-06-03 14:57:40 +0000496 */
497
498
andre61e67252000-06-04 17:07:49 +0000499/* line_fullname(): add the leading '/dev/' if it doesn't exist make
500 * sure dst has enough space, if not just copy src (ugh) */
andre2ff7b5d2000-06-03 14:57:40 +0000501char *
andre61e67252000-06-04 17:07:49 +0000502line_fullname(char *dst, const char *src, int dstsize)
503{
andre2ff7b5d2000-06-03 14:57:40 +0000504 memset(dst, '\0', dstsize);
Damien Millerf5a81472000-09-30 21:34:44 +1100505 if ((strncmp(src, "/dev/", 5) == 0) || (dstsize < (strlen(src) + 5))) {
andre2ff7b5d2000-06-03 14:57:40 +0000506 strlcpy(dst, src, dstsize);
Damien Millerf5a81472000-09-30 21:34:44 +1100507 } else {
Damien Miller1a132252000-06-13 21:23:17 +1000508 strlcpy(dst, "/dev/", dstsize);
andre2ff7b5d2000-06-03 14:57:40 +0000509 strlcat(dst, src, dstsize);
510 }
511 return dst;
512}
513
andre61e67252000-06-04 17:07:49 +0000514/* line_stripname(): strip the leading '/dev' if it exists, return dst */
andre2ff7b5d2000-06-03 14:57:40 +0000515char *
andre61e67252000-06-04 17:07:49 +0000516line_stripname(char *dst, const char *src, int dstsize)
517{
andre2ff7b5d2000-06-03 14:57:40 +0000518 memset(dst, '\0', dstsize);
519 if (strncmp(src, "/dev/", 5) == 0)
Damien Millerf5a81472000-09-30 21:34:44 +1100520 strlcpy(dst, src + 5, dstsize);
andre2ff7b5d2000-06-03 14:57:40 +0000521 else
522 strlcpy(dst, src, dstsize);
523 return dst;
andre61e67252000-06-04 17:07:49 +0000524}
525
andre61e67252000-06-04 17:07:49 +0000526/* line_abbrevname(): Return the abbreviated (usually four-character)
527 * form of the line (Just use the last <dstsize> characters of the
528 * full name.)
529 *
530 * NOTE: use strncpy because we do NOT necessarily want zero
531 * termination */
andre2ff7b5d2000-06-03 14:57:40 +0000532char *
Damien Millerdd47aa22000-06-27 11:18:27 +1000533line_abbrevname(char *dst, const char *src, int dstsize)
534{
535 size_t len;
536
andre2ff7b5d2000-06-03 14:57:40 +0000537 memset(dst, '\0', dstsize);
Damien Millerdd47aa22000-06-27 11:18:27 +1000538
Damien Miller8e81ed32000-07-01 13:17:42 +1000539 /* Always skip prefix if present */
Damien Millerf5a81472000-09-30 21:34:44 +1100540#ifdef sgi
541 if (strncmp(src, "/dev/tty", 8) == 0)
542 src += 8;
543#else
Damien Miller8e81ed32000-07-01 13:17:42 +1000544 if (strncmp(src, "/dev/", 5) == 0)
545 src += 5;
Damien Millerf5a81472000-09-30 21:34:44 +1100546#endif
Damien Miller8e81ed32000-07-01 13:17:42 +1000547
Damien Millerdd47aa22000-06-27 11:18:27 +1000548 len = strlen(src);
549
Damien Miller8e81ed32000-07-01 13:17:42 +1000550 if (len > 0) {
551 if (((int)len - dstsize) > 0)
552 src += ((int)len - dstsize);
553
554 /* note: _don't_ change this to strlcpy */
555 strncpy(dst, src, (size_t)dstsize);
Damien Millerdd47aa22000-06-27 11:18:27 +1000556 }
557
andre2ff7b5d2000-06-03 14:57:40 +0000558 return dst;
559}
560
andre2ff7b5d2000-06-03 14:57:40 +0000561/**
562 ** utmp utility functions
andre61e67252000-06-04 17:07:49 +0000563 **
564 ** These functions manipulate struct utmp, taking system differences
565 ** into account.
andre2ff7b5d2000-06-03 14:57:40 +0000566 **/
567
568#if defined(USE_UTMP) || defined (USE_WTMP) || defined (USE_LOGIN)
569
andre2ff7b5d2000-06-03 14:57:40 +0000570/* build the utmp structure */
571void
andre61e67252000-06-04 17:07:49 +0000572set_utmp_time(struct logininfo *li, struct utmp *ut)
573{
Damien Millerdd47aa22000-06-27 11:18:27 +1000574# ifdef HAVE_TV_IN_UTMP
andre2ff7b5d2000-06-03 14:57:40 +0000575 ut->ut_tv.tv_sec = li->tv_sec;
576 ut->ut_tv.tv_usec = li->tv_usec;
Damien Millerdd47aa22000-06-27 11:18:27 +1000577# else
andre2ff7b5d2000-06-03 14:57:40 +0000578# ifdef HAVE_TIME_IN_UTMP
579 ut->ut_time = li->tv_sec;
580# endif
Damien Millerdd47aa22000-06-27 11:18:27 +1000581# endif
andre2ff7b5d2000-06-03 14:57:40 +0000582}
583
584void
585construct_utmp(struct logininfo *li,
andre61e67252000-06-04 17:07:49 +0000586 struct utmp *ut)
587{
Damien Miller348c9b72000-08-15 10:01:22 +1000588 memset(ut, '\0', sizeof(*ut));
andre6bb92372000-06-19 08:20:03 +0000589
590 /* First fill out fields used for both logins and logouts */
591
Damien Millerdd47aa22000-06-27 11:18:27 +1000592# ifdef HAVE_ID_IN_UTMP
andre2ff7b5d2000-06-03 14:57:40 +0000593 line_abbrevname(ut->ut_id, li->line, sizeof(ut->ut_id));
Damien Millerdd47aa22000-06-27 11:18:27 +1000594# endif
andre2ff7b5d2000-06-03 14:57:40 +0000595
Damien Millerdd47aa22000-06-27 11:18:27 +1000596# ifdef HAVE_TYPE_IN_UTMP
andre6bb92372000-06-19 08:20:03 +0000597 /* This is done here to keep utmp constants out of struct logininfo */
andre2ff7b5d2000-06-03 14:57:40 +0000598 switch (li->type) {
599 case LTYPE_LOGIN:
600 ut->ut_type = USER_PROCESS;
601 break;
602 case LTYPE_LOGOUT:
603 ut->ut_type = DEAD_PROCESS;
604 break;
605 }
Damien Millerdd47aa22000-06-27 11:18:27 +1000606# endif
andre6bb92372000-06-19 08:20:03 +0000607 set_utmp_time(li, ut);
andre2ff7b5d2000-06-03 14:57:40 +0000608
andre6bb92372000-06-19 08:20:03 +0000609 line_stripname(ut->ut_line, li->line, sizeof(ut->ut_line));
Damien Millerdd47aa22000-06-27 11:18:27 +1000610
611# ifdef HAVE_PID_IN_UTMP
andre2ff7b5d2000-06-03 14:57:40 +0000612 ut->ut_pid = li->pid;
Damien Millerdd47aa22000-06-27 11:18:27 +1000613# endif
andre6bb92372000-06-19 08:20:03 +0000614
615 /* If we're logging out, leave all other fields blank */
616 if (li->type == LTYPE_LOGOUT)
617 return;
618
Damien Millerdd47aa22000-06-27 11:18:27 +1000619 /*
620 * These fields are only used when logging in, and are blank
621 * for logouts.
622 */
andre6bb92372000-06-19 08:20:03 +0000623
624 /* Use strncpy because we don't necessarily want null termination */
Damien Miller7a0e5dc2000-07-11 12:15:54 +1000625 strncpy(ut->ut_name, li->username, MIN_SIZEOF(ut->ut_name, li->username));
Damien Millerdd47aa22000-06-27 11:18:27 +1000626# ifdef HAVE_HOST_IN_UTMP
andre6bb92372000-06-19 08:20:03 +0000627 strncpy(ut->ut_host, li->hostname, MIN_SIZEOF(ut->ut_host, li->hostname));
Damien Millerdd47aa22000-06-27 11:18:27 +1000628# endif
629# ifdef HAVE_ADDR_IN_UTMP
andre61e67252000-06-04 17:07:49 +0000630 /* this is just a 32-bit IP address */
631 if (li->hostaddr.sa.sa_family == AF_INET)
632 ut->ut_addr = li->hostaddr.sa_in.sin_addr.s_addr;
Damien Millerdd47aa22000-06-27 11:18:27 +1000633# endif
andre61e67252000-06-04 17:07:49 +0000634}
Damien Millerdd47aa22000-06-27 11:18:27 +1000635#endif /* USE_UTMP || USE_WTMP || USE_LOGIN */
andre61e67252000-06-04 17:07:49 +0000636
andre2ff7b5d2000-06-03 14:57:40 +0000637/**
638 ** utmpx utility functions
andre61e67252000-06-04 17:07:49 +0000639 **
640 ** These functions manipulate struct utmpx, accounting for system
641 ** variations.
andre2ff7b5d2000-06-03 14:57:40 +0000642 **/
643
644#if defined(USE_UTMPX) || defined (USE_WTMPX)
andre2ff7b5d2000-06-03 14:57:40 +0000645/* build the utmpx structure */
646void
andre61e67252000-06-04 17:07:49 +0000647set_utmpx_time(struct logininfo *li, struct utmpx *utx)
648{
Damien Millerdd47aa22000-06-27 11:18:27 +1000649# ifdef HAVE_TV_IN_UTMPX
andre2ff7b5d2000-06-03 14:57:40 +0000650 utx->ut_tv.tv_sec = li->tv_sec;
651 utx->ut_tv.tv_usec = li->tv_usec;
Damien Millerdd47aa22000-06-27 11:18:27 +1000652# else /* HAVE_TV_IN_UTMPX */
andre2ff7b5d2000-06-03 14:57:40 +0000653# ifdef HAVE_TIME_IN_UTMPX
654 utx->ut_time = li->tv_sec;
Damien Millerdd47aa22000-06-27 11:18:27 +1000655# endif /* HAVE_TIME_IN_UTMPX */
656# endif /* HAVE_TV_IN_UTMPX */
andre2ff7b5d2000-06-03 14:57:40 +0000657}
658
andre61e67252000-06-04 17:07:49 +0000659void
660construct_utmpx(struct logininfo *li, struct utmpx *utx)
661{
Damien Miller348c9b72000-08-15 10:01:22 +1000662 memset(utx, '\0', sizeof(*utx));
Damien Miller8e81ed32000-07-01 13:17:42 +1000663# ifdef HAVE_ID_IN_UTMPX
andre2ff7b5d2000-06-03 14:57:40 +0000664 line_abbrevname(utx->ut_id, li->line, sizeof(utx->ut_id));
Damien Miller8e81ed32000-07-01 13:17:42 +1000665# endif
andre2ff7b5d2000-06-03 14:57:40 +0000666
667 /* this is done here to keep utmp constants out of loginrec.h */
668 switch (li->type) {
669 case LTYPE_LOGIN:
670 utx->ut_type = USER_PROCESS;
671 break;
672 case LTYPE_LOGOUT:
673 utx->ut_type = DEAD_PROCESS;
674 break;
675 }
andre2ff7b5d2000-06-03 14:57:40 +0000676 line_stripname(utx->ut_line, li->line, sizeof(utx->ut_line));
andre2ff7b5d2000-06-03 14:57:40 +0000677 set_utmpx_time(li, utx);
andre6bb92372000-06-19 08:20:03 +0000678 utx->ut_pid = li->pid;
679
680 if (li->type == LTYPE_LOGOUT)
681 return;
682
Damien Millerdd47aa22000-06-27 11:18:27 +1000683 /*
684 * These fields are only used when logging in, and are blank
685 * for logouts.
686 */
andre6bb92372000-06-19 08:20:03 +0000687
688 /* strncpy(): Don't necessarily want null termination */
Damien Miller7a0e5dc2000-07-11 12:15:54 +1000689 strncpy(utx->ut_name, li->username, MIN_SIZEOF(utx->ut_name, li->username));
Damien Millerdd47aa22000-06-27 11:18:27 +1000690# ifdef HAVE_HOST_IN_UTMPX
andre6bb92372000-06-19 08:20:03 +0000691 strncpy(utx->ut_host, li->hostname, MIN_SIZEOF(utx->ut_host, li->hostname));
Damien Millerdd47aa22000-06-27 11:18:27 +1000692# endif
693# ifdef HAVE_ADDR_IN_UTMPX
Damien Millerd6f204d2000-09-23 13:57:27 +1100694 /* this is just a 32-bit IP address */
695 if (li->hostaddr.sa.sa_family == AF_INET)
696 utx->ut_addr = li->hostaddr.sa_in.sin_addr.s_addr;
Damien Millerdd47aa22000-06-27 11:18:27 +1000697# endif
698# ifdef HAVE_SYSLEN_IN_UTMPX
andre6bb92372000-06-19 08:20:03 +0000699 /* ut_syslen is the length of the utx_host string */
700 utx->ut_syslen = MIN(strlen(li->hostname), sizeof(utx->ut_host));
Damien Millerdd47aa22000-06-27 11:18:27 +1000701# endif
andre61e67252000-06-04 17:07:49 +0000702}
Damien Millerdd47aa22000-06-27 11:18:27 +1000703#endif /* USE_UTMPX || USE_WTMPX */
andre2ff7b5d2000-06-03 14:57:40 +0000704
705/**
andre61e67252000-06-04 17:07:49 +0000706 ** Low-level utmp functions
andre2ff7b5d2000-06-03 14:57:40 +0000707 **/
708
709/* FIXME: (ATL) utmp_write_direct needs testing */
andre2ff7b5d2000-06-03 14:57:40 +0000710#ifdef USE_UTMP
711
andre2ff7b5d2000-06-03 14:57:40 +0000712/* if we can, use pututline() etc. */
Damien Millerdd47aa22000-06-27 11:18:27 +1000713# if !defined(DISABLE_PUTUTLINE) && defined(HAVE_SETUTENT) && \
714 defined(HAVE_PUTUTLINE)
andre2ff7b5d2000-06-03 14:57:40 +0000715# define UTMP_USE_LIBRARY
Damien Millerdd47aa22000-06-27 11:18:27 +1000716# endif
andre2ff7b5d2000-06-03 14:57:40 +0000717
718
719/* write a utmp entry with the system's help (pututline() and pals) */
Damien Millerdd47aa22000-06-27 11:18:27 +1000720# ifdef UTMP_USE_LIBRARY
andre2ff7b5d2000-06-03 14:57:40 +0000721static int
andre61e67252000-06-04 17:07:49 +0000722utmp_write_library(struct logininfo *li, struct utmp *ut)
723{
andre2ff7b5d2000-06-03 14:57:40 +0000724 setutent();
725 pututline(ut);
726
Damien Millerdd47aa22000-06-27 11:18:27 +1000727# ifdef HAVE_ENDUTENT
andre2ff7b5d2000-06-03 14:57:40 +0000728 endutent();
Damien Millerdd47aa22000-06-27 11:18:27 +1000729# endif
andre2ff7b5d2000-06-03 14:57:40 +0000730 return 1;
andre61e67252000-06-04 17:07:49 +0000731}
Damien Millerdd47aa22000-06-27 11:18:27 +1000732# else /* UTMP_USE_LIBRARY */
andre2ff7b5d2000-06-03 14:57:40 +0000733
734/* write a utmp entry direct to the file */
andre61e67252000-06-04 17:07:49 +0000735/* This is a slightly modification of code in OpenBSD's login.c */
andre2ff7b5d2000-06-03 14:57:40 +0000736static int
andre61e67252000-06-04 17:07:49 +0000737utmp_write_direct(struct logininfo *li, struct utmp *ut)
738{
andre2ff7b5d2000-06-03 14:57:40 +0000739 struct utmp old_ut;
740 register int fd;
741 int tty;
742
andre6bb92372000-06-19 08:20:03 +0000743 /* FIXME: (ATL) ttyslot() needs local implementation */
Damien Miller348c9b72000-08-15 10:01:22 +1000744
Damien Millere5192fa2000-08-29 14:30:37 +1100745#if defined(HAVE_GETTTYENT)
Damien Miller348c9b72000-08-15 10:01:22 +1000746 register struct ttyent *ty;
747
748 tty=0;
749
750 setttyent();
751 while ((struct ttyent *)0 != (ty = getttyent())) {
752 tty++;
753 if (!strncmp(ty->ty_name, ut->ut_line, sizeof(ut->ut_line)))
754 break;
755 }
756 endttyent();
757
758 if((struct ttyent *)0 == ty) {
759 log("utmp_write_entry: tty not found");
760 return(1);
761 }
762#else /* FIXME */
763
andre2ff7b5d2000-06-03 14:57:40 +0000764 tty = ttyslot(); /* seems only to work for /dev/ttyp? style names */
765
Damien Millere5192fa2000-08-29 14:30:37 +1100766#endif /* HAVE_GETTTYENT */
Damien Miller348c9b72000-08-15 10:01:22 +1000767
andre2ff7b5d2000-06-03 14:57:40 +0000768 if (tty > 0 && (fd = open(UTMP_FILE, O_RDWR|O_CREAT, 0644)) >= 0) {
769 (void)lseek(fd, (off_t)(tty * sizeof(struct utmp)), SEEK_SET);
770 /*
771 * Prevent luser from zero'ing out ut_host.
772 * If the new ut_line is empty but the old one is not
Damien Miller7a0e5dc2000-07-11 12:15:54 +1000773 * and ut_line and ut_name match, preserve the old ut_line.
andre2ff7b5d2000-06-03 14:57:40 +0000774 */
Damien Miller53c5d462000-06-28 00:50:50 +1000775 if (atomicio(read, fd, &old_ut, sizeof(old_ut)) == sizeof(old_ut) &&
776 (ut->ut_host[0] == '\0') && (old_ut.ut_host[0] != '\0') &&
777 (strncmp(old_ut.ut_line, ut->ut_line, sizeof(ut->ut_line)) == 0) &&
Damien Miller7a0e5dc2000-07-11 12:15:54 +1000778 (strncmp(old_ut.ut_name, ut->ut_name, sizeof(ut->ut_name)) == 0)) {
andre2ff7b5d2000-06-03 14:57:40 +0000779 (void)memcpy(ut->ut_host, old_ut.ut_host, sizeof(ut->ut_host));
Damien Miller53c5d462000-06-28 00:50:50 +1000780 }
781
andre2ff7b5d2000-06-03 14:57:40 +0000782 (void)lseek(fd, (off_t)(tty * sizeof(struct utmp)), SEEK_SET);
Damien Miller36ccb5c2000-08-09 16:34:27 +1000783 if (atomicio(write, fd, ut, sizeof(*ut)) != sizeof(*ut))
andre2ff7b5d2000-06-03 14:57:40 +0000784 log("utmp_write_direct: error writing %s: %s",
andre6bb92372000-06-19 08:20:03 +0000785 UTMP_FILE, strerror(errno));
andre2ff7b5d2000-06-03 14:57:40 +0000786
787 (void)close(fd);
788 return 1;
Damien Miller53c5d462000-06-28 00:50:50 +1000789 } else {
andre2ff7b5d2000-06-03 14:57:40 +0000790 return 0;
Damien Miller53c5d462000-06-28 00:50:50 +1000791 }
andre61e67252000-06-04 17:07:49 +0000792}
Damien Millerdd47aa22000-06-27 11:18:27 +1000793# endif /* UTMP_USE_LIBRARY */
andre2ff7b5d2000-06-03 14:57:40 +0000794
795static int
andre61e67252000-06-04 17:07:49 +0000796utmp_perform_login(struct logininfo *li)
797{
andre2ff7b5d2000-06-03 14:57:40 +0000798 struct utmp ut;
799
800 construct_utmp(li, &ut);
Damien Millerdd47aa22000-06-27 11:18:27 +1000801# ifdef UTMP_USE_LIBRARY
andre2ff7b5d2000-06-03 14:57:40 +0000802 if (!utmp_write_library(li, &ut)) {
andre6bb92372000-06-19 08:20:03 +0000803 log("utmp_perform_login: utmp_write_library() failed");
andre2ff7b5d2000-06-03 14:57:40 +0000804 return 0;
805 }
Damien Millerdd47aa22000-06-27 11:18:27 +1000806# else
andre2ff7b5d2000-06-03 14:57:40 +0000807 if (!utmp_write_direct(li, &ut)) {
808 log("utmp_perform_login: utmp_write_direct() failed");
809 return 0;
810 }
Damien Millerdd47aa22000-06-27 11:18:27 +1000811# endif
andre2ff7b5d2000-06-03 14:57:40 +0000812 return 1;
andre61e67252000-06-04 17:07:49 +0000813}
andre2ff7b5d2000-06-03 14:57:40 +0000814
815
816static int
andre61e67252000-06-04 17:07:49 +0000817utmp_perform_logout(struct logininfo *li)
818{
andre2ff7b5d2000-06-03 14:57:40 +0000819 struct utmp ut;
820
andre6bb92372000-06-19 08:20:03 +0000821 construct_utmp(li, &ut);
Damien Millerdd47aa22000-06-27 11:18:27 +1000822# ifdef UTMP_USE_LIBRARY
andre6bb92372000-06-19 08:20:03 +0000823 if (!utmp_write_library(li, &ut)) {
824 log("utmp_perform_logout: utmp_write_library() failed");
825 return 0;
826 }
Damien Millerdd47aa22000-06-27 11:18:27 +1000827# else
andre6bb92372000-06-19 08:20:03 +0000828 if (!utmp_write_direct(li, &ut)) {
829 log("utmp_perform_logout: utmp_write_direct() failed");
830 return 0;
831 }
Damien Millerdd47aa22000-06-27 11:18:27 +1000832# endif
andre2ff7b5d2000-06-03 14:57:40 +0000833 return 1;
andre61e67252000-06-04 17:07:49 +0000834}
andre2ff7b5d2000-06-03 14:57:40 +0000835
836
837int
andre61e67252000-06-04 17:07:49 +0000838utmp_write_entry(struct logininfo *li)
839{
andre2ff7b5d2000-06-03 14:57:40 +0000840 switch(li->type) {
841 case LTYPE_LOGIN:
842 return utmp_perform_login(li);
843
844 case LTYPE_LOGOUT:
845 return utmp_perform_logout(li);
846
847 default:
848 log("utmp_write_entry: invalid type field");
849 return 0;
850 }
andre61e67252000-06-04 17:07:49 +0000851}
Damien Millerdd47aa22000-06-27 11:18:27 +1000852#endif /* USE_UTMP */
andre2ff7b5d2000-06-03 14:57:40 +0000853
854
855/**
andre61e67252000-06-04 17:07:49 +0000856 ** Low-level utmpx functions
andre2ff7b5d2000-06-03 14:57:40 +0000857 **/
858
859/* not much point if we don't want utmpx entries */
860#ifdef USE_UTMPX
861
andre2ff7b5d2000-06-03 14:57:40 +0000862/* if we have the wherewithall, use pututxline etc. */
Damien Millerdd47aa22000-06-27 11:18:27 +1000863# if !defined(DISABLE_PUTUTXLINE) && defined(HAVE_SETUTXENT) && \
864 defined(HAVE_PUTUTXLINE)
andre2ff7b5d2000-06-03 14:57:40 +0000865# define UTMPX_USE_LIBRARY
Damien Millerdd47aa22000-06-27 11:18:27 +1000866# endif
andre2ff7b5d2000-06-03 14:57:40 +0000867
868
869/* write a utmpx entry with the system's help (pututxline() and pals) */
Damien Millerdd47aa22000-06-27 11:18:27 +1000870# ifdef UTMPX_USE_LIBRARY
andre2ff7b5d2000-06-03 14:57:40 +0000871static int
andre61e67252000-06-04 17:07:49 +0000872utmpx_write_library(struct logininfo *li, struct utmpx *utx)
873{
andre2ff7b5d2000-06-03 14:57:40 +0000874 setutxent();
875 pututxline(utx);
876
Damien Millerdd47aa22000-06-27 11:18:27 +1000877# ifdef HAVE_ENDUTXENT
andre2ff7b5d2000-06-03 14:57:40 +0000878 endutxent();
Damien Millerdd47aa22000-06-27 11:18:27 +1000879# endif
andre2ff7b5d2000-06-03 14:57:40 +0000880 return 1;
andre61e67252000-06-04 17:07:49 +0000881}
andre2ff7b5d2000-06-03 14:57:40 +0000882
Damien Millerdd47aa22000-06-27 11:18:27 +1000883# else /* UTMPX_USE_LIBRARY */
andre2ff7b5d2000-06-03 14:57:40 +0000884
885/* write a utmp entry direct to the file */
886static int
andre61e67252000-06-04 17:07:49 +0000887utmpx_write_direct(struct logininfo *li, struct utmpx *utx)
888{
andre2ff7b5d2000-06-03 14:57:40 +0000889 log("utmpx_write_direct: not implemented!");
890 return 0;
andre61e67252000-06-04 17:07:49 +0000891}
Damien Millerdd47aa22000-06-27 11:18:27 +1000892# endif /* UTMPX_USE_LIBRARY */
andre2ff7b5d2000-06-03 14:57:40 +0000893
894static int
andre61e67252000-06-04 17:07:49 +0000895utmpx_perform_login(struct logininfo *li)
896{
andre2ff7b5d2000-06-03 14:57:40 +0000897 struct utmpx utx;
898
899 construct_utmpx(li, &utx);
Damien Millerdd47aa22000-06-27 11:18:27 +1000900# ifdef UTMPX_USE_LIBRARY
andre2ff7b5d2000-06-03 14:57:40 +0000901 if (!utmpx_write_library(li, &utx)) {
902 log("utmpx_perform_login: utmp_write_library() failed");
903 return 0;
904 }
Damien Millerdd47aa22000-06-27 11:18:27 +1000905# else
andre2ff7b5d2000-06-03 14:57:40 +0000906 if (!utmpx_write_direct(li, &ut)) {
907 log("utmpx_perform_login: utmp_write_direct() failed");
908 return 0;
909 }
Damien Millerdd47aa22000-06-27 11:18:27 +1000910# endif
andre2ff7b5d2000-06-03 14:57:40 +0000911 return 1;
andre61e67252000-06-04 17:07:49 +0000912}
andre2ff7b5d2000-06-03 14:57:40 +0000913
914
915static int
andre61e67252000-06-04 17:07:49 +0000916utmpx_perform_logout(struct logininfo *li)
917{
andre2ff7b5d2000-06-03 14:57:40 +0000918 struct utmpx utx;
919
920 memset(&utx, '\0', sizeof(utx));
921 set_utmpx_time(li, &utx);
922 line_stripname(utx.ut_line, li->line, sizeof(utx.ut_line));
Damien Millerdd47aa22000-06-27 11:18:27 +1000923# ifdef HAVE_ID_IN_UTMPX
andre2ff7b5d2000-06-03 14:57:40 +0000924 line_abbrevname(utx.ut_id, li->line, sizeof(utx.ut_id));
Damien Millerdd47aa22000-06-27 11:18:27 +1000925# endif
926# ifdef HAVE_TYPE_IN_UTMPX
andre2ff7b5d2000-06-03 14:57:40 +0000927 utx.ut_type = DEAD_PROCESS;
Damien Millerdd47aa22000-06-27 11:18:27 +1000928# endif
andre2ff7b5d2000-06-03 14:57:40 +0000929
Damien Millerdd47aa22000-06-27 11:18:27 +1000930# ifdef UTMPX_USE_LIBRARY
andre2ff7b5d2000-06-03 14:57:40 +0000931 utmpx_write_library(li, &utx);
Damien Millerdd47aa22000-06-27 11:18:27 +1000932# else
andre2ff7b5d2000-06-03 14:57:40 +0000933 utmpx_write_direct(li, &utx);
Damien Millerdd47aa22000-06-27 11:18:27 +1000934# endif
andre2ff7b5d2000-06-03 14:57:40 +0000935 return 1;
andre61e67252000-06-04 17:07:49 +0000936}
andre2ff7b5d2000-06-03 14:57:40 +0000937
andre2ff7b5d2000-06-03 14:57:40 +0000938int
andre61e67252000-06-04 17:07:49 +0000939utmpx_write_entry(struct logininfo *li)
940{
andre2ff7b5d2000-06-03 14:57:40 +0000941 switch(li->type) {
942 case LTYPE_LOGIN:
943 return utmpx_perform_login(li);
944 case LTYPE_LOGOUT:
945 return utmpx_perform_logout(li);
946 default:
947 log("utmpx_write_entry: invalid type field");
948 return 0;
949 }
andre61e67252000-06-04 17:07:49 +0000950}
Damien Millerdd47aa22000-06-27 11:18:27 +1000951#endif /* USE_UTMPX */
andre2ff7b5d2000-06-03 14:57:40 +0000952
953
954/**
andre61e67252000-06-04 17:07:49 +0000955 ** Low-level wtmp functions
andre2ff7b5d2000-06-03 14:57:40 +0000956 **/
957
958#ifdef USE_WTMP
959
andre2ff7b5d2000-06-03 14:57:40 +0000960/* write a wtmp entry direct to the end of the file */
andre61e67252000-06-04 17:07:49 +0000961/* This is a slight modification of code in OpenBSD's logwtmp.c */
andre2ff7b5d2000-06-03 14:57:40 +0000962static int
andre61e67252000-06-04 17:07:49 +0000963wtmp_write(struct logininfo *li, struct utmp *ut)
964{
andre2ff7b5d2000-06-03 14:57:40 +0000965 struct stat buf;
966 int fd, ret = 1;
967
968 if ((fd = open(WTMP_FILE, O_WRONLY|O_APPEND, 0)) < 0) {
969 log("wtmp_write: problem writing %s: %s",
970 WTMP_FILE, strerror(errno));
971 return 0;
972 }
andre61e67252000-06-04 17:07:49 +0000973 if (fstat(fd, &buf) == 0)
Damien Miller53c5d462000-06-28 00:50:50 +1000974 if (atomicio(write, fd, ut, sizeof(*ut)) != sizeof(*ut)) {
andre2ff7b5d2000-06-03 14:57:40 +0000975 ftruncate(fd, buf.st_size);
976 log("wtmp_write: problem writing %s: %s",
977 WTMP_FILE, strerror(errno));
978 ret = 0;
979 }
980 (void)close(fd);
andre2ff7b5d2000-06-03 14:57:40 +0000981 return ret;
andre61e67252000-06-04 17:07:49 +0000982}
andre2ff7b5d2000-06-03 14:57:40 +0000983
andre2ff7b5d2000-06-03 14:57:40 +0000984static int
Damien Millerdd47aa22000-06-27 11:18:27 +1000985wtmp_perform_login(struct logininfo *li)
986{
andre2ff7b5d2000-06-03 14:57:40 +0000987 struct utmp ut;
988
989 construct_utmp(li, &ut);
990 return wtmp_write(li, &ut);
andre61e67252000-06-04 17:07:49 +0000991}
andre2ff7b5d2000-06-03 14:57:40 +0000992
993
994static int
andre61e67252000-06-04 17:07:49 +0000995wtmp_perform_logout(struct logininfo *li)
996{
andre2ff7b5d2000-06-03 14:57:40 +0000997 struct utmp ut;
998
999 construct_utmp(li, &ut);
andre2ff7b5d2000-06-03 14:57:40 +00001000 return wtmp_write(li, &ut);
andre61e67252000-06-04 17:07:49 +00001001}
andre2ff7b5d2000-06-03 14:57:40 +00001002
1003
1004int
andre61e67252000-06-04 17:07:49 +00001005wtmp_write_entry(struct logininfo *li)
1006{
andre2ff7b5d2000-06-03 14:57:40 +00001007 switch(li->type) {
1008 case LTYPE_LOGIN:
1009 return wtmp_perform_login(li);
1010 case LTYPE_LOGOUT:
1011 return wtmp_perform_logout(li);
1012 default:
1013 log("wtmp_write_entry: invalid type field");
1014 return 0;
1015 }
andre61e67252000-06-04 17:07:49 +00001016}
andre2ff7b5d2000-06-03 14:57:40 +00001017
1018
andre6bb92372000-06-19 08:20:03 +00001019/* Notes on fetching login data from wtmp/wtmpx
1020 *
1021 * Logouts are usually recorded with (amongst other things) a blank
1022 * username on a given tty line. However, some systems (HP-UX is one)
1023 * leave all fields set, but change the ut_type field to DEAD_PROCESS.
1024 *
1025 * Since we're only looking for logins here, we know that the username
1026 * must be set correctly. On systems that leave it in, we check for
1027 * ut_type==USER_PROCESS (indicating a login.)
1028 *
1029 * Portability: Some systems may set something other than USER_PROCESS
1030 * to indicate a login process. I don't know of any as I write. Also,
1031 * it's possible that some systems may both leave the username in
1032 * place and not have ut_type.
1033 */
1034
andre6bb92372000-06-19 08:20:03 +00001035/* return true if this wtmp entry indicates a login */
1036static int
1037wtmp_islogin(struct logininfo *li, struct utmp *ut)
1038{
Damien Miller7a0e5dc2000-07-11 12:15:54 +10001039 if (strncmp(li->username, ut->ut_name,
1040 MIN_SIZEOF(li->username, ut->ut_name)) == 0) {
Damien Millerdd47aa22000-06-27 11:18:27 +10001041# ifdef HAVE_TYPE_IN_UTMP
andre6bb92372000-06-19 08:20:03 +00001042 if (ut->ut_type & USER_PROCESS)
1043 return 1;
Damien Millerdd47aa22000-06-27 11:18:27 +10001044# else
andre6bb92372000-06-19 08:20:03 +00001045 return 1;
Damien Millerdd47aa22000-06-27 11:18:27 +10001046# endif
andre6bb92372000-06-19 08:20:03 +00001047 }
1048 return 0;
1049}
1050
andre2ff7b5d2000-06-03 14:57:40 +00001051int
andre61e67252000-06-04 17:07:49 +00001052wtmp_get_entry(struct logininfo *li)
1053{
andre2ff7b5d2000-06-03 14:57:40 +00001054 struct stat st;
1055 struct utmp ut;
andre6bb92372000-06-19 08:20:03 +00001056 int fd, found=0;
1057
1058 /* Clear the time entries in our logininfo */
1059 li->tv_sec = li->tv_usec = 0;
andre2ff7b5d2000-06-03 14:57:40 +00001060
1061 if ((fd = open(WTMP_FILE, O_RDONLY)) < 0) {
1062 log("wtmp_get_entry: problem opening %s: %s",
1063 WTMP_FILE, strerror(errno));
1064 return 0;
1065 }
andre61e67252000-06-04 17:07:49 +00001066 if (fstat(fd, &st) != 0) {
andre2ff7b5d2000-06-03 14:57:40 +00001067 log("wtmp_get_entry: couldn't stat %s: %s",
1068 WTMP_FILE, strerror(errno));
1069 close(fd);
1070 return 0;
1071 }
andre2ff7b5d2000-06-03 14:57:40 +00001072
andre6bb92372000-06-19 08:20:03 +00001073 /* Seek to the start of the last struct utmp */
Damien Miller348c9b72000-08-15 10:01:22 +10001074 if (lseek(fd, (off_t)(0 - sizeof(struct utmp)), SEEK_END) == -1) {
andre6bb92372000-06-19 08:20:03 +00001075 /* Looks like we've got a fresh wtmp file */
1076 close(fd);
1077 return 0;
1078 }
1079
1080 while (!found) {
Damien Miller53c5d462000-06-28 00:50:50 +10001081 if (atomicio(read, fd, &ut, sizeof(ut)) != sizeof(ut)) {
andre2ff7b5d2000-06-03 14:57:40 +00001082 log("wtmp_get_entry: read of %s failed: %s",
1083 WTMP_FILE, strerror(errno));
1084 close (fd);
1085 return 0;
1086 }
andre6bb92372000-06-19 08:20:03 +00001087 if ( wtmp_islogin(li, &ut) ) {
1088 found = 1;
1089 /* We've already checked for a time in struct
1090 * utmp, in login_getlast(). */
Damien Millerdd47aa22000-06-27 11:18:27 +10001091# ifdef HAVE_TIME_IN_UTMP
andre2ff7b5d2000-06-03 14:57:40 +00001092 li->tv_sec = ut.ut_time;
Damien Millerdd47aa22000-06-27 11:18:27 +10001093# else
andre2ff7b5d2000-06-03 14:57:40 +00001094# if HAVE_TV_IN_UTMP
1095 li->tv_sec = ut.ut_tv.tv_sec;
1096# endif
Damien Millerdd47aa22000-06-27 11:18:27 +10001097# endif
andre6bb92372000-06-19 08:20:03 +00001098 line_fullname(li->line, ut.ut_line,
1099 MIN_SIZEOF(li->line, ut.ut_line));
Damien Millerdd47aa22000-06-27 11:18:27 +10001100# ifdef HAVE_HOST_IN_UTMP
andre6bb92372000-06-19 08:20:03 +00001101 strlcpy(li->hostname, ut.ut_host,
1102 MIN_SIZEOF(li->hostname, ut.ut_host));
Damien Millerdd47aa22000-06-27 11:18:27 +10001103# endif
andre6bb92372000-06-19 08:20:03 +00001104 continue;
andre2ff7b5d2000-06-03 14:57:40 +00001105 }
andre6bb92372000-06-19 08:20:03 +00001106 /* Seek back 2 x struct utmp */
andre2ff7b5d2000-06-03 14:57:40 +00001107 if (lseek(fd, (off_t)(0-2*sizeof(struct utmp)), SEEK_CUR) == -1) {
andre6bb92372000-06-19 08:20:03 +00001108 /* We've found the start of the file, so quit */
andre2ff7b5d2000-06-03 14:57:40 +00001109 close (fd);
1110 return 0;
1111 }
andre6bb92372000-06-19 08:20:03 +00001112 }
1113
1114 /* We found an entry. Tidy up and return */
1115 close(fd);
andre2ff7b5d2000-06-03 14:57:40 +00001116 return 1;
andre61e67252000-06-04 17:07:49 +00001117}
Damien Millerdd47aa22000-06-27 11:18:27 +10001118# endif /* USE_WTMP */
andre2ff7b5d2000-06-03 14:57:40 +00001119
1120
1121/**
andre61e67252000-06-04 17:07:49 +00001122 ** Low-level wtmpx functions
andre2ff7b5d2000-06-03 14:57:40 +00001123 **/
1124
1125#ifdef USE_WTMPX
andre2ff7b5d2000-06-03 14:57:40 +00001126/* write a wtmpx entry direct to the end of the file */
andre61e67252000-06-04 17:07:49 +00001127/* This is a slight modification of code in OpenBSD's logwtmp.c */
andre2ff7b5d2000-06-03 14:57:40 +00001128static int
andre61e67252000-06-04 17:07:49 +00001129wtmpx_write(struct logininfo *li, struct utmpx *utx)
1130{
andre2ff7b5d2000-06-03 14:57:40 +00001131 struct stat buf;
1132 int fd, ret = 1;
1133
1134 if ((fd = open(WTMPX_FILE, O_WRONLY|O_APPEND, 0)) < 0) {
1135 log("wtmpx_write: problem opening %s: %s",
1136 WTMPX_FILE, strerror(errno));
1137 return 0;
1138 }
1139
1140 if (fstat(fd, &buf) == 0)
Damien Miller53c5d462000-06-28 00:50:50 +10001141 if (atomicio(write, fd, utx, sizeof(*utx)) != sizeof(*utx)) {
andre2ff7b5d2000-06-03 14:57:40 +00001142 ftruncate(fd, buf.st_size);
1143 log("wtmpx_write: problem writing %s: %s",
1144 WTMPX_FILE, strerror(errno));
1145 ret = 0;
1146 }
1147 (void)close(fd);
1148
1149 return ret;
andre61e67252000-06-04 17:07:49 +00001150}
andre2ff7b5d2000-06-03 14:57:40 +00001151
1152
1153static int
andre61e67252000-06-04 17:07:49 +00001154wtmpx_perform_login(struct logininfo *li)
1155{
andre2ff7b5d2000-06-03 14:57:40 +00001156 struct utmpx utx;
1157
1158 construct_utmpx(li, &utx);
1159 return wtmpx_write(li, &utx);
andre61e67252000-06-04 17:07:49 +00001160}
andre2ff7b5d2000-06-03 14:57:40 +00001161
1162
1163static int
andre61e67252000-06-04 17:07:49 +00001164wtmpx_perform_logout(struct logininfo *li)
1165{
andre2ff7b5d2000-06-03 14:57:40 +00001166 struct utmpx utx;
1167
1168 construct_utmpx(li, &utx);
andre2ff7b5d2000-06-03 14:57:40 +00001169 return wtmpx_write(li, &utx);
andre61e67252000-06-04 17:07:49 +00001170}
andre2ff7b5d2000-06-03 14:57:40 +00001171
1172
1173int
andre61e67252000-06-04 17:07:49 +00001174wtmpx_write_entry(struct logininfo *li)
1175{
andre2ff7b5d2000-06-03 14:57:40 +00001176 switch(li->type) {
1177 case LTYPE_LOGIN:
1178 return wtmpx_perform_login(li);
1179 case LTYPE_LOGOUT:
1180 return wtmpx_perform_logout(li);
1181 default:
1182 log("wtmpx_write_entry: invalid type field");
1183 return 0;
1184 }
andre61e67252000-06-04 17:07:49 +00001185}
andre2ff7b5d2000-06-03 14:57:40 +00001186
andre6bb92372000-06-19 08:20:03 +00001187/* Please see the notes above wtmp_islogin() for information about the
1188 next two functions */
1189
1190/* Return true if this wtmpx entry indicates a login */
1191static int
1192wtmpx_islogin(struct logininfo *li, struct utmpx *utx)
1193{
Damien Miller7a0e5dc2000-07-11 12:15:54 +10001194 if ( strncmp(li->username, utx->ut_name,
1195 MIN_SIZEOF(li->username, utx->ut_name)) == 0 ) {
Damien Millerdd47aa22000-06-27 11:18:27 +10001196# ifdef HAVE_TYPE_IN_UTMPX
andre6bb92372000-06-19 08:20:03 +00001197 if (utx->ut_type == USER_PROCESS)
1198 return 1;
Damien Millerdd47aa22000-06-27 11:18:27 +10001199# else
andre6bb92372000-06-19 08:20:03 +00001200 return 1;
Damien Millerdd47aa22000-06-27 11:18:27 +10001201# endif
andre6bb92372000-06-19 08:20:03 +00001202 }
1203 return 0;
1204}
1205
andre2ff7b5d2000-06-03 14:57:40 +00001206
1207int
andre61e67252000-06-04 17:07:49 +00001208wtmpx_get_entry(struct logininfo *li)
1209{
andre2ff7b5d2000-06-03 14:57:40 +00001210 struct stat st;
1211 struct utmpx utx;
andre6bb92372000-06-19 08:20:03 +00001212 int fd, found=0;
1213
1214 /* Clear the time entries */
1215 li->tv_sec = li->tv_usec = 0;
andre2ff7b5d2000-06-03 14:57:40 +00001216
1217 if ((fd = open(WTMPX_FILE, O_RDONLY)) < 0) {
1218 log("wtmpx_get_entry: problem opening %s: %s",
1219 WTMPX_FILE, strerror(errno));
1220 return 0;
1221 }
andre61e67252000-06-04 17:07:49 +00001222 if (fstat(fd, &st) != 0) {
andre2ff7b5d2000-06-03 14:57:40 +00001223 log("wtmpx_get_entry: couldn't stat %s: %s",
1224 WTMP_FILE, strerror(errno));
1225 close(fd);
1226 return 0;
1227 }
andre6bb92372000-06-19 08:20:03 +00001228
1229 /* Seek to the start of the last struct utmpx */
1230 if (lseek(fd, (off_t)(0-sizeof(struct utmpx)), SEEK_END) == -1 ) {
1231 /* probably a newly rotated wtmpx file */
1232 close(fd);
1233 return 0;
1234 }
andre2ff7b5d2000-06-03 14:57:40 +00001235
andre6bb92372000-06-19 08:20:03 +00001236 while (!found) {
Damien Miller53c5d462000-06-28 00:50:50 +10001237 if (atomicio(read, fd, &utx, sizeof(utx)) != sizeof(utx)) {
andre2ff7b5d2000-06-03 14:57:40 +00001238 log("wtmpx_get_entry: read of %s failed: %s",
1239 WTMPX_FILE, strerror(errno));
1240 close (fd);
1241 return 0;
1242 }
andre2ff7b5d2000-06-03 14:57:40 +00001243 /* Logouts are recorded as a blank username on a particular line.
1244 * So, we just need to find the username in struct utmpx */
andre6bb92372000-06-19 08:20:03 +00001245 if ( wtmpx_islogin(li, &utx) ) {
Damien Millerdd47aa22000-06-27 11:18:27 +10001246# ifdef HAVE_TV_IN_UTMPX
andre2ff7b5d2000-06-03 14:57:40 +00001247 li->tv_sec = utx.ut_tv.tv_sec;
Damien Millerdd47aa22000-06-27 11:18:27 +10001248# else
andre2ff7b5d2000-06-03 14:57:40 +00001249# ifdef HAVE_TIME_IN_UTMPX
1250 li->tv_sec = utx.ut_time;
1251# endif
Damien Millerdd47aa22000-06-27 11:18:27 +10001252# endif
Damien Miller1a132252000-06-13 21:23:17 +10001253 line_fullname(li->line, utx.ut_line, sizeof(li->line));
Damien Millerdd47aa22000-06-27 11:18:27 +10001254# ifdef HAVE_HOST_IN_UTMPX
andre6bb92372000-06-19 08:20:03 +00001255 strlcpy(li->hostname, utx.ut_host,
1256 MIN_SIZEOF(li->hostname, utx.ut_host));
Damien Millerdd47aa22000-06-27 11:18:27 +10001257# endif
andre6bb92372000-06-19 08:20:03 +00001258 continue;
andre2ff7b5d2000-06-03 14:57:40 +00001259 }
1260 if (lseek(fd, (off_t)(0-2*sizeof(struct utmpx)), SEEK_CUR) == -1) {
1261 close (fd);
1262 return 0;
1263 }
andre6bb92372000-06-19 08:20:03 +00001264 }
1265
1266 close(fd);
andre2ff7b5d2000-06-03 14:57:40 +00001267 return 1;
andre61e67252000-06-04 17:07:49 +00001268}
Damien Millerd5bf3072000-06-07 21:32:13 +10001269#endif /* USE_WTMPX */
andre2ff7b5d2000-06-03 14:57:40 +00001270
andre2ff7b5d2000-06-03 14:57:40 +00001271/**
andre61e67252000-06-04 17:07:49 +00001272 ** Low-level libutil login() functions
andre2ff7b5d2000-06-03 14:57:40 +00001273 **/
1274
1275#ifdef USE_LOGIN
andre2ff7b5d2000-06-03 14:57:40 +00001276static int
andre61e67252000-06-04 17:07:49 +00001277syslogin_perform_login(struct logininfo *li)
1278{
andre2ff7b5d2000-06-03 14:57:40 +00001279 struct utmp *ut;
1280
Damien Miller348c9b72000-08-15 10:01:22 +10001281 if (! (ut = (struct utmp *)malloc(sizeof(*ut)))) {
andre2ff7b5d2000-06-03 14:57:40 +00001282 log("syslogin_perform_login: couldn't malloc()");
1283 return 0;
1284 }
1285 construct_utmp(li, ut);
1286 login(ut);
1287
1288 return 1;
andre61e67252000-06-04 17:07:49 +00001289}
1290
andre2ff7b5d2000-06-03 14:57:40 +00001291static int
andre61e67252000-06-04 17:07:49 +00001292syslogin_perform_logout(struct logininfo *li)
1293{
Damien Millerdd47aa22000-06-27 11:18:27 +10001294# ifdef HAVE_LOGOUT
andre2ff7b5d2000-06-03 14:57:40 +00001295 char line[8];
1296
1297 (void)line_stripname(line, li->line, sizeof(line));
1298
1299 if (!logout(line)) {
1300 log("syslogin_perform_logout: logout() returned an error");
Damien Millerdd47aa22000-06-27 11:18:27 +10001301# ifdef HAVE_LOGWTMP
andre2ff7b5d2000-06-03 14:57:40 +00001302 } else {
1303 logwtmp(line, "", "");
Damien Millerdd47aa22000-06-27 11:18:27 +10001304# endif
Damien Miller9b6d4ab2000-07-02 08:43:18 +10001305 }
andre6bb92372000-06-19 08:20:03 +00001306 /* FIXME: (ATL - if the need arises) What to do if we have
1307 * login, but no logout? what if logout but no logwtmp? All
1308 * routines are in libutil so they should all be there,
1309 * but... */
Damien Millerdd47aa22000-06-27 11:18:27 +10001310# endif
andre2ff7b5d2000-06-03 14:57:40 +00001311 return 1;
andre61e67252000-06-04 17:07:49 +00001312}
andre2ff7b5d2000-06-03 14:57:40 +00001313
andre2ff7b5d2000-06-03 14:57:40 +00001314int
andre61e67252000-06-04 17:07:49 +00001315syslogin_write_entry(struct logininfo *li)
1316{
andre2ff7b5d2000-06-03 14:57:40 +00001317 switch (li->type) {
1318 case LTYPE_LOGIN:
1319 return syslogin_perform_login(li);
1320 case LTYPE_LOGOUT:
1321 return syslogin_perform_logout(li);
1322 default:
1323 log("syslogin_write_entry: Invalid type field");
1324 return 0;
1325 }
andre61e67252000-06-04 17:07:49 +00001326}
Damien Millerd5bf3072000-06-07 21:32:13 +10001327#endif /* USE_LOGIN */
andre2ff7b5d2000-06-03 14:57:40 +00001328
1329/* end of file log-syslogin.c */
1330
andre2ff7b5d2000-06-03 14:57:40 +00001331/**
andre61e67252000-06-04 17:07:49 +00001332 ** Low-level lastlog functions
andre2ff7b5d2000-06-03 14:57:40 +00001333 **/
1334
1335#ifdef USE_LASTLOG
Damien Millerdd47aa22000-06-27 11:18:27 +10001336#define LL_FILE 1
1337#define LL_DIR 2
1338#define LL_OTHER 3
andre2ff7b5d2000-06-03 14:57:40 +00001339
andre2ff7b5d2000-06-03 14:57:40 +00001340static void
andre61e67252000-06-04 17:07:49 +00001341lastlog_construct(struct logininfo *li, struct lastlog *last)
1342{
andre2ff7b5d2000-06-03 14:57:40 +00001343 /* clear the structure */
Damien Miller348c9b72000-08-15 10:01:22 +10001344 memset(last, '\0', sizeof(*last));
andre2ff7b5d2000-06-03 14:57:40 +00001345
Damien Millerdd47aa22000-06-27 11:18:27 +10001346 (void)line_stripname(last->ll_line, li->line, sizeof(last->ll_line));
andre6bb92372000-06-19 08:20:03 +00001347 strlcpy(last->ll_host, li->hostname,
1348 MIN_SIZEOF(last->ll_host, li->hostname));
andre2ff7b5d2000-06-03 14:57:40 +00001349 last->ll_time = li->tv_sec;
andre61e67252000-06-04 17:07:49 +00001350}
andre2ff7b5d2000-06-03 14:57:40 +00001351
andre2ff7b5d2000-06-03 14:57:40 +00001352static int
andre61e67252000-06-04 17:07:49 +00001353lastlog_filetype(char *filename)
1354{
andre2ff7b5d2000-06-03 14:57:40 +00001355 struct stat st;
1356
Damien Millerdd47aa22000-06-27 11:18:27 +10001357 if (stat(LASTLOG_FILE, &st) != 0) {
1358 log("lastlog_perform_login: Couldn't stat %s: %s", LASTLOG_FILE,
1359 strerror(errno));
andre2ff7b5d2000-06-03 14:57:40 +00001360 return 0;
1361 }
andre2ff7b5d2000-06-03 14:57:40 +00001362 if (S_ISDIR(st.st_mode))
1363 return LL_DIR;
1364 else if (S_ISREG(st.st_mode))
1365 return LL_FILE;
1366 else
1367 return LL_OTHER;
andre61e67252000-06-04 17:07:49 +00001368}
andre2ff7b5d2000-06-03 14:57:40 +00001369
1370
1371/* open the file (using filemode) and seek to the login entry */
1372static int
andre61e67252000-06-04 17:07:49 +00001373lastlog_openseek(struct logininfo *li, int *fd, int filemode)
1374{
andre2ff7b5d2000-06-03 14:57:40 +00001375 off_t offset;
1376 int type;
1377 char lastlog_file[1024];
1378
1379 type = lastlog_filetype(LASTLOG_FILE);
1380 switch (type) {
Damien Millerf8af08d2000-06-27 09:40:06 +10001381 case LL_FILE:
1382 strlcpy(lastlog_file, LASTLOG_FILE, sizeof(lastlog_file));
1383 break;
1384 case LL_DIR:
1385 snprintf(lastlog_file, sizeof(lastlog_file), "%s/%s",
1386 LASTLOG_FILE, li->username);
1387 break;
1388 default:
1389 log("lastlog_openseek: %.100s is not a file or directory!",
1390 LASTLOG_FILE);
1391 return 0;
Damien Millerdd47aa22000-06-27 11:18:27 +10001392 }
andre2ff7b5d2000-06-03 14:57:40 +00001393
1394 *fd = open(lastlog_file, filemode);
1395 if ( *fd < 0) {
Damien Miller53c5d462000-06-28 00:50:50 +10001396 debug("lastlog_openseek: Couldn't open %s: %s",
andre2ff7b5d2000-06-03 14:57:40 +00001397 lastlog_file, strerror(errno));
1398 return 0;
1399 }
Damien Millerdd47aa22000-06-27 11:18:27 +10001400
Damien Millere477ef62000-08-15 10:21:17 +10001401 if (type == LL_FILE) {
1402 /* find this uid's offset in the lastlog file */
1403 offset = (off_t) ( (long)li->uid * sizeof(struct lastlog));
andre2ff7b5d2000-06-03 14:57:40 +00001404
Damien Millere477ef62000-08-15 10:21:17 +10001405 if ( lseek(*fd, offset, SEEK_SET) != offset ) {
1406 log("lastlog_openseek: %s->lseek(): %s",
1407 lastlog_file, strerror(errno));
1408 return 0;
1409 }
andre2ff7b5d2000-06-03 14:57:40 +00001410 }
Damien Millere477ef62000-08-15 10:21:17 +10001411
andre2ff7b5d2000-06-03 14:57:40 +00001412 return 1;
andre61e67252000-06-04 17:07:49 +00001413}
andre2ff7b5d2000-06-03 14:57:40 +00001414
1415static int
andre61e67252000-06-04 17:07:49 +00001416lastlog_perform_login(struct logininfo *li)
1417{
andre2ff7b5d2000-06-03 14:57:40 +00001418 struct lastlog last;
1419 int fd;
1420
1421 /* create our struct lastlog */
1422 lastlog_construct(li, &last);
1423
Damien Millerc1132e72000-08-18 14:08:38 +10001424 if (!lastlog_openseek(li, &fd, O_RDWR|O_CREAT))
1425 return(0);
1426
andre2ff7b5d2000-06-03 14:57:40 +00001427 /* write the entry */
Damien Millerc1132e72000-08-18 14:08:38 +10001428 if (atomicio(write, fd, &last, sizeof(last)) != sizeof(last)) {
1429 close(fd);
1430 log("lastlog_write_filemode: Error writing to %s: %s",
1431 LASTLOG_FILE, strerror(errno));
andre2ff7b5d2000-06-03 14:57:40 +00001432 return 0;
Damien Millerdd47aa22000-06-27 11:18:27 +10001433 }
Damien Millerc1132e72000-08-18 14:08:38 +10001434
1435 close(fd);
1436 return 1;
andre61e67252000-06-04 17:07:49 +00001437}
andre2ff7b5d2000-06-03 14:57:40 +00001438
andre2ff7b5d2000-06-03 14:57:40 +00001439int
andre61e67252000-06-04 17:07:49 +00001440lastlog_write_entry(struct logininfo *li)
1441{
andre2ff7b5d2000-06-03 14:57:40 +00001442 switch(li->type) {
1443 case LTYPE_LOGIN:
1444 return lastlog_perform_login(li);
1445 default:
1446 log("lastlog_write_entry: Invalid type field");
1447 return 0;
1448 }
andre61e67252000-06-04 17:07:49 +00001449}
andre2ff7b5d2000-06-03 14:57:40 +00001450
andre2ff7b5d2000-06-03 14:57:40 +00001451static void
andre61e67252000-06-04 17:07:49 +00001452lastlog_populate_entry(struct logininfo *li, struct lastlog *last)
1453{
andre2ff7b5d2000-06-03 14:57:40 +00001454 line_fullname(li->line, last->ll_line, sizeof(li->line));
Damien Millerdd47aa22000-06-27 11:18:27 +10001455 strlcpy(li->hostname, last->ll_host,
andre6bb92372000-06-19 08:20:03 +00001456 MIN_SIZEOF(li->hostname, last->ll_host));
andre2ff7b5d2000-06-03 14:57:40 +00001457 li->tv_sec = last->ll_time;
andre61e67252000-06-04 17:07:49 +00001458}
andre2ff7b5d2000-06-03 14:57:40 +00001459
andre2ff7b5d2000-06-03 14:57:40 +00001460int
andre61e67252000-06-04 17:07:49 +00001461lastlog_get_entry(struct logininfo *li)
1462{
andre2ff7b5d2000-06-03 14:57:40 +00001463 struct lastlog last;
1464 int fd;
1465
1466 if (lastlog_openseek(li, &fd, O_RDONLY)) {
Damien Miller53c5d462000-06-28 00:50:50 +10001467 if (atomicio(read, fd, &last, sizeof(last)) != sizeof(last)) {
1468 log("lastlog_get_entry: Error reading from %s: %s",
andre2ff7b5d2000-06-03 14:57:40 +00001469 LASTLOG_FILE, strerror(errno));
1470 return 0;
1471 } else {
1472 lastlog_populate_entry(li, &last);
1473 return 1;
1474 }
Damien Millerdd47aa22000-06-27 11:18:27 +10001475 } else {
andre2ff7b5d2000-06-03 14:57:40 +00001476 return 0;
Damien Millerdd47aa22000-06-27 11:18:27 +10001477 }
andre61e67252000-06-04 17:07:49 +00001478}
Damien Millerd5bf3072000-06-07 21:32:13 +10001479#endif /* USE_LASTLOG */