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