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
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
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.
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.
29 ** loginrec.c: platform-independent login recording and lastlog retrieval
32 /* For now lastlog code has been removed as it wasn't being used by Dropbear. */
35 The new login code explained
36 ============================
38 This code attempts to provide a common interface to login recording
39 (utmp and friends) and last login time retrieval.
41 Its primary means of achieving this is to use 'struct logininfo', a
42 union of all the useful fields in the various different types of
43 system login record structures one finds on UNIX variants.
45 We depend on autoconf to define which recording methods are to be
46 used, and which fields are contained in the relevant data structures
47 on the local system. Many C preprocessor symbols affect which code
50 The code is designed to make it easy to modify a particular
51 recording method, without affecting other methods nor requiring so
52 many nested conditional compilation blocks as were commonplace in
55 For login recording, we try to use the local system's libraries as
56 these are clearly most likely to work correctly. For utmp systems
57 this usually means login() and logout() or setutent() etc., probably
58 in libutil, along with logwtmp() etc. On these systems, we fall back
59 to writing the files directly if we have to, though this method
60 requires very thorough testing so we do not corrupt local auditing
61 information. These files and their access methods are very system
64 For utmpx systems, the corresponding library functions are
65 setutxent() etc. To the author's knowledge, all utmpx systems have
66 these library functions and so no direct write is attempted. If such
67 a system exists and needs support, direct analogues of the [uw]tmp
70 Retrieving the time of last login ('lastlog') is in some ways even
71 more problemmatic than login recording. Some systems provide a
72 simple table of all users which we seek based on uid and retrieve a
73 relatively standard structure. Others record the same information in
74 a directory with a separate file, and others don't record the
75 information separately at all. For systems in the latter category,
76 we look backwards in the wtmp or wtmpx file for the last login entry
77 for our user. Naturally this is slower and on busy systems could
78 incur a significant performance penalty.
83 In OpenSSH all login recording and retrieval is performed in
84 login.c. Here you'll find working examples. Also, in the logintest.c
85 program there are more examples.
87 Internal handler calling method
88 -------------------------------
90 When a call is made to login_login() or login_logout(), both
91 routines set a struct logininfo flag defining which action (log in,
92 or log out) is to be taken. They both then call login_write(), which
93 calls whichever of the many structure-specific handlers autoconf
94 selects for the local system.
96 The handlers themselves handle system data structure specifics. Both
97 struct utmp and struct utmpx have utility functions (see
98 construct_utmp*()) to try to make it simpler to add extra systems
99 that introduce new features to either structure.
101 While it may seem terribly wasteful to replicate so much similar
102 code for each method, experience has shown that maintaining code to
103 write both struct utmp and utmpx in one function, whilst maintaining
104 support for all systems whether they have library support or not, is
105 a difficult and time-consuming task.
107 Lastlog support proceeds similarly. Functions login_get_lastlog()
108 (and its OpenSSH-tuned friend login_get_lastlog_time()) call
109 getlast_entry(), which tries one of three methods to find the last
110 login time. It uses local system lastlog support if it can,
111 otherwise it tries wtmp or wtmpx before giving up and returning 0,
117 In many cases it's possible to tweak autoconf to select the correct
118 methods for a particular platform, either by improving the detection
119 code (best), or by presetting DISABLE_<method> or CONF_<method>_FILE
120 symbols for the platform.
122 Use logintest to check which symbols are defined before modifying
123 configure.ac and loginrec.c. (You have to build logintest yourself
124 with 'make logintest' as it's not built by default.)
126 Otherwise, patches to the specific method(s) are very helpful!
132 ** homegrown ttyslot()
139 ** Linux (Redhat 6.2, Debian)
141 ** HP-UX 10.20 (gcc only)
143 ** NeXT - M68k/HPPA/Sparc (4.2/3.3)
145 ** Testing required: Please send reports!
150 ** Platforms with known problems:
151 ** Some variants of Slackware Linux
156 #include "includes.h"
157 #include "loginrec.h"
159 #include "atomicio.h"
162 ** prototypes for helper functions in this file
166 void set_utmp_time(struct logininfo
*li
, struct utmp
*ut
);
167 void construct_utmp(struct logininfo
*li
, struct utmp
*ut
);
171 void set_utmpx_time(struct logininfo
*li
, struct utmpx
*ut
);
172 void construct_utmpx(struct logininfo
*li
, struct utmpx
*ut
);
175 int utmp_write_entry(struct logininfo
*li
);
176 int utmpx_write_entry(struct logininfo
*li
);
177 int wtmp_write_entry(struct logininfo
*li
);
178 int wtmpx_write_entry(struct logininfo
*li
);
179 int lastlog_write_entry(struct logininfo
*li
);
180 int syslogin_write_entry(struct logininfo
*li
);
182 int wtmp_get_entry(struct logininfo
*li
);
183 int wtmpx_get_entry(struct logininfo
*li
);
185 /* pick the shortest string */
186 #define MIN_SIZEOF(s1,s2) ( sizeof(s1) < sizeof(s2) ? sizeof(s1) : sizeof(s2) )
189 ** platform-independent login functions
192 /* login_login(struct logininfo *) -Record a login
194 * Call with a pointer to a struct logininfo initialised with
195 * login_init_entry() or login_alloc_entry()
199 * 0 on failure (will use OpenSSH's logging facilities for diagnostics)
202 login_login (struct logininfo
*li
)
204 li
->type
= LTYPE_LOGIN
;
205 return login_write(li
);
209 /* login_logout(struct logininfo *) - Record a logout
211 * Call as with login_login()
215 * 0 on failure (will use OpenSSH's logging facilities for diagnostics)
218 login_logout(struct logininfo
*li
)
220 li
->type
= LTYPE_LOGOUT
;
221 return login_write(li
);
225 /* login_alloc_entry(int, char*, char*, char*) - Allocate and initialise
226 * a logininfo structure
228 * This function creates a new struct logininfo, a data structure
229 * meant to carry the information required to portably record login info.
231 * Returns a pointer to a newly created struct logininfo. If memory
232 * allocation fails, the program halts.
235 logininfo
*login_alloc_entry(int pid
, const char *username
,
236 const char *hostname
, const char *line
)
238 struct logininfo
*newli
;
240 newli
= (struct logininfo
*) m_malloc (sizeof(*newli
));
241 (void)login_init_entry(newli
, pid
, username
, hostname
, line
);
246 /* login_free_entry(struct logininfo *) - free struct memory */
248 login_free_entry(struct logininfo
*li
)
254 /* login_init_entry(struct logininfo *, int, char*, char*, char*)
255 * - initialise a struct logininfo
257 * Populates a new struct logininfo, a data structure meant to carry
258 * the information required to portably record login info.
263 login_init_entry(struct logininfo
*li
, int pid
, const char *username
,
264 const char *hostname
, const char *line
)
268 memset(li
, 0, sizeof(*li
));
272 /* set the line information */
274 line_fullname(li
->line
, line
, sizeof(li
->line
));
277 strlcpy(li
->username
, username
, sizeof(li
->username
));
278 pw
= getpwnam(li
->username
);
280 dropbear_exit("login_init_entry: Cannot find user \"%s\"",
282 li
->uid
= pw
->pw_uid
;
286 strlcpy(li
->hostname
, hostname
, sizeof(li
->hostname
));
291 /* login_set_current_time(struct logininfo *) - set the current time
293 * Set the current time in a logininfo structure. This function is
294 * meant to eliminate the need to deal with system dependencies for
298 login_set_current_time(struct logininfo
*li
)
302 gettimeofday(&tv
, NULL
);
304 li
->tv_sec
= tv
.tv_sec
;
305 li
->tv_usec
= tv
.tv_usec
;
308 /* copy a sockaddr_* into our logininfo */
310 login_set_addr(struct logininfo
*li
, const struct sockaddr
*sa
,
311 const unsigned int sa_size
)
313 unsigned int bufsize
= sa_size
;
315 /* make sure we don't overrun our union */
316 if (sizeof(li
->hostaddr
) < sa_size
)
317 bufsize
= sizeof(li
->hostaddr
);
319 memcpy((void *)&(li
->hostaddr
.sa
), (const void *)sa
, bufsize
);
324 ** login_write: Call low-level recording functions based on autoconf
328 login_write (struct logininfo
*li
)
331 if ((int)geteuid() != 0) {
332 dropbear_log(LOG_WARNING
,
333 "Attempt to write login records by non-root user (aborting)");
338 /* set the timestamp */
339 login_set_current_time(li
);
341 syslogin_write_entry(li
);
344 if (li
->type
== LTYPE_LOGIN
) {
345 lastlog_write_entry(li
);
349 utmp_write_entry(li
);
352 wtmp_write_entry(li
);
355 utmpx_write_entry(li
);
358 wtmpx_write_entry(li
);
363 #ifdef LOGIN_NEEDS_UTMPX
365 login_utmp_only(struct logininfo
*li
)
367 li
->type
= LTYPE_LOGIN
;
368 login_set_current_time(li
);
370 utmp_write_entry(li
);
373 wtmp_write_entry(li
);
376 utmpx_write_entry(li
);
379 wtmpx_write_entry(li
);
388 * 'line' string utility functions
390 * These functions process the 'line' string into one of three forms:
392 * 1. The full filename (including '/dev')
393 * 2. The stripped name (excluding '/dev')
394 * 3. The abbreviated name (e.g. /dev/ttyp00 -> yp00
395 * /dev/pts/1 -> ts/1 )
397 * Form 3 is used on some systems to identify a .tmp.? entry when
398 * attempting to remove it. Typically both addition and removal is
399 * performed by one application - say, sshd - so as long as the choice
400 * uniquely identifies a terminal it's ok.
404 /* line_fullname(): add the leading '/dev/' if it doesn't exist make
405 * sure dst has enough space, if not just copy src (ugh) */
407 line_fullname(char *dst
, const char *src
, size_t dstsize
)
409 memset(dst
, '\0', dstsize
);
410 if ((strncmp(src
, "/dev/", 5) == 0) || (dstsize
< (strlen(src
) + 5))) {
411 strlcpy(dst
, src
, dstsize
);
413 strlcpy(dst
, "/dev/", dstsize
);
414 strlcat(dst
, src
, dstsize
);
419 /* line_stripname(): strip the leading '/dev' if it exists, return dst */
421 line_stripname(char *dst
, const char *src
, size_t dstsize
)
423 memset(dst
, '\0', dstsize
);
424 if (strncmp(src
, "/dev/", 5) == 0)
425 strlcpy(dst
, src
+ 5, dstsize
);
427 strlcpy(dst
, src
, dstsize
);
431 /* line_abbrevname(): Return the abbreviated (usually four-character)
432 * form of the line (Just use the last <dstsize> characters of the
435 * NOTE: use strncpy because we do NOT necessarily want zero
438 line_abbrevname(char *dst
, const char *src
, size_t dstsize
)
442 memset(dst
, '\0', dstsize
);
444 /* Always skip prefix if present */
445 if (strncmp(src
, "/dev/", 5) == 0)
448 #ifdef WITH_ABBREV_NO_TTY
449 if (strncmp(src
, "tty", 3) == 0)
456 if (((int)len
- dstsize
) > 0)
457 src
+= ((int)len
- dstsize
);
459 /* note: _don't_ change this to strlcpy */
460 strncpy(dst
, src
, (size_t)dstsize
);
467 ** utmp utility functions
469 ** These functions manipulate struct utmp, taking system differences
473 #if defined(USE_UTMP) || defined (USE_WTMP) || defined (USE_LOGIN)
475 /* build the utmp structure */
477 set_utmp_time(struct logininfo
*li
, struct utmp
*ut
)
479 # ifdef HAVE_STRUCT_UTMP_UT_TV
480 ut
->ut_tv
.tv_sec
= li
->tv_sec
;
481 ut
->ut_tv
.tv_usec
= li
->tv_usec
;
483 # ifdef HAVE_STRUCT_UTMP_UT_TIME
484 ut
->ut_time
= li
->tv_sec
;
490 construct_utmp(struct logininfo
*li
,
493 # ifdef HAVE_ADDR_V6_IN_UTMP
494 struct sockaddr_in6
*sa6
;
496 memset(ut
, '\0', sizeof(*ut
));
498 /* First fill out fields used for both logins and logouts */
500 # ifdef HAVE_STRUCT_UTMP_UT_ID
501 line_abbrevname(ut
->ut_id
, li
->line
, sizeof(ut
->ut_id
));
504 # ifdef HAVE_STRUCT_UTMP_UT_TYPE
505 /* This is done here to keep utmp constants out of struct logininfo */
508 ut
->ut_type
= USER_PROCESS
;
514 ut
->ut_type
= DEAD_PROCESS
;
516 cray_retain_utmp(ut
, li
->pid
);
521 set_utmp_time(li
, ut
);
523 line_stripname(ut
->ut_line
, li
->line
, sizeof(ut
->ut_line
));
525 # ifdef HAVE_STRUCT_UTMP_UT_PID
526 ut
->ut_pid
= li
->pid
;
529 /* If we're logging out, leave all other fields blank */
530 if (li
->type
== LTYPE_LOGOUT
)
534 * These fields are only used when logging in, and are blank
538 /* Use strncpy because we don't necessarily want null termination */
539 strncpy(ut
->ut_name
, li
->username
, MIN_SIZEOF(ut
->ut_name
, li
->username
));
540 # ifdef HAVE_STRUCT_UTMP_UT_HOST
541 strncpy(ut
->ut_host
, li
->hostname
, MIN_SIZEOF(ut
->ut_host
, li
->hostname
));
543 # ifdef HAVE_STRUCT_UTMP_UT_ADDR
544 /* this is just a 32-bit IP address */
545 if (li
->hostaddr
.sa
.sa_family
== AF_INET
)
546 ut
->ut_addr
= li
->hostaddr
.sa_in
.sin_addr
.s_addr
;
548 # ifdef HAVE_ADDR_V6_IN_UTMP
549 /* this is just a 128-bit IPv6 address */
550 if (li
->hostaddr
.sa
.sa_family
== AF_INET6
) {
551 sa6
= ((struct sockaddr_in6
*)&li
->hostaddr
.sa
);
552 memcpy(ut
->ut_addr_v6
, sa6
->sin6_addr
.s6_addr
, 16);
553 if (IN6_IS_ADDR_V4MAPPED(&sa6
->sin6_addr
)) {
554 ut
->ut_addr_v6
[0] = ut
->ut_addr_v6
[3];
555 ut
->ut_addr_v6
[1] = 0;
556 ut
->ut_addr_v6
[2] = 0;
557 ut
->ut_addr_v6
[3] = 0;
562 #endif /* USE_UTMP || USE_WTMP || USE_LOGIN */
565 ** utmpx utility functions
567 ** These functions manipulate struct utmpx, accounting for system
571 #if defined(USE_UTMPX) || defined (USE_WTMPX)
572 /* build the utmpx structure */
574 set_utmpx_time(struct logininfo
*li
, struct utmpx
*utx
)
576 # ifdef HAVE_STRUCT_UTMPX_UT_TV
577 utx
->ut_tv
.tv_sec
= li
->tv_sec
;
578 utx
->ut_tv
.tv_usec
= li
->tv_usec
;
579 # else /* HAVE_STRUCT_UTMPX_UT_TV */
580 # ifdef HAVE_STRUCT_UTMPX_UT_TIME
581 utx
->ut_time
= li
->tv_sec
;
582 # endif /* HAVE_STRUCT_UTMPX_UT_TIME */
583 # endif /* HAVE_STRUCT_UTMPX_UT_TV */
587 construct_utmpx(struct logininfo
*li
, struct utmpx
*utx
)
589 # ifdef HAVE_ADDR_V6_IN_UTMP
590 struct sockaddr_in6
*sa6
;
592 memset(utx
, '\0', sizeof(*utx
));
593 # ifdef HAVE_STRUCT_UTMPX_UT_ID
594 line_abbrevname(utx
->ut_id
, li
->line
, sizeof(utx
->ut_id
));
597 /* this is done here to keep utmp constants out of loginrec.h */
600 utx
->ut_type
= USER_PROCESS
;
603 utx
->ut_type
= DEAD_PROCESS
;
606 line_stripname(utx
->ut_line
, li
->line
, sizeof(utx
->ut_line
));
607 set_utmpx_time(li
, utx
);
608 utx
->ut_pid
= li
->pid
;
609 /* strncpy(): Don't necessarily want null termination */
610 strncpy(utx
->ut_name
, li
->username
, MIN_SIZEOF(utx
->ut_name
, li
->username
));
612 if (li
->type
== LTYPE_LOGOUT
)
616 * These fields are only used when logging in, and are blank
620 # ifdef HAVE_STRUCT_UTMPX_UT_HOST
621 strncpy(utx
->ut_host
, li
->hostname
, MIN_SIZEOF(utx
->ut_host
, li
->hostname
));
623 # ifdef HAVE_STRUCT_UTMPX_UT_ADDR
624 /* this is just a 32-bit IP address */
625 if (li
->hostaddr
.sa
.sa_family
== AF_INET
)
626 utx
->ut_addr
= li
->hostaddr
.sa_in
.sin_addr
.s_addr
;
628 # ifdef HAVE_ADDR_V6_IN_UTMP
629 /* this is just a 128-bit IPv6 address */
630 if (li
->hostaddr
.sa
.sa_family
== AF_INET6
) {
631 sa6
= ((struct sockaddr_in6
*)&li
->hostaddr
.sa
);
632 memcpy(ut
->ut_addr_v6
, sa6
->sin6_addr
.s6_addr
, 16);
633 if (IN6_IS_ADDR_V4MAPPED(&sa6
->sin6_addr
)) {
634 ut
->ut_addr_v6
[0] = ut
->ut_addr_v6
[3];
635 ut
->ut_addr_v6
[1] = 0;
636 ut
->ut_addr_v6
[2] = 0;
637 ut
->ut_addr_v6
[3] = 0;
641 # ifdef HAVE_STRUCT_UTMPX_UT_SYSLEN
642 /* ut_syslen is the length of the utx_host string */
643 utx
->ut_syslen
= MIN(strlen(li
->hostname
), sizeof(utx
->ut_host
));
646 #endif /* USE_UTMPX || USE_WTMPX */
649 ** Low-level utmp functions
652 /* FIXME: (ATL) utmp_write_direct needs testing */
655 /* if we can, use pututline() etc. */
656 # if !defined(DISABLE_PUTUTLINE) && defined(HAVE_SETUTENT) && \
657 defined(HAVE_PUTUTLINE)
658 # define UTMP_USE_LIBRARY
662 /* write a utmp entry with the system's help (pututline() and pals) */
663 # ifdef UTMP_USE_LIBRARY
665 utmp_write_library(struct logininfo
*li
, struct utmp
*ut
)
670 # ifdef HAVE_ENDUTENT
675 # else /* UTMP_USE_LIBRARY */
677 /* write a utmp entry direct to the file */
678 /* This is a slightly modification of code in OpenBSD's login.c */
680 utmp_write_direct(struct logininfo
*li
, struct utmp
*ut
)
686 /* FIXME: (ATL) ttyslot() needs local implementation */
688 #if defined(HAVE_GETTTYENT)
689 register struct ttyent
*ty
;
694 while ((struct ttyent
*)0 != (ty
= getttyent())) {
696 if (!strncmp(ty
->ty_name
, ut
->ut_line
, sizeof(ut
->ut_line
)))
701 if((struct ttyent
*)0 == ty
) {
702 dropbear_log(LOG_WARNING
, "utmp_write_entry: tty not found");
707 tty
= ttyslot(); /* seems only to work for /dev/ttyp? style names */
709 #endif /* HAVE_GETTTYENT */
711 if (tty
> 0 && (fd
= open(UTMP_FILE
, O_RDWR
|O_CREAT
, 0644)) >= 0) {
712 (void)lseek(fd
, (off_t
)(tty
* sizeof(struct utmp
)), SEEK_SET
);
714 * Prevent luser from zero'ing out ut_host.
715 * If the new ut_line is empty but the old one is not
716 * and ut_line and ut_name match, preserve the old ut_line.
718 if (atomicio(read
, fd
, &old_ut
, sizeof(old_ut
)) == sizeof(old_ut
) &&
719 (ut
->ut_host
[0] == '\0') && (old_ut
.ut_host
[0] != '\0') &&
720 (strncmp(old_ut
.ut_line
, ut
->ut_line
, sizeof(ut
->ut_line
)) == 0) &&
721 (strncmp(old_ut
.ut_name
, ut
->ut_name
, sizeof(ut
->ut_name
)) == 0)) {
722 (void)memcpy(ut
->ut_host
, old_ut
.ut_host
, sizeof(ut
->ut_host
));
725 (void)lseek(fd
, (off_t
)(tty
* sizeof(struct utmp
)), SEEK_SET
);
726 if (atomicio(write
, fd
, ut
, sizeof(*ut
)) != sizeof(*ut
))
727 dropbear_log(LOG_WARNING
, "utmp_write_direct: error writing %s: %s",
728 UTMP_FILE
, strerror(errno
));
736 # endif /* UTMP_USE_LIBRARY */
739 utmp_perform_login(struct logininfo
*li
)
743 construct_utmp(li
, &ut
);
744 # ifdef UTMP_USE_LIBRARY
745 if (!utmp_write_library(li
, &ut
)) {
746 dropbear_log(LOG_WARNING
, "utmp_perform_login: utmp_write_library() failed");
750 if (!utmp_write_direct(li
, &ut
)) {
751 dropbear_log(LOG_WARNING
, "utmp_perform_login: utmp_write_direct() failed");
760 utmp_perform_logout(struct logininfo
*li
)
764 construct_utmp(li
, &ut
);
765 # ifdef UTMP_USE_LIBRARY
766 if (!utmp_write_library(li
, &ut
)) {
767 dropbear_log(LOG_WARNING
, "utmp_perform_logout: utmp_write_library() failed");
771 if (!utmp_write_direct(li
, &ut
)) {
772 dropbear_log(LOG_WARNING
, "utmp_perform_logout: utmp_write_direct() failed");
781 utmp_write_entry(struct logininfo
*li
)
785 return utmp_perform_login(li
);
788 return utmp_perform_logout(li
);
791 dropbear_log(LOG_WARNING
, "utmp_write_entry: invalid type field");
795 #endif /* USE_UTMP */
799 ** Low-level utmpx functions
802 /* not much point if we don't want utmpx entries */
805 /* if we have the wherewithall, use pututxline etc. */
806 # if !defined(DISABLE_PUTUTXLINE) && defined(HAVE_SETUTXENT) && \
807 defined(HAVE_PUTUTXLINE)
808 # define UTMPX_USE_LIBRARY
812 /* write a utmpx entry with the system's help (pututxline() and pals) */
813 # ifdef UTMPX_USE_LIBRARY
815 utmpx_write_library(struct logininfo
*li
, struct utmpx
*utx
)
820 # ifdef HAVE_ENDUTXENT
826 # else /* UTMPX_USE_LIBRARY */
828 /* write a utmp entry direct to the file */
830 utmpx_write_direct(struct logininfo
*li
, struct utmpx
*utx
)
832 dropbear_log(LOG_WARNING
, "utmpx_write_direct: not implemented!");
835 # endif /* UTMPX_USE_LIBRARY */
838 utmpx_perform_login(struct logininfo
*li
)
842 construct_utmpx(li
, &utx
);
843 # ifdef UTMPX_USE_LIBRARY
844 if (!utmpx_write_library(li
, &utx
)) {
845 dropbear_log(LOG_WARNING
, "utmpx_perform_login: utmp_write_library() failed");
849 if (!utmpx_write_direct(li
, &ut
)) {
850 dropbear_log(LOG_WARNING
, "utmpx_perform_login: utmp_write_direct() failed");
859 utmpx_perform_logout(struct logininfo
*li
)
863 construct_utmpx(li
, &utx
);
864 # ifdef HAVE_STRUCT_UTMPX_UT_ID
865 line_abbrevname(utx
.ut_id
, li
->line
, sizeof(utx
.ut_id
));
867 # ifdef HAVE_STRUCT_UTMPX_UT_TYPE
868 utx
.ut_type
= DEAD_PROCESS
;
871 # ifdef UTMPX_USE_LIBRARY
872 utmpx_write_library(li
, &utx
);
874 utmpx_write_direct(li
, &utx
);
880 utmpx_write_entry(struct logininfo
*li
)
884 return utmpx_perform_login(li
);
886 return utmpx_perform_logout(li
);
888 dropbear_log(LOG_WARNING
, "utmpx_write_entry: invalid type field");
892 #endif /* USE_UTMPX */
896 ** Low-level wtmp functions
901 /* write a wtmp entry direct to the end of the file */
902 /* This is a slight modification of code in OpenBSD's logwtmp.c */
904 wtmp_write(struct logininfo
*li
, struct utmp
*ut
)
909 if ((fd
= open(WTMP_FILE
, O_WRONLY
|O_APPEND
, 0)) < 0) {
910 dropbear_log(LOG_WARNING
, "wtmp_write: problem writing %s: %s",
911 WTMP_FILE
, strerror(errno
));
914 if (fstat(fd
, &buf
) == 0)
915 if (atomicio(write
, fd
, ut
, sizeof(*ut
)) != sizeof(*ut
)) {
916 ftruncate(fd
, buf
.st_size
);
917 dropbear_log(LOG_WARNING
, "wtmp_write: problem writing %s: %s",
918 WTMP_FILE
, strerror(errno
));
926 wtmp_perform_login(struct logininfo
*li
)
930 construct_utmp(li
, &ut
);
931 return wtmp_write(li
, &ut
);
936 wtmp_perform_logout(struct logininfo
*li
)
940 construct_utmp(li
, &ut
);
941 return wtmp_write(li
, &ut
);
946 wtmp_write_entry(struct logininfo
*li
)
950 return wtmp_perform_login(li
);
952 return wtmp_perform_logout(li
);
954 dropbear_log(LOG_WARNING
, "wtmp_write_entry: invalid type field");
960 /* Notes on fetching login data from wtmp/wtmpx
962 * Logouts are usually recorded with (amongst other things) a blank
963 * username on a given tty line. However, some systems (HP-UX is one)
964 * leave all fields set, but change the ut_type field to DEAD_PROCESS.
966 * Since we're only looking for logins here, we know that the username
967 * must be set correctly. On systems that leave it in, we check for
968 * ut_type==USER_PROCESS (indicating a login.)
970 * Portability: Some systems may set something other than USER_PROCESS
971 * to indicate a login process. I don't know of any as I write. Also,
972 * it's possible that some systems may both leave the username in
973 * place and not have ut_type.
976 /* return true if this wtmp entry indicates a login */
978 wtmp_islogin(struct logininfo
*li
, struct utmp
*ut
)
980 if (strncmp(li
->username
, ut
->ut_name
,
981 MIN_SIZEOF(li
->username
, ut
->ut_name
)) == 0) {
982 # ifdef HAVE_STRUCT_UTMP_UT_TYPE
983 if (ut
->ut_type
& USER_PROCESS
)
993 wtmp_get_entry(struct logininfo
*li
)
999 /* Clear the time entries in our logininfo */
1000 li
->tv_sec
= li
->tv_usec
= 0;
1002 if ((fd
= open(WTMP_FILE
, O_RDONLY
)) < 0) {
1003 dropbear_log(LOG_WARNING
, "wtmp_get_entry: problem opening %s: %s",
1004 WTMP_FILE
, strerror(errno
));
1007 if (fstat(fd
, &st
) != 0) {
1008 dropbear_log(LOG_WARNING
, "wtmp_get_entry: couldn't stat %s: %s",
1009 WTMP_FILE
, strerror(errno
));
1014 /* Seek to the start of the last struct utmp */
1015 if (lseek(fd
, -(off_t
)sizeof(struct utmp
), SEEK_END
) == -1) {
1016 /* Looks like we've got a fresh wtmp file */
1022 if (atomicio(read
, fd
, &ut
, sizeof(ut
)) != sizeof(ut
)) {
1023 dropbear_log(LOG_WARNING
, "wtmp_get_entry: read of %s failed: %s",
1024 WTMP_FILE
, strerror(errno
));
1028 if ( wtmp_islogin(li
, &ut
) ) {
1030 /* We've already checked for a time in struct
1031 * utmp, in login_getlast(). */
1032 # ifdef HAVE_STRUCT_UTMP_UT_TIME
1033 li
->tv_sec
= ut
.ut_time
;
1035 # if HAVE_STRUCT_UTMP_UT_TV
1036 li
->tv_sec
= ut
.ut_tv
.tv_sec
;
1039 line_fullname(li
->line
, ut
.ut_line
,
1040 MIN_SIZEOF(li
->line
, ut
.ut_line
));
1041 # ifdef HAVE_STRUCT_UTMP_UT_HOST
1042 strlcpy(li
->hostname
, ut
.ut_host
,
1043 MIN_SIZEOF(li
->hostname
, ut
.ut_host
));
1047 /* Seek back 2 x struct utmp */
1048 if (lseek(fd
, -(off_t
)(2 * sizeof(struct utmp
)), SEEK_CUR
) == -1) {
1049 /* We've found the start of the file, so quit */
1055 /* We found an entry. Tidy up and return */
1059 # endif /* USE_WTMP */
1063 ** Low-level wtmpx functions
1067 /* write a wtmpx entry direct to the end of the file */
1068 /* This is a slight modification of code in OpenBSD's logwtmp.c */
1070 wtmpx_write(struct logininfo
*li
, struct utmpx
*utx
)
1075 if ((fd
= open(WTMPX_FILE
, O_WRONLY
|O_APPEND
, 0)) < 0) {
1076 dropbear_log(LOG_WARNING
, "wtmpx_write: problem opening %s: %s",
1077 WTMPX_FILE
, strerror(errno
));
1081 if (fstat(fd
, &buf
) == 0)
1082 if (atomicio(write
, fd
, utx
, sizeof(*utx
)) != sizeof(*utx
)) {
1083 ftruncate(fd
, buf
.st_size
);
1084 dropbear_log(LOG_WARNING
, "wtmpx_write: problem writing %s: %s",
1085 WTMPX_FILE
, strerror(errno
));
1095 wtmpx_perform_login(struct logininfo
*li
)
1099 construct_utmpx(li
, &utx
);
1100 return wtmpx_write(li
, &utx
);
1105 wtmpx_perform_logout(struct logininfo
*li
)
1109 construct_utmpx(li
, &utx
);
1110 return wtmpx_write(li
, &utx
);
1115 wtmpx_write_entry(struct logininfo
*li
)
1119 return wtmpx_perform_login(li
);
1121 return wtmpx_perform_logout(li
);
1123 dropbear_log(LOG_WARNING
, "wtmpx_write_entry: invalid type field");
1128 /* Please see the notes above wtmp_islogin() for information about the
1129 next two functions */
1131 /* Return true if this wtmpx entry indicates a login */
1133 wtmpx_islogin(struct logininfo
*li
, struct utmpx
*utx
)
1135 if ( strncmp(li
->username
, utx
->ut_name
,
1136 MIN_SIZEOF(li
->username
, utx
->ut_name
)) == 0 ) {
1137 # ifdef HAVE_STRUCT_UTMPX_UT_TYPE
1138 if (utx
->ut_type
== USER_PROCESS
)
1149 wtmpx_get_entry(struct logininfo
*li
)
1155 /* Clear the time entries */
1156 li
->tv_sec
= li
->tv_usec
= 0;
1158 if ((fd
= open(WTMPX_FILE
, O_RDONLY
)) < 0) {
1159 dropbear_log(LOG_WARNING
, "wtmpx_get_entry: problem opening %s: %s",
1160 WTMPX_FILE
, strerror(errno
));
1163 if (fstat(fd
, &st
) != 0) {
1164 dropbear_log(LOG_WARNING
, "wtmpx_get_entry: couldn't stat %s: %s",
1165 WTMPX_FILE
, strerror(errno
));
1170 /* Seek to the start of the last struct utmpx */
1171 if (lseek(fd
, -(off_t
)sizeof(struct utmpx
), SEEK_END
) == -1 ) {
1172 /* probably a newly rotated wtmpx file */
1178 if (atomicio(read
, fd
, &utx
, sizeof(utx
)) != sizeof(utx
)) {
1179 dropbear_log(LOG_WARNING
, "wtmpx_get_entry: read of %s failed: %s",
1180 WTMPX_FILE
, strerror(errno
));
1184 /* Logouts are recorded as a blank username on a particular line.
1185 * So, we just need to find the username in struct utmpx */
1186 if ( wtmpx_islogin(li
, &utx
) ) {
1188 # ifdef HAVE_STRUCT_UTMPX_UT_TV
1189 li
->tv_sec
= utx
.ut_tv
.tv_sec
;
1191 # ifdef HAVE_STRUCT_UTMPX_UT_TIME
1192 li
->tv_sec
= utx
.ut_time
;
1195 line_fullname(li
->line
, utx
.ut_line
, sizeof(li
->line
));
1196 # ifdef HAVE_STRUCT_UTMPX_UT_HOST
1197 strlcpy(li
->hostname
, utx
.ut_host
,
1198 MIN_SIZEOF(li
->hostname
, utx
.ut_host
));
1202 if (lseek(fd
, -(off_t
)(2 * sizeof(struct utmpx
)), SEEK_CUR
) == -1) {
1211 #endif /* USE_WTMPX */
1214 ** Low-level libutil login() functions
1219 syslogin_perform_login(struct logininfo
*li
)
1223 if (! (ut
= (struct utmp
*)malloc(sizeof(*ut
)))) {
1224 dropbear_log(LOG_WARNING
, "syslogin_perform_login: couldn't malloc()");
1227 construct_utmp(li
, ut
);
1235 syslogin_perform_logout(struct logininfo
*li
)
1240 (void)line_stripname(line
, li
->line
, sizeof(line
));
1242 if (!logout(line
)) {
1243 dropbear_log(LOG_WARNING
, "syslogin_perform_logout: logout(%s) returned an error: %s", line
, strerror(errno
));
1244 # ifdef HAVE_LOGWTMP
1246 logwtmp(line
, "", "");
1249 /* FIXME: (ATL - if the need arises) What to do if we have
1250 * login, but no logout? what if logout but no logwtmp? All
1251 * routines are in libutil so they should all be there,
1258 syslogin_write_entry(struct logininfo
*li
)
1262 return syslogin_perform_login(li
);
1264 return syslogin_perform_logout(li
);
1266 dropbear_log(LOG_WARNING
, "syslogin_write_entry: Invalid type field");
1270 #endif /* USE_LOGIN */
1272 /* end of file log-syslogin.c */
1275 ** Low-level lastlog functions
1284 lastlog_construct(struct logininfo
*li
, struct lastlog
*last
)
1286 /* clear the structure */
1287 memset(last
, '\0', sizeof(*last
));
1289 (void)line_stripname(last
->ll_line
, li
->line
, sizeof(last
->ll_line
));
1290 strlcpy(last
->ll_host
, li
->hostname
,
1291 MIN_SIZEOF(last
->ll_host
, li
->hostname
));
1292 last
->ll_time
= li
->tv_sec
;
1296 lastlog_filetype(char *filename
)
1300 if (stat(filename
, &st
) != 0) {
1301 dropbear_log(LOG_WARNING
, "lastlog_perform_login: Couldn't stat %s: %s", filename
,
1305 if (S_ISDIR(st
.st_mode
))
1307 else if (S_ISREG(st
.st_mode
))
1314 /* open the file (using filemode) and seek to the login entry */
1316 lastlog_openseek(struct logininfo
*li
, int *fd
, int filemode
)
1320 char lastlog_file
[1024];
1322 type
= lastlog_filetype(LASTLOG_FILE
);
1325 strlcpy(lastlog_file
, LASTLOG_FILE
, sizeof(lastlog_file
));
1328 snprintf(lastlog_file
, sizeof(lastlog_file
), "%s/%s",
1329 LASTLOG_FILE
, li
->username
);
1332 dropbear_log(LOG_WARNING
, "lastlog_openseek: %.100s is not a file or directory!",
1337 *fd
= open(lastlog_file
, filemode
, 0600);
1339 dropbear_log(LOG_INFO
, "lastlog_openseek: Couldn't open %s: %s",
1340 lastlog_file
, strerror(errno
));
1344 if (type
== LL_FILE
) {
1345 /* find this uid's offset in the lastlog file */
1346 offset
= (off_t
) ((long)li
->uid
* sizeof(struct lastlog
));
1348 if ( lseek(*fd
, offset
, SEEK_SET
) != offset
) {
1349 dropbear_log(LOG_WARNING
, "lastlog_openseek: %s->lseek(): %s",
1350 lastlog_file
, strerror(errno
));
1359 lastlog_perform_login(struct logininfo
*li
)
1361 struct lastlog last
;
1364 /* create our struct lastlog */
1365 lastlog_construct(li
, &last
);
1367 if (!lastlog_openseek(li
, &fd
, O_RDWR
|O_CREAT
))
1370 /* write the entry */
1371 if (atomicio(write
, fd
, &last
, sizeof(last
)) != sizeof(last
)) {
1373 dropbear_log(LOG_WARNING
, "lastlog_write_filemode: Error writing to %s: %s",
1374 LASTLOG_FILE
, strerror(errno
));
1383 lastlog_write_entry(struct logininfo
*li
)
1387 return lastlog_perform_login(li
);
1389 dropbear_log(LOG_WARNING
, "lastlog_write_entry: Invalid type field");
1394 #endif /* USE_LASTLOG */