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