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