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