blob: 9a427dec4125dd233b6be22167db1bc20a217e6b [file] [log] [blame]
andre2ff7b5d2000-06-03 14:57:40 +00001/*
2 * Copyright (c) 2000 Andre Lucas. All rights reserved.
andre61e67252000-06-04 17:07:49 +00003 * Portions copyright (c) 1998 Todd C. Miller
4 * Portions copyright (c) 1996 Jason Downs
5 * Portions copyright (c) 1996 Theo de Raadt
andre2ff7b5d2000-06-03 14:57:40 +00006 *
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.
andre2ff7b5d2000-06-03 14:57:40 +000015 *
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
Darren Tucker2fba9932005-02-02 23:30:24 +110028/*
29 * The btmp logging code is derived from login.c from util-linux and is under
30 * the the following license:
31 *
32 * Copyright (c) 1980, 1987, 1988 The Regents of the University of California.
33 * All rights reserved.
34 *
35 * Redistribution and use in source and binary forms are permitted
36 * provided that the above copyright notice and this paragraph are
37 * duplicated in all such forms and that any documentation,
38 * advertising materials, and other materials related to such
39 * distribution and use acknowledge that the software was developed
40 * by the University of California, Berkeley. The name of the
41 * University may not be used to endorse or promote products derived
42 * from this software without specific prior written permission.
43 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
44 * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
45 * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
46 */
47
48
Kevin Stevesef4eea92001-02-05 12:42:17 +000049/**
andre2ff7b5d2000-06-03 14:57:40 +000050 ** loginrec.c: platform-independent login recording and lastlog retrieval
51 **/
52
andre61e67252000-06-04 17:07:49 +000053/*
Damien Miller8899ed32004-09-12 15:18:55 +100054 * The new login code explained
55 * ============================
56 *
57 * This code attempts to provide a common interface to login recording
58 * (utmp and friends) and last login time retrieval.
59 *
60 * Its primary means of achieving this is to use 'struct logininfo', a
61 * union of all the useful fields in the various different types of
62 * system login record structures one finds on UNIX variants.
63 *
64 * We depend on autoconf to define which recording methods are to be
65 * used, and which fields are contained in the relevant data structures
66 * on the local system. Many C preprocessor symbols affect which code
67 * gets compiled here.
68 *
69 * The code is designed to make it easy to modify a particular
70 * recording method, without affecting other methods nor requiring so
71 * many nested conditional compilation blocks as were commonplace in
72 * the old code.
73 *
74 * For login recording, we try to use the local system's libraries as
75 * these are clearly most likely to work correctly. For utmp systems
76 * this usually means login() and logout() or setutent() etc., probably
77 * in libutil, along with logwtmp() etc. On these systems, we fall back
78 * to writing the files directly if we have to, though this method
79 * requires very thorough testing so we do not corrupt local auditing
80 * information. These files and their access methods are very system
81 * specific indeed.
82 *
83 * For utmpx systems, the corresponding library functions are
84 * setutxent() etc. To the author's knowledge, all utmpx systems have
85 * these library functions and so no direct write is attempted. If such
86 * a system exists and needs support, direct analogues of the [uw]tmp
87 * code should suffice.
88 *
89 * Retrieving the time of last login ('lastlog') is in some ways even
90 * more problemmatic than login recording. Some systems provide a
91 * simple table of all users which we seek based on uid and retrieve a
92 * relatively standard structure. Others record the same information in
93 * a directory with a separate file, and others don't record the
94 * information separately at all. For systems in the latter category,
95 * we look backwards in the wtmp or wtmpx file for the last login entry
96 * for our user. Naturally this is slower and on busy systems could
97 * incur a significant performance penalty.
98 *
99 * Calling the new code
100 * --------------------
101 *
102 * In OpenSSH all login recording and retrieval is performed in
103 * login.c. Here you'll find working examples. Also, in the logintest.c
104 * program there are more examples.
105 *
106 * Internal handler calling method
107 * -------------------------------
108 *
109 * When a call is made to login_login() or login_logout(), both
110 * routines set a struct logininfo flag defining which action (log in,
111 * or log out) is to be taken. They both then call login_write(), which
112 * calls whichever of the many structure-specific handlers autoconf
113 * selects for the local system.
114 *
115 * The handlers themselves handle system data structure specifics. Both
116 * struct utmp and struct utmpx have utility functions (see
117 * construct_utmp*()) to try to make it simpler to add extra systems
118 * that introduce new features to either structure.
119 *
120 * While it may seem terribly wasteful to replicate so much similar
121 * code for each method, experience has shown that maintaining code to
122 * write both struct utmp and utmpx in one function, whilst maintaining
123 * support for all systems whether they have library support or not, is
124 * a difficult and time-consuming task.
125 *
126 * Lastlog support proceeds similarly. Functions login_get_lastlog()
127 * (and its OpenSSH-tuned friend login_get_lastlog_time()) call
128 * getlast_entry(), which tries one of three methods to find the last
129 * login time. It uses local system lastlog support if it can,
130 * otherwise it tries wtmp or wtmpx before giving up and returning 0,
131 * meaning "tilt".
132 *
133 * Maintenance
134 * -----------
135 *
136 * In many cases it's possible to tweak autoconf to select the correct
137 * methods for a particular platform, either by improving the detection
138 * code (best), or by presetting DISABLE_<method> or CONF_<method>_FILE
139 * symbols for the platform.
140 *
141 * Use logintest to check which symbols are defined before modifying
142 * configure.ac and loginrec.c. (You have to build logintest yourself
143 * with 'make logintest' as it's not built by default.)
144 *
145 * Otherwise, patches to the specific method(s) are very helpful!
146 */
andre2ff7b5d2000-06-03 14:57:40 +0000147
148#include "includes.h"
149
Damien Miller62772522006-03-15 14:01:11 +1100150#include <sys/types.h>
151#include <sys/stat.h>
Damien Miller8ec8c3e2006-07-10 20:35:38 +1000152#include <sys/socket.h>
Darren Tuckerc6f5f012015-12-15 13:59:12 +1100153#ifdef HAVE_SYS_TIME_H
154# include <sys/time.h>
155#endif
Damien Miller8ec8c3e2006-07-10 20:35:38 +1000156
157#include <netinet/in.h>
Damien Miller62772522006-03-15 14:01:11 +1100158
Darren Tucker2c1a02a2006-07-12 22:40:50 +1000159#include <errno.h>
Damien Millera1738e42006-07-10 21:33:04 +1000160#include <fcntl.h>
Darren Tuckerf19bbc32006-09-07 22:57:53 +1000161#ifdef HAVE_PATHS_H
162# include <paths.h>
163#endif
Damien Miller9f2abc42006-07-10 20:53:08 +1000164#include <pwd.h>
Damien Millerded319c2006-09-01 15:38:36 +1000165#include <stdarg.h>
Damien Millerb8fe89c2006-07-24 14:51:00 +1000166#include <string.h>
Darren Tuckerd757e692007-04-29 12:10:57 +1000167#include <time.h>
Damien Millerb8fe89c2006-07-24 14:51:00 +1000168#include <unistd.h>
Damien Miller9f2abc42006-07-10 20:53:08 +1000169
andre2ff7b5d2000-06-03 14:57:40 +0000170#include "xmalloc.h"
markus@openbsd.org5467fbc2018-07-11 18:53:29 +0000171#include "sshkey.h"
Damien Millerd7834352006-08-05 12:39:39 +1000172#include "hostfile.h"
173#include "ssh.h"
andre2ff7b5d2000-06-03 14:57:40 +0000174#include "loginrec.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000175#include "log.h"
176#include "atomicio.h"
Darren Tucker2fba9932005-02-02 23:30:24 +1100177#include "packet.h"
178#include "canohost.h"
Darren Tucker269a1ea2005-02-03 00:20:53 +1100179#include "auth.h"
Damien Miller120a1ec2018-07-10 19:39:52 +1000180#include "sshbuf.h"
181#include "ssherr.h"
andre2ff7b5d2000-06-03 14:57:40 +0000182
Ben Lindstromdcca9812000-11-10 03:28:31 +0000183#ifdef HAVE_UTIL_H
Damien Miller8899ed32004-09-12 15:18:55 +1000184# include <util.h>
Ben Lindstromdcca9812000-11-10 03:28:31 +0000185#endif
andre2ff7b5d2000-06-03 14:57:40 +0000186
187/**
188 ** prototypes for helper functions in this file
189 **/
190
191#if HAVE_UTMP_H
andre2ff7b5d2000-06-03 14:57:40 +0000192void set_utmp_time(struct logininfo *li, struct utmp *ut);
193void construct_utmp(struct logininfo *li, struct utmp *ut);
194#endif
195
196#ifdef HAVE_UTMPX_H
andre2ff7b5d2000-06-03 14:57:40 +0000197void set_utmpx_time(struct logininfo *li, struct utmpx *ut);
198void construct_utmpx(struct logininfo *li, struct utmpx *ut);
199#endif
200
201int utmp_write_entry(struct logininfo *li);
202int utmpx_write_entry(struct logininfo *li);
203int wtmp_write_entry(struct logininfo *li);
204int wtmpx_write_entry(struct logininfo *li);
205int lastlog_write_entry(struct logininfo *li);
206int syslogin_write_entry(struct logininfo *li);
207
208int getlast_entry(struct logininfo *li);
209int lastlog_get_entry(struct logininfo *li);
Darren Tucker261d93a2010-04-09 18:13:27 +1000210int utmpx_get_entry(struct logininfo *li);
andre2ff7b5d2000-06-03 14:57:40 +0000211int wtmp_get_entry(struct logininfo *li);
212int wtmpx_get_entry(struct logininfo *li);
213
Damien Miller120a1ec2018-07-10 19:39:52 +1000214extern struct sshbuf *loginmsg;
Darren Tucker691d5232005-02-15 21:45:57 +1100215
andre6bb92372000-06-19 08:20:03 +0000216/* pick the shortest string */
Damien Miller8899ed32004-09-12 15:18:55 +1000217#define MIN_SIZEOF(s1,s2) (sizeof(s1) < sizeof(s2) ? sizeof(s1) : sizeof(s2))
andre6bb92372000-06-19 08:20:03 +0000218
andre2ff7b5d2000-06-03 14:57:40 +0000219/**
220 ** platform-independent login functions
221 **/
222
Damien Miller8899ed32004-09-12 15:18:55 +1000223/*
224 * login_login(struct logininfo *) - Record a login
Kevin Stevesef4eea92001-02-05 12:42:17 +0000225 *
andre6bb92372000-06-19 08:20:03 +0000226 * Call with a pointer to a struct logininfo initialised with
227 * login_init_entry() or login_alloc_entry()
228 *
229 * Returns:
230 * >0 if successful
231 * 0 on failure (will use OpenSSH's logging facilities for diagnostics)
232 */
andre61e67252000-06-04 17:07:49 +0000233int
Damien Miller8899ed32004-09-12 15:18:55 +1000234login_login(struct logininfo *li)
andre61e67252000-06-04 17:07:49 +0000235{
236 li->type = LTYPE_LOGIN;
Damien Miller8899ed32004-09-12 15:18:55 +1000237 return (login_write(li));
andre61e67252000-06-04 17:07:49 +0000238}
239
240
Damien Miller8899ed32004-09-12 15:18:55 +1000241/*
242 * login_logout(struct logininfo *) - Record a logout
andre6bb92372000-06-19 08:20:03 +0000243 *
244 * Call as with login_login()
245 *
246 * Returns:
247 * >0 if successful
248 * 0 on failure (will use OpenSSH's logging facilities for diagnostics)
249 */
andre61e67252000-06-04 17:07:49 +0000250int
251login_logout(struct logininfo *li)
252{
253 li->type = LTYPE_LOGOUT;
Damien Miller8899ed32004-09-12 15:18:55 +1000254 return (login_write(li));
andre61e67252000-06-04 17:07:49 +0000255}
256
Damien Miller8899ed32004-09-12 15:18:55 +1000257/*
258 * login_get_lastlog_time(int) - Retrieve the last login time
andre6bb92372000-06-19 08:20:03 +0000259 *
260 * Retrieve the last login time for the given uid. Will try to use the
261 * system lastlog facilities if they are available, but will fall back
262 * to looking in wtmp/wtmpx if necessary
263 *
264 * Returns:
265 * 0 on failure, or if user has never logged in
266 * Time in seconds from the epoch if successful
267 *
268 * Useful preprocessor symbols:
269 * DISABLE_LASTLOG: If set, *never* even try to retrieve lastlog
270 * info
271 * USE_LASTLOG: If set, indicates the presence of system lastlog
272 * facilities. If this and DISABLE_LASTLOG are not set,
273 * try to retrieve lastlog information from wtmp/wtmpx.
274 */
andre61e67252000-06-04 17:07:49 +0000275unsigned int
Damien Miller34ee4202010-11-05 10:52:37 +1100276login_get_lastlog_time(const uid_t uid)
andre61e67252000-06-04 17:07:49 +0000277{
278 struct logininfo li;
279
andre6bb92372000-06-19 08:20:03 +0000280 if (login_get_lastlog(&li, uid))
Damien Miller8899ed32004-09-12 15:18:55 +1000281 return (li.tv_sec);
andre6bb92372000-06-19 08:20:03 +0000282 else
Damien Miller8899ed32004-09-12 15:18:55 +1000283 return (0);
andre61e67252000-06-04 17:07:49 +0000284}
285
Damien Miller8899ed32004-09-12 15:18:55 +1000286/*
287 * login_get_lastlog(struct logininfo *, int) - Retrieve a lastlog entry
andre6bb92372000-06-19 08:20:03 +0000288 *
289 * Retrieve a logininfo structure populated (only partially) with
290 * information from the system lastlog data, or from wtmp/wtmpx if no
291 * system lastlog information exists.
292 *
293 * Note this routine must be given a pre-allocated logininfo.
294 *
295 * Returns:
296 * >0: A pointer to your struct logininfo if successful
297 * 0 on failure (will use OpenSSH's logging facilities for diagnostics)
andre6bb92372000-06-19 08:20:03 +0000298 */
andre61e67252000-06-04 17:07:49 +0000299struct logininfo *
Damien Miller34ee4202010-11-05 10:52:37 +1100300login_get_lastlog(struct logininfo *li, const uid_t uid)
andre61e67252000-06-04 17:07:49 +0000301{
andre6bb92372000-06-19 08:20:03 +0000302 struct passwd *pw;
andre6bb92372000-06-19 08:20:03 +0000303
Damien Miller348c9b72000-08-15 10:01:22 +1000304 memset(li, '\0', sizeof(*li));
andre61e67252000-06-04 17:07:49 +0000305 li->uid = uid;
andre6bb92372000-06-19 08:20:03 +0000306
Kevin Stevesef4eea92001-02-05 12:42:17 +0000307 /*
Damien Miller53c5d462000-06-28 00:50:50 +1000308 * If we don't have a 'real' lastlog, we need the username to
andre6bb92372000-06-19 08:20:03 +0000309 * reliably search wtmp(x) for the last login (see
Kevin Stevesef4eea92001-02-05 12:42:17 +0000310 * wtmp_get_entry().)
Damien Miller53c5d462000-06-28 00:50:50 +1000311 */
andre6bb92372000-06-19 08:20:03 +0000312 pw = getpwuid(uid);
Damien Millerdd47aa22000-06-27 11:18:27 +1000313 if (pw == NULL)
Damien Miller34ee4202010-11-05 10:52:37 +1100314 fatal("%s: Cannot find account for uid %ld", __func__,
315 (long)uid);
Kevin Stevesef4eea92001-02-05 12:42:17 +0000316
Damien Miller7d97fd92013-12-29 17:40:18 +1100317 if (strlcpy(li->username, pw->pw_name, sizeof(li->username)) >=
318 sizeof(li->username)) {
319 error("%s: username too long (%lu > max %lu)", __func__,
Darren Tucker1c4a0112014-01-17 12:23:23 +1100320 (unsigned long)strlen(pw->pw_name),
321 (unsigned long)sizeof(li->username) - 1);
Damien Miller7d97fd92013-12-29 17:40:18 +1100322 return NULL;
323 }
Damien Millerdd47aa22000-06-27 11:18:27 +1000324
andre61e67252000-06-04 17:07:49 +0000325 if (getlast_entry(li))
Damien Miller8899ed32004-09-12 15:18:55 +1000326 return (li);
andre61e67252000-06-04 17:07:49 +0000327 else
Damien Miller8899ed32004-09-12 15:18:55 +1000328 return (NULL);
andre61e67252000-06-04 17:07:49 +0000329}
330
Damien Miller8899ed32004-09-12 15:18:55 +1000331/*
332 * login_alloc_entry(int, char*, char*, char*) - Allocate and initialise
Kevin Stevesef4eea92001-02-05 12:42:17 +0000333 * a logininfo structure
334 *
andre6bb92372000-06-19 08:20:03 +0000335 * This function creates a new struct logininfo, a data structure
336 * meant to carry the information required to portably record login info.
337 *
338 * Returns a pointer to a newly created struct logininfo. If memory
339 * allocation fails, the program halts.
340 */
andre61e67252000-06-04 17:07:49 +0000341struct
Damien Miller34ee4202010-11-05 10:52:37 +1100342logininfo *login_alloc_entry(pid_t pid, const char *username,
Damien Miller8899ed32004-09-12 15:18:55 +1000343 const char *hostname, const char *line)
andre61e67252000-06-04 17:07:49 +0000344{
andre2ff7b5d2000-06-03 14:57:40 +0000345 struct logininfo *newli;
346
Damien Miller8899ed32004-09-12 15:18:55 +1000347 newli = xmalloc(sizeof(*newli));
348 login_init_entry(newli, pid, username, hostname, line);
349 return (newli);
andre61e67252000-06-04 17:07:49 +0000350}
andre2ff7b5d2000-06-03 14:57:40 +0000351
352
andre6bb92372000-06-19 08:20:03 +0000353/* login_free_entry(struct logininfo *) - free struct memory */
andre61e67252000-06-04 17:07:49 +0000354void
355login_free_entry(struct logininfo *li)
356{
Darren Tuckerf60845f2013-06-02 08:07:31 +1000357 free(li);
andre61e67252000-06-04 17:07:49 +0000358}
359
andre2ff7b5d2000-06-03 14:57:40 +0000360
andre6bb92372000-06-19 08:20:03 +0000361/* login_init_entry(struct logininfo *, int, char*, char*, char*)
362 * - initialise a struct logininfo
Kevin Stevesef4eea92001-02-05 12:42:17 +0000363 *
andre6bb92372000-06-19 08:20:03 +0000364 * Populates a new struct logininfo, a data structure meant to carry
365 * the information required to portably record login info.
366 *
367 * Returns: 1
368 */
andre61e67252000-06-04 17:07:49 +0000369int
Damien Miller34ee4202010-11-05 10:52:37 +1100370login_init_entry(struct logininfo *li, pid_t pid, const char *username,
Damien Miller8899ed32004-09-12 15:18:55 +1000371 const char *hostname, const char *line)
andre61e67252000-06-04 17:07:49 +0000372{
Damien Millerf8af08d2000-06-27 09:40:06 +1000373 struct passwd *pw;
Kevin Stevesef4eea92001-02-05 12:42:17 +0000374
Damien Miller348c9b72000-08-15 10:01:22 +1000375 memset(li, 0, sizeof(*li));
Kevin Stevesef4eea92001-02-05 12:42:17 +0000376
andre61e67252000-06-04 17:07:49 +0000377 li->pid = pid;
Damien Millerf8af08d2000-06-27 09:40:06 +1000378
andre2ff7b5d2000-06-03 14:57:40 +0000379 /* set the line information */
andre61e67252000-06-04 17:07:49 +0000380 if (line)
andre2ff7b5d2000-06-03 14:57:40 +0000381 line_fullname(li->line, line, sizeof(li->line));
andre2ff7b5d2000-06-03 14:57:40 +0000382
Damien Millerf8af08d2000-06-27 09:40:06 +1000383 if (username) {
andre2ff7b5d2000-06-03 14:57:40 +0000384 strlcpy(li->username, username, sizeof(li->username));
Damien Millerf8af08d2000-06-27 09:40:06 +1000385 pw = getpwnam(li->username);
Damien Miller8899ed32004-09-12 15:18:55 +1000386 if (pw == NULL) {
Damien Miller94cf4c82005-07-17 17:04:47 +1000387 fatal("%s: Cannot find user \"%s\"", __func__,
Damien Miller8899ed32004-09-12 15:18:55 +1000388 li->username);
389 }
Damien Millerf8af08d2000-06-27 09:40:06 +1000390 li->uid = pw->pw_uid;
391 }
Damien Millerdd47aa22000-06-27 11:18:27 +1000392
andre61e67252000-06-04 17:07:49 +0000393 if (hostname)
andre2ff7b5d2000-06-03 14:57:40 +0000394 strlcpy(li->hostname, hostname, sizeof(li->hostname));
Damien Millerf8af08d2000-06-27 09:40:06 +1000395
Damien Miller8899ed32004-09-12 15:18:55 +1000396 return (1);
andre2ff7b5d2000-06-03 14:57:40 +0000397}
398
Damien Miller94cf4c82005-07-17 17:04:47 +1000399/*
Damien Miller8899ed32004-09-12 15:18:55 +1000400 * login_set_current_time(struct logininfo *) - set the current time
andre6bb92372000-06-19 08:20:03 +0000401 *
402 * Set the current time in a logininfo structure. This function is
403 * meant to eliminate the need to deal with system dependencies for
404 * time handling.
405 */
andre2ff7b5d2000-06-03 14:57:40 +0000406void
andre61e67252000-06-04 17:07:49 +0000407login_set_current_time(struct logininfo *li)
408{
andre2ff7b5d2000-06-03 14:57:40 +0000409 struct timeval tv;
410
411 gettimeofday(&tv, NULL);
Kevin Stevesef4eea92001-02-05 12:42:17 +0000412
Damien Millerf8af08d2000-06-27 09:40:06 +1000413 li->tv_sec = tv.tv_sec;
414 li->tv_usec = tv.tv_usec;
andre2ff7b5d2000-06-03 14:57:40 +0000415}
416
andre61e67252000-06-04 17:07:49 +0000417/* copy a sockaddr_* into our logininfo */
andre2ff7b5d2000-06-03 14:57:40 +0000418void
andre61e67252000-06-04 17:07:49 +0000419login_set_addr(struct logininfo *li, const struct sockaddr *sa,
Damien Miller8899ed32004-09-12 15:18:55 +1000420 const unsigned int sa_size)
andre61e67252000-06-04 17:07:49 +0000421{
422 unsigned int bufsize = sa_size;
423
424 /* make sure we don't overrun our union */
425 if (sizeof(li->hostaddr) < sa_size)
426 bufsize = sizeof(li->hostaddr);
427
Damien Miller8899ed32004-09-12 15:18:55 +1000428 memcpy(&li->hostaddr.sa, sa, bufsize);
andre2ff7b5d2000-06-03 14:57:40 +0000429}
430
andre2ff7b5d2000-06-03 14:57:40 +0000431
andre61e67252000-06-04 17:07:49 +0000432/**
433 ** login_write: Call low-level recording functions based on autoconf
434 ** results
435 **/
andre2ff7b5d2000-06-03 14:57:40 +0000436int
Damien Miller8899ed32004-09-12 15:18:55 +1000437login_write(struct logininfo *li)
andre61e67252000-06-04 17:07:49 +0000438{
Damien Millerbac2d8a2000-09-05 16:13:06 +1100439#ifndef HAVE_CYGWIN
Damien Miller8899ed32004-09-12 15:18:55 +1000440 if (geteuid() != 0) {
441 logit("Attempt to write login records by non-root user (aborting)");
442 return (1);
andre2ff7b5d2000-06-03 14:57:40 +0000443 }
Damien Millerbac2d8a2000-09-05 16:13:06 +1100444#endif
Damien Millerdd47aa22000-06-27 11:18:27 +1000445
andre2ff7b5d2000-06-03 14:57:40 +0000446 /* set the timestamp */
447 login_set_current_time(li);
448#ifdef USE_LOGIN
449 syslogin_write_entry(li);
450#endif
451#ifdef USE_LASTLOG
Damien Miller8899ed32004-09-12 15:18:55 +1000452 if (li->type == LTYPE_LOGIN)
andre2ff7b5d2000-06-03 14:57:40 +0000453 lastlog_write_entry(li);
andre2ff7b5d2000-06-03 14:57:40 +0000454#endif
455#ifdef USE_UTMP
456 utmp_write_entry(li);
457#endif
458#ifdef USE_WTMP
459 wtmp_write_entry(li);
460#endif
461#ifdef USE_UTMPX
462 utmpx_write_entry(li);
463#endif
464#ifdef USE_WTMPX
465 wtmpx_write_entry(li);
466#endif
Darren Tucker397a2f22004-08-15 00:09:11 +1000467#ifdef CUSTOM_SYS_AUTH_RECORD_LOGIN
Damien Miller94cf4c82005-07-17 17:04:47 +1000468 if (li->type == LTYPE_LOGIN &&
Damien Millerb6f72f52005-07-17 17:26:43 +1000469 !sys_auth_record_login(li->username,li->hostname,li->line,
470 &loginmsg))
Darren Tucker397a2f22004-08-15 00:09:11 +1000471 logit("Writing login record failed for %s", li->username);
472#endif
Darren Tucker2e0cf0d2005-02-08 21:52:47 +1100473#ifdef SSH_AUDIT_EVENTS
Darren Tucker269a1ea2005-02-03 00:20:53 +1100474 if (li->type == LTYPE_LOGIN)
Darren Tuckerea52a822011-01-17 21:15:27 +1100475 audit_session_open(li);
Darren Tucker269a1ea2005-02-03 00:20:53 +1100476 else if (li->type == LTYPE_LOGOUT)
Darren Tuckerea52a822011-01-17 21:15:27 +1100477 audit_session_close(li);
Darren Tucker269a1ea2005-02-03 00:20:53 +1100478#endif
Damien Miller8899ed32004-09-12 15:18:55 +1000479 return (0);
andre2ff7b5d2000-06-03 14:57:40 +0000480}
481
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000482#ifdef LOGIN_NEEDS_UTMPX
483int
484login_utmp_only(struct logininfo *li)
485{
Damien Millera8e06ce2003-11-21 23:48:55 +1100486 li->type = LTYPE_LOGIN;
Ben Lindstrom9197c592001-10-26 15:56:55 +0000487 login_set_current_time(li);
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000488# ifdef USE_UTMP
489 utmp_write_entry(li);
490# endif
491# ifdef USE_WTMP
492 wtmp_write_entry(li);
493# endif
494# ifdef USE_UTMPX
495 utmpx_write_entry(li);
496# endif
497# ifdef USE_WTMPX
498 wtmpx_write_entry(li);
499# endif
Damien Miller8899ed32004-09-12 15:18:55 +1000500 return (0);
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000501}
502#endif
503
andre2ff7b5d2000-06-03 14:57:40 +0000504/**
andre61e67252000-06-04 17:07:49 +0000505 ** getlast_entry: Call low-level functions to retrieve the last login
506 ** time.
andre2ff7b5d2000-06-03 14:57:40 +0000507 **/
508
andre61e67252000-06-04 17:07:49 +0000509/* take the uid in li and return the last login time */
510int
511getlast_entry(struct logininfo *li)
512{
513#ifdef USE_LASTLOG
Damien Miller53c5d462000-06-28 00:50:50 +1000514 return(lastlog_get_entry(li));
Damien Millerdd47aa22000-06-27 11:18:27 +1000515#else /* !USE_LASTLOG */
Darren Tucker261d93a2010-04-09 18:13:27 +1000516#if defined(USE_UTMPX) && defined(HAVE_SETUTXDB) && \
517 defined(UTXDB_LASTLOGIN) && defined(HAVE_GETUTXUSER)
518 return (utmpx_get_entry(li));
519#endif
andre61e67252000-06-04 17:07:49 +0000520
Damien Miller8899ed32004-09-12 15:18:55 +1000521#if defined(DISABLE_LASTLOG)
Kevin Stevesef4eea92001-02-05 12:42:17 +0000522 /* On some systems we shouldn't even try to obtain last login
andreecaabf12000-06-12 22:21:44 +0000523 * time, e.g. AIX */
Damien Miller8899ed32004-09-12 15:18:55 +1000524 return (0);
525# elif defined(USE_WTMP) && \
526 (defined(HAVE_TIME_IN_UTMP) || defined(HAVE_TV_IN_UTMP))
andre61e67252000-06-04 17:07:49 +0000527 /* retrieve last login time from utmp */
Damien Millerdd47aa22000-06-27 11:18:27 +1000528 return (wtmp_get_entry(li));
Damien Miller8899ed32004-09-12 15:18:55 +1000529# elif defined(USE_WTMPX) && \
530 (defined(HAVE_TIME_IN_UTMPX) || defined(HAVE_TV_IN_UTMPX))
andre61e67252000-06-04 17:07:49 +0000531 /* If wtmp isn't available, try wtmpx */
Damien Millerdd47aa22000-06-27 11:18:27 +1000532 return (wtmpx_get_entry(li));
Damien Miller8899ed32004-09-12 15:18:55 +1000533# else
andre61e67252000-06-04 17:07:49 +0000534 /* Give up: No means of retrieving last login time */
Damien Miller8899ed32004-09-12 15:18:55 +1000535 return (0);
Kevin Stevesef4eea92001-02-05 12:42:17 +0000536# endif /* DISABLE_LASTLOG */
Damien Millerdd47aa22000-06-27 11:18:27 +1000537#endif /* USE_LASTLOG */
andre61e67252000-06-04 17:07:49 +0000538}
539
540
541
andre2ff7b5d2000-06-03 14:57:40 +0000542/*
andre61e67252000-06-04 17:07:49 +0000543 * 'line' string utility functions
544 *
545 * These functions process the 'line' string into one of three forms:
546 *
andre2ff7b5d2000-06-03 14:57:40 +0000547 * 1. The full filename (including '/dev')
548 * 2. The stripped name (excluding '/dev')
andre61e67252000-06-04 17:07:49 +0000549 * 3. The abbreviated name (e.g. /dev/ttyp00 -> yp00
550 * /dev/pts/1 -> ts/1 )
andre2ff7b5d2000-06-03 14:57:40 +0000551 *
552 * Form 3 is used on some systems to identify a .tmp.? entry when
553 * attempting to remove it. Typically both addition and removal is
andre61e67252000-06-04 17:07:49 +0000554 * performed by one application - say, sshd - so as long as the choice
555 * uniquely identifies a terminal it's ok.
andre2ff7b5d2000-06-03 14:57:40 +0000556 */
557
558
Damien Miller8899ed32004-09-12 15:18:55 +1000559/*
560 * line_fullname(): add the leading '/dev/' if it doesn't exist make
561 * sure dst has enough space, if not just copy src (ugh)
562 */
andre2ff7b5d2000-06-03 14:57:40 +0000563char *
Damien Miller52c8afe2005-06-19 10:19:43 +1000564line_fullname(char *dst, const char *src, u_int dstsize)
andre61e67252000-06-04 17:07:49 +0000565{
andre2ff7b5d2000-06-03 14:57:40 +0000566 memset(dst, '\0', dstsize);
Damien Miller8899ed32004-09-12 15:18:55 +1000567 if ((strncmp(src, "/dev/", 5) == 0) || (dstsize < (strlen(src) + 5)))
andre2ff7b5d2000-06-03 14:57:40 +0000568 strlcpy(dst, src, dstsize);
Damien Miller8899ed32004-09-12 15:18:55 +1000569 else {
Damien Miller1a132252000-06-13 21:23:17 +1000570 strlcpy(dst, "/dev/", dstsize);
andre2ff7b5d2000-06-03 14:57:40 +0000571 strlcat(dst, src, dstsize);
572 }
Damien Miller8899ed32004-09-12 15:18:55 +1000573 return (dst);
andre2ff7b5d2000-06-03 14:57:40 +0000574}
575
andre61e67252000-06-04 17:07:49 +0000576/* line_stripname(): strip the leading '/dev' if it exists, return dst */
andre2ff7b5d2000-06-03 14:57:40 +0000577char *
andre61e67252000-06-04 17:07:49 +0000578line_stripname(char *dst, const char *src, int dstsize)
579{
andre2ff7b5d2000-06-03 14:57:40 +0000580 memset(dst, '\0', dstsize);
581 if (strncmp(src, "/dev/", 5) == 0)
Damien Millerf5a81472000-09-30 21:34:44 +1100582 strlcpy(dst, src + 5, dstsize);
andre2ff7b5d2000-06-03 14:57:40 +0000583 else
584 strlcpy(dst, src, dstsize);
Damien Miller8899ed32004-09-12 15:18:55 +1000585 return (dst);
andre61e67252000-06-04 17:07:49 +0000586}
587
Damien Miller94cf4c82005-07-17 17:04:47 +1000588/*
Damien Miller8899ed32004-09-12 15:18:55 +1000589 * line_abbrevname(): Return the abbreviated (usually four-character)
andre61e67252000-06-04 17:07:49 +0000590 * form of the line (Just use the last <dstsize> characters of the
591 * full name.)
592 *
593 * NOTE: use strncpy because we do NOT necessarily want zero
Damien Miller8899ed32004-09-12 15:18:55 +1000594 * termination
595 */
andre2ff7b5d2000-06-03 14:57:40 +0000596char *
Kevin Stevesef4eea92001-02-05 12:42:17 +0000597line_abbrevname(char *dst, const char *src, int dstsize)
Damien Millerdd47aa22000-06-27 11:18:27 +1000598{
599 size_t len;
Kevin Stevesef4eea92001-02-05 12:42:17 +0000600
andre2ff7b5d2000-06-03 14:57:40 +0000601 memset(dst, '\0', dstsize);
Kevin Stevesef4eea92001-02-05 12:42:17 +0000602
Damien Miller8e81ed32000-07-01 13:17:42 +1000603 /* Always skip prefix if present */
604 if (strncmp(src, "/dev/", 5) == 0)
605 src += 5;
Kevin Stevesef4eea92001-02-05 12:42:17 +0000606
Damien Millerf1b9d112002-04-23 23:09:19 +1000607#ifdef WITH_ABBREV_NO_TTY
608 if (strncmp(src, "tty", 3) == 0)
609 src += 3;
610#endif
611
Damien Millerdd47aa22000-06-27 11:18:27 +1000612 len = strlen(src);
613
Damien Miller8e81ed32000-07-01 13:17:42 +1000614 if (len > 0) {
615 if (((int)len - dstsize) > 0)
616 src += ((int)len - dstsize);
617
618 /* note: _don't_ change this to strlcpy */
Kevin Stevesef4eea92001-02-05 12:42:17 +0000619 strncpy(dst, src, (size_t)dstsize);
Damien Millerdd47aa22000-06-27 11:18:27 +1000620 }
Kevin Stevesef4eea92001-02-05 12:42:17 +0000621
Damien Miller8899ed32004-09-12 15:18:55 +1000622 return (dst);
andre2ff7b5d2000-06-03 14:57:40 +0000623}
624
andre2ff7b5d2000-06-03 14:57:40 +0000625/**
626 ** utmp utility functions
andre61e67252000-06-04 17:07:49 +0000627 **
628 ** These functions manipulate struct utmp, taking system differences
629 ** into account.
andre2ff7b5d2000-06-03 14:57:40 +0000630 **/
631
632#if defined(USE_UTMP) || defined (USE_WTMP) || defined (USE_LOGIN)
633
andre2ff7b5d2000-06-03 14:57:40 +0000634/* build the utmp structure */
635void
andre61e67252000-06-04 17:07:49 +0000636set_utmp_time(struct logininfo *li, struct utmp *ut)
637{
Damien Miller8899ed32004-09-12 15:18:55 +1000638# if defined(HAVE_TV_IN_UTMP)
andre2ff7b5d2000-06-03 14:57:40 +0000639 ut->ut_tv.tv_sec = li->tv_sec;
640 ut->ut_tv.tv_usec = li->tv_usec;
Damien Miller8899ed32004-09-12 15:18:55 +1000641# elif defined(HAVE_TIME_IN_UTMP)
andre2ff7b5d2000-06-03 14:57:40 +0000642 ut->ut_time = li->tv_sec;
Damien Millerdd47aa22000-06-27 11:18:27 +1000643# endif
andre2ff7b5d2000-06-03 14:57:40 +0000644}
645
646void
647construct_utmp(struct logininfo *li,
andre61e67252000-06-04 17:07:49 +0000648 struct utmp *ut)
649{
Damien Miller02e16ad2003-01-03 14:42:27 +1100650# ifdef HAVE_ADDR_V6_IN_UTMP
651 struct sockaddr_in6 *sa6;
Damien Miller8899ed32004-09-12 15:18:55 +1000652# endif
653
Damien Miller348c9b72000-08-15 10:01:22 +1000654 memset(ut, '\0', sizeof(*ut));
andre6bb92372000-06-19 08:20:03 +0000655
656 /* First fill out fields used for both logins and logouts */
657
Damien Millerdd47aa22000-06-27 11:18:27 +1000658# ifdef HAVE_ID_IN_UTMP
andre2ff7b5d2000-06-03 14:57:40 +0000659 line_abbrevname(ut->ut_id, li->line, sizeof(ut->ut_id));
Damien Millerdd47aa22000-06-27 11:18:27 +1000660# endif
andre2ff7b5d2000-06-03 14:57:40 +0000661
Damien Millerdd47aa22000-06-27 11:18:27 +1000662# ifdef HAVE_TYPE_IN_UTMP
andre6bb92372000-06-19 08:20:03 +0000663 /* This is done here to keep utmp constants out of struct logininfo */
andre2ff7b5d2000-06-03 14:57:40 +0000664 switch (li->type) {
665 case LTYPE_LOGIN:
666 ut->ut_type = USER_PROCESS;
667 break;
668 case LTYPE_LOGOUT:
669 ut->ut_type = DEAD_PROCESS;
670 break;
671 }
Damien Millerdd47aa22000-06-27 11:18:27 +1000672# endif
andre6bb92372000-06-19 08:20:03 +0000673 set_utmp_time(li, ut);
andre2ff7b5d2000-06-03 14:57:40 +0000674
andre6bb92372000-06-19 08:20:03 +0000675 line_stripname(ut->ut_line, li->line, sizeof(ut->ut_line));
Damien Millerdd47aa22000-06-27 11:18:27 +1000676
677# ifdef HAVE_PID_IN_UTMP
andre2ff7b5d2000-06-03 14:57:40 +0000678 ut->ut_pid = li->pid;
Damien Millerdd47aa22000-06-27 11:18:27 +1000679# endif
andre6bb92372000-06-19 08:20:03 +0000680
681 /* If we're logging out, leave all other fields blank */
682 if (li->type == LTYPE_LOGOUT)
Damien Miller8899ed32004-09-12 15:18:55 +1000683 return;
andre6bb92372000-06-19 08:20:03 +0000684
Damien Millerdd47aa22000-06-27 11:18:27 +1000685 /*
686 * These fields are only used when logging in, and are blank
Kevin Stevesef4eea92001-02-05 12:42:17 +0000687 * for logouts.
Damien Millerdd47aa22000-06-27 11:18:27 +1000688 */
andre6bb92372000-06-19 08:20:03 +0000689
690 /* Use strncpy because we don't necessarily want null termination */
Damien Miller8899ed32004-09-12 15:18:55 +1000691 strncpy(ut->ut_name, li->username,
692 MIN_SIZEOF(ut->ut_name, li->username));
Damien Millerdd47aa22000-06-27 11:18:27 +1000693# ifdef HAVE_HOST_IN_UTMP
Damien Miller8899ed32004-09-12 15:18:55 +1000694 strncpy(ut->ut_host, li->hostname,
695 MIN_SIZEOF(ut->ut_host, li->hostname));
Damien Millerdd47aa22000-06-27 11:18:27 +1000696# endif
697# ifdef HAVE_ADDR_IN_UTMP
andre61e67252000-06-04 17:07:49 +0000698 /* this is just a 32-bit IP address */
699 if (li->hostaddr.sa.sa_family == AF_INET)
700 ut->ut_addr = li->hostaddr.sa_in.sin_addr.s_addr;
Kevin Stevesef4eea92001-02-05 12:42:17 +0000701# endif
Damien Miller02e16ad2003-01-03 14:42:27 +1100702# ifdef HAVE_ADDR_V6_IN_UTMP
703 /* this is just a 128-bit IPv6 address */
704 if (li->hostaddr.sa.sa_family == AF_INET6) {
705 sa6 = ((struct sockaddr_in6 *)&li->hostaddr.sa);
706 memcpy(ut->ut_addr_v6, sa6->sin6_addr.s6_addr, 16);
707 if (IN6_IS_ADDR_V4MAPPED(&sa6->sin6_addr)) {
708 ut->ut_addr_v6[0] = ut->ut_addr_v6[3];
709 ut->ut_addr_v6[1] = 0;
710 ut->ut_addr_v6[2] = 0;
711 ut->ut_addr_v6[3] = 0;
712 }
713 }
714# endif
andre61e67252000-06-04 17:07:49 +0000715}
Damien Millerdd47aa22000-06-27 11:18:27 +1000716#endif /* USE_UTMP || USE_WTMP || USE_LOGIN */
andre61e67252000-06-04 17:07:49 +0000717
andre2ff7b5d2000-06-03 14:57:40 +0000718/**
719 ** utmpx utility functions
andre61e67252000-06-04 17:07:49 +0000720 **
721 ** These functions manipulate struct utmpx, accounting for system
722 ** variations.
andre2ff7b5d2000-06-03 14:57:40 +0000723 **/
724
725#if defined(USE_UTMPX) || defined (USE_WTMPX)
andre2ff7b5d2000-06-03 14:57:40 +0000726/* build the utmpx structure */
727void
andre61e67252000-06-04 17:07:49 +0000728set_utmpx_time(struct logininfo *li, struct utmpx *utx)
729{
Damien Miller8899ed32004-09-12 15:18:55 +1000730# if defined(HAVE_TV_IN_UTMPX)
andre2ff7b5d2000-06-03 14:57:40 +0000731 utx->ut_tv.tv_sec = li->tv_sec;
732 utx->ut_tv.tv_usec = li->tv_usec;
Damien Miller8899ed32004-09-12 15:18:55 +1000733# elif defined(HAVE_TIME_IN_UTMPX)
andre2ff7b5d2000-06-03 14:57:40 +0000734 utx->ut_time = li->tv_sec;
Damien Miller8899ed32004-09-12 15:18:55 +1000735# endif
andre2ff7b5d2000-06-03 14:57:40 +0000736}
737
andre61e67252000-06-04 17:07:49 +0000738void
739construct_utmpx(struct logininfo *li, struct utmpx *utx)
740{
Damien Miller02e16ad2003-01-03 14:42:27 +1100741# ifdef HAVE_ADDR_V6_IN_UTMP
742 struct sockaddr_in6 *sa6;
743# endif
Damien Miller348c9b72000-08-15 10:01:22 +1000744 memset(utx, '\0', sizeof(*utx));
Damien Miller8899ed32004-09-12 15:18:55 +1000745
Damien Miller8e81ed32000-07-01 13:17:42 +1000746# ifdef HAVE_ID_IN_UTMPX
andre2ff7b5d2000-06-03 14:57:40 +0000747 line_abbrevname(utx->ut_id, li->line, sizeof(utx->ut_id));
Damien Miller8e81ed32000-07-01 13:17:42 +1000748# endif
andre2ff7b5d2000-06-03 14:57:40 +0000749
750 /* this is done here to keep utmp constants out of loginrec.h */
751 switch (li->type) {
752 case LTYPE_LOGIN:
753 utx->ut_type = USER_PROCESS;
754 break;
755 case LTYPE_LOGOUT:
756 utx->ut_type = DEAD_PROCESS;
757 break;
758 }
andre2ff7b5d2000-06-03 14:57:40 +0000759 line_stripname(utx->ut_line, li->line, sizeof(utx->ut_line));
andre2ff7b5d2000-06-03 14:57:40 +0000760 set_utmpx_time(li, utx);
andre6bb92372000-06-19 08:20:03 +0000761 utx->ut_pid = li->pid;
Damien Miller8899ed32004-09-12 15:18:55 +1000762
Tim Ricee06ae4a2002-02-24 17:56:46 -0800763 /* strncpy(): Don't necessarily want null termination */
Darren Tucker0b8a2262010-01-09 18:18:04 +1100764 strncpy(utx->ut_user, li->username,
765 MIN_SIZEOF(utx->ut_user, li->username));
andre6bb92372000-06-19 08:20:03 +0000766
767 if (li->type == LTYPE_LOGOUT)
768 return;
769
Damien Millerdd47aa22000-06-27 11:18:27 +1000770 /*
771 * These fields are only used when logging in, and are blank
Kevin Stevesef4eea92001-02-05 12:42:17 +0000772 * for logouts.
Damien Millerdd47aa22000-06-27 11:18:27 +1000773 */
andre6bb92372000-06-19 08:20:03 +0000774
Damien Millerdd47aa22000-06-27 11:18:27 +1000775# ifdef HAVE_HOST_IN_UTMPX
Damien Miller8899ed32004-09-12 15:18:55 +1000776 strncpy(utx->ut_host, li->hostname,
777 MIN_SIZEOF(utx->ut_host, li->hostname));
Damien Millerdd47aa22000-06-27 11:18:27 +1000778# endif
779# ifdef HAVE_ADDR_IN_UTMPX
Damien Millerd6f204d2000-09-23 13:57:27 +1100780 /* this is just a 32-bit IP address */
781 if (li->hostaddr.sa.sa_family == AF_INET)
782 utx->ut_addr = li->hostaddr.sa_in.sin_addr.s_addr;
Damien Millerdd47aa22000-06-27 11:18:27 +1000783# endif
Damien Miller02e16ad2003-01-03 14:42:27 +1100784# ifdef HAVE_ADDR_V6_IN_UTMP
785 /* this is just a 128-bit IPv6 address */
786 if (li->hostaddr.sa.sa_family == AF_INET6) {
787 sa6 = ((struct sockaddr_in6 *)&li->hostaddr.sa);
Damien Millerc528c1b2014-12-23 15:26:13 +1100788 memcpy(utx->ut_addr_v6, sa6->sin6_addr.s6_addr, 16);
Damien Miller02e16ad2003-01-03 14:42:27 +1100789 if (IN6_IS_ADDR_V4MAPPED(&sa6->sin6_addr)) {
Damien Millerc528c1b2014-12-23 15:26:13 +1100790 utx->ut_addr_v6[0] = utx->ut_addr_v6[3];
791 utx->ut_addr_v6[1] = 0;
792 utx->ut_addr_v6[2] = 0;
793 utx->ut_addr_v6[3] = 0;
Damien Miller02e16ad2003-01-03 14:42:27 +1100794 }
795 }
796# endif
Damien Millerdd47aa22000-06-27 11:18:27 +1000797# ifdef HAVE_SYSLEN_IN_UTMPX
andre6bb92372000-06-19 08:20:03 +0000798 /* ut_syslen is the length of the utx_host string */
799 utx->ut_syslen = MIN(strlen(li->hostname), sizeof(utx->ut_host));
Damien Millerdd47aa22000-06-27 11:18:27 +1000800# endif
andre61e67252000-06-04 17:07:49 +0000801}
Damien Millerdd47aa22000-06-27 11:18:27 +1000802#endif /* USE_UTMPX || USE_WTMPX */
andre2ff7b5d2000-06-03 14:57:40 +0000803
804/**
andre61e67252000-06-04 17:07:49 +0000805 ** Low-level utmp functions
andre2ff7b5d2000-06-03 14:57:40 +0000806 **/
807
808/* FIXME: (ATL) utmp_write_direct needs testing */
andre2ff7b5d2000-06-03 14:57:40 +0000809#ifdef USE_UTMP
810
andre2ff7b5d2000-06-03 14:57:40 +0000811/* if we can, use pututline() etc. */
Damien Millerdd47aa22000-06-27 11:18:27 +1000812# if !defined(DISABLE_PUTUTLINE) && defined(HAVE_SETUTENT) && \
813 defined(HAVE_PUTUTLINE)
andre2ff7b5d2000-06-03 14:57:40 +0000814# define UTMP_USE_LIBRARY
Damien Millerdd47aa22000-06-27 11:18:27 +1000815# endif
andre2ff7b5d2000-06-03 14:57:40 +0000816
817
818/* write a utmp entry with the system's help (pututline() and pals) */
Damien Millerdd47aa22000-06-27 11:18:27 +1000819# ifdef UTMP_USE_LIBRARY
andre2ff7b5d2000-06-03 14:57:40 +0000820static int
andre61e67252000-06-04 17:07:49 +0000821utmp_write_library(struct logininfo *li, struct utmp *ut)
822{
andre2ff7b5d2000-06-03 14:57:40 +0000823 setutent();
824 pututline(ut);
Damien Millerdd47aa22000-06-27 11:18:27 +1000825# ifdef HAVE_ENDUTENT
andre2ff7b5d2000-06-03 14:57:40 +0000826 endutent();
Damien Millerdd47aa22000-06-27 11:18:27 +1000827# endif
Damien Miller8899ed32004-09-12 15:18:55 +1000828 return (1);
andre61e67252000-06-04 17:07:49 +0000829}
Damien Millerdd47aa22000-06-27 11:18:27 +1000830# else /* UTMP_USE_LIBRARY */
andre2ff7b5d2000-06-03 14:57:40 +0000831
Damien Miller94cf4c82005-07-17 17:04:47 +1000832/*
Damien Miller8899ed32004-09-12 15:18:55 +1000833 * Write a utmp entry direct to the file
834 * This is a slightly modification of code in OpenBSD's login.c
835 */
andre2ff7b5d2000-06-03 14:57:40 +0000836static int
andre61e67252000-06-04 17:07:49 +0000837utmp_write_direct(struct logininfo *li, struct utmp *ut)
838{
andre2ff7b5d2000-06-03 14:57:40 +0000839 struct utmp old_ut;
840 register int fd;
841 int tty;
842
andre6bb92372000-06-19 08:20:03 +0000843 /* FIXME: (ATL) ttyslot() needs local implementation */
Damien Miller348c9b72000-08-15 10:01:22 +1000844
Damien Millere5192fa2000-08-29 14:30:37 +1100845#if defined(HAVE_GETTTYENT)
Damien Miller8899ed32004-09-12 15:18:55 +1000846 struct ttyent *ty;
Damien Miller348c9b72000-08-15 10:01:22 +1000847
848 tty=0;
Damien Miller348c9b72000-08-15 10:01:22 +1000849 setttyent();
Damien Miller8899ed32004-09-12 15:18:55 +1000850 while (NULL != (ty = getttyent())) {
Damien Miller348c9b72000-08-15 10:01:22 +1000851 tty++;
852 if (!strncmp(ty->ty_name, ut->ut_line, sizeof(ut->ut_line)))
853 break;
854 }
855 endttyent();
856
Damien Miller8899ed32004-09-12 15:18:55 +1000857 if (NULL == ty) {
Damien Miller81409592004-08-15 19:12:52 +1000858 logit("%s: tty not found", __func__);
859 return (0);
Damien Miller348c9b72000-08-15 10:01:22 +1000860 }
861#else /* FIXME */
862
andre2ff7b5d2000-06-03 14:57:40 +0000863 tty = ttyslot(); /* seems only to work for /dev/ttyp? style names */
864
Damien Millere5192fa2000-08-29 14:30:37 +1100865#endif /* HAVE_GETTTYENT */
Damien Miller348c9b72000-08-15 10:01:22 +1000866
andre2ff7b5d2000-06-03 14:57:40 +0000867 if (tty > 0 && (fd = open(UTMP_FILE, O_RDWR|O_CREAT, 0644)) >= 0) {
Damien Miller81409592004-08-15 19:12:52 +1000868 off_t pos, ret;
869
870 pos = (off_t)tty * sizeof(struct utmp);
871 if ((ret = lseek(fd, pos, SEEK_SET)) == -1) {
Damien Millerb0419f22004-08-23 21:53:28 +1000872 logit("%s: lseek: %s", __func__, strerror(errno));
Damien Miller4a06f922011-01-02 21:43:59 +1100873 close(fd);
Damien Miller81409592004-08-15 19:12:52 +1000874 return (0);
875 }
876 if (ret != pos) {
Damien Miller94cf4c82005-07-17 17:04:47 +1000877 logit("%s: Couldn't seek to tty %d slot in %s",
Damien Millerb0419f22004-08-23 21:53:28 +1000878 __func__, tty, UTMP_FILE);
Damien Miller4a06f922011-01-02 21:43:59 +1100879 close(fd);
Damien Miller81409592004-08-15 19:12:52 +1000880 return (0);
881 }
andre2ff7b5d2000-06-03 14:57:40 +0000882 /*
883 * Prevent luser from zero'ing out ut_host.
884 * If the new ut_line is empty but the old one is not
Damien Miller7a0e5dc2000-07-11 12:15:54 +1000885 * and ut_line and ut_name match, preserve the old ut_line.
andre2ff7b5d2000-06-03 14:57:40 +0000886 */
Kevin Stevesef4eea92001-02-05 12:42:17 +0000887 if (atomicio(read, fd, &old_ut, sizeof(old_ut)) == sizeof(old_ut) &&
Damien Miller8899ed32004-09-12 15:18:55 +1000888 (ut->ut_host[0] == '\0') && (old_ut.ut_host[0] != '\0') &&
889 (strncmp(old_ut.ut_line, ut->ut_line, sizeof(ut->ut_line)) == 0) &&
890 (strncmp(old_ut.ut_name, ut->ut_name, sizeof(ut->ut_name)) == 0))
891 memcpy(ut->ut_host, old_ut.ut_host, sizeof(ut->ut_host));
Kevin Stevesef4eea92001-02-05 12:42:17 +0000892
Damien Miller81409592004-08-15 19:12:52 +1000893 if ((ret = lseek(fd, pos, SEEK_SET)) == -1) {
Damien Millerb0419f22004-08-23 21:53:28 +1000894 logit("%s: lseek: %s", __func__, strerror(errno));
Damien Miller4a06f922011-01-02 21:43:59 +1100895 close(fd);
Damien Miller81409592004-08-15 19:12:52 +1000896 return (0);
897 }
898 if (ret != pos) {
Damien Millerb0419f22004-08-23 21:53:28 +1000899 logit("%s: Couldn't seek to tty %d slot in %s",
Damien Miller81409592004-08-15 19:12:52 +1000900 __func__, tty, UTMP_FILE);
Damien Miller4a06f922011-01-02 21:43:59 +1100901 close(fd);
Damien Miller81409592004-08-15 19:12:52 +1000902 return (0);
903 }
Damien Miller8899ed32004-09-12 15:18:55 +1000904 if (atomicio(vwrite, fd, ut, sizeof(*ut)) != sizeof(*ut)) {
Damien Miller81409592004-08-15 19:12:52 +1000905 logit("%s: error writing %s: %s", __func__,
andre6bb92372000-06-19 08:20:03 +0000906 UTMP_FILE, strerror(errno));
Damien Miller4a06f922011-01-02 21:43:59 +1100907 close(fd);
908 return (0);
Damien Miller8899ed32004-09-12 15:18:55 +1000909 }
Kevin Stevesef4eea92001-02-05 12:42:17 +0000910
Damien Miller8899ed32004-09-12 15:18:55 +1000911 close(fd);
912 return (1);
Damien Miller53c5d462000-06-28 00:50:50 +1000913 } else {
Damien Miller8899ed32004-09-12 15:18:55 +1000914 return (0);
Damien Miller53c5d462000-06-28 00:50:50 +1000915 }
andre61e67252000-06-04 17:07:49 +0000916}
Damien Millerdd47aa22000-06-27 11:18:27 +1000917# endif /* UTMP_USE_LIBRARY */
andre2ff7b5d2000-06-03 14:57:40 +0000918
919static int
andre61e67252000-06-04 17:07:49 +0000920utmp_perform_login(struct logininfo *li)
921{
andre2ff7b5d2000-06-03 14:57:40 +0000922 struct utmp ut;
923
924 construct_utmp(li, &ut);
Damien Millerdd47aa22000-06-27 11:18:27 +1000925# ifdef UTMP_USE_LIBRARY
andre2ff7b5d2000-06-03 14:57:40 +0000926 if (!utmp_write_library(li, &ut)) {
Damien Miller6b0279c2004-09-12 15:25:17 +1000927 logit("%s: utmp_write_library() failed", __func__);
Damien Miller8899ed32004-09-12 15:18:55 +1000928 return (0);
andre2ff7b5d2000-06-03 14:57:40 +0000929 }
Damien Millerdd47aa22000-06-27 11:18:27 +1000930# else
andre2ff7b5d2000-06-03 14:57:40 +0000931 if (!utmp_write_direct(li, &ut)) {
Damien Miller6b0279c2004-09-12 15:25:17 +1000932 logit("%s: utmp_write_direct() failed", __func__);
Damien Miller8899ed32004-09-12 15:18:55 +1000933 return (0);
andre2ff7b5d2000-06-03 14:57:40 +0000934 }
Damien Millerdd47aa22000-06-27 11:18:27 +1000935# endif
Damien Miller8899ed32004-09-12 15:18:55 +1000936 return (1);
andre61e67252000-06-04 17:07:49 +0000937}
andre2ff7b5d2000-06-03 14:57:40 +0000938
939
940static int
andre61e67252000-06-04 17:07:49 +0000941utmp_perform_logout(struct logininfo *li)
942{
andre2ff7b5d2000-06-03 14:57:40 +0000943 struct utmp ut;
944
andre6bb92372000-06-19 08:20:03 +0000945 construct_utmp(li, &ut);
Damien Millerdd47aa22000-06-27 11:18:27 +1000946# ifdef UTMP_USE_LIBRARY
andre6bb92372000-06-19 08:20:03 +0000947 if (!utmp_write_library(li, &ut)) {
Damien Miller6b0279c2004-09-12 15:25:17 +1000948 logit("%s: utmp_write_library() failed", __func__);
Damien Miller8899ed32004-09-12 15:18:55 +1000949 return (0);
andre6bb92372000-06-19 08:20:03 +0000950 }
Damien Millerdd47aa22000-06-27 11:18:27 +1000951# else
andre6bb92372000-06-19 08:20:03 +0000952 if (!utmp_write_direct(li, &ut)) {
Damien Miller6b0279c2004-09-12 15:25:17 +1000953 logit("%s: utmp_write_direct() failed", __func__);
Damien Miller8899ed32004-09-12 15:18:55 +1000954 return (0);
andre6bb92372000-06-19 08:20:03 +0000955 }
Damien Millerdd47aa22000-06-27 11:18:27 +1000956# endif
Damien Miller8899ed32004-09-12 15:18:55 +1000957 return (1);
andre61e67252000-06-04 17:07:49 +0000958}
andre2ff7b5d2000-06-03 14:57:40 +0000959
960
961int
andre61e67252000-06-04 17:07:49 +0000962utmp_write_entry(struct logininfo *li)
963{
andre2ff7b5d2000-06-03 14:57:40 +0000964 switch(li->type) {
965 case LTYPE_LOGIN:
Damien Miller8899ed32004-09-12 15:18:55 +1000966 return (utmp_perform_login(li));
andre2ff7b5d2000-06-03 14:57:40 +0000967
968 case LTYPE_LOGOUT:
Damien Miller8899ed32004-09-12 15:18:55 +1000969 return (utmp_perform_logout(li));
andre2ff7b5d2000-06-03 14:57:40 +0000970
971 default:
Damien Miller6b0279c2004-09-12 15:25:17 +1000972 logit("%s: invalid type field", __func__);
Damien Miller8899ed32004-09-12 15:18:55 +1000973 return (0);
andre2ff7b5d2000-06-03 14:57:40 +0000974 }
andre61e67252000-06-04 17:07:49 +0000975}
Damien Millerdd47aa22000-06-27 11:18:27 +1000976#endif /* USE_UTMP */
andre2ff7b5d2000-06-03 14:57:40 +0000977
978
979/**
andre61e67252000-06-04 17:07:49 +0000980 ** Low-level utmpx functions
andre2ff7b5d2000-06-03 14:57:40 +0000981 **/
982
983/* not much point if we don't want utmpx entries */
984#ifdef USE_UTMPX
985
andre2ff7b5d2000-06-03 14:57:40 +0000986/* if we have the wherewithall, use pututxline etc. */
Damien Millerdd47aa22000-06-27 11:18:27 +1000987# if !defined(DISABLE_PUTUTXLINE) && defined(HAVE_SETUTXENT) && \
988 defined(HAVE_PUTUTXLINE)
andre2ff7b5d2000-06-03 14:57:40 +0000989# define UTMPX_USE_LIBRARY
Damien Millerdd47aa22000-06-27 11:18:27 +1000990# endif
andre2ff7b5d2000-06-03 14:57:40 +0000991
992
993/* write a utmpx entry with the system's help (pututxline() and pals) */
Damien Millerdd47aa22000-06-27 11:18:27 +1000994# ifdef UTMPX_USE_LIBRARY
andre2ff7b5d2000-06-03 14:57:40 +0000995static int
andre61e67252000-06-04 17:07:49 +0000996utmpx_write_library(struct logininfo *li, struct utmpx *utx)
997{
andre2ff7b5d2000-06-03 14:57:40 +0000998 setutxent();
999 pututxline(utx);
1000
Damien Millerdd47aa22000-06-27 11:18:27 +10001001# ifdef HAVE_ENDUTXENT
andre2ff7b5d2000-06-03 14:57:40 +00001002 endutxent();
Damien Millerdd47aa22000-06-27 11:18:27 +10001003# endif
Damien Miller8899ed32004-09-12 15:18:55 +10001004 return (1);
andre61e67252000-06-04 17:07:49 +00001005}
andre2ff7b5d2000-06-03 14:57:40 +00001006
Damien Millerdd47aa22000-06-27 11:18:27 +10001007# else /* UTMPX_USE_LIBRARY */
andre2ff7b5d2000-06-03 14:57:40 +00001008
1009/* write a utmp entry direct to the file */
1010static int
andre61e67252000-06-04 17:07:49 +00001011utmpx_write_direct(struct logininfo *li, struct utmpx *utx)
Kevin Stevesef4eea92001-02-05 12:42:17 +00001012{
Damien Miller6b0279c2004-09-12 15:25:17 +10001013 logit("%s: not implemented!", __func__);
Damien Miller8899ed32004-09-12 15:18:55 +10001014 return (0);
andre61e67252000-06-04 17:07:49 +00001015}
Damien Millerdd47aa22000-06-27 11:18:27 +10001016# endif /* UTMPX_USE_LIBRARY */
andre2ff7b5d2000-06-03 14:57:40 +00001017
1018static int
andre61e67252000-06-04 17:07:49 +00001019utmpx_perform_login(struct logininfo *li)
1020{
andre2ff7b5d2000-06-03 14:57:40 +00001021 struct utmpx utx;
1022
1023 construct_utmpx(li, &utx);
Damien Millerdd47aa22000-06-27 11:18:27 +10001024# ifdef UTMPX_USE_LIBRARY
andre2ff7b5d2000-06-03 14:57:40 +00001025 if (!utmpx_write_library(li, &utx)) {
Damien Miller6b0279c2004-09-12 15:25:17 +10001026 logit("%s: utmp_write_library() failed", __func__);
Damien Miller8899ed32004-09-12 15:18:55 +10001027 return (0);
andre2ff7b5d2000-06-03 14:57:40 +00001028 }
Damien Millerdd47aa22000-06-27 11:18:27 +10001029# else
andre2ff7b5d2000-06-03 14:57:40 +00001030 if (!utmpx_write_direct(li, &ut)) {
Damien Miller6b0279c2004-09-12 15:25:17 +10001031 logit("%s: utmp_write_direct() failed", __func__);
Damien Miller8899ed32004-09-12 15:18:55 +10001032 return (0);
andre2ff7b5d2000-06-03 14:57:40 +00001033 }
Damien Millerdd47aa22000-06-27 11:18:27 +10001034# endif
Damien Miller8899ed32004-09-12 15:18:55 +10001035 return (1);
andre61e67252000-06-04 17:07:49 +00001036}
andre2ff7b5d2000-06-03 14:57:40 +00001037
1038
1039static int
andre61e67252000-06-04 17:07:49 +00001040utmpx_perform_logout(struct logininfo *li)
1041{
andre2ff7b5d2000-06-03 14:57:40 +00001042 struct utmpx utx;
1043
Tim Ricee06ae4a2002-02-24 17:56:46 -08001044 construct_utmpx(li, &utx);
Damien Millerdd47aa22000-06-27 11:18:27 +10001045# ifdef HAVE_ID_IN_UTMPX
andre2ff7b5d2000-06-03 14:57:40 +00001046 line_abbrevname(utx.ut_id, li->line, sizeof(utx.ut_id));
Damien Millerdd47aa22000-06-27 11:18:27 +10001047# endif
1048# ifdef HAVE_TYPE_IN_UTMPX
andre2ff7b5d2000-06-03 14:57:40 +00001049 utx.ut_type = DEAD_PROCESS;
Damien Millerdd47aa22000-06-27 11:18:27 +10001050# endif
andre2ff7b5d2000-06-03 14:57:40 +00001051
Damien Millerdd47aa22000-06-27 11:18:27 +10001052# ifdef UTMPX_USE_LIBRARY
andre2ff7b5d2000-06-03 14:57:40 +00001053 utmpx_write_library(li, &utx);
Damien Millerdd47aa22000-06-27 11:18:27 +10001054# else
andre2ff7b5d2000-06-03 14:57:40 +00001055 utmpx_write_direct(li, &utx);
Damien Millerdd47aa22000-06-27 11:18:27 +10001056# endif
Damien Miller8899ed32004-09-12 15:18:55 +10001057 return (1);
andre61e67252000-06-04 17:07:49 +00001058}
andre2ff7b5d2000-06-03 14:57:40 +00001059
andre2ff7b5d2000-06-03 14:57:40 +00001060int
andre61e67252000-06-04 17:07:49 +00001061utmpx_write_entry(struct logininfo *li)
1062{
andre2ff7b5d2000-06-03 14:57:40 +00001063 switch(li->type) {
1064 case LTYPE_LOGIN:
Damien Miller8899ed32004-09-12 15:18:55 +10001065 return (utmpx_perform_login(li));
andre2ff7b5d2000-06-03 14:57:40 +00001066 case LTYPE_LOGOUT:
Damien Miller8899ed32004-09-12 15:18:55 +10001067 return (utmpx_perform_logout(li));
andre2ff7b5d2000-06-03 14:57:40 +00001068 default:
Damien Miller6b0279c2004-09-12 15:25:17 +10001069 logit("%s: invalid type field", __func__);
Damien Miller8899ed32004-09-12 15:18:55 +10001070 return (0);
andre2ff7b5d2000-06-03 14:57:40 +00001071 }
andre61e67252000-06-04 17:07:49 +00001072}
Damien Millerdd47aa22000-06-27 11:18:27 +10001073#endif /* USE_UTMPX */
andre2ff7b5d2000-06-03 14:57:40 +00001074
1075
1076/**
andre61e67252000-06-04 17:07:49 +00001077 ** Low-level wtmp functions
andre2ff7b5d2000-06-03 14:57:40 +00001078 **/
1079
Kevin Stevesef4eea92001-02-05 12:42:17 +00001080#ifdef USE_WTMP
andre2ff7b5d2000-06-03 14:57:40 +00001081
Damien Miller94cf4c82005-07-17 17:04:47 +10001082/*
Damien Miller8899ed32004-09-12 15:18:55 +10001083 * Write a wtmp entry direct to the end of the file
1084 * This is a slight modification of code in OpenBSD's logwtmp.c
1085 */
andre2ff7b5d2000-06-03 14:57:40 +00001086static int
andre61e67252000-06-04 17:07:49 +00001087wtmp_write(struct logininfo *li, struct utmp *ut)
1088{
andre2ff7b5d2000-06-03 14:57:40 +00001089 struct stat buf;
1090 int fd, ret = 1;
1091
1092 if ((fd = open(WTMP_FILE, O_WRONLY|O_APPEND, 0)) < 0) {
Damien Miller6b0279c2004-09-12 15:25:17 +10001093 logit("%s: problem writing %s: %s", __func__,
andre2ff7b5d2000-06-03 14:57:40 +00001094 WTMP_FILE, strerror(errno));
Damien Miller8899ed32004-09-12 15:18:55 +10001095 return (0);
andre2ff7b5d2000-06-03 14:57:40 +00001096 }
Kevin Stevesef4eea92001-02-05 12:42:17 +00001097 if (fstat(fd, &buf) == 0)
Darren Tucker8661b562003-07-06 15:20:46 +10001098 if (atomicio(vwrite, fd, ut, sizeof(*ut)) != sizeof(*ut)) {
andre2ff7b5d2000-06-03 14:57:40 +00001099 ftruncate(fd, buf.st_size);
Damien Miller6b0279c2004-09-12 15:25:17 +10001100 logit("%s: problem writing %s: %s", __func__,
andre2ff7b5d2000-06-03 14:57:40 +00001101 WTMP_FILE, strerror(errno));
1102 ret = 0;
1103 }
Damien Miller8899ed32004-09-12 15:18:55 +10001104 close(fd);
1105 return (ret);
andre61e67252000-06-04 17:07:49 +00001106}
andre2ff7b5d2000-06-03 14:57:40 +00001107
andre2ff7b5d2000-06-03 14:57:40 +00001108static int
Damien Millerdd47aa22000-06-27 11:18:27 +10001109wtmp_perform_login(struct logininfo *li)
1110{
andre2ff7b5d2000-06-03 14:57:40 +00001111 struct utmp ut;
1112
1113 construct_utmp(li, &ut);
Damien Miller8899ed32004-09-12 15:18:55 +10001114 return (wtmp_write(li, &ut));
andre61e67252000-06-04 17:07:49 +00001115}
andre2ff7b5d2000-06-03 14:57:40 +00001116
1117
1118static int
andre61e67252000-06-04 17:07:49 +00001119wtmp_perform_logout(struct logininfo *li)
1120{
andre2ff7b5d2000-06-03 14:57:40 +00001121 struct utmp ut;
1122
1123 construct_utmp(li, &ut);
Damien Miller8899ed32004-09-12 15:18:55 +10001124 return (wtmp_write(li, &ut));
andre61e67252000-06-04 17:07:49 +00001125}
andre2ff7b5d2000-06-03 14:57:40 +00001126
1127
1128int
andre61e67252000-06-04 17:07:49 +00001129wtmp_write_entry(struct logininfo *li)
1130{
andre2ff7b5d2000-06-03 14:57:40 +00001131 switch(li->type) {
1132 case LTYPE_LOGIN:
Damien Miller8899ed32004-09-12 15:18:55 +10001133 return (wtmp_perform_login(li));
andre2ff7b5d2000-06-03 14:57:40 +00001134 case LTYPE_LOGOUT:
Damien Miller8899ed32004-09-12 15:18:55 +10001135 return (wtmp_perform_logout(li));
andre2ff7b5d2000-06-03 14:57:40 +00001136 default:
Damien Miller6b0279c2004-09-12 15:25:17 +10001137 logit("%s: invalid type field", __func__);
Damien Miller8899ed32004-09-12 15:18:55 +10001138 return (0);
andre2ff7b5d2000-06-03 14:57:40 +00001139 }
andre61e67252000-06-04 17:07:49 +00001140}
andre2ff7b5d2000-06-03 14:57:40 +00001141
1142
Damien Miller94cf4c82005-07-17 17:04:47 +10001143/*
Damien Miller8899ed32004-09-12 15:18:55 +10001144 * Notes on fetching login data from wtmp/wtmpx
Kevin Stevesef4eea92001-02-05 12:42:17 +00001145 *
andre6bb92372000-06-19 08:20:03 +00001146 * Logouts are usually recorded with (amongst other things) a blank
1147 * username on a given tty line. However, some systems (HP-UX is one)
1148 * leave all fields set, but change the ut_type field to DEAD_PROCESS.
1149 *
1150 * Since we're only looking for logins here, we know that the username
1151 * must be set correctly. On systems that leave it in, we check for
1152 * ut_type==USER_PROCESS (indicating a login.)
1153 *
1154 * Portability: Some systems may set something other than USER_PROCESS
1155 * to indicate a login process. I don't know of any as I write. Also,
1156 * it's possible that some systems may both leave the username in
1157 * place and not have ut_type.
1158 */
1159
andre6bb92372000-06-19 08:20:03 +00001160/* return true if this wtmp entry indicates a login */
1161static int
1162wtmp_islogin(struct logininfo *li, struct utmp *ut)
1163{
Kevin Stevesef4eea92001-02-05 12:42:17 +00001164 if (strncmp(li->username, ut->ut_name,
Damien Miller8899ed32004-09-12 15:18:55 +10001165 MIN_SIZEOF(li->username, ut->ut_name)) == 0) {
Damien Millerdd47aa22000-06-27 11:18:27 +10001166# ifdef HAVE_TYPE_IN_UTMP
andre6bb92372000-06-19 08:20:03 +00001167 if (ut->ut_type & USER_PROCESS)
Damien Miller8899ed32004-09-12 15:18:55 +10001168 return (1);
Damien Millerdd47aa22000-06-27 11:18:27 +10001169# else
Damien Miller8899ed32004-09-12 15:18:55 +10001170 return (1);
Damien Millerdd47aa22000-06-27 11:18:27 +10001171# endif
andre6bb92372000-06-19 08:20:03 +00001172 }
Damien Miller8899ed32004-09-12 15:18:55 +10001173 return (0);
andre6bb92372000-06-19 08:20:03 +00001174}
1175
andre2ff7b5d2000-06-03 14:57:40 +00001176int
andre61e67252000-06-04 17:07:49 +00001177wtmp_get_entry(struct logininfo *li)
1178{
andre2ff7b5d2000-06-03 14:57:40 +00001179 struct stat st;
1180 struct utmp ut;
Damien Miller8899ed32004-09-12 15:18:55 +10001181 int fd, found = 0;
andre6bb92372000-06-19 08:20:03 +00001182
1183 /* Clear the time entries in our logininfo */
1184 li->tv_sec = li->tv_usec = 0;
andre2ff7b5d2000-06-03 14:57:40 +00001185
1186 if ((fd = open(WTMP_FILE, O_RDONLY)) < 0) {
Damien Miller94cf4c82005-07-17 17:04:47 +10001187 logit("%s: problem opening %s: %s", __func__,
andre2ff7b5d2000-06-03 14:57:40 +00001188 WTMP_FILE, strerror(errno));
Damien Miller8899ed32004-09-12 15:18:55 +10001189 return (0);
andre2ff7b5d2000-06-03 14:57:40 +00001190 }
Kevin Stevesef4eea92001-02-05 12:42:17 +00001191 if (fstat(fd, &st) != 0) {
Damien Miller94cf4c82005-07-17 17:04:47 +10001192 logit("%s: couldn't stat %s: %s", __func__,
andre2ff7b5d2000-06-03 14:57:40 +00001193 WTMP_FILE, strerror(errno));
1194 close(fd);
Damien Miller8899ed32004-09-12 15:18:55 +10001195 return (0);
andre2ff7b5d2000-06-03 14:57:40 +00001196 }
andre2ff7b5d2000-06-03 14:57:40 +00001197
andre6bb92372000-06-19 08:20:03 +00001198 /* Seek to the start of the last struct utmp */
Kevin Steves52172652001-10-02 00:29:00 +00001199 if (lseek(fd, -(off_t)sizeof(struct utmp), SEEK_END) == -1) {
andre6bb92372000-06-19 08:20:03 +00001200 /* Looks like we've got a fresh wtmp file */
1201 close(fd);
Damien Miller8899ed32004-09-12 15:18:55 +10001202 return (0);
andre6bb92372000-06-19 08:20:03 +00001203 }
1204
1205 while (!found) {
Damien Miller53c5d462000-06-28 00:50:50 +10001206 if (atomicio(read, fd, &ut, sizeof(ut)) != sizeof(ut)) {
Damien Miller94cf4c82005-07-17 17:04:47 +10001207 logit("%s: read of %s failed: %s", __func__,
andre2ff7b5d2000-06-03 14:57:40 +00001208 WTMP_FILE, strerror(errno));
1209 close (fd);
Damien Miller8899ed32004-09-12 15:18:55 +10001210 return (0);
andre2ff7b5d2000-06-03 14:57:40 +00001211 }
Damien Miller4a06f922011-01-02 21:43:59 +11001212 if (wtmp_islogin(li, &ut) ) {
andre6bb92372000-06-19 08:20:03 +00001213 found = 1;
Damien Miller8899ed32004-09-12 15:18:55 +10001214 /*
1215 * We've already checked for a time in struct
1216 * utmp, in login_getlast()
1217 */
Damien Millerdd47aa22000-06-27 11:18:27 +10001218# ifdef HAVE_TIME_IN_UTMP
andre2ff7b5d2000-06-03 14:57:40 +00001219 li->tv_sec = ut.ut_time;
Damien Millerdd47aa22000-06-27 11:18:27 +10001220# else
andre2ff7b5d2000-06-03 14:57:40 +00001221# if HAVE_TV_IN_UTMP
1222 li->tv_sec = ut.ut_tv.tv_sec;
1223# endif
Damien Millerdd47aa22000-06-27 11:18:27 +10001224# endif
andre6bb92372000-06-19 08:20:03 +00001225 line_fullname(li->line, ut.ut_line,
Damien Miller8899ed32004-09-12 15:18:55 +10001226 MIN_SIZEOF(li->line, ut.ut_line));
Damien Millerdd47aa22000-06-27 11:18:27 +10001227# ifdef HAVE_HOST_IN_UTMP
andre6bb92372000-06-19 08:20:03 +00001228 strlcpy(li->hostname, ut.ut_host,
Damien Miller8899ed32004-09-12 15:18:55 +10001229 MIN_SIZEOF(li->hostname, ut.ut_host));
Damien Millerdd47aa22000-06-27 11:18:27 +10001230# endif
andre6bb92372000-06-19 08:20:03 +00001231 continue;
andre2ff7b5d2000-06-03 14:57:40 +00001232 }
andre6bb92372000-06-19 08:20:03 +00001233 /* Seek back 2 x struct utmp */
Kevin Steves52172652001-10-02 00:29:00 +00001234 if (lseek(fd, -(off_t)(2 * sizeof(struct utmp)), SEEK_CUR) == -1) {
andre6bb92372000-06-19 08:20:03 +00001235 /* We've found the start of the file, so quit */
Damien Miller8899ed32004-09-12 15:18:55 +10001236 close(fd);
1237 return (0);
andre2ff7b5d2000-06-03 14:57:40 +00001238 }
andre6bb92372000-06-19 08:20:03 +00001239 }
1240
1241 /* We found an entry. Tidy up and return */
1242 close(fd);
Damien Miller8899ed32004-09-12 15:18:55 +10001243 return (1);
andre61e67252000-06-04 17:07:49 +00001244}
Damien Millerdd47aa22000-06-27 11:18:27 +10001245# endif /* USE_WTMP */
andre2ff7b5d2000-06-03 14:57:40 +00001246
1247
1248/**
andre61e67252000-06-04 17:07:49 +00001249 ** Low-level wtmpx functions
andre2ff7b5d2000-06-03 14:57:40 +00001250 **/
1251
1252#ifdef USE_WTMPX
Damien Miller8899ed32004-09-12 15:18:55 +10001253/*
1254 * Write a wtmpx entry direct to the end of the file
1255 * This is a slight modification of code in OpenBSD's logwtmp.c
1256 */
andre2ff7b5d2000-06-03 14:57:40 +00001257static int
andre61e67252000-06-04 17:07:49 +00001258wtmpx_write(struct logininfo *li, struct utmpx *utx)
1259{
Darren Tuckerc28b88a2004-02-10 16:49:35 +11001260#ifndef HAVE_UPDWTMPX
andre2ff7b5d2000-06-03 14:57:40 +00001261 struct stat buf;
1262 int fd, ret = 1;
1263
1264 if ((fd = open(WTMPX_FILE, O_WRONLY|O_APPEND, 0)) < 0) {
Damien Miller94cf4c82005-07-17 17:04:47 +10001265 logit("%s: problem opening %s: %s", __func__,
andre2ff7b5d2000-06-03 14:57:40 +00001266 WTMPX_FILE, strerror(errno));
Damien Miller8899ed32004-09-12 15:18:55 +10001267 return (0);
andre2ff7b5d2000-06-03 14:57:40 +00001268 }
1269
Kevin Stevesef4eea92001-02-05 12:42:17 +00001270 if (fstat(fd, &buf) == 0)
Darren Tucker8661b562003-07-06 15:20:46 +10001271 if (atomicio(vwrite, fd, utx, sizeof(*utx)) != sizeof(*utx)) {
andre2ff7b5d2000-06-03 14:57:40 +00001272 ftruncate(fd, buf.st_size);
Damien Miller6b0279c2004-09-12 15:25:17 +10001273 logit("%s: problem writing %s: %s", __func__,
andre2ff7b5d2000-06-03 14:57:40 +00001274 WTMPX_FILE, strerror(errno));
1275 ret = 0;
1276 }
Damien Miller8899ed32004-09-12 15:18:55 +10001277 close(fd);
andre2ff7b5d2000-06-03 14:57:40 +00001278
Damien Miller8899ed32004-09-12 15:18:55 +10001279 return (ret);
Darren Tuckerc28b88a2004-02-10 16:49:35 +11001280#else
1281 updwtmpx(WTMPX_FILE, utx);
Damien Miller8899ed32004-09-12 15:18:55 +10001282 return (1);
Darren Tuckerc28b88a2004-02-10 16:49:35 +11001283#endif
andre61e67252000-06-04 17:07:49 +00001284}
andre2ff7b5d2000-06-03 14:57:40 +00001285
1286
1287static int
andre61e67252000-06-04 17:07:49 +00001288wtmpx_perform_login(struct logininfo *li)
1289{
andre2ff7b5d2000-06-03 14:57:40 +00001290 struct utmpx utx;
1291
1292 construct_utmpx(li, &utx);
Damien Miller8899ed32004-09-12 15:18:55 +10001293 return (wtmpx_write(li, &utx));
andre61e67252000-06-04 17:07:49 +00001294}
andre2ff7b5d2000-06-03 14:57:40 +00001295
1296
1297static int
andre61e67252000-06-04 17:07:49 +00001298wtmpx_perform_logout(struct logininfo *li)
1299{
andre2ff7b5d2000-06-03 14:57:40 +00001300 struct utmpx utx;
1301
1302 construct_utmpx(li, &utx);
Damien Miller8899ed32004-09-12 15:18:55 +10001303 return (wtmpx_write(li, &utx));
andre61e67252000-06-04 17:07:49 +00001304}
andre2ff7b5d2000-06-03 14:57:40 +00001305
1306
1307int
andre61e67252000-06-04 17:07:49 +00001308wtmpx_write_entry(struct logininfo *li)
1309{
andre2ff7b5d2000-06-03 14:57:40 +00001310 switch(li->type) {
1311 case LTYPE_LOGIN:
Damien Miller8899ed32004-09-12 15:18:55 +10001312 return (wtmpx_perform_login(li));
andre2ff7b5d2000-06-03 14:57:40 +00001313 case LTYPE_LOGOUT:
Damien Miller8899ed32004-09-12 15:18:55 +10001314 return (wtmpx_perform_logout(li));
andre2ff7b5d2000-06-03 14:57:40 +00001315 default:
Damien Miller6b0279c2004-09-12 15:25:17 +10001316 logit("%s: invalid type field", __func__);
Damien Miller8899ed32004-09-12 15:18:55 +10001317 return (0);
andre2ff7b5d2000-06-03 14:57:40 +00001318 }
andre61e67252000-06-04 17:07:49 +00001319}
andre2ff7b5d2000-06-03 14:57:40 +00001320
andre6bb92372000-06-19 08:20:03 +00001321/* Please see the notes above wtmp_islogin() for information about the
1322 next two functions */
1323
1324/* Return true if this wtmpx entry indicates a login */
1325static int
1326wtmpx_islogin(struct logininfo *li, struct utmpx *utx)
1327{
Darren Tucker0b8a2262010-01-09 18:18:04 +11001328 if (strncmp(li->username, utx->ut_user,
1329 MIN_SIZEOF(li->username, utx->ut_user)) == 0 ) {
Damien Millerdd47aa22000-06-27 11:18:27 +10001330# ifdef HAVE_TYPE_IN_UTMPX
andre6bb92372000-06-19 08:20:03 +00001331 if (utx->ut_type == USER_PROCESS)
Damien Miller8899ed32004-09-12 15:18:55 +10001332 return (1);
Damien Millerdd47aa22000-06-27 11:18:27 +10001333# else
Damien Miller8899ed32004-09-12 15:18:55 +10001334 return (1);
Damien Millerdd47aa22000-06-27 11:18:27 +10001335# endif
andre6bb92372000-06-19 08:20:03 +00001336 }
Damien Miller8899ed32004-09-12 15:18:55 +10001337 return (0);
andre6bb92372000-06-19 08:20:03 +00001338}
1339
andre2ff7b5d2000-06-03 14:57:40 +00001340
1341int
andre61e67252000-06-04 17:07:49 +00001342wtmpx_get_entry(struct logininfo *li)
1343{
andre2ff7b5d2000-06-03 14:57:40 +00001344 struct stat st;
1345 struct utmpx utx;
andre6bb92372000-06-19 08:20:03 +00001346 int fd, found=0;
1347
1348 /* Clear the time entries */
1349 li->tv_sec = li->tv_usec = 0;
andre2ff7b5d2000-06-03 14:57:40 +00001350
1351 if ((fd = open(WTMPX_FILE, O_RDONLY)) < 0) {
Damien Miller94cf4c82005-07-17 17:04:47 +10001352 logit("%s: problem opening %s: %s", __func__,
andre2ff7b5d2000-06-03 14:57:40 +00001353 WTMPX_FILE, strerror(errno));
Damien Miller8899ed32004-09-12 15:18:55 +10001354 return (0);
andre2ff7b5d2000-06-03 14:57:40 +00001355 }
Kevin Stevesef4eea92001-02-05 12:42:17 +00001356 if (fstat(fd, &st) != 0) {
Damien Miller94cf4c82005-07-17 17:04:47 +10001357 logit("%s: couldn't stat %s: %s", __func__,
Tim Ricecdb82942002-07-14 15:33:20 -07001358 WTMPX_FILE, strerror(errno));
andre2ff7b5d2000-06-03 14:57:40 +00001359 close(fd);
Damien Miller8899ed32004-09-12 15:18:55 +10001360 return (0);
andre2ff7b5d2000-06-03 14:57:40 +00001361 }
Kevin Stevesef4eea92001-02-05 12:42:17 +00001362
andre6bb92372000-06-19 08:20:03 +00001363 /* Seek to the start of the last struct utmpx */
Kevin Steves52172652001-10-02 00:29:00 +00001364 if (lseek(fd, -(off_t)sizeof(struct utmpx), SEEK_END) == -1 ) {
andre6bb92372000-06-19 08:20:03 +00001365 /* probably a newly rotated wtmpx file */
1366 close(fd);
Damien Miller8899ed32004-09-12 15:18:55 +10001367 return (0);
andre6bb92372000-06-19 08:20:03 +00001368 }
andre2ff7b5d2000-06-03 14:57:40 +00001369
andre6bb92372000-06-19 08:20:03 +00001370 while (!found) {
Damien Miller53c5d462000-06-28 00:50:50 +10001371 if (atomicio(read, fd, &utx, sizeof(utx)) != sizeof(utx)) {
Damien Miller94cf4c82005-07-17 17:04:47 +10001372 logit("%s: read of %s failed: %s", __func__,
andre2ff7b5d2000-06-03 14:57:40 +00001373 WTMPX_FILE, strerror(errno));
1374 close (fd);
Damien Miller8899ed32004-09-12 15:18:55 +10001375 return (0);
andre2ff7b5d2000-06-03 14:57:40 +00001376 }
Damien Miller8899ed32004-09-12 15:18:55 +10001377 /*
Damien Miller94cf4c82005-07-17 17:04:47 +10001378 * Logouts are recorded as a blank username on a particular
Damien Miller8899ed32004-09-12 15:18:55 +10001379 * line. So, we just need to find the username in struct utmpx
1380 */
1381 if (wtmpx_islogin(li, &utx)) {
Tim Rice370e0ba2002-07-14 15:50:51 -07001382 found = 1;
Damien Miller8899ed32004-09-12 15:18:55 +10001383# if defined(HAVE_TV_IN_UTMPX)
andre2ff7b5d2000-06-03 14:57:40 +00001384 li->tv_sec = utx.ut_tv.tv_sec;
Damien Miller8899ed32004-09-12 15:18:55 +10001385# elif defined(HAVE_TIME_IN_UTMPX)
andre2ff7b5d2000-06-03 14:57:40 +00001386 li->tv_sec = utx.ut_time;
Damien Millerdd47aa22000-06-27 11:18:27 +10001387# endif
Damien Miller1a132252000-06-13 21:23:17 +10001388 line_fullname(li->line, utx.ut_line, sizeof(li->line));
Damien Miller8899ed32004-09-12 15:18:55 +10001389# if defined(HAVE_HOST_IN_UTMPX)
andre6bb92372000-06-19 08:20:03 +00001390 strlcpy(li->hostname, utx.ut_host,
Damien Miller8899ed32004-09-12 15:18:55 +10001391 MIN_SIZEOF(li->hostname, utx.ut_host));
Damien Millerdd47aa22000-06-27 11:18:27 +10001392# endif
andre6bb92372000-06-19 08:20:03 +00001393 continue;
andre2ff7b5d2000-06-03 14:57:40 +00001394 }
Kevin Steves52172652001-10-02 00:29:00 +00001395 if (lseek(fd, -(off_t)(2 * sizeof(struct utmpx)), SEEK_CUR) == -1) {
Damien Miller8899ed32004-09-12 15:18:55 +10001396 close(fd);
1397 return (0);
andre2ff7b5d2000-06-03 14:57:40 +00001398 }
andre6bb92372000-06-19 08:20:03 +00001399 }
1400
1401 close(fd);
Damien Miller8899ed32004-09-12 15:18:55 +10001402 return (1);
andre61e67252000-06-04 17:07:49 +00001403}
Damien Millerd5bf3072000-06-07 21:32:13 +10001404#endif /* USE_WTMPX */
andre2ff7b5d2000-06-03 14:57:40 +00001405
andre2ff7b5d2000-06-03 14:57:40 +00001406/**
andre61e67252000-06-04 17:07:49 +00001407 ** Low-level libutil login() functions
andre2ff7b5d2000-06-03 14:57:40 +00001408 **/
1409
1410#ifdef USE_LOGIN
andre2ff7b5d2000-06-03 14:57:40 +00001411static int
andre61e67252000-06-04 17:07:49 +00001412syslogin_perform_login(struct logininfo *li)
1413{
andre2ff7b5d2000-06-03 14:57:40 +00001414 struct utmp *ut;
1415
Damien Millerb0aae332004-09-12 15:26:00 +10001416 ut = xmalloc(sizeof(*ut));
andre2ff7b5d2000-06-03 14:57:40 +00001417 construct_utmp(li, ut);
1418 login(ut);
Damien Millerf211efc2003-03-10 11:23:06 +11001419 free(ut);
andre2ff7b5d2000-06-03 14:57:40 +00001420
Damien Miller8899ed32004-09-12 15:18:55 +10001421 return (1);
andre61e67252000-06-04 17:07:49 +00001422}
1423
andre2ff7b5d2000-06-03 14:57:40 +00001424static int
andre61e67252000-06-04 17:07:49 +00001425syslogin_perform_logout(struct logininfo *li)
1426{
Damien Millerdd47aa22000-06-27 11:18:27 +10001427# ifdef HAVE_LOGOUT
Darren Tucker4d2f3612004-04-08 10:57:05 +10001428 char line[UT_LINESIZE];
Kevin Stevesef4eea92001-02-05 12:42:17 +00001429
andre2ff7b5d2000-06-03 14:57:40 +00001430 (void)line_stripname(line, li->line, sizeof(line));
1431
Damien Miller8899ed32004-09-12 15:18:55 +10001432 if (!logout(line))
Damien Miller6b0279c2004-09-12 15:25:17 +10001433 logit("%s: logout() returned an error", __func__);
Damien Millerdd47aa22000-06-27 11:18:27 +10001434# ifdef HAVE_LOGWTMP
Damien Miller8899ed32004-09-12 15:18:55 +10001435 else
andre2ff7b5d2000-06-03 14:57:40 +00001436 logwtmp(line, "", "");
Damien Millerdd47aa22000-06-27 11:18:27 +10001437# endif
andre6bb92372000-06-19 08:20:03 +00001438 /* FIXME: (ATL - if the need arises) What to do if we have
1439 * login, but no logout? what if logout but no logwtmp? All
1440 * routines are in libutil so they should all be there,
1441 * but... */
Damien Millerdd47aa22000-06-27 11:18:27 +10001442# endif
Damien Miller8899ed32004-09-12 15:18:55 +10001443 return (1);
andre61e67252000-06-04 17:07:49 +00001444}
andre2ff7b5d2000-06-03 14:57:40 +00001445
andre2ff7b5d2000-06-03 14:57:40 +00001446int
andre61e67252000-06-04 17:07:49 +00001447syslogin_write_entry(struct logininfo *li)
1448{
andre2ff7b5d2000-06-03 14:57:40 +00001449 switch (li->type) {
1450 case LTYPE_LOGIN:
Damien Miller8899ed32004-09-12 15:18:55 +10001451 return (syslogin_perform_login(li));
andre2ff7b5d2000-06-03 14:57:40 +00001452 case LTYPE_LOGOUT:
Damien Miller8899ed32004-09-12 15:18:55 +10001453 return (syslogin_perform_logout(li));
andre2ff7b5d2000-06-03 14:57:40 +00001454 default:
Damien Miller6b0279c2004-09-12 15:25:17 +10001455 logit("%s: Invalid type field", __func__);
Damien Miller8899ed32004-09-12 15:18:55 +10001456 return (0);
andre2ff7b5d2000-06-03 14:57:40 +00001457 }
andre61e67252000-06-04 17:07:49 +00001458}
Damien Millerd5bf3072000-06-07 21:32:13 +10001459#endif /* USE_LOGIN */
andre2ff7b5d2000-06-03 14:57:40 +00001460
1461/* end of file log-syslogin.c */
1462
andre2ff7b5d2000-06-03 14:57:40 +00001463/**
andre61e67252000-06-04 17:07:49 +00001464 ** Low-level lastlog functions
andre2ff7b5d2000-06-03 14:57:40 +00001465 **/
1466
1467#ifdef USE_LASTLOG
1468
Damien Miller20e231f2009-02-12 13:12:21 +11001469#if !defined(LASTLOG_WRITE_PUTUTXLINE) || !defined(HAVE_GETLASTLOGXBYNAME)
1470/* open the file (using filemode) and seek to the login entry */
andre2ff7b5d2000-06-03 14:57:40 +00001471static int
Damien Miller20e231f2009-02-12 13:12:21 +11001472lastlog_openseek(struct logininfo *li, int *fd, int filemode)
andre61e67252000-06-04 17:07:49 +00001473{
Damien Miller20e231f2009-02-12 13:12:21 +11001474 off_t offset;
1475 char lastlog_file[1024];
andre2ff7b5d2000-06-03 14:57:40 +00001476 struct stat st;
1477
Damien Millerdd47aa22000-06-27 11:18:27 +10001478 if (stat(LASTLOG_FILE, &st) != 0) {
Damien Miller6b0279c2004-09-12 15:25:17 +10001479 logit("%s: Couldn't stat %s: %s", __func__,
Damien Miller8899ed32004-09-12 15:18:55 +10001480 LASTLOG_FILE, strerror(errno));
1481 return (0);
andre2ff7b5d2000-06-03 14:57:40 +00001482 }
Damien Miller20e231f2009-02-12 13:12:21 +11001483 if (S_ISDIR(st.st_mode)) {
Damien Miller8899ed32004-09-12 15:18:55 +10001484 snprintf(lastlog_file, sizeof(lastlog_file), "%s/%s",
1485 LASTLOG_FILE, li->username);
Damien Miller20e231f2009-02-12 13:12:21 +11001486 } else if (S_ISREG(st.st_mode)) {
1487 strlcpy(lastlog_file, LASTLOG_FILE, sizeof(lastlog_file));
1488 } else {
Damien Miller6b0279c2004-09-12 15:25:17 +10001489 logit("%s: %.100s is not a file or directory!", __func__,
Damien Miller8899ed32004-09-12 15:18:55 +10001490 LASTLOG_FILE);
1491 return (0);
Damien Millerdd47aa22000-06-27 11:18:27 +10001492 }
andre2ff7b5d2000-06-03 14:57:40 +00001493
Damien Miller405dc602003-04-09 21:12:52 +10001494 *fd = open(lastlog_file, filemode, 0600);
Damien Miller8899ed32004-09-12 15:18:55 +10001495 if (*fd < 0) {
Damien Miller6b0279c2004-09-12 15:25:17 +10001496 debug("%s: Couldn't open %s: %s", __func__,
andre2ff7b5d2000-06-03 14:57:40 +00001497 lastlog_file, strerror(errno));
Damien Miller8899ed32004-09-12 15:18:55 +10001498 return (0);
andre2ff7b5d2000-06-03 14:57:40 +00001499 }
Kevin Stevesef4eea92001-02-05 12:42:17 +00001500
Damien Miller20e231f2009-02-12 13:12:21 +11001501 if (S_ISREG(st.st_mode)) {
Damien Millere477ef62000-08-15 10:21:17 +10001502 /* find this uid's offset in the lastlog file */
Damien Miller34ee4202010-11-05 10:52:37 +11001503 offset = (off_t) ((u_long)li->uid * sizeof(struct lastlog));
andre2ff7b5d2000-06-03 14:57:40 +00001504
Damien Miller8899ed32004-09-12 15:18:55 +10001505 if (lseek(*fd, offset, SEEK_SET) != offset) {
Damien Miller6b0279c2004-09-12 15:25:17 +10001506 logit("%s: %s->lseek(): %s", __func__,
1507 lastlog_file, strerror(errno));
Damien Miller4a06f922011-01-02 21:43:59 +11001508 close(*fd);
Damien Miller8899ed32004-09-12 15:18:55 +10001509 return (0);
Damien Millere477ef62000-08-15 10:21:17 +10001510 }
andre2ff7b5d2000-06-03 14:57:40 +00001511 }
Kevin Stevesef4eea92001-02-05 12:42:17 +00001512
Damien Miller8899ed32004-09-12 15:18:55 +10001513 return (1);
andre61e67252000-06-04 17:07:49 +00001514}
Damien Miller20e231f2009-02-12 13:12:21 +11001515#endif /* !LASTLOG_WRITE_PUTUTXLINE || !HAVE_GETLASTLOGXBYNAME */
andre2ff7b5d2000-06-03 14:57:40 +00001516
Damien Miller20e231f2009-02-12 13:12:21 +11001517#ifdef LASTLOG_WRITE_PUTUTXLINE
andre2ff7b5d2000-06-03 14:57:40 +00001518int
andre61e67252000-06-04 17:07:49 +00001519lastlog_write_entry(struct logininfo *li)
1520{
andre2ff7b5d2000-06-03 14:57:40 +00001521 switch(li->type) {
1522 case LTYPE_LOGIN:
Damien Miller20e231f2009-02-12 13:12:21 +11001523 return 1; /* lastlog written by pututxline */
1524 default:
1525 logit("lastlog_write_entry: Invalid type field");
1526 return 0;
1527 }
1528}
1529#else /* LASTLOG_WRITE_PUTUTXLINE */
1530int
1531lastlog_write_entry(struct logininfo *li)
1532{
1533 struct lastlog last;
1534 int fd;
1535
1536 switch(li->type) {
1537 case LTYPE_LOGIN:
1538 /* create our struct lastlog */
1539 memset(&last, '\0', sizeof(last));
1540 line_stripname(last.ll_line, li->line, sizeof(last.ll_line));
1541 strlcpy(last.ll_host, li->hostname,
1542 MIN_SIZEOF(last.ll_host, li->hostname));
1543 last.ll_time = li->tv_sec;
1544
1545 if (!lastlog_openseek(li, &fd, O_RDWR|O_CREAT))
1546 return (0);
1547
1548 /* write the entry */
1549 if (atomicio(vwrite, fd, &last, sizeof(last)) != sizeof(last)) {
1550 close(fd);
1551 logit("%s: Error writing to %s: %s", __func__,
1552 LASTLOG_FILE, strerror(errno));
1553 return (0);
1554 }
1555
1556 close(fd);
1557 return (1);
andre2ff7b5d2000-06-03 14:57:40 +00001558 default:
Damien Miller6b0279c2004-09-12 15:25:17 +10001559 logit("%s: Invalid type field", __func__);
Damien Miller8899ed32004-09-12 15:18:55 +10001560 return (0);
andre2ff7b5d2000-06-03 14:57:40 +00001561 }
andre61e67252000-06-04 17:07:49 +00001562}
Damien Miller20e231f2009-02-12 13:12:21 +11001563#endif /* LASTLOG_WRITE_PUTUTXLINE */
andre2ff7b5d2000-06-03 14:57:40 +00001564
Damien Miller20e231f2009-02-12 13:12:21 +11001565#ifdef HAVE_GETLASTLOGXBYNAME
1566int
1567lastlog_get_entry(struct logininfo *li)
andre61e67252000-06-04 17:07:49 +00001568{
Damien Miller20e231f2009-02-12 13:12:21 +11001569 struct lastlogx l, *ll;
andre2ff7b5d2000-06-03 14:57:40 +00001570
Damien Miller20e231f2009-02-12 13:12:21 +11001571 if ((ll = getlastlogxbyname(li->username, &l)) == NULL) {
1572 memset(&l, '\0', sizeof(l));
1573 ll = &l;
1574 }
1575 line_fullname(li->line, ll->ll_line, sizeof(li->line));
1576 strlcpy(li->hostname, ll->ll_host,
1577 MIN_SIZEOF(li->hostname, ll->ll_host));
1578 li->tv_sec = ll->ll_tv.tv_sec;
1579 li->tv_usec = ll->ll_tv.tv_usec;
1580 return (1);
1581}
1582#else /* HAVE_GETLASTLOGXBYNAME */
andre2ff7b5d2000-06-03 14:57:40 +00001583int
andre61e67252000-06-04 17:07:49 +00001584lastlog_get_entry(struct logininfo *li)
1585{
andre2ff7b5d2000-06-03 14:57:40 +00001586 struct lastlog last;
Damien Miller7df881d2003-01-07 16:46:58 +11001587 int fd, ret;
andre2ff7b5d2000-06-03 14:57:40 +00001588
Damien Miller3a8a5cd2001-10-22 16:49:22 +10001589 if (!lastlog_openseek(li, &fd, O_RDONLY))
Damien Miller7df881d2003-01-07 16:46:58 +11001590 return (0);
Damien Miller3a8a5cd2001-10-22 16:49:22 +10001591
Damien Miller7df881d2003-01-07 16:46:58 +11001592 ret = atomicio(read, fd, &last, sizeof(last));
Damien Miller3a8a5cd2001-10-22 16:49:22 +10001593 close(fd);
1594
Damien Miller7df881d2003-01-07 16:46:58 +11001595 switch (ret) {
1596 case 0:
1597 memset(&last, '\0', sizeof(last));
1598 /* FALLTHRU */
1599 case sizeof(last):
Damien Miller20e231f2009-02-12 13:12:21 +11001600 line_fullname(li->line, last.ll_line, sizeof(li->line));
1601 strlcpy(li->hostname, last.ll_host,
1602 MIN_SIZEOF(li->hostname, last.ll_host));
1603 li->tv_sec = last.ll_time;
Damien Miller7df881d2003-01-07 16:46:58 +11001604 return (1);
1605 case -1:
Damien Millera8e06ce2003-11-21 23:48:55 +11001606 error("%s: Error reading from %s: %s", __func__,
Damien Miller7df881d2003-01-07 16:46:58 +11001607 LASTLOG_FILE, strerror(errno));
1608 return (0);
1609 default:
1610 error("%s: Error reading from %s: Expecting %d, got %d",
Darren Tuckerefc17472005-11-22 19:55:13 +11001611 __func__, LASTLOG_FILE, (int)sizeof(last), ret);
Damien Miller7df881d2003-01-07 16:46:58 +11001612 return (0);
1613 }
Damien Miller3a8a5cd2001-10-22 16:49:22 +10001614
Damien Miller7df881d2003-01-07 16:46:58 +11001615 /* NOTREACHED */
1616 return (0);
andre61e67252000-06-04 17:07:49 +00001617}
Damien Miller20e231f2009-02-12 13:12:21 +11001618#endif /* HAVE_GETLASTLOGXBYNAME */
Damien Millerd5bf3072000-06-07 21:32:13 +10001619#endif /* USE_LASTLOG */
Darren Tucker2fba9932005-02-02 23:30:24 +11001620
Darren Tucker261d93a2010-04-09 18:13:27 +10001621#if defined(USE_UTMPX) && defined(HAVE_SETUTXDB) && \
1622 defined(UTXDB_LASTLOGIN) && defined(HAVE_GETUTXUSER)
1623int
1624utmpx_get_entry(struct logininfo *li)
1625{
1626 struct utmpx *utx;
1627
1628 if (setutxdb(UTXDB_LASTLOGIN, NULL) != 0)
1629 return (0);
1630 utx = getutxuser(li->username);
1631 if (utx == NULL) {
1632 endutxent();
1633 return (0);
1634 }
1635
1636 line_fullname(li->line, utx->ut_line,
1637 MIN_SIZEOF(li->line, utx->ut_line));
1638 strlcpy(li->hostname, utx->ut_host,
1639 MIN_SIZEOF(li->hostname, utx->ut_host));
1640 li->tv_sec = utx->ut_tv.tv_sec;
1641 li->tv_usec = utx->ut_tv.tv_usec;
1642 endutxent();
1643 return (1);
1644}
1645#endif /* USE_UTMPX && HAVE_SETUTXDB && UTXDB_LASTLOGIN && HAVE_GETUTXUSER */
1646
Darren Tucker2fba9932005-02-02 23:30:24 +11001647#ifdef USE_BTMP
1648 /*
1649 * Logs failed login attempts in _PATH_BTMP if that exists.
1650 * The most common login failure is to give password instead of username.
1651 * So the _PATH_BTMP file checked for the correct permission, so that
1652 * only root can read it.
1653 */
1654
1655void
1656record_failed_login(const char *username, const char *hostname,
1657 const char *ttyn)
1658{
1659 int fd;
1660 struct utmp ut;
1661 struct sockaddr_storage from;
Darren Tuckerefc17472005-11-22 19:55:13 +11001662 socklen_t fromlen = sizeof(from);
Darren Tucker2fba9932005-02-02 23:30:24 +11001663 struct sockaddr_in *a4;
1664 struct sockaddr_in6 *a6;
1665 time_t t;
1666 struct stat fst;
1667
1668 if (geteuid() != 0)
1669 return;
1670 if ((fd = open(_PATH_BTMP, O_WRONLY | O_APPEND)) < 0) {
1671 debug("Unable to open the btmp file %s: %s", _PATH_BTMP,
1672 strerror(errno));
1673 return;
1674 }
1675 if (fstat(fd, &fst) < 0) {
1676 logit("%s: fstat of %s failed: %s", __func__, _PATH_BTMP,
1677 strerror(errno));
1678 goto out;
1679 }
Damien Miller88e341e2010-11-24 10:36:15 +11001680 if((fst.st_mode & (S_IXGRP | S_IRWXO)) || (fst.st_uid != 0)){
Darren Tucker2fba9932005-02-02 23:30:24 +11001681 logit("Excess permission or bad ownership on file %s",
1682 _PATH_BTMP);
1683 goto out;
1684 }
1685
1686 memset(&ut, 0, sizeof(ut));
1687 /* strncpy because we don't necessarily want nul termination */
1688 strncpy(ut.ut_user, username, sizeof(ut.ut_user));
1689 strlcpy(ut.ut_line, "ssh:notty", sizeof(ut.ut_line));
1690
1691 time(&t);
1692 ut.ut_time = t; /* ut_time is not always a time_t */
1693 ut.ut_type = LOGIN_PROCESS;
1694 ut.ut_pid = getpid();
1695
1696 /* strncpy because we don't necessarily want nul termination */
1697 strncpy(ut.ut_host, hostname, sizeof(ut.ut_host));
1698
1699 if (packet_connection_is_on_socket() &&
1700 getpeername(packet_get_connection_in(),
1701 (struct sockaddr *)&from, &fromlen) == 0) {
1702 ipv64_normalise_mapped(&from, &fromlen);
1703 if (from.ss_family == AF_INET) {
1704 a4 = (struct sockaddr_in *)&from;
1705 memcpy(&ut.ut_addr, &(a4->sin_addr),
1706 MIN_SIZEOF(ut.ut_addr, a4->sin_addr));
1707 }
1708#ifdef HAVE_ADDR_V6_IN_UTMP
1709 if (from.ss_family == AF_INET6) {
1710 a6 = (struct sockaddr_in6 *)&from;
1711 memcpy(&ut.ut_addr_v6, &(a6->sin6_addr),
1712 MIN_SIZEOF(ut.ut_addr_v6, a6->sin6_addr));
1713 }
1714#endif
1715 }
1716
1717 if (atomicio(vwrite, fd, &ut, sizeof(ut)) != sizeof(ut))
1718 error("Failed to write to %s: %s", _PATH_BTMP,
1719 strerror(errno));
1720
1721out:
1722 close(fd);
1723}
1724#endif /* USE_BTMP */