blob: 95b850acbd13b5e26688dc1eb1513ed80fb204cc [file] [log] [blame]
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001/*
Damien Miller95def091999-11-25 00:26:21 +11002 * Author: Tatu Ylonen <ylo@cs.hut.fi>
Damien Miller95def091999-11-25 00:26:21 +11003 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
4 * All rights reserved
Damien Miller95def091999-11-25 00:26:21 +11005 * This file performs some of the things login(1) normally does. We cannot
6 * easily use something like login -p -h host -f user, because there are
7 * several different logins around, and it is hard to determined what kind of
8 * login the current system has. Also, we want to be able to execute commands
9 * on a tty.
Damien Miller4af51302000-04-16 11:18:38 +100010 *
Damien Millere4340be2000-09-16 13:29:08 +110011 * As far as I am concerned, the code I have written for this software
12 * can be used freely for any purpose. Any derived versions of this
13 * software must be clearly marked as such, and if the derived work is
14 * incompatible with the protocol description in the RFC file, it must be
15 * called by a name other than "ssh" or "Secure Shell".
16 *
17 * Copyright (c) 1999 Theo de Raadt. All rights reserved.
18 * Copyright (c) 1999 Markus Friedl. All rights reserved.
19 *
20 * Redistribution and use in source and binary forms, with or without
21 * modification, are permitted provided that the following conditions
22 * are met:
23 * 1. Redistributions of source code must retain the above copyright
24 * notice, this list of conditions and the following disclaimer.
25 * 2. Redistributions in binary form must reproduce the above copyright
26 * notice, this list of conditions and the following disclaimer in the
27 * documentation and/or other materials provided with the distribution.
28 *
29 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
30 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
31 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
32 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
33 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
34 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
35 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
36 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
37 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
38 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Damien Miller95def091999-11-25 00:26:21 +110039 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100040
41#include "includes.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100042
andre2ff7b5d2000-06-03 14:57:40 +000043#include "loginrec.h"
Darren Tucker09991742004-07-17 17:05:14 +100044#include "log.h"
45#include "buffer.h"
46#include "servconf.h"
47
48extern Buffer loginmsg;
49extern ServerOptions options;
Damien Miller2f6a0ad2000-05-31 11:20:11 +100050
Damien Miller5428f641999-11-25 11:54:57 +110051/*
52 * Returns the time when the user last logged in. Returns 0 if the
53 * information is not available. This must be called before record_login.
54 * The host the user logged in from will be returned in buf.
55 */
Ben Lindstrom46c16222000-12-22 01:43:59 +000056u_long
Damien Miller95def091999-11-25 00:26:21 +110057get_last_login_time(uid_t uid, const char *logname,
Ben Lindstrom5c385522002-06-23 21:23:20 +000058 char *buf, u_int bufsize)
Damien Millerd4a8b7e1999-10-27 13:42:43 +100059{
Ben Lindstrom78ffe262004-02-27 03:01:19 +000060 struct logininfo li;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100061
Ben Lindstrom78ffe262004-02-27 03:01:19 +000062 login_get_lastlog(&li, uid);
63 strlcpy(buf, li.hostname, bufsize);
64 return li.tv_sec;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100065}
66
Damien Miller5428f641999-11-25 11:54:57 +110067/*
Darren Tucker09991742004-07-17 17:05:14 +100068 * Generate and store last login message. This must be done before
69 * login_login() is called and lastlog is updated.
70 */
Darren Tucker133b7572004-08-12 22:50:03 +100071static void
Darren Tucker09991742004-07-17 17:05:14 +100072store_lastlog_message(const char *user, uid_t uid)
73{
74 char *time_string, hostname[MAXHOSTNAMELEN] = "", buf[512];
75 time_t last_login_time;
76
77#ifndef NO_SSH_LASTLOG
78 if (!options.print_lastlog)
79 return;
80
81 last_login_time = get_last_login_time(uid, user, hostname,
82 sizeof(hostname));
83
84 if (last_login_time != 0) {
85 time_string = ctime(&last_login_time);
86 if (strchr(time_string, '\n'))
87 *strchr(time_string, '\n') = '\0';
88 if (strcmp(hostname, "") == 0)
89 snprintf(buf, sizeof(buf), "Last login: %s\r\n",
90 time_string);
91 else
92 snprintf(buf, sizeof(buf), "Last login: %s from %s\r\n",
93 time_string, hostname);
94 buffer_append(&loginmsg, buf, strlen(buf));
95 }
96#endif /* NO_SSH_LASTLOG */
97}
98
99/*
Damien Miller469954d2003-06-18 20:25:33 +1000100 * Records that the user has logged in. I wish these parts of operating
101 * systems were more standardized.
Damien Miller5428f641999-11-25 11:54:57 +1100102 */
Damien Miller4af51302000-04-16 11:18:38 +1000103void
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000104record_login(pid_t pid, const char *tty, const char *user, uid_t uid,
Damien Miller90967402006-03-26 14:07:26 +1100105 const char *host, struct sockaddr *addr, socklen_t addrlen)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000106{
Ben Lindstrom78ffe262004-02-27 03:01:19 +0000107 struct logininfo *li;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000108
Darren Tucker09991742004-07-17 17:05:14 +1000109 /* save previous login details before writing new */
110 store_lastlog_message(user, uid);
111
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000112 li = login_alloc_entry(pid, user, host, tty);
Ben Lindstrom78ffe262004-02-27 03:01:19 +0000113 login_set_addr(li, addr, addrlen);
114 login_login(li);
115 login_free_entry(li);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000116}
Damien Miller95def091999-11-25 00:26:21 +1100117
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000118#ifdef LOGIN_NEEDS_UTMPX
119void
120record_utmp_only(pid_t pid, const char *ttyname, const char *user,
Kevin Steves678ee512003-01-01 23:43:55 +0000121 const char *host, struct sockaddr * addr, socklen_t addrlen)
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000122{
Ben Lindstrom78ffe262004-02-27 03:01:19 +0000123 struct logininfo *li;
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000124
Ben Lindstrom78ffe262004-02-27 03:01:19 +0000125 li = login_alloc_entry(pid, user, host, ttyname);
126 login_set_addr(li, addr, addrlen);
127 login_utmp_only(li);
128 login_free_entry(li);
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000129}
130#endif
131
Damien Miller95def091999-11-25 00:26:21 +1100132/* Records that the user has logged out. */
Damien Miller4af51302000-04-16 11:18:38 +1000133void
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000134record_logout(pid_t pid, const char *tty, const char *user)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000135{
Ben Lindstrom78ffe262004-02-27 03:01:19 +0000136 struct logininfo *li;
andre2ff7b5d2000-06-03 14:57:40 +0000137
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000138 li = login_alloc_entry(pid, user, NULL, tty);
Ben Lindstrom78ffe262004-02-27 03:01:19 +0000139 login_logout(li);
140 login_free_entry(li);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000141}