blob: aa01aac45049cf7f978293ef6cd6a0a5474cc04a [file] [log] [blame]
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001/*
Damien Miller95def091999-11-25 00:26:21 +11002 *
3 * login.c
4 *
5 * Author: Tatu Ylonen <ylo@cs.hut.fi>
6 *
7 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
8 * All rights reserved
9 *
10 * Created: Fri Mar 24 14:51:08 1995 ylo
11 *
12 * This file performs some of the things login(1) normally does. We cannot
13 * easily use something like login -p -h host -f user, because there are
14 * several different logins around, and it is hard to determined what kind of
15 * login the current system has. Also, we want to be able to execute commands
16 * on a tty.
17 *
18 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100019
20#include "includes.h"
Damien Miller95def091999-11-25 00:26:21 +110021RCSID("$Id: login.c,v 1.3 1999/11/24 13:26:22 damien Exp $");
Damien Millerd4a8b7e1999-10-27 13:42:43 +100022
23#include <utmp.h>
Damien Miller95def091999-11-25 00:26:21 +110024#include "ssh.h"
Damien Millerab18c411999-11-11 10:40:23 +110025
Damien Miller95def091999-11-25 00:26:21 +110026#ifdef HAVE_UTIL_H
27# include <util.h>
28#endif
Damien Millerab18c411999-11-11 10:40:23 +110029#ifdef HAVE_LASTLOG_H
30# include <lastlog.h>
31#endif
32
Damien Miller95def091999-11-25 00:26:21 +110033/* Returns the time when the user last logged in. Returns 0 if the
34 information is not available. This must be called before record_login.
Damien Millerd4a8b7e1999-10-27 13:42:43 +100035 The host the user logged in from will be returned in buf. */
36
37/* Returns the time when the user last logged in (or 0 if no previous login
38 is found). The name of the host used last time is returned in buf. */
39
Damien Miller95def091999-11-25 00:26:21 +110040unsigned long
41get_last_login_time(uid_t uid, const char *logname,
42 char *buf, unsigned int bufsize)
Damien Millerd4a8b7e1999-10-27 13:42:43 +100043{
Damien Miller95def091999-11-25 00:26:21 +110044 struct lastlog ll;
45 char *lastlog;
46 int fd;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100047
Damien Miller95def091999-11-25 00:26:21 +110048 lastlog = _PATH_LASTLOG;
49 buf[0] = '\0';
Damien Millerd4a8b7e1999-10-27 13:42:43 +100050
Damien Miller95def091999-11-25 00:26:21 +110051 fd = open(lastlog, O_RDONLY);
52 if (fd < 0)
53 return 0;
54 lseek(fd, (off_t) ((long) uid * sizeof(ll)), SEEK_SET);
55 if (read(fd, &ll, sizeof(ll)) != sizeof(ll)) {
56 close(fd);
57 return 0;
58 }
59 close(fd);
60 if (bufsize > sizeof(ll.ll_host) + 1)
61 bufsize = sizeof(ll.ll_host) + 1;
62 strncpy(buf, ll.ll_host, bufsize - 1);
63 buf[bufsize - 1] = 0;
64 return ll.ll_time;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100065}
66
67/* Records that the user has logged in. I these parts of operating systems
68 were more standardized. */
69
Damien Miller95def091999-11-25 00:26:21 +110070void
71record_login(int pid, const char *ttyname, const char *user, uid_t uid,
72 const char *host, struct sockaddr_in * addr)
Damien Millerd4a8b7e1999-10-27 13:42:43 +100073{
Damien Miller95def091999-11-25 00:26:21 +110074 int fd;
75 struct lastlog ll;
76 char *lastlog;
77 struct utmp u;
78 const char *utmp, *wtmp;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100079
Damien Miller95def091999-11-25 00:26:21 +110080 /* Construct an utmp/wtmp entry. */
81 memset(&u, 0, sizeof(u));
82 strncpy(u.ut_line, ttyname + 5, sizeof(u.ut_line));
83 u.ut_time = time(NULL);
84 strncpy(u.ut_name, user, sizeof(u.ut_name));
Damien Millerab18c411999-11-11 10:40:23 +110085#ifdef HAVE_HOST_IN_UTMP
Damien Miller95def091999-11-25 00:26:21 +110086 strncpy(u.ut_host, host, sizeof(u.ut_host));
Damien Millerab18c411999-11-11 10:40:23 +110087#endif
Damien Millerd4a8b7e1999-10-27 13:42:43 +100088
Damien Miller95def091999-11-25 00:26:21 +110089 /* Figure out the file names. */
90 utmp = _PATH_UTMP;
91 wtmp = _PATH_WTMP;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100092
Damien Miller95def091999-11-25 00:26:21 +110093 login(&u);
94 lastlog = _PATH_LASTLOG;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100095
Damien Miller95def091999-11-25 00:26:21 +110096 /* Update lastlog unless actually recording a logout. */
97 if (strcmp(user, "") != 0) {
98 /* It is safer to bzero the lastlog structure first
99 because some systems might have some extra fields in it
100 (e.g. SGI) */
101 memset(&ll, 0, sizeof(ll));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000102
Damien Miller95def091999-11-25 00:26:21 +1100103 /* Update lastlog. */
104 ll.ll_time = time(NULL);
105 strncpy(ll.ll_line, ttyname + 5, sizeof(ll.ll_line));
106 strncpy(ll.ll_host, host, sizeof(ll.ll_host));
107 fd = open(lastlog, O_RDWR);
108 if (fd >= 0) {
109 lseek(fd, (off_t) ((long) uid * sizeof(ll)), SEEK_SET);
110 if (write(fd, &ll, sizeof(ll)) != sizeof(ll))
111 log("Could not write %.100s: %.100s", lastlog, strerror(errno));
112 close(fd);
113 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000114 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000115}
Damien Miller95def091999-11-25 00:26:21 +1100116
117/* Records that the user has logged out. */
118
119void
120record_logout(int pid, const char *ttyname)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000121{
Damien Millerab18c411999-11-11 10:40:23 +1100122#ifdef HAVE_LIBUTIL_LOGIN
Damien Miller95def091999-11-25 00:26:21 +1100123 const char *line = ttyname + 5; /* /dev/ttyq8 -> ttyq8 */
124 if (logout(line))
125 logwtmp(line, "", "");
Damien Millerab18c411999-11-11 10:40:23 +1100126#else /* HAVE_LIBUTIL_LOGIN */
Damien Miller95def091999-11-25 00:26:21 +1100127 record_login(pid, ttyname, "", -1, "", NULL);
Damien Millerab18c411999-11-11 10:40:23 +1100128#endif /* HAVE_LIBUTIL_LOGIN */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000129}