xref: /freebsd/crypto/openssh/auth2.c (revision 3f68b24e10aeb1a1cd85f2d349da44138d52c501)
1 /* $OpenBSD: auth2.c,v 1.135 2015/01/19 20:07:45 markus Exp $ */
2 /*
3  * Copyright (c) 2000 Markus Friedl.  All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  *
14  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
15  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
16  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
17  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
18  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
19  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
20  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
21  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
23  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24  */
25 
26 #include "includes.h"
27 __RCSID("$FreeBSD$");
28 
29 #include <sys/types.h>
30 #include <sys/stat.h>
31 #include <sys/uio.h>
32 
33 #include <fcntl.h>
34 #include <pwd.h>
35 #include <stdarg.h>
36 #include <string.h>
37 #include <unistd.h>
38 
39 #include "atomicio.h"
40 #include "xmalloc.h"
41 #include "ssh2.h"
42 #include "packet.h"
43 #include "log.h"
44 #include "buffer.h"
45 #include "misc.h"
46 #include "servconf.h"
47 #include "compat.h"
48 #include "key.h"
49 #include "hostfile.h"
50 #include "auth.h"
51 #include "dispatch.h"
52 #include "pathnames.h"
53 #include "buffer.h"
54 #include "canohost.h"
55 #ifdef USE_BLACKLIST
56 #include "blacklist_client.h"
57 #endif
58 
59 #ifdef GSSAPI
60 #include "ssh-gss.h"
61 #endif
62 #include "monitor_wrap.h"
63 
64 /* import */
65 extern ServerOptions options;
66 extern u_char *session_id2;
67 extern u_int session_id2_len;
68 extern Buffer loginmsg;
69 
70 /* methods */
71 
72 extern Authmethod method_none;
73 extern Authmethod method_pubkey;
74 extern Authmethod method_passwd;
75 extern Authmethod method_kbdint;
76 extern Authmethod method_hostbased;
77 #ifdef GSSAPI
78 extern Authmethod method_gssapi;
79 #endif
80 
81 Authmethod *authmethods[] = {
82 	&method_none,
83 	&method_pubkey,
84 #ifdef GSSAPI
85 	&method_gssapi,
86 #endif
87 	&method_passwd,
88 	&method_kbdint,
89 	&method_hostbased,
90 	NULL
91 };
92 
93 /* protocol */
94 
95 static int input_service_request(int, u_int32_t, void *);
96 static int input_userauth_request(int, u_int32_t, void *);
97 
98 /* helper */
99 static Authmethod *authmethod_lookup(Authctxt *, const char *);
100 static char *authmethods_get(Authctxt *authctxt);
101 
102 #define MATCH_NONE	0	/* method or submethod mismatch */
103 #define MATCH_METHOD	1	/* method matches (no submethod specified) */
104 #define MATCH_BOTH	2	/* method and submethod match */
105 #define MATCH_PARTIAL	3	/* method matches, submethod can't be checked */
106 static int list_starts_with(const char *, const char *, const char *);
107 
108 char *
109 auth2_read_banner(void)
110 {
111 	struct stat st;
112 	char *banner = NULL;
113 	size_t len, n;
114 	int fd;
115 
116 	if ((fd = open(options.banner, O_RDONLY)) == -1)
117 		return (NULL);
118 	if (fstat(fd, &st) == -1) {
119 		close(fd);
120 		return (NULL);
121 	}
122 	if (st.st_size <= 0 || st.st_size > 1*1024*1024) {
123 		close(fd);
124 		return (NULL);
125 	}
126 
127 	len = (size_t)st.st_size;		/* truncate */
128 	banner = xmalloc(len + 1);
129 	n = atomicio(read, fd, banner, len);
130 	close(fd);
131 
132 	if (n != len) {
133 		free(banner);
134 		return (NULL);
135 	}
136 	banner[n] = '\0';
137 
138 	return (banner);
139 }
140 
141 void
142 userauth_send_banner(const char *msg)
143 {
144 	if (datafellows & SSH_BUG_BANNER)
145 		return;
146 
147 	packet_start(SSH2_MSG_USERAUTH_BANNER);
148 	packet_put_cstring(msg);
149 	packet_put_cstring("");		/* language, unused */
150 	packet_send();
151 	debug("%s: sent", __func__);
152 }
153 
154 static void
155 userauth_banner(void)
156 {
157 	char *banner = NULL;
158 
159 	if (options.banner == NULL || (datafellows & SSH_BUG_BANNER) != 0)
160 		return;
161 
162 	if ((banner = PRIVSEP(auth2_read_banner())) == NULL)
163 		goto done;
164 	userauth_send_banner(banner);
165 
166 done:
167 	free(banner);
168 }
169 
170 /*
171  * loop until authctxt->success == TRUE
172  */
173 void
174 do_authentication2(Authctxt *authctxt)
175 {
176 	dispatch_init(&dispatch_protocol_error);
177 	dispatch_set(SSH2_MSG_SERVICE_REQUEST, &input_service_request);
178 	dispatch_run(DISPATCH_BLOCK, &authctxt->success, authctxt);
179 }
180 
181 /*ARGSUSED*/
182 static int
183 input_service_request(int type, u_int32_t seq, void *ctxt)
184 {
185 	Authctxt *authctxt = ctxt;
186 	u_int len;
187 	int acceptit = 0;
188 	char *service = packet_get_cstring(&len);
189 	packet_check_eom();
190 
191 	if (authctxt == NULL)
192 		fatal("input_service_request: no authctxt");
193 
194 	if (strcmp(service, "ssh-userauth") == 0) {
195 		if (!authctxt->success) {
196 			acceptit = 1;
197 			/* now we can handle user-auth requests */
198 			dispatch_set(SSH2_MSG_USERAUTH_REQUEST, &input_userauth_request);
199 		}
200 	}
201 	/* XXX all other service requests are denied */
202 
203 	if (acceptit) {
204 		packet_start(SSH2_MSG_SERVICE_ACCEPT);
205 		packet_put_cstring(service);
206 		packet_send();
207 		packet_write_wait();
208 	} else {
209 		debug("bad service request %s", service);
210 		packet_disconnect("bad service request %s", service);
211 	}
212 	free(service);
213 	return 0;
214 }
215 
216 /*ARGSUSED*/
217 static int
218 input_userauth_request(int type, u_int32_t seq, void *ctxt)
219 {
220 	Authctxt *authctxt = ctxt;
221 	Authmethod *m = NULL;
222 	char *user, *service, *method, *style = NULL;
223 	int authenticated = 0;
224 #ifdef HAVE_LOGIN_CAP
225 	login_cap_t *lc;
226 	const char *from_host, *from_ip;
227 
228 	from_host = get_canonical_hostname(options.use_dns);
229 	from_ip = get_remote_ipaddr();
230 #endif
231 
232 	if (authctxt == NULL)
233 		fatal("input_userauth_request: no authctxt");
234 
235 	user = packet_get_cstring(NULL);
236 	service = packet_get_cstring(NULL);
237 	method = packet_get_cstring(NULL);
238 	debug("userauth-request for user %s service %s method %s", user, service, method);
239 	debug("attempt %d failures %d", authctxt->attempt, authctxt->failures);
240 
241 	if ((style = strchr(user, ':')) != NULL)
242 		*style++ = 0;
243 
244 	if (authctxt->attempt++ == 0) {
245 		/* setup auth context */
246 		authctxt->pw = PRIVSEP(getpwnamallow(user));
247 		authctxt->user = xstrdup(user);
248 		if (authctxt->pw && strcmp(service, "ssh-connection")==0) {
249 			authctxt->valid = 1;
250 			debug2("input_userauth_request: setting up authctxt for %s", user);
251 		} else {
252 			logit("input_userauth_request: invalid user %s", user);
253 			authctxt->pw = fakepw();
254 #ifdef USE_BLACKLIST
255 			blacklist_notify(1);
256 #endif
257 #ifdef SSH_AUDIT_EVENTS
258 			PRIVSEP(audit_event(SSH_INVALID_USER));
259 #endif
260 		}
261 #ifdef USE_PAM
262 		if (options.use_pam)
263 			PRIVSEP(start_pam(authctxt));
264 #endif
265 		setproctitle("%s%s", authctxt->valid ? user : "unknown",
266 		    use_privsep ? " [net]" : "");
267 		authctxt->service = xstrdup(service);
268 		authctxt->style = style ? xstrdup(style) : NULL;
269 		if (use_privsep)
270 			mm_inform_authserv(service, style);
271 		userauth_banner();
272 		if (auth2_setup_methods_lists(authctxt) != 0)
273 			packet_disconnect("no authentication methods enabled");
274 	} else if (strcmp(user, authctxt->user) != 0 ||
275 	    strcmp(service, authctxt->service) != 0) {
276 		packet_disconnect("Change of username or service not allowed: "
277 		    "(%s,%s) -> (%s,%s)",
278 		    authctxt->user, authctxt->service, user, service);
279 	}
280 
281 #ifdef HAVE_LOGIN_CAP
282 	if (authctxt->pw != NULL) {
283 		lc = login_getpwclass(authctxt->pw);
284 		if (lc == NULL)
285 			lc = login_getclassbyname(NULL, authctxt->pw);
286 		if (!auth_hostok(lc, from_host, from_ip)) {
287 			logit("Denied connection for %.200s from %.200s [%.200s].",
288 			    authctxt->pw->pw_name, from_host, from_ip);
289 			packet_disconnect("Sorry, you are not allowed to connect.");
290 		}
291 		if (!auth_timeok(lc, time(NULL))) {
292 			logit("LOGIN %.200s REFUSED (TIME) FROM %.200s",
293 			    authctxt->pw->pw_name, from_host);
294 			packet_disconnect("Logins not available right now.");
295 		}
296 		login_close(lc);
297 		lc = NULL;
298 	}
299 #endif  /* HAVE_LOGIN_CAP */
300 
301 	/* reset state */
302 	auth2_challenge_stop(authctxt);
303 
304 #ifdef GSSAPI
305 	/* XXX move to auth2_gssapi_stop() */
306 	dispatch_set(SSH2_MSG_USERAUTH_GSSAPI_TOKEN, NULL);
307 	dispatch_set(SSH2_MSG_USERAUTH_GSSAPI_EXCHANGE_COMPLETE, NULL);
308 #endif
309 
310 	authctxt->postponed = 0;
311 	authctxt->server_caused_failure = 0;
312 
313 	/* try to authenticate user */
314 	m = authmethod_lookup(authctxt, method);
315 	if (m != NULL && authctxt->failures < options.max_authtries) {
316 		debug2("input_userauth_request: try method %s", method);
317 		authenticated =	m->userauth(authctxt);
318 	}
319 	userauth_finish(authctxt, authenticated, method, NULL);
320 
321 	free(service);
322 	free(user);
323 	free(method);
324 	return 0;
325 }
326 
327 void
328 userauth_finish(Authctxt *authctxt, int authenticated, const char *method,
329     const char *submethod)
330 {
331 	char *methods;
332 	int partial = 0;
333 
334 	if (!authctxt->valid && authenticated)
335 		fatal("INTERNAL ERROR: authenticated invalid user %s",
336 		    authctxt->user);
337 	if (authenticated && authctxt->postponed)
338 		fatal("INTERNAL ERROR: authenticated and postponed");
339 
340 	/* Special handling for root */
341 	if (authenticated && authctxt->pw->pw_uid == 0 &&
342 	    !auth_root_allowed(method)) {
343 		authenticated = 0;
344 #ifdef SSH_AUDIT_EVENTS
345 		PRIVSEP(audit_event(SSH_LOGIN_ROOT_DENIED));
346 #endif
347 	}
348 
349 	if (authenticated && options.num_auth_methods != 0) {
350 		if (!auth2_update_methods_lists(authctxt, method, submethod)) {
351 			authenticated = 0;
352 			partial = 1;
353 		}
354 	}
355 
356 	/* Log before sending the reply */
357 	auth_log(authctxt, authenticated, partial, method, submethod);
358 
359 	if (authctxt->postponed)
360 		return;
361 
362 #ifdef USE_PAM
363 	if (options.use_pam && authenticated) {
364 		if (!PRIVSEP(do_pam_account())) {
365 			/* if PAM returned a message, send it to the user */
366 			if (buffer_len(&loginmsg) > 0) {
367 				buffer_append(&loginmsg, "\0", 1);
368 				userauth_send_banner(buffer_ptr(&loginmsg));
369 				packet_write_wait();
370 			}
371 			fatal("Access denied for user %s by PAM account "
372 			    "configuration", authctxt->user);
373 		}
374 	}
375 #endif
376 
377 #ifdef _UNICOS
378 	if (authenticated && cray_access_denied(authctxt->user)) {
379 		authenticated = 0;
380 		fatal("Access denied for user %s.", authctxt->user);
381 	}
382 #endif /* _UNICOS */
383 
384 	if (authenticated == 1) {
385 		/* turn off userauth */
386 		dispatch_set(SSH2_MSG_USERAUTH_REQUEST, &dispatch_protocol_ignore);
387 		packet_start(SSH2_MSG_USERAUTH_SUCCESS);
388 		packet_send();
389 		packet_write_wait();
390 		/* now we can break out */
391 		authctxt->success = 1;
392 	} else {
393 
394 		/* Allow initial try of "none" auth without failure penalty */
395 		if (!partial && !authctxt->server_caused_failure &&
396 		    (authctxt->attempt > 1 || strcmp(method, "none") != 0))
397 			authctxt->failures++;
398 		if (authctxt->failures >= options.max_authtries) {
399 #ifdef SSH_AUDIT_EVENTS
400 			PRIVSEP(audit_event(SSH_LOGIN_EXCEED_MAXTRIES));
401 #endif
402 			auth_maxtries_exceeded(authctxt);
403 		}
404 		methods = authmethods_get(authctxt);
405 		debug3("%s: failure partial=%d next methods=\"%s\"", __func__,
406 		    partial, methods);
407 		packet_start(SSH2_MSG_USERAUTH_FAILURE);
408 		packet_put_cstring(methods);
409 		packet_put_char(partial);
410 		packet_send();
411 		packet_write_wait();
412 		free(methods);
413 	}
414 }
415 
416 /*
417  * Checks whether method is allowed by at least one AuthenticationMethods
418  * methods list. Returns 1 if allowed, or no methods lists configured.
419  * 0 otherwise.
420  */
421 int
422 auth2_method_allowed(Authctxt *authctxt, const char *method,
423     const char *submethod)
424 {
425 	u_int i;
426 
427 	/*
428 	 * NB. authctxt->num_auth_methods might be zero as a result of
429 	 * auth2_setup_methods_lists(), so check the configuration.
430 	 */
431 	if (options.num_auth_methods == 0)
432 		return 1;
433 	for (i = 0; i < authctxt->num_auth_methods; i++) {
434 		if (list_starts_with(authctxt->auth_methods[i], method,
435 		    submethod) != MATCH_NONE)
436 			return 1;
437 	}
438 	return 0;
439 }
440 
441 static char *
442 authmethods_get(Authctxt *authctxt)
443 {
444 	Buffer b;
445 	char *list;
446 	u_int i;
447 
448 	buffer_init(&b);
449 	for (i = 0; authmethods[i] != NULL; i++) {
450 		if (strcmp(authmethods[i]->name, "none") == 0)
451 			continue;
452 		if (authmethods[i]->enabled == NULL ||
453 		    *(authmethods[i]->enabled) == 0)
454 			continue;
455 		if (!auth2_method_allowed(authctxt, authmethods[i]->name,
456 		    NULL))
457 			continue;
458 		if (buffer_len(&b) > 0)
459 			buffer_append(&b, ",", 1);
460 		buffer_append(&b, authmethods[i]->name,
461 		    strlen(authmethods[i]->name));
462 	}
463 	buffer_append(&b, "\0", 1);
464 	list = xstrdup(buffer_ptr(&b));
465 	buffer_free(&b);
466 	return list;
467 }
468 
469 static Authmethod *
470 authmethod_lookup(Authctxt *authctxt, const char *name)
471 {
472 	int i;
473 
474 	if (name != NULL)
475 		for (i = 0; authmethods[i] != NULL; i++)
476 			if (authmethods[i]->enabled != NULL &&
477 			    *(authmethods[i]->enabled) != 0 &&
478 			    strcmp(name, authmethods[i]->name) == 0 &&
479 			    auth2_method_allowed(authctxt,
480 			    authmethods[i]->name, NULL))
481 				return authmethods[i];
482 	debug2("Unrecognized authentication method name: %s",
483 	    name ? name : "NULL");
484 	return NULL;
485 }
486 
487 /*
488  * Check a comma-separated list of methods for validity. Is need_enable is
489  * non-zero, then also require that the methods are enabled.
490  * Returns 0 on success or -1 if the methods list is invalid.
491  */
492 int
493 auth2_methods_valid(const char *_methods, int need_enable)
494 {
495 	char *methods, *omethods, *method, *p;
496 	u_int i, found;
497 	int ret = -1;
498 
499 	if (*_methods == '\0') {
500 		error("empty authentication method list");
501 		return -1;
502 	}
503 	omethods = methods = xstrdup(_methods);
504 	while ((method = strsep(&methods, ",")) != NULL) {
505 		for (found = i = 0; !found && authmethods[i] != NULL; i++) {
506 			if ((p = strchr(method, ':')) != NULL)
507 				*p = '\0';
508 			if (strcmp(method, authmethods[i]->name) != 0)
509 				continue;
510 			if (need_enable) {
511 				if (authmethods[i]->enabled == NULL ||
512 				    *(authmethods[i]->enabled) == 0) {
513 					error("Disabled method \"%s\" in "
514 					    "AuthenticationMethods list \"%s\"",
515 					    method, _methods);
516 					goto out;
517 				}
518 			}
519 			found = 1;
520 			break;
521 		}
522 		if (!found) {
523 			error("Unknown authentication method \"%s\" in list",
524 			    method);
525 			goto out;
526 		}
527 	}
528 	ret = 0;
529  out:
530 	free(omethods);
531 	return ret;
532 }
533 
534 /*
535  * Prune the AuthenticationMethods supplied in the configuration, removing
536  * any methods lists that include disabled methods. Note that this might
537  * leave authctxt->num_auth_methods == 0, even when multiple required auth
538  * has been requested. For this reason, all tests for whether multiple is
539  * enabled should consult options.num_auth_methods directly.
540  */
541 int
542 auth2_setup_methods_lists(Authctxt *authctxt)
543 {
544 	u_int i;
545 
546 	if (options.num_auth_methods == 0)
547 		return 0;
548 	debug3("%s: checking methods", __func__);
549 	authctxt->auth_methods = xcalloc(options.num_auth_methods,
550 	    sizeof(*authctxt->auth_methods));
551 	authctxt->num_auth_methods = 0;
552 	for (i = 0; i < options.num_auth_methods; i++) {
553 		if (auth2_methods_valid(options.auth_methods[i], 1) != 0) {
554 			logit("Authentication methods list \"%s\" contains "
555 			    "disabled method, skipping",
556 			    options.auth_methods[i]);
557 			continue;
558 		}
559 		debug("authentication methods list %d: %s",
560 		    authctxt->num_auth_methods, options.auth_methods[i]);
561 		authctxt->auth_methods[authctxt->num_auth_methods++] =
562 		    xstrdup(options.auth_methods[i]);
563 	}
564 	if (authctxt->num_auth_methods == 0) {
565 		error("No AuthenticationMethods left after eliminating "
566 		    "disabled methods");
567 		return -1;
568 	}
569 	return 0;
570 }
571 
572 static int
573 list_starts_with(const char *methods, const char *method,
574     const char *submethod)
575 {
576 	size_t l = strlen(method);
577 	int match;
578 	const char *p;
579 
580 	if (strncmp(methods, method, l) != 0)
581 		return MATCH_NONE;
582 	p = methods + l;
583 	match = MATCH_METHOD;
584 	if (*p == ':') {
585 		if (!submethod)
586 			return MATCH_PARTIAL;
587 		l = strlen(submethod);
588 		p += 1;
589 		if (strncmp(submethod, p, l))
590 			return MATCH_NONE;
591 		p += l;
592 		match = MATCH_BOTH;
593 	}
594 	if (*p != ',' && *p != '\0')
595 		return MATCH_NONE;
596 	return match;
597 }
598 
599 /*
600  * Remove method from the start of a comma-separated list of methods.
601  * Returns 0 if the list of methods did not start with that method or 1
602  * if it did.
603  */
604 static int
605 remove_method(char **methods, const char *method, const char *submethod)
606 {
607 	char *omethods = *methods, *p;
608 	size_t l = strlen(method);
609 	int match;
610 
611 	match = list_starts_with(omethods, method, submethod);
612 	if (match != MATCH_METHOD && match != MATCH_BOTH)
613 		return 0;
614 	p = omethods + l;
615 	if (submethod && match == MATCH_BOTH)
616 		p += 1 + strlen(submethod); /* include colon */
617 	if (*p == ',')
618 		p++;
619 	*methods = xstrdup(p);
620 	free(omethods);
621 	return 1;
622 }
623 
624 /*
625  * Called after successful authentication. Will remove the successful method
626  * from the start of each list in which it occurs. If it was the last method
627  * in any list, then authentication is deemed successful.
628  * Returns 1 if the method completed any authentication list or 0 otherwise.
629  */
630 int
631 auth2_update_methods_lists(Authctxt *authctxt, const char *method,
632     const char *submethod)
633 {
634 	u_int i, found = 0;
635 
636 	debug3("%s: updating methods list after \"%s\"", __func__, method);
637 	for (i = 0; i < authctxt->num_auth_methods; i++) {
638 		if (!remove_method(&(authctxt->auth_methods[i]), method,
639 		    submethod))
640 			continue;
641 		found = 1;
642 		if (*authctxt->auth_methods[i] == '\0') {
643 			debug2("authentication methods list %d complete", i);
644 			return 1;
645 		}
646 		debug3("authentication methods list %d remaining: \"%s\"",
647 		    i, authctxt->auth_methods[i]);
648 	}
649 	/* This should not happen, but would be bad if it did */
650 	if (!found)
651 		fatal("%s: method not in AuthenticationMethods", __func__);
652 	return 0;
653 }
654 
655 
656