blob: d748332242c421b9509489dd03d761483a186214 [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
Kevin Stevesef4eea92001-02-05 12:42:17 +000033/**
andre2ff7b5d2000-06-03 14:57:40 +000034 ** 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.
Kevin Stevesef4eea92001-02-05 12:42:17 +000066
andre61e67252000-06-04 17:07:49 +000067 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 --------------------
Kevin Stevesef4eea92001-02-05 12:42:17 +000085
andre61e67252000-06-04 17:07:49 +000086 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 -------------------------------
Kevin Stevesef4eea92001-02-05 12:42:17 +000092
andre61e67252000-06-04 17:07:49 +000093 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!
Kevin Stevesef4eea92001-02-05 12:42:17 +0000130
andre61e67252000-06-04 17:07:49 +0000131*/
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"
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000163#include "log.h"
164#include "atomicio.h"
andre2ff7b5d2000-06-03 14:57:40 +0000165
Kevin Stevesef4eea92001-02-05 12:42:17 +0000166RCSID("$Id: loginrec.c,v 1.31 2001/02/05 12:42:17 stevesk Exp $");
Ben Lindstromdcca9812000-11-10 03:28:31 +0000167
168#ifdef HAVE_UTIL_H
169# include <util.h>
170#endif
andre2ff7b5d2000-06-03 14:57:40 +0000171
Ben Lindstrome2fb8d32000-12-28 00:07:07 +0000172#ifdef HAVE_LIBUTIL_H
173# include <libutil.h>
174#endif
175
andre2ff7b5d2000-06-03 14:57:40 +0000176/**
177 ** prototypes for helper functions in this file
178 **/
179
180#if HAVE_UTMP_H
andre2ff7b5d2000-06-03 14:57:40 +0000181void set_utmp_time(struct logininfo *li, struct utmp *ut);
182void construct_utmp(struct logininfo *li, struct utmp *ut);
183#endif
184
185#ifdef HAVE_UTMPX_H
andre2ff7b5d2000-06-03 14:57:40 +0000186void set_utmpx_time(struct logininfo *li, struct utmpx *ut);
187void construct_utmpx(struct logininfo *li, struct utmpx *ut);
188#endif
189
190int utmp_write_entry(struct logininfo *li);
191int utmpx_write_entry(struct logininfo *li);
192int wtmp_write_entry(struct logininfo *li);
193int wtmpx_write_entry(struct logininfo *li);
194int lastlog_write_entry(struct logininfo *li);
195int syslogin_write_entry(struct logininfo *li);
196
197int getlast_entry(struct logininfo *li);
198int lastlog_get_entry(struct logininfo *li);
199int wtmp_get_entry(struct logininfo *li);
200int wtmpx_get_entry(struct logininfo *li);
201
andre6bb92372000-06-19 08:20:03 +0000202/* pick the shortest string */
203#define MIN_SIZEOF(s1,s2) ( sizeof(s1) < sizeof(s2) ? sizeof(s1) : sizeof(s2) )
204
andre2ff7b5d2000-06-03 14:57:40 +0000205/**
206 ** platform-independent login functions
207 **/
208
andre6bb92372000-06-19 08:20:03 +0000209/* login_login(struct logininfo *) -Record a login
Kevin Stevesef4eea92001-02-05 12:42:17 +0000210 *
andre6bb92372000-06-19 08:20:03 +0000211 * Call with a pointer to a struct logininfo initialised with
212 * login_init_entry() or login_alloc_entry()
213 *
214 * Returns:
215 * >0 if successful
216 * 0 on failure (will use OpenSSH's logging facilities for diagnostics)
217 */
andre61e67252000-06-04 17:07:49 +0000218int
219login_login (struct logininfo *li)
220{
221 li->type = LTYPE_LOGIN;
222 return login_write(li);
223}
224
225
andre6bb92372000-06-19 08:20:03 +0000226/* login_logout(struct logininfo *) - Record a logout
227 *
228 * Call as with login_login()
229 *
230 * Returns:
231 * >0 if successful
232 * 0 on failure (will use OpenSSH's logging facilities for diagnostics)
233 */
andre61e67252000-06-04 17:07:49 +0000234int
235login_logout(struct logininfo *li)
236{
237 li->type = LTYPE_LOGOUT;
238 return login_write(li);
239}
240
andre6bb92372000-06-19 08:20:03 +0000241/* login_get_lastlog_time(int) - Retrieve the last login time
242 *
243 * Retrieve the last login time for the given uid. Will try to use the
244 * system lastlog facilities if they are available, but will fall back
245 * to looking in wtmp/wtmpx if necessary
246 *
247 * Returns:
248 * 0 on failure, or if user has never logged in
249 * Time in seconds from the epoch if successful
250 *
251 * Useful preprocessor symbols:
252 * DISABLE_LASTLOG: If set, *never* even try to retrieve lastlog
253 * info
254 * USE_LASTLOG: If set, indicates the presence of system lastlog
255 * facilities. If this and DISABLE_LASTLOG are not set,
256 * try to retrieve lastlog information from wtmp/wtmpx.
257 */
andre61e67252000-06-04 17:07:49 +0000258unsigned int
259login_get_lastlog_time(const int uid)
260{
261 struct logininfo li;
262
andre6bb92372000-06-19 08:20:03 +0000263 if (login_get_lastlog(&li, uid))
264 return li.tv_sec;
265 else
266 return 0;
andre61e67252000-06-04 17:07:49 +0000267}
268
andre6bb92372000-06-19 08:20:03 +0000269/* login_get_lastlog(struct logininfo *, int) - Retrieve a lastlog entry
270 *
271 * Retrieve a logininfo structure populated (only partially) with
272 * information from the system lastlog data, or from wtmp/wtmpx if no
273 * system lastlog information exists.
274 *
275 * Note this routine must be given a pre-allocated logininfo.
276 *
277 * Returns:
278 * >0: A pointer to your struct logininfo if successful
279 * 0 on failure (will use OpenSSH's logging facilities for diagnostics)
280 *
281 */
andre61e67252000-06-04 17:07:49 +0000282struct logininfo *
283login_get_lastlog(struct logininfo *li, const int uid)
284{
andre6bb92372000-06-19 08:20:03 +0000285 struct passwd *pw;
andre6bb92372000-06-19 08:20:03 +0000286
Damien Miller348c9b72000-08-15 10:01:22 +1000287 memset(li, '\0', sizeof(*li));
andre61e67252000-06-04 17:07:49 +0000288 li->uid = uid;
andre6bb92372000-06-19 08:20:03 +0000289
Kevin Stevesef4eea92001-02-05 12:42:17 +0000290 /*
Damien Miller53c5d462000-06-28 00:50:50 +1000291 * If we don't have a 'real' lastlog, we need the username to
andre6bb92372000-06-19 08:20:03 +0000292 * reliably search wtmp(x) for the last login (see
Kevin Stevesef4eea92001-02-05 12:42:17 +0000293 * wtmp_get_entry().)
Damien Miller53c5d462000-06-28 00:50:50 +1000294 */
andre6bb92372000-06-19 08:20:03 +0000295 pw = getpwuid(uid);
Damien Millerdd47aa22000-06-27 11:18:27 +1000296 if (pw == NULL)
297 fatal("login_get_lastlog: Cannot find account for uid %i", uid);
Kevin Stevesef4eea92001-02-05 12:42:17 +0000298
andre98cabe02000-06-19 09:11:30 +0000299 /* No MIN_SIZEOF here - we absolutely *must not* truncate the
Kevin Stevesef4eea92001-02-05 12:42:17 +0000300 * username */
Damien Millerf8af08d2000-06-27 09:40:06 +1000301 strlcpy(li->username, pw->pw_name, sizeof(li->username));
Damien Millerdd47aa22000-06-27 11:18:27 +1000302
andre61e67252000-06-04 17:07:49 +0000303 if (getlast_entry(li))
304 return li;
305 else
Damien Millerdd47aa22000-06-27 11:18:27 +1000306 return NULL;
andre61e67252000-06-04 17:07:49 +0000307}
308
309
andre6bb92372000-06-19 08:20:03 +0000310/* login_alloc_entry(int, char*, char*, char*) - Allocate and initialise
Kevin Stevesef4eea92001-02-05 12:42:17 +0000311 * a logininfo structure
312 *
andre6bb92372000-06-19 08:20:03 +0000313 * This function creates a new struct logininfo, a data structure
314 * meant to carry the information required to portably record login info.
315 *
316 * Returns a pointer to a newly created struct logininfo. If memory
317 * allocation fails, the program halts.
318 */
andre61e67252000-06-04 17:07:49 +0000319struct
320logininfo *login_alloc_entry(int pid, const char *username,
321 const char *hostname, const char *line)
322{
andre2ff7b5d2000-06-03 14:57:40 +0000323 struct logininfo *newli;
324
Damien Miller348c9b72000-08-15 10:01:22 +1000325 newli = (struct logininfo *) xmalloc (sizeof(*newli));
andre61e67252000-06-04 17:07:49 +0000326 (void)login_init_entry(newli, pid, username, hostname, line);
327 return newli;
328}
andre2ff7b5d2000-06-03 14:57:40 +0000329
330
andre6bb92372000-06-19 08:20:03 +0000331/* login_free_entry(struct logininfo *) - free struct memory */
andre61e67252000-06-04 17:07:49 +0000332void
333login_free_entry(struct logininfo *li)
334{
335 xfree(li);
336}
337
andre2ff7b5d2000-06-03 14:57:40 +0000338
andre6bb92372000-06-19 08:20:03 +0000339/* login_init_entry(struct logininfo *, int, char*, char*, char*)
340 * - initialise a struct logininfo
Kevin Stevesef4eea92001-02-05 12:42:17 +0000341 *
andre6bb92372000-06-19 08:20:03 +0000342 * Populates a new struct logininfo, a data structure meant to carry
343 * the information required to portably record login info.
344 *
345 * Returns: 1
346 */
andre61e67252000-06-04 17:07:49 +0000347int
Kevin Stevesef4eea92001-02-05 12:42:17 +0000348login_init_entry(struct logininfo *li, int pid, const char *username,
andre61e67252000-06-04 17:07:49 +0000349 const char *hostname, const char *line)
350{
Damien Millerf8af08d2000-06-27 09:40:06 +1000351 struct passwd *pw;
Kevin Stevesef4eea92001-02-05 12:42:17 +0000352
Damien Miller348c9b72000-08-15 10:01:22 +1000353 memset(li, 0, sizeof(*li));
Kevin Stevesef4eea92001-02-05 12:42:17 +0000354
andre61e67252000-06-04 17:07:49 +0000355 li->pid = pid;
Damien Millerf8af08d2000-06-27 09:40:06 +1000356
andre2ff7b5d2000-06-03 14:57:40 +0000357 /* set the line information */
andre61e67252000-06-04 17:07:49 +0000358 if (line)
andre2ff7b5d2000-06-03 14:57:40 +0000359 line_fullname(li->line, line, sizeof(li->line));
andre2ff7b5d2000-06-03 14:57:40 +0000360
Damien Millerf8af08d2000-06-27 09:40:06 +1000361 if (username) {
andre2ff7b5d2000-06-03 14:57:40 +0000362 strlcpy(li->username, username, sizeof(li->username));
Damien Millerf8af08d2000-06-27 09:40:06 +1000363 pw = getpwnam(li->username);
364 if (pw == NULL)
365 fatal("login_init_entry: Cannot find user \"%s\"", li->username);
366 li->uid = pw->pw_uid;
367 }
Damien Millerdd47aa22000-06-27 11:18:27 +1000368
andre61e67252000-06-04 17:07:49 +0000369 if (hostname)
andre2ff7b5d2000-06-03 14:57:40 +0000370 strlcpy(li->hostname, hostname, sizeof(li->hostname));
Damien Millerf8af08d2000-06-27 09:40:06 +1000371
andre61e67252000-06-04 17:07:49 +0000372 return 1;
andre2ff7b5d2000-06-03 14:57:40 +0000373}
374
andre6bb92372000-06-19 08:20:03 +0000375/* login_set_current_time(struct logininfo *) - set the current time
376 *
377 * Set the current time in a logininfo structure. This function is
378 * meant to eliminate the need to deal with system dependencies for
379 * time handling.
380 */
andre2ff7b5d2000-06-03 14:57:40 +0000381void
andre61e67252000-06-04 17:07:49 +0000382login_set_current_time(struct logininfo *li)
383{
andre2ff7b5d2000-06-03 14:57:40 +0000384 struct timeval tv;
385
386 gettimeofday(&tv, NULL);
Kevin Stevesef4eea92001-02-05 12:42:17 +0000387
Damien Millerf8af08d2000-06-27 09:40:06 +1000388 li->tv_sec = tv.tv_sec;
389 li->tv_usec = tv.tv_usec;
andre2ff7b5d2000-06-03 14:57:40 +0000390}
391
andre61e67252000-06-04 17:07:49 +0000392/* copy a sockaddr_* into our logininfo */
andre2ff7b5d2000-06-03 14:57:40 +0000393void
andre61e67252000-06-04 17:07:49 +0000394login_set_addr(struct logininfo *li, const struct sockaddr *sa,
395 const unsigned int sa_size)
396{
397 unsigned int bufsize = sa_size;
398
399 /* make sure we don't overrun our union */
400 if (sizeof(li->hostaddr) < sa_size)
401 bufsize = sizeof(li->hostaddr);
402
403 memcpy((void *)&(li->hostaddr.sa), (const void *)sa, bufsize);
andre2ff7b5d2000-06-03 14:57:40 +0000404}
405
andre2ff7b5d2000-06-03 14:57:40 +0000406
andre61e67252000-06-04 17:07:49 +0000407/**
408 ** login_write: Call low-level recording functions based on autoconf
409 ** results
410 **/
andre2ff7b5d2000-06-03 14:57:40 +0000411int
andre61e67252000-06-04 17:07:49 +0000412login_write (struct logininfo *li)
413{
Damien Millerbac2d8a2000-09-05 16:13:06 +1100414#ifndef HAVE_CYGWIN
andre2ff7b5d2000-06-03 14:57:40 +0000415 if ((int)geteuid() != 0) {
416 log("Attempt to write login records by non-root user (aborting)");
417 return 1;
418 }
Damien Millerbac2d8a2000-09-05 16:13:06 +1100419#endif
Damien Millerdd47aa22000-06-27 11:18:27 +1000420
andre2ff7b5d2000-06-03 14:57:40 +0000421 /* set the timestamp */
422 login_set_current_time(li);
423#ifdef USE_LOGIN
424 syslogin_write_entry(li);
425#endif
426#ifdef USE_LASTLOG
427 if (li->type == LTYPE_LOGIN) {
428 lastlog_write_entry(li);
429 }
430#endif
431#ifdef USE_UTMP
432 utmp_write_entry(li);
433#endif
434#ifdef USE_WTMP
435 wtmp_write_entry(li);
436#endif
437#ifdef USE_UTMPX
438 utmpx_write_entry(li);
439#endif
440#ifdef USE_WTMPX
441 wtmpx_write_entry(li);
442#endif
443 return 0;
444}
445
andre2ff7b5d2000-06-03 14:57:40 +0000446/**
andre61e67252000-06-04 17:07:49 +0000447 ** getlast_entry: Call low-level functions to retrieve the last login
448 ** time.
andre2ff7b5d2000-06-03 14:57:40 +0000449 **/
450
andre61e67252000-06-04 17:07:49 +0000451/* take the uid in li and return the last login time */
452int
453getlast_entry(struct logininfo *li)
454{
455#ifdef USE_LASTLOG
Damien Miller53c5d462000-06-28 00:50:50 +1000456 return(lastlog_get_entry(li));
Damien Millerdd47aa22000-06-27 11:18:27 +1000457#else /* !USE_LASTLOG */
andre61e67252000-06-04 17:07:49 +0000458
Damien Millerdd47aa22000-06-27 11:18:27 +1000459#ifdef DISABLE_LASTLOG
Kevin Stevesef4eea92001-02-05 12:42:17 +0000460 /* On some systems we shouldn't even try to obtain last login
andreecaabf12000-06-12 22:21:44 +0000461 * time, e.g. AIX */
462 return 0;
Damien Millerdd47aa22000-06-27 11:18:27 +1000463# else /* DISABLE_LASTLOG */
andre61e67252000-06-04 17:07:49 +0000464 /* Try to retrieve the last login time from wtmp */
Damien Millerdd47aa22000-06-27 11:18:27 +1000465# if defined(USE_WTMP) && (defined(HAVE_TIME_IN_UTMP) || defined(HAVE_TV_IN_UTMP))
andre61e67252000-06-04 17:07:49 +0000466 /* retrieve last login time from utmp */
Damien Millerdd47aa22000-06-27 11:18:27 +1000467 return (wtmp_get_entry(li));
468# else /* defined(USE_WTMP) && (defined(HAVE_TIME_IN_UTMP) || defined(HAVE_TV_IN_UTMP)) */
andre61e67252000-06-04 17:07:49 +0000469 /* If wtmp isn't available, try wtmpx */
Damien Millerdd47aa22000-06-27 11:18:27 +1000470# if defined(USE_WTMPX) && (defined(HAVE_TIME_IN_UTMPX) || defined(HAVE_TV_IN_UTMPX))
andre61e67252000-06-04 17:07:49 +0000471 /* retrieve last login time from utmpx */
Damien Millerdd47aa22000-06-27 11:18:27 +1000472 return (wtmpx_get_entry(li));
473# else
andre61e67252000-06-04 17:07:49 +0000474 /* Give up: No means of retrieving last login time */
475 return 0;
Damien Millerdd47aa22000-06-27 11:18:27 +1000476# endif /* USE_WTMPX && (HAVE_TIME_IN_UTMPX || HAVE_TV_IN_UTMPX) */
477# endif /* USE_WTMP && (HAVE_TIME_IN_UTMP || HAVE_TV_IN_UTMP) */
Kevin Stevesef4eea92001-02-05 12:42:17 +0000478# endif /* DISABLE_LASTLOG */
Damien Millerdd47aa22000-06-27 11:18:27 +1000479#endif /* USE_LASTLOG */
andre61e67252000-06-04 17:07:49 +0000480}
481
482
483
andre2ff7b5d2000-06-03 14:57:40 +0000484/*
andre61e67252000-06-04 17:07:49 +0000485 * 'line' string utility functions
486 *
487 * These functions process the 'line' string into one of three forms:
488 *
andre2ff7b5d2000-06-03 14:57:40 +0000489 * 1. The full filename (including '/dev')
490 * 2. The stripped name (excluding '/dev')
andre61e67252000-06-04 17:07:49 +0000491 * 3. The abbreviated name (e.g. /dev/ttyp00 -> yp00
492 * /dev/pts/1 -> ts/1 )
andre2ff7b5d2000-06-03 14:57:40 +0000493 *
494 * Form 3 is used on some systems to identify a .tmp.? entry when
495 * attempting to remove it. Typically both addition and removal is
andre61e67252000-06-04 17:07:49 +0000496 * performed by one application - say, sshd - so as long as the choice
497 * uniquely identifies a terminal it's ok.
andre2ff7b5d2000-06-03 14:57:40 +0000498 */
499
500
andre61e67252000-06-04 17:07:49 +0000501/* line_fullname(): add the leading '/dev/' if it doesn't exist make
502 * sure dst has enough space, if not just copy src (ugh) */
andre2ff7b5d2000-06-03 14:57:40 +0000503char *
andre61e67252000-06-04 17:07:49 +0000504line_fullname(char *dst, const char *src, int dstsize)
505{
andre2ff7b5d2000-06-03 14:57:40 +0000506 memset(dst, '\0', dstsize);
Damien Millerf5a81472000-09-30 21:34:44 +1100507 if ((strncmp(src, "/dev/", 5) == 0) || (dstsize < (strlen(src) + 5))) {
andre2ff7b5d2000-06-03 14:57:40 +0000508 strlcpy(dst, src, dstsize);
Damien Millerf5a81472000-09-30 21:34:44 +1100509 } else {
Damien Miller1a132252000-06-13 21:23:17 +1000510 strlcpy(dst, "/dev/", dstsize);
andre2ff7b5d2000-06-03 14:57:40 +0000511 strlcat(dst, src, dstsize);
512 }
513 return dst;
514}
515
andre61e67252000-06-04 17:07:49 +0000516/* line_stripname(): strip the leading '/dev' if it exists, return dst */
andre2ff7b5d2000-06-03 14:57:40 +0000517char *
andre61e67252000-06-04 17:07:49 +0000518line_stripname(char *dst, const char *src, int dstsize)
519{
andre2ff7b5d2000-06-03 14:57:40 +0000520 memset(dst, '\0', dstsize);
521 if (strncmp(src, "/dev/", 5) == 0)
Damien Millerf5a81472000-09-30 21:34:44 +1100522 strlcpy(dst, src + 5, dstsize);
andre2ff7b5d2000-06-03 14:57:40 +0000523 else
524 strlcpy(dst, src, dstsize);
525 return dst;
andre61e67252000-06-04 17:07:49 +0000526}
527
andre61e67252000-06-04 17:07:49 +0000528/* line_abbrevname(): Return the abbreviated (usually four-character)
529 * form of the line (Just use the last <dstsize> characters of the
530 * full name.)
531 *
532 * NOTE: use strncpy because we do NOT necessarily want zero
533 * termination */
andre2ff7b5d2000-06-03 14:57:40 +0000534char *
Kevin Stevesef4eea92001-02-05 12:42:17 +0000535line_abbrevname(char *dst, const char *src, int dstsize)
Damien Millerdd47aa22000-06-27 11:18:27 +1000536{
537 size_t len;
Kevin Stevesef4eea92001-02-05 12:42:17 +0000538
andre2ff7b5d2000-06-03 14:57:40 +0000539 memset(dst, '\0', dstsize);
Kevin Stevesef4eea92001-02-05 12:42:17 +0000540
Damien Miller8e81ed32000-07-01 13:17:42 +1000541 /* Always skip prefix if present */
Damien Millerf5a81472000-09-30 21:34:44 +1100542#ifdef sgi
543 if (strncmp(src, "/dev/tty", 8) == 0)
544 src += 8;
545#else
Damien Miller8e81ed32000-07-01 13:17:42 +1000546 if (strncmp(src, "/dev/", 5) == 0)
547 src += 5;
Damien Millerf5a81472000-09-30 21:34:44 +1100548#endif
Kevin Stevesef4eea92001-02-05 12:42:17 +0000549
Damien Millerdd47aa22000-06-27 11:18:27 +1000550 len = strlen(src);
551
Damien Miller8e81ed32000-07-01 13:17:42 +1000552 if (len > 0) {
553 if (((int)len - dstsize) > 0)
554 src += ((int)len - dstsize);
555
556 /* note: _don't_ change this to strlcpy */
Kevin Stevesef4eea92001-02-05 12:42:17 +0000557 strncpy(dst, src, (size_t)dstsize);
Damien Millerdd47aa22000-06-27 11:18:27 +1000558 }
Kevin Stevesef4eea92001-02-05 12:42:17 +0000559
andre2ff7b5d2000-06-03 14:57:40 +0000560 return dst;
561}
562
andre2ff7b5d2000-06-03 14:57:40 +0000563/**
564 ** utmp utility functions
andre61e67252000-06-04 17:07:49 +0000565 **
566 ** These functions manipulate struct utmp, taking system differences
567 ** into account.
andre2ff7b5d2000-06-03 14:57:40 +0000568 **/
569
570#if defined(USE_UTMP) || defined (USE_WTMP) || defined (USE_LOGIN)
571
andre2ff7b5d2000-06-03 14:57:40 +0000572/* build the utmp structure */
573void
andre61e67252000-06-04 17:07:49 +0000574set_utmp_time(struct logininfo *li, struct utmp *ut)
575{
Damien Millerdd47aa22000-06-27 11:18:27 +1000576# ifdef HAVE_TV_IN_UTMP
andre2ff7b5d2000-06-03 14:57:40 +0000577 ut->ut_tv.tv_sec = li->tv_sec;
578 ut->ut_tv.tv_usec = li->tv_usec;
Damien Millerdd47aa22000-06-27 11:18:27 +1000579# else
andre2ff7b5d2000-06-03 14:57:40 +0000580# ifdef HAVE_TIME_IN_UTMP
581 ut->ut_time = li->tv_sec;
582# endif
Damien Millerdd47aa22000-06-27 11:18:27 +1000583# endif
andre2ff7b5d2000-06-03 14:57:40 +0000584}
585
586void
587construct_utmp(struct logininfo *li,
andre61e67252000-06-04 17:07:49 +0000588 struct utmp *ut)
589{
Damien Miller348c9b72000-08-15 10:01:22 +1000590 memset(ut, '\0', sizeof(*ut));
andre6bb92372000-06-19 08:20:03 +0000591
592 /* First fill out fields used for both logins and logouts */
593
Damien Millerdd47aa22000-06-27 11:18:27 +1000594# ifdef HAVE_ID_IN_UTMP
andre2ff7b5d2000-06-03 14:57:40 +0000595 line_abbrevname(ut->ut_id, li->line, sizeof(ut->ut_id));
Damien Millerdd47aa22000-06-27 11:18:27 +1000596# endif
andre2ff7b5d2000-06-03 14:57:40 +0000597
Damien Millerdd47aa22000-06-27 11:18:27 +1000598# ifdef HAVE_TYPE_IN_UTMP
andre6bb92372000-06-19 08:20:03 +0000599 /* This is done here to keep utmp constants out of struct logininfo */
andre2ff7b5d2000-06-03 14:57:40 +0000600 switch (li->type) {
601 case LTYPE_LOGIN:
602 ut->ut_type = USER_PROCESS;
603 break;
604 case LTYPE_LOGOUT:
605 ut->ut_type = DEAD_PROCESS;
606 break;
607 }
Damien Millerdd47aa22000-06-27 11:18:27 +1000608# endif
andre6bb92372000-06-19 08:20:03 +0000609 set_utmp_time(li, ut);
andre2ff7b5d2000-06-03 14:57:40 +0000610
andre6bb92372000-06-19 08:20:03 +0000611 line_stripname(ut->ut_line, li->line, sizeof(ut->ut_line));
Damien Millerdd47aa22000-06-27 11:18:27 +1000612
613# ifdef HAVE_PID_IN_UTMP
andre2ff7b5d2000-06-03 14:57:40 +0000614 ut->ut_pid = li->pid;
Damien Millerdd47aa22000-06-27 11:18:27 +1000615# endif
andre6bb92372000-06-19 08:20:03 +0000616
617 /* If we're logging out, leave all other fields blank */
618 if (li->type == LTYPE_LOGOUT)
619 return;
620
Damien Millerdd47aa22000-06-27 11:18:27 +1000621 /*
622 * These fields are only used when logging in, and are blank
Kevin Stevesef4eea92001-02-05 12:42:17 +0000623 * for logouts.
Damien Millerdd47aa22000-06-27 11:18:27 +1000624 */
andre6bb92372000-06-19 08:20:03 +0000625
626 /* Use strncpy because we don't necessarily want null termination */
Damien Miller7a0e5dc2000-07-11 12:15:54 +1000627 strncpy(ut->ut_name, li->username, MIN_SIZEOF(ut->ut_name, li->username));
Damien Millerdd47aa22000-06-27 11:18:27 +1000628# ifdef HAVE_HOST_IN_UTMP
andre6bb92372000-06-19 08:20:03 +0000629 strncpy(ut->ut_host, li->hostname, MIN_SIZEOF(ut->ut_host, li->hostname));
Damien Millerdd47aa22000-06-27 11:18:27 +1000630# endif
631# ifdef HAVE_ADDR_IN_UTMP
andre61e67252000-06-04 17:07:49 +0000632 /* this is just a 32-bit IP address */
633 if (li->hostaddr.sa.sa_family == AF_INET)
634 ut->ut_addr = li->hostaddr.sa_in.sin_addr.s_addr;
Kevin Stevesef4eea92001-02-05 12:42:17 +0000635# endif
andre61e67252000-06-04 17:07:49 +0000636}
Damien Millerdd47aa22000-06-27 11:18:27 +1000637#endif /* USE_UTMP || USE_WTMP || USE_LOGIN */
andre61e67252000-06-04 17:07:49 +0000638
andre2ff7b5d2000-06-03 14:57:40 +0000639/**
640 ** utmpx utility functions
andre61e67252000-06-04 17:07:49 +0000641 **
642 ** These functions manipulate struct utmpx, accounting for system
643 ** variations.
andre2ff7b5d2000-06-03 14:57:40 +0000644 **/
645
646#if defined(USE_UTMPX) || defined (USE_WTMPX)
andre2ff7b5d2000-06-03 14:57:40 +0000647/* build the utmpx structure */
648void
andre61e67252000-06-04 17:07:49 +0000649set_utmpx_time(struct logininfo *li, struct utmpx *utx)
650{
Damien Millerdd47aa22000-06-27 11:18:27 +1000651# ifdef HAVE_TV_IN_UTMPX
andre2ff7b5d2000-06-03 14:57:40 +0000652 utx->ut_tv.tv_sec = li->tv_sec;
653 utx->ut_tv.tv_usec = li->tv_usec;
Damien Millerdd47aa22000-06-27 11:18:27 +1000654# else /* HAVE_TV_IN_UTMPX */
andre2ff7b5d2000-06-03 14:57:40 +0000655# ifdef HAVE_TIME_IN_UTMPX
656 utx->ut_time = li->tv_sec;
Damien Millerdd47aa22000-06-27 11:18:27 +1000657# endif /* HAVE_TIME_IN_UTMPX */
658# endif /* HAVE_TV_IN_UTMPX */
andre2ff7b5d2000-06-03 14:57:40 +0000659}
660
andre61e67252000-06-04 17:07:49 +0000661void
662construct_utmpx(struct logininfo *li, struct utmpx *utx)
663{
Damien Miller348c9b72000-08-15 10:01:22 +1000664 memset(utx, '\0', sizeof(*utx));
Damien Miller8e81ed32000-07-01 13:17:42 +1000665# ifdef HAVE_ID_IN_UTMPX
andre2ff7b5d2000-06-03 14:57:40 +0000666 line_abbrevname(utx->ut_id, li->line, sizeof(utx->ut_id));
Damien Miller8e81ed32000-07-01 13:17:42 +1000667# endif
andre2ff7b5d2000-06-03 14:57:40 +0000668
669 /* this is done here to keep utmp constants out of loginrec.h */
670 switch (li->type) {
671 case LTYPE_LOGIN:
672 utx->ut_type = USER_PROCESS;
673 break;
674 case LTYPE_LOGOUT:
675 utx->ut_type = DEAD_PROCESS;
676 break;
677 }
andre2ff7b5d2000-06-03 14:57:40 +0000678 line_stripname(utx->ut_line, li->line, sizeof(utx->ut_line));
andre2ff7b5d2000-06-03 14:57:40 +0000679 set_utmpx_time(li, utx);
andre6bb92372000-06-19 08:20:03 +0000680 utx->ut_pid = li->pid;
681
682 if (li->type == LTYPE_LOGOUT)
683 return;
684
Damien Millerdd47aa22000-06-27 11:18:27 +1000685 /*
686 * These fields are only used when logging in, and are blank
Kevin Stevesef4eea92001-02-05 12:42:17 +0000687 * for logouts.
Damien Millerdd47aa22000-06-27 11:18:27 +1000688 */
andre6bb92372000-06-19 08:20:03 +0000689
690 /* strncpy(): Don't necessarily want null termination */
Damien Miller7a0e5dc2000-07-11 12:15:54 +1000691 strncpy(utx->ut_name, li->username, MIN_SIZEOF(utx->ut_name, li->username));
Damien Millerdd47aa22000-06-27 11:18:27 +1000692# ifdef HAVE_HOST_IN_UTMPX
andre6bb92372000-06-19 08:20:03 +0000693 strncpy(utx->ut_host, li->hostname, MIN_SIZEOF(utx->ut_host, li->hostname));
Damien Millerdd47aa22000-06-27 11:18:27 +1000694# endif
695# ifdef HAVE_ADDR_IN_UTMPX
Damien Millerd6f204d2000-09-23 13:57:27 +1100696 /* this is just a 32-bit IP address */
697 if (li->hostaddr.sa.sa_family == AF_INET)
698 utx->ut_addr = li->hostaddr.sa_in.sin_addr.s_addr;
Damien Millerdd47aa22000-06-27 11:18:27 +1000699# endif
700# ifdef HAVE_SYSLEN_IN_UTMPX
andre6bb92372000-06-19 08:20:03 +0000701 /* ut_syslen is the length of the utx_host string */
702 utx->ut_syslen = MIN(strlen(li->hostname), sizeof(utx->ut_host));
Damien Millerdd47aa22000-06-27 11:18:27 +1000703# endif
andre61e67252000-06-04 17:07:49 +0000704}
Damien Millerdd47aa22000-06-27 11:18:27 +1000705#endif /* USE_UTMPX || USE_WTMPX */
andre2ff7b5d2000-06-03 14:57:40 +0000706
707/**
andre61e67252000-06-04 17:07:49 +0000708 ** Low-level utmp functions
andre2ff7b5d2000-06-03 14:57:40 +0000709 **/
710
711/* FIXME: (ATL) utmp_write_direct needs testing */
andre2ff7b5d2000-06-03 14:57:40 +0000712#ifdef USE_UTMP
713
andre2ff7b5d2000-06-03 14:57:40 +0000714/* if we can, use pututline() etc. */
Damien Millerdd47aa22000-06-27 11:18:27 +1000715# if !defined(DISABLE_PUTUTLINE) && defined(HAVE_SETUTENT) && \
716 defined(HAVE_PUTUTLINE)
andre2ff7b5d2000-06-03 14:57:40 +0000717# define UTMP_USE_LIBRARY
Damien Millerdd47aa22000-06-27 11:18:27 +1000718# endif
andre2ff7b5d2000-06-03 14:57:40 +0000719
720
721/* write a utmp entry with the system's help (pututline() and pals) */
Damien Millerdd47aa22000-06-27 11:18:27 +1000722# ifdef UTMP_USE_LIBRARY
andre2ff7b5d2000-06-03 14:57:40 +0000723static int
andre61e67252000-06-04 17:07:49 +0000724utmp_write_library(struct logininfo *li, struct utmp *ut)
725{
andre2ff7b5d2000-06-03 14:57:40 +0000726 setutent();
727 pututline(ut);
728
Damien Millerdd47aa22000-06-27 11:18:27 +1000729# ifdef HAVE_ENDUTENT
andre2ff7b5d2000-06-03 14:57:40 +0000730 endutent();
Damien Millerdd47aa22000-06-27 11:18:27 +1000731# endif
andre2ff7b5d2000-06-03 14:57:40 +0000732 return 1;
andre61e67252000-06-04 17:07:49 +0000733}
Damien Millerdd47aa22000-06-27 11:18:27 +1000734# else /* UTMP_USE_LIBRARY */
andre2ff7b5d2000-06-03 14:57:40 +0000735
736/* write a utmp entry direct to the file */
andre61e67252000-06-04 17:07:49 +0000737/* This is a slightly modification of code in OpenBSD's login.c */
andre2ff7b5d2000-06-03 14:57:40 +0000738static int
andre61e67252000-06-04 17:07:49 +0000739utmp_write_direct(struct logininfo *li, struct utmp *ut)
740{
andre2ff7b5d2000-06-03 14:57:40 +0000741 struct utmp old_ut;
742 register int fd;
743 int tty;
744
andre6bb92372000-06-19 08:20:03 +0000745 /* FIXME: (ATL) ttyslot() needs local implementation */
Damien Miller348c9b72000-08-15 10:01:22 +1000746
Damien Millere5192fa2000-08-29 14:30:37 +1100747#if defined(HAVE_GETTTYENT)
Damien Miller348c9b72000-08-15 10:01:22 +1000748 register struct ttyent *ty;
749
750 tty=0;
751
752 setttyent();
753 while ((struct ttyent *)0 != (ty = getttyent())) {
754 tty++;
755 if (!strncmp(ty->ty_name, ut->ut_line, sizeof(ut->ut_line)))
756 break;
757 }
758 endttyent();
759
760 if((struct ttyent *)0 == ty) {
761 log("utmp_write_entry: tty not found");
762 return(1);
763 }
764#else /* FIXME */
765
andre2ff7b5d2000-06-03 14:57:40 +0000766 tty = ttyslot(); /* seems only to work for /dev/ttyp? style names */
767
Damien Millere5192fa2000-08-29 14:30:37 +1100768#endif /* HAVE_GETTTYENT */
Damien Miller348c9b72000-08-15 10:01:22 +1000769
andre2ff7b5d2000-06-03 14:57:40 +0000770 if (tty > 0 && (fd = open(UTMP_FILE, O_RDWR|O_CREAT, 0644)) >= 0) {
771 (void)lseek(fd, (off_t)(tty * sizeof(struct utmp)), SEEK_SET);
772 /*
773 * Prevent luser from zero'ing out ut_host.
774 * If the new ut_line is empty but the old one is not
Damien Miller7a0e5dc2000-07-11 12:15:54 +1000775 * and ut_line and ut_name match, preserve the old ut_line.
andre2ff7b5d2000-06-03 14:57:40 +0000776 */
Kevin Stevesef4eea92001-02-05 12:42:17 +0000777 if (atomicio(read, fd, &old_ut, sizeof(old_ut)) == sizeof(old_ut) &&
778 (ut->ut_host[0] == '\0') && (old_ut.ut_host[0] != '\0') &&
779 (strncmp(old_ut.ut_line, ut->ut_line, sizeof(ut->ut_line)) == 0) &&
Damien Miller7a0e5dc2000-07-11 12:15:54 +1000780 (strncmp(old_ut.ut_name, ut->ut_name, sizeof(ut->ut_name)) == 0)) {
andre2ff7b5d2000-06-03 14:57:40 +0000781 (void)memcpy(ut->ut_host, old_ut.ut_host, sizeof(ut->ut_host));
Damien Miller53c5d462000-06-28 00:50:50 +1000782 }
Kevin Stevesef4eea92001-02-05 12:42:17 +0000783
andre2ff7b5d2000-06-03 14:57:40 +0000784 (void)lseek(fd, (off_t)(tty * sizeof(struct utmp)), SEEK_SET);
Damien Miller36ccb5c2000-08-09 16:34:27 +1000785 if (atomicio(write, fd, ut, sizeof(*ut)) != sizeof(*ut))
andre2ff7b5d2000-06-03 14:57:40 +0000786 log("utmp_write_direct: error writing %s: %s",
andre6bb92372000-06-19 08:20:03 +0000787 UTMP_FILE, strerror(errno));
Kevin Stevesef4eea92001-02-05 12:42:17 +0000788
andre2ff7b5d2000-06-03 14:57:40 +0000789 (void)close(fd);
790 return 1;
Damien Miller53c5d462000-06-28 00:50:50 +1000791 } else {
andre2ff7b5d2000-06-03 14:57:40 +0000792 return 0;
Damien Miller53c5d462000-06-28 00:50:50 +1000793 }
andre61e67252000-06-04 17:07:49 +0000794}
Damien Millerdd47aa22000-06-27 11:18:27 +1000795# endif /* UTMP_USE_LIBRARY */
andre2ff7b5d2000-06-03 14:57:40 +0000796
797static int
andre61e67252000-06-04 17:07:49 +0000798utmp_perform_login(struct logininfo *li)
799{
andre2ff7b5d2000-06-03 14:57:40 +0000800 struct utmp ut;
801
802 construct_utmp(li, &ut);
Damien Millerdd47aa22000-06-27 11:18:27 +1000803# ifdef UTMP_USE_LIBRARY
andre2ff7b5d2000-06-03 14:57:40 +0000804 if (!utmp_write_library(li, &ut)) {
andre6bb92372000-06-19 08:20:03 +0000805 log("utmp_perform_login: utmp_write_library() failed");
andre2ff7b5d2000-06-03 14:57:40 +0000806 return 0;
807 }
Damien Millerdd47aa22000-06-27 11:18:27 +1000808# else
andre2ff7b5d2000-06-03 14:57:40 +0000809 if (!utmp_write_direct(li, &ut)) {
810 log("utmp_perform_login: utmp_write_direct() failed");
811 return 0;
812 }
Damien Millerdd47aa22000-06-27 11:18:27 +1000813# endif
andre2ff7b5d2000-06-03 14:57:40 +0000814 return 1;
andre61e67252000-06-04 17:07:49 +0000815}
andre2ff7b5d2000-06-03 14:57:40 +0000816
817
818static int
andre61e67252000-06-04 17:07:49 +0000819utmp_perform_logout(struct logininfo *li)
820{
andre2ff7b5d2000-06-03 14:57:40 +0000821 struct utmp ut;
822
andre6bb92372000-06-19 08:20:03 +0000823 construct_utmp(li, &ut);
Damien Millerdd47aa22000-06-27 11:18:27 +1000824# ifdef UTMP_USE_LIBRARY
andre6bb92372000-06-19 08:20:03 +0000825 if (!utmp_write_library(li, &ut)) {
826 log("utmp_perform_logout: utmp_write_library() failed");
827 return 0;
828 }
Damien Millerdd47aa22000-06-27 11:18:27 +1000829# else
andre6bb92372000-06-19 08:20:03 +0000830 if (!utmp_write_direct(li, &ut)) {
831 log("utmp_perform_logout: utmp_write_direct() failed");
832 return 0;
833 }
Damien Millerdd47aa22000-06-27 11:18:27 +1000834# endif
andre2ff7b5d2000-06-03 14:57:40 +0000835 return 1;
andre61e67252000-06-04 17:07:49 +0000836}
andre2ff7b5d2000-06-03 14:57:40 +0000837
838
839int
andre61e67252000-06-04 17:07:49 +0000840utmp_write_entry(struct logininfo *li)
841{
andre2ff7b5d2000-06-03 14:57:40 +0000842 switch(li->type) {
843 case LTYPE_LOGIN:
844 return utmp_perform_login(li);
845
846 case LTYPE_LOGOUT:
847 return utmp_perform_logout(li);
848
849 default:
850 log("utmp_write_entry: invalid type field");
851 return 0;
852 }
andre61e67252000-06-04 17:07:49 +0000853}
Damien Millerdd47aa22000-06-27 11:18:27 +1000854#endif /* USE_UTMP */
andre2ff7b5d2000-06-03 14:57:40 +0000855
856
857/**
andre61e67252000-06-04 17:07:49 +0000858 ** Low-level utmpx functions
andre2ff7b5d2000-06-03 14:57:40 +0000859 **/
860
861/* not much point if we don't want utmpx entries */
862#ifdef USE_UTMPX
863
andre2ff7b5d2000-06-03 14:57:40 +0000864/* if we have the wherewithall, use pututxline etc. */
Damien Millerdd47aa22000-06-27 11:18:27 +1000865# if !defined(DISABLE_PUTUTXLINE) && defined(HAVE_SETUTXENT) && \
866 defined(HAVE_PUTUTXLINE)
andre2ff7b5d2000-06-03 14:57:40 +0000867# define UTMPX_USE_LIBRARY
Damien Millerdd47aa22000-06-27 11:18:27 +1000868# endif
andre2ff7b5d2000-06-03 14:57:40 +0000869
870
871/* write a utmpx entry with the system's help (pututxline() and pals) */
Damien Millerdd47aa22000-06-27 11:18:27 +1000872# ifdef UTMPX_USE_LIBRARY
andre2ff7b5d2000-06-03 14:57:40 +0000873static int
andre61e67252000-06-04 17:07:49 +0000874utmpx_write_library(struct logininfo *li, struct utmpx *utx)
875{
andre2ff7b5d2000-06-03 14:57:40 +0000876 setutxent();
877 pututxline(utx);
878
Damien Millerdd47aa22000-06-27 11:18:27 +1000879# ifdef HAVE_ENDUTXENT
andre2ff7b5d2000-06-03 14:57:40 +0000880 endutxent();
Damien Millerdd47aa22000-06-27 11:18:27 +1000881# endif
andre2ff7b5d2000-06-03 14:57:40 +0000882 return 1;
andre61e67252000-06-04 17:07:49 +0000883}
andre2ff7b5d2000-06-03 14:57:40 +0000884
Damien Millerdd47aa22000-06-27 11:18:27 +1000885# else /* UTMPX_USE_LIBRARY */
andre2ff7b5d2000-06-03 14:57:40 +0000886
887/* write a utmp entry direct to the file */
888static int
andre61e67252000-06-04 17:07:49 +0000889utmpx_write_direct(struct logininfo *li, struct utmpx *utx)
Kevin Stevesef4eea92001-02-05 12:42:17 +0000890{
andre2ff7b5d2000-06-03 14:57:40 +0000891 log("utmpx_write_direct: not implemented!");
892 return 0;
andre61e67252000-06-04 17:07:49 +0000893}
Damien Millerdd47aa22000-06-27 11:18:27 +1000894# endif /* UTMPX_USE_LIBRARY */
andre2ff7b5d2000-06-03 14:57:40 +0000895
896static int
andre61e67252000-06-04 17:07:49 +0000897utmpx_perform_login(struct logininfo *li)
898{
andre2ff7b5d2000-06-03 14:57:40 +0000899 struct utmpx utx;
900
901 construct_utmpx(li, &utx);
Damien Millerdd47aa22000-06-27 11:18:27 +1000902# ifdef UTMPX_USE_LIBRARY
andre2ff7b5d2000-06-03 14:57:40 +0000903 if (!utmpx_write_library(li, &utx)) {
904 log("utmpx_perform_login: utmp_write_library() failed");
905 return 0;
906 }
Damien Millerdd47aa22000-06-27 11:18:27 +1000907# else
andre2ff7b5d2000-06-03 14:57:40 +0000908 if (!utmpx_write_direct(li, &ut)) {
909 log("utmpx_perform_login: utmp_write_direct() failed");
910 return 0;
911 }
Damien Millerdd47aa22000-06-27 11:18:27 +1000912# endif
andre2ff7b5d2000-06-03 14:57:40 +0000913 return 1;
andre61e67252000-06-04 17:07:49 +0000914}
andre2ff7b5d2000-06-03 14:57:40 +0000915
916
917static int
andre61e67252000-06-04 17:07:49 +0000918utmpx_perform_logout(struct logininfo *li)
919{
andre2ff7b5d2000-06-03 14:57:40 +0000920 struct utmpx utx;
921
922 memset(&utx, '\0', sizeof(utx));
923 set_utmpx_time(li, &utx);
924 line_stripname(utx.ut_line, li->line, sizeof(utx.ut_line));
Damien Millerdd47aa22000-06-27 11:18:27 +1000925# ifdef HAVE_ID_IN_UTMPX
andre2ff7b5d2000-06-03 14:57:40 +0000926 line_abbrevname(utx.ut_id, li->line, sizeof(utx.ut_id));
Damien Millerdd47aa22000-06-27 11:18:27 +1000927# endif
928# ifdef HAVE_TYPE_IN_UTMPX
andre2ff7b5d2000-06-03 14:57:40 +0000929 utx.ut_type = DEAD_PROCESS;
Damien Millerdd47aa22000-06-27 11:18:27 +1000930# endif
andre2ff7b5d2000-06-03 14:57:40 +0000931
Damien Millerdd47aa22000-06-27 11:18:27 +1000932# ifdef UTMPX_USE_LIBRARY
andre2ff7b5d2000-06-03 14:57:40 +0000933 utmpx_write_library(li, &utx);
Damien Millerdd47aa22000-06-27 11:18:27 +1000934# else
andre2ff7b5d2000-06-03 14:57:40 +0000935 utmpx_write_direct(li, &utx);
Damien Millerdd47aa22000-06-27 11:18:27 +1000936# endif
andre2ff7b5d2000-06-03 14:57:40 +0000937 return 1;
andre61e67252000-06-04 17:07:49 +0000938}
andre2ff7b5d2000-06-03 14:57:40 +0000939
andre2ff7b5d2000-06-03 14:57:40 +0000940int
andre61e67252000-06-04 17:07:49 +0000941utmpx_write_entry(struct logininfo *li)
942{
andre2ff7b5d2000-06-03 14:57:40 +0000943 switch(li->type) {
944 case LTYPE_LOGIN:
945 return utmpx_perform_login(li);
946 case LTYPE_LOGOUT:
947 return utmpx_perform_logout(li);
948 default:
949 log("utmpx_write_entry: invalid type field");
950 return 0;
951 }
andre61e67252000-06-04 17:07:49 +0000952}
Damien Millerdd47aa22000-06-27 11:18:27 +1000953#endif /* USE_UTMPX */
andre2ff7b5d2000-06-03 14:57:40 +0000954
955
956/**
andre61e67252000-06-04 17:07:49 +0000957 ** Low-level wtmp functions
andre2ff7b5d2000-06-03 14:57:40 +0000958 **/
959
Kevin Stevesef4eea92001-02-05 12:42:17 +0000960#ifdef USE_WTMP
andre2ff7b5d2000-06-03 14:57:40 +0000961
andre2ff7b5d2000-06-03 14:57:40 +0000962/* write a wtmp entry direct to the end of the file */
andre61e67252000-06-04 17:07:49 +0000963/* This is a slight modification of code in OpenBSD's logwtmp.c */
andre2ff7b5d2000-06-03 14:57:40 +0000964static int
andre61e67252000-06-04 17:07:49 +0000965wtmp_write(struct logininfo *li, struct utmp *ut)
966{
andre2ff7b5d2000-06-03 14:57:40 +0000967 struct stat buf;
968 int fd, ret = 1;
969
970 if ((fd = open(WTMP_FILE, O_WRONLY|O_APPEND, 0)) < 0) {
971 log("wtmp_write: problem writing %s: %s",
972 WTMP_FILE, strerror(errno));
973 return 0;
974 }
Kevin Stevesef4eea92001-02-05 12:42:17 +0000975 if (fstat(fd, &buf) == 0)
Damien Miller53c5d462000-06-28 00:50:50 +1000976 if (atomicio(write, fd, ut, sizeof(*ut)) != sizeof(*ut)) {
andre2ff7b5d2000-06-03 14:57:40 +0000977 ftruncate(fd, buf.st_size);
978 log("wtmp_write: problem writing %s: %s",
979 WTMP_FILE, strerror(errno));
980 ret = 0;
981 }
982 (void)close(fd);
andre2ff7b5d2000-06-03 14:57:40 +0000983 return ret;
andre61e67252000-06-04 17:07:49 +0000984}
andre2ff7b5d2000-06-03 14:57:40 +0000985
andre2ff7b5d2000-06-03 14:57:40 +0000986static int
Damien Millerdd47aa22000-06-27 11:18:27 +1000987wtmp_perform_login(struct logininfo *li)
988{
andre2ff7b5d2000-06-03 14:57:40 +0000989 struct utmp ut;
990
991 construct_utmp(li, &ut);
992 return wtmp_write(li, &ut);
andre61e67252000-06-04 17:07:49 +0000993}
andre2ff7b5d2000-06-03 14:57:40 +0000994
995
996static int
andre61e67252000-06-04 17:07:49 +0000997wtmp_perform_logout(struct logininfo *li)
998{
andre2ff7b5d2000-06-03 14:57:40 +0000999 struct utmp ut;
1000
1001 construct_utmp(li, &ut);
andre2ff7b5d2000-06-03 14:57:40 +00001002 return wtmp_write(li, &ut);
andre61e67252000-06-04 17:07:49 +00001003}
andre2ff7b5d2000-06-03 14:57:40 +00001004
1005
1006int
andre61e67252000-06-04 17:07:49 +00001007wtmp_write_entry(struct logininfo *li)
1008{
andre2ff7b5d2000-06-03 14:57:40 +00001009 switch(li->type) {
1010 case LTYPE_LOGIN:
1011 return wtmp_perform_login(li);
1012 case LTYPE_LOGOUT:
1013 return wtmp_perform_logout(li);
1014 default:
1015 log("wtmp_write_entry: invalid type field");
1016 return 0;
1017 }
andre61e67252000-06-04 17:07:49 +00001018}
andre2ff7b5d2000-06-03 14:57:40 +00001019
1020
andre6bb92372000-06-19 08:20:03 +00001021/* Notes on fetching login data from wtmp/wtmpx
Kevin Stevesef4eea92001-02-05 12:42:17 +00001022 *
andre6bb92372000-06-19 08:20:03 +00001023 * Logouts are usually recorded with (amongst other things) a blank
1024 * username on a given tty line. However, some systems (HP-UX is one)
1025 * leave all fields set, but change the ut_type field to DEAD_PROCESS.
1026 *
1027 * Since we're only looking for logins here, we know that the username
1028 * must be set correctly. On systems that leave it in, we check for
1029 * ut_type==USER_PROCESS (indicating a login.)
1030 *
1031 * Portability: Some systems may set something other than USER_PROCESS
1032 * to indicate a login process. I don't know of any as I write. Also,
1033 * it's possible that some systems may both leave the username in
1034 * place and not have ut_type.
1035 */
1036
andre6bb92372000-06-19 08:20:03 +00001037/* return true if this wtmp entry indicates a login */
1038static int
1039wtmp_islogin(struct logininfo *li, struct utmp *ut)
1040{
Kevin Stevesef4eea92001-02-05 12:42:17 +00001041 if (strncmp(li->username, ut->ut_name,
Damien Miller7a0e5dc2000-07-11 12:15:54 +10001042 MIN_SIZEOF(li->username, ut->ut_name)) == 0) {
Damien Millerdd47aa22000-06-27 11:18:27 +10001043# ifdef HAVE_TYPE_IN_UTMP
andre6bb92372000-06-19 08:20:03 +00001044 if (ut->ut_type & USER_PROCESS)
1045 return 1;
Damien Millerdd47aa22000-06-27 11:18:27 +10001046# else
andre6bb92372000-06-19 08:20:03 +00001047 return 1;
Damien Millerdd47aa22000-06-27 11:18:27 +10001048# endif
andre6bb92372000-06-19 08:20:03 +00001049 }
1050 return 0;
1051}
1052
andre2ff7b5d2000-06-03 14:57:40 +00001053int
andre61e67252000-06-04 17:07:49 +00001054wtmp_get_entry(struct logininfo *li)
1055{
andre2ff7b5d2000-06-03 14:57:40 +00001056 struct stat st;
1057 struct utmp ut;
andre6bb92372000-06-19 08:20:03 +00001058 int fd, found=0;
1059
1060 /* Clear the time entries in our logininfo */
1061 li->tv_sec = li->tv_usec = 0;
andre2ff7b5d2000-06-03 14:57:40 +00001062
1063 if ((fd = open(WTMP_FILE, O_RDONLY)) < 0) {
1064 log("wtmp_get_entry: problem opening %s: %s",
1065 WTMP_FILE, strerror(errno));
1066 return 0;
1067 }
Kevin Stevesef4eea92001-02-05 12:42:17 +00001068 if (fstat(fd, &st) != 0) {
andre2ff7b5d2000-06-03 14:57:40 +00001069 log("wtmp_get_entry: couldn't stat %s: %s",
1070 WTMP_FILE, strerror(errno));
1071 close(fd);
1072 return 0;
1073 }
andre2ff7b5d2000-06-03 14:57:40 +00001074
andre6bb92372000-06-19 08:20:03 +00001075 /* Seek to the start of the last struct utmp */
Damien Miller348c9b72000-08-15 10:01:22 +10001076 if (lseek(fd, (off_t)(0 - sizeof(struct utmp)), SEEK_END) == -1) {
andre6bb92372000-06-19 08:20:03 +00001077 /* Looks like we've got a fresh wtmp file */
1078 close(fd);
1079 return 0;
1080 }
1081
1082 while (!found) {
Damien Miller53c5d462000-06-28 00:50:50 +10001083 if (atomicio(read, fd, &ut, sizeof(ut)) != sizeof(ut)) {
andre2ff7b5d2000-06-03 14:57:40 +00001084 log("wtmp_get_entry: read of %s failed: %s",
1085 WTMP_FILE, strerror(errno));
1086 close (fd);
1087 return 0;
1088 }
andre6bb92372000-06-19 08:20:03 +00001089 if ( wtmp_islogin(li, &ut) ) {
1090 found = 1;
1091 /* We've already checked for a time in struct
1092 * utmp, in login_getlast(). */
Damien Millerdd47aa22000-06-27 11:18:27 +10001093# ifdef HAVE_TIME_IN_UTMP
andre2ff7b5d2000-06-03 14:57:40 +00001094 li->tv_sec = ut.ut_time;
Damien Millerdd47aa22000-06-27 11:18:27 +10001095# else
andre2ff7b5d2000-06-03 14:57:40 +00001096# if HAVE_TV_IN_UTMP
1097 li->tv_sec = ut.ut_tv.tv_sec;
1098# endif
Damien Millerdd47aa22000-06-27 11:18:27 +10001099# endif
andre6bb92372000-06-19 08:20:03 +00001100 line_fullname(li->line, ut.ut_line,
1101 MIN_SIZEOF(li->line, ut.ut_line));
Damien Millerdd47aa22000-06-27 11:18:27 +10001102# ifdef HAVE_HOST_IN_UTMP
andre6bb92372000-06-19 08:20:03 +00001103 strlcpy(li->hostname, ut.ut_host,
1104 MIN_SIZEOF(li->hostname, ut.ut_host));
Damien Millerdd47aa22000-06-27 11:18:27 +10001105# endif
andre6bb92372000-06-19 08:20:03 +00001106 continue;
andre2ff7b5d2000-06-03 14:57:40 +00001107 }
andre6bb92372000-06-19 08:20:03 +00001108 /* Seek back 2 x struct utmp */
andre2ff7b5d2000-06-03 14:57:40 +00001109 if (lseek(fd, (off_t)(0-2*sizeof(struct utmp)), SEEK_CUR) == -1) {
andre6bb92372000-06-19 08:20:03 +00001110 /* We've found the start of the file, so quit */
andre2ff7b5d2000-06-03 14:57:40 +00001111 close (fd);
1112 return 0;
1113 }
andre6bb92372000-06-19 08:20:03 +00001114 }
1115
1116 /* We found an entry. Tidy up and return */
1117 close(fd);
andre2ff7b5d2000-06-03 14:57:40 +00001118 return 1;
andre61e67252000-06-04 17:07:49 +00001119}
Damien Millerdd47aa22000-06-27 11:18:27 +10001120# endif /* USE_WTMP */
andre2ff7b5d2000-06-03 14:57:40 +00001121
1122
1123/**
andre61e67252000-06-04 17:07:49 +00001124 ** Low-level wtmpx functions
andre2ff7b5d2000-06-03 14:57:40 +00001125 **/
1126
1127#ifdef USE_WTMPX
andre2ff7b5d2000-06-03 14:57:40 +00001128/* write a wtmpx entry direct to the end of the file */
andre61e67252000-06-04 17:07:49 +00001129/* This is a slight modification of code in OpenBSD's logwtmp.c */
andre2ff7b5d2000-06-03 14:57:40 +00001130static int
andre61e67252000-06-04 17:07:49 +00001131wtmpx_write(struct logininfo *li, struct utmpx *utx)
1132{
andre2ff7b5d2000-06-03 14:57:40 +00001133 struct stat buf;
1134 int fd, ret = 1;
1135
1136 if ((fd = open(WTMPX_FILE, O_WRONLY|O_APPEND, 0)) < 0) {
1137 log("wtmpx_write: problem opening %s: %s",
1138 WTMPX_FILE, strerror(errno));
1139 return 0;
1140 }
1141
Kevin Stevesef4eea92001-02-05 12:42:17 +00001142 if (fstat(fd, &buf) == 0)
Damien Miller53c5d462000-06-28 00:50:50 +10001143 if (atomicio(write, fd, utx, sizeof(*utx)) != sizeof(*utx)) {
andre2ff7b5d2000-06-03 14:57:40 +00001144 ftruncate(fd, buf.st_size);
1145 log("wtmpx_write: problem writing %s: %s",
1146 WTMPX_FILE, strerror(errno));
1147 ret = 0;
1148 }
1149 (void)close(fd);
1150
1151 return ret;
andre61e67252000-06-04 17:07:49 +00001152}
andre2ff7b5d2000-06-03 14:57:40 +00001153
1154
1155static int
andre61e67252000-06-04 17:07:49 +00001156wtmpx_perform_login(struct logininfo *li)
1157{
andre2ff7b5d2000-06-03 14:57:40 +00001158 struct utmpx utx;
1159
1160 construct_utmpx(li, &utx);
1161 return wtmpx_write(li, &utx);
andre61e67252000-06-04 17:07:49 +00001162}
andre2ff7b5d2000-06-03 14:57:40 +00001163
1164
1165static int
andre61e67252000-06-04 17:07:49 +00001166wtmpx_perform_logout(struct logininfo *li)
1167{
andre2ff7b5d2000-06-03 14:57:40 +00001168 struct utmpx utx;
1169
1170 construct_utmpx(li, &utx);
andre2ff7b5d2000-06-03 14:57:40 +00001171 return wtmpx_write(li, &utx);
andre61e67252000-06-04 17:07:49 +00001172}
andre2ff7b5d2000-06-03 14:57:40 +00001173
1174
1175int
andre61e67252000-06-04 17:07:49 +00001176wtmpx_write_entry(struct logininfo *li)
1177{
andre2ff7b5d2000-06-03 14:57:40 +00001178 switch(li->type) {
1179 case LTYPE_LOGIN:
1180 return wtmpx_perform_login(li);
1181 case LTYPE_LOGOUT:
1182 return wtmpx_perform_logout(li);
1183 default:
1184 log("wtmpx_write_entry: invalid type field");
1185 return 0;
1186 }
andre61e67252000-06-04 17:07:49 +00001187}
andre2ff7b5d2000-06-03 14:57:40 +00001188
andre6bb92372000-06-19 08:20:03 +00001189/* Please see the notes above wtmp_islogin() for information about the
1190 next two functions */
1191
1192/* Return true if this wtmpx entry indicates a login */
1193static int
1194wtmpx_islogin(struct logininfo *li, struct utmpx *utx)
1195{
Damien Miller7a0e5dc2000-07-11 12:15:54 +10001196 if ( strncmp(li->username, utx->ut_name,
1197 MIN_SIZEOF(li->username, utx->ut_name)) == 0 ) {
Damien Millerdd47aa22000-06-27 11:18:27 +10001198# ifdef HAVE_TYPE_IN_UTMPX
andre6bb92372000-06-19 08:20:03 +00001199 if (utx->ut_type == USER_PROCESS)
1200 return 1;
Damien Millerdd47aa22000-06-27 11:18:27 +10001201# else
andre6bb92372000-06-19 08:20:03 +00001202 return 1;
Damien Millerdd47aa22000-06-27 11:18:27 +10001203# endif
andre6bb92372000-06-19 08:20:03 +00001204 }
1205 return 0;
1206}
1207
andre2ff7b5d2000-06-03 14:57:40 +00001208
1209int
andre61e67252000-06-04 17:07:49 +00001210wtmpx_get_entry(struct logininfo *li)
1211{
andre2ff7b5d2000-06-03 14:57:40 +00001212 struct stat st;
1213 struct utmpx utx;
andre6bb92372000-06-19 08:20:03 +00001214 int fd, found=0;
1215
1216 /* Clear the time entries */
1217 li->tv_sec = li->tv_usec = 0;
andre2ff7b5d2000-06-03 14:57:40 +00001218
1219 if ((fd = open(WTMPX_FILE, O_RDONLY)) < 0) {
1220 log("wtmpx_get_entry: problem opening %s: %s",
1221 WTMPX_FILE, strerror(errno));
1222 return 0;
1223 }
Kevin Stevesef4eea92001-02-05 12:42:17 +00001224 if (fstat(fd, &st) != 0) {
andre2ff7b5d2000-06-03 14:57:40 +00001225 log("wtmpx_get_entry: couldn't stat %s: %s",
1226 WTMP_FILE, strerror(errno));
1227 close(fd);
1228 return 0;
1229 }
Kevin Stevesef4eea92001-02-05 12:42:17 +00001230
andre6bb92372000-06-19 08:20:03 +00001231 /* Seek to the start of the last struct utmpx */
1232 if (lseek(fd, (off_t)(0-sizeof(struct utmpx)), SEEK_END) == -1 ) {
1233 /* probably a newly rotated wtmpx file */
1234 close(fd);
1235 return 0;
1236 }
andre2ff7b5d2000-06-03 14:57:40 +00001237
andre6bb92372000-06-19 08:20:03 +00001238 while (!found) {
Damien Miller53c5d462000-06-28 00:50:50 +10001239 if (atomicio(read, fd, &utx, sizeof(utx)) != sizeof(utx)) {
andre2ff7b5d2000-06-03 14:57:40 +00001240 log("wtmpx_get_entry: read of %s failed: %s",
1241 WTMPX_FILE, strerror(errno));
1242 close (fd);
1243 return 0;
1244 }
andre2ff7b5d2000-06-03 14:57:40 +00001245 /* Logouts are recorded as a blank username on a particular line.
1246 * So, we just need to find the username in struct utmpx */
andre6bb92372000-06-19 08:20:03 +00001247 if ( wtmpx_islogin(li, &utx) ) {
Damien Millerdd47aa22000-06-27 11:18:27 +10001248# ifdef HAVE_TV_IN_UTMPX
andre2ff7b5d2000-06-03 14:57:40 +00001249 li->tv_sec = utx.ut_tv.tv_sec;
Damien Millerdd47aa22000-06-27 11:18:27 +10001250# else
andre2ff7b5d2000-06-03 14:57:40 +00001251# ifdef HAVE_TIME_IN_UTMPX
1252 li->tv_sec = utx.ut_time;
1253# endif
Damien Millerdd47aa22000-06-27 11:18:27 +10001254# endif
Damien Miller1a132252000-06-13 21:23:17 +10001255 line_fullname(li->line, utx.ut_line, sizeof(li->line));
Damien Millerdd47aa22000-06-27 11:18:27 +10001256# ifdef HAVE_HOST_IN_UTMPX
andre6bb92372000-06-19 08:20:03 +00001257 strlcpy(li->hostname, utx.ut_host,
1258 MIN_SIZEOF(li->hostname, utx.ut_host));
Damien Millerdd47aa22000-06-27 11:18:27 +10001259# endif
andre6bb92372000-06-19 08:20:03 +00001260 continue;
andre2ff7b5d2000-06-03 14:57:40 +00001261 }
1262 if (lseek(fd, (off_t)(0-2*sizeof(struct utmpx)), SEEK_CUR) == -1) {
1263 close (fd);
1264 return 0;
1265 }
andre6bb92372000-06-19 08:20:03 +00001266 }
1267
1268 close(fd);
andre2ff7b5d2000-06-03 14:57:40 +00001269 return 1;
andre61e67252000-06-04 17:07:49 +00001270}
Damien Millerd5bf3072000-06-07 21:32:13 +10001271#endif /* USE_WTMPX */
andre2ff7b5d2000-06-03 14:57:40 +00001272
andre2ff7b5d2000-06-03 14:57:40 +00001273/**
andre61e67252000-06-04 17:07:49 +00001274 ** Low-level libutil login() functions
andre2ff7b5d2000-06-03 14:57:40 +00001275 **/
1276
1277#ifdef USE_LOGIN
andre2ff7b5d2000-06-03 14:57:40 +00001278static int
andre61e67252000-06-04 17:07:49 +00001279syslogin_perform_login(struct logininfo *li)
1280{
andre2ff7b5d2000-06-03 14:57:40 +00001281 struct utmp *ut;
1282
Damien Miller348c9b72000-08-15 10:01:22 +10001283 if (! (ut = (struct utmp *)malloc(sizeof(*ut)))) {
andre2ff7b5d2000-06-03 14:57:40 +00001284 log("syslogin_perform_login: couldn't malloc()");
1285 return 0;
1286 }
1287 construct_utmp(li, ut);
1288 login(ut);
1289
1290 return 1;
andre61e67252000-06-04 17:07:49 +00001291}
1292
andre2ff7b5d2000-06-03 14:57:40 +00001293static int
andre61e67252000-06-04 17:07:49 +00001294syslogin_perform_logout(struct logininfo *li)
1295{
Damien Millerdd47aa22000-06-27 11:18:27 +10001296# ifdef HAVE_LOGOUT
andre2ff7b5d2000-06-03 14:57:40 +00001297 char line[8];
Kevin Stevesef4eea92001-02-05 12:42:17 +00001298
andre2ff7b5d2000-06-03 14:57:40 +00001299 (void)line_stripname(line, li->line, sizeof(line));
1300
1301 if (!logout(line)) {
1302 log("syslogin_perform_logout: logout() returned an error");
Damien Millerdd47aa22000-06-27 11:18:27 +10001303# ifdef HAVE_LOGWTMP
andre2ff7b5d2000-06-03 14:57:40 +00001304 } else {
1305 logwtmp(line, "", "");
Damien Millerdd47aa22000-06-27 11:18:27 +10001306# endif
Damien Miller9b6d4ab2000-07-02 08:43:18 +10001307 }
andre6bb92372000-06-19 08:20:03 +00001308 /* FIXME: (ATL - if the need arises) What to do if we have
1309 * login, but no logout? what if logout but no logwtmp? All
1310 * routines are in libutil so they should all be there,
1311 * but... */
Damien Millerdd47aa22000-06-27 11:18:27 +10001312# endif
andre2ff7b5d2000-06-03 14:57:40 +00001313 return 1;
andre61e67252000-06-04 17:07:49 +00001314}
andre2ff7b5d2000-06-03 14:57:40 +00001315
andre2ff7b5d2000-06-03 14:57:40 +00001316int
andre61e67252000-06-04 17:07:49 +00001317syslogin_write_entry(struct logininfo *li)
1318{
andre2ff7b5d2000-06-03 14:57:40 +00001319 switch (li->type) {
1320 case LTYPE_LOGIN:
1321 return syslogin_perform_login(li);
1322 case LTYPE_LOGOUT:
1323 return syslogin_perform_logout(li);
1324 default:
1325 log("syslogin_write_entry: Invalid type field");
1326 return 0;
1327 }
andre61e67252000-06-04 17:07:49 +00001328}
Damien Millerd5bf3072000-06-07 21:32:13 +10001329#endif /* USE_LOGIN */
andre2ff7b5d2000-06-03 14:57:40 +00001330
1331/* end of file log-syslogin.c */
1332
andre2ff7b5d2000-06-03 14:57:40 +00001333/**
andre61e67252000-06-04 17:07:49 +00001334 ** Low-level lastlog functions
andre2ff7b5d2000-06-03 14:57:40 +00001335 **/
1336
1337#ifdef USE_LASTLOG
Damien Millerdd47aa22000-06-27 11:18:27 +10001338#define LL_FILE 1
1339#define LL_DIR 2
1340#define LL_OTHER 3
andre2ff7b5d2000-06-03 14:57:40 +00001341
andre2ff7b5d2000-06-03 14:57:40 +00001342static void
andre61e67252000-06-04 17:07:49 +00001343lastlog_construct(struct logininfo *li, struct lastlog *last)
1344{
andre2ff7b5d2000-06-03 14:57:40 +00001345 /* clear the structure */
Damien Miller348c9b72000-08-15 10:01:22 +10001346 memset(last, '\0', sizeof(*last));
Kevin Stevesef4eea92001-02-05 12:42:17 +00001347
Damien Millerdd47aa22000-06-27 11:18:27 +10001348 (void)line_stripname(last->ll_line, li->line, sizeof(last->ll_line));
andre6bb92372000-06-19 08:20:03 +00001349 strlcpy(last->ll_host, li->hostname,
1350 MIN_SIZEOF(last->ll_host, li->hostname));
andre2ff7b5d2000-06-03 14:57:40 +00001351 last->ll_time = li->tv_sec;
andre61e67252000-06-04 17:07:49 +00001352}
andre2ff7b5d2000-06-03 14:57:40 +00001353
andre2ff7b5d2000-06-03 14:57:40 +00001354static int
andre61e67252000-06-04 17:07:49 +00001355lastlog_filetype(char *filename)
1356{
andre2ff7b5d2000-06-03 14:57:40 +00001357 struct stat st;
1358
Damien Millerdd47aa22000-06-27 11:18:27 +10001359 if (stat(LASTLOG_FILE, &st) != 0) {
Kevin Stevesef4eea92001-02-05 12:42:17 +00001360 log("lastlog_perform_login: Couldn't stat %s: %s", LASTLOG_FILE,
Damien Millerdd47aa22000-06-27 11:18:27 +10001361 strerror(errno));
andre2ff7b5d2000-06-03 14:57:40 +00001362 return 0;
1363 }
andre2ff7b5d2000-06-03 14:57:40 +00001364 if (S_ISDIR(st.st_mode))
1365 return LL_DIR;
1366 else if (S_ISREG(st.st_mode))
1367 return LL_FILE;
1368 else
1369 return LL_OTHER;
andre61e67252000-06-04 17:07:49 +00001370}
andre2ff7b5d2000-06-03 14:57:40 +00001371
1372
1373/* open the file (using filemode) and seek to the login entry */
1374static int
andre61e67252000-06-04 17:07:49 +00001375lastlog_openseek(struct logininfo *li, int *fd, int filemode)
1376{
andre2ff7b5d2000-06-03 14:57:40 +00001377 off_t offset;
1378 int type;
1379 char lastlog_file[1024];
1380
1381 type = lastlog_filetype(LASTLOG_FILE);
1382 switch (type) {
Damien Millerf8af08d2000-06-27 09:40:06 +10001383 case LL_FILE:
1384 strlcpy(lastlog_file, LASTLOG_FILE, sizeof(lastlog_file));
1385 break;
1386 case LL_DIR:
1387 snprintf(lastlog_file, sizeof(lastlog_file), "%s/%s",
1388 LASTLOG_FILE, li->username);
1389 break;
1390 default:
1391 log("lastlog_openseek: %.100s is not a file or directory!",
1392 LASTLOG_FILE);
1393 return 0;
Damien Millerdd47aa22000-06-27 11:18:27 +10001394 }
andre2ff7b5d2000-06-03 14:57:40 +00001395
1396 *fd = open(lastlog_file, filemode);
1397 if ( *fd < 0) {
Damien Miller53c5d462000-06-28 00:50:50 +10001398 debug("lastlog_openseek: Couldn't open %s: %s",
andre2ff7b5d2000-06-03 14:57:40 +00001399 lastlog_file, strerror(errno));
1400 return 0;
1401 }
Kevin Stevesef4eea92001-02-05 12:42:17 +00001402
Damien Millere477ef62000-08-15 10:21:17 +10001403 if (type == LL_FILE) {
1404 /* find this uid's offset in the lastlog file */
1405 offset = (off_t) ( (long)li->uid * sizeof(struct lastlog));
andre2ff7b5d2000-06-03 14:57:40 +00001406
Damien Millere477ef62000-08-15 10:21:17 +10001407 if ( lseek(*fd, offset, SEEK_SET) != offset ) {
1408 log("lastlog_openseek: %s->lseek(): %s",
Kevin Stevesef4eea92001-02-05 12:42:17 +00001409 lastlog_file, strerror(errno));
Damien Millere477ef62000-08-15 10:21:17 +10001410 return 0;
1411 }
andre2ff7b5d2000-06-03 14:57:40 +00001412 }
Kevin Stevesef4eea92001-02-05 12:42:17 +00001413
andre2ff7b5d2000-06-03 14:57:40 +00001414 return 1;
andre61e67252000-06-04 17:07:49 +00001415}
andre2ff7b5d2000-06-03 14:57:40 +00001416
1417static int
andre61e67252000-06-04 17:07:49 +00001418lastlog_perform_login(struct logininfo *li)
1419{
andre2ff7b5d2000-06-03 14:57:40 +00001420 struct lastlog last;
1421 int fd;
1422
1423 /* create our struct lastlog */
1424 lastlog_construct(li, &last);
1425
Damien Millerc1132e72000-08-18 14:08:38 +10001426 if (!lastlog_openseek(li, &fd, O_RDWR|O_CREAT))
1427 return(0);
Kevin Stevesef4eea92001-02-05 12:42:17 +00001428
andre2ff7b5d2000-06-03 14:57:40 +00001429 /* write the entry */
Damien Millerc1132e72000-08-18 14:08:38 +10001430 if (atomicio(write, fd, &last, sizeof(last)) != sizeof(last)) {
1431 close(fd);
1432 log("lastlog_write_filemode: Error writing to %s: %s",
1433 LASTLOG_FILE, strerror(errno));
andre2ff7b5d2000-06-03 14:57:40 +00001434 return 0;
Damien Millerdd47aa22000-06-27 11:18:27 +10001435 }
Damien Millerc1132e72000-08-18 14:08:38 +10001436
1437 close(fd);
1438 return 1;
andre61e67252000-06-04 17:07:49 +00001439}
andre2ff7b5d2000-06-03 14:57:40 +00001440
andre2ff7b5d2000-06-03 14:57:40 +00001441int
andre61e67252000-06-04 17:07:49 +00001442lastlog_write_entry(struct logininfo *li)
1443{
andre2ff7b5d2000-06-03 14:57:40 +00001444 switch(li->type) {
1445 case LTYPE_LOGIN:
1446 return lastlog_perform_login(li);
1447 default:
1448 log("lastlog_write_entry: Invalid type field");
1449 return 0;
1450 }
andre61e67252000-06-04 17:07:49 +00001451}
andre2ff7b5d2000-06-03 14:57:40 +00001452
andre2ff7b5d2000-06-03 14:57:40 +00001453static void
andre61e67252000-06-04 17:07:49 +00001454lastlog_populate_entry(struct logininfo *li, struct lastlog *last)
1455{
andre2ff7b5d2000-06-03 14:57:40 +00001456 line_fullname(li->line, last->ll_line, sizeof(li->line));
Kevin Stevesef4eea92001-02-05 12:42:17 +00001457 strlcpy(li->hostname, last->ll_host,
andre6bb92372000-06-19 08:20:03 +00001458 MIN_SIZEOF(li->hostname, last->ll_host));
andre2ff7b5d2000-06-03 14:57:40 +00001459 li->tv_sec = last->ll_time;
andre61e67252000-06-04 17:07:49 +00001460}
andre2ff7b5d2000-06-03 14:57:40 +00001461
andre2ff7b5d2000-06-03 14:57:40 +00001462int
andre61e67252000-06-04 17:07:49 +00001463lastlog_get_entry(struct logininfo *li)
1464{
andre2ff7b5d2000-06-03 14:57:40 +00001465 struct lastlog last;
1466 int fd;
1467
1468 if (lastlog_openseek(li, &fd, O_RDONLY)) {
Damien Miller53c5d462000-06-28 00:50:50 +10001469 if (atomicio(read, fd, &last, sizeof(last)) != sizeof(last)) {
1470 log("lastlog_get_entry: Error reading from %s: %s",
andre2ff7b5d2000-06-03 14:57:40 +00001471 LASTLOG_FILE, strerror(errno));
1472 return 0;
1473 } else {
1474 lastlog_populate_entry(li, &last);
1475 return 1;
1476 }
Damien Millerdd47aa22000-06-27 11:18:27 +10001477 } else {
Kevin Stevesef4eea92001-02-05 12:42:17 +00001478 return 0;
Damien Millerdd47aa22000-06-27 11:18:27 +10001479 }
andre61e67252000-06-04 17:07:49 +00001480}
Damien Millerd5bf3072000-06-07 21:32:13 +10001481#endif /* USE_LASTLOG */