]> andersk Git - openssh.git/blame - loginrec.c
- (djm) [loginrec.c] Typo and bad args in error messages; Spotted by
[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.
1d7b9b20 15 *
16 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
17 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
18 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
19 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
20 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
21 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
22 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
23 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
25 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26 */
27
2b87da3b 28/**
1d7b9b20 29 ** loginrec.c: platform-independent login recording and lastlog retrieval
30 **/
31
564dd50a 32/*
33 The new login code explained
34 ============================
35
36 This code attempts to provide a common interface to login recording
37 (utmp and friends) and last login time retrieval.
38
39 Its primary means of achieving this is to use 'struct logininfo', a
40 union of all the useful fields in the various different types of
41 system login record structures one finds on UNIX variants.
42
43 We depend on autoconf to define which recording methods are to be
44 used, and which fields are contained in the relevant data structures
45 on the local system. Many C preprocessor symbols affect which code
46 gets compiled here.
47
48 The code is designed to make it easy to modify a particular
49 recording method, without affecting other methods nor requiring so
50 many nested conditional compilation blocks as were commonplace in
51 the old code.
52
53 For login recording, we try to use the local system's libraries as
54 these are clearly most likely to work correctly. For utmp systems
55 this usually means login() and logout() or setutent() etc., probably
56 in libutil, along with logwtmp() etc. On these systems, we fall back
57 to writing the files directly if we have to, though this method
58 requires very thorough testing so we do not corrupt local auditing
59 information. These files and their access methods are very system
60 specific indeed.
2b87da3b 61
564dd50a 62 For utmpx systems, the corresponding library functions are
63 setutxent() etc. To the author's knowledge, all utmpx systems have
64 these library functions and so no direct write is attempted. If such
65 a system exists and needs support, direct analogues of the [uw]tmp
66 code should suffice.
67
68 Retrieving the time of last login ('lastlog') is in some ways even
69 more problemmatic than login recording. Some systems provide a
70 simple table of all users which we seek based on uid and retrieve a
71 relatively standard structure. Others record the same information in
72 a directory with a separate file, and others don't record the
73 information separately at all. For systems in the latter category,
74 we look backwards in the wtmp or wtmpx file for the last login entry
75 for our user. Naturally this is slower and on busy systems could
76 incur a significant performance penalty.
77
78 Calling the new code
79 --------------------
2b87da3b 80
564dd50a 81 In OpenSSH all login recording and retrieval is performed in
82 login.c. Here you'll find working examples. Also, in the logintest.c
83 program there are more examples.
84
85 Internal handler calling method
86 -------------------------------
2b87da3b 87
564dd50a 88 When a call is made to login_login() or login_logout(), both
89 routines set a struct logininfo flag defining which action (log in,
90 or log out) is to be taken. They both then call login_write(), which
91 calls whichever of the many structure-specific handlers autoconf
92 selects for the local system.
93
94 The handlers themselves handle system data structure specifics. Both
95 struct utmp and struct utmpx have utility functions (see
96 construct_utmp*()) to try to make it simpler to add extra systems
97 that introduce new features to either structure.
98
99 While it may seem terribly wasteful to replicate so much similar
100 code for each method, experience has shown that maintaining code to
101 write both struct utmp and utmpx in one function, whilst maintaining
102 support for all systems whether they have library support or not, is
103 a difficult and time-consuming task.
104
105 Lastlog support proceeds similarly. Functions login_get_lastlog()
106 (and its OpenSSH-tuned friend login_get_lastlog_time()) call
107 getlast_entry(), which tries one of three methods to find the last
108 login time. It uses local system lastlog support if it can,
109 otherwise it tries wtmp or wtmpx before giving up and returning 0,
110 meaning "tilt".
111
112 Maintenance
113 -----------
114
115 In many cases it's possible to tweak autoconf to select the correct
116 methods for a particular platform, either by improving the detection
117 code (best), or by presetting DISABLE_<method> or CONF_<method>_FILE
118 symbols for the platform.
119
120 Use logintest to check which symbols are defined before modifying
40d0f6b9 121 configure.ac and loginrec.c. (You have to build logintest yourself
564dd50a 122 with 'make logintest' as it's not built by default.)
123
124 Otherwise, patches to the specific method(s) are very helpful!
2b87da3b 125
564dd50a 126*/
127
1d7b9b20 128/**
129 ** TODO:
698d107e 130 ** homegrown ttyslot()
564dd50a 131 ** test, test, test
1d7b9b20 132 **
133 ** Platform status:
134 ** ----------------
135 **
136 ** Known good:
698d107e 137 ** Linux (Redhat 6.2, Debian)
138 ** Solaris
1d7b9b20 139 ** HP-UX 10.20 (gcc only)
5abcdf8e 140 ** IRIX
44d5f7f7 141 ** NeXT - M68k/HPPA/Sparc (4.2/3.3)
1d7b9b20 142 **
143 ** Testing required: Please send reports!
1d7b9b20 144 ** NetBSD
145 ** HP-UX 11
a3cef3ca 146 ** AIX
1d7b9b20 147 **
148 ** Platforms with known problems:
698d107e 149 ** Some variants of Slackware Linux
1d7b9b20 150 **
151 **/
152
153#include "includes.h"
154
1d7b9b20 155#include "ssh.h"
156#include "xmalloc.h"
157#include "loginrec.h"
42f11eb2 158#include "log.h"
159#include "atomicio.h"
1d7b9b20 160
161RCSID("$Id$");
162
44d5f7f7 163#ifdef HAVE_UTIL_H
164# include <util.h>
165#endif
166
8f523d67 167#ifdef HAVE_LIBUTIL_H
168# include <libutil.h>
169#endif
170
1d7b9b20 171/**
172 ** prototypes for helper functions in this file
173 **/
174
175#if HAVE_UTMP_H
1d7b9b20 176void set_utmp_time(struct logininfo *li, struct utmp *ut);
177void construct_utmp(struct logininfo *li, struct utmp *ut);
178#endif
179
180#ifdef HAVE_UTMPX_H
1d7b9b20 181void set_utmpx_time(struct logininfo *li, struct utmpx *ut);
182void construct_utmpx(struct logininfo *li, struct utmpx *ut);
183#endif
184
185int utmp_write_entry(struct logininfo *li);
186int utmpx_write_entry(struct logininfo *li);
187int wtmp_write_entry(struct logininfo *li);
188int wtmpx_write_entry(struct logininfo *li);
189int lastlog_write_entry(struct logininfo *li);
190int syslogin_write_entry(struct logininfo *li);
191
192int getlast_entry(struct logininfo *li);
193int lastlog_get_entry(struct logininfo *li);
194int wtmp_get_entry(struct logininfo *li);
195int wtmpx_get_entry(struct logininfo *li);
196
5abcdf8e 197/* pick the shortest string */
198#define MIN_SIZEOF(s1,s2) ( sizeof(s1) < sizeof(s2) ? sizeof(s1) : sizeof(s2) )
199
1d7b9b20 200/**
201 ** platform-independent login functions
202 **/
203
5abcdf8e 204/* login_login(struct logininfo *) -Record a login
2b87da3b 205 *
5abcdf8e 206 * Call with a pointer to a struct logininfo initialised with
207 * login_init_entry() or login_alloc_entry()
208 *
209 * Returns:
210 * >0 if successful
211 * 0 on failure (will use OpenSSH's logging facilities for diagnostics)
212 */
564dd50a 213int
214login_login (struct logininfo *li)
215{
216 li->type = LTYPE_LOGIN;
217 return login_write(li);
218}
1d7b9b20 219
220
5abcdf8e 221/* login_logout(struct logininfo *) - Record a logout
222 *
223 * Call as with login_login()
224 *
225 * Returns:
226 * >0 if successful
227 * 0 on failure (will use OpenSSH's logging facilities for diagnostics)
228 */
564dd50a 229int
230login_logout(struct logininfo *li)
231{
232 li->type = LTYPE_LOGOUT;
233 return login_write(li);
1d7b9b20 234}
235
5abcdf8e 236/* login_get_lastlog_time(int) - Retrieve the last login time
237 *
238 * Retrieve the last login time for the given uid. Will try to use the
239 * system lastlog facilities if they are available, but will fall back
240 * to looking in wtmp/wtmpx if necessary
241 *
242 * Returns:
243 * 0 on failure, or if user has never logged in
244 * Time in seconds from the epoch if successful
245 *
246 * Useful preprocessor symbols:
247 * DISABLE_LASTLOG: If set, *never* even try to retrieve lastlog
248 * info
249 * USE_LASTLOG: If set, indicates the presence of system lastlog
250 * facilities. If this and DISABLE_LASTLOG are not set,
251 * try to retrieve lastlog information from wtmp/wtmpx.
252 */
564dd50a 253unsigned int
254login_get_lastlog_time(const int uid)
255{
256 struct logininfo li;
1d7b9b20 257
5abcdf8e 258 if (login_get_lastlog(&li, uid))
259 return li.tv_sec;
260 else
261 return 0;
564dd50a 262}
1d7b9b20 263
5abcdf8e 264/* login_get_lastlog(struct logininfo *, int) - Retrieve a lastlog entry
265 *
266 * Retrieve a logininfo structure populated (only partially) with
267 * information from the system lastlog data, or from wtmp/wtmpx if no
268 * system lastlog information exists.
269 *
270 * Note this routine must be given a pre-allocated logininfo.
271 *
272 * Returns:
273 * >0: A pointer to your struct logininfo if successful
274 * 0 on failure (will use OpenSSH's logging facilities for diagnostics)
275 *
276 */
564dd50a 277struct logininfo *
278login_get_lastlog(struct logininfo *li, const int uid)
279{
5abcdf8e 280 struct passwd *pw;
5abcdf8e 281
dbaa2e87 282 memset(li, '\0', sizeof(*li));
1d7b9b20 283 li->uid = uid;
5abcdf8e 284
2b87da3b 285 /*
9f32ceb4 286 * If we don't have a 'real' lastlog, we need the username to
5abcdf8e 287 * reliably search wtmp(x) for the last login (see
2b87da3b 288 * wtmp_get_entry().)
9f32ceb4 289 */
5abcdf8e 290 pw = getpwuid(uid);
a05a70ab 291 if (pw == NULL)
292 fatal("login_get_lastlog: Cannot find account for uid %i", uid);
2b87da3b 293
1bfbb762 294 /* No MIN_SIZEOF here - we absolutely *must not* truncate the
2b87da3b 295 * username */
d8caae24 296 strlcpy(li->username, pw->pw_name, sizeof(li->username));
a05a70ab 297
564dd50a 298 if (getlast_entry(li))
299 return li;
300 else
a05a70ab 301 return NULL;
1d7b9b20 302}
303
1d7b9b20 304
5abcdf8e 305/* login_alloc_entry(int, char*, char*, char*) - Allocate and initialise
2b87da3b 306 * a logininfo structure
307 *
5abcdf8e 308 * This function creates a new struct logininfo, a data structure
309 * meant to carry the information required to portably record login info.
310 *
311 * Returns a pointer to a newly created struct logininfo. If memory
312 * allocation fails, the program halts.
313 */
564dd50a 314struct
315logininfo *login_alloc_entry(int pid, const char *username,
316 const char *hostname, const char *line)
317{
318 struct logininfo *newli;
1d7b9b20 319
dbaa2e87 320 newli = (struct logininfo *) xmalloc (sizeof(*newli));
564dd50a 321 (void)login_init_entry(newli, pid, username, hostname, line);
322 return newli;
1d7b9b20 323}
324
325
5abcdf8e 326/* login_free_entry(struct logininfo *) - free struct memory */
1d7b9b20 327void
564dd50a 328login_free_entry(struct logininfo *li)
329{
330 xfree(li);
1d7b9b20 331}
332
333
5abcdf8e 334/* login_init_entry(struct logininfo *, int, char*, char*, char*)
335 * - initialise a struct logininfo
2b87da3b 336 *
5abcdf8e 337 * Populates a new struct logininfo, a data structure meant to carry
338 * the information required to portably record login info.
339 *
340 * Returns: 1
341 */
564dd50a 342int
2b87da3b 343login_init_entry(struct logininfo *li, int pid, const char *username,
564dd50a 344 const char *hostname, const char *line)
345{
d8caae24 346 struct passwd *pw;
2b87da3b 347
dbaa2e87 348 memset(li, 0, sizeof(*li));
2b87da3b 349
564dd50a 350 li->pid = pid;
d8caae24 351
564dd50a 352 /* set the line information */
353 if (line)
354 line_fullname(li->line, line, sizeof(li->line));
1d7b9b20 355
d8caae24 356 if (username) {
564dd50a 357 strlcpy(li->username, username, sizeof(li->username));
d8caae24 358 pw = getpwnam(li->username);
359 if (pw == NULL)
360 fatal("login_init_entry: Cannot find user \"%s\"", li->username);
361 li->uid = pw->pw_uid;
362 }
a05a70ab 363
564dd50a 364 if (hostname)
365 strlcpy(li->hostname, hostname, sizeof(li->hostname));
d8caae24 366
564dd50a 367 return 1;
1d7b9b20 368}
369
5abcdf8e 370/* login_set_current_time(struct logininfo *) - set the current time
371 *
372 * Set the current time in a logininfo structure. This function is
373 * meant to eliminate the need to deal with system dependencies for
374 * time handling.
375 */
1d7b9b20 376void
564dd50a 377login_set_current_time(struct logininfo *li)
378{
1d7b9b20 379 struct timeval tv;
380
381 gettimeofday(&tv, NULL);
2b87da3b 382
d8caae24 383 li->tv_sec = tv.tv_sec;
384 li->tv_usec = tv.tv_usec;
1d7b9b20 385}
386
564dd50a 387/* copy a sockaddr_* into our logininfo */
1d7b9b20 388void
564dd50a 389login_set_addr(struct logininfo *li, const struct sockaddr *sa,
390 const unsigned int sa_size)
391{
392 unsigned int bufsize = sa_size;
393
394 /* make sure we don't overrun our union */
395 if (sizeof(li->hostaddr) < sa_size)
396 bufsize = sizeof(li->hostaddr);
397
398 memcpy((void *)&(li->hostaddr.sa), (const void *)sa, bufsize);
1d7b9b20 399}
1d7b9b20 400
564dd50a 401
402/**
403 ** login_write: Call low-level recording functions based on autoconf
404 ** results
405 **/
1d7b9b20 406int
564dd50a 407login_write (struct logininfo *li)
408{
3c62e7eb 409#ifndef HAVE_CYGWIN
1d7b9b20 410 if ((int)geteuid() != 0) {
bbe88b6d 411 logit("Attempt to write login records by non-root user (aborting)");
1d7b9b20 412 return 1;
413 }
3c62e7eb 414#endif
a05a70ab 415
1d7b9b20 416 /* set the timestamp */
417 login_set_current_time(li);
418#ifdef USE_LOGIN
419 syslogin_write_entry(li);
420#endif
421#ifdef USE_LASTLOG
422 if (li->type == LTYPE_LOGIN) {
423 lastlog_write_entry(li);
424 }
425#endif
426#ifdef USE_UTMP
427 utmp_write_entry(li);
428#endif
429#ifdef USE_WTMP
430 wtmp_write_entry(li);
431#endif
432#ifdef USE_UTMPX
433 utmpx_write_entry(li);
434#endif
435#ifdef USE_WTMPX
436 wtmpx_write_entry(li);
f5ed3301 437#endif
438#ifdef CUSTOM_SYS_AUTH_RECORD_LOGIN
439 if (li->type == LTYPE_LOGIN &&
440 !sys_auth_record_login(li->username,li->hostname,li->line))
441 logit("Writing login record failed for %s", li->username);
1d7b9b20 442#endif
443 return 0;
444}
445
7e2d5fa4 446#ifdef LOGIN_NEEDS_UTMPX
447int
448login_utmp_only(struct logininfo *li)
449{
aff51935 450 li->type = LTYPE_LOGIN;
9e127e27 451 login_set_current_time(li);
7e2d5fa4 452# ifdef USE_UTMP
453 utmp_write_entry(li);
454# endif
455# ifdef USE_WTMP
456 wtmp_write_entry(li);
457# endif
458# ifdef USE_UTMPX
459 utmpx_write_entry(li);
460# endif
461# ifdef USE_WTMPX
462 wtmpx_write_entry(li);
463# endif
464 return 0;
465}
466#endif
467
564dd50a 468/**
469 ** getlast_entry: Call low-level functions to retrieve the last login
470 ** time.
471 **/
1d7b9b20 472
564dd50a 473/* take the uid in li and return the last login time */
1d7b9b20 474int
564dd50a 475getlast_entry(struct logininfo *li)
476{
477#ifdef USE_LASTLOG
9f32ceb4 478 return(lastlog_get_entry(li));
a05a70ab 479#else /* !USE_LASTLOG */
1d7b9b20 480
a05a70ab 481#ifdef DISABLE_LASTLOG
2b87da3b 482 /* On some systems we shouldn't even try to obtain last login
3f45f1c3 483 * time, e.g. AIX */
484 return 0;
a05a70ab 485# else /* DISABLE_LASTLOG */
564dd50a 486 /* Try to retrieve the last login time from wtmp */
a05a70ab 487# if defined(USE_WTMP) && (defined(HAVE_TIME_IN_UTMP) || defined(HAVE_TV_IN_UTMP))
564dd50a 488 /* retrieve last login time from utmp */
a05a70ab 489 return (wtmp_get_entry(li));
490# else /* defined(USE_WTMP) && (defined(HAVE_TIME_IN_UTMP) || defined(HAVE_TV_IN_UTMP)) */
564dd50a 491 /* If wtmp isn't available, try wtmpx */
a05a70ab 492# if defined(USE_WTMPX) && (defined(HAVE_TIME_IN_UTMPX) || defined(HAVE_TV_IN_UTMPX))
564dd50a 493 /* retrieve last login time from utmpx */
a05a70ab 494 return (wtmpx_get_entry(li));
495# else
564dd50a 496 /* Give up: No means of retrieving last login time */
497 return 0;
a05a70ab 498# endif /* USE_WTMPX && (HAVE_TIME_IN_UTMPX || HAVE_TV_IN_UTMPX) */
499# endif /* USE_WTMP && (HAVE_TIME_IN_UTMP || HAVE_TV_IN_UTMP) */
2b87da3b 500# endif /* DISABLE_LASTLOG */
a05a70ab 501#endif /* USE_LASTLOG */
564dd50a 502}
1d7b9b20 503
504
1d7b9b20 505
506/*
564dd50a 507 * 'line' string utility functions
508 *
509 * These functions process the 'line' string into one of three forms:
510 *
1d7b9b20 511 * 1. The full filename (including '/dev')
512 * 2. The stripped name (excluding '/dev')
564dd50a 513 * 3. The abbreviated name (e.g. /dev/ttyp00 -> yp00
514 * /dev/pts/1 -> ts/1 )
1d7b9b20 515 *
516 * Form 3 is used on some systems to identify a .tmp.? entry when
517 * attempting to remove it. Typically both addition and removal is
564dd50a 518 * performed by one application - say, sshd - so as long as the choice
519 * uniquely identifies a terminal it's ok.
1d7b9b20 520 */
521
522
564dd50a 523/* line_fullname(): add the leading '/dev/' if it doesn't exist make
524 * sure dst has enough space, if not just copy src (ugh) */
1d7b9b20 525char *
564dd50a 526line_fullname(char *dst, const char *src, int dstsize)
527{
1d7b9b20 528 memset(dst, '\0', dstsize);
89d7510a 529 if ((strncmp(src, "/dev/", 5) == 0) || (dstsize < (strlen(src) + 5))) {
1d7b9b20 530 strlcpy(dst, src, dstsize);
89d7510a 531 } else {
a4d05724 532 strlcpy(dst, "/dev/", dstsize);
1d7b9b20 533 strlcat(dst, src, dstsize);
534 }
535 return dst;
536}
537
564dd50a 538/* line_stripname(): strip the leading '/dev' if it exists, return dst */
1d7b9b20 539char *
564dd50a 540line_stripname(char *dst, const char *src, int dstsize)
541{
1d7b9b20 542 memset(dst, '\0', dstsize);
543 if (strncmp(src, "/dev/", 5) == 0)
89d7510a 544 strlcpy(dst, src + 5, dstsize);
1d7b9b20 545 else
546 strlcpy(dst, src, dstsize);
547 return dst;
564dd50a 548}
549
564dd50a 550/* line_abbrevname(): Return the abbreviated (usually four-character)
551 * form of the line (Just use the last <dstsize> characters of the
552 * full name.)
553 *
554 * NOTE: use strncpy because we do NOT necessarily want zero
555 * termination */
1d7b9b20 556char *
2b87da3b 557line_abbrevname(char *dst, const char *src, int dstsize)
a05a70ab 558{
559 size_t len;
2b87da3b 560
1d7b9b20 561 memset(dst, '\0', dstsize);
2b87da3b 562
daaff4d5 563 /* Always skip prefix if present */
564 if (strncmp(src, "/dev/", 5) == 0)
565 src += 5;
2b87da3b 566
0e8f4eba 567#ifdef WITH_ABBREV_NO_TTY
568 if (strncmp(src, "tty", 3) == 0)
569 src += 3;
570#endif
571
a05a70ab 572 len = strlen(src);
573
daaff4d5 574 if (len > 0) {
575 if (((int)len - dstsize) > 0)
576 src += ((int)len - dstsize);
577
578 /* note: _don't_ change this to strlcpy */
2b87da3b 579 strncpy(dst, src, (size_t)dstsize);
a05a70ab 580 }
2b87da3b 581
1d7b9b20 582 return dst;
583}
584
1d7b9b20 585/**
586 ** utmp utility functions
564dd50a 587 **
588 ** These functions manipulate struct utmp, taking system differences
589 ** into account.
1d7b9b20 590 **/
591
592#if defined(USE_UTMP) || defined (USE_WTMP) || defined (USE_LOGIN)
593
1d7b9b20 594/* build the utmp structure */
595void
564dd50a 596set_utmp_time(struct logininfo *li, struct utmp *ut)
597{
a05a70ab 598# ifdef HAVE_TV_IN_UTMP
1d7b9b20 599 ut->ut_tv.tv_sec = li->tv_sec;
600 ut->ut_tv.tv_usec = li->tv_usec;
a05a70ab 601# else
1d7b9b20 602# ifdef HAVE_TIME_IN_UTMP
603 ut->ut_time = li->tv_sec;
604# endif
a05a70ab 605# endif
1d7b9b20 606}
607
608void
609construct_utmp(struct logininfo *li,
564dd50a 610 struct utmp *ut)
611{
9746ee4b 612# ifdef HAVE_ADDR_V6_IN_UTMP
613 struct sockaddr_in6 *sa6;
614# endif
dbaa2e87 615 memset(ut, '\0', sizeof(*ut));
5abcdf8e 616
617 /* First fill out fields used for both logins and logouts */
618
a05a70ab 619# ifdef HAVE_ID_IN_UTMP
1d7b9b20 620 line_abbrevname(ut->ut_id, li->line, sizeof(ut->ut_id));
a05a70ab 621# endif
1d7b9b20 622
a05a70ab 623# ifdef HAVE_TYPE_IN_UTMP
5abcdf8e 624 /* This is done here to keep utmp constants out of struct logininfo */
1d7b9b20 625 switch (li->type) {
626 case LTYPE_LOGIN:
627 ut->ut_type = USER_PROCESS;
ef51930f 628#ifdef _UNICOS
1a23ac2c 629 cray_set_tmpdir(ut);
630#endif
1d7b9b20 631 break;
632 case LTYPE_LOGOUT:
633 ut->ut_type = DEAD_PROCESS;
ef51930f 634#ifdef _UNICOS
1a23ac2c 635 cray_retain_utmp(ut, li->pid);
636#endif
1d7b9b20 637 break;
638 }
a05a70ab 639# endif
5abcdf8e 640 set_utmp_time(li, ut);
1d7b9b20 641
5abcdf8e 642 line_stripname(ut->ut_line, li->line, sizeof(ut->ut_line));
a05a70ab 643
644# ifdef HAVE_PID_IN_UTMP
1d7b9b20 645 ut->ut_pid = li->pid;
a05a70ab 646# endif
5abcdf8e 647
648 /* If we're logging out, leave all other fields blank */
649 if (li->type == LTYPE_LOGOUT)
650 return;
651
a05a70ab 652 /*
653 * These fields are only used when logging in, and are blank
2b87da3b 654 * for logouts.
a05a70ab 655 */
5abcdf8e 656
657 /* Use strncpy because we don't necessarily want null termination */
dc2a6d09 658 strncpy(ut->ut_name, li->username, MIN_SIZEOF(ut->ut_name, li->username));
a05a70ab 659# ifdef HAVE_HOST_IN_UTMP
5abcdf8e 660 strncpy(ut->ut_host, li->hostname, MIN_SIZEOF(ut->ut_host, li->hostname));
a05a70ab 661# endif
662# ifdef HAVE_ADDR_IN_UTMP
564dd50a 663 /* this is just a 32-bit IP address */
664 if (li->hostaddr.sa.sa_family == AF_INET)
665 ut->ut_addr = li->hostaddr.sa_in.sin_addr.s_addr;
2b87da3b 666# endif
9746ee4b 667# ifdef HAVE_ADDR_V6_IN_UTMP
668 /* this is just a 128-bit IPv6 address */
669 if (li->hostaddr.sa.sa_family == AF_INET6) {
670 sa6 = ((struct sockaddr_in6 *)&li->hostaddr.sa);
671 memcpy(ut->ut_addr_v6, sa6->sin6_addr.s6_addr, 16);
672 if (IN6_IS_ADDR_V4MAPPED(&sa6->sin6_addr)) {
673 ut->ut_addr_v6[0] = ut->ut_addr_v6[3];
674 ut->ut_addr_v6[1] = 0;
675 ut->ut_addr_v6[2] = 0;
676 ut->ut_addr_v6[3] = 0;
677 }
678 }
679# endif
564dd50a 680}
a05a70ab 681#endif /* USE_UTMP || USE_WTMP || USE_LOGIN */
564dd50a 682
1d7b9b20 683/**
684 ** utmpx utility functions
564dd50a 685 **
686 ** These functions manipulate struct utmpx, accounting for system
687 ** variations.
1d7b9b20 688 **/
689
690#if defined(USE_UTMPX) || defined (USE_WTMPX)
1d7b9b20 691/* build the utmpx structure */
692void
564dd50a 693set_utmpx_time(struct logininfo *li, struct utmpx *utx)
694{
a05a70ab 695# ifdef HAVE_TV_IN_UTMPX
1d7b9b20 696 utx->ut_tv.tv_sec = li->tv_sec;
697 utx->ut_tv.tv_usec = li->tv_usec;
a05a70ab 698# else /* HAVE_TV_IN_UTMPX */
1d7b9b20 699# ifdef HAVE_TIME_IN_UTMPX
700 utx->ut_time = li->tv_sec;
a05a70ab 701# endif /* HAVE_TIME_IN_UTMPX */
702# endif /* HAVE_TV_IN_UTMPX */
1d7b9b20 703}
704
705void
564dd50a 706construct_utmpx(struct logininfo *li, struct utmpx *utx)
707{
9746ee4b 708# ifdef HAVE_ADDR_V6_IN_UTMP
709 struct sockaddr_in6 *sa6;
710# endif
dbaa2e87 711 memset(utx, '\0', sizeof(*utx));
daaff4d5 712# ifdef HAVE_ID_IN_UTMPX
1d7b9b20 713 line_abbrevname(utx->ut_id, li->line, sizeof(utx->ut_id));
daaff4d5 714# endif
1d7b9b20 715
716 /* this is done here to keep utmp constants out of loginrec.h */
717 switch (li->type) {
718 case LTYPE_LOGIN:
719 utx->ut_type = USER_PROCESS;
720 break;
721 case LTYPE_LOGOUT:
722 utx->ut_type = DEAD_PROCESS;
723 break;
724 }
1d7b9b20 725 line_stripname(utx->ut_line, li->line, sizeof(utx->ut_line));
1d7b9b20 726 set_utmpx_time(li, utx);
5abcdf8e 727 utx->ut_pid = li->pid;
f3837bc6 728 /* strncpy(): Don't necessarily want null termination */
729 strncpy(utx->ut_name, li->username, MIN_SIZEOF(utx->ut_name, li->username));
5abcdf8e 730
731 if (li->type == LTYPE_LOGOUT)
732 return;
733
a05a70ab 734 /*
735 * These fields are only used when logging in, and are blank
2b87da3b 736 * for logouts.
a05a70ab 737 */
5abcdf8e 738
a05a70ab 739# ifdef HAVE_HOST_IN_UTMPX
5abcdf8e 740 strncpy(utx->ut_host, li->hostname, MIN_SIZEOF(utx->ut_host, li->hostname));
a05a70ab 741# endif
742# ifdef HAVE_ADDR_IN_UTMPX
764d4113 743 /* this is just a 32-bit IP address */
744 if (li->hostaddr.sa.sa_family == AF_INET)
745 utx->ut_addr = li->hostaddr.sa_in.sin_addr.s_addr;
a05a70ab 746# endif
9746ee4b 747# ifdef HAVE_ADDR_V6_IN_UTMP
748 /* this is just a 128-bit IPv6 address */
749 if (li->hostaddr.sa.sa_family == AF_INET6) {
750 sa6 = ((struct sockaddr_in6 *)&li->hostaddr.sa);
751 memcpy(ut->ut_addr_v6, sa6->sin6_addr.s6_addr, 16);
752 if (IN6_IS_ADDR_V4MAPPED(&sa6->sin6_addr)) {
753 ut->ut_addr_v6[0] = ut->ut_addr_v6[3];
754 ut->ut_addr_v6[1] = 0;
755 ut->ut_addr_v6[2] = 0;
756 ut->ut_addr_v6[3] = 0;
757 }
758 }
759# endif
a05a70ab 760# ifdef HAVE_SYSLEN_IN_UTMPX
5abcdf8e 761 /* ut_syslen is the length of the utx_host string */
762 utx->ut_syslen = MIN(strlen(li->hostname), sizeof(utx->ut_host));
a05a70ab 763# endif
564dd50a 764}
a05a70ab 765#endif /* USE_UTMPX || USE_WTMPX */
1d7b9b20 766
767/**
564dd50a 768 ** Low-level utmp functions
1d7b9b20 769 **/
770
771/* FIXME: (ATL) utmp_write_direct needs testing */
1d7b9b20 772#ifdef USE_UTMP
773
1d7b9b20 774/* if we can, use pututline() etc. */
a05a70ab 775# if !defined(DISABLE_PUTUTLINE) && defined(HAVE_SETUTENT) && \
776 defined(HAVE_PUTUTLINE)
1d7b9b20 777# define UTMP_USE_LIBRARY
a05a70ab 778# endif
1d7b9b20 779
780
781/* write a utmp entry with the system's help (pututline() and pals) */
a05a70ab 782# ifdef UTMP_USE_LIBRARY
1d7b9b20 783static int
564dd50a 784utmp_write_library(struct logininfo *li, struct utmp *ut)
785{
1d7b9b20 786 setutent();
787 pututline(ut);
788
a05a70ab 789# ifdef HAVE_ENDUTENT
1d7b9b20 790 endutent();
a05a70ab 791# endif
1d7b9b20 792 return 1;
564dd50a 793}
a05a70ab 794# else /* UTMP_USE_LIBRARY */
1d7b9b20 795
796/* write a utmp entry direct to the file */
564dd50a 797/* This is a slightly modification of code in OpenBSD's login.c */
1d7b9b20 798static int
564dd50a 799utmp_write_direct(struct logininfo *li, struct utmp *ut)
800{
1d7b9b20 801 struct utmp old_ut;
802 register int fd;
803 int tty;
804
5abcdf8e 805 /* FIXME: (ATL) ttyslot() needs local implementation */
dbaa2e87 806
698d107e 807#if defined(HAVE_GETTTYENT)
dbaa2e87 808 register struct ttyent *ty;
809
810 tty=0;
811
812 setttyent();
813 while ((struct ttyent *)0 != (ty = getttyent())) {
814 tty++;
815 if (!strncmp(ty->ty_name, ut->ut_line, sizeof(ut->ut_line)))
816 break;
817 }
818 endttyent();
819
820 if((struct ttyent *)0 == ty) {
5f12e050 821 logit("%s: tty not found", __func__);
822 return (0);
dbaa2e87 823 }
824#else /* FIXME */
825
1d7b9b20 826 tty = ttyslot(); /* seems only to work for /dev/ttyp? style names */
827
698d107e 828#endif /* HAVE_GETTTYENT */
dbaa2e87 829
1d7b9b20 830 if (tty > 0 && (fd = open(UTMP_FILE, O_RDWR|O_CREAT, 0644)) >= 0) {
5f12e050 831 off_t pos, ret;
832
833 pos = (off_t)tty * sizeof(struct utmp);
834 if ((ret = lseek(fd, pos, SEEK_SET)) == -1) {
f6d20d59 835 logit("%s: lseek: %s", __func__, strerror(errno));
5f12e050 836 return (0);
837 }
838 if (ret != pos) {
f6d20d59 839 logit("%s: Couldn't seek to tty %d slot in %s",
840 __func__, tty, UTMP_FILE);
5f12e050 841 return (0);
842 }
1d7b9b20 843 /*
844 * Prevent luser from zero'ing out ut_host.
845 * If the new ut_line is empty but the old one is not
dc2a6d09 846 * and ut_line and ut_name match, preserve the old ut_line.
1d7b9b20 847 */
2b87da3b 848 if (atomicio(read, fd, &old_ut, sizeof(old_ut)) == sizeof(old_ut) &&
849 (ut->ut_host[0] == '\0') && (old_ut.ut_host[0] != '\0') &&
850 (strncmp(old_ut.ut_line, ut->ut_line, sizeof(ut->ut_line)) == 0) &&
dc2a6d09 851 (strncmp(old_ut.ut_name, ut->ut_name, sizeof(ut->ut_name)) == 0)) {
1d7b9b20 852 (void)memcpy(ut->ut_host, old_ut.ut_host, sizeof(ut->ut_host));
9f32ceb4 853 }
2b87da3b 854
5f12e050 855 if ((ret = lseek(fd, pos, SEEK_SET)) == -1) {
f6d20d59 856 logit("%s: lseek: %s", __func__, strerror(errno));
5f12e050 857 return (0);
858 }
859 if (ret != pos) {
f6d20d59 860 logit("%s: Couldn't seek to tty %d slot in %s",
5f12e050 861 __func__, tty, UTMP_FILE);
862 return (0);
863 }
d72f7b79 864 if (atomicio(vwrite, fd, ut, sizeof(*ut)) != sizeof(*ut))
5f12e050 865 logit("%s: error writing %s: %s", __func__,
5abcdf8e 866 UTMP_FILE, strerror(errno));
2b87da3b 867
1d7b9b20 868 (void)close(fd);
869 return 1;
9f32ceb4 870 } else {
1d7b9b20 871 return 0;
9f32ceb4 872 }
564dd50a 873}
a05a70ab 874# endif /* UTMP_USE_LIBRARY */
1d7b9b20 875
876static int
564dd50a 877utmp_perform_login(struct logininfo *li)
878{
1d7b9b20 879 struct utmp ut;
880
881 construct_utmp(li, &ut);
a05a70ab 882# ifdef UTMP_USE_LIBRARY
1d7b9b20 883 if (!utmp_write_library(li, &ut)) {
bbe88b6d 884 logit("utmp_perform_login: utmp_write_library() failed");
1d7b9b20 885 return 0;
886 }
a05a70ab 887# else
1d7b9b20 888 if (!utmp_write_direct(li, &ut)) {
bbe88b6d 889 logit("utmp_perform_login: utmp_write_direct() failed");
1d7b9b20 890 return 0;
891 }
a05a70ab 892# endif
1d7b9b20 893 return 1;
564dd50a 894}
1d7b9b20 895
896
897static int
564dd50a 898utmp_perform_logout(struct logininfo *li)
899{
1d7b9b20 900 struct utmp ut;
901
5abcdf8e 902 construct_utmp(li, &ut);
a05a70ab 903# ifdef UTMP_USE_LIBRARY
5abcdf8e 904 if (!utmp_write_library(li, &ut)) {
bbe88b6d 905 logit("utmp_perform_logout: utmp_write_library() failed");
5abcdf8e 906 return 0;
907 }
a05a70ab 908# else
5abcdf8e 909 if (!utmp_write_direct(li, &ut)) {
bbe88b6d 910 logit("utmp_perform_logout: utmp_write_direct() failed");
5abcdf8e 911 return 0;
912 }
a05a70ab 913# endif
1d7b9b20 914 return 1;
564dd50a 915}
1d7b9b20 916
917
918int
564dd50a 919utmp_write_entry(struct logininfo *li)
920{
1d7b9b20 921 switch(li->type) {
922 case LTYPE_LOGIN:
923 return utmp_perform_login(li);
924
925 case LTYPE_LOGOUT:
926 return utmp_perform_logout(li);
927
928 default:
bbe88b6d 929 logit("utmp_write_entry: invalid type field");
1d7b9b20 930 return 0;
931 }
564dd50a 932}
a05a70ab 933#endif /* USE_UTMP */
1d7b9b20 934
935
936/**
564dd50a 937 ** Low-level utmpx functions
1d7b9b20 938 **/
939
940/* not much point if we don't want utmpx entries */
941#ifdef USE_UTMPX
942
1d7b9b20 943/* if we have the wherewithall, use pututxline etc. */
a05a70ab 944# if !defined(DISABLE_PUTUTXLINE) && defined(HAVE_SETUTXENT) && \
945 defined(HAVE_PUTUTXLINE)
1d7b9b20 946# define UTMPX_USE_LIBRARY
a05a70ab 947# endif
1d7b9b20 948
949
950/* write a utmpx entry with the system's help (pututxline() and pals) */
a05a70ab 951# ifdef UTMPX_USE_LIBRARY
1d7b9b20 952static int
564dd50a 953utmpx_write_library(struct logininfo *li, struct utmpx *utx)
954{
1d7b9b20 955 setutxent();
956 pututxline(utx);
957
a05a70ab 958# ifdef HAVE_ENDUTXENT
1d7b9b20 959 endutxent();
a05a70ab 960# endif
1d7b9b20 961 return 1;
564dd50a 962}
1d7b9b20 963
a05a70ab 964# else /* UTMPX_USE_LIBRARY */
1d7b9b20 965
966/* write a utmp entry direct to the file */
967static int
564dd50a 968utmpx_write_direct(struct logininfo *li, struct utmpx *utx)
2b87da3b 969{
bbe88b6d 970 logit("utmpx_write_direct: not implemented!");
1d7b9b20 971 return 0;
564dd50a 972}
a05a70ab 973# endif /* UTMPX_USE_LIBRARY */
1d7b9b20 974
975static int
564dd50a 976utmpx_perform_login(struct logininfo *li)
977{
1d7b9b20 978 struct utmpx utx;
979
980 construct_utmpx(li, &utx);
a05a70ab 981# ifdef UTMPX_USE_LIBRARY
1d7b9b20 982 if (!utmpx_write_library(li, &utx)) {
bbe88b6d 983 logit("utmpx_perform_login: utmp_write_library() failed");
1d7b9b20 984 return 0;
985 }
a05a70ab 986# else
1d7b9b20 987 if (!utmpx_write_direct(li, &ut)) {
bbe88b6d 988 logit("utmpx_perform_login: utmp_write_direct() failed");
1d7b9b20 989 return 0;
990 }
a05a70ab 991# endif
1d7b9b20 992 return 1;
564dd50a 993}
1d7b9b20 994
995
996static int
564dd50a 997utmpx_perform_logout(struct logininfo *li)
998{
1d7b9b20 999 struct utmpx utx;
1000
f3837bc6 1001 construct_utmpx(li, &utx);
a05a70ab 1002# ifdef HAVE_ID_IN_UTMPX
1d7b9b20 1003 line_abbrevname(utx.ut_id, li->line, sizeof(utx.ut_id));
a05a70ab 1004# endif
1005# ifdef HAVE_TYPE_IN_UTMPX
1d7b9b20 1006 utx.ut_type = DEAD_PROCESS;
a05a70ab 1007# endif
1d7b9b20 1008
a05a70ab 1009# ifdef UTMPX_USE_LIBRARY
1d7b9b20 1010 utmpx_write_library(li, &utx);
a05a70ab 1011# else
1d7b9b20 1012 utmpx_write_direct(li, &utx);
a05a70ab 1013# endif
1d7b9b20 1014 return 1;
564dd50a 1015}
1d7b9b20 1016
1d7b9b20 1017int
564dd50a 1018utmpx_write_entry(struct logininfo *li)
1019{
1d7b9b20 1020 switch(li->type) {
1021 case LTYPE_LOGIN:
1022 return utmpx_perform_login(li);
1023 case LTYPE_LOGOUT:
1024 return utmpx_perform_logout(li);
1025 default:
bbe88b6d 1026 logit("utmpx_write_entry: invalid type field");
1d7b9b20 1027 return 0;
1028 }
564dd50a 1029}
a05a70ab 1030#endif /* USE_UTMPX */
1d7b9b20 1031
1032
1033/**
564dd50a 1034 ** Low-level wtmp functions
1d7b9b20 1035 **/
1036
2b87da3b 1037#ifdef USE_WTMP
1d7b9b20 1038
1d7b9b20 1039/* write a wtmp entry direct to the end of the file */
564dd50a 1040/* This is a slight modification of code in OpenBSD's logwtmp.c */
1d7b9b20 1041static int
564dd50a 1042wtmp_write(struct logininfo *li, struct utmp *ut)
1043{
1d7b9b20 1044 struct stat buf;
1045 int fd, ret = 1;
1046
1047 if ((fd = open(WTMP_FILE, O_WRONLY|O_APPEND, 0)) < 0) {
bbe88b6d 1048 logit("wtmp_write: problem writing %s: %s",
1d7b9b20 1049 WTMP_FILE, strerror(errno));
1050 return 0;
1051 }
2b87da3b 1052 if (fstat(fd, &buf) == 0)
d72f7b79 1053 if (atomicio(vwrite, fd, ut, sizeof(*ut)) != sizeof(*ut)) {
1d7b9b20 1054 ftruncate(fd, buf.st_size);
bbe88b6d 1055 logit("wtmp_write: problem writing %s: %s",
1d7b9b20 1056 WTMP_FILE, strerror(errno));
1057 ret = 0;
1058 }
1059 (void)close(fd);
1d7b9b20 1060 return ret;
564dd50a 1061}
1d7b9b20 1062
1d7b9b20 1063static int
a05a70ab 1064wtmp_perform_login(struct logininfo *li)
1065{
1d7b9b20 1066 struct utmp ut;
1067
1068 construct_utmp(li, &ut);
1069 return wtmp_write(li, &ut);
564dd50a 1070}
1d7b9b20 1071
1072
1073static int
564dd50a 1074wtmp_perform_logout(struct logininfo *li)
1075{
1d7b9b20 1076 struct utmp ut;
1077
1078 construct_utmp(li, &ut);
1d7b9b20 1079 return wtmp_write(li, &ut);
564dd50a 1080}
1d7b9b20 1081
1082
1083int
564dd50a 1084wtmp_write_entry(struct logininfo *li)
1085{
1d7b9b20 1086 switch(li->type) {
1087 case LTYPE_LOGIN:
1088 return wtmp_perform_login(li);
1089 case LTYPE_LOGOUT:
1090 return wtmp_perform_logout(li);
1091 default:
bbe88b6d 1092 logit("wtmp_write_entry: invalid type field");
1d7b9b20 1093 return 0;
1094 }
564dd50a 1095}
1d7b9b20 1096
1097
5abcdf8e 1098/* Notes on fetching login data from wtmp/wtmpx
2b87da3b 1099 *
5abcdf8e 1100 * Logouts are usually recorded with (amongst other things) a blank
1101 * username on a given tty line. However, some systems (HP-UX is one)
1102 * leave all fields set, but change the ut_type field to DEAD_PROCESS.
1103 *
1104 * Since we're only looking for logins here, we know that the username
1105 * must be set correctly. On systems that leave it in, we check for
1106 * ut_type==USER_PROCESS (indicating a login.)
1107 *
1108 * Portability: Some systems may set something other than USER_PROCESS
1109 * to indicate a login process. I don't know of any as I write. Also,
1110 * it's possible that some systems may both leave the username in
1111 * place and not have ut_type.
1112 */
1113
5abcdf8e 1114/* return true if this wtmp entry indicates a login */
1115static int
1116wtmp_islogin(struct logininfo *li, struct utmp *ut)
1117{
2b87da3b 1118 if (strncmp(li->username, ut->ut_name,
dc2a6d09 1119 MIN_SIZEOF(li->username, ut->ut_name)) == 0) {
a05a70ab 1120# ifdef HAVE_TYPE_IN_UTMP
5abcdf8e 1121 if (ut->ut_type & USER_PROCESS)
1122 return 1;
a05a70ab 1123# else
5abcdf8e 1124 return 1;
a05a70ab 1125# endif
5abcdf8e 1126 }
1127 return 0;
1128}
1129
1d7b9b20 1130int
564dd50a 1131wtmp_get_entry(struct logininfo *li)
1132{
1d7b9b20 1133 struct stat st;
1134 struct utmp ut;
5abcdf8e 1135 int fd, found=0;
1136
1137 /* Clear the time entries in our logininfo */
1138 li->tv_sec = li->tv_usec = 0;
1d7b9b20 1139
1140 if ((fd = open(WTMP_FILE, O_RDONLY)) < 0) {
bbe88b6d 1141 logit("wtmp_get_entry: problem opening %s: %s",
1d7b9b20 1142 WTMP_FILE, strerror(errno));
1143 return 0;
1144 }
2b87da3b 1145 if (fstat(fd, &st) != 0) {
bbe88b6d 1146 logit("wtmp_get_entry: couldn't stat %s: %s",
1d7b9b20 1147 WTMP_FILE, strerror(errno));
1148 close(fd);
1149 return 0;
1150 }
1d7b9b20 1151
5abcdf8e 1152 /* Seek to the start of the last struct utmp */
d9d47a26 1153 if (lseek(fd, -(off_t)sizeof(struct utmp), SEEK_END) == -1) {
5abcdf8e 1154 /* Looks like we've got a fresh wtmp file */
1155 close(fd);
1156 return 0;
1157 }
1158
1159 while (!found) {
9f32ceb4 1160 if (atomicio(read, fd, &ut, sizeof(ut)) != sizeof(ut)) {
bbe88b6d 1161 logit("wtmp_get_entry: read of %s failed: %s",
1d7b9b20 1162 WTMP_FILE, strerror(errno));
1163 close (fd);
1164 return 0;
1165 }
5abcdf8e 1166 if ( wtmp_islogin(li, &ut) ) {
1167 found = 1;
1168 /* We've already checked for a time in struct
1169 * utmp, in login_getlast(). */
a05a70ab 1170# ifdef HAVE_TIME_IN_UTMP
1d7b9b20 1171 li->tv_sec = ut.ut_time;
a05a70ab 1172# else
1d7b9b20 1173# if HAVE_TV_IN_UTMP
1174 li->tv_sec = ut.ut_tv.tv_sec;
1175# endif
a05a70ab 1176# endif
5abcdf8e 1177 line_fullname(li->line, ut.ut_line,
1178 MIN_SIZEOF(li->line, ut.ut_line));
a05a70ab 1179# ifdef HAVE_HOST_IN_UTMP
5abcdf8e 1180 strlcpy(li->hostname, ut.ut_host,
1181 MIN_SIZEOF(li->hostname, ut.ut_host));
a05a70ab 1182# endif
5abcdf8e 1183 continue;
1d7b9b20 1184 }
5abcdf8e 1185 /* Seek back 2 x struct utmp */
d9d47a26 1186 if (lseek(fd, -(off_t)(2 * sizeof(struct utmp)), SEEK_CUR) == -1) {
5abcdf8e 1187 /* We've found the start of the file, so quit */
1d7b9b20 1188 close (fd);
1189 return 0;
1190 }
5abcdf8e 1191 }
1192
1193 /* We found an entry. Tidy up and return */
1194 close(fd);
1d7b9b20 1195 return 1;
564dd50a 1196}
a05a70ab 1197# endif /* USE_WTMP */
1d7b9b20 1198
1199
1200/**
564dd50a 1201 ** Low-level wtmpx functions
1d7b9b20 1202 **/
1203
1204#ifdef USE_WTMPX
1d7b9b20 1205/* write a wtmpx entry direct to the end of the file */
564dd50a 1206/* This is a slight modification of code in OpenBSD's logwtmp.c */
1d7b9b20 1207static int
564dd50a 1208wtmpx_write(struct logininfo *li, struct utmpx *utx)
1209{
41c64c91 1210#ifndef HAVE_UPDWTMPX
1d7b9b20 1211 struct stat buf;
1212 int fd, ret = 1;
1213
1214 if ((fd = open(WTMPX_FILE, O_WRONLY|O_APPEND, 0)) < 0) {
bbe88b6d 1215 logit("wtmpx_write: problem opening %s: %s",
1d7b9b20 1216 WTMPX_FILE, strerror(errno));
1217 return 0;
1218 }
1219
2b87da3b 1220 if (fstat(fd, &buf) == 0)
d72f7b79 1221 if (atomicio(vwrite, fd, utx, sizeof(*utx)) != sizeof(*utx)) {
1d7b9b20 1222 ftruncate(fd, buf.st_size);
bbe88b6d 1223 logit("wtmpx_write: problem writing %s: %s",
1d7b9b20 1224 WTMPX_FILE, strerror(errno));
1225 ret = 0;
1226 }
1227 (void)close(fd);
1228
1229 return ret;
41c64c91 1230#else
1231 updwtmpx(WTMPX_FILE, utx);
1232 return 1;
1233#endif
564dd50a 1234}
1d7b9b20 1235
1236
1237static int
564dd50a 1238wtmpx_perform_login(struct logininfo *li)
1239{
1d7b9b20 1240 struct utmpx utx;
1241
1242 construct_utmpx(li, &utx);
1243 return wtmpx_write(li, &utx);
564dd50a 1244}
1d7b9b20 1245
1246
1247static int
564dd50a 1248wtmpx_perform_logout(struct logininfo *li)
1249{
1d7b9b20 1250 struct utmpx utx;
1251
1252 construct_utmpx(li, &utx);
1d7b9b20 1253 return wtmpx_write(li, &utx);
564dd50a 1254}
1d7b9b20 1255
1256
1257int
564dd50a 1258wtmpx_write_entry(struct logininfo *li)
1259{
1d7b9b20 1260 switch(li->type) {
1261 case LTYPE_LOGIN:
1262 return wtmpx_perform_login(li);
1263 case LTYPE_LOGOUT:
1264 return wtmpx_perform_logout(li);
1265 default:
bbe88b6d 1266 logit("wtmpx_write_entry: invalid type field");
1d7b9b20 1267 return 0;
1268 }
564dd50a 1269}
1d7b9b20 1270
5abcdf8e 1271/* Please see the notes above wtmp_islogin() for information about the
1272 next two functions */
1273
1274/* Return true if this wtmpx entry indicates a login */
1275static int
1276wtmpx_islogin(struct logininfo *li, struct utmpx *utx)
1277{
dc2a6d09 1278 if ( strncmp(li->username, utx->ut_name,
1279 MIN_SIZEOF(li->username, utx->ut_name)) == 0 ) {
a05a70ab 1280# ifdef HAVE_TYPE_IN_UTMPX
5abcdf8e 1281 if (utx->ut_type == USER_PROCESS)
1282 return 1;
a05a70ab 1283# else
5abcdf8e 1284 return 1;
a05a70ab 1285# endif
5abcdf8e 1286 }
1287 return 0;
1288}
1289
1d7b9b20 1290
1291int
564dd50a 1292wtmpx_get_entry(struct logininfo *li)
1293{
1d7b9b20 1294 struct stat st;
1295 struct utmpx utx;
5abcdf8e 1296 int fd, found=0;
1297
1298 /* Clear the time entries */
1299 li->tv_sec = li->tv_usec = 0;
1d7b9b20 1300
1301 if ((fd = open(WTMPX_FILE, O_RDONLY)) < 0) {
bbe88b6d 1302 logit("wtmpx_get_entry: problem opening %s: %s",
1d7b9b20 1303 WTMPX_FILE, strerror(errno));
1304 return 0;
1305 }
2b87da3b 1306 if (fstat(fd, &st) != 0) {
bbe88b6d 1307 logit("wtmpx_get_entry: couldn't stat %s: %s",
fdebdd4f 1308 WTMPX_FILE, strerror(errno));
1d7b9b20 1309 close(fd);
1310 return 0;
1311 }
2b87da3b 1312
5abcdf8e 1313 /* Seek to the start of the last struct utmpx */
d9d47a26 1314 if (lseek(fd, -(off_t)sizeof(struct utmpx), SEEK_END) == -1 ) {
5abcdf8e 1315 /* probably a newly rotated wtmpx file */
1316 close(fd);
1317 return 0;
1318 }
1d7b9b20 1319
5abcdf8e 1320 while (!found) {
9f32ceb4 1321 if (atomicio(read, fd, &utx, sizeof(utx)) != sizeof(utx)) {
bbe88b6d 1322 logit("wtmpx_get_entry: read of %s failed: %s",
1d7b9b20 1323 WTMPX_FILE, strerror(errno));
1324 close (fd);
1325 return 0;
1326 }
1d7b9b20 1327 /* Logouts are recorded as a blank username on a particular line.
1328 * So, we just need to find the username in struct utmpx */
5abcdf8e 1329 if ( wtmpx_islogin(li, &utx) ) {
d80063fe 1330 found = 1;
a05a70ab 1331# ifdef HAVE_TV_IN_UTMPX
1d7b9b20 1332 li->tv_sec = utx.ut_tv.tv_sec;
a05a70ab 1333# else
1d7b9b20 1334# ifdef HAVE_TIME_IN_UTMPX
1335 li->tv_sec = utx.ut_time;
1336# endif
a05a70ab 1337# endif
a4d05724 1338 line_fullname(li->line, utx.ut_line, sizeof(li->line));
a05a70ab 1339# ifdef HAVE_HOST_IN_UTMPX
5abcdf8e 1340 strlcpy(li->hostname, utx.ut_host,
1341 MIN_SIZEOF(li->hostname, utx.ut_host));
a05a70ab 1342# endif
5abcdf8e 1343 continue;
1d7b9b20 1344 }
d9d47a26 1345 if (lseek(fd, -(off_t)(2 * sizeof(struct utmpx)), SEEK_CUR) == -1) {
1d7b9b20 1346 close (fd);
1347 return 0;
1348 }
5abcdf8e 1349 }
1350
1351 close(fd);
1d7b9b20 1352 return 1;
564dd50a 1353}
f988dce5 1354#endif /* USE_WTMPX */
1d7b9b20 1355
1d7b9b20 1356/**
564dd50a 1357 ** Low-level libutil login() functions
1d7b9b20 1358 **/
1359
1360#ifdef USE_LOGIN
1d7b9b20 1361static int
564dd50a 1362syslogin_perform_login(struct logininfo *li)
1363{
1d7b9b20 1364 struct utmp *ut;
1365
dbaa2e87 1366 if (! (ut = (struct utmp *)malloc(sizeof(*ut)))) {
bbe88b6d 1367 logit("syslogin_perform_login: couldn't malloc()");
1d7b9b20 1368 return 0;
1369 }
1370 construct_utmp(li, ut);
1371 login(ut);
6cef88bc 1372 free(ut);
1d7b9b20 1373
1374 return 1;
564dd50a 1375}
1d7b9b20 1376
564dd50a 1377static int
1378syslogin_perform_logout(struct logininfo *li)
1379{
a05a70ab 1380# ifdef HAVE_LOGOUT
f20d4564 1381 char line[UT_LINESIZE];
2b87da3b 1382
1d7b9b20 1383 (void)line_stripname(line, li->line, sizeof(line));
1384
1385 if (!logout(line)) {
bbe88b6d 1386 logit("syslogin_perform_logout: logout() returned an error");
a05a70ab 1387# ifdef HAVE_LOGWTMP
1d7b9b20 1388 } else {
1389 logwtmp(line, "", "");
a05a70ab 1390# endif
5637650d 1391 }
5abcdf8e 1392 /* FIXME: (ATL - if the need arises) What to do if we have
1393 * login, but no logout? what if logout but no logwtmp? All
1394 * routines are in libutil so they should all be there,
1395 * but... */
a05a70ab 1396# endif
1d7b9b20 1397 return 1;
564dd50a 1398}
1d7b9b20 1399
1d7b9b20 1400int
564dd50a 1401syslogin_write_entry(struct logininfo *li)
1402{
1d7b9b20 1403 switch (li->type) {
1404 case LTYPE_LOGIN:
1405 return syslogin_perform_login(li);
1406 case LTYPE_LOGOUT:
1407 return syslogin_perform_logout(li);
1408 default:
bbe88b6d 1409 logit("syslogin_write_entry: Invalid type field");
1d7b9b20 1410 return 0;
1411 }
564dd50a 1412}
f988dce5 1413#endif /* USE_LOGIN */
1d7b9b20 1414
1415/* end of file log-syslogin.c */
1416
1d7b9b20 1417/**
564dd50a 1418 ** Low-level lastlog functions
1d7b9b20 1419 **/
1420
1421#ifdef USE_LASTLOG
a05a70ab 1422#define LL_FILE 1
1423#define LL_DIR 2
1424#define LL_OTHER 3
1d7b9b20 1425
1d7b9b20 1426static void
564dd50a 1427lastlog_construct(struct logininfo *li, struct lastlog *last)
1428{
1d7b9b20 1429 /* clear the structure */
dbaa2e87 1430 memset(last, '\0', sizeof(*last));
2b87da3b 1431
a05a70ab 1432 (void)line_stripname(last->ll_line, li->line, sizeof(last->ll_line));
5abcdf8e 1433 strlcpy(last->ll_host, li->hostname,
1434 MIN_SIZEOF(last->ll_host, li->hostname));
1d7b9b20 1435 last->ll_time = li->tv_sec;
564dd50a 1436}
1d7b9b20 1437
1d7b9b20 1438static int
564dd50a 1439lastlog_filetype(char *filename)
1440{
1d7b9b20 1441 struct stat st;
1442
a05a70ab 1443 if (stat(LASTLOG_FILE, &st) != 0) {
bbe88b6d 1444 logit("lastlog_perform_login: Couldn't stat %s: %s", LASTLOG_FILE,
a05a70ab 1445 strerror(errno));
1d7b9b20 1446 return 0;
1447 }
1d7b9b20 1448 if (S_ISDIR(st.st_mode))
1449 return LL_DIR;
1450 else if (S_ISREG(st.st_mode))
1451 return LL_FILE;
1452 else
1453 return LL_OTHER;
564dd50a 1454}
1d7b9b20 1455
1456
1457/* open the file (using filemode) and seek to the login entry */
1458static int
564dd50a 1459lastlog_openseek(struct logininfo *li, int *fd, int filemode)
1460{
1d7b9b20 1461 off_t offset;
1462 int type;
1463 char lastlog_file[1024];
1464
1465 type = lastlog_filetype(LASTLOG_FILE);
1466 switch (type) {
d8caae24 1467 case LL_FILE:
1468 strlcpy(lastlog_file, LASTLOG_FILE, sizeof(lastlog_file));
1469 break;
1470 case LL_DIR:
1471 snprintf(lastlog_file, sizeof(lastlog_file), "%s/%s",
1472 LASTLOG_FILE, li->username);
1473 break;
1474 default:
bbe88b6d 1475 logit("lastlog_openseek: %.100s is not a file or directory!",
d8caae24 1476 LASTLOG_FILE);
1477 return 0;
a05a70ab 1478 }
1d7b9b20 1479
ee476051 1480 *fd = open(lastlog_file, filemode, 0600);
1d7b9b20 1481 if ( *fd < 0) {
9f32ceb4 1482 debug("lastlog_openseek: Couldn't open %s: %s",
1d7b9b20 1483 lastlog_file, strerror(errno));
1484 return 0;
1485 }
2b87da3b 1486
d93a7e5a 1487 if (type == LL_FILE) {
1488 /* find this uid's offset in the lastlog file */
d9d47a26 1489 offset = (off_t) ((long)li->uid * sizeof(struct lastlog));
1d7b9b20 1490
d93a7e5a 1491 if ( lseek(*fd, offset, SEEK_SET) != offset ) {
bbe88b6d 1492 logit("lastlog_openseek: %s->lseek(): %s",
2b87da3b 1493 lastlog_file, strerror(errno));
d93a7e5a 1494 return 0;
1495 }
1d7b9b20 1496 }
2b87da3b 1497
1d7b9b20 1498 return 1;
564dd50a 1499}
1d7b9b20 1500
1501static int
564dd50a 1502lastlog_perform_login(struct logininfo *li)
1503{
1d7b9b20 1504 struct lastlog last;
1505 int fd;
1506
1507 /* create our struct lastlog */
1508 lastlog_construct(li, &last);
1509
ee476051 1510 if (!lastlog_openseek(li, &fd, O_RDWR|O_CREAT))
1a022229 1511 return(0);
2b87da3b 1512
1d7b9b20 1513 /* write the entry */
d72f7b79 1514 if (atomicio(vwrite, fd, &last, sizeof(last)) != sizeof(last)) {
1a022229 1515 close(fd);
bbe88b6d 1516 logit("lastlog_write_filemode: Error writing to %s: %s",
1a022229 1517 LASTLOG_FILE, strerror(errno));
1d7b9b20 1518 return 0;
a05a70ab 1519 }
1a022229 1520
1521 close(fd);
1522 return 1;
564dd50a 1523}
1d7b9b20 1524
1d7b9b20 1525int
564dd50a 1526lastlog_write_entry(struct logininfo *li)
1527{
1d7b9b20 1528 switch(li->type) {
1529 case LTYPE_LOGIN:
1530 return lastlog_perform_login(li);
1531 default:
bbe88b6d 1532 logit("lastlog_write_entry: Invalid type field");
1d7b9b20 1533 return 0;
1534 }
564dd50a 1535}
1d7b9b20 1536
1d7b9b20 1537static void
564dd50a 1538lastlog_populate_entry(struct logininfo *li, struct lastlog *last)
1539{
1d7b9b20 1540 line_fullname(li->line, last->ll_line, sizeof(li->line));
2b87da3b 1541 strlcpy(li->hostname, last->ll_host,
5abcdf8e 1542 MIN_SIZEOF(li->hostname, last->ll_host));
1d7b9b20 1543 li->tv_sec = last->ll_time;
564dd50a 1544}
1d7b9b20 1545
1d7b9b20 1546int
564dd50a 1547lastlog_get_entry(struct logininfo *li)
1548{
1d7b9b20 1549 struct lastlog last;
ed05a983 1550 int fd, ret;
1d7b9b20 1551
ce49121d 1552 if (!lastlog_openseek(li, &fd, O_RDONLY))
ed05a983 1553 return (0);
ce49121d 1554
ed05a983 1555 ret = atomicio(read, fd, &last, sizeof(last));
ce49121d 1556 close(fd);
1557
ed05a983 1558 switch (ret) {
1559 case 0:
1560 memset(&last, '\0', sizeof(last));
1561 /* FALLTHRU */
1562 case sizeof(last):
1563 lastlog_populate_entry(li, &last);
1564 return (1);
1565 case -1:
aff51935 1566 error("%s: Error reading from %s: %s", __func__,
ed05a983 1567 LASTLOG_FILE, strerror(errno));
1568 return (0);
1569 default:
1570 error("%s: Error reading from %s: Expecting %d, got %d",
1571 __func__, LASTLOG_FILE, sizeof(last), ret);
1572 return (0);
1573 }
ce49121d 1574
ed05a983 1575 /* NOTREACHED */
1576 return (0);
564dd50a 1577}
f988dce5 1578#endif /* USE_LASTLOG */
This page took 0.437095 seconds and 5 git commands to generate.