xref: /freebsd/lib/libpam/modules/pam_lastlog/pam_lastlog.c (revision 87569f75a91f298c52a71823c04d41cf53c88889)
1 /*-
2  * Copyright (c) 1980, 1987, 1988, 1991, 1993, 1994
3  *	The Regents of the University of California.  All rights reserved.
4  * Copyright (c) 2001 Mark R V Murray
5  * All rights reserved.
6  * Copyright (c) 2001 Networks Associates Technology, Inc.
7  * All rights reserved.
8  * Copyright (c) 2004 Joe R. Doupnik
9  * All rights reserved.
10  *
11  * Portions of this software were developed for the FreeBSD Project by
12  * ThinkSec AS and NAI Labs, the Security Research Division of Network
13  * Associates, Inc.  under DARPA/SPAWAR contract N66001-01-C-8035
14  * ("CBOSS"), as part of the DARPA CHATS research program.
15  *
16  * Redistribution and use in source and binary forms, with or without
17  * modification, are permitted provided that the following conditions
18  * are met:
19  * 1. Redistributions of source code must retain the above copyright
20  *    notice, this list of conditions and the following disclaimer.
21  * 2. Redistributions in binary form must reproduce the above copyright
22  *    notice, this list of conditions and the following disclaimer in the
23  *    documentation and/or other materials provided with the distribution.
24  * 3. The name of the author may not be used to endorse or promote
25  *    products derived from this software without specific prior written
26  *    permission.
27  * 4. Neither the name of the University nor the names of its contributors
28  *    may be used to endorse or promote products derived from this software
29  *    without specific prior written permission.
30  *
31  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
32  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
33  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
34  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
35  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
36  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
37  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
38  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
39  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
40  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
41  * SUCH DAMAGE.
42  */
43 
44 #include <sys/cdefs.h>
45 __FBSDID("$FreeBSD$");
46 
47 #define _BSD_SOURCE
48 
49 #include <sys/param.h>
50 
51 #include <fcntl.h>
52 #include <libutil.h>
53 #include <paths.h>
54 #include <pwd.h>
55 #include <stdio.h>
56 #include <stdlib.h>
57 #include <string.h>
58 #include <syslog.h>
59 #include <time.h>
60 #include <unistd.h>
61 #include <utmp.h>
62 
63 #define PAM_SM_SESSION
64 
65 #include <security/pam_appl.h>
66 #include <security/pam_modules.h>
67 #include <security/pam_mod_misc.h>
68 
69 PAM_EXTERN int
70 pam_sm_open_session(pam_handle_t *pamh, int flags,
71     int argc __unused, const char *argv[] __unused)
72 {
73 	struct passwd *pwd;
74 	struct utmp utmp;
75 	struct lastlog ll;
76 	time_t t;
77 	const char *user;
78 	const void *rhost, *tty;
79 	off_t llpos;
80 	int fd, pam_err;
81 
82 	pam_err = pam_get_user(pamh, &user, NULL);
83 	if (pam_err != PAM_SUCCESS)
84 		return (pam_err);
85 	if (user == NULL || (pwd = getpwnam(user)) == NULL)
86 		return (PAM_SERVICE_ERR);
87 	PAM_LOG("Got user: %s", user);
88 
89 	pam_err = pam_get_item(pamh, PAM_RHOST, &rhost);
90 	if (pam_err != PAM_SUCCESS)
91 		goto err;
92 	pam_err = pam_get_item(pamh, PAM_TTY, &tty);
93 	if (pam_err != PAM_SUCCESS)
94 		goto err;
95 	if (tty == NULL) {
96 		pam_err = PAM_SERVICE_ERR;
97 		goto err;
98 	}
99 	if (strncmp(tty, _PATH_DEV, strlen(_PATH_DEV)) == 0)
100 		tty = (const char *)tty + strlen(_PATH_DEV);
101 	if (*(const char *)tty == '\0')
102 		return (PAM_SERVICE_ERR);
103 
104 	fd = open(_PATH_LASTLOG, O_RDWR|O_CREAT, 0644);
105 	if (fd == -1)
106 		goto file_err;
107 
108 	/*
109 	 * Record session in lastlog(5).
110 	 */
111 	llpos = (off_t)(pwd->pw_uid * sizeof(ll));
112 	if (lseek(fd, llpos, L_SET) != llpos)
113 		goto file_err;
114 	if ((flags & PAM_SILENT) == 0) {
115 		if (read(fd, &ll, sizeof ll) == sizeof ll && ll.ll_time != 0) {
116 			t = ll.ll_time;
117 			if (*ll.ll_host != '\0')
118 				pam_info(pamh, "Last login: %.*s from %.*s",
119 				    24 - 5, ctime(&t),
120 				    (int)sizeof(ll.ll_host), ll.ll_host);
121 			else
122 				pam_info(pamh, "Last login: %.*s on %.*s",
123 				    24 - 5, ctime(&t),
124 				    (int)sizeof(ll.ll_line), ll.ll_line);
125 		}
126 		if (lseek(fd, llpos, L_SET) != llpos)
127 			goto file_err;
128 	}
129 
130 	bzero(&ll, sizeof(ll));
131 	ll.ll_time = time(NULL);
132 
133 	/* note: does not need to be NUL-terminated */
134 	strncpy(ll.ll_line, tty, sizeof(ll.ll_line));
135 	if (rhost != NULL && *(const char *)rhost != '\0')
136 		/* note: does not need to be NUL-terminated */
137 		strncpy(ll.ll_host, rhost, sizeof(ll.ll_host));
138 
139 	if (write(fd, (char *)&ll, sizeof(ll)) != sizeof(ll) || close(fd) != 0)
140 		goto file_err;
141 
142 	PAM_LOG("Login recorded in %s", _PATH_LASTLOG);
143 
144 	/*
145 	 * Record session in utmp(5) and wtmp(5).
146 	 */
147 	bzero(&utmp, sizeof(utmp));
148 	utmp.ut_time = time(NULL);
149 	/* note: does not need to be NUL-terminated */
150 	strncpy(utmp.ut_name, user, sizeof(utmp.ut_name));
151 	if (rhost != NULL && *(const char *)rhost != '\0')
152 		strncpy(utmp.ut_host, rhost, sizeof(utmp.ut_host));
153 	(void)strncpy(utmp.ut_line, tty, sizeof(utmp.ut_line));
154 	login(&utmp);
155 
156 	return (PAM_SUCCESS);
157 
158 file_err:
159 	syslog(LOG_ERR, "%s: %m", _PATH_LASTLOG);
160 	if (fd != -1)
161 		close(fd);
162 	pam_err = PAM_SYSTEM_ERR;
163 err:
164 	if (openpam_get_option(pamh, "no_fail"))
165 		return (PAM_SUCCESS);
166 	return (pam_err);
167 }
168 
169 PAM_EXTERN int
170 pam_sm_close_session(pam_handle_t *pamh __unused, int flags __unused,
171     int argc __unused, const char *argv[] __unused)
172 {
173         const void *tty;
174 
175         pam_get_item(pamh, PAM_TTY, (const void **)&tty);
176 	if (strncmp(tty, _PATH_DEV, strlen(_PATH_DEV)) == 0)
177 		tty = (const char *)tty + strlen(_PATH_DEV);
178 	if (*(const char *)tty == '\0')
179 		return (PAM_SERVICE_ERR);
180         if (logout(tty) != 1)
181                 syslog(LOG_ERR, "%s(): no utmp record for %s",
182 		    __func__, (const char *)tty);
183         logwtmp(tty, "", "");
184         return (PAM_SUCCESS);
185 }
186 
187 PAM_MODULE_ENTRY("pam_lastlog");
188