]> andersk Git - openssh.git/blame - loginrec.c
- (djm) NeXT tweaks from Ben Lindstrom <mouring@pconline.com>
[openssh.git] / loginrec.c
CommitLineData
1d7b9b20 1/*
2 * Copyright (c) 2000 Andre Lucas. All rights reserved.
564dd50a 3 * Portions copyright (c) 1998 Todd C. Miller
4 * Portions copyright (c) 1996 Jason Downs
5 * Portions copyright (c) 1996 Theo de Raadt
1d7b9b20 6 *
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
564dd50a 37/*
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
1d7b9b20 133/**
134 ** TODO:
698d107e 135 ** homegrown ttyslot()
564dd50a 136 ** test, test, test
1d7b9b20 137 **
138 ** Platform status:
139 ** ----------------
140 **
141 ** Known good:
698d107e 142 ** Linux (Redhat 6.2, Debian)
143 ** Solaris
1d7b9b20 144 ** HP-UX 10.20 (gcc only)
5abcdf8e 145 ** IRIX
698d107e 146 ** NeXT - M68k/HPPA (4.2/3.3)
1d7b9b20 147 **
148 ** Testing required: Please send reports!
1d7b9b20 149 ** NetBSD
150 ** HP-UX 11
a3cef3ca 151 ** AIX
1d7b9b20 152 **
153 ** Platforms with known problems:
698d107e 154 ** Some variants of Slackware Linux
1d7b9b20 155 **
156 **/
157
158#include "includes.h"
159
1d7b9b20 160#include "ssh.h"
161#include "xmalloc.h"
162#include "loginrec.h"
163
164RCSID("$Id$");
165
1d7b9b20 166/**
167 ** prototypes for helper functions in this file
168 **/
169
170#if HAVE_UTMP_H
1d7b9b20 171void set_utmp_time(struct logininfo *li, struct utmp *ut);
172void construct_utmp(struct logininfo *li, struct utmp *ut);
173#endif
174
175#ifdef HAVE_UTMPX_H
1d7b9b20 176void set_utmpx_time(struct logininfo *li, struct utmpx *ut);
177void construct_utmpx(struct logininfo *li, struct utmpx *ut);
178#endif
179
180int utmp_write_entry(struct logininfo *li);
181int utmpx_write_entry(struct logininfo *li);
182int wtmp_write_entry(struct logininfo *li);
183int wtmpx_write_entry(struct logininfo *li);
184int lastlog_write_entry(struct logininfo *li);
185int syslogin_write_entry(struct logininfo *li);
186
187int getlast_entry(struct logininfo *li);
188int lastlog_get_entry(struct logininfo *li);
189int wtmp_get_entry(struct logininfo *li);
190int wtmpx_get_entry(struct logininfo *li);
191
5abcdf8e 192/* pick the shortest string */
193#define MIN_SIZEOF(s1,s2) ( sizeof(s1) < sizeof(s2) ? sizeof(s1) : sizeof(s2) )
194
1d7b9b20 195/**
196 ** platform-independent login functions
197 **/
198
5abcdf8e 199/* login_login(struct logininfo *) -Record a login
200 *
201 * Call with a pointer to a struct logininfo initialised with
202 * login_init_entry() or login_alloc_entry()
203 *
204 * Returns:
205 * >0 if successful
206 * 0 on failure (will use OpenSSH's logging facilities for diagnostics)
207 */
564dd50a 208int
209login_login (struct logininfo *li)
210{
211 li->type = LTYPE_LOGIN;
212 return login_write(li);
213}
1d7b9b20 214
215
5abcdf8e 216/* login_logout(struct logininfo *) - Record a logout
217 *
218 * Call as with login_login()
219 *
220 * Returns:
221 * >0 if successful
222 * 0 on failure (will use OpenSSH's logging facilities for diagnostics)
223 */
564dd50a 224int
225login_logout(struct logininfo *li)
226{
227 li->type = LTYPE_LOGOUT;
228 return login_write(li);
1d7b9b20 229}
230
5abcdf8e 231/* login_get_lastlog_time(int) - Retrieve the last login time
232 *
233 * Retrieve the last login time for the given uid. Will try to use the
234 * system lastlog facilities if they are available, but will fall back
235 * to looking in wtmp/wtmpx if necessary
236 *
237 * Returns:
238 * 0 on failure, or if user has never logged in
239 * Time in seconds from the epoch if successful
240 *
241 * Useful preprocessor symbols:
242 * DISABLE_LASTLOG: If set, *never* even try to retrieve lastlog
243 * info
244 * USE_LASTLOG: If set, indicates the presence of system lastlog
245 * facilities. If this and DISABLE_LASTLOG are not set,
246 * try to retrieve lastlog information from wtmp/wtmpx.
247 */
564dd50a 248unsigned int
249login_get_lastlog_time(const int uid)
250{
251 struct logininfo li;
1d7b9b20 252
5abcdf8e 253 if (login_get_lastlog(&li, uid))
254 return li.tv_sec;
255 else
256 return 0;
564dd50a 257}
1d7b9b20 258
5abcdf8e 259/* login_get_lastlog(struct logininfo *, int) - Retrieve a lastlog entry
260 *
261 * Retrieve a logininfo structure populated (only partially) with
262 * information from the system lastlog data, or from wtmp/wtmpx if no
263 * system lastlog information exists.
264 *
265 * Note this routine must be given a pre-allocated logininfo.
266 *
267 * Returns:
268 * >0: A pointer to your struct logininfo if successful
269 * 0 on failure (will use OpenSSH's logging facilities for diagnostics)
270 *
271 */
564dd50a 272struct logininfo *
273login_get_lastlog(struct logininfo *li, const int uid)
274{
5abcdf8e 275 struct passwd *pw;
5abcdf8e 276
dbaa2e87 277 memset(li, '\0', sizeof(*li));
1d7b9b20 278 li->uid = uid;
5abcdf8e 279
9f32ceb4 280 /*
281 * If we don't have a 'real' lastlog, we need the username to
5abcdf8e 282 * reliably search wtmp(x) for the last login (see
9f32ceb4 283 * wtmp_get_entry().)
284 */
5abcdf8e 285 pw = getpwuid(uid);
a05a70ab 286 if (pw == NULL)
287 fatal("login_get_lastlog: Cannot find account for uid %i", uid);
288
1bfbb762 289 /* No MIN_SIZEOF here - we absolutely *must not* truncate the
290 * username */
d8caae24 291 strlcpy(li->username, pw->pw_name, sizeof(li->username));
a05a70ab 292
564dd50a 293 if (getlast_entry(li))
294 return li;
295 else
a05a70ab 296 return NULL;
1d7b9b20 297}
298
1d7b9b20 299
5abcdf8e 300/* login_alloc_entry(int, char*, char*, char*) - Allocate and initialise
301 * a logininfo structure
302 *
303 * This function creates a new struct logininfo, a data structure
304 * meant to carry the information required to portably record login info.
305 *
306 * Returns a pointer to a newly created struct logininfo. If memory
307 * allocation fails, the program halts.
308 */
564dd50a 309struct
310logininfo *login_alloc_entry(int pid, const char *username,
311 const char *hostname, const char *line)
312{
313 struct logininfo *newli;
1d7b9b20 314
dbaa2e87 315 newli = (struct logininfo *) xmalloc (sizeof(*newli));
564dd50a 316 (void)login_init_entry(newli, pid, username, hostname, line);
317 return newli;
1d7b9b20 318}
319
320
5abcdf8e 321/* login_free_entry(struct logininfo *) - free struct memory */
1d7b9b20 322void
564dd50a 323login_free_entry(struct logininfo *li)
324{
325 xfree(li);
1d7b9b20 326}
327
328
5abcdf8e 329/* login_init_entry(struct logininfo *, int, char*, char*, char*)
330 * - initialise a struct logininfo
331 *
332 * Populates a new struct logininfo, a data structure meant to carry
333 * the information required to portably record login info.
334 *
335 * Returns: 1
336 */
564dd50a 337int
338login_init_entry(struct logininfo *li, int pid, const char *username,
339 const char *hostname, const char *line)
340{
d8caae24 341 struct passwd *pw;
342
dbaa2e87 343 memset(li, 0, sizeof(*li));
564dd50a 344
345 li->pid = pid;
d8caae24 346
564dd50a 347 /* set the line information */
348 if (line)
349 line_fullname(li->line, line, sizeof(li->line));
1d7b9b20 350
d8caae24 351 if (username) {
564dd50a 352 strlcpy(li->username, username, sizeof(li->username));
d8caae24 353 pw = getpwnam(li->username);
354 if (pw == NULL)
355 fatal("login_init_entry: Cannot find user \"%s\"", li->username);
356 li->uid = pw->pw_uid;
357 }
a05a70ab 358
564dd50a 359 if (hostname)
360 strlcpy(li->hostname, hostname, sizeof(li->hostname));
d8caae24 361
564dd50a 362 return 1;
1d7b9b20 363}
364
5abcdf8e 365/* login_set_current_time(struct logininfo *) - set the current time
366 *
367 * Set the current time in a logininfo structure. This function is
368 * meant to eliminate the need to deal with system dependencies for
369 * time handling.
370 */
1d7b9b20 371void
564dd50a 372login_set_current_time(struct logininfo *li)
373{
1d7b9b20 374 struct timeval tv;
375
376 gettimeofday(&tv, NULL);
d8caae24 377
378 li->tv_sec = tv.tv_sec;
379 li->tv_usec = tv.tv_usec;
1d7b9b20 380}
381
564dd50a 382/* copy a sockaddr_* into our logininfo */
1d7b9b20 383void
564dd50a 384login_set_addr(struct logininfo *li, const struct sockaddr *sa,
385 const unsigned int sa_size)
386{
387 unsigned int bufsize = sa_size;
388
389 /* make sure we don't overrun our union */
390 if (sizeof(li->hostaddr) < sa_size)
391 bufsize = sizeof(li->hostaddr);
392
393 memcpy((void *)&(li->hostaddr.sa), (const void *)sa, bufsize);
1d7b9b20 394}
1d7b9b20 395
564dd50a 396
397/**
398 ** login_write: Call low-level recording functions based on autoconf
399 ** results
400 **/
1d7b9b20 401int
564dd50a 402login_write (struct logininfo *li)
403{
1d7b9b20 404 if ((int)geteuid() != 0) {
405 log("Attempt to write login records by non-root user (aborting)");
406 return 1;
407 }
a05a70ab 408
1d7b9b20 409 /* set the timestamp */
410 login_set_current_time(li);
411#ifdef USE_LOGIN
412 syslogin_write_entry(li);
413#endif
414#ifdef USE_LASTLOG
415 if (li->type == LTYPE_LOGIN) {
416 lastlog_write_entry(li);
417 }
418#endif
419#ifdef USE_UTMP
420 utmp_write_entry(li);
421#endif
422#ifdef USE_WTMP
423 wtmp_write_entry(li);
424#endif
425#ifdef USE_UTMPX
426 utmpx_write_entry(li);
427#endif
428#ifdef USE_WTMPX
429 wtmpx_write_entry(li);
430#endif
431 return 0;
432}
433
564dd50a 434/**
435 ** getlast_entry: Call low-level functions to retrieve the last login
436 ** time.
437 **/
1d7b9b20 438
564dd50a 439/* take the uid in li and return the last login time */
1d7b9b20 440int
564dd50a 441getlast_entry(struct logininfo *li)
442{
443#ifdef USE_LASTLOG
9f32ceb4 444 return(lastlog_get_entry(li));
a05a70ab 445#else /* !USE_LASTLOG */
1d7b9b20 446
a05a70ab 447#ifdef DISABLE_LASTLOG
3f45f1c3 448 /* On some systems we shouldn't even try to obtain last login
449 * time, e.g. AIX */
450 return 0;
a05a70ab 451# else /* DISABLE_LASTLOG */
564dd50a 452 /* Try to retrieve the last login time from wtmp */
a05a70ab 453# if defined(USE_WTMP) && (defined(HAVE_TIME_IN_UTMP) || defined(HAVE_TV_IN_UTMP))
564dd50a 454 /* retrieve last login time from utmp */
a05a70ab 455 return (wtmp_get_entry(li));
456# else /* defined(USE_WTMP) && (defined(HAVE_TIME_IN_UTMP) || defined(HAVE_TV_IN_UTMP)) */
564dd50a 457 /* If wtmp isn't available, try wtmpx */
a05a70ab 458# if defined(USE_WTMPX) && (defined(HAVE_TIME_IN_UTMPX) || defined(HAVE_TV_IN_UTMPX))
564dd50a 459 /* retrieve last login time from utmpx */
a05a70ab 460 return (wtmpx_get_entry(li));
461# else
564dd50a 462 /* Give up: No means of retrieving last login time */
463 return 0;
a05a70ab 464# endif /* USE_WTMPX && (HAVE_TIME_IN_UTMPX || HAVE_TV_IN_UTMPX) */
465# endif /* USE_WTMP && (HAVE_TIME_IN_UTMP || HAVE_TV_IN_UTMP) */
466# endif /* DISABLE_LASTLOG */
467#endif /* USE_LASTLOG */
564dd50a 468}
1d7b9b20 469
470
1d7b9b20 471
472/*
564dd50a 473 * 'line' string utility functions
474 *
475 * These functions process the 'line' string into one of three forms:
476 *
1d7b9b20 477 * 1. The full filename (including '/dev')
478 * 2. The stripped name (excluding '/dev')
564dd50a 479 * 3. The abbreviated name (e.g. /dev/ttyp00 -> yp00
480 * /dev/pts/1 -> ts/1 )
1d7b9b20 481 *
482 * Form 3 is used on some systems to identify a .tmp.? entry when
483 * attempting to remove it. Typically both addition and removal is
564dd50a 484 * performed by one application - say, sshd - so as long as the choice
485 * uniquely identifies a terminal it's ok.
1d7b9b20 486 */
487
488
564dd50a 489/* line_fullname(): add the leading '/dev/' if it doesn't exist make
490 * sure dst has enough space, if not just copy src (ugh) */
1d7b9b20 491char *
564dd50a 492line_fullname(char *dst, const char *src, int dstsize)
493{
1d7b9b20 494 memset(dst, '\0', dstsize);
495 if ((strncmp(src, "/dev/", 5) == 0) || (dstsize < (strlen(src) + 5)))
496 strlcpy(dst, src, dstsize);
497 else {
a4d05724 498 strlcpy(dst, "/dev/", dstsize);
1d7b9b20 499 strlcat(dst, src, dstsize);
500 }
501 return dst;
502}
503
564dd50a 504/* line_stripname(): strip the leading '/dev' if it exists, return dst */
1d7b9b20 505char *
564dd50a 506line_stripname(char *dst, const char *src, int dstsize)
507{
1d7b9b20 508 memset(dst, '\0', dstsize);
509 if (strncmp(src, "/dev/", 5) == 0)
510 strlcpy(dst, &src[5], dstsize);
511 else
512 strlcpy(dst, src, dstsize);
513 return dst;
564dd50a 514}
515
564dd50a 516/* line_abbrevname(): Return the abbreviated (usually four-character)
517 * form of the line (Just use the last <dstsize> characters of the
518 * full name.)
519 *
520 * NOTE: use strncpy because we do NOT necessarily want zero
521 * termination */
1d7b9b20 522char *
a05a70ab 523line_abbrevname(char *dst, const char *src, int dstsize)
524{
525 size_t len;
526
1d7b9b20 527 memset(dst, '\0', dstsize);
a05a70ab 528
daaff4d5 529 /* Always skip prefix if present */
530 if (strncmp(src, "/dev/", 5) == 0)
531 src += 5;
532
a05a70ab 533 len = strlen(src);
534
daaff4d5 535 if (len > 0) {
536 if (((int)len - dstsize) > 0)
537 src += ((int)len - dstsize);
538
539 /* note: _don't_ change this to strlcpy */
540 strncpy(dst, src, (size_t)dstsize);
a05a70ab 541 }
542
1d7b9b20 543 return dst;
544}
545
1d7b9b20 546/**
547 ** utmp utility functions
564dd50a 548 **
549 ** These functions manipulate struct utmp, taking system differences
550 ** into account.
1d7b9b20 551 **/
552
553#if defined(USE_UTMP) || defined (USE_WTMP) || defined (USE_LOGIN)
554
1d7b9b20 555/* build the utmp structure */
556void
564dd50a 557set_utmp_time(struct logininfo *li, struct utmp *ut)
558{
a05a70ab 559# ifdef HAVE_TV_IN_UTMP
1d7b9b20 560 ut->ut_tv.tv_sec = li->tv_sec;
561 ut->ut_tv.tv_usec = li->tv_usec;
a05a70ab 562# else
1d7b9b20 563# ifdef HAVE_TIME_IN_UTMP
564 ut->ut_time = li->tv_sec;
565# endif
a05a70ab 566# endif
1d7b9b20 567}
568
569void
570construct_utmp(struct logininfo *li,
564dd50a 571 struct utmp *ut)
572{
dbaa2e87 573 memset(ut, '\0', sizeof(*ut));
5abcdf8e 574
575 /* First fill out fields used for both logins and logouts */
576
a05a70ab 577# ifdef HAVE_ID_IN_UTMP
1d7b9b20 578 line_abbrevname(ut->ut_id, li->line, sizeof(ut->ut_id));
a05a70ab 579# endif
1d7b9b20 580
a05a70ab 581# ifdef HAVE_TYPE_IN_UTMP
5abcdf8e 582 /* This is done here to keep utmp constants out of struct logininfo */
1d7b9b20 583 switch (li->type) {
584 case LTYPE_LOGIN:
585 ut->ut_type = USER_PROCESS;
586 break;
587 case LTYPE_LOGOUT:
588 ut->ut_type = DEAD_PROCESS;
589 break;
590 }
a05a70ab 591# endif
5abcdf8e 592 set_utmp_time(li, ut);
1d7b9b20 593
5abcdf8e 594 line_stripname(ut->ut_line, li->line, sizeof(ut->ut_line));
a05a70ab 595
596# ifdef HAVE_PID_IN_UTMP
1d7b9b20 597 ut->ut_pid = li->pid;
a05a70ab 598# endif
5abcdf8e 599
600 /* If we're logging out, leave all other fields blank */
601 if (li->type == LTYPE_LOGOUT)
602 return;
603
a05a70ab 604 /*
605 * These fields are only used when logging in, and are blank
606 * for logouts.
607 */
5abcdf8e 608
609 /* Use strncpy because we don't necessarily want null termination */
dc2a6d09 610 strncpy(ut->ut_name, li->username, MIN_SIZEOF(ut->ut_name, li->username));
a05a70ab 611# ifdef HAVE_HOST_IN_UTMP
5abcdf8e 612 strncpy(ut->ut_host, li->hostname, MIN_SIZEOF(ut->ut_host, li->hostname));
a05a70ab 613# endif
614# ifdef HAVE_ADDR_IN_UTMP
564dd50a 615 /* this is just a 32-bit IP address */
616 if (li->hostaddr.sa.sa_family == AF_INET)
617 ut->ut_addr = li->hostaddr.sa_in.sin_addr.s_addr;
a05a70ab 618# endif
564dd50a 619}
a05a70ab 620#endif /* USE_UTMP || USE_WTMP || USE_LOGIN */
564dd50a 621
1d7b9b20 622/**
623 ** utmpx utility functions
564dd50a 624 **
625 ** These functions manipulate struct utmpx, accounting for system
626 ** variations.
1d7b9b20 627 **/
628
629#if defined(USE_UTMPX) || defined (USE_WTMPX)
1d7b9b20 630/* build the utmpx structure */
631void
564dd50a 632set_utmpx_time(struct logininfo *li, struct utmpx *utx)
633{
a05a70ab 634# ifdef HAVE_TV_IN_UTMPX
1d7b9b20 635 utx->ut_tv.tv_sec = li->tv_sec;
636 utx->ut_tv.tv_usec = li->tv_usec;
a05a70ab 637# else /* HAVE_TV_IN_UTMPX */
1d7b9b20 638# ifdef HAVE_TIME_IN_UTMPX
639 utx->ut_time = li->tv_sec;
a05a70ab 640# endif /* HAVE_TIME_IN_UTMPX */
641# endif /* HAVE_TV_IN_UTMPX */
1d7b9b20 642}
643
644void
564dd50a 645construct_utmpx(struct logininfo *li, struct utmpx *utx)
646{
dbaa2e87 647 memset(utx, '\0', sizeof(*utx));
daaff4d5 648# ifdef HAVE_ID_IN_UTMPX
1d7b9b20 649 line_abbrevname(utx->ut_id, li->line, sizeof(utx->ut_id));
daaff4d5 650# endif
1d7b9b20 651
652 /* this is done here to keep utmp constants out of loginrec.h */
653 switch (li->type) {
654 case LTYPE_LOGIN:
655 utx->ut_type = USER_PROCESS;
656 break;
657 case LTYPE_LOGOUT:
658 utx->ut_type = DEAD_PROCESS;
659 break;
660 }
1d7b9b20 661 line_stripname(utx->ut_line, li->line, sizeof(utx->ut_line));
1d7b9b20 662 set_utmpx_time(li, utx);
5abcdf8e 663 utx->ut_pid = li->pid;
664
665 if (li->type == LTYPE_LOGOUT)
666 return;
667
a05a70ab 668 /*
669 * These fields are only used when logging in, and are blank
670 * for logouts.
671 */
5abcdf8e 672
673 /* strncpy(): Don't necessarily want null termination */
dc2a6d09 674 strncpy(utx->ut_name, li->username, MIN_SIZEOF(utx->ut_name, li->username));
a05a70ab 675# ifdef HAVE_HOST_IN_UTMPX
5abcdf8e 676 strncpy(utx->ut_host, li->hostname, MIN_SIZEOF(utx->ut_host, li->hostname));
a05a70ab 677# endif
678# ifdef HAVE_ADDR_IN_UTMPX
564dd50a 679 /* FIXME: (ATL) not supported yet */
a05a70ab 680# endif
681# ifdef HAVE_SYSLEN_IN_UTMPX
5abcdf8e 682 /* ut_syslen is the length of the utx_host string */
683 utx->ut_syslen = MIN(strlen(li->hostname), sizeof(utx->ut_host));
a05a70ab 684# endif
564dd50a 685}
a05a70ab 686#endif /* USE_UTMPX || USE_WTMPX */
1d7b9b20 687
688/**
564dd50a 689 ** Low-level utmp functions
1d7b9b20 690 **/
691
692/* FIXME: (ATL) utmp_write_direct needs testing */
1d7b9b20 693#ifdef USE_UTMP
694
1d7b9b20 695/* if we can, use pututline() etc. */
a05a70ab 696# if !defined(DISABLE_PUTUTLINE) && defined(HAVE_SETUTENT) && \
697 defined(HAVE_PUTUTLINE)
1d7b9b20 698# define UTMP_USE_LIBRARY
a05a70ab 699# endif
1d7b9b20 700
701
702/* write a utmp entry with the system's help (pututline() and pals) */
a05a70ab 703# ifdef UTMP_USE_LIBRARY
1d7b9b20 704static int
564dd50a 705utmp_write_library(struct logininfo *li, struct utmp *ut)
706{
1d7b9b20 707 setutent();
708 pututline(ut);
709
a05a70ab 710# ifdef HAVE_ENDUTENT
1d7b9b20 711 endutent();
a05a70ab 712# endif
1d7b9b20 713 return 1;
564dd50a 714}
a05a70ab 715# else /* UTMP_USE_LIBRARY */
1d7b9b20 716
717/* write a utmp entry direct to the file */
564dd50a 718/* This is a slightly modification of code in OpenBSD's login.c */
1d7b9b20 719static int
564dd50a 720utmp_write_direct(struct logininfo *li, struct utmp *ut)
721{
1d7b9b20 722 struct utmp old_ut;
723 register int fd;
724 int tty;
725
5abcdf8e 726 /* FIXME: (ATL) ttyslot() needs local implementation */
dbaa2e87 727
698d107e 728#if defined(HAVE_GETTTYENT)
dbaa2e87 729 register struct ttyent *ty;
730
731 tty=0;
732
733 setttyent();
734 while ((struct ttyent *)0 != (ty = getttyent())) {
735 tty++;
736 if (!strncmp(ty->ty_name, ut->ut_line, sizeof(ut->ut_line)))
737 break;
738 }
739 endttyent();
740
741 if((struct ttyent *)0 == ty) {
742 log("utmp_write_entry: tty not found");
743 return(1);
744 }
745#else /* FIXME */
746
1d7b9b20 747 tty = ttyslot(); /* seems only to work for /dev/ttyp? style names */
748
698d107e 749#endif /* HAVE_GETTTYENT */
dbaa2e87 750
1d7b9b20 751 if (tty > 0 && (fd = open(UTMP_FILE, O_RDWR|O_CREAT, 0644)) >= 0) {
752 (void)lseek(fd, (off_t)(tty * sizeof(struct utmp)), SEEK_SET);
753 /*
754 * Prevent luser from zero'ing out ut_host.
755 * If the new ut_line is empty but the old one is not
dc2a6d09 756 * and ut_line and ut_name match, preserve the old ut_line.
1d7b9b20 757 */
9f32ceb4 758 if (atomicio(read, fd, &old_ut, sizeof(old_ut)) == sizeof(old_ut) &&
759 (ut->ut_host[0] == '\0') && (old_ut.ut_host[0] != '\0') &&
760 (strncmp(old_ut.ut_line, ut->ut_line, sizeof(ut->ut_line)) == 0) &&
dc2a6d09 761 (strncmp(old_ut.ut_name, ut->ut_name, sizeof(ut->ut_name)) == 0)) {
1d7b9b20 762 (void)memcpy(ut->ut_host, old_ut.ut_host, sizeof(ut->ut_host));
9f32ceb4 763 }
764
1d7b9b20 765 (void)lseek(fd, (off_t)(tty * sizeof(struct utmp)), SEEK_SET);
32eec038 766 if (atomicio(write, fd, ut, sizeof(*ut)) != sizeof(*ut))
1d7b9b20 767 log("utmp_write_direct: error writing %s: %s",
5abcdf8e 768 UTMP_FILE, strerror(errno));
1d7b9b20 769
770 (void)close(fd);
771 return 1;
9f32ceb4 772 } else {
1d7b9b20 773 return 0;
9f32ceb4 774 }
564dd50a 775}
a05a70ab 776# endif /* UTMP_USE_LIBRARY */
1d7b9b20 777
778static int
564dd50a 779utmp_perform_login(struct logininfo *li)
780{
1d7b9b20 781 struct utmp ut;
782
783 construct_utmp(li, &ut);
a05a70ab 784# ifdef UTMP_USE_LIBRARY
1d7b9b20 785 if (!utmp_write_library(li, &ut)) {
5abcdf8e 786 log("utmp_perform_login: utmp_write_library() failed");
1d7b9b20 787 return 0;
788 }
a05a70ab 789# else
1d7b9b20 790 if (!utmp_write_direct(li, &ut)) {
791 log("utmp_perform_login: utmp_write_direct() failed");
792 return 0;
793 }
a05a70ab 794# endif
1d7b9b20 795 return 1;
564dd50a 796}
1d7b9b20 797
798
799static int
564dd50a 800utmp_perform_logout(struct logininfo *li)
801{
1d7b9b20 802 struct utmp ut;
803
5abcdf8e 804 construct_utmp(li, &ut);
a05a70ab 805# ifdef UTMP_USE_LIBRARY
5abcdf8e 806 if (!utmp_write_library(li, &ut)) {
807 log("utmp_perform_logout: utmp_write_library() failed");
808 return 0;
809 }
a05a70ab 810# else
5abcdf8e 811 if (!utmp_write_direct(li, &ut)) {
812 log("utmp_perform_logout: utmp_write_direct() failed");
813 return 0;
814 }
a05a70ab 815# endif
1d7b9b20 816 return 1;
564dd50a 817}
1d7b9b20 818
819
820int
564dd50a 821utmp_write_entry(struct logininfo *li)
822{
1d7b9b20 823 switch(li->type) {
824 case LTYPE_LOGIN:
825 return utmp_perform_login(li);
826
827 case LTYPE_LOGOUT:
828 return utmp_perform_logout(li);
829
830 default:
831 log("utmp_write_entry: invalid type field");
832 return 0;
833 }
564dd50a 834}
a05a70ab 835#endif /* USE_UTMP */
1d7b9b20 836
837
838/**
564dd50a 839 ** Low-level utmpx functions
1d7b9b20 840 **/
841
842/* not much point if we don't want utmpx entries */
843#ifdef USE_UTMPX
844
1d7b9b20 845/* if we have the wherewithall, use pututxline etc. */
a05a70ab 846# if !defined(DISABLE_PUTUTXLINE) && defined(HAVE_SETUTXENT) && \
847 defined(HAVE_PUTUTXLINE)
1d7b9b20 848# define UTMPX_USE_LIBRARY
a05a70ab 849# endif
1d7b9b20 850
851
852/* write a utmpx entry with the system's help (pututxline() and pals) */
a05a70ab 853# ifdef UTMPX_USE_LIBRARY
1d7b9b20 854static int
564dd50a 855utmpx_write_library(struct logininfo *li, struct utmpx *utx)
856{
1d7b9b20 857 setutxent();
858 pututxline(utx);
859
a05a70ab 860# ifdef HAVE_ENDUTXENT
1d7b9b20 861 endutxent();
a05a70ab 862# endif
1d7b9b20 863 return 1;
564dd50a 864}
1d7b9b20 865
a05a70ab 866# else /* UTMPX_USE_LIBRARY */
1d7b9b20 867
868/* write a utmp entry direct to the file */
869static int
564dd50a 870utmpx_write_direct(struct logininfo *li, struct utmpx *utx)
871{
1d7b9b20 872 log("utmpx_write_direct: not implemented!");
873 return 0;
564dd50a 874}
a05a70ab 875# endif /* UTMPX_USE_LIBRARY */
1d7b9b20 876
877static int
564dd50a 878utmpx_perform_login(struct logininfo *li)
879{
1d7b9b20 880 struct utmpx utx;
881
882 construct_utmpx(li, &utx);
a05a70ab 883# ifdef UTMPX_USE_LIBRARY
1d7b9b20 884 if (!utmpx_write_library(li, &utx)) {
885 log("utmpx_perform_login: utmp_write_library() failed");
886 return 0;
887 }
a05a70ab 888# else
1d7b9b20 889 if (!utmpx_write_direct(li, &ut)) {
890 log("utmpx_perform_login: utmp_write_direct() failed");
891 return 0;
892 }
a05a70ab 893# endif
1d7b9b20 894 return 1;
564dd50a 895}
1d7b9b20 896
897
898static int
564dd50a 899utmpx_perform_logout(struct logininfo *li)
900{
1d7b9b20 901 struct utmpx utx;
902
903 memset(&utx, '\0', sizeof(utx));
904 set_utmpx_time(li, &utx);
905 line_stripname(utx.ut_line, li->line, sizeof(utx.ut_line));
a05a70ab 906# ifdef HAVE_ID_IN_UTMPX
1d7b9b20 907 line_abbrevname(utx.ut_id, li->line, sizeof(utx.ut_id));
a05a70ab 908# endif
909# ifdef HAVE_TYPE_IN_UTMPX
1d7b9b20 910 utx.ut_type = DEAD_PROCESS;
a05a70ab 911# endif
1d7b9b20 912
a05a70ab 913# ifdef UTMPX_USE_LIBRARY
1d7b9b20 914 utmpx_write_library(li, &utx);
a05a70ab 915# else
1d7b9b20 916 utmpx_write_direct(li, &utx);
a05a70ab 917# endif
1d7b9b20 918 return 1;
564dd50a 919}
1d7b9b20 920
1d7b9b20 921int
564dd50a 922utmpx_write_entry(struct logininfo *li)
923{
1d7b9b20 924 switch(li->type) {
925 case LTYPE_LOGIN:
926 return utmpx_perform_login(li);
927 case LTYPE_LOGOUT:
928 return utmpx_perform_logout(li);
929 default:
930 log("utmpx_write_entry: invalid type field");
931 return 0;
932 }
564dd50a 933}
a05a70ab 934#endif /* USE_UTMPX */
1d7b9b20 935
936
937/**
564dd50a 938 ** Low-level wtmp functions
1d7b9b20 939 **/
940
941#ifdef USE_WTMP
942
1d7b9b20 943/* write a wtmp entry direct to the end of the file */
564dd50a 944/* This is a slight modification of code in OpenBSD's logwtmp.c */
1d7b9b20 945static int
564dd50a 946wtmp_write(struct logininfo *li, struct utmp *ut)
947{
1d7b9b20 948 struct stat buf;
949 int fd, ret = 1;
950
951 if ((fd = open(WTMP_FILE, O_WRONLY|O_APPEND, 0)) < 0) {
952 log("wtmp_write: problem writing %s: %s",
953 WTMP_FILE, strerror(errno));
954 return 0;
955 }
564dd50a 956 if (fstat(fd, &buf) == 0)
9f32ceb4 957 if (atomicio(write, fd, ut, sizeof(*ut)) != sizeof(*ut)) {
1d7b9b20 958 ftruncate(fd, buf.st_size);
959 log("wtmp_write: problem writing %s: %s",
960 WTMP_FILE, strerror(errno));
961 ret = 0;
962 }
963 (void)close(fd);
1d7b9b20 964 return ret;
564dd50a 965}
1d7b9b20 966
1d7b9b20 967static int
a05a70ab 968wtmp_perform_login(struct logininfo *li)
969{
1d7b9b20 970 struct utmp ut;
971
972 construct_utmp(li, &ut);
973 return wtmp_write(li, &ut);
564dd50a 974}
1d7b9b20 975
976
977static int
564dd50a 978wtmp_perform_logout(struct logininfo *li)
979{
1d7b9b20 980 struct utmp ut;
981
982 construct_utmp(li, &ut);
1d7b9b20 983 return wtmp_write(li, &ut);
564dd50a 984}
1d7b9b20 985
986
987int
564dd50a 988wtmp_write_entry(struct logininfo *li)
989{
1d7b9b20 990 switch(li->type) {
991 case LTYPE_LOGIN:
992 return wtmp_perform_login(li);
993 case LTYPE_LOGOUT:
994 return wtmp_perform_logout(li);
995 default:
996 log("wtmp_write_entry: invalid type field");
997 return 0;
998 }
564dd50a 999}
1d7b9b20 1000
1001
5abcdf8e 1002/* Notes on fetching login data from wtmp/wtmpx
1003 *
1004 * Logouts are usually recorded with (amongst other things) a blank
1005 * username on a given tty line. However, some systems (HP-UX is one)
1006 * leave all fields set, but change the ut_type field to DEAD_PROCESS.
1007 *
1008 * Since we're only looking for logins here, we know that the username
1009 * must be set correctly. On systems that leave it in, we check for
1010 * ut_type==USER_PROCESS (indicating a login.)
1011 *
1012 * Portability: Some systems may set something other than USER_PROCESS
1013 * to indicate a login process. I don't know of any as I write. Also,
1014 * it's possible that some systems may both leave the username in
1015 * place and not have ut_type.
1016 */
1017
5abcdf8e 1018/* return true if this wtmp entry indicates a login */
1019static int
1020wtmp_islogin(struct logininfo *li, struct utmp *ut)
1021{
dc2a6d09 1022 if (strncmp(li->username, ut->ut_name,
1023 MIN_SIZEOF(li->username, ut->ut_name)) == 0) {
a05a70ab 1024# ifdef HAVE_TYPE_IN_UTMP
5abcdf8e 1025 if (ut->ut_type & USER_PROCESS)
1026 return 1;
a05a70ab 1027# else
5abcdf8e 1028 return 1;
a05a70ab 1029# endif
5abcdf8e 1030 }
1031 return 0;
1032}
1033
1d7b9b20 1034int
564dd50a 1035wtmp_get_entry(struct logininfo *li)
1036{
1d7b9b20 1037 struct stat st;
1038 struct utmp ut;
5abcdf8e 1039 int fd, found=0;
1040
1041 /* Clear the time entries in our logininfo */
1042 li->tv_sec = li->tv_usec = 0;
1d7b9b20 1043
1044 if ((fd = open(WTMP_FILE, O_RDONLY)) < 0) {
1045 log("wtmp_get_entry: problem opening %s: %s",
1046 WTMP_FILE, strerror(errno));
1047 return 0;
1048 }
564dd50a 1049 if (fstat(fd, &st) != 0) {
1d7b9b20 1050 log("wtmp_get_entry: couldn't stat %s: %s",
1051 WTMP_FILE, strerror(errno));
1052 close(fd);
1053 return 0;
1054 }
1d7b9b20 1055
5abcdf8e 1056 /* Seek to the start of the last struct utmp */
dbaa2e87 1057 if (lseek(fd, (off_t)(0 - sizeof(struct utmp)), SEEK_END) == -1) {
5abcdf8e 1058 /* Looks like we've got a fresh wtmp file */
1059 close(fd);
1060 return 0;
1061 }
1062
1063 while (!found) {
9f32ceb4 1064 if (atomicio(read, fd, &ut, sizeof(ut)) != sizeof(ut)) {
1d7b9b20 1065 log("wtmp_get_entry: read of %s failed: %s",
1066 WTMP_FILE, strerror(errno));
1067 close (fd);
1068 return 0;
1069 }
5abcdf8e 1070 if ( wtmp_islogin(li, &ut) ) {
1071 found = 1;
1072 /* We've already checked for a time in struct
1073 * utmp, in login_getlast(). */
a05a70ab 1074# ifdef HAVE_TIME_IN_UTMP
1d7b9b20 1075 li->tv_sec = ut.ut_time;
a05a70ab 1076# else
1d7b9b20 1077# if HAVE_TV_IN_UTMP
1078 li->tv_sec = ut.ut_tv.tv_sec;
1079# endif
a05a70ab 1080# endif
5abcdf8e 1081 line_fullname(li->line, ut.ut_line,
1082 MIN_SIZEOF(li->line, ut.ut_line));
a05a70ab 1083# ifdef HAVE_HOST_IN_UTMP
5abcdf8e 1084 strlcpy(li->hostname, ut.ut_host,
1085 MIN_SIZEOF(li->hostname, ut.ut_host));
a05a70ab 1086# endif
5abcdf8e 1087 continue;
1d7b9b20 1088 }
5abcdf8e 1089 /* Seek back 2 x struct utmp */
1d7b9b20 1090 if (lseek(fd, (off_t)(0-2*sizeof(struct utmp)), SEEK_CUR) == -1) {
5abcdf8e 1091 /* We've found the start of the file, so quit */
1d7b9b20 1092 close (fd);
1093 return 0;
1094 }
5abcdf8e 1095 }
1096
1097 /* We found an entry. Tidy up and return */
1098 close(fd);
1d7b9b20 1099 return 1;
564dd50a 1100}
a05a70ab 1101# endif /* USE_WTMP */
1d7b9b20 1102
1103
1104/**
564dd50a 1105 ** Low-level wtmpx functions
1d7b9b20 1106 **/
1107
1108#ifdef USE_WTMPX
1d7b9b20 1109/* write a wtmpx entry direct to the end of the file */
564dd50a 1110/* This is a slight modification of code in OpenBSD's logwtmp.c */
1d7b9b20 1111static int
564dd50a 1112wtmpx_write(struct logininfo *li, struct utmpx *utx)
1113{
1d7b9b20 1114 struct stat buf;
1115 int fd, ret = 1;
1116
1117 if ((fd = open(WTMPX_FILE, O_WRONLY|O_APPEND, 0)) < 0) {
1118 log("wtmpx_write: problem opening %s: %s",
1119 WTMPX_FILE, strerror(errno));
1120 return 0;
1121 }
1122
1123 if (fstat(fd, &buf) == 0)
9f32ceb4 1124 if (atomicio(write, fd, utx, sizeof(*utx)) != sizeof(*utx)) {
1d7b9b20 1125 ftruncate(fd, buf.st_size);
1126 log("wtmpx_write: problem writing %s: %s",
1127 WTMPX_FILE, strerror(errno));
1128 ret = 0;
1129 }
1130 (void)close(fd);
1131
1132 return ret;
564dd50a 1133}
1d7b9b20 1134
1135
1136static int
564dd50a 1137wtmpx_perform_login(struct logininfo *li)
1138{
1d7b9b20 1139 struct utmpx utx;
1140
1141 construct_utmpx(li, &utx);
1142 return wtmpx_write(li, &utx);
564dd50a 1143}
1d7b9b20 1144
1145
1146static int
564dd50a 1147wtmpx_perform_logout(struct logininfo *li)
1148{
1d7b9b20 1149 struct utmpx utx;
1150
1151 construct_utmpx(li, &utx);
1d7b9b20 1152 return wtmpx_write(li, &utx);
564dd50a 1153}
1d7b9b20 1154
1155
1156int
564dd50a 1157wtmpx_write_entry(struct logininfo *li)
1158{
1d7b9b20 1159 switch(li->type) {
1160 case LTYPE_LOGIN:
1161 return wtmpx_perform_login(li);
1162 case LTYPE_LOGOUT:
1163 return wtmpx_perform_logout(li);
1164 default:
1165 log("wtmpx_write_entry: invalid type field");
1166 return 0;
1167 }
564dd50a 1168}
1d7b9b20 1169
5abcdf8e 1170/* Please see the notes above wtmp_islogin() for information about the
1171 next two functions */
1172
1173/* Return true if this wtmpx entry indicates a login */
1174static int
1175wtmpx_islogin(struct logininfo *li, struct utmpx *utx)
1176{
dc2a6d09 1177 if ( strncmp(li->username, utx->ut_name,
1178 MIN_SIZEOF(li->username, utx->ut_name)) == 0 ) {
a05a70ab 1179# ifdef HAVE_TYPE_IN_UTMPX
5abcdf8e 1180 if (utx->ut_type == USER_PROCESS)
1181 return 1;
a05a70ab 1182# else
5abcdf8e 1183 return 1;
a05a70ab 1184# endif
5abcdf8e 1185 }
1186 return 0;
1187}
1188
1d7b9b20 1189
1190int
564dd50a 1191wtmpx_get_entry(struct logininfo *li)
1192{
1d7b9b20 1193 struct stat st;
1194 struct utmpx utx;
5abcdf8e 1195 int fd, found=0;
1196
1197 /* Clear the time entries */
1198 li->tv_sec = li->tv_usec = 0;
1d7b9b20 1199
1200 if ((fd = open(WTMPX_FILE, O_RDONLY)) < 0) {
1201 log("wtmpx_get_entry: problem opening %s: %s",
1202 WTMPX_FILE, strerror(errno));
1203 return 0;
1204 }
564dd50a 1205 if (fstat(fd, &st) != 0) {
1d7b9b20 1206 log("wtmpx_get_entry: couldn't stat %s: %s",
1207 WTMP_FILE, strerror(errno));
1208 close(fd);
1209 return 0;
1210 }
5abcdf8e 1211
1212 /* Seek to the start of the last struct utmpx */
1213 if (lseek(fd, (off_t)(0-sizeof(struct utmpx)), SEEK_END) == -1 ) {
1214 /* probably a newly rotated wtmpx file */
1215 close(fd);
1216 return 0;
1217 }
1d7b9b20 1218
5abcdf8e 1219 while (!found) {
9f32ceb4 1220 if (atomicio(read, fd, &utx, sizeof(utx)) != sizeof(utx)) {
1d7b9b20 1221 log("wtmpx_get_entry: read of %s failed: %s",
1222 WTMPX_FILE, strerror(errno));
1223 close (fd);
1224 return 0;
1225 }
1d7b9b20 1226 /* Logouts are recorded as a blank username on a particular line.
1227 * So, we just need to find the username in struct utmpx */
5abcdf8e 1228 if ( wtmpx_islogin(li, &utx) ) {
a05a70ab 1229# ifdef HAVE_TV_IN_UTMPX
1d7b9b20 1230 li->tv_sec = utx.ut_tv.tv_sec;
a05a70ab 1231# else
1d7b9b20 1232# ifdef HAVE_TIME_IN_UTMPX
1233 li->tv_sec = utx.ut_time;
1234# endif
a05a70ab 1235# endif
a4d05724 1236 line_fullname(li->line, utx.ut_line, sizeof(li->line));
a05a70ab 1237# ifdef HAVE_HOST_IN_UTMPX
5abcdf8e 1238 strlcpy(li->hostname, utx.ut_host,
1239 MIN_SIZEOF(li->hostname, utx.ut_host));
a05a70ab 1240# endif
5abcdf8e 1241 continue;
1d7b9b20 1242 }
1243 if (lseek(fd, (off_t)(0-2*sizeof(struct utmpx)), SEEK_CUR) == -1) {
1244 close (fd);
1245 return 0;
1246 }
5abcdf8e 1247 }
1248
1249 close(fd);
1d7b9b20 1250 return 1;
564dd50a 1251}
f988dce5 1252#endif /* USE_WTMPX */
1d7b9b20 1253
1d7b9b20 1254/**
564dd50a 1255 ** Low-level libutil login() functions
1d7b9b20 1256 **/
1257
1258#ifdef USE_LOGIN
1d7b9b20 1259static int
564dd50a 1260syslogin_perform_login(struct logininfo *li)
1261{
1d7b9b20 1262 struct utmp *ut;
1263
dbaa2e87 1264 if (! (ut = (struct utmp *)malloc(sizeof(*ut)))) {
1d7b9b20 1265 log("syslogin_perform_login: couldn't malloc()");
1266 return 0;
1267 }
1268 construct_utmp(li, ut);
1269 login(ut);
1270
1271 return 1;
564dd50a 1272}
1d7b9b20 1273
564dd50a 1274static int
1275syslogin_perform_logout(struct logininfo *li)
1276{
a05a70ab 1277# ifdef HAVE_LOGOUT
1d7b9b20 1278 char line[8];
1279
1280 (void)line_stripname(line, li->line, sizeof(line));
1281
1282 if (!logout(line)) {
1283 log("syslogin_perform_logout: logout() returned an error");
a05a70ab 1284# ifdef HAVE_LOGWTMP
1d7b9b20 1285 } else {
1286 logwtmp(line, "", "");
a05a70ab 1287# endif
5637650d 1288 }
5abcdf8e 1289 /* FIXME: (ATL - if the need arises) What to do if we have
1290 * login, but no logout? what if logout but no logwtmp? All
1291 * routines are in libutil so they should all be there,
1292 * but... */
a05a70ab 1293# endif
1d7b9b20 1294 return 1;
564dd50a 1295}
1d7b9b20 1296
1d7b9b20 1297int
564dd50a 1298syslogin_write_entry(struct logininfo *li)
1299{
1d7b9b20 1300 switch (li->type) {
1301 case LTYPE_LOGIN:
1302 return syslogin_perform_login(li);
1303 case LTYPE_LOGOUT:
1304 return syslogin_perform_logout(li);
1305 default:
1306 log("syslogin_write_entry: Invalid type field");
1307 return 0;
1308 }
564dd50a 1309}
f988dce5 1310#endif /* USE_LOGIN */
1d7b9b20 1311
1312/* end of file log-syslogin.c */
1313
1d7b9b20 1314/**
564dd50a 1315 ** Low-level lastlog functions
1d7b9b20 1316 **/
1317
1318#ifdef USE_LASTLOG
a05a70ab 1319#define LL_FILE 1
1320#define LL_DIR 2
1321#define LL_OTHER 3
1d7b9b20 1322
1d7b9b20 1323static void
564dd50a 1324lastlog_construct(struct logininfo *li, struct lastlog *last)
1325{
1d7b9b20 1326 /* clear the structure */
dbaa2e87 1327 memset(last, '\0', sizeof(*last));
1d7b9b20 1328
a05a70ab 1329 (void)line_stripname(last->ll_line, li->line, sizeof(last->ll_line));
5abcdf8e 1330 strlcpy(last->ll_host, li->hostname,
1331 MIN_SIZEOF(last->ll_host, li->hostname));
1d7b9b20 1332 last->ll_time = li->tv_sec;
564dd50a 1333}
1d7b9b20 1334
1d7b9b20 1335static int
564dd50a 1336lastlog_filetype(char *filename)
1337{
1d7b9b20 1338 struct stat st;
1339
a05a70ab 1340 if (stat(LASTLOG_FILE, &st) != 0) {
1341 log("lastlog_perform_login: Couldn't stat %s: %s", LASTLOG_FILE,
1342 strerror(errno));
1d7b9b20 1343 return 0;
1344 }
1d7b9b20 1345 if (S_ISDIR(st.st_mode))
1346 return LL_DIR;
1347 else if (S_ISREG(st.st_mode))
1348 return LL_FILE;
1349 else
1350 return LL_OTHER;
564dd50a 1351}
1d7b9b20 1352
1353
1354/* open the file (using filemode) and seek to the login entry */
1355static int
564dd50a 1356lastlog_openseek(struct logininfo *li, int *fd, int filemode)
1357{
1d7b9b20 1358 off_t offset;
1359 int type;
1360 char lastlog_file[1024];
1361
1362 type = lastlog_filetype(LASTLOG_FILE);
1363 switch (type) {
d8caae24 1364 case LL_FILE:
1365 strlcpy(lastlog_file, LASTLOG_FILE, sizeof(lastlog_file));
1366 break;
1367 case LL_DIR:
1368 snprintf(lastlog_file, sizeof(lastlog_file), "%s/%s",
1369 LASTLOG_FILE, li->username);
1370 break;
1371 default:
1372 log("lastlog_openseek: %.100s is not a file or directory!",
1373 LASTLOG_FILE);
1374 return 0;
a05a70ab 1375 }
1d7b9b20 1376
1377 *fd = open(lastlog_file, filemode);
1378 if ( *fd < 0) {
9f32ceb4 1379 debug("lastlog_openseek: Couldn't open %s: %s",
1d7b9b20 1380 lastlog_file, strerror(errno));
1381 return 0;
1382 }
a05a70ab 1383
d93a7e5a 1384 if (type == LL_FILE) {
1385 /* find this uid's offset in the lastlog file */
1386 offset = (off_t) ( (long)li->uid * sizeof(struct lastlog));
1d7b9b20 1387
d93a7e5a 1388 if ( lseek(*fd, offset, SEEK_SET) != offset ) {
1389 log("lastlog_openseek: %s->lseek(): %s",
1390 lastlog_file, strerror(errno));
1391 return 0;
1392 }
1d7b9b20 1393 }
d93a7e5a 1394
1d7b9b20 1395 return 1;
564dd50a 1396}
1d7b9b20 1397
1398static int
564dd50a 1399lastlog_perform_login(struct logininfo *li)
1400{
1d7b9b20 1401 struct lastlog last;
1402 int fd;
1403
1404 /* create our struct lastlog */
1405 lastlog_construct(li, &last);
1406
1a022229 1407 if (!lastlog_openseek(li, &fd, O_RDWR|O_CREAT))
1408 return(0);
1409
1d7b9b20 1410 /* write the entry */
1a022229 1411 if (atomicio(write, fd, &last, sizeof(last)) != sizeof(last)) {
1412 close(fd);
1413 log("lastlog_write_filemode: Error writing to %s: %s",
1414 LASTLOG_FILE, strerror(errno));
1d7b9b20 1415 return 0;
a05a70ab 1416 }
1a022229 1417
1418 close(fd);
1419 return 1;
564dd50a 1420}
1d7b9b20 1421
1d7b9b20 1422int
564dd50a 1423lastlog_write_entry(struct logininfo *li)
1424{
1d7b9b20 1425 switch(li->type) {
1426 case LTYPE_LOGIN:
1427 return lastlog_perform_login(li);
1428 default:
1429 log("lastlog_write_entry: Invalid type field");
1430 return 0;
1431 }
564dd50a 1432}
1d7b9b20 1433
1d7b9b20 1434static void
564dd50a 1435lastlog_populate_entry(struct logininfo *li, struct lastlog *last)
1436{
1d7b9b20 1437 line_fullname(li->line, last->ll_line, sizeof(li->line));
a05a70ab 1438 strlcpy(li->hostname, last->ll_host,
5abcdf8e 1439 MIN_SIZEOF(li->hostname, last->ll_host));
1d7b9b20 1440 li->tv_sec = last->ll_time;
564dd50a 1441}
1d7b9b20 1442
1d7b9b20 1443int
564dd50a 1444lastlog_get_entry(struct logininfo *li)
1445{
1d7b9b20 1446 struct lastlog last;
1447 int fd;
1448
1449 if (lastlog_openseek(li, &fd, O_RDONLY)) {
9f32ceb4 1450 if (atomicio(read, fd, &last, sizeof(last)) != sizeof(last)) {
1451 log("lastlog_get_entry: Error reading from %s: %s",
1d7b9b20 1452 LASTLOG_FILE, strerror(errno));
1453 return 0;
1454 } else {
1455 lastlog_populate_entry(li, &last);
1456 return 1;
1457 }
a05a70ab 1458 } else {
1d7b9b20 1459 return 0;
a05a70ab 1460 }
564dd50a 1461}
f988dce5 1462#endif /* USE_LASTLOG */
This page took 0.294382 seconds and 5 git commands to generate.