forked from nholstein/OpenDoas
-
Notifications
You must be signed in to change notification settings - Fork 36
/
pam.c
348 lines (294 loc) · 7.96 KB
/
pam.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
/*
* Copyright (c) 2015 Nathan Holstein <[email protected]>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
#include "config.h"
#include <sys/types.h>
#include <sys/wait.h>
#include <err.h>
#include <errno.h>
#include <limits.h>
#include <pwd.h>
#ifdef HAVE_READPASSPHRASE
# include <readpassphrase.h>
#else
# include "sys-readpassphrase.h"
#endif
#include <signal.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <syslog.h>
#include <unistd.h>
#include <security/pam_appl.h>
#include "openbsd.h"
#include "doas.h"
#ifndef HOST_NAME_MAX
#define HOST_NAME_MAX _POSIX_HOST_NAME_MAX
#endif
#define PAM_SERVICE_NAME "doas"
static pam_handle_t *pamh = NULL;
static char doas_prompt[128];
static sig_atomic_t volatile caught_signal = 0;
static void
catchsig(int sig)
{
caught_signal = sig;
}
static char *
pamprompt(const char *msg, int echo_on, int *ret)
{
const char *prompt;
char *pass, buf[PAM_MAX_RESP_SIZE];
int flags = RPP_REQUIRE_TTY | (echo_on ? RPP_ECHO_ON : RPP_ECHO_OFF);
/* overwrite default prompt if it matches "Password:[ ]" */
if (strncmp(msg,"Password:", 9) == 0 &&
(msg[9] == '\0' || (msg[9] == ' ' && msg[10] == '\0')))
prompt = doas_prompt;
else
prompt = msg;
pass = readpassphrase(prompt, buf, sizeof(buf), flags);
if (!pass)
*ret = PAM_CONV_ERR;
else if (!(pass = strdup(pass)))
*ret = PAM_BUF_ERR;
else
*ret = PAM_SUCCESS;
explicit_bzero(buf, sizeof(buf));
return pass;
}
static int
pamconv(int nmsgs, const struct pam_message **msgs,
struct pam_response **rsps, __UNUSED void *ptr)
{
struct pam_response *rsp;
int i, style;
int ret;
if (!(rsp = calloc(nmsgs, sizeof(struct pam_response))))
err(1, "could not allocate pam_response");
for (i = 0; i < nmsgs; i++) {
switch (style = msgs[i]->msg_style) {
case PAM_PROMPT_ECHO_OFF:
case PAM_PROMPT_ECHO_ON:
rsp[i].resp = pamprompt(msgs[i]->msg, style == PAM_PROMPT_ECHO_ON, &ret);
if (ret != PAM_SUCCESS)
goto fail;
break;
case PAM_ERROR_MSG:
case PAM_TEXT_INFO:
if (fprintf(stderr, "%s\n", msgs[i]->msg) < 0)
goto fail;
break;
default:
errx(1, "invalid PAM msg_style %d", style);
}
}
*rsps = rsp;
rsp = NULL;
return PAM_SUCCESS;
fail:
/* overwrite and free response buffers */
for (i = 0; i < nmsgs; i++) {
if (rsp[i].resp == NULL)
continue;
switch (msgs[i]->msg_style) {
case PAM_PROMPT_ECHO_OFF:
case PAM_PROMPT_ECHO_ON:
explicit_bzero(rsp[i].resp, strlen(rsp[i].resp));
free(rsp[i].resp);
}
rsp[i].resp = NULL;
}
free(rsp);
return PAM_CONV_ERR;
}
void
pamcleanup(int ret, int sess, int cred)
{
if (sess) {
ret = pam_close_session(pamh, 0);
if (ret != PAM_SUCCESS)
errx(1, "pam_close_session: %s", pam_strerror(pamh, ret));
}
if (cred) {
ret = pam_setcred(pamh, PAM_DELETE_CRED | PAM_SILENT);
if (ret != PAM_SUCCESS)
warn("pam_setcred(?, PAM_DELETE_CRED | PAM_SILENT): %s",
pam_strerror(pamh, ret));
}
pam_end(pamh, ret);
}
void
watchsession(pid_t child, int sess, int cred)
{
sigset_t sigs;
struct sigaction act, oldact;
int status = 1;
/* block signals */
sigfillset(&sigs);
if (sigprocmask(SIG_BLOCK, &sigs, NULL)) {
warn("failed to block signals");
caught_signal = 1;
goto close;
}
/* setup signal handler */
act.sa_handler = catchsig;
sigemptyset(&act.sa_mask);
act.sa_flags = 0;
/* unblock SIGTERM and SIGALRM to catch them */
sigemptyset(&sigs);
if (sigaddset(&sigs, SIGTERM) ||
sigaddset(&sigs, SIGALRM) ||
sigaddset(&sigs, SIGTSTP) ||
sigaction(SIGTERM, &act, &oldact) ||
sigprocmask(SIG_UNBLOCK, &sigs, NULL)) {
warn("failed to set signal handler");
caught_signal = 1;
goto close;
}
/* wait for child to be terminated */
if (waitpid(child, &status, 0) != -1) {
if (WIFSIGNALED(status)) {
fprintf(stderr, "%s%s\n", strsignal(WTERMSIG(status)),
WCOREDUMP(status) ? " (core dumped)" : "");
status = WTERMSIG(status) + 128;
} else
status = WEXITSTATUS(status);
}
else if (caught_signal)
status = caught_signal + 128;
else
status = 1;
close:
if (caught_signal && child != (pid_t)-1) {
fprintf(stderr, "\nSession terminated, killing shell\n");
kill(child, SIGTERM);
}
pamcleanup(PAM_SUCCESS, sess, cred);
if (caught_signal) {
if (child != (pid_t)-1) {
/* kill child */
sleep(2);
kill(child, SIGKILL);
fprintf(stderr, " ...killed.\n");
}
/* unblock cached signal and resend */
sigaction(SIGTERM, &oldact, NULL);
if (caught_signal != SIGTERM)
caught_signal = SIGKILL;
kill(getpid(), caught_signal);
}
exit(status);
}
void
pamauth(const char *user, const char *myname, int interactive, int nopass, int persist)
{
static const struct pam_conv conv = {
.conv = pamconv,
.appdata_ptr = NULL,
};
const char *ttydev;
pid_t child;
int ret, sess = 0, cred = 0;
#ifdef USE_TIMESTAMP
int fd = -1;
int valid = 0;
#else
(void) persist;
#endif
if (!user || !myname)
errx(1, "Authentication failed");
ret = pam_start(PAM_SERVICE_NAME, myname, &conv, &pamh);
if (ret != PAM_SUCCESS)
errx(1, "pam_start(\"%s\", \"%s\", ?, ?): failed",
PAM_SERVICE_NAME, myname);
ret = pam_set_item(pamh, PAM_RUSER, myname);
if (ret != PAM_SUCCESS)
warn("pam_set_item(?, PAM_RUSER, \"%s\"): %s",
pam_strerror(pamh, ret), myname);
if (isatty(0) && (ttydev = ttyname(0)) != NULL) {
if (strncmp(ttydev, "/dev/", 5) == 0)
ttydev += 5;
ret = pam_set_item(pamh, PAM_TTY, ttydev);
if (ret != PAM_SUCCESS)
warn("pam_set_item(?, PAM_TTY, \"%s\"): %s",
ttydev, pam_strerror(pamh, ret));
}
#ifdef USE_TIMESTAMP
if (persist)
fd = timestamp_open(&valid, 5 * 60);
if (fd != -1 && valid == 1)
nopass = 1;
#endif
if (!nopass) {
if (!interactive)
errx(1, "Authentication required");
/* doas style prompt for pam */
char host[HOST_NAME_MAX + 1];
if (gethostname(host, sizeof(host)))
snprintf(host, sizeof(host), "?");
snprintf(doas_prompt, sizeof(doas_prompt),
"\rdoas (%.32s@%.32s) password: ", myname, host);
/* authenticate */
ret = pam_authenticate(pamh, 0);
if (ret != PAM_SUCCESS) {
pamcleanup(ret, sess, cred);
syslog(LOG_AUTHPRIV | LOG_NOTICE, "failed auth for %s", myname);
errx(1, "Authentication failed");
}
}
ret = pam_acct_mgmt(pamh, 0);
if (ret == PAM_NEW_AUTHTOK_REQD)
ret = pam_chauthtok(pamh, PAM_CHANGE_EXPIRED_AUTHTOK);
/* account not vaild or changing the auth token failed */
if (ret != PAM_SUCCESS) {
pamcleanup(ret, sess, cred);
syslog(LOG_AUTHPRIV | LOG_NOTICE, "failed auth for %s", myname);
errx(1, "Authentication failed");
}
/* set PAM_USER to the user we want to be */
ret = pam_set_item(pamh, PAM_USER, user);
if (ret != PAM_SUCCESS)
warn("pam_set_item(?, PAM_USER, \"%s\"): %s", user,
pam_strerror(pamh, ret));
ret = pam_setcred(pamh, PAM_REINITIALIZE_CRED);
if (ret != PAM_SUCCESS)
warn("pam_setcred(?, PAM_REINITIALIZE_CRED): %s", pam_strerror(pamh, ret));
else
cred = 1;
/* open session */
ret = pam_open_session(pamh, 0);
if (ret != PAM_SUCCESS)
errx(1, "pam_open_session: %s", pam_strerror(pamh, ret));
sess = 1;
if ((child = fork()) == -1) {
pamcleanup(PAM_ABORT, sess, cred);
err(1, "fork");
}
/* return as child */
if (child == 0) {
#ifdef USE_TIMESTAMP
if (fd != -1)
close(fd);
#endif
return;
}
#ifdef USE_TIMESTAMP
if (fd != -1) {
timestamp_set(fd, 5 * 60);
close(fd);
}
#endif
watchsession(child, sess, cred);
}