blob: 8f5061cdcb221ded5b9db35060d7c4e9048e6ae8 [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
andre2ff7b5d2000-06-03 14:57:40 +0000150#include "ssh.h"
151#include "xmalloc.h"
152#include "loginrec.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000153#include "log.h"
154#include "atomicio.h"
Darren Tucker2fba9932005-02-02 23:30:24 +1100155#include "packet.h"
156#include "canohost.h"
Darren Tucker269a1ea2005-02-03 00:20:53 +1100157#include "auth.h"
andre2ff7b5d2000-06-03 14:57:40 +0000158
Ben Lindstromdcca9812000-11-10 03:28:31 +0000159#ifdef HAVE_UTIL_H
Damien Miller8899ed32004-09-12 15:18:55 +1000160# include <util.h>
Ben Lindstromdcca9812000-11-10 03:28:31 +0000161#endif
andre2ff7b5d2000-06-03 14:57:40 +0000162
Ben Lindstrome2fb8d32000-12-28 00:07:07 +0000163#ifdef HAVE_LIBUTIL_H
Damien Miller8899ed32004-09-12 15:18:55 +1000164# include <libutil.h>
Ben Lindstrome2fb8d32000-12-28 00:07:07 +0000165#endif
166
Darren Tucker691d5232005-02-15 21:45:57 +1100167RCSID("$Id: loginrec.c,v 1.66 2005/02/15 10:45:57 dtucker Exp $");
Damien Miller8899ed32004-09-12 15:18:55 +1000168
andre2ff7b5d2000-06-03 14:57:40 +0000169/**
170 ** prototypes for helper functions in this file
171 **/
172
173#if HAVE_UTMP_H
andre2ff7b5d2000-06-03 14:57:40 +0000174void set_utmp_time(struct logininfo *li, struct utmp *ut);
175void construct_utmp(struct logininfo *li, struct utmp *ut);
176#endif
177
178#ifdef HAVE_UTMPX_H
andre2ff7b5d2000-06-03 14:57:40 +0000179void set_utmpx_time(struct logininfo *li, struct utmpx *ut);
180void construct_utmpx(struct logininfo *li, struct utmpx *ut);
181#endif
182
183int utmp_write_entry(struct logininfo *li);
184int utmpx_write_entry(struct logininfo *li);
185int wtmp_write_entry(struct logininfo *li);
186int wtmpx_write_entry(struct logininfo *li);
187int lastlog_write_entry(struct logininfo *li);
188int syslogin_write_entry(struct logininfo *li);
189
190int getlast_entry(struct logininfo *li);
191int lastlog_get_entry(struct logininfo *li);
192int wtmp_get_entry(struct logininfo *li);
193int wtmpx_get_entry(struct logininfo *li);
194
Darren Tucker691d5232005-02-15 21:45:57 +1100195extern Buffer loginmsg;
196
andre6bb92372000-06-19 08:20:03 +0000197/* pick the shortest string */
Damien Miller8899ed32004-09-12 15:18:55 +1000198#define MIN_SIZEOF(s1,s2) (sizeof(s1) < sizeof(s2) ? sizeof(s1) : sizeof(s2))
andre6bb92372000-06-19 08:20:03 +0000199
andre2ff7b5d2000-06-03 14:57:40 +0000200/**
201 ** platform-independent login functions
202 **/
203
Damien Miller8899ed32004-09-12 15:18:55 +1000204/*
205 * login_login(struct logininfo *) - Record a login
Kevin Stevesef4eea92001-02-05 12:42:17 +0000206 *
andre6bb92372000-06-19 08:20:03 +0000207 * Call with a pointer to a struct logininfo initialised with
208 * login_init_entry() or login_alloc_entry()
209 *
210 * Returns:
211 * >0 if successful
212 * 0 on failure (will use OpenSSH's logging facilities for diagnostics)
213 */
andre61e67252000-06-04 17:07:49 +0000214int
Damien Miller8899ed32004-09-12 15:18:55 +1000215login_login(struct logininfo *li)
andre61e67252000-06-04 17:07:49 +0000216{
217 li->type = LTYPE_LOGIN;
Damien Miller8899ed32004-09-12 15:18:55 +1000218 return (login_write(li));
andre61e67252000-06-04 17:07:49 +0000219}
220
221
Damien Miller8899ed32004-09-12 15:18:55 +1000222/*
223 * login_logout(struct logininfo *) - Record a logout
andre6bb92372000-06-19 08:20:03 +0000224 *
225 * Call as with login_login()
226 *
227 * Returns:
228 * >0 if successful
229 * 0 on failure (will use OpenSSH's logging facilities for diagnostics)
230 */
andre61e67252000-06-04 17:07:49 +0000231int
232login_logout(struct logininfo *li)
233{
234 li->type = LTYPE_LOGOUT;
Damien Miller8899ed32004-09-12 15:18:55 +1000235 return (login_write(li));
andre61e67252000-06-04 17:07:49 +0000236}
237
Damien Miller8899ed32004-09-12 15:18:55 +1000238/*
239 * login_get_lastlog_time(int) - Retrieve the last login time
andre6bb92372000-06-19 08:20:03 +0000240 *
241 * Retrieve the last login time for the given uid. Will try to use the
242 * system lastlog facilities if they are available, but will fall back
243 * to looking in wtmp/wtmpx if necessary
244 *
245 * Returns:
246 * 0 on failure, or if user has never logged in
247 * Time in seconds from the epoch if successful
248 *
249 * Useful preprocessor symbols:
250 * DISABLE_LASTLOG: If set, *never* even try to retrieve lastlog
251 * info
252 * USE_LASTLOG: If set, indicates the presence of system lastlog
253 * facilities. If this and DISABLE_LASTLOG are not set,
254 * try to retrieve lastlog information from wtmp/wtmpx.
255 */
andre61e67252000-06-04 17:07:49 +0000256unsigned int
257login_get_lastlog_time(const int uid)
258{
259 struct logininfo li;
260
andre6bb92372000-06-19 08:20:03 +0000261 if (login_get_lastlog(&li, uid))
Damien Miller8899ed32004-09-12 15:18:55 +1000262 return (li.tv_sec);
andre6bb92372000-06-19 08:20:03 +0000263 else
Damien Miller8899ed32004-09-12 15:18:55 +1000264 return (0);
andre61e67252000-06-04 17:07:49 +0000265}
266
Damien Miller8899ed32004-09-12 15:18:55 +1000267/*
268 * login_get_lastlog(struct logininfo *, int) - Retrieve a lastlog entry
andre6bb92372000-06-19 08:20:03 +0000269 *
270 * Retrieve a logininfo structure populated (only partially) with
271 * information from the system lastlog data, or from wtmp/wtmpx if no
272 * system lastlog information exists.
273 *
274 * Note this routine must be given a pre-allocated logininfo.
275 *
276 * Returns:
277 * >0: A pointer to your struct logininfo if successful
278 * 0 on failure (will use OpenSSH's logging facilities for diagnostics)
andre6bb92372000-06-19 08:20:03 +0000279 */
andre61e67252000-06-04 17:07:49 +0000280struct logininfo *
281login_get_lastlog(struct logininfo *li, const int uid)
282{
andre6bb92372000-06-19 08:20:03 +0000283 struct passwd *pw;
andre6bb92372000-06-19 08:20:03 +0000284
Damien Miller348c9b72000-08-15 10:01:22 +1000285 memset(li, '\0', sizeof(*li));
andre61e67252000-06-04 17:07:49 +0000286 li->uid = uid;
andre6bb92372000-06-19 08:20:03 +0000287
Kevin Stevesef4eea92001-02-05 12:42:17 +0000288 /*
Damien Miller53c5d462000-06-28 00:50:50 +1000289 * If we don't have a 'real' lastlog, we need the username to
andre6bb92372000-06-19 08:20:03 +0000290 * reliably search wtmp(x) for the last login (see
Kevin Stevesef4eea92001-02-05 12:42:17 +0000291 * wtmp_get_entry().)
Damien Miller53c5d462000-06-28 00:50:50 +1000292 */
andre6bb92372000-06-19 08:20:03 +0000293 pw = getpwuid(uid);
Damien Millerdd47aa22000-06-27 11:18:27 +1000294 if (pw == NULL)
Damien Miller6b0279c2004-09-12 15:25:17 +1000295 fatal("%s: Cannot find account for uid %i", __func__, uid);
Kevin Stevesef4eea92001-02-05 12:42:17 +0000296
andre98cabe02000-06-19 09:11:30 +0000297 /* No MIN_SIZEOF here - we absolutely *must not* truncate the
Damien Miller8899ed32004-09-12 15:18:55 +1000298 * username (XXX - so check for trunc!) */
Damien Millerf8af08d2000-06-27 09:40:06 +1000299 strlcpy(li->username, pw->pw_name, sizeof(li->username));
Damien Millerdd47aa22000-06-27 11:18:27 +1000300
andre61e67252000-06-04 17:07:49 +0000301 if (getlast_entry(li))
Damien Miller8899ed32004-09-12 15:18:55 +1000302 return (li);
andre61e67252000-06-04 17:07:49 +0000303 else
Damien Miller8899ed32004-09-12 15:18:55 +1000304 return (NULL);
andre61e67252000-06-04 17:07:49 +0000305}
306
307
Damien Miller8899ed32004-09-12 15:18:55 +1000308/*
309 * login_alloc_entry(int, char*, char*, char*) - Allocate and initialise
Kevin Stevesef4eea92001-02-05 12:42:17 +0000310 * a logininfo structure
311 *
andre6bb92372000-06-19 08:20:03 +0000312 * This function creates a new struct logininfo, a data structure
313 * meant to carry the information required to portably record login info.
314 *
315 * Returns a pointer to a newly created struct logininfo. If memory
316 * allocation fails, the program halts.
317 */
andre61e67252000-06-04 17:07:49 +0000318struct
319logininfo *login_alloc_entry(int pid, const char *username,
Damien Miller8899ed32004-09-12 15:18:55 +1000320 const char *hostname, const char *line)
andre61e67252000-06-04 17:07:49 +0000321{
andre2ff7b5d2000-06-03 14:57:40 +0000322 struct logininfo *newli;
323
Damien Miller8899ed32004-09-12 15:18:55 +1000324 newli = xmalloc(sizeof(*newli));
325 login_init_entry(newli, pid, username, hostname, line);
326 return (newli);
andre61e67252000-06-04 17:07:49 +0000327}
andre2ff7b5d2000-06-03 14:57:40 +0000328
329
andre6bb92372000-06-19 08:20:03 +0000330/* login_free_entry(struct logininfo *) - free struct memory */
andre61e67252000-06-04 17:07:49 +0000331void
332login_free_entry(struct logininfo *li)
333{
334 xfree(li);
335}
336
andre2ff7b5d2000-06-03 14:57:40 +0000337
andre6bb92372000-06-19 08:20:03 +0000338/* login_init_entry(struct logininfo *, int, char*, char*, char*)
339 * - initialise a struct logininfo
Kevin Stevesef4eea92001-02-05 12:42:17 +0000340 *
andre6bb92372000-06-19 08:20:03 +0000341 * Populates a new struct logininfo, a data structure meant to carry
342 * the information required to portably record login info.
343 *
344 * Returns: 1
345 */
andre61e67252000-06-04 17:07:49 +0000346int
Kevin Stevesef4eea92001-02-05 12:42:17 +0000347login_init_entry(struct logininfo *li, int pid, const char *username,
Damien Miller8899ed32004-09-12 15:18:55 +1000348 const char *hostname, const char *line)
andre61e67252000-06-04 17:07:49 +0000349{
Damien Millerf8af08d2000-06-27 09:40:06 +1000350 struct passwd *pw;
Kevin Stevesef4eea92001-02-05 12:42:17 +0000351
Damien Miller348c9b72000-08-15 10:01:22 +1000352 memset(li, 0, sizeof(*li));
Kevin Stevesef4eea92001-02-05 12:42:17 +0000353
andre61e67252000-06-04 17:07:49 +0000354 li->pid = pid;
Damien Millerf8af08d2000-06-27 09:40:06 +1000355
andre2ff7b5d2000-06-03 14:57:40 +0000356 /* set the line information */
andre61e67252000-06-04 17:07:49 +0000357 if (line)
andre2ff7b5d2000-06-03 14:57:40 +0000358 line_fullname(li->line, line, sizeof(li->line));
andre2ff7b5d2000-06-03 14:57:40 +0000359
Damien Millerf8af08d2000-06-27 09:40:06 +1000360 if (username) {
andre2ff7b5d2000-06-03 14:57:40 +0000361 strlcpy(li->username, username, sizeof(li->username));
Damien Millerf8af08d2000-06-27 09:40:06 +1000362 pw = getpwnam(li->username);
Damien Miller8899ed32004-09-12 15:18:55 +1000363 if (pw == NULL) {
Damien Miller6b0279c2004-09-12 15:25:17 +1000364 fatal("%s: Cannot find user \"%s\"", __func__,
Damien Miller8899ed32004-09-12 15:18:55 +1000365 li->username);
366 }
Damien Millerf8af08d2000-06-27 09:40:06 +1000367 li->uid = pw->pw_uid;
368 }
Damien Millerdd47aa22000-06-27 11:18:27 +1000369
andre61e67252000-06-04 17:07:49 +0000370 if (hostname)
andre2ff7b5d2000-06-03 14:57:40 +0000371 strlcpy(li->hostname, hostname, sizeof(li->hostname));
Damien Millerf8af08d2000-06-27 09:40:06 +1000372
Damien Miller8899ed32004-09-12 15:18:55 +1000373 return (1);
andre2ff7b5d2000-06-03 14:57:40 +0000374}
375
Damien Miller8899ed32004-09-12 15:18:55 +1000376/*
377 * login_set_current_time(struct logininfo *) - set the current time
andre6bb92372000-06-19 08:20:03 +0000378 *
379 * Set the current time in a logininfo structure. This function is
380 * meant to eliminate the need to deal with system dependencies for
381 * time handling.
382 */
andre2ff7b5d2000-06-03 14:57:40 +0000383void
andre61e67252000-06-04 17:07:49 +0000384login_set_current_time(struct logininfo *li)
385{
andre2ff7b5d2000-06-03 14:57:40 +0000386 struct timeval tv;
387
388 gettimeofday(&tv, NULL);
Kevin Stevesef4eea92001-02-05 12:42:17 +0000389
Damien Millerf8af08d2000-06-27 09:40:06 +1000390 li->tv_sec = tv.tv_sec;
391 li->tv_usec = tv.tv_usec;
andre2ff7b5d2000-06-03 14:57:40 +0000392}
393
andre61e67252000-06-04 17:07:49 +0000394/* copy a sockaddr_* into our logininfo */
andre2ff7b5d2000-06-03 14:57:40 +0000395void
andre61e67252000-06-04 17:07:49 +0000396login_set_addr(struct logininfo *li, const struct sockaddr *sa,
Damien Miller8899ed32004-09-12 15:18:55 +1000397 const unsigned int sa_size)
andre61e67252000-06-04 17:07:49 +0000398{
399 unsigned int bufsize = sa_size;
400
401 /* make sure we don't overrun our union */
402 if (sizeof(li->hostaddr) < sa_size)
403 bufsize = sizeof(li->hostaddr);
404
Damien Miller8899ed32004-09-12 15:18:55 +1000405 memcpy(&li->hostaddr.sa, sa, bufsize);
andre2ff7b5d2000-06-03 14:57:40 +0000406}
407
andre2ff7b5d2000-06-03 14:57:40 +0000408
andre61e67252000-06-04 17:07:49 +0000409/**
410 ** login_write: Call low-level recording functions based on autoconf
411 ** results
412 **/
andre2ff7b5d2000-06-03 14:57:40 +0000413int
Damien Miller8899ed32004-09-12 15:18:55 +1000414login_write(struct logininfo *li)
andre61e67252000-06-04 17:07:49 +0000415{
Damien Millerbac2d8a2000-09-05 16:13:06 +1100416#ifndef HAVE_CYGWIN
Damien Miller8899ed32004-09-12 15:18:55 +1000417 if (geteuid() != 0) {
418 logit("Attempt to write login records by non-root user (aborting)");
419 return (1);
andre2ff7b5d2000-06-03 14:57:40 +0000420 }
Damien Millerbac2d8a2000-09-05 16:13:06 +1100421#endif
Damien Millerdd47aa22000-06-27 11:18:27 +1000422
andre2ff7b5d2000-06-03 14:57:40 +0000423 /* set the timestamp */
424 login_set_current_time(li);
425#ifdef USE_LOGIN
426 syslogin_write_entry(li);
427#endif
428#ifdef USE_LASTLOG
Damien Miller8899ed32004-09-12 15:18:55 +1000429 if (li->type == LTYPE_LOGIN)
andre2ff7b5d2000-06-03 14:57:40 +0000430 lastlog_write_entry(li);
andre2ff7b5d2000-06-03 14:57:40 +0000431#endif
432#ifdef USE_UTMP
433 utmp_write_entry(li);
434#endif
435#ifdef USE_WTMP
436 wtmp_write_entry(li);
437#endif
438#ifdef USE_UTMPX
439 utmpx_write_entry(li);
440#endif
441#ifdef USE_WTMPX
442 wtmpx_write_entry(li);
443#endif
Darren Tucker397a2f22004-08-15 00:09:11 +1000444#ifdef CUSTOM_SYS_AUTH_RECORD_LOGIN
445 if (li->type == LTYPE_LOGIN &&
Darren Tucker691d5232005-02-15 21:45:57 +1100446 !sys_auth_record_login(li->username,li->hostname,li->line, &loginmsg))
Darren Tucker397a2f22004-08-15 00:09:11 +1000447 logit("Writing login record failed for %s", li->username);
448#endif
Darren Tucker2e0cf0d2005-02-08 21:52:47 +1100449#ifdef SSH_AUDIT_EVENTS
Darren Tucker269a1ea2005-02-03 00:20:53 +1100450 if (li->type == LTYPE_LOGIN)
451 audit_session_open(li->line);
452 else if (li->type == LTYPE_LOGOUT)
453 audit_session_close(li->line);
454#endif
Damien Miller8899ed32004-09-12 15:18:55 +1000455 return (0);
andre2ff7b5d2000-06-03 14:57:40 +0000456}
457
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000458#ifdef LOGIN_NEEDS_UTMPX
459int
460login_utmp_only(struct logininfo *li)
461{
Damien Millera8e06ce2003-11-21 23:48:55 +1100462 li->type = LTYPE_LOGIN;
Ben Lindstrom9197c592001-10-26 15:56:55 +0000463 login_set_current_time(li);
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000464# ifdef USE_UTMP
465 utmp_write_entry(li);
466# endif
467# ifdef USE_WTMP
468 wtmp_write_entry(li);
469# endif
470# ifdef USE_UTMPX
471 utmpx_write_entry(li);
472# endif
473# ifdef USE_WTMPX
474 wtmpx_write_entry(li);
475# endif
Damien Miller8899ed32004-09-12 15:18:55 +1000476 return (0);
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000477}
478#endif
479
andre2ff7b5d2000-06-03 14:57:40 +0000480/**
andre61e67252000-06-04 17:07:49 +0000481 ** getlast_entry: Call low-level functions to retrieve the last login
482 ** time.
andre2ff7b5d2000-06-03 14:57:40 +0000483 **/
484
andre61e67252000-06-04 17:07:49 +0000485/* take the uid in li and return the last login time */
486int
487getlast_entry(struct logininfo *li)
488{
489#ifdef USE_LASTLOG
Damien Miller53c5d462000-06-28 00:50:50 +1000490 return(lastlog_get_entry(li));
Damien Millerdd47aa22000-06-27 11:18:27 +1000491#else /* !USE_LASTLOG */
andre61e67252000-06-04 17:07:49 +0000492
Damien Miller8899ed32004-09-12 15:18:55 +1000493#if defined(DISABLE_LASTLOG)
Kevin Stevesef4eea92001-02-05 12:42:17 +0000494 /* On some systems we shouldn't even try to obtain last login
andreecaabf12000-06-12 22:21:44 +0000495 * time, e.g. AIX */
Damien Miller8899ed32004-09-12 15:18:55 +1000496 return (0);
497# elif defined(USE_WTMP) && \
498 (defined(HAVE_TIME_IN_UTMP) || defined(HAVE_TV_IN_UTMP))
andre61e67252000-06-04 17:07:49 +0000499 /* retrieve last login time from utmp */
Damien Millerdd47aa22000-06-27 11:18:27 +1000500 return (wtmp_get_entry(li));
Damien Miller8899ed32004-09-12 15:18:55 +1000501# elif defined(USE_WTMPX) && \
502 (defined(HAVE_TIME_IN_UTMPX) || defined(HAVE_TV_IN_UTMPX))
andre61e67252000-06-04 17:07:49 +0000503 /* If wtmp isn't available, try wtmpx */
Damien Millerdd47aa22000-06-27 11:18:27 +1000504 return (wtmpx_get_entry(li));
Damien Miller8899ed32004-09-12 15:18:55 +1000505# else
andre61e67252000-06-04 17:07:49 +0000506 /* Give up: No means of retrieving last login time */
Damien Miller8899ed32004-09-12 15:18:55 +1000507 return (0);
Kevin Stevesef4eea92001-02-05 12:42:17 +0000508# endif /* DISABLE_LASTLOG */
Damien Millerdd47aa22000-06-27 11:18:27 +1000509#endif /* USE_LASTLOG */
andre61e67252000-06-04 17:07:49 +0000510}
511
512
513
andre2ff7b5d2000-06-03 14:57:40 +0000514/*
andre61e67252000-06-04 17:07:49 +0000515 * 'line' string utility functions
516 *
517 * These functions process the 'line' string into one of three forms:
518 *
andre2ff7b5d2000-06-03 14:57:40 +0000519 * 1. The full filename (including '/dev')
520 * 2. The stripped name (excluding '/dev')
andre61e67252000-06-04 17:07:49 +0000521 * 3. The abbreviated name (e.g. /dev/ttyp00 -> yp00
522 * /dev/pts/1 -> ts/1 )
andre2ff7b5d2000-06-03 14:57:40 +0000523 *
524 * Form 3 is used on some systems to identify a .tmp.? entry when
525 * attempting to remove it. Typically both addition and removal is
andre61e67252000-06-04 17:07:49 +0000526 * performed by one application - say, sshd - so as long as the choice
527 * uniquely identifies a terminal it's ok.
andre2ff7b5d2000-06-03 14:57:40 +0000528 */
529
530
Damien Miller8899ed32004-09-12 15:18:55 +1000531/*
532 * line_fullname(): add the leading '/dev/' if it doesn't exist make
533 * sure dst has enough space, if not just copy src (ugh)
534 */
andre2ff7b5d2000-06-03 14:57:40 +0000535char *
andre61e67252000-06-04 17:07:49 +0000536line_fullname(char *dst, const char *src, int dstsize)
537{
andre2ff7b5d2000-06-03 14:57:40 +0000538 memset(dst, '\0', dstsize);
Damien Miller8899ed32004-09-12 15:18:55 +1000539 if ((strncmp(src, "/dev/", 5) == 0) || (dstsize < (strlen(src) + 5)))
andre2ff7b5d2000-06-03 14:57:40 +0000540 strlcpy(dst, src, dstsize);
Damien Miller8899ed32004-09-12 15:18:55 +1000541 else {
Damien Miller1a132252000-06-13 21:23:17 +1000542 strlcpy(dst, "/dev/", dstsize);
andre2ff7b5d2000-06-03 14:57:40 +0000543 strlcat(dst, src, dstsize);
544 }
Damien Miller8899ed32004-09-12 15:18:55 +1000545 return (dst);
andre2ff7b5d2000-06-03 14:57:40 +0000546}
547
andre61e67252000-06-04 17:07:49 +0000548/* line_stripname(): strip the leading '/dev' if it exists, return dst */
andre2ff7b5d2000-06-03 14:57:40 +0000549char *
andre61e67252000-06-04 17:07:49 +0000550line_stripname(char *dst, const char *src, int dstsize)
551{
andre2ff7b5d2000-06-03 14:57:40 +0000552 memset(dst, '\0', dstsize);
553 if (strncmp(src, "/dev/", 5) == 0)
Damien Millerf5a81472000-09-30 21:34:44 +1100554 strlcpy(dst, src + 5, dstsize);
andre2ff7b5d2000-06-03 14:57:40 +0000555 else
556 strlcpy(dst, src, dstsize);
Damien Miller8899ed32004-09-12 15:18:55 +1000557 return (dst);
andre61e67252000-06-04 17:07:49 +0000558}
559
Damien Miller8899ed32004-09-12 15:18:55 +1000560/*
561 * line_abbrevname(): Return the abbreviated (usually four-character)
andre61e67252000-06-04 17:07:49 +0000562 * form of the line (Just use the last <dstsize> characters of the
563 * full name.)
564 *
565 * NOTE: use strncpy because we do NOT necessarily want zero
Damien Miller8899ed32004-09-12 15:18:55 +1000566 * termination
567 */
andre2ff7b5d2000-06-03 14:57:40 +0000568char *
Kevin Stevesef4eea92001-02-05 12:42:17 +0000569line_abbrevname(char *dst, const char *src, int dstsize)
Damien Millerdd47aa22000-06-27 11:18:27 +1000570{
571 size_t len;
Kevin Stevesef4eea92001-02-05 12:42:17 +0000572
andre2ff7b5d2000-06-03 14:57:40 +0000573 memset(dst, '\0', dstsize);
Kevin Stevesef4eea92001-02-05 12:42:17 +0000574
Damien Miller8e81ed32000-07-01 13:17:42 +1000575 /* Always skip prefix if present */
576 if (strncmp(src, "/dev/", 5) == 0)
577 src += 5;
Kevin Stevesef4eea92001-02-05 12:42:17 +0000578
Damien Millerf1b9d112002-04-23 23:09:19 +1000579#ifdef WITH_ABBREV_NO_TTY
580 if (strncmp(src, "tty", 3) == 0)
581 src += 3;
582#endif
583
Damien Millerdd47aa22000-06-27 11:18:27 +1000584 len = strlen(src);
585
Damien Miller8e81ed32000-07-01 13:17:42 +1000586 if (len > 0) {
587 if (((int)len - dstsize) > 0)
588 src += ((int)len - dstsize);
589
590 /* note: _don't_ change this to strlcpy */
Kevin Stevesef4eea92001-02-05 12:42:17 +0000591 strncpy(dst, src, (size_t)dstsize);
Damien Millerdd47aa22000-06-27 11:18:27 +1000592 }
Kevin Stevesef4eea92001-02-05 12:42:17 +0000593
Damien Miller8899ed32004-09-12 15:18:55 +1000594 return (dst);
andre2ff7b5d2000-06-03 14:57:40 +0000595}
596
andre2ff7b5d2000-06-03 14:57:40 +0000597/**
598 ** utmp utility functions
andre61e67252000-06-04 17:07:49 +0000599 **
600 ** These functions manipulate struct utmp, taking system differences
601 ** into account.
andre2ff7b5d2000-06-03 14:57:40 +0000602 **/
603
604#if defined(USE_UTMP) || defined (USE_WTMP) || defined (USE_LOGIN)
605
andre2ff7b5d2000-06-03 14:57:40 +0000606/* build the utmp structure */
607void
andre61e67252000-06-04 17:07:49 +0000608set_utmp_time(struct logininfo *li, struct utmp *ut)
609{
Damien Miller8899ed32004-09-12 15:18:55 +1000610# if defined(HAVE_TV_IN_UTMP)
andre2ff7b5d2000-06-03 14:57:40 +0000611 ut->ut_tv.tv_sec = li->tv_sec;
612 ut->ut_tv.tv_usec = li->tv_usec;
Damien Miller8899ed32004-09-12 15:18:55 +1000613# elif defined(HAVE_TIME_IN_UTMP)
andre2ff7b5d2000-06-03 14:57:40 +0000614 ut->ut_time = li->tv_sec;
Damien Millerdd47aa22000-06-27 11:18:27 +1000615# endif
andre2ff7b5d2000-06-03 14:57:40 +0000616}
617
618void
619construct_utmp(struct logininfo *li,
andre61e67252000-06-04 17:07:49 +0000620 struct utmp *ut)
621{
Damien Miller02e16ad2003-01-03 14:42:27 +1100622# ifdef HAVE_ADDR_V6_IN_UTMP
623 struct sockaddr_in6 *sa6;
Damien Miller8899ed32004-09-12 15:18:55 +1000624# endif
625
Damien Miller348c9b72000-08-15 10:01:22 +1000626 memset(ut, '\0', sizeof(*ut));
andre6bb92372000-06-19 08:20:03 +0000627
628 /* First fill out fields used for both logins and logouts */
629
Damien Millerdd47aa22000-06-27 11:18:27 +1000630# ifdef HAVE_ID_IN_UTMP
andre2ff7b5d2000-06-03 14:57:40 +0000631 line_abbrevname(ut->ut_id, li->line, sizeof(ut->ut_id));
Damien Millerdd47aa22000-06-27 11:18:27 +1000632# endif
andre2ff7b5d2000-06-03 14:57:40 +0000633
Damien Millerdd47aa22000-06-27 11:18:27 +1000634# ifdef HAVE_TYPE_IN_UTMP
andre6bb92372000-06-19 08:20:03 +0000635 /* This is done here to keep utmp constants out of struct logininfo */
andre2ff7b5d2000-06-03 14:57:40 +0000636 switch (li->type) {
637 case LTYPE_LOGIN:
638 ut->ut_type = USER_PROCESS;
Tim Rice81ed5182002-09-25 17:38:46 -0700639#ifdef _UNICOS
Ben Lindstrom6db66ff2001-08-06 23:29:16 +0000640 cray_set_tmpdir(ut);
641#endif
andre2ff7b5d2000-06-03 14:57:40 +0000642 break;
643 case LTYPE_LOGOUT:
644 ut->ut_type = DEAD_PROCESS;
Tim Rice81ed5182002-09-25 17:38:46 -0700645#ifdef _UNICOS
Ben Lindstrom6db66ff2001-08-06 23:29:16 +0000646 cray_retain_utmp(ut, li->pid);
647#endif
andre2ff7b5d2000-06-03 14:57:40 +0000648 break;
649 }
Damien Millerdd47aa22000-06-27 11:18:27 +1000650# endif
andre6bb92372000-06-19 08:20:03 +0000651 set_utmp_time(li, ut);
andre2ff7b5d2000-06-03 14:57:40 +0000652
andre6bb92372000-06-19 08:20:03 +0000653 line_stripname(ut->ut_line, li->line, sizeof(ut->ut_line));
Damien Millerdd47aa22000-06-27 11:18:27 +1000654
655# ifdef HAVE_PID_IN_UTMP
andre2ff7b5d2000-06-03 14:57:40 +0000656 ut->ut_pid = li->pid;
Damien Millerdd47aa22000-06-27 11:18:27 +1000657# endif
andre6bb92372000-06-19 08:20:03 +0000658
659 /* If we're logging out, leave all other fields blank */
660 if (li->type == LTYPE_LOGOUT)
Damien Miller8899ed32004-09-12 15:18:55 +1000661 return;
andre6bb92372000-06-19 08:20:03 +0000662
Damien Millerdd47aa22000-06-27 11:18:27 +1000663 /*
664 * These fields are only used when logging in, and are blank
Kevin Stevesef4eea92001-02-05 12:42:17 +0000665 * for logouts.
Damien Millerdd47aa22000-06-27 11:18:27 +1000666 */
andre6bb92372000-06-19 08:20:03 +0000667
668 /* Use strncpy because we don't necessarily want null termination */
Damien Miller8899ed32004-09-12 15:18:55 +1000669 strncpy(ut->ut_name, li->username,
670 MIN_SIZEOF(ut->ut_name, li->username));
Damien Millerdd47aa22000-06-27 11:18:27 +1000671# ifdef HAVE_HOST_IN_UTMP
Damien Miller8899ed32004-09-12 15:18:55 +1000672 strncpy(ut->ut_host, li->hostname,
673 MIN_SIZEOF(ut->ut_host, li->hostname));
Damien Millerdd47aa22000-06-27 11:18:27 +1000674# endif
675# ifdef HAVE_ADDR_IN_UTMP
andre61e67252000-06-04 17:07:49 +0000676 /* this is just a 32-bit IP address */
677 if (li->hostaddr.sa.sa_family == AF_INET)
678 ut->ut_addr = li->hostaddr.sa_in.sin_addr.s_addr;
Kevin Stevesef4eea92001-02-05 12:42:17 +0000679# endif
Damien Miller02e16ad2003-01-03 14:42:27 +1100680# ifdef HAVE_ADDR_V6_IN_UTMP
681 /* this is just a 128-bit IPv6 address */
682 if (li->hostaddr.sa.sa_family == AF_INET6) {
683 sa6 = ((struct sockaddr_in6 *)&li->hostaddr.sa);
684 memcpy(ut->ut_addr_v6, sa6->sin6_addr.s6_addr, 16);
685 if (IN6_IS_ADDR_V4MAPPED(&sa6->sin6_addr)) {
686 ut->ut_addr_v6[0] = ut->ut_addr_v6[3];
687 ut->ut_addr_v6[1] = 0;
688 ut->ut_addr_v6[2] = 0;
689 ut->ut_addr_v6[3] = 0;
690 }
691 }
692# endif
andre61e67252000-06-04 17:07:49 +0000693}
Damien Millerdd47aa22000-06-27 11:18:27 +1000694#endif /* USE_UTMP || USE_WTMP || USE_LOGIN */
andre61e67252000-06-04 17:07:49 +0000695
andre2ff7b5d2000-06-03 14:57:40 +0000696/**
697 ** utmpx utility functions
andre61e67252000-06-04 17:07:49 +0000698 **
699 ** These functions manipulate struct utmpx, accounting for system
700 ** variations.
andre2ff7b5d2000-06-03 14:57:40 +0000701 **/
702
703#if defined(USE_UTMPX) || defined (USE_WTMPX)
andre2ff7b5d2000-06-03 14:57:40 +0000704/* build the utmpx structure */
705void
andre61e67252000-06-04 17:07:49 +0000706set_utmpx_time(struct logininfo *li, struct utmpx *utx)
707{
Damien Miller8899ed32004-09-12 15:18:55 +1000708# if defined(HAVE_TV_IN_UTMPX)
andre2ff7b5d2000-06-03 14:57:40 +0000709 utx->ut_tv.tv_sec = li->tv_sec;
710 utx->ut_tv.tv_usec = li->tv_usec;
Damien Miller8899ed32004-09-12 15:18:55 +1000711# elif defined(HAVE_TIME_IN_UTMPX)
andre2ff7b5d2000-06-03 14:57:40 +0000712 utx->ut_time = li->tv_sec;
Damien Miller8899ed32004-09-12 15:18:55 +1000713# endif
andre2ff7b5d2000-06-03 14:57:40 +0000714}
715
andre61e67252000-06-04 17:07:49 +0000716void
717construct_utmpx(struct logininfo *li, struct utmpx *utx)
718{
Damien Miller02e16ad2003-01-03 14:42:27 +1100719# ifdef HAVE_ADDR_V6_IN_UTMP
720 struct sockaddr_in6 *sa6;
721# endif
Damien Miller348c9b72000-08-15 10:01:22 +1000722 memset(utx, '\0', sizeof(*utx));
Damien Miller8899ed32004-09-12 15:18:55 +1000723
Damien Miller8e81ed32000-07-01 13:17:42 +1000724# ifdef HAVE_ID_IN_UTMPX
andre2ff7b5d2000-06-03 14:57:40 +0000725 line_abbrevname(utx->ut_id, li->line, sizeof(utx->ut_id));
Damien Miller8e81ed32000-07-01 13:17:42 +1000726# endif
andre2ff7b5d2000-06-03 14:57:40 +0000727
728 /* this is done here to keep utmp constants out of loginrec.h */
729 switch (li->type) {
730 case LTYPE_LOGIN:
731 utx->ut_type = USER_PROCESS;
732 break;
733 case LTYPE_LOGOUT:
734 utx->ut_type = DEAD_PROCESS;
735 break;
736 }
andre2ff7b5d2000-06-03 14:57:40 +0000737 line_stripname(utx->ut_line, li->line, sizeof(utx->ut_line));
andre2ff7b5d2000-06-03 14:57:40 +0000738 set_utmpx_time(li, utx);
andre6bb92372000-06-19 08:20:03 +0000739 utx->ut_pid = li->pid;
Damien Miller8899ed32004-09-12 15:18:55 +1000740
Tim Ricee06ae4a2002-02-24 17:56:46 -0800741 /* strncpy(): Don't necessarily want null termination */
Damien Miller8899ed32004-09-12 15:18:55 +1000742 strncpy(utx->ut_name, li->username,
743 MIN_SIZEOF(utx->ut_name, li->username));
andre6bb92372000-06-19 08:20:03 +0000744
745 if (li->type == LTYPE_LOGOUT)
746 return;
747
Damien Millerdd47aa22000-06-27 11:18:27 +1000748 /*
749 * These fields are only used when logging in, and are blank
Kevin Stevesef4eea92001-02-05 12:42:17 +0000750 * for logouts.
Damien Millerdd47aa22000-06-27 11:18:27 +1000751 */
andre6bb92372000-06-19 08:20:03 +0000752
Damien Millerdd47aa22000-06-27 11:18:27 +1000753# ifdef HAVE_HOST_IN_UTMPX
Damien Miller8899ed32004-09-12 15:18:55 +1000754 strncpy(utx->ut_host, li->hostname,
755 MIN_SIZEOF(utx->ut_host, li->hostname));
Damien Millerdd47aa22000-06-27 11:18:27 +1000756# endif
757# ifdef HAVE_ADDR_IN_UTMPX
Damien Millerd6f204d2000-09-23 13:57:27 +1100758 /* this is just a 32-bit IP address */
759 if (li->hostaddr.sa.sa_family == AF_INET)
760 utx->ut_addr = li->hostaddr.sa_in.sin_addr.s_addr;
Damien Millerdd47aa22000-06-27 11:18:27 +1000761# endif
Damien Miller02e16ad2003-01-03 14:42:27 +1100762# ifdef HAVE_ADDR_V6_IN_UTMP
763 /* this is just a 128-bit IPv6 address */
764 if (li->hostaddr.sa.sa_family == AF_INET6) {
765 sa6 = ((struct sockaddr_in6 *)&li->hostaddr.sa);
766 memcpy(ut->ut_addr_v6, sa6->sin6_addr.s6_addr, 16);
767 if (IN6_IS_ADDR_V4MAPPED(&sa6->sin6_addr)) {
768 ut->ut_addr_v6[0] = ut->ut_addr_v6[3];
769 ut->ut_addr_v6[1] = 0;
770 ut->ut_addr_v6[2] = 0;
771 ut->ut_addr_v6[3] = 0;
772 }
773 }
774# endif
Damien Millerdd47aa22000-06-27 11:18:27 +1000775# ifdef HAVE_SYSLEN_IN_UTMPX
andre6bb92372000-06-19 08:20:03 +0000776 /* ut_syslen is the length of the utx_host string */
777 utx->ut_syslen = MIN(strlen(li->hostname), sizeof(utx->ut_host));
Damien Millerdd47aa22000-06-27 11:18:27 +1000778# endif
andre61e67252000-06-04 17:07:49 +0000779}
Damien Millerdd47aa22000-06-27 11:18:27 +1000780#endif /* USE_UTMPX || USE_WTMPX */
andre2ff7b5d2000-06-03 14:57:40 +0000781
782/**
andre61e67252000-06-04 17:07:49 +0000783 ** Low-level utmp functions
andre2ff7b5d2000-06-03 14:57:40 +0000784 **/
785
786/* FIXME: (ATL) utmp_write_direct needs testing */
andre2ff7b5d2000-06-03 14:57:40 +0000787#ifdef USE_UTMP
788
andre2ff7b5d2000-06-03 14:57:40 +0000789/* if we can, use pututline() etc. */
Damien Millerdd47aa22000-06-27 11:18:27 +1000790# if !defined(DISABLE_PUTUTLINE) && defined(HAVE_SETUTENT) && \
791 defined(HAVE_PUTUTLINE)
andre2ff7b5d2000-06-03 14:57:40 +0000792# define UTMP_USE_LIBRARY
Damien Millerdd47aa22000-06-27 11:18:27 +1000793# endif
andre2ff7b5d2000-06-03 14:57:40 +0000794
795
796/* write a utmp entry with the system's help (pututline() and pals) */
Damien Millerdd47aa22000-06-27 11:18:27 +1000797# ifdef UTMP_USE_LIBRARY
andre2ff7b5d2000-06-03 14:57:40 +0000798static int
andre61e67252000-06-04 17:07:49 +0000799utmp_write_library(struct logininfo *li, struct utmp *ut)
800{
andre2ff7b5d2000-06-03 14:57:40 +0000801 setutent();
802 pututline(ut);
Damien Millerdd47aa22000-06-27 11:18:27 +1000803# ifdef HAVE_ENDUTENT
andre2ff7b5d2000-06-03 14:57:40 +0000804 endutent();
Damien Millerdd47aa22000-06-27 11:18:27 +1000805# endif
Damien Miller8899ed32004-09-12 15:18:55 +1000806 return (1);
andre61e67252000-06-04 17:07:49 +0000807}
Damien Millerdd47aa22000-06-27 11:18:27 +1000808# else /* UTMP_USE_LIBRARY */
andre2ff7b5d2000-06-03 14:57:40 +0000809
Damien Miller8899ed32004-09-12 15:18:55 +1000810/*
811 * Write a utmp entry direct to the file
812 * This is a slightly modification of code in OpenBSD's login.c
813 */
andre2ff7b5d2000-06-03 14:57:40 +0000814static int
andre61e67252000-06-04 17:07:49 +0000815utmp_write_direct(struct logininfo *li, struct utmp *ut)
816{
andre2ff7b5d2000-06-03 14:57:40 +0000817 struct utmp old_ut;
818 register int fd;
819 int tty;
820
andre6bb92372000-06-19 08:20:03 +0000821 /* FIXME: (ATL) ttyslot() needs local implementation */
Damien Miller348c9b72000-08-15 10:01:22 +1000822
Damien Millere5192fa2000-08-29 14:30:37 +1100823#if defined(HAVE_GETTTYENT)
Damien Miller8899ed32004-09-12 15:18:55 +1000824 struct ttyent *ty;
Damien Miller348c9b72000-08-15 10:01:22 +1000825
826 tty=0;
Damien Miller348c9b72000-08-15 10:01:22 +1000827 setttyent();
Damien Miller8899ed32004-09-12 15:18:55 +1000828 while (NULL != (ty = getttyent())) {
Damien Miller348c9b72000-08-15 10:01:22 +1000829 tty++;
830 if (!strncmp(ty->ty_name, ut->ut_line, sizeof(ut->ut_line)))
831 break;
832 }
833 endttyent();
834
Damien Miller8899ed32004-09-12 15:18:55 +1000835 if (NULL == ty) {
Damien Miller81409592004-08-15 19:12:52 +1000836 logit("%s: tty not found", __func__);
837 return (0);
Damien Miller348c9b72000-08-15 10:01:22 +1000838 }
839#else /* FIXME */
840
andre2ff7b5d2000-06-03 14:57:40 +0000841 tty = ttyslot(); /* seems only to work for /dev/ttyp? style names */
842
Damien Millere5192fa2000-08-29 14:30:37 +1100843#endif /* HAVE_GETTTYENT */
Damien Miller348c9b72000-08-15 10:01:22 +1000844
andre2ff7b5d2000-06-03 14:57:40 +0000845 if (tty > 0 && (fd = open(UTMP_FILE, O_RDWR|O_CREAT, 0644)) >= 0) {
Damien Miller81409592004-08-15 19:12:52 +1000846 off_t pos, ret;
847
848 pos = (off_t)tty * sizeof(struct utmp);
849 if ((ret = lseek(fd, pos, SEEK_SET)) == -1) {
Damien Millerb0419f22004-08-23 21:53:28 +1000850 logit("%s: lseek: %s", __func__, strerror(errno));
Damien Miller81409592004-08-15 19:12:52 +1000851 return (0);
852 }
853 if (ret != pos) {
Damien Millerb0419f22004-08-23 21:53:28 +1000854 logit("%s: Couldn't seek to tty %d slot in %s",
855 __func__, tty, UTMP_FILE);
Damien Miller81409592004-08-15 19:12:52 +1000856 return (0);
857 }
andre2ff7b5d2000-06-03 14:57:40 +0000858 /*
859 * Prevent luser from zero'ing out ut_host.
860 * If the new ut_line is empty but the old one is not
Damien Miller7a0e5dc2000-07-11 12:15:54 +1000861 * and ut_line and ut_name match, preserve the old ut_line.
andre2ff7b5d2000-06-03 14:57:40 +0000862 */
Kevin Stevesef4eea92001-02-05 12:42:17 +0000863 if (atomicio(read, fd, &old_ut, sizeof(old_ut)) == sizeof(old_ut) &&
Damien Miller8899ed32004-09-12 15:18:55 +1000864 (ut->ut_host[0] == '\0') && (old_ut.ut_host[0] != '\0') &&
865 (strncmp(old_ut.ut_line, ut->ut_line, sizeof(ut->ut_line)) == 0) &&
866 (strncmp(old_ut.ut_name, ut->ut_name, sizeof(ut->ut_name)) == 0))
867 memcpy(ut->ut_host, old_ut.ut_host, sizeof(ut->ut_host));
Kevin Stevesef4eea92001-02-05 12:42:17 +0000868
Damien Miller81409592004-08-15 19:12:52 +1000869 if ((ret = lseek(fd, pos, SEEK_SET)) == -1) {
Damien Millerb0419f22004-08-23 21:53:28 +1000870 logit("%s: lseek: %s", __func__, strerror(errno));
Damien Miller81409592004-08-15 19:12:52 +1000871 return (0);
872 }
873 if (ret != pos) {
Damien Millerb0419f22004-08-23 21:53:28 +1000874 logit("%s: Couldn't seek to tty %d slot in %s",
Damien Miller81409592004-08-15 19:12:52 +1000875 __func__, tty, UTMP_FILE);
876 return (0);
877 }
Damien Miller8899ed32004-09-12 15:18:55 +1000878 if (atomicio(vwrite, fd, ut, sizeof(*ut)) != sizeof(*ut)) {
Damien Miller81409592004-08-15 19:12:52 +1000879 logit("%s: error writing %s: %s", __func__,
andre6bb92372000-06-19 08:20:03 +0000880 UTMP_FILE, strerror(errno));
Damien Miller8899ed32004-09-12 15:18:55 +1000881 }
Kevin Stevesef4eea92001-02-05 12:42:17 +0000882
Damien Miller8899ed32004-09-12 15:18:55 +1000883 close(fd);
884 return (1);
Damien Miller53c5d462000-06-28 00:50:50 +1000885 } else {
Damien Miller8899ed32004-09-12 15:18:55 +1000886 return (0);
Damien Miller53c5d462000-06-28 00:50:50 +1000887 }
andre61e67252000-06-04 17:07:49 +0000888}
Damien Millerdd47aa22000-06-27 11:18:27 +1000889# endif /* UTMP_USE_LIBRARY */
andre2ff7b5d2000-06-03 14:57:40 +0000890
891static int
andre61e67252000-06-04 17:07:49 +0000892utmp_perform_login(struct logininfo *li)
893{
andre2ff7b5d2000-06-03 14:57:40 +0000894 struct utmp ut;
895
896 construct_utmp(li, &ut);
Damien Millerdd47aa22000-06-27 11:18:27 +1000897# ifdef UTMP_USE_LIBRARY
andre2ff7b5d2000-06-03 14:57:40 +0000898 if (!utmp_write_library(li, &ut)) {
Damien Miller6b0279c2004-09-12 15:25:17 +1000899 logit("%s: utmp_write_library() failed", __func__);
Damien Miller8899ed32004-09-12 15:18:55 +1000900 return (0);
andre2ff7b5d2000-06-03 14:57:40 +0000901 }
Damien Millerdd47aa22000-06-27 11:18:27 +1000902# else
andre2ff7b5d2000-06-03 14:57:40 +0000903 if (!utmp_write_direct(li, &ut)) {
Damien Miller6b0279c2004-09-12 15:25:17 +1000904 logit("%s: utmp_write_direct() failed", __func__);
Damien Miller8899ed32004-09-12 15:18:55 +1000905 return (0);
andre2ff7b5d2000-06-03 14:57:40 +0000906 }
Damien Millerdd47aa22000-06-27 11:18:27 +1000907# endif
Damien Miller8899ed32004-09-12 15:18:55 +1000908 return (1);
andre61e67252000-06-04 17:07:49 +0000909}
andre2ff7b5d2000-06-03 14:57:40 +0000910
911
912static int
andre61e67252000-06-04 17:07:49 +0000913utmp_perform_logout(struct logininfo *li)
914{
andre2ff7b5d2000-06-03 14:57:40 +0000915 struct utmp ut;
916
andre6bb92372000-06-19 08:20:03 +0000917 construct_utmp(li, &ut);
Damien Millerdd47aa22000-06-27 11:18:27 +1000918# ifdef UTMP_USE_LIBRARY
andre6bb92372000-06-19 08:20:03 +0000919 if (!utmp_write_library(li, &ut)) {
Damien Miller6b0279c2004-09-12 15:25:17 +1000920 logit("%s: utmp_write_library() failed", __func__);
Damien Miller8899ed32004-09-12 15:18:55 +1000921 return (0);
andre6bb92372000-06-19 08:20:03 +0000922 }
Damien Millerdd47aa22000-06-27 11:18:27 +1000923# else
andre6bb92372000-06-19 08:20:03 +0000924 if (!utmp_write_direct(li, &ut)) {
Damien Miller6b0279c2004-09-12 15:25:17 +1000925 logit("%s: utmp_write_direct() failed", __func__);
Damien Miller8899ed32004-09-12 15:18:55 +1000926 return (0);
andre6bb92372000-06-19 08:20:03 +0000927 }
Damien Millerdd47aa22000-06-27 11:18:27 +1000928# endif
Damien Miller8899ed32004-09-12 15:18:55 +1000929 return (1);
andre61e67252000-06-04 17:07:49 +0000930}
andre2ff7b5d2000-06-03 14:57:40 +0000931
932
933int
andre61e67252000-06-04 17:07:49 +0000934utmp_write_entry(struct logininfo *li)
935{
andre2ff7b5d2000-06-03 14:57:40 +0000936 switch(li->type) {
937 case LTYPE_LOGIN:
Damien Miller8899ed32004-09-12 15:18:55 +1000938 return (utmp_perform_login(li));
andre2ff7b5d2000-06-03 14:57:40 +0000939
940 case LTYPE_LOGOUT:
Damien Miller8899ed32004-09-12 15:18:55 +1000941 return (utmp_perform_logout(li));
andre2ff7b5d2000-06-03 14:57:40 +0000942
943 default:
Damien Miller6b0279c2004-09-12 15:25:17 +1000944 logit("%s: invalid type field", __func__);
Damien Miller8899ed32004-09-12 15:18:55 +1000945 return (0);
andre2ff7b5d2000-06-03 14:57:40 +0000946 }
andre61e67252000-06-04 17:07:49 +0000947}
Damien Millerdd47aa22000-06-27 11:18:27 +1000948#endif /* USE_UTMP */
andre2ff7b5d2000-06-03 14:57:40 +0000949
950
951/**
andre61e67252000-06-04 17:07:49 +0000952 ** Low-level utmpx functions
andre2ff7b5d2000-06-03 14:57:40 +0000953 **/
954
955/* not much point if we don't want utmpx entries */
956#ifdef USE_UTMPX
957
andre2ff7b5d2000-06-03 14:57:40 +0000958/* if we have the wherewithall, use pututxline etc. */
Damien Millerdd47aa22000-06-27 11:18:27 +1000959# if !defined(DISABLE_PUTUTXLINE) && defined(HAVE_SETUTXENT) && \
960 defined(HAVE_PUTUTXLINE)
andre2ff7b5d2000-06-03 14:57:40 +0000961# define UTMPX_USE_LIBRARY
Damien Millerdd47aa22000-06-27 11:18:27 +1000962# endif
andre2ff7b5d2000-06-03 14:57:40 +0000963
964
965/* write a utmpx entry with the system's help (pututxline() and pals) */
Damien Millerdd47aa22000-06-27 11:18:27 +1000966# ifdef UTMPX_USE_LIBRARY
andre2ff7b5d2000-06-03 14:57:40 +0000967static int
andre61e67252000-06-04 17:07:49 +0000968utmpx_write_library(struct logininfo *li, struct utmpx *utx)
969{
andre2ff7b5d2000-06-03 14:57:40 +0000970 setutxent();
971 pututxline(utx);
972
Damien Millerdd47aa22000-06-27 11:18:27 +1000973# ifdef HAVE_ENDUTXENT
andre2ff7b5d2000-06-03 14:57:40 +0000974 endutxent();
Damien Millerdd47aa22000-06-27 11:18:27 +1000975# endif
Damien Miller8899ed32004-09-12 15:18:55 +1000976 return (1);
andre61e67252000-06-04 17:07:49 +0000977}
andre2ff7b5d2000-06-03 14:57:40 +0000978
Damien Millerdd47aa22000-06-27 11:18:27 +1000979# else /* UTMPX_USE_LIBRARY */
andre2ff7b5d2000-06-03 14:57:40 +0000980
981/* write a utmp entry direct to the file */
982static int
andre61e67252000-06-04 17:07:49 +0000983utmpx_write_direct(struct logininfo *li, struct utmpx *utx)
Kevin Stevesef4eea92001-02-05 12:42:17 +0000984{
Damien Miller6b0279c2004-09-12 15:25:17 +1000985 logit("%s: not implemented!", __func__);
Damien Miller8899ed32004-09-12 15:18:55 +1000986 return (0);
andre61e67252000-06-04 17:07:49 +0000987}
Damien Millerdd47aa22000-06-27 11:18:27 +1000988# endif /* UTMPX_USE_LIBRARY */
andre2ff7b5d2000-06-03 14:57:40 +0000989
990static int
andre61e67252000-06-04 17:07:49 +0000991utmpx_perform_login(struct logininfo *li)
992{
andre2ff7b5d2000-06-03 14:57:40 +0000993 struct utmpx utx;
994
995 construct_utmpx(li, &utx);
Damien Millerdd47aa22000-06-27 11:18:27 +1000996# ifdef UTMPX_USE_LIBRARY
andre2ff7b5d2000-06-03 14:57:40 +0000997 if (!utmpx_write_library(li, &utx)) {
Damien Miller6b0279c2004-09-12 15:25:17 +1000998 logit("%s: utmp_write_library() failed", __func__);
Damien Miller8899ed32004-09-12 15:18:55 +1000999 return (0);
andre2ff7b5d2000-06-03 14:57:40 +00001000 }
Damien Millerdd47aa22000-06-27 11:18:27 +10001001# else
andre2ff7b5d2000-06-03 14:57:40 +00001002 if (!utmpx_write_direct(li, &ut)) {
Damien Miller6b0279c2004-09-12 15:25:17 +10001003 logit("%s: utmp_write_direct() failed", __func__);
Damien Miller8899ed32004-09-12 15:18:55 +10001004 return (0);
andre2ff7b5d2000-06-03 14:57:40 +00001005 }
Damien Millerdd47aa22000-06-27 11:18:27 +10001006# endif
Damien Miller8899ed32004-09-12 15:18:55 +10001007 return (1);
andre61e67252000-06-04 17:07:49 +00001008}
andre2ff7b5d2000-06-03 14:57:40 +00001009
1010
1011static int
andre61e67252000-06-04 17:07:49 +00001012utmpx_perform_logout(struct logininfo *li)
1013{
andre2ff7b5d2000-06-03 14:57:40 +00001014 struct utmpx utx;
1015
Tim Ricee06ae4a2002-02-24 17:56:46 -08001016 construct_utmpx(li, &utx);
Damien Millerdd47aa22000-06-27 11:18:27 +10001017# ifdef HAVE_ID_IN_UTMPX
andre2ff7b5d2000-06-03 14:57:40 +00001018 line_abbrevname(utx.ut_id, li->line, sizeof(utx.ut_id));
Damien Millerdd47aa22000-06-27 11:18:27 +10001019# endif
1020# ifdef HAVE_TYPE_IN_UTMPX
andre2ff7b5d2000-06-03 14:57:40 +00001021 utx.ut_type = DEAD_PROCESS;
Damien Millerdd47aa22000-06-27 11:18:27 +10001022# endif
andre2ff7b5d2000-06-03 14:57:40 +00001023
Damien Millerdd47aa22000-06-27 11:18:27 +10001024# ifdef UTMPX_USE_LIBRARY
andre2ff7b5d2000-06-03 14:57:40 +00001025 utmpx_write_library(li, &utx);
Damien Millerdd47aa22000-06-27 11:18:27 +10001026# else
andre2ff7b5d2000-06-03 14:57:40 +00001027 utmpx_write_direct(li, &utx);
Damien Millerdd47aa22000-06-27 11:18:27 +10001028# endif
Damien Miller8899ed32004-09-12 15:18:55 +10001029 return (1);
andre61e67252000-06-04 17:07:49 +00001030}
andre2ff7b5d2000-06-03 14:57:40 +00001031
andre2ff7b5d2000-06-03 14:57:40 +00001032int
andre61e67252000-06-04 17:07:49 +00001033utmpx_write_entry(struct logininfo *li)
1034{
andre2ff7b5d2000-06-03 14:57:40 +00001035 switch(li->type) {
1036 case LTYPE_LOGIN:
Damien Miller8899ed32004-09-12 15:18:55 +10001037 return (utmpx_perform_login(li));
andre2ff7b5d2000-06-03 14:57:40 +00001038 case LTYPE_LOGOUT:
Damien Miller8899ed32004-09-12 15:18:55 +10001039 return (utmpx_perform_logout(li));
andre2ff7b5d2000-06-03 14:57:40 +00001040 default:
Damien Miller6b0279c2004-09-12 15:25:17 +10001041 logit("%s: invalid type field", __func__);
Damien Miller8899ed32004-09-12 15:18:55 +10001042 return (0);
andre2ff7b5d2000-06-03 14:57:40 +00001043 }
andre61e67252000-06-04 17:07:49 +00001044}
Damien Millerdd47aa22000-06-27 11:18:27 +10001045#endif /* USE_UTMPX */
andre2ff7b5d2000-06-03 14:57:40 +00001046
1047
1048/**
andre61e67252000-06-04 17:07:49 +00001049 ** Low-level wtmp functions
andre2ff7b5d2000-06-03 14:57:40 +00001050 **/
1051
Kevin Stevesef4eea92001-02-05 12:42:17 +00001052#ifdef USE_WTMP
andre2ff7b5d2000-06-03 14:57:40 +00001053
Damien Miller8899ed32004-09-12 15:18:55 +10001054/*
1055 * Write a wtmp entry direct to the end of the file
1056 * This is a slight modification of code in OpenBSD's logwtmp.c
1057 */
andre2ff7b5d2000-06-03 14:57:40 +00001058static int
andre61e67252000-06-04 17:07:49 +00001059wtmp_write(struct logininfo *li, struct utmp *ut)
1060{
andre2ff7b5d2000-06-03 14:57:40 +00001061 struct stat buf;
1062 int fd, ret = 1;
1063
1064 if ((fd = open(WTMP_FILE, O_WRONLY|O_APPEND, 0)) < 0) {
Damien Miller6b0279c2004-09-12 15:25:17 +10001065 logit("%s: problem writing %s: %s", __func__,
andre2ff7b5d2000-06-03 14:57:40 +00001066 WTMP_FILE, strerror(errno));
Damien Miller8899ed32004-09-12 15:18:55 +10001067 return (0);
andre2ff7b5d2000-06-03 14:57:40 +00001068 }
Kevin Stevesef4eea92001-02-05 12:42:17 +00001069 if (fstat(fd, &buf) == 0)
Darren Tucker8661b562003-07-06 15:20:46 +10001070 if (atomicio(vwrite, fd, ut, sizeof(*ut)) != sizeof(*ut)) {
andre2ff7b5d2000-06-03 14:57:40 +00001071 ftruncate(fd, buf.st_size);
Damien Miller6b0279c2004-09-12 15:25:17 +10001072 logit("%s: problem writing %s: %s", __func__,
andre2ff7b5d2000-06-03 14:57:40 +00001073 WTMP_FILE, strerror(errno));
1074 ret = 0;
1075 }
Damien Miller8899ed32004-09-12 15:18:55 +10001076 close(fd);
1077 return (ret);
andre61e67252000-06-04 17:07:49 +00001078}
andre2ff7b5d2000-06-03 14:57:40 +00001079
andre2ff7b5d2000-06-03 14:57:40 +00001080static int
Damien Millerdd47aa22000-06-27 11:18:27 +10001081wtmp_perform_login(struct logininfo *li)
1082{
andre2ff7b5d2000-06-03 14:57:40 +00001083 struct utmp ut;
1084
1085 construct_utmp(li, &ut);
Damien Miller8899ed32004-09-12 15:18:55 +10001086 return (wtmp_write(li, &ut));
andre61e67252000-06-04 17:07:49 +00001087}
andre2ff7b5d2000-06-03 14:57:40 +00001088
1089
1090static int
andre61e67252000-06-04 17:07:49 +00001091wtmp_perform_logout(struct logininfo *li)
1092{
andre2ff7b5d2000-06-03 14:57:40 +00001093 struct utmp ut;
1094
1095 construct_utmp(li, &ut);
Damien Miller8899ed32004-09-12 15:18:55 +10001096 return (wtmp_write(li, &ut));
andre61e67252000-06-04 17:07:49 +00001097}
andre2ff7b5d2000-06-03 14:57:40 +00001098
1099
1100int
andre61e67252000-06-04 17:07:49 +00001101wtmp_write_entry(struct logininfo *li)
1102{
andre2ff7b5d2000-06-03 14:57:40 +00001103 switch(li->type) {
1104 case LTYPE_LOGIN:
Damien Miller8899ed32004-09-12 15:18:55 +10001105 return (wtmp_perform_login(li));
andre2ff7b5d2000-06-03 14:57:40 +00001106 case LTYPE_LOGOUT:
Damien Miller8899ed32004-09-12 15:18:55 +10001107 return (wtmp_perform_logout(li));
andre2ff7b5d2000-06-03 14:57:40 +00001108 default:
Damien Miller6b0279c2004-09-12 15:25:17 +10001109 logit("%s: invalid type field", __func__);
Damien Miller8899ed32004-09-12 15:18:55 +10001110 return (0);
andre2ff7b5d2000-06-03 14:57:40 +00001111 }
andre61e67252000-06-04 17:07:49 +00001112}
andre2ff7b5d2000-06-03 14:57:40 +00001113
1114
Damien Miller8899ed32004-09-12 15:18:55 +10001115/*
1116 * Notes on fetching login data from wtmp/wtmpx
Kevin Stevesef4eea92001-02-05 12:42:17 +00001117 *
andre6bb92372000-06-19 08:20:03 +00001118 * Logouts are usually recorded with (amongst other things) a blank
1119 * username on a given tty line. However, some systems (HP-UX is one)
1120 * leave all fields set, but change the ut_type field to DEAD_PROCESS.
1121 *
1122 * Since we're only looking for logins here, we know that the username
1123 * must be set correctly. On systems that leave it in, we check for
1124 * ut_type==USER_PROCESS (indicating a login.)
1125 *
1126 * Portability: Some systems may set something other than USER_PROCESS
1127 * to indicate a login process. I don't know of any as I write. Also,
1128 * it's possible that some systems may both leave the username in
1129 * place and not have ut_type.
1130 */
1131
andre6bb92372000-06-19 08:20:03 +00001132/* return true if this wtmp entry indicates a login */
1133static int
1134wtmp_islogin(struct logininfo *li, struct utmp *ut)
1135{
Kevin Stevesef4eea92001-02-05 12:42:17 +00001136 if (strncmp(li->username, ut->ut_name,
Damien Miller8899ed32004-09-12 15:18:55 +10001137 MIN_SIZEOF(li->username, ut->ut_name)) == 0) {
Damien Millerdd47aa22000-06-27 11:18:27 +10001138# ifdef HAVE_TYPE_IN_UTMP
andre6bb92372000-06-19 08:20:03 +00001139 if (ut->ut_type & USER_PROCESS)
Damien Miller8899ed32004-09-12 15:18:55 +10001140 return (1);
Damien Millerdd47aa22000-06-27 11:18:27 +10001141# else
Damien Miller8899ed32004-09-12 15:18:55 +10001142 return (1);
Damien Millerdd47aa22000-06-27 11:18:27 +10001143# endif
andre6bb92372000-06-19 08:20:03 +00001144 }
Damien Miller8899ed32004-09-12 15:18:55 +10001145 return (0);
andre6bb92372000-06-19 08:20:03 +00001146}
1147
andre2ff7b5d2000-06-03 14:57:40 +00001148int
andre61e67252000-06-04 17:07:49 +00001149wtmp_get_entry(struct logininfo *li)
1150{
andre2ff7b5d2000-06-03 14:57:40 +00001151 struct stat st;
1152 struct utmp ut;
Damien Miller8899ed32004-09-12 15:18:55 +10001153 int fd, found = 0;
andre6bb92372000-06-19 08:20:03 +00001154
1155 /* Clear the time entries in our logininfo */
1156 li->tv_sec = li->tv_usec = 0;
andre2ff7b5d2000-06-03 14:57:40 +00001157
1158 if ((fd = open(WTMP_FILE, O_RDONLY)) < 0) {
Damien Miller6b0279c2004-09-12 15:25:17 +10001159 logit("%s: problem opening %s: %s", __func__,
andre2ff7b5d2000-06-03 14:57:40 +00001160 WTMP_FILE, strerror(errno));
Damien Miller8899ed32004-09-12 15:18:55 +10001161 return (0);
andre2ff7b5d2000-06-03 14:57:40 +00001162 }
Kevin Stevesef4eea92001-02-05 12:42:17 +00001163 if (fstat(fd, &st) != 0) {
Damien Miller6b0279c2004-09-12 15:25:17 +10001164 logit("%s: couldn't stat %s: %s", __func__,
andre2ff7b5d2000-06-03 14:57:40 +00001165 WTMP_FILE, strerror(errno));
1166 close(fd);
Damien Miller8899ed32004-09-12 15:18:55 +10001167 return (0);
andre2ff7b5d2000-06-03 14:57:40 +00001168 }
andre2ff7b5d2000-06-03 14:57:40 +00001169
andre6bb92372000-06-19 08:20:03 +00001170 /* Seek to the start of the last struct utmp */
Kevin Steves52172652001-10-02 00:29:00 +00001171 if (lseek(fd, -(off_t)sizeof(struct utmp), SEEK_END) == -1) {
andre6bb92372000-06-19 08:20:03 +00001172 /* Looks like we've got a fresh wtmp file */
1173 close(fd);
Damien Miller8899ed32004-09-12 15:18:55 +10001174 return (0);
andre6bb92372000-06-19 08:20:03 +00001175 }
1176
1177 while (!found) {
Damien Miller53c5d462000-06-28 00:50:50 +10001178 if (atomicio(read, fd, &ut, sizeof(ut)) != sizeof(ut)) {
Damien Miller6b0279c2004-09-12 15:25:17 +10001179 logit("%s: read of %s failed: %s", __func__,
andre2ff7b5d2000-06-03 14:57:40 +00001180 WTMP_FILE, strerror(errno));
1181 close (fd);
Damien Miller8899ed32004-09-12 15:18:55 +10001182 return (0);
andre2ff7b5d2000-06-03 14:57:40 +00001183 }
andre6bb92372000-06-19 08:20:03 +00001184 if ( wtmp_islogin(li, &ut) ) {
1185 found = 1;
Damien Miller8899ed32004-09-12 15:18:55 +10001186 /*
1187 * We've already checked for a time in struct
1188 * utmp, in login_getlast()
1189 */
Damien Millerdd47aa22000-06-27 11:18:27 +10001190# ifdef HAVE_TIME_IN_UTMP
andre2ff7b5d2000-06-03 14:57:40 +00001191 li->tv_sec = ut.ut_time;
Damien Millerdd47aa22000-06-27 11:18:27 +10001192# else
andre2ff7b5d2000-06-03 14:57:40 +00001193# if HAVE_TV_IN_UTMP
1194 li->tv_sec = ut.ut_tv.tv_sec;
1195# endif
Damien Millerdd47aa22000-06-27 11:18:27 +10001196# endif
andre6bb92372000-06-19 08:20:03 +00001197 line_fullname(li->line, ut.ut_line,
Damien Miller8899ed32004-09-12 15:18:55 +10001198 MIN_SIZEOF(li->line, ut.ut_line));
Damien Millerdd47aa22000-06-27 11:18:27 +10001199# ifdef HAVE_HOST_IN_UTMP
andre6bb92372000-06-19 08:20:03 +00001200 strlcpy(li->hostname, ut.ut_host,
Damien Miller8899ed32004-09-12 15:18:55 +10001201 MIN_SIZEOF(li->hostname, ut.ut_host));
Damien Millerdd47aa22000-06-27 11:18:27 +10001202# endif
andre6bb92372000-06-19 08:20:03 +00001203 continue;
andre2ff7b5d2000-06-03 14:57:40 +00001204 }
andre6bb92372000-06-19 08:20:03 +00001205 /* Seek back 2 x struct utmp */
Kevin Steves52172652001-10-02 00:29:00 +00001206 if (lseek(fd, -(off_t)(2 * sizeof(struct utmp)), SEEK_CUR) == -1) {
andre6bb92372000-06-19 08:20:03 +00001207 /* We've found the start of the file, so quit */
Damien Miller8899ed32004-09-12 15:18:55 +10001208 close(fd);
1209 return (0);
andre2ff7b5d2000-06-03 14:57:40 +00001210 }
andre6bb92372000-06-19 08:20:03 +00001211 }
1212
1213 /* We found an entry. Tidy up and return */
1214 close(fd);
Damien Miller8899ed32004-09-12 15:18:55 +10001215 return (1);
andre61e67252000-06-04 17:07:49 +00001216}
Damien Millerdd47aa22000-06-27 11:18:27 +10001217# endif /* USE_WTMP */
andre2ff7b5d2000-06-03 14:57:40 +00001218
1219
1220/**
andre61e67252000-06-04 17:07:49 +00001221 ** Low-level wtmpx functions
andre2ff7b5d2000-06-03 14:57:40 +00001222 **/
1223
1224#ifdef USE_WTMPX
Damien Miller8899ed32004-09-12 15:18:55 +10001225/*
1226 * Write a wtmpx entry direct to the end of the file
1227 * This is a slight modification of code in OpenBSD's logwtmp.c
1228 */
andre2ff7b5d2000-06-03 14:57:40 +00001229static int
andre61e67252000-06-04 17:07:49 +00001230wtmpx_write(struct logininfo *li, struct utmpx *utx)
1231{
Darren Tuckerc28b88a2004-02-10 16:49:35 +11001232#ifndef HAVE_UPDWTMPX
andre2ff7b5d2000-06-03 14:57:40 +00001233 struct stat buf;
1234 int fd, ret = 1;
1235
1236 if ((fd = open(WTMPX_FILE, O_WRONLY|O_APPEND, 0)) < 0) {
Damien Miller6b0279c2004-09-12 15:25:17 +10001237 logit("%s: problem opening %s: %s", __func__,
andre2ff7b5d2000-06-03 14:57:40 +00001238 WTMPX_FILE, strerror(errno));
Damien Miller8899ed32004-09-12 15:18:55 +10001239 return (0);
andre2ff7b5d2000-06-03 14:57:40 +00001240 }
1241
Kevin Stevesef4eea92001-02-05 12:42:17 +00001242 if (fstat(fd, &buf) == 0)
Darren Tucker8661b562003-07-06 15:20:46 +10001243 if (atomicio(vwrite, fd, utx, sizeof(*utx)) != sizeof(*utx)) {
andre2ff7b5d2000-06-03 14:57:40 +00001244 ftruncate(fd, buf.st_size);
Damien Miller6b0279c2004-09-12 15:25:17 +10001245 logit("%s: problem writing %s: %s", __func__,
andre2ff7b5d2000-06-03 14:57:40 +00001246 WTMPX_FILE, strerror(errno));
1247 ret = 0;
1248 }
Damien Miller8899ed32004-09-12 15:18:55 +10001249 close(fd);
andre2ff7b5d2000-06-03 14:57:40 +00001250
Damien Miller8899ed32004-09-12 15:18:55 +10001251 return (ret);
Darren Tuckerc28b88a2004-02-10 16:49:35 +11001252#else
1253 updwtmpx(WTMPX_FILE, utx);
Damien Miller8899ed32004-09-12 15:18:55 +10001254 return (1);
Darren Tuckerc28b88a2004-02-10 16:49:35 +11001255#endif
andre61e67252000-06-04 17:07:49 +00001256}
andre2ff7b5d2000-06-03 14:57:40 +00001257
1258
1259static int
andre61e67252000-06-04 17:07:49 +00001260wtmpx_perform_login(struct logininfo *li)
1261{
andre2ff7b5d2000-06-03 14:57:40 +00001262 struct utmpx utx;
1263
1264 construct_utmpx(li, &utx);
Damien Miller8899ed32004-09-12 15:18:55 +10001265 return (wtmpx_write(li, &utx));
andre61e67252000-06-04 17:07:49 +00001266}
andre2ff7b5d2000-06-03 14:57:40 +00001267
1268
1269static int
andre61e67252000-06-04 17:07:49 +00001270wtmpx_perform_logout(struct logininfo *li)
1271{
andre2ff7b5d2000-06-03 14:57:40 +00001272 struct utmpx utx;
1273
1274 construct_utmpx(li, &utx);
Damien Miller8899ed32004-09-12 15:18:55 +10001275 return (wtmpx_write(li, &utx));
andre61e67252000-06-04 17:07:49 +00001276}
andre2ff7b5d2000-06-03 14:57:40 +00001277
1278
1279int
andre61e67252000-06-04 17:07:49 +00001280wtmpx_write_entry(struct logininfo *li)
1281{
andre2ff7b5d2000-06-03 14:57:40 +00001282 switch(li->type) {
1283 case LTYPE_LOGIN:
Damien Miller8899ed32004-09-12 15:18:55 +10001284 return (wtmpx_perform_login(li));
andre2ff7b5d2000-06-03 14:57:40 +00001285 case LTYPE_LOGOUT:
Damien Miller8899ed32004-09-12 15:18:55 +10001286 return (wtmpx_perform_logout(li));
andre2ff7b5d2000-06-03 14:57:40 +00001287 default:
Damien Miller6b0279c2004-09-12 15:25:17 +10001288 logit("%s: invalid type field", __func__);
Damien Miller8899ed32004-09-12 15:18:55 +10001289 return (0);
andre2ff7b5d2000-06-03 14:57:40 +00001290 }
andre61e67252000-06-04 17:07:49 +00001291}
andre2ff7b5d2000-06-03 14:57:40 +00001292
andre6bb92372000-06-19 08:20:03 +00001293/* Please see the notes above wtmp_islogin() for information about the
1294 next two functions */
1295
1296/* Return true if this wtmpx entry indicates a login */
1297static int
1298wtmpx_islogin(struct logininfo *li, struct utmpx *utx)
1299{
Damien Miller8899ed32004-09-12 15:18:55 +10001300 if (strncmp(li->username, utx->ut_name,
1301 MIN_SIZEOF(li->username, utx->ut_name)) == 0 ) {
Damien Millerdd47aa22000-06-27 11:18:27 +10001302# ifdef HAVE_TYPE_IN_UTMPX
andre6bb92372000-06-19 08:20:03 +00001303 if (utx->ut_type == USER_PROCESS)
Damien Miller8899ed32004-09-12 15:18:55 +10001304 return (1);
Damien Millerdd47aa22000-06-27 11:18:27 +10001305# else
Damien Miller8899ed32004-09-12 15:18:55 +10001306 return (1);
Damien Millerdd47aa22000-06-27 11:18:27 +10001307# endif
andre6bb92372000-06-19 08:20:03 +00001308 }
Damien Miller8899ed32004-09-12 15:18:55 +10001309 return (0);
andre6bb92372000-06-19 08:20:03 +00001310}
1311
andre2ff7b5d2000-06-03 14:57:40 +00001312
1313int
andre61e67252000-06-04 17:07:49 +00001314wtmpx_get_entry(struct logininfo *li)
1315{
andre2ff7b5d2000-06-03 14:57:40 +00001316 struct stat st;
1317 struct utmpx utx;
andre6bb92372000-06-19 08:20:03 +00001318 int fd, found=0;
1319
1320 /* Clear the time entries */
1321 li->tv_sec = li->tv_usec = 0;
andre2ff7b5d2000-06-03 14:57:40 +00001322
1323 if ((fd = open(WTMPX_FILE, O_RDONLY)) < 0) {
Damien Miller6b0279c2004-09-12 15:25:17 +10001324 logit("%s: problem opening %s: %s", __func__,
andre2ff7b5d2000-06-03 14:57:40 +00001325 WTMPX_FILE, strerror(errno));
Damien Miller8899ed32004-09-12 15:18:55 +10001326 return (0);
andre2ff7b5d2000-06-03 14:57:40 +00001327 }
Kevin Stevesef4eea92001-02-05 12:42:17 +00001328 if (fstat(fd, &st) != 0) {
Damien Miller6b0279c2004-09-12 15:25:17 +10001329 logit("%s: couldn't stat %s: %s", __func__,
Tim Ricecdb82942002-07-14 15:33:20 -07001330 WTMPX_FILE, strerror(errno));
andre2ff7b5d2000-06-03 14:57:40 +00001331 close(fd);
Damien Miller8899ed32004-09-12 15:18:55 +10001332 return (0);
andre2ff7b5d2000-06-03 14:57:40 +00001333 }
Kevin Stevesef4eea92001-02-05 12:42:17 +00001334
andre6bb92372000-06-19 08:20:03 +00001335 /* Seek to the start of the last struct utmpx */
Kevin Steves52172652001-10-02 00:29:00 +00001336 if (lseek(fd, -(off_t)sizeof(struct utmpx), SEEK_END) == -1 ) {
andre6bb92372000-06-19 08:20:03 +00001337 /* probably a newly rotated wtmpx file */
1338 close(fd);
Damien Miller8899ed32004-09-12 15:18:55 +10001339 return (0);
andre6bb92372000-06-19 08:20:03 +00001340 }
andre2ff7b5d2000-06-03 14:57:40 +00001341
andre6bb92372000-06-19 08:20:03 +00001342 while (!found) {
Damien Miller53c5d462000-06-28 00:50:50 +10001343 if (atomicio(read, fd, &utx, sizeof(utx)) != sizeof(utx)) {
Damien Miller6b0279c2004-09-12 15:25:17 +10001344 logit("%s: read of %s failed: %s", __func__,
andre2ff7b5d2000-06-03 14:57:40 +00001345 WTMPX_FILE, strerror(errno));
1346 close (fd);
Damien Miller8899ed32004-09-12 15:18:55 +10001347 return (0);
andre2ff7b5d2000-06-03 14:57:40 +00001348 }
Damien Miller8899ed32004-09-12 15:18:55 +10001349 /*
1350 * Logouts are recorded as a blank username on a particular
1351 * line. So, we just need to find the username in struct utmpx
1352 */
1353 if (wtmpx_islogin(li, &utx)) {
Tim Rice370e0ba2002-07-14 15:50:51 -07001354 found = 1;
Damien Miller8899ed32004-09-12 15:18:55 +10001355# if defined(HAVE_TV_IN_UTMPX)
andre2ff7b5d2000-06-03 14:57:40 +00001356 li->tv_sec = utx.ut_tv.tv_sec;
Damien Miller8899ed32004-09-12 15:18:55 +10001357# elif defined(HAVE_TIME_IN_UTMPX)
andre2ff7b5d2000-06-03 14:57:40 +00001358 li->tv_sec = utx.ut_time;
Damien Millerdd47aa22000-06-27 11:18:27 +10001359# endif
Damien Miller1a132252000-06-13 21:23:17 +10001360 line_fullname(li->line, utx.ut_line, sizeof(li->line));
Damien Miller8899ed32004-09-12 15:18:55 +10001361# if defined(HAVE_HOST_IN_UTMPX)
andre6bb92372000-06-19 08:20:03 +00001362 strlcpy(li->hostname, utx.ut_host,
Damien Miller8899ed32004-09-12 15:18:55 +10001363 MIN_SIZEOF(li->hostname, utx.ut_host));
Damien Millerdd47aa22000-06-27 11:18:27 +10001364# endif
andre6bb92372000-06-19 08:20:03 +00001365 continue;
andre2ff7b5d2000-06-03 14:57:40 +00001366 }
Kevin Steves52172652001-10-02 00:29:00 +00001367 if (lseek(fd, -(off_t)(2 * sizeof(struct utmpx)), SEEK_CUR) == -1) {
Damien Miller8899ed32004-09-12 15:18:55 +10001368 close(fd);
1369 return (0);
andre2ff7b5d2000-06-03 14:57:40 +00001370 }
andre6bb92372000-06-19 08:20:03 +00001371 }
1372
1373 close(fd);
Damien Miller8899ed32004-09-12 15:18:55 +10001374 return (1);
andre61e67252000-06-04 17:07:49 +00001375}
Damien Millerd5bf3072000-06-07 21:32:13 +10001376#endif /* USE_WTMPX */
andre2ff7b5d2000-06-03 14:57:40 +00001377
andre2ff7b5d2000-06-03 14:57:40 +00001378/**
andre61e67252000-06-04 17:07:49 +00001379 ** Low-level libutil login() functions
andre2ff7b5d2000-06-03 14:57:40 +00001380 **/
1381
1382#ifdef USE_LOGIN
andre2ff7b5d2000-06-03 14:57:40 +00001383static int
andre61e67252000-06-04 17:07:49 +00001384syslogin_perform_login(struct logininfo *li)
1385{
andre2ff7b5d2000-06-03 14:57:40 +00001386 struct utmp *ut;
1387
Damien Millerb0aae332004-09-12 15:26:00 +10001388 ut = xmalloc(sizeof(*ut));
andre2ff7b5d2000-06-03 14:57:40 +00001389 construct_utmp(li, ut);
1390 login(ut);
Damien Millerf211efc2003-03-10 11:23:06 +11001391 free(ut);
andre2ff7b5d2000-06-03 14:57:40 +00001392
Damien Miller8899ed32004-09-12 15:18:55 +10001393 return (1);
andre61e67252000-06-04 17:07:49 +00001394}
1395
andre2ff7b5d2000-06-03 14:57:40 +00001396static int
andre61e67252000-06-04 17:07:49 +00001397syslogin_perform_logout(struct logininfo *li)
1398{
Damien Millerdd47aa22000-06-27 11:18:27 +10001399# ifdef HAVE_LOGOUT
Darren Tucker4d2f3612004-04-08 10:57:05 +10001400 char line[UT_LINESIZE];
Kevin Stevesef4eea92001-02-05 12:42:17 +00001401
andre2ff7b5d2000-06-03 14:57:40 +00001402 (void)line_stripname(line, li->line, sizeof(line));
1403
Damien Miller8899ed32004-09-12 15:18:55 +10001404 if (!logout(line))
Damien Miller6b0279c2004-09-12 15:25:17 +10001405 logit("%s: logout() returned an error", __func__);
Damien Millerdd47aa22000-06-27 11:18:27 +10001406# ifdef HAVE_LOGWTMP
Damien Miller8899ed32004-09-12 15:18:55 +10001407 else
andre2ff7b5d2000-06-03 14:57:40 +00001408 logwtmp(line, "", "");
Damien Millerdd47aa22000-06-27 11:18:27 +10001409# endif
andre6bb92372000-06-19 08:20:03 +00001410 /* FIXME: (ATL - if the need arises) What to do if we have
1411 * login, but no logout? what if logout but no logwtmp? All
1412 * routines are in libutil so they should all be there,
1413 * but... */
Damien Millerdd47aa22000-06-27 11:18:27 +10001414# endif
Damien Miller8899ed32004-09-12 15:18:55 +10001415 return (1);
andre61e67252000-06-04 17:07:49 +00001416}
andre2ff7b5d2000-06-03 14:57:40 +00001417
andre2ff7b5d2000-06-03 14:57:40 +00001418int
andre61e67252000-06-04 17:07:49 +00001419syslogin_write_entry(struct logininfo *li)
1420{
andre2ff7b5d2000-06-03 14:57:40 +00001421 switch (li->type) {
1422 case LTYPE_LOGIN:
Damien Miller8899ed32004-09-12 15:18:55 +10001423 return (syslogin_perform_login(li));
andre2ff7b5d2000-06-03 14:57:40 +00001424 case LTYPE_LOGOUT:
Damien Miller8899ed32004-09-12 15:18:55 +10001425 return (syslogin_perform_logout(li));
andre2ff7b5d2000-06-03 14:57:40 +00001426 default:
Damien Miller6b0279c2004-09-12 15:25:17 +10001427 logit("%s: Invalid type field", __func__);
Damien Miller8899ed32004-09-12 15:18:55 +10001428 return (0);
andre2ff7b5d2000-06-03 14:57:40 +00001429 }
andre61e67252000-06-04 17:07:49 +00001430}
Damien Millerd5bf3072000-06-07 21:32:13 +10001431#endif /* USE_LOGIN */
andre2ff7b5d2000-06-03 14:57:40 +00001432
1433/* end of file log-syslogin.c */
1434
andre2ff7b5d2000-06-03 14:57:40 +00001435/**
andre61e67252000-06-04 17:07:49 +00001436 ** Low-level lastlog functions
andre2ff7b5d2000-06-03 14:57:40 +00001437 **/
1438
1439#ifdef USE_LASTLOG
Damien Millerdd47aa22000-06-27 11:18:27 +10001440#define LL_FILE 1
1441#define LL_DIR 2
1442#define LL_OTHER 3
andre2ff7b5d2000-06-03 14:57:40 +00001443
andre2ff7b5d2000-06-03 14:57:40 +00001444static void
andre61e67252000-06-04 17:07:49 +00001445lastlog_construct(struct logininfo *li, struct lastlog *last)
1446{
andre2ff7b5d2000-06-03 14:57:40 +00001447 /* clear the structure */
Damien Miller348c9b72000-08-15 10:01:22 +10001448 memset(last, '\0', sizeof(*last));
Kevin Stevesef4eea92001-02-05 12:42:17 +00001449
Damien Miller8899ed32004-09-12 15:18:55 +10001450 line_stripname(last->ll_line, li->line, sizeof(last->ll_line));
andre6bb92372000-06-19 08:20:03 +00001451 strlcpy(last->ll_host, li->hostname,
1452 MIN_SIZEOF(last->ll_host, li->hostname));
andre2ff7b5d2000-06-03 14:57:40 +00001453 last->ll_time = li->tv_sec;
andre61e67252000-06-04 17:07:49 +00001454}
andre2ff7b5d2000-06-03 14:57:40 +00001455
andre2ff7b5d2000-06-03 14:57:40 +00001456static int
andre61e67252000-06-04 17:07:49 +00001457lastlog_filetype(char *filename)
1458{
andre2ff7b5d2000-06-03 14:57:40 +00001459 struct stat st;
1460
Damien Millerdd47aa22000-06-27 11:18:27 +10001461 if (stat(LASTLOG_FILE, &st) != 0) {
Damien Miller6b0279c2004-09-12 15:25:17 +10001462 logit("%s: Couldn't stat %s: %s", __func__,
Damien Miller8899ed32004-09-12 15:18:55 +10001463 LASTLOG_FILE, strerror(errno));
1464 return (0);
andre2ff7b5d2000-06-03 14:57:40 +00001465 }
andre2ff7b5d2000-06-03 14:57:40 +00001466 if (S_ISDIR(st.st_mode))
Damien Miller8899ed32004-09-12 15:18:55 +10001467 return (LL_DIR);
andre2ff7b5d2000-06-03 14:57:40 +00001468 else if (S_ISREG(st.st_mode))
Damien Miller8899ed32004-09-12 15:18:55 +10001469 return (LL_FILE);
andre2ff7b5d2000-06-03 14:57:40 +00001470 else
Damien Miller8899ed32004-09-12 15:18:55 +10001471 return (LL_OTHER);
andre61e67252000-06-04 17:07:49 +00001472}
andre2ff7b5d2000-06-03 14:57:40 +00001473
1474
1475/* open the file (using filemode) and seek to the login entry */
1476static int
andre61e67252000-06-04 17:07:49 +00001477lastlog_openseek(struct logininfo *li, int *fd, int filemode)
1478{
andre2ff7b5d2000-06-03 14:57:40 +00001479 off_t offset;
1480 int type;
1481 char lastlog_file[1024];
1482
1483 type = lastlog_filetype(LASTLOG_FILE);
1484 switch (type) {
Damien Miller8899ed32004-09-12 15:18:55 +10001485 case LL_FILE:
1486 strlcpy(lastlog_file, LASTLOG_FILE,
1487 sizeof(lastlog_file));
1488 break;
1489 case LL_DIR:
1490 snprintf(lastlog_file, sizeof(lastlog_file), "%s/%s",
1491 LASTLOG_FILE, li->username);
1492 break;
1493 default:
Damien Miller6b0279c2004-09-12 15:25:17 +10001494 logit("%s: %.100s is not a file or directory!", __func__,
Damien Miller8899ed32004-09-12 15:18:55 +10001495 LASTLOG_FILE);
1496 return (0);
Damien Millerdd47aa22000-06-27 11:18:27 +10001497 }
andre2ff7b5d2000-06-03 14:57:40 +00001498
Damien Miller405dc602003-04-09 21:12:52 +10001499 *fd = open(lastlog_file, filemode, 0600);
Damien Miller8899ed32004-09-12 15:18:55 +10001500 if (*fd < 0) {
Damien Miller6b0279c2004-09-12 15:25:17 +10001501 debug("%s: Couldn't open %s: %s", __func__,
andre2ff7b5d2000-06-03 14:57:40 +00001502 lastlog_file, strerror(errno));
Damien Miller8899ed32004-09-12 15:18:55 +10001503 return (0);
andre2ff7b5d2000-06-03 14:57:40 +00001504 }
Kevin Stevesef4eea92001-02-05 12:42:17 +00001505
Damien Millere477ef62000-08-15 10:21:17 +10001506 if (type == LL_FILE) {
1507 /* find this uid's offset in the lastlog file */
Kevin Steves52172652001-10-02 00:29:00 +00001508 offset = (off_t) ((long)li->uid * sizeof(struct lastlog));
andre2ff7b5d2000-06-03 14:57:40 +00001509
Damien Miller8899ed32004-09-12 15:18:55 +10001510 if (lseek(*fd, offset, SEEK_SET) != offset) {
Damien Miller6b0279c2004-09-12 15:25:17 +10001511 logit("%s: %s->lseek(): %s", __func__,
1512 lastlog_file, strerror(errno));
Damien Miller8899ed32004-09-12 15:18:55 +10001513 return (0);
Damien Millere477ef62000-08-15 10:21:17 +10001514 }
andre2ff7b5d2000-06-03 14:57:40 +00001515 }
Kevin Stevesef4eea92001-02-05 12:42:17 +00001516
Damien Miller8899ed32004-09-12 15:18:55 +10001517 return (1);
andre61e67252000-06-04 17:07:49 +00001518}
andre2ff7b5d2000-06-03 14:57:40 +00001519
1520static int
andre61e67252000-06-04 17:07:49 +00001521lastlog_perform_login(struct logininfo *li)
1522{
andre2ff7b5d2000-06-03 14:57:40 +00001523 struct lastlog last;
1524 int fd;
1525
1526 /* create our struct lastlog */
1527 lastlog_construct(li, &last);
1528
Damien Miller405dc602003-04-09 21:12:52 +10001529 if (!lastlog_openseek(li, &fd, O_RDWR|O_CREAT))
Damien Miller8899ed32004-09-12 15:18:55 +10001530 return (0);
Kevin Stevesef4eea92001-02-05 12:42:17 +00001531
andre2ff7b5d2000-06-03 14:57:40 +00001532 /* write the entry */
Darren Tucker8661b562003-07-06 15:20:46 +10001533 if (atomicio(vwrite, fd, &last, sizeof(last)) != sizeof(last)) {
Damien Millerc1132e72000-08-18 14:08:38 +10001534 close(fd);
Damien Miller6b0279c2004-09-12 15:25:17 +10001535 logit("%s: Error writing to %s: %s", __func__,
Damien Millerc1132e72000-08-18 14:08:38 +10001536 LASTLOG_FILE, strerror(errno));
Damien Miller8899ed32004-09-12 15:18:55 +10001537 return (0);
Damien Millerdd47aa22000-06-27 11:18:27 +10001538 }
Damien Millerc1132e72000-08-18 14:08:38 +10001539
1540 close(fd);
Damien Miller8899ed32004-09-12 15:18:55 +10001541 return (1);
andre61e67252000-06-04 17:07:49 +00001542}
andre2ff7b5d2000-06-03 14:57:40 +00001543
andre2ff7b5d2000-06-03 14:57:40 +00001544int
andre61e67252000-06-04 17:07:49 +00001545lastlog_write_entry(struct logininfo *li)
1546{
andre2ff7b5d2000-06-03 14:57:40 +00001547 switch(li->type) {
1548 case LTYPE_LOGIN:
Damien Miller8899ed32004-09-12 15:18:55 +10001549 return (lastlog_perform_login(li));
andre2ff7b5d2000-06-03 14:57:40 +00001550 default:
Damien Miller6b0279c2004-09-12 15:25:17 +10001551 logit("%s: Invalid type field", __func__);
Damien Miller8899ed32004-09-12 15:18:55 +10001552 return (0);
andre2ff7b5d2000-06-03 14:57:40 +00001553 }
andre61e67252000-06-04 17:07:49 +00001554}
andre2ff7b5d2000-06-03 14:57:40 +00001555
andre2ff7b5d2000-06-03 14:57:40 +00001556static void
andre61e67252000-06-04 17:07:49 +00001557lastlog_populate_entry(struct logininfo *li, struct lastlog *last)
1558{
andre2ff7b5d2000-06-03 14:57:40 +00001559 line_fullname(li->line, last->ll_line, sizeof(li->line));
Kevin Stevesef4eea92001-02-05 12:42:17 +00001560 strlcpy(li->hostname, last->ll_host,
Damien Miller8899ed32004-09-12 15:18:55 +10001561 MIN_SIZEOF(li->hostname, last->ll_host));
andre2ff7b5d2000-06-03 14:57:40 +00001562 li->tv_sec = last->ll_time;
andre61e67252000-06-04 17:07:49 +00001563}
andre2ff7b5d2000-06-03 14:57:40 +00001564
andre2ff7b5d2000-06-03 14:57:40 +00001565int
andre61e67252000-06-04 17:07:49 +00001566lastlog_get_entry(struct logininfo *li)
1567{
andre2ff7b5d2000-06-03 14:57:40 +00001568 struct lastlog last;
Damien Miller7df881d2003-01-07 16:46:58 +11001569 int fd, ret;
andre2ff7b5d2000-06-03 14:57:40 +00001570
Damien Miller3a8a5cd2001-10-22 16:49:22 +10001571 if (!lastlog_openseek(li, &fd, O_RDONLY))
Damien Miller7df881d2003-01-07 16:46:58 +11001572 return (0);
Damien Miller3a8a5cd2001-10-22 16:49:22 +10001573
Damien Miller7df881d2003-01-07 16:46:58 +11001574 ret = atomicio(read, fd, &last, sizeof(last));
Damien Miller3a8a5cd2001-10-22 16:49:22 +10001575 close(fd);
1576
Damien Miller7df881d2003-01-07 16:46:58 +11001577 switch (ret) {
1578 case 0:
1579 memset(&last, '\0', sizeof(last));
1580 /* FALLTHRU */
1581 case sizeof(last):
1582 lastlog_populate_entry(li, &last);
1583 return (1);
1584 case -1:
Damien Millera8e06ce2003-11-21 23:48:55 +11001585 error("%s: Error reading from %s: %s", __func__,
Damien Miller7df881d2003-01-07 16:46:58 +11001586 LASTLOG_FILE, strerror(errno));
1587 return (0);
1588 default:
1589 error("%s: Error reading from %s: Expecting %d, got %d",
1590 __func__, LASTLOG_FILE, sizeof(last), ret);
1591 return (0);
1592 }
Damien Miller3a8a5cd2001-10-22 16:49:22 +10001593
Damien Miller7df881d2003-01-07 16:46:58 +11001594 /* NOTREACHED */
1595 return (0);
andre61e67252000-06-04 17:07:49 +00001596}
Damien Millerd5bf3072000-06-07 21:32:13 +10001597#endif /* USE_LASTLOG */
Darren Tucker2fba9932005-02-02 23:30:24 +11001598
1599#ifdef USE_BTMP
1600 /*
1601 * Logs failed login attempts in _PATH_BTMP if that exists.
1602 * The most common login failure is to give password instead of username.
1603 * So the _PATH_BTMP file checked for the correct permission, so that
1604 * only root can read it.
1605 */
1606
1607void
1608record_failed_login(const char *username, const char *hostname,
1609 const char *ttyn)
1610{
1611 int fd;
1612 struct utmp ut;
1613 struct sockaddr_storage from;
1614 size_t fromlen = sizeof(from);
1615 struct sockaddr_in *a4;
1616 struct sockaddr_in6 *a6;
1617 time_t t;
1618 struct stat fst;
1619
1620 if (geteuid() != 0)
1621 return;
1622 if ((fd = open(_PATH_BTMP, O_WRONLY | O_APPEND)) < 0) {
1623 debug("Unable to open the btmp file %s: %s", _PATH_BTMP,
1624 strerror(errno));
1625 return;
1626 }
1627 if (fstat(fd, &fst) < 0) {
1628 logit("%s: fstat of %s failed: %s", __func__, _PATH_BTMP,
1629 strerror(errno));
1630 goto out;
1631 }
1632 if((fst.st_mode & (S_IRWXG | S_IRWXO)) || (fst.st_uid != 0)){
1633 logit("Excess permission or bad ownership on file %s",
1634 _PATH_BTMP);
1635 goto out;
1636 }
1637
1638 memset(&ut, 0, sizeof(ut));
1639 /* strncpy because we don't necessarily want nul termination */
1640 strncpy(ut.ut_user, username, sizeof(ut.ut_user));
1641 strlcpy(ut.ut_line, "ssh:notty", sizeof(ut.ut_line));
1642
1643 time(&t);
1644 ut.ut_time = t; /* ut_time is not always a time_t */
1645 ut.ut_type = LOGIN_PROCESS;
1646 ut.ut_pid = getpid();
1647
1648 /* strncpy because we don't necessarily want nul termination */
1649 strncpy(ut.ut_host, hostname, sizeof(ut.ut_host));
1650
1651 if (packet_connection_is_on_socket() &&
1652 getpeername(packet_get_connection_in(),
1653 (struct sockaddr *)&from, &fromlen) == 0) {
1654 ipv64_normalise_mapped(&from, &fromlen);
1655 if (from.ss_family == AF_INET) {
1656 a4 = (struct sockaddr_in *)&from;
1657 memcpy(&ut.ut_addr, &(a4->sin_addr),
1658 MIN_SIZEOF(ut.ut_addr, a4->sin_addr));
1659 }
1660#ifdef HAVE_ADDR_V6_IN_UTMP
1661 if (from.ss_family == AF_INET6) {
1662 a6 = (struct sockaddr_in6 *)&from;
1663 memcpy(&ut.ut_addr_v6, &(a6->sin6_addr),
1664 MIN_SIZEOF(ut.ut_addr_v6, a6->sin6_addr));
1665 }
1666#endif
1667 }
1668
1669 if (atomicio(vwrite, fd, &ut, sizeof(ut)) != sizeof(ut))
1670 error("Failed to write to %s: %s", _PATH_BTMP,
1671 strerror(errno));
1672
1673out:
1674 close(fd);
1675}
1676#endif /* USE_BTMP */