blob: 910524d18cbeadb483a7f10aff003141621344e3 [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 Lindstromdcca9812000-11-10 03:28:31 +0000164RCSID("$Id: loginrec.c,v 1.27 2000/11/10 03:28:31 mouring Exp $");
165
166#ifdef HAVE_UTIL_H
167# include <util.h>
168#endif
andre2ff7b5d2000-06-03 14:57:40 +0000169
170/**
171 ** prototypes for helper functions in this file
172 **/
173
174#if HAVE_UTMP_H
andre2ff7b5d2000-06-03 14:57:40 +0000175void set_utmp_time(struct logininfo *li, struct utmp *ut);
176void construct_utmp(struct logininfo *li, struct utmp *ut);
177#endif
178
179#ifdef HAVE_UTMPX_H
andre2ff7b5d2000-06-03 14:57:40 +0000180void set_utmpx_time(struct logininfo *li, struct utmpx *ut);
181void construct_utmpx(struct logininfo *li, struct utmpx *ut);
182#endif
183
184int utmp_write_entry(struct logininfo *li);
185int utmpx_write_entry(struct logininfo *li);
186int wtmp_write_entry(struct logininfo *li);
187int wtmpx_write_entry(struct logininfo *li);
188int lastlog_write_entry(struct logininfo *li);
189int syslogin_write_entry(struct logininfo *li);
190
191int getlast_entry(struct logininfo *li);
192int lastlog_get_entry(struct logininfo *li);
193int wtmp_get_entry(struct logininfo *li);
194int wtmpx_get_entry(struct logininfo *li);
195
andre6bb92372000-06-19 08:20:03 +0000196/* pick the shortest string */
197#define MIN_SIZEOF(s1,s2) ( sizeof(s1) < sizeof(s2) ? sizeof(s1) : sizeof(s2) )
198
andre2ff7b5d2000-06-03 14:57:40 +0000199/**
200 ** platform-independent login functions
201 **/
202
andre6bb92372000-06-19 08:20:03 +0000203/* login_login(struct logininfo *) -Record a login
204 *
205 * Call with a pointer to a struct logininfo initialised with
206 * login_init_entry() or login_alloc_entry()
207 *
208 * Returns:
209 * >0 if successful
210 * 0 on failure (will use OpenSSH's logging facilities for diagnostics)
211 */
andre61e67252000-06-04 17:07:49 +0000212int
213login_login (struct logininfo *li)
214{
215 li->type = LTYPE_LOGIN;
216 return login_write(li);
217}
218
219
andre6bb92372000-06-19 08:20:03 +0000220/* login_logout(struct logininfo *) - Record a logout
221 *
222 * Call as with login_login()
223 *
224 * Returns:
225 * >0 if successful
226 * 0 on failure (will use OpenSSH's logging facilities for diagnostics)
227 */
andre61e67252000-06-04 17:07:49 +0000228int
229login_logout(struct logininfo *li)
230{
231 li->type = LTYPE_LOGOUT;
232 return login_write(li);
233}
234
andre6bb92372000-06-19 08:20:03 +0000235/* login_get_lastlog_time(int) - Retrieve the last login time
236 *
237 * Retrieve the last login time for the given uid. Will try to use the
238 * system lastlog facilities if they are available, but will fall back
239 * to looking in wtmp/wtmpx if necessary
240 *
241 * Returns:
242 * 0 on failure, or if user has never logged in
243 * Time in seconds from the epoch if successful
244 *
245 * Useful preprocessor symbols:
246 * DISABLE_LASTLOG: If set, *never* even try to retrieve lastlog
247 * info
248 * USE_LASTLOG: If set, indicates the presence of system lastlog
249 * facilities. If this and DISABLE_LASTLOG are not set,
250 * try to retrieve lastlog information from wtmp/wtmpx.
251 */
andre61e67252000-06-04 17:07:49 +0000252unsigned int
253login_get_lastlog_time(const int uid)
254{
255 struct logininfo li;
256
andre6bb92372000-06-19 08:20:03 +0000257 if (login_get_lastlog(&li, uid))
258 return li.tv_sec;
259 else
260 return 0;
andre61e67252000-06-04 17:07:49 +0000261}
262
andre6bb92372000-06-19 08:20:03 +0000263/* login_get_lastlog(struct logininfo *, int) - Retrieve a lastlog entry
264 *
265 * Retrieve a logininfo structure populated (only partially) with
266 * information from the system lastlog data, or from wtmp/wtmpx if no
267 * system lastlog information exists.
268 *
269 * Note this routine must be given a pre-allocated logininfo.
270 *
271 * Returns:
272 * >0: A pointer to your struct logininfo if successful
273 * 0 on failure (will use OpenSSH's logging facilities for diagnostics)
274 *
275 */
andre61e67252000-06-04 17:07:49 +0000276struct logininfo *
277login_get_lastlog(struct logininfo *li, const int uid)
278{
andre6bb92372000-06-19 08:20:03 +0000279 struct passwd *pw;
andre6bb92372000-06-19 08:20:03 +0000280
Damien Miller348c9b72000-08-15 10:01:22 +1000281 memset(li, '\0', sizeof(*li));
andre61e67252000-06-04 17:07:49 +0000282 li->uid = uid;
andre6bb92372000-06-19 08:20:03 +0000283
Damien Miller53c5d462000-06-28 00:50:50 +1000284 /*
285 * If we don't have a 'real' lastlog, we need the username to
andre6bb92372000-06-19 08:20:03 +0000286 * reliably search wtmp(x) for the last login (see
Damien Miller53c5d462000-06-28 00:50:50 +1000287 * wtmp_get_entry().)
288 */
andre6bb92372000-06-19 08:20:03 +0000289 pw = getpwuid(uid);
Damien Millerdd47aa22000-06-27 11:18:27 +1000290 if (pw == NULL)
291 fatal("login_get_lastlog: Cannot find account for uid %i", uid);
292
andre98cabe02000-06-19 09:11:30 +0000293 /* No MIN_SIZEOF here - we absolutely *must not* truncate the
294 * username */
Damien Millerf8af08d2000-06-27 09:40:06 +1000295 strlcpy(li->username, pw->pw_name, sizeof(li->username));
Damien Millerdd47aa22000-06-27 11:18:27 +1000296
andre61e67252000-06-04 17:07:49 +0000297 if (getlast_entry(li))
298 return li;
299 else
Damien Millerdd47aa22000-06-27 11:18:27 +1000300 return NULL;
andre61e67252000-06-04 17:07:49 +0000301}
302
303
andre6bb92372000-06-19 08:20:03 +0000304/* login_alloc_entry(int, char*, char*, char*) - Allocate and initialise
305 * a logininfo structure
306 *
307 * This function creates a new struct logininfo, a data structure
308 * meant to carry the information required to portably record login info.
309 *
310 * Returns a pointer to a newly created struct logininfo. If memory
311 * allocation fails, the program halts.
312 */
andre61e67252000-06-04 17:07:49 +0000313struct
314logininfo *login_alloc_entry(int pid, const char *username,
315 const char *hostname, const char *line)
316{
andre2ff7b5d2000-06-03 14:57:40 +0000317 struct logininfo *newli;
318
Damien Miller348c9b72000-08-15 10:01:22 +1000319 newli = (struct logininfo *) xmalloc (sizeof(*newli));
andre61e67252000-06-04 17:07:49 +0000320 (void)login_init_entry(newli, pid, username, hostname, line);
321 return newli;
322}
andre2ff7b5d2000-06-03 14:57:40 +0000323
324
andre6bb92372000-06-19 08:20:03 +0000325/* login_free_entry(struct logininfo *) - free struct memory */
andre61e67252000-06-04 17:07:49 +0000326void
327login_free_entry(struct logininfo *li)
328{
329 xfree(li);
330}
331
andre2ff7b5d2000-06-03 14:57:40 +0000332
andre6bb92372000-06-19 08:20:03 +0000333/* login_init_entry(struct logininfo *, int, char*, char*, char*)
334 * - initialise a struct logininfo
335 *
336 * Populates a new struct logininfo, a data structure meant to carry
337 * the information required to portably record login info.
338 *
339 * Returns: 1
340 */
andre61e67252000-06-04 17:07:49 +0000341int
342login_init_entry(struct logininfo *li, int pid, const char *username,
343 const char *hostname, const char *line)
344{
Damien Millerf8af08d2000-06-27 09:40:06 +1000345 struct passwd *pw;
346
Damien Miller348c9b72000-08-15 10:01:22 +1000347 memset(li, 0, sizeof(*li));
andre2ff7b5d2000-06-03 14:57:40 +0000348
andre61e67252000-06-04 17:07:49 +0000349 li->pid = pid;
Damien Millerf8af08d2000-06-27 09:40:06 +1000350
andre2ff7b5d2000-06-03 14:57:40 +0000351 /* set the line information */
andre61e67252000-06-04 17:07:49 +0000352 if (line)
andre2ff7b5d2000-06-03 14:57:40 +0000353 line_fullname(li->line, line, sizeof(li->line));
andre2ff7b5d2000-06-03 14:57:40 +0000354
Damien Millerf8af08d2000-06-27 09:40:06 +1000355 if (username) {
andre2ff7b5d2000-06-03 14:57:40 +0000356 strlcpy(li->username, username, sizeof(li->username));
Damien Millerf8af08d2000-06-27 09:40:06 +1000357 pw = getpwnam(li->username);
358 if (pw == NULL)
359 fatal("login_init_entry: Cannot find user \"%s\"", li->username);
360 li->uid = pw->pw_uid;
361 }
Damien Millerdd47aa22000-06-27 11:18:27 +1000362
andre61e67252000-06-04 17:07:49 +0000363 if (hostname)
andre2ff7b5d2000-06-03 14:57:40 +0000364 strlcpy(li->hostname, hostname, sizeof(li->hostname));
Damien Millerf8af08d2000-06-27 09:40:06 +1000365
andre61e67252000-06-04 17:07:49 +0000366 return 1;
andre2ff7b5d2000-06-03 14:57:40 +0000367}
368
andre6bb92372000-06-19 08:20:03 +0000369/* login_set_current_time(struct logininfo *) - set the current time
370 *
371 * Set the current time in a logininfo structure. This function is
372 * meant to eliminate the need to deal with system dependencies for
373 * time handling.
374 */
andre2ff7b5d2000-06-03 14:57:40 +0000375void
andre61e67252000-06-04 17:07:49 +0000376login_set_current_time(struct logininfo *li)
377{
andre2ff7b5d2000-06-03 14:57:40 +0000378 struct timeval tv;
379
380 gettimeofday(&tv, NULL);
Damien Millerf8af08d2000-06-27 09:40:06 +1000381
382 li->tv_sec = tv.tv_sec;
383 li->tv_usec = tv.tv_usec;
andre2ff7b5d2000-06-03 14:57:40 +0000384}
385
andre61e67252000-06-04 17:07:49 +0000386/* copy a sockaddr_* into our logininfo */
andre2ff7b5d2000-06-03 14:57:40 +0000387void
andre61e67252000-06-04 17:07:49 +0000388login_set_addr(struct logininfo *li, const struct sockaddr *sa,
389 const unsigned int sa_size)
390{
391 unsigned int bufsize = sa_size;
392
393 /* make sure we don't overrun our union */
394 if (sizeof(li->hostaddr) < sa_size)
395 bufsize = sizeof(li->hostaddr);
396
397 memcpy((void *)&(li->hostaddr.sa), (const void *)sa, bufsize);
andre2ff7b5d2000-06-03 14:57:40 +0000398}
399
andre2ff7b5d2000-06-03 14:57:40 +0000400
andre61e67252000-06-04 17:07:49 +0000401/**
402 ** login_write: Call low-level recording functions based on autoconf
403 ** results
404 **/
andre2ff7b5d2000-06-03 14:57:40 +0000405int
andre61e67252000-06-04 17:07:49 +0000406login_write (struct logininfo *li)
407{
Damien Millerbac2d8a2000-09-05 16:13:06 +1100408#ifndef HAVE_CYGWIN
andre2ff7b5d2000-06-03 14:57:40 +0000409 if ((int)geteuid() != 0) {
410 log("Attempt to write login records by non-root user (aborting)");
411 return 1;
412 }
Damien Millerbac2d8a2000-09-05 16:13:06 +1100413#endif
Damien Millerdd47aa22000-06-27 11:18:27 +1000414
andre2ff7b5d2000-06-03 14:57:40 +0000415 /* set the timestamp */
416 login_set_current_time(li);
417#ifdef USE_LOGIN
418 syslogin_write_entry(li);
419#endif
420#ifdef USE_LASTLOG
421 if (li->type == LTYPE_LOGIN) {
422 lastlog_write_entry(li);
423 }
424#endif
425#ifdef USE_UTMP
426 utmp_write_entry(li);
427#endif
428#ifdef USE_WTMP
429 wtmp_write_entry(li);
430#endif
431#ifdef USE_UTMPX
432 utmpx_write_entry(li);
433#endif
434#ifdef USE_WTMPX
435 wtmpx_write_entry(li);
436#endif
437 return 0;
438}
439
andre2ff7b5d2000-06-03 14:57:40 +0000440/**
andre61e67252000-06-04 17:07:49 +0000441 ** getlast_entry: Call low-level functions to retrieve the last login
442 ** time.
andre2ff7b5d2000-06-03 14:57:40 +0000443 **/
444
andre61e67252000-06-04 17:07:49 +0000445/* take the uid in li and return the last login time */
446int
447getlast_entry(struct logininfo *li)
448{
449#ifdef USE_LASTLOG
Damien Miller53c5d462000-06-28 00:50:50 +1000450 return(lastlog_get_entry(li));
Damien Millerdd47aa22000-06-27 11:18:27 +1000451#else /* !USE_LASTLOG */
andre61e67252000-06-04 17:07:49 +0000452
Damien Millerdd47aa22000-06-27 11:18:27 +1000453#ifdef DISABLE_LASTLOG
andreecaabf12000-06-12 22:21:44 +0000454 /* On some systems we shouldn't even try to obtain last login
455 * time, e.g. AIX */
456 return 0;
Damien Millerdd47aa22000-06-27 11:18:27 +1000457# else /* DISABLE_LASTLOG */
andre61e67252000-06-04 17:07:49 +0000458 /* Try to retrieve the last login time from wtmp */
Damien Millerdd47aa22000-06-27 11:18:27 +1000459# if defined(USE_WTMP) && (defined(HAVE_TIME_IN_UTMP) || defined(HAVE_TV_IN_UTMP))
andre61e67252000-06-04 17:07:49 +0000460 /* retrieve last login time from utmp */
Damien Millerdd47aa22000-06-27 11:18:27 +1000461 return (wtmp_get_entry(li));
462# else /* defined(USE_WTMP) && (defined(HAVE_TIME_IN_UTMP) || defined(HAVE_TV_IN_UTMP)) */
andre61e67252000-06-04 17:07:49 +0000463 /* If wtmp isn't available, try wtmpx */
Damien Millerdd47aa22000-06-27 11:18:27 +1000464# if defined(USE_WTMPX) && (defined(HAVE_TIME_IN_UTMPX) || defined(HAVE_TV_IN_UTMPX))
andre61e67252000-06-04 17:07:49 +0000465 /* retrieve last login time from utmpx */
Damien Millerdd47aa22000-06-27 11:18:27 +1000466 return (wtmpx_get_entry(li));
467# else
andre61e67252000-06-04 17:07:49 +0000468 /* Give up: No means of retrieving last login time */
469 return 0;
Damien Millerdd47aa22000-06-27 11:18:27 +1000470# endif /* USE_WTMPX && (HAVE_TIME_IN_UTMPX || HAVE_TV_IN_UTMPX) */
471# endif /* USE_WTMP && (HAVE_TIME_IN_UTMP || HAVE_TV_IN_UTMP) */
472# endif /* DISABLE_LASTLOG */
473#endif /* USE_LASTLOG */
andre61e67252000-06-04 17:07:49 +0000474}
475
476
477
andre2ff7b5d2000-06-03 14:57:40 +0000478/*
andre61e67252000-06-04 17:07:49 +0000479 * 'line' string utility functions
480 *
481 * These functions process the 'line' string into one of three forms:
482 *
andre2ff7b5d2000-06-03 14:57:40 +0000483 * 1. The full filename (including '/dev')
484 * 2. The stripped name (excluding '/dev')
andre61e67252000-06-04 17:07:49 +0000485 * 3. The abbreviated name (e.g. /dev/ttyp00 -> yp00
486 * /dev/pts/1 -> ts/1 )
andre2ff7b5d2000-06-03 14:57:40 +0000487 *
488 * Form 3 is used on some systems to identify a .tmp.? entry when
489 * attempting to remove it. Typically both addition and removal is
andre61e67252000-06-04 17:07:49 +0000490 * performed by one application - say, sshd - so as long as the choice
491 * uniquely identifies a terminal it's ok.
andre2ff7b5d2000-06-03 14:57:40 +0000492 */
493
494
andre61e67252000-06-04 17:07:49 +0000495/* line_fullname(): add the leading '/dev/' if it doesn't exist make
496 * sure dst has enough space, if not just copy src (ugh) */
andre2ff7b5d2000-06-03 14:57:40 +0000497char *
andre61e67252000-06-04 17:07:49 +0000498line_fullname(char *dst, const char *src, int dstsize)
499{
andre2ff7b5d2000-06-03 14:57:40 +0000500 memset(dst, '\0', dstsize);
Damien Millerf5a81472000-09-30 21:34:44 +1100501 if ((strncmp(src, "/dev/", 5) == 0) || (dstsize < (strlen(src) + 5))) {
andre2ff7b5d2000-06-03 14:57:40 +0000502 strlcpy(dst, src, dstsize);
Damien Millerf5a81472000-09-30 21:34:44 +1100503 } else {
Damien Miller1a132252000-06-13 21:23:17 +1000504 strlcpy(dst, "/dev/", dstsize);
andre2ff7b5d2000-06-03 14:57:40 +0000505 strlcat(dst, src, dstsize);
506 }
507 return dst;
508}
509
andre61e67252000-06-04 17:07:49 +0000510/* line_stripname(): strip the leading '/dev' if it exists, return dst */
andre2ff7b5d2000-06-03 14:57:40 +0000511char *
andre61e67252000-06-04 17:07:49 +0000512line_stripname(char *dst, const char *src, int dstsize)
513{
andre2ff7b5d2000-06-03 14:57:40 +0000514 memset(dst, '\0', dstsize);
Damien Millerf5a81472000-09-30 21:34:44 +1100515#ifdef sgi
516 if (strncmp(src, "/dev/tty", 8) == 0)
517 strlcpy(dst, src + 8, dstsize);
518#else
andre2ff7b5d2000-06-03 14:57:40 +0000519 if (strncmp(src, "/dev/", 5) == 0)
Damien Millerf5a81472000-09-30 21:34:44 +1100520 strlcpy(dst, src + 5, dstsize);
521#endif
andre2ff7b5d2000-06-03 14:57:40 +0000522 else
523 strlcpy(dst, src, dstsize);
524 return dst;
andre61e67252000-06-04 17:07:49 +0000525}
526
andre61e67252000-06-04 17:07:49 +0000527/* line_abbrevname(): Return the abbreviated (usually four-character)
528 * form of the line (Just use the last <dstsize> characters of the
529 * full name.)
530 *
531 * NOTE: use strncpy because we do NOT necessarily want zero
532 * termination */
andre2ff7b5d2000-06-03 14:57:40 +0000533char *
Damien Millerdd47aa22000-06-27 11:18:27 +1000534line_abbrevname(char *dst, const char *src, int dstsize)
535{
536 size_t len;
537
andre2ff7b5d2000-06-03 14:57:40 +0000538 memset(dst, '\0', dstsize);
Damien Millerdd47aa22000-06-27 11:18:27 +1000539
Damien Miller8e81ed32000-07-01 13:17:42 +1000540 /* Always skip prefix if present */
Damien Millerf5a81472000-09-30 21:34:44 +1100541#ifdef sgi
542 if (strncmp(src, "/dev/tty", 8) == 0)
543 src += 8;
544#else
Damien Miller8e81ed32000-07-01 13:17:42 +1000545 if (strncmp(src, "/dev/", 5) == 0)
546 src += 5;
Damien Millerf5a81472000-09-30 21:34:44 +1100547#endif
Damien Miller8e81ed32000-07-01 13:17:42 +1000548
Damien Millerdd47aa22000-06-27 11:18:27 +1000549 len = strlen(src);
550
Damien Miller8e81ed32000-07-01 13:17:42 +1000551 if (len > 0) {
552 if (((int)len - dstsize) > 0)
553 src += ((int)len - dstsize);
554
555 /* note: _don't_ change this to strlcpy */
556 strncpy(dst, src, (size_t)dstsize);
Damien Millerdd47aa22000-06-27 11:18:27 +1000557 }
558
andre2ff7b5d2000-06-03 14:57:40 +0000559 return dst;
560}
561
andre2ff7b5d2000-06-03 14:57:40 +0000562/**
563 ** utmp utility functions
andre61e67252000-06-04 17:07:49 +0000564 **
565 ** These functions manipulate struct utmp, taking system differences
566 ** into account.
andre2ff7b5d2000-06-03 14:57:40 +0000567 **/
568
569#if defined(USE_UTMP) || defined (USE_WTMP) || defined (USE_LOGIN)
570
andre2ff7b5d2000-06-03 14:57:40 +0000571/* build the utmp structure */
572void
andre61e67252000-06-04 17:07:49 +0000573set_utmp_time(struct logininfo *li, struct utmp *ut)
574{
Damien Millerdd47aa22000-06-27 11:18:27 +1000575# ifdef HAVE_TV_IN_UTMP
andre2ff7b5d2000-06-03 14:57:40 +0000576 ut->ut_tv.tv_sec = li->tv_sec;
577 ut->ut_tv.tv_usec = li->tv_usec;
Damien Millerdd47aa22000-06-27 11:18:27 +1000578# else
andre2ff7b5d2000-06-03 14:57:40 +0000579# ifdef HAVE_TIME_IN_UTMP
580 ut->ut_time = li->tv_sec;
581# endif
Damien Millerdd47aa22000-06-27 11:18:27 +1000582# endif
andre2ff7b5d2000-06-03 14:57:40 +0000583}
584
585void
586construct_utmp(struct logininfo *li,
andre61e67252000-06-04 17:07:49 +0000587 struct utmp *ut)
588{
Damien Miller348c9b72000-08-15 10:01:22 +1000589 memset(ut, '\0', sizeof(*ut));
andre6bb92372000-06-19 08:20:03 +0000590
591 /* First fill out fields used for both logins and logouts */
592
Damien Millerdd47aa22000-06-27 11:18:27 +1000593# ifdef HAVE_ID_IN_UTMP
andre2ff7b5d2000-06-03 14:57:40 +0000594 line_abbrevname(ut->ut_id, li->line, sizeof(ut->ut_id));
Damien Millerdd47aa22000-06-27 11:18:27 +1000595# endif
andre2ff7b5d2000-06-03 14:57:40 +0000596
Damien Millerdd47aa22000-06-27 11:18:27 +1000597# ifdef HAVE_TYPE_IN_UTMP
andre6bb92372000-06-19 08:20:03 +0000598 /* This is done here to keep utmp constants out of struct logininfo */
andre2ff7b5d2000-06-03 14:57:40 +0000599 switch (li->type) {
600 case LTYPE_LOGIN:
601 ut->ut_type = USER_PROCESS;
602 break;
603 case LTYPE_LOGOUT:
604 ut->ut_type = DEAD_PROCESS;
605 break;
606 }
Damien Millerdd47aa22000-06-27 11:18:27 +1000607# endif
andre6bb92372000-06-19 08:20:03 +0000608 set_utmp_time(li, ut);
andre2ff7b5d2000-06-03 14:57:40 +0000609
andre6bb92372000-06-19 08:20:03 +0000610 line_stripname(ut->ut_line, li->line, sizeof(ut->ut_line));
Damien Millerdd47aa22000-06-27 11:18:27 +1000611
612# ifdef HAVE_PID_IN_UTMP
andre2ff7b5d2000-06-03 14:57:40 +0000613 ut->ut_pid = li->pid;
Damien Millerdd47aa22000-06-27 11:18:27 +1000614# endif
andre6bb92372000-06-19 08:20:03 +0000615
616 /* If we're logging out, leave all other fields blank */
617 if (li->type == LTYPE_LOGOUT)
618 return;
619
Damien Millerdd47aa22000-06-27 11:18:27 +1000620 /*
621 * These fields are only used when logging in, and are blank
622 * for logouts.
623 */
andre6bb92372000-06-19 08:20:03 +0000624
625 /* Use strncpy because we don't necessarily want null termination */
Damien Miller7a0e5dc2000-07-11 12:15:54 +1000626 strncpy(ut->ut_name, li->username, MIN_SIZEOF(ut->ut_name, li->username));
Damien Millerdd47aa22000-06-27 11:18:27 +1000627# ifdef HAVE_HOST_IN_UTMP
andre6bb92372000-06-19 08:20:03 +0000628 strncpy(ut->ut_host, li->hostname, MIN_SIZEOF(ut->ut_host, li->hostname));
Damien Millerdd47aa22000-06-27 11:18:27 +1000629# endif
630# ifdef HAVE_ADDR_IN_UTMP
andre61e67252000-06-04 17:07:49 +0000631 /* this is just a 32-bit IP address */
632 if (li->hostaddr.sa.sa_family == AF_INET)
633 ut->ut_addr = li->hostaddr.sa_in.sin_addr.s_addr;
Damien Millerdd47aa22000-06-27 11:18:27 +1000634# endif
andre61e67252000-06-04 17:07:49 +0000635}
Damien Millerdd47aa22000-06-27 11:18:27 +1000636#endif /* USE_UTMP || USE_WTMP || USE_LOGIN */
andre61e67252000-06-04 17:07:49 +0000637
andre2ff7b5d2000-06-03 14:57:40 +0000638/**
639 ** utmpx utility functions
andre61e67252000-06-04 17:07:49 +0000640 **
641 ** These functions manipulate struct utmpx, accounting for system
642 ** variations.
andre2ff7b5d2000-06-03 14:57:40 +0000643 **/
644
645#if defined(USE_UTMPX) || defined (USE_WTMPX)
andre2ff7b5d2000-06-03 14:57:40 +0000646/* build the utmpx structure */
647void
andre61e67252000-06-04 17:07:49 +0000648set_utmpx_time(struct logininfo *li, struct utmpx *utx)
649{
Damien Millerdd47aa22000-06-27 11:18:27 +1000650# ifdef HAVE_TV_IN_UTMPX
andre2ff7b5d2000-06-03 14:57:40 +0000651 utx->ut_tv.tv_sec = li->tv_sec;
652 utx->ut_tv.tv_usec = li->tv_usec;
Damien Millerdd47aa22000-06-27 11:18:27 +1000653# else /* HAVE_TV_IN_UTMPX */
andre2ff7b5d2000-06-03 14:57:40 +0000654# ifdef HAVE_TIME_IN_UTMPX
655 utx->ut_time = li->tv_sec;
Damien Millerdd47aa22000-06-27 11:18:27 +1000656# endif /* HAVE_TIME_IN_UTMPX */
657# endif /* HAVE_TV_IN_UTMPX */
andre2ff7b5d2000-06-03 14:57:40 +0000658}
659
andre61e67252000-06-04 17:07:49 +0000660void
661construct_utmpx(struct logininfo *li, struct utmpx *utx)
662{
Damien Miller348c9b72000-08-15 10:01:22 +1000663 memset(utx, '\0', sizeof(*utx));
Damien Miller8e81ed32000-07-01 13:17:42 +1000664# ifdef HAVE_ID_IN_UTMPX
andre2ff7b5d2000-06-03 14:57:40 +0000665 line_abbrevname(utx->ut_id, li->line, sizeof(utx->ut_id));
Damien Miller8e81ed32000-07-01 13:17:42 +1000666# endif
andre2ff7b5d2000-06-03 14:57:40 +0000667
668 /* this is done here to keep utmp constants out of loginrec.h */
669 switch (li->type) {
670 case LTYPE_LOGIN:
671 utx->ut_type = USER_PROCESS;
672 break;
673 case LTYPE_LOGOUT:
674 utx->ut_type = DEAD_PROCESS;
675 break;
676 }
andre2ff7b5d2000-06-03 14:57:40 +0000677 line_stripname(utx->ut_line, li->line, sizeof(utx->ut_line));
andre2ff7b5d2000-06-03 14:57:40 +0000678 set_utmpx_time(li, utx);
andre6bb92372000-06-19 08:20:03 +0000679 utx->ut_pid = li->pid;
680
681 if (li->type == LTYPE_LOGOUT)
682 return;
683
Damien Millerdd47aa22000-06-27 11:18:27 +1000684 /*
685 * These fields are only used when logging in, and are blank
686 * for logouts.
687 */
andre6bb92372000-06-19 08:20:03 +0000688
689 /* strncpy(): Don't necessarily want null termination */
Damien Miller7a0e5dc2000-07-11 12:15:54 +1000690 strncpy(utx->ut_name, li->username, MIN_SIZEOF(utx->ut_name, li->username));
Damien Millerdd47aa22000-06-27 11:18:27 +1000691# ifdef HAVE_HOST_IN_UTMPX
andre6bb92372000-06-19 08:20:03 +0000692 strncpy(utx->ut_host, li->hostname, MIN_SIZEOF(utx->ut_host, li->hostname));
Damien Millerdd47aa22000-06-27 11:18:27 +1000693# endif
694# ifdef HAVE_ADDR_IN_UTMPX
Damien Millerd6f204d2000-09-23 13:57:27 +1100695 /* this is just a 32-bit IP address */
696 if (li->hostaddr.sa.sa_family == AF_INET)
697 utx->ut_addr = li->hostaddr.sa_in.sin_addr.s_addr;
Damien Millerdd47aa22000-06-27 11:18:27 +1000698# endif
699# ifdef HAVE_SYSLEN_IN_UTMPX
andre6bb92372000-06-19 08:20:03 +0000700 /* ut_syslen is the length of the utx_host string */
701 utx->ut_syslen = MIN(strlen(li->hostname), sizeof(utx->ut_host));
Damien Millerdd47aa22000-06-27 11:18:27 +1000702# endif
andre61e67252000-06-04 17:07:49 +0000703}
Damien Millerdd47aa22000-06-27 11:18:27 +1000704#endif /* USE_UTMPX || USE_WTMPX */
andre2ff7b5d2000-06-03 14:57:40 +0000705
706/**
andre61e67252000-06-04 17:07:49 +0000707 ** Low-level utmp functions
andre2ff7b5d2000-06-03 14:57:40 +0000708 **/
709
710/* FIXME: (ATL) utmp_write_direct needs testing */
andre2ff7b5d2000-06-03 14:57:40 +0000711#ifdef USE_UTMP
712
andre2ff7b5d2000-06-03 14:57:40 +0000713/* if we can, use pututline() etc. */
Damien Millerdd47aa22000-06-27 11:18:27 +1000714# if !defined(DISABLE_PUTUTLINE) && defined(HAVE_SETUTENT) && \
715 defined(HAVE_PUTUTLINE)
andre2ff7b5d2000-06-03 14:57:40 +0000716# define UTMP_USE_LIBRARY
Damien Millerdd47aa22000-06-27 11:18:27 +1000717# endif
andre2ff7b5d2000-06-03 14:57:40 +0000718
719
720/* write a utmp entry with the system's help (pututline() and pals) */
Damien Millerdd47aa22000-06-27 11:18:27 +1000721# ifdef UTMP_USE_LIBRARY
andre2ff7b5d2000-06-03 14:57:40 +0000722static int
andre61e67252000-06-04 17:07:49 +0000723utmp_write_library(struct logininfo *li, struct utmp *ut)
724{
andre2ff7b5d2000-06-03 14:57:40 +0000725 setutent();
726 pututline(ut);
727
Damien Millerdd47aa22000-06-27 11:18:27 +1000728# ifdef HAVE_ENDUTENT
andre2ff7b5d2000-06-03 14:57:40 +0000729 endutent();
Damien Millerdd47aa22000-06-27 11:18:27 +1000730# endif
andre2ff7b5d2000-06-03 14:57:40 +0000731 return 1;
andre61e67252000-06-04 17:07:49 +0000732}
Damien Millerdd47aa22000-06-27 11:18:27 +1000733# else /* UTMP_USE_LIBRARY */
andre2ff7b5d2000-06-03 14:57:40 +0000734
735/* write a utmp entry direct to the file */
andre61e67252000-06-04 17:07:49 +0000736/* This is a slightly modification of code in OpenBSD's login.c */
andre2ff7b5d2000-06-03 14:57:40 +0000737static int
andre61e67252000-06-04 17:07:49 +0000738utmp_write_direct(struct logininfo *li, struct utmp *ut)
739{
andre2ff7b5d2000-06-03 14:57:40 +0000740 struct utmp old_ut;
741 register int fd;
742 int tty;
743
andre6bb92372000-06-19 08:20:03 +0000744 /* FIXME: (ATL) ttyslot() needs local implementation */
Damien Miller348c9b72000-08-15 10:01:22 +1000745
Damien Millere5192fa2000-08-29 14:30:37 +1100746#if defined(HAVE_GETTTYENT)
Damien Miller348c9b72000-08-15 10:01:22 +1000747 register struct ttyent *ty;
748
749 tty=0;
750
751 setttyent();
752 while ((struct ttyent *)0 != (ty = getttyent())) {
753 tty++;
754 if (!strncmp(ty->ty_name, ut->ut_line, sizeof(ut->ut_line)))
755 break;
756 }
757 endttyent();
758
759 if((struct ttyent *)0 == ty) {
760 log("utmp_write_entry: tty not found");
761 return(1);
762 }
763#else /* FIXME */
764
andre2ff7b5d2000-06-03 14:57:40 +0000765 tty = ttyslot(); /* seems only to work for /dev/ttyp? style names */
766
Damien Millere5192fa2000-08-29 14:30:37 +1100767#endif /* HAVE_GETTTYENT */
Damien Miller348c9b72000-08-15 10:01:22 +1000768
andre2ff7b5d2000-06-03 14:57:40 +0000769 if (tty > 0 && (fd = open(UTMP_FILE, O_RDWR|O_CREAT, 0644)) >= 0) {
770 (void)lseek(fd, (off_t)(tty * sizeof(struct utmp)), SEEK_SET);
771 /*
772 * Prevent luser from zero'ing out ut_host.
773 * If the new ut_line is empty but the old one is not
Damien Miller7a0e5dc2000-07-11 12:15:54 +1000774 * and ut_line and ut_name match, preserve the old ut_line.
andre2ff7b5d2000-06-03 14:57:40 +0000775 */
Damien Miller53c5d462000-06-28 00:50:50 +1000776 if (atomicio(read, fd, &old_ut, sizeof(old_ut)) == sizeof(old_ut) &&
777 (ut->ut_host[0] == '\0') && (old_ut.ut_host[0] != '\0') &&
778 (strncmp(old_ut.ut_line, ut->ut_line, sizeof(ut->ut_line)) == 0) &&
Damien Miller7a0e5dc2000-07-11 12:15:54 +1000779 (strncmp(old_ut.ut_name, ut->ut_name, sizeof(ut->ut_name)) == 0)) {
andre2ff7b5d2000-06-03 14:57:40 +0000780 (void)memcpy(ut->ut_host, old_ut.ut_host, sizeof(ut->ut_host));
Damien Miller53c5d462000-06-28 00:50:50 +1000781 }
782
andre2ff7b5d2000-06-03 14:57:40 +0000783 (void)lseek(fd, (off_t)(tty * sizeof(struct utmp)), SEEK_SET);
Damien Miller36ccb5c2000-08-09 16:34:27 +1000784 if (atomicio(write, fd, ut, sizeof(*ut)) != sizeof(*ut))
andre2ff7b5d2000-06-03 14:57:40 +0000785 log("utmp_write_direct: error writing %s: %s",
andre6bb92372000-06-19 08:20:03 +0000786 UTMP_FILE, strerror(errno));
andre2ff7b5d2000-06-03 14:57:40 +0000787
788 (void)close(fd);
789 return 1;
Damien Miller53c5d462000-06-28 00:50:50 +1000790 } else {
andre2ff7b5d2000-06-03 14:57:40 +0000791 return 0;
Damien Miller53c5d462000-06-28 00:50:50 +1000792 }
andre61e67252000-06-04 17:07:49 +0000793}
Damien Millerdd47aa22000-06-27 11:18:27 +1000794# endif /* UTMP_USE_LIBRARY */
andre2ff7b5d2000-06-03 14:57:40 +0000795
796static int
andre61e67252000-06-04 17:07:49 +0000797utmp_perform_login(struct logininfo *li)
798{
andre2ff7b5d2000-06-03 14:57:40 +0000799 struct utmp ut;
800
801 construct_utmp(li, &ut);
Damien Millerdd47aa22000-06-27 11:18:27 +1000802# ifdef UTMP_USE_LIBRARY
andre2ff7b5d2000-06-03 14:57:40 +0000803 if (!utmp_write_library(li, &ut)) {
andre6bb92372000-06-19 08:20:03 +0000804 log("utmp_perform_login: utmp_write_library() failed");
andre2ff7b5d2000-06-03 14:57:40 +0000805 return 0;
806 }
Damien Millerdd47aa22000-06-27 11:18:27 +1000807# else
andre2ff7b5d2000-06-03 14:57:40 +0000808 if (!utmp_write_direct(li, &ut)) {
809 log("utmp_perform_login: utmp_write_direct() failed");
810 return 0;
811 }
Damien Millerdd47aa22000-06-27 11:18:27 +1000812# endif
andre2ff7b5d2000-06-03 14:57:40 +0000813 return 1;
andre61e67252000-06-04 17:07:49 +0000814}
andre2ff7b5d2000-06-03 14:57:40 +0000815
816
817static int
andre61e67252000-06-04 17:07:49 +0000818utmp_perform_logout(struct logininfo *li)
819{
andre2ff7b5d2000-06-03 14:57:40 +0000820 struct utmp ut;
821
andre6bb92372000-06-19 08:20:03 +0000822 construct_utmp(li, &ut);
Damien Millerdd47aa22000-06-27 11:18:27 +1000823# ifdef UTMP_USE_LIBRARY
andre6bb92372000-06-19 08:20:03 +0000824 if (!utmp_write_library(li, &ut)) {
825 log("utmp_perform_logout: utmp_write_library() failed");
826 return 0;
827 }
Damien Millerdd47aa22000-06-27 11:18:27 +1000828# else
andre6bb92372000-06-19 08:20:03 +0000829 if (!utmp_write_direct(li, &ut)) {
830 log("utmp_perform_logout: utmp_write_direct() failed");
831 return 0;
832 }
Damien Millerdd47aa22000-06-27 11:18:27 +1000833# endif
andre2ff7b5d2000-06-03 14:57:40 +0000834 return 1;
andre61e67252000-06-04 17:07:49 +0000835}
andre2ff7b5d2000-06-03 14:57:40 +0000836
837
838int
andre61e67252000-06-04 17:07:49 +0000839utmp_write_entry(struct logininfo *li)
840{
andre2ff7b5d2000-06-03 14:57:40 +0000841 switch(li->type) {
842 case LTYPE_LOGIN:
843 return utmp_perform_login(li);
844
845 case LTYPE_LOGOUT:
846 return utmp_perform_logout(li);
847
848 default:
849 log("utmp_write_entry: invalid type field");
850 return 0;
851 }
andre61e67252000-06-04 17:07:49 +0000852}
Damien Millerdd47aa22000-06-27 11:18:27 +1000853#endif /* USE_UTMP */
andre2ff7b5d2000-06-03 14:57:40 +0000854
855
856/**
andre61e67252000-06-04 17:07:49 +0000857 ** Low-level utmpx functions
andre2ff7b5d2000-06-03 14:57:40 +0000858 **/
859
860/* not much point if we don't want utmpx entries */
861#ifdef USE_UTMPX
862
andre2ff7b5d2000-06-03 14:57:40 +0000863/* if we have the wherewithall, use pututxline etc. */
Damien Millerdd47aa22000-06-27 11:18:27 +1000864# if !defined(DISABLE_PUTUTXLINE) && defined(HAVE_SETUTXENT) && \
865 defined(HAVE_PUTUTXLINE)
andre2ff7b5d2000-06-03 14:57:40 +0000866# define UTMPX_USE_LIBRARY
Damien Millerdd47aa22000-06-27 11:18:27 +1000867# endif
andre2ff7b5d2000-06-03 14:57:40 +0000868
869
870/* write a utmpx entry with the system's help (pututxline() and pals) */
Damien Millerdd47aa22000-06-27 11:18:27 +1000871# ifdef UTMPX_USE_LIBRARY
andre2ff7b5d2000-06-03 14:57:40 +0000872static int
andre61e67252000-06-04 17:07:49 +0000873utmpx_write_library(struct logininfo *li, struct utmpx *utx)
874{
andre2ff7b5d2000-06-03 14:57:40 +0000875 setutxent();
876 pututxline(utx);
877
Damien Millerdd47aa22000-06-27 11:18:27 +1000878# ifdef HAVE_ENDUTXENT
andre2ff7b5d2000-06-03 14:57:40 +0000879 endutxent();
Damien Millerdd47aa22000-06-27 11:18:27 +1000880# endif
andre2ff7b5d2000-06-03 14:57:40 +0000881 return 1;
andre61e67252000-06-04 17:07:49 +0000882}
andre2ff7b5d2000-06-03 14:57:40 +0000883
Damien Millerdd47aa22000-06-27 11:18:27 +1000884# else /* UTMPX_USE_LIBRARY */
andre2ff7b5d2000-06-03 14:57:40 +0000885
886/* write a utmp entry direct to the file */
887static int
andre61e67252000-06-04 17:07:49 +0000888utmpx_write_direct(struct logininfo *li, struct utmpx *utx)
889{
andre2ff7b5d2000-06-03 14:57:40 +0000890 log("utmpx_write_direct: not implemented!");
891 return 0;
andre61e67252000-06-04 17:07:49 +0000892}
Damien Millerdd47aa22000-06-27 11:18:27 +1000893# endif /* UTMPX_USE_LIBRARY */
andre2ff7b5d2000-06-03 14:57:40 +0000894
895static int
andre61e67252000-06-04 17:07:49 +0000896utmpx_perform_login(struct logininfo *li)
897{
andre2ff7b5d2000-06-03 14:57:40 +0000898 struct utmpx utx;
899
900 construct_utmpx(li, &utx);
Damien Millerdd47aa22000-06-27 11:18:27 +1000901# ifdef UTMPX_USE_LIBRARY
andre2ff7b5d2000-06-03 14:57:40 +0000902 if (!utmpx_write_library(li, &utx)) {
903 log("utmpx_perform_login: utmp_write_library() failed");
904 return 0;
905 }
Damien Millerdd47aa22000-06-27 11:18:27 +1000906# else
andre2ff7b5d2000-06-03 14:57:40 +0000907 if (!utmpx_write_direct(li, &ut)) {
908 log("utmpx_perform_login: utmp_write_direct() failed");
909 return 0;
910 }
Damien Millerdd47aa22000-06-27 11:18:27 +1000911# endif
andre2ff7b5d2000-06-03 14:57:40 +0000912 return 1;
andre61e67252000-06-04 17:07:49 +0000913}
andre2ff7b5d2000-06-03 14:57:40 +0000914
915
916static int
andre61e67252000-06-04 17:07:49 +0000917utmpx_perform_logout(struct logininfo *li)
918{
andre2ff7b5d2000-06-03 14:57:40 +0000919 struct utmpx utx;
920
921 memset(&utx, '\0', sizeof(utx));
922 set_utmpx_time(li, &utx);
923 line_stripname(utx.ut_line, li->line, sizeof(utx.ut_line));
Damien Millerdd47aa22000-06-27 11:18:27 +1000924# ifdef HAVE_ID_IN_UTMPX
andre2ff7b5d2000-06-03 14:57:40 +0000925 line_abbrevname(utx.ut_id, li->line, sizeof(utx.ut_id));
Damien Millerdd47aa22000-06-27 11:18:27 +1000926# endif
927# ifdef HAVE_TYPE_IN_UTMPX
andre2ff7b5d2000-06-03 14:57:40 +0000928 utx.ut_type = DEAD_PROCESS;
Damien Millerdd47aa22000-06-27 11:18:27 +1000929# endif
andre2ff7b5d2000-06-03 14:57:40 +0000930
Damien Millerdd47aa22000-06-27 11:18:27 +1000931# ifdef UTMPX_USE_LIBRARY
andre2ff7b5d2000-06-03 14:57:40 +0000932 utmpx_write_library(li, &utx);
Damien Millerdd47aa22000-06-27 11:18:27 +1000933# else
andre2ff7b5d2000-06-03 14:57:40 +0000934 utmpx_write_direct(li, &utx);
Damien Millerdd47aa22000-06-27 11:18:27 +1000935# endif
andre2ff7b5d2000-06-03 14:57:40 +0000936 return 1;
andre61e67252000-06-04 17:07:49 +0000937}
andre2ff7b5d2000-06-03 14:57:40 +0000938
andre2ff7b5d2000-06-03 14:57:40 +0000939int
andre61e67252000-06-04 17:07:49 +0000940utmpx_write_entry(struct logininfo *li)
941{
andre2ff7b5d2000-06-03 14:57:40 +0000942 switch(li->type) {
943 case LTYPE_LOGIN:
944 return utmpx_perform_login(li);
945 case LTYPE_LOGOUT:
946 return utmpx_perform_logout(li);
947 default:
948 log("utmpx_write_entry: invalid type field");
949 return 0;
950 }
andre61e67252000-06-04 17:07:49 +0000951}
Damien Millerdd47aa22000-06-27 11:18:27 +1000952#endif /* USE_UTMPX */
andre2ff7b5d2000-06-03 14:57:40 +0000953
954
955/**
andre61e67252000-06-04 17:07:49 +0000956 ** Low-level wtmp functions
andre2ff7b5d2000-06-03 14:57:40 +0000957 **/
958
959#ifdef USE_WTMP
960
andre2ff7b5d2000-06-03 14:57:40 +0000961/* write a wtmp entry direct to the end of the file */
andre61e67252000-06-04 17:07:49 +0000962/* This is a slight modification of code in OpenBSD's logwtmp.c */
andre2ff7b5d2000-06-03 14:57:40 +0000963static int
andre61e67252000-06-04 17:07:49 +0000964wtmp_write(struct logininfo *li, struct utmp *ut)
965{
andre2ff7b5d2000-06-03 14:57:40 +0000966 struct stat buf;
967 int fd, ret = 1;
968
969 if ((fd = open(WTMP_FILE, O_WRONLY|O_APPEND, 0)) < 0) {
970 log("wtmp_write: problem writing %s: %s",
971 WTMP_FILE, strerror(errno));
972 return 0;
973 }
andre61e67252000-06-04 17:07:49 +0000974 if (fstat(fd, &buf) == 0)
Damien Miller53c5d462000-06-28 00:50:50 +1000975 if (atomicio(write, fd, ut, sizeof(*ut)) != sizeof(*ut)) {
andre2ff7b5d2000-06-03 14:57:40 +0000976 ftruncate(fd, buf.st_size);
977 log("wtmp_write: problem writing %s: %s",
978 WTMP_FILE, strerror(errno));
979 ret = 0;
980 }
981 (void)close(fd);
andre2ff7b5d2000-06-03 14:57:40 +0000982 return ret;
andre61e67252000-06-04 17:07:49 +0000983}
andre2ff7b5d2000-06-03 14:57:40 +0000984
andre2ff7b5d2000-06-03 14:57:40 +0000985static int
Damien Millerdd47aa22000-06-27 11:18:27 +1000986wtmp_perform_login(struct logininfo *li)
987{
andre2ff7b5d2000-06-03 14:57:40 +0000988 struct utmp ut;
989
990 construct_utmp(li, &ut);
991 return wtmp_write(li, &ut);
andre61e67252000-06-04 17:07:49 +0000992}
andre2ff7b5d2000-06-03 14:57:40 +0000993
994
995static int
andre61e67252000-06-04 17:07:49 +0000996wtmp_perform_logout(struct logininfo *li)
997{
andre2ff7b5d2000-06-03 14:57:40 +0000998 struct utmp ut;
999
1000 construct_utmp(li, &ut);
andre2ff7b5d2000-06-03 14:57:40 +00001001 return wtmp_write(li, &ut);
andre61e67252000-06-04 17:07:49 +00001002}
andre2ff7b5d2000-06-03 14:57:40 +00001003
1004
1005int
andre61e67252000-06-04 17:07:49 +00001006wtmp_write_entry(struct logininfo *li)
1007{
andre2ff7b5d2000-06-03 14:57:40 +00001008 switch(li->type) {
1009 case LTYPE_LOGIN:
1010 return wtmp_perform_login(li);
1011 case LTYPE_LOGOUT:
1012 return wtmp_perform_logout(li);
1013 default:
1014 log("wtmp_write_entry: invalid type field");
1015 return 0;
1016 }
andre61e67252000-06-04 17:07:49 +00001017}
andre2ff7b5d2000-06-03 14:57:40 +00001018
1019
andre6bb92372000-06-19 08:20:03 +00001020/* Notes on fetching login data from wtmp/wtmpx
1021 *
1022 * Logouts are usually recorded with (amongst other things) a blank
1023 * username on a given tty line. However, some systems (HP-UX is one)
1024 * leave all fields set, but change the ut_type field to DEAD_PROCESS.
1025 *
1026 * Since we're only looking for logins here, we know that the username
1027 * must be set correctly. On systems that leave it in, we check for
1028 * ut_type==USER_PROCESS (indicating a login.)
1029 *
1030 * Portability: Some systems may set something other than USER_PROCESS
1031 * to indicate a login process. I don't know of any as I write. Also,
1032 * it's possible that some systems may both leave the username in
1033 * place and not have ut_type.
1034 */
1035
andre6bb92372000-06-19 08:20:03 +00001036/* return true if this wtmp entry indicates a login */
1037static int
1038wtmp_islogin(struct logininfo *li, struct utmp *ut)
1039{
Damien Miller7a0e5dc2000-07-11 12:15:54 +10001040 if (strncmp(li->username, ut->ut_name,
1041 MIN_SIZEOF(li->username, ut->ut_name)) == 0) {
Damien Millerdd47aa22000-06-27 11:18:27 +10001042# ifdef HAVE_TYPE_IN_UTMP
andre6bb92372000-06-19 08:20:03 +00001043 if (ut->ut_type & USER_PROCESS)
1044 return 1;
Damien Millerdd47aa22000-06-27 11:18:27 +10001045# else
andre6bb92372000-06-19 08:20:03 +00001046 return 1;
Damien Millerdd47aa22000-06-27 11:18:27 +10001047# endif
andre6bb92372000-06-19 08:20:03 +00001048 }
1049 return 0;
1050}
1051
andre2ff7b5d2000-06-03 14:57:40 +00001052int
andre61e67252000-06-04 17:07:49 +00001053wtmp_get_entry(struct logininfo *li)
1054{
andre2ff7b5d2000-06-03 14:57:40 +00001055 struct stat st;
1056 struct utmp ut;
andre6bb92372000-06-19 08:20:03 +00001057 int fd, found=0;
1058
1059 /* Clear the time entries in our logininfo */
1060 li->tv_sec = li->tv_usec = 0;
andre2ff7b5d2000-06-03 14:57:40 +00001061
1062 if ((fd = open(WTMP_FILE, O_RDONLY)) < 0) {
1063 log("wtmp_get_entry: problem opening %s: %s",
1064 WTMP_FILE, strerror(errno));
1065 return 0;
1066 }
andre61e67252000-06-04 17:07:49 +00001067 if (fstat(fd, &st) != 0) {
andre2ff7b5d2000-06-03 14:57:40 +00001068 log("wtmp_get_entry: couldn't stat %s: %s",
1069 WTMP_FILE, strerror(errno));
1070 close(fd);
1071 return 0;
1072 }
andre2ff7b5d2000-06-03 14:57:40 +00001073
andre6bb92372000-06-19 08:20:03 +00001074 /* Seek to the start of the last struct utmp */
Damien Miller348c9b72000-08-15 10:01:22 +10001075 if (lseek(fd, (off_t)(0 - sizeof(struct utmp)), SEEK_END) == -1) {
andre6bb92372000-06-19 08:20:03 +00001076 /* Looks like we've got a fresh wtmp file */
1077 close(fd);
1078 return 0;
1079 }
1080
1081 while (!found) {
Damien Miller53c5d462000-06-28 00:50:50 +10001082 if (atomicio(read, fd, &ut, sizeof(ut)) != sizeof(ut)) {
andre2ff7b5d2000-06-03 14:57:40 +00001083 log("wtmp_get_entry: read of %s failed: %s",
1084 WTMP_FILE, strerror(errno));
1085 close (fd);
1086 return 0;
1087 }
andre6bb92372000-06-19 08:20:03 +00001088 if ( wtmp_islogin(li, &ut) ) {
1089 found = 1;
1090 /* We've already checked for a time in struct
1091 * utmp, in login_getlast(). */
Damien Millerdd47aa22000-06-27 11:18:27 +10001092# ifdef HAVE_TIME_IN_UTMP
andre2ff7b5d2000-06-03 14:57:40 +00001093 li->tv_sec = ut.ut_time;
Damien Millerdd47aa22000-06-27 11:18:27 +10001094# else
andre2ff7b5d2000-06-03 14:57:40 +00001095# if HAVE_TV_IN_UTMP
1096 li->tv_sec = ut.ut_tv.tv_sec;
1097# endif
Damien Millerdd47aa22000-06-27 11:18:27 +10001098# endif
andre6bb92372000-06-19 08:20:03 +00001099 line_fullname(li->line, ut.ut_line,
1100 MIN_SIZEOF(li->line, ut.ut_line));
Damien Millerdd47aa22000-06-27 11:18:27 +10001101# ifdef HAVE_HOST_IN_UTMP
andre6bb92372000-06-19 08:20:03 +00001102 strlcpy(li->hostname, ut.ut_host,
1103 MIN_SIZEOF(li->hostname, ut.ut_host));
Damien Millerdd47aa22000-06-27 11:18:27 +10001104# endif
andre6bb92372000-06-19 08:20:03 +00001105 continue;
andre2ff7b5d2000-06-03 14:57:40 +00001106 }
andre6bb92372000-06-19 08:20:03 +00001107 /* Seek back 2 x struct utmp */
andre2ff7b5d2000-06-03 14:57:40 +00001108 if (lseek(fd, (off_t)(0-2*sizeof(struct utmp)), SEEK_CUR) == -1) {
andre6bb92372000-06-19 08:20:03 +00001109 /* We've found the start of the file, so quit */
andre2ff7b5d2000-06-03 14:57:40 +00001110 close (fd);
1111 return 0;
1112 }
andre6bb92372000-06-19 08:20:03 +00001113 }
1114
1115 /* We found an entry. Tidy up and return */
1116 close(fd);
andre2ff7b5d2000-06-03 14:57:40 +00001117 return 1;
andre61e67252000-06-04 17:07:49 +00001118}
Damien Millerdd47aa22000-06-27 11:18:27 +10001119# endif /* USE_WTMP */
andre2ff7b5d2000-06-03 14:57:40 +00001120
1121
1122/**
andre61e67252000-06-04 17:07:49 +00001123 ** Low-level wtmpx functions
andre2ff7b5d2000-06-03 14:57:40 +00001124 **/
1125
1126#ifdef USE_WTMPX
andre2ff7b5d2000-06-03 14:57:40 +00001127/* write a wtmpx entry direct to the end of the file */
andre61e67252000-06-04 17:07:49 +00001128/* This is a slight modification of code in OpenBSD's logwtmp.c */
andre2ff7b5d2000-06-03 14:57:40 +00001129static int
andre61e67252000-06-04 17:07:49 +00001130wtmpx_write(struct logininfo *li, struct utmpx *utx)
1131{
andre2ff7b5d2000-06-03 14:57:40 +00001132 struct stat buf;
1133 int fd, ret = 1;
1134
1135 if ((fd = open(WTMPX_FILE, O_WRONLY|O_APPEND, 0)) < 0) {
1136 log("wtmpx_write: problem opening %s: %s",
1137 WTMPX_FILE, strerror(errno));
1138 return 0;
1139 }
1140
1141 if (fstat(fd, &buf) == 0)
Damien Miller53c5d462000-06-28 00:50:50 +10001142 if (atomicio(write, fd, utx, sizeof(*utx)) != sizeof(*utx)) {
andre2ff7b5d2000-06-03 14:57:40 +00001143 ftruncate(fd, buf.st_size);
1144 log("wtmpx_write: problem writing %s: %s",
1145 WTMPX_FILE, strerror(errno));
1146 ret = 0;
1147 }
1148 (void)close(fd);
1149
1150 return ret;
andre61e67252000-06-04 17:07:49 +00001151}
andre2ff7b5d2000-06-03 14:57:40 +00001152
1153
1154static int
andre61e67252000-06-04 17:07:49 +00001155wtmpx_perform_login(struct logininfo *li)
1156{
andre2ff7b5d2000-06-03 14:57:40 +00001157 struct utmpx utx;
1158
1159 construct_utmpx(li, &utx);
1160 return wtmpx_write(li, &utx);
andre61e67252000-06-04 17:07:49 +00001161}
andre2ff7b5d2000-06-03 14:57:40 +00001162
1163
1164static int
andre61e67252000-06-04 17:07:49 +00001165wtmpx_perform_logout(struct logininfo *li)
1166{
andre2ff7b5d2000-06-03 14:57:40 +00001167 struct utmpx utx;
1168
1169 construct_utmpx(li, &utx);
andre2ff7b5d2000-06-03 14:57:40 +00001170 return wtmpx_write(li, &utx);
andre61e67252000-06-04 17:07:49 +00001171}
andre2ff7b5d2000-06-03 14:57:40 +00001172
1173
1174int
andre61e67252000-06-04 17:07:49 +00001175wtmpx_write_entry(struct logininfo *li)
1176{
andre2ff7b5d2000-06-03 14:57:40 +00001177 switch(li->type) {
1178 case LTYPE_LOGIN:
1179 return wtmpx_perform_login(li);
1180 case LTYPE_LOGOUT:
1181 return wtmpx_perform_logout(li);
1182 default:
1183 log("wtmpx_write_entry: invalid type field");
1184 return 0;
1185 }
andre61e67252000-06-04 17:07:49 +00001186}
andre2ff7b5d2000-06-03 14:57:40 +00001187
andre6bb92372000-06-19 08:20:03 +00001188/* Please see the notes above wtmp_islogin() for information about the
1189 next two functions */
1190
1191/* Return true if this wtmpx entry indicates a login */
1192static int
1193wtmpx_islogin(struct logininfo *li, struct utmpx *utx)
1194{
Damien Miller7a0e5dc2000-07-11 12:15:54 +10001195 if ( strncmp(li->username, utx->ut_name,
1196 MIN_SIZEOF(li->username, utx->ut_name)) == 0 ) {
Damien Millerdd47aa22000-06-27 11:18:27 +10001197# ifdef HAVE_TYPE_IN_UTMPX
andre6bb92372000-06-19 08:20:03 +00001198 if (utx->ut_type == USER_PROCESS)
1199 return 1;
Damien Millerdd47aa22000-06-27 11:18:27 +10001200# else
andre6bb92372000-06-19 08:20:03 +00001201 return 1;
Damien Millerdd47aa22000-06-27 11:18:27 +10001202# endif
andre6bb92372000-06-19 08:20:03 +00001203 }
1204 return 0;
1205}
1206
andre2ff7b5d2000-06-03 14:57:40 +00001207
1208int
andre61e67252000-06-04 17:07:49 +00001209wtmpx_get_entry(struct logininfo *li)
1210{
andre2ff7b5d2000-06-03 14:57:40 +00001211 struct stat st;
1212 struct utmpx utx;
andre6bb92372000-06-19 08:20:03 +00001213 int fd, found=0;
1214
1215 /* Clear the time entries */
1216 li->tv_sec = li->tv_usec = 0;
andre2ff7b5d2000-06-03 14:57:40 +00001217
1218 if ((fd = open(WTMPX_FILE, O_RDONLY)) < 0) {
1219 log("wtmpx_get_entry: problem opening %s: %s",
1220 WTMPX_FILE, strerror(errno));
1221 return 0;
1222 }
andre61e67252000-06-04 17:07:49 +00001223 if (fstat(fd, &st) != 0) {
andre2ff7b5d2000-06-03 14:57:40 +00001224 log("wtmpx_get_entry: couldn't stat %s: %s",
1225 WTMP_FILE, strerror(errno));
1226 close(fd);
1227 return 0;
1228 }
andre6bb92372000-06-19 08:20:03 +00001229
1230 /* Seek to the start of the last struct utmpx */
1231 if (lseek(fd, (off_t)(0-sizeof(struct utmpx)), SEEK_END) == -1 ) {
1232 /* probably a newly rotated wtmpx file */
1233 close(fd);
1234 return 0;
1235 }
andre2ff7b5d2000-06-03 14:57:40 +00001236
andre6bb92372000-06-19 08:20:03 +00001237 while (!found) {
Damien Miller53c5d462000-06-28 00:50:50 +10001238 if (atomicio(read, fd, &utx, sizeof(utx)) != sizeof(utx)) {
andre2ff7b5d2000-06-03 14:57:40 +00001239 log("wtmpx_get_entry: read of %s failed: %s",
1240 WTMPX_FILE, strerror(errno));
1241 close (fd);
1242 return 0;
1243 }
andre2ff7b5d2000-06-03 14:57:40 +00001244 /* Logouts are recorded as a blank username on a particular line.
1245 * So, we just need to find the username in struct utmpx */
andre6bb92372000-06-19 08:20:03 +00001246 if ( wtmpx_islogin(li, &utx) ) {
Damien Millerdd47aa22000-06-27 11:18:27 +10001247# ifdef HAVE_TV_IN_UTMPX
andre2ff7b5d2000-06-03 14:57:40 +00001248 li->tv_sec = utx.ut_tv.tv_sec;
Damien Millerdd47aa22000-06-27 11:18:27 +10001249# else
andre2ff7b5d2000-06-03 14:57:40 +00001250# ifdef HAVE_TIME_IN_UTMPX
1251 li->tv_sec = utx.ut_time;
1252# endif
Damien Millerdd47aa22000-06-27 11:18:27 +10001253# endif
Damien Miller1a132252000-06-13 21:23:17 +10001254 line_fullname(li->line, utx.ut_line, sizeof(li->line));
Damien Millerdd47aa22000-06-27 11:18:27 +10001255# ifdef HAVE_HOST_IN_UTMPX
andre6bb92372000-06-19 08:20:03 +00001256 strlcpy(li->hostname, utx.ut_host,
1257 MIN_SIZEOF(li->hostname, utx.ut_host));
Damien Millerdd47aa22000-06-27 11:18:27 +10001258# endif
andre6bb92372000-06-19 08:20:03 +00001259 continue;
andre2ff7b5d2000-06-03 14:57:40 +00001260 }
1261 if (lseek(fd, (off_t)(0-2*sizeof(struct utmpx)), SEEK_CUR) == -1) {
1262 close (fd);
1263 return 0;
1264 }
andre6bb92372000-06-19 08:20:03 +00001265 }
1266
1267 close(fd);
andre2ff7b5d2000-06-03 14:57:40 +00001268 return 1;
andre61e67252000-06-04 17:07:49 +00001269}
Damien Millerd5bf3072000-06-07 21:32:13 +10001270#endif /* USE_WTMPX */
andre2ff7b5d2000-06-03 14:57:40 +00001271
andre2ff7b5d2000-06-03 14:57:40 +00001272/**
andre61e67252000-06-04 17:07:49 +00001273 ** Low-level libutil login() functions
andre2ff7b5d2000-06-03 14:57:40 +00001274 **/
1275
1276#ifdef USE_LOGIN
andre2ff7b5d2000-06-03 14:57:40 +00001277static int
andre61e67252000-06-04 17:07:49 +00001278syslogin_perform_login(struct logininfo *li)
1279{
andre2ff7b5d2000-06-03 14:57:40 +00001280 struct utmp *ut;
1281
Damien Miller348c9b72000-08-15 10:01:22 +10001282 if (! (ut = (struct utmp *)malloc(sizeof(*ut)))) {
andre2ff7b5d2000-06-03 14:57:40 +00001283 log("syslogin_perform_login: couldn't malloc()");
1284 return 0;
1285 }
1286 construct_utmp(li, ut);
1287 login(ut);
1288
1289 return 1;
andre61e67252000-06-04 17:07:49 +00001290}
1291
andre2ff7b5d2000-06-03 14:57:40 +00001292static int
andre61e67252000-06-04 17:07:49 +00001293syslogin_perform_logout(struct logininfo *li)
1294{
Damien Millerdd47aa22000-06-27 11:18:27 +10001295# ifdef HAVE_LOGOUT
andre2ff7b5d2000-06-03 14:57:40 +00001296 char line[8];
1297
1298 (void)line_stripname(line, li->line, sizeof(line));
1299
1300 if (!logout(line)) {
1301 log("syslogin_perform_logout: logout() returned an error");
Damien Millerdd47aa22000-06-27 11:18:27 +10001302# ifdef HAVE_LOGWTMP
andre2ff7b5d2000-06-03 14:57:40 +00001303 } else {
1304 logwtmp(line, "", "");
Damien Millerdd47aa22000-06-27 11:18:27 +10001305# endif
Damien Miller9b6d4ab2000-07-02 08:43:18 +10001306 }
andre6bb92372000-06-19 08:20:03 +00001307 /* FIXME: (ATL - if the need arises) What to do if we have
1308 * login, but no logout? what if logout but no logwtmp? All
1309 * routines are in libutil so they should all be there,
1310 * but... */
Damien Millerdd47aa22000-06-27 11:18:27 +10001311# endif
andre2ff7b5d2000-06-03 14:57:40 +00001312 return 1;
andre61e67252000-06-04 17:07:49 +00001313}
andre2ff7b5d2000-06-03 14:57:40 +00001314
andre2ff7b5d2000-06-03 14:57:40 +00001315int
andre61e67252000-06-04 17:07:49 +00001316syslogin_write_entry(struct logininfo *li)
1317{
andre2ff7b5d2000-06-03 14:57:40 +00001318 switch (li->type) {
1319 case LTYPE_LOGIN:
1320 return syslogin_perform_login(li);
1321 case LTYPE_LOGOUT:
1322 return syslogin_perform_logout(li);
1323 default:
1324 log("syslogin_write_entry: Invalid type field");
1325 return 0;
1326 }
andre61e67252000-06-04 17:07:49 +00001327}
Damien Millerd5bf3072000-06-07 21:32:13 +10001328#endif /* USE_LOGIN */
andre2ff7b5d2000-06-03 14:57:40 +00001329
1330/* end of file log-syslogin.c */
1331
andre2ff7b5d2000-06-03 14:57:40 +00001332/**
andre61e67252000-06-04 17:07:49 +00001333 ** Low-level lastlog functions
andre2ff7b5d2000-06-03 14:57:40 +00001334 **/
1335
1336#ifdef USE_LASTLOG
Damien Millerdd47aa22000-06-27 11:18:27 +10001337#define LL_FILE 1
1338#define LL_DIR 2
1339#define LL_OTHER 3
andre2ff7b5d2000-06-03 14:57:40 +00001340
andre2ff7b5d2000-06-03 14:57:40 +00001341static void
andre61e67252000-06-04 17:07:49 +00001342lastlog_construct(struct logininfo *li, struct lastlog *last)
1343{
andre2ff7b5d2000-06-03 14:57:40 +00001344 /* clear the structure */
Damien Miller348c9b72000-08-15 10:01:22 +10001345 memset(last, '\0', sizeof(*last));
andre2ff7b5d2000-06-03 14:57:40 +00001346
Damien Millerdd47aa22000-06-27 11:18:27 +10001347 (void)line_stripname(last->ll_line, li->line, sizeof(last->ll_line));
andre6bb92372000-06-19 08:20:03 +00001348 strlcpy(last->ll_host, li->hostname,
1349 MIN_SIZEOF(last->ll_host, li->hostname));
andre2ff7b5d2000-06-03 14:57:40 +00001350 last->ll_time = li->tv_sec;
andre61e67252000-06-04 17:07:49 +00001351}
andre2ff7b5d2000-06-03 14:57:40 +00001352
andre2ff7b5d2000-06-03 14:57:40 +00001353static int
andre61e67252000-06-04 17:07:49 +00001354lastlog_filetype(char *filename)
1355{
andre2ff7b5d2000-06-03 14:57:40 +00001356 struct stat st;
1357
Damien Millerdd47aa22000-06-27 11:18:27 +10001358 if (stat(LASTLOG_FILE, &st) != 0) {
1359 log("lastlog_perform_login: Couldn't stat %s: %s", LASTLOG_FILE,
1360 strerror(errno));
andre2ff7b5d2000-06-03 14:57:40 +00001361 return 0;
1362 }
andre2ff7b5d2000-06-03 14:57:40 +00001363 if (S_ISDIR(st.st_mode))
1364 return LL_DIR;
1365 else if (S_ISREG(st.st_mode))
1366 return LL_FILE;
1367 else
1368 return LL_OTHER;
andre61e67252000-06-04 17:07:49 +00001369}
andre2ff7b5d2000-06-03 14:57:40 +00001370
1371
1372/* open the file (using filemode) and seek to the login entry */
1373static int
andre61e67252000-06-04 17:07:49 +00001374lastlog_openseek(struct logininfo *li, int *fd, int filemode)
1375{
andre2ff7b5d2000-06-03 14:57:40 +00001376 off_t offset;
1377 int type;
1378 char lastlog_file[1024];
1379
1380 type = lastlog_filetype(LASTLOG_FILE);
1381 switch (type) {
Damien Millerf8af08d2000-06-27 09:40:06 +10001382 case LL_FILE:
1383 strlcpy(lastlog_file, LASTLOG_FILE, sizeof(lastlog_file));
1384 break;
1385 case LL_DIR:
1386 snprintf(lastlog_file, sizeof(lastlog_file), "%s/%s",
1387 LASTLOG_FILE, li->username);
1388 break;
1389 default:
1390 log("lastlog_openseek: %.100s is not a file or directory!",
1391 LASTLOG_FILE);
1392 return 0;
Damien Millerdd47aa22000-06-27 11:18:27 +10001393 }
andre2ff7b5d2000-06-03 14:57:40 +00001394
1395 *fd = open(lastlog_file, filemode);
1396 if ( *fd < 0) {
Damien Miller53c5d462000-06-28 00:50:50 +10001397 debug("lastlog_openseek: Couldn't open %s: %s",
andre2ff7b5d2000-06-03 14:57:40 +00001398 lastlog_file, strerror(errno));
1399 return 0;
1400 }
Damien Millerdd47aa22000-06-27 11:18:27 +10001401
Damien Millere477ef62000-08-15 10:21:17 +10001402 if (type == LL_FILE) {
1403 /* find this uid's offset in the lastlog file */
1404 offset = (off_t) ( (long)li->uid * sizeof(struct lastlog));
andre2ff7b5d2000-06-03 14:57:40 +00001405
Damien Millere477ef62000-08-15 10:21:17 +10001406 if ( lseek(*fd, offset, SEEK_SET) != offset ) {
1407 log("lastlog_openseek: %s->lseek(): %s",
1408 lastlog_file, strerror(errno));
1409 return 0;
1410 }
andre2ff7b5d2000-06-03 14:57:40 +00001411 }
Damien Millere477ef62000-08-15 10:21:17 +10001412
andre2ff7b5d2000-06-03 14:57:40 +00001413 return 1;
andre61e67252000-06-04 17:07:49 +00001414}
andre2ff7b5d2000-06-03 14:57:40 +00001415
1416static int
andre61e67252000-06-04 17:07:49 +00001417lastlog_perform_login(struct logininfo *li)
1418{
andre2ff7b5d2000-06-03 14:57:40 +00001419 struct lastlog last;
1420 int fd;
1421
1422 /* create our struct lastlog */
1423 lastlog_construct(li, &last);
1424
Damien Millerc1132e72000-08-18 14:08:38 +10001425 if (!lastlog_openseek(li, &fd, O_RDWR|O_CREAT))
1426 return(0);
1427
andre2ff7b5d2000-06-03 14:57:40 +00001428 /* write the entry */
Damien Millerc1132e72000-08-18 14:08:38 +10001429 if (atomicio(write, fd, &last, sizeof(last)) != sizeof(last)) {
1430 close(fd);
1431 log("lastlog_write_filemode: Error writing to %s: %s",
1432 LASTLOG_FILE, strerror(errno));
andre2ff7b5d2000-06-03 14:57:40 +00001433 return 0;
Damien Millerdd47aa22000-06-27 11:18:27 +10001434 }
Damien Millerc1132e72000-08-18 14:08:38 +10001435
1436 close(fd);
1437 return 1;
andre61e67252000-06-04 17:07:49 +00001438}
andre2ff7b5d2000-06-03 14:57:40 +00001439
andre2ff7b5d2000-06-03 14:57:40 +00001440int
andre61e67252000-06-04 17:07:49 +00001441lastlog_write_entry(struct logininfo *li)
1442{
andre2ff7b5d2000-06-03 14:57:40 +00001443 switch(li->type) {
1444 case LTYPE_LOGIN:
1445 return lastlog_perform_login(li);
1446 default:
1447 log("lastlog_write_entry: Invalid type field");
1448 return 0;
1449 }
andre61e67252000-06-04 17:07:49 +00001450}
andre2ff7b5d2000-06-03 14:57:40 +00001451
andre2ff7b5d2000-06-03 14:57:40 +00001452static void
andre61e67252000-06-04 17:07:49 +00001453lastlog_populate_entry(struct logininfo *li, struct lastlog *last)
1454{
andre2ff7b5d2000-06-03 14:57:40 +00001455 line_fullname(li->line, last->ll_line, sizeof(li->line));
Damien Millerdd47aa22000-06-27 11:18:27 +10001456 strlcpy(li->hostname, last->ll_host,
andre6bb92372000-06-19 08:20:03 +00001457 MIN_SIZEOF(li->hostname, last->ll_host));
andre2ff7b5d2000-06-03 14:57:40 +00001458 li->tv_sec = last->ll_time;
andre61e67252000-06-04 17:07:49 +00001459}
andre2ff7b5d2000-06-03 14:57:40 +00001460
andre2ff7b5d2000-06-03 14:57:40 +00001461int
andre61e67252000-06-04 17:07:49 +00001462lastlog_get_entry(struct logininfo *li)
1463{
andre2ff7b5d2000-06-03 14:57:40 +00001464 struct lastlog last;
1465 int fd;
1466
1467 if (lastlog_openseek(li, &fd, O_RDONLY)) {
Damien Miller53c5d462000-06-28 00:50:50 +10001468 if (atomicio(read, fd, &last, sizeof(last)) != sizeof(last)) {
1469 log("lastlog_get_entry: Error reading from %s: %s",
andre2ff7b5d2000-06-03 14:57:40 +00001470 LASTLOG_FILE, strerror(errno));
1471 return 0;
1472 } else {
1473 lastlog_populate_entry(li, &last);
1474 return 1;
1475 }
Damien Millerdd47aa22000-06-27 11:18:27 +10001476 } else {
andre2ff7b5d2000-06-03 14:57:40 +00001477 return 0;
Damien Millerdd47aa22000-06-27 11:18:27 +10001478 }
andre61e67252000-06-04 17:07:49 +00001479}
Damien Millerd5bf3072000-06-07 21:32:13 +10001480#endif /* USE_LASTLOG */