blob: 6572381cb662926883d0e8e0b31251905edc1568 [file] [log] [blame]
Damien Miller686feb52014-07-03 21:29:38 +10001/* $OpenBSD: auth2.c,v 1.131 2014/07/03 11:16:55 djm Exp $ */
Damien Millereba71ba2000-04-29 23:57:08 +10002/*
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.
Damien Millereba71ba2000-04-29 23:57:08 +100013 *
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 */
Damien Millere4340be2000-09-16 13:29:08 +110025
Damien Millereba71ba2000-04-29 23:57:08 +100026#include "includes.h"
Damien Millereba71ba2000-04-29 23:57:08 +100027
Damien Miller9f2abc42006-07-10 20:53:08 +100028#include <sys/types.h>
Darren Tucker4230a5d2008-07-02 22:56:09 +100029#include <sys/stat.h>
30#include <sys/uio.h>
Damien Miller9f2abc42006-07-10 20:53:08 +100031
Darren Tucker4230a5d2008-07-02 22:56:09 +100032#include <fcntl.h>
Damien Miller9f2abc42006-07-10 20:53:08 +100033#include <pwd.h>
Damien Millerd7834352006-08-05 12:39:39 +100034#include <stdarg.h>
Damien Millere3476ed2006-07-24 14:13:33 +100035#include <string.h>
Darren Tucker4230a5d2008-07-02 22:56:09 +100036#include <unistd.h>
Damien Miller9f2abc42006-07-10 20:53:08 +100037
Damien Miller0b4d48b2008-07-05 09:44:53 +100038#include "atomicio.h"
Darren Tucker43e7a352009-06-21 19:50:08 +100039#include "xmalloc.h"
Damien Millerd7834352006-08-05 12:39:39 +100040#include "ssh2.h"
Damien Millereba71ba2000-04-29 23:57:08 +100041#include "packet.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000042#include "log.h"
Damien Millerd7834352006-08-05 12:39:39 +100043#include "buffer.h"
Damien Millereba71ba2000-04-29 23:57:08 +100044#include "servconf.h"
45#include "compat.h"
Damien Millerd7834352006-08-05 12:39:39 +100046#include "key.h"
47#include "hostfile.h"
Damien Millereba71ba2000-04-29 23:57:08 +100048#include "auth.h"
Damien Millereba71ba2000-04-29 23:57:08 +100049#include "dispatch.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000050#include "pathnames.h"
Darren Tucker77fc29e2004-09-11 23:07:03 +100051#include "buffer.h"
Damien Millereba71ba2000-04-29 23:57:08 +100052
Darren Tucker0efd1552003-08-26 11:49:55 +100053#ifdef GSSAPI
54#include "ssh-gss.h"
55#endif
Damien Millerd7834352006-08-05 12:39:39 +100056#include "monitor_wrap.h"
Darren Tucker0efd1552003-08-26 11:49:55 +100057
Damien Millereba71ba2000-04-29 23:57:08 +100058/* import */
59extern ServerOptions options;
Ben Lindstrom46c16222000-12-22 01:43:59 +000060extern u_char *session_id2;
Darren Tucker502d3842003-06-28 12:38:01 +100061extern u_int session_id2_len;
Darren Tucker77fc29e2004-09-11 23:07:03 +100062extern Buffer loginmsg;
Damien Millereba71ba2000-04-29 23:57:08 +100063
Ben Lindstrom511bb242002-06-06 20:52:37 +000064/* methods */
65
66extern Authmethod method_none;
67extern Authmethod method_pubkey;
68extern Authmethod method_passwd;
69extern Authmethod method_kbdint;
70extern Authmethod method_hostbased;
Darren Tucker0efd1552003-08-26 11:49:55 +100071#ifdef GSSAPI
72extern Authmethod method_gssapi;
73#endif
Ben Lindstrom511bb242002-06-06 20:52:37 +000074
75Authmethod *authmethods[] = {
76 &method_none,
77 &method_pubkey,
Darren Tucker0efd1552003-08-26 11:49:55 +100078#ifdef GSSAPI
79 &method_gssapi,
80#endif
Ben Lindstrom511bb242002-06-06 20:52:37 +000081 &method_passwd,
82 &method_kbdint,
83 &method_hostbased,
84 NULL
Damien Miller874d77b2000-10-14 16:23:11 +110085};
86
Damien Millereba71ba2000-04-29 23:57:08 +100087/* protocol */
88
Damien Miller630d6f42002-01-22 23:17:30 +110089static void input_service_request(int, u_int32_t, void *);
90static void input_userauth_request(int, u_int32_t, void *);
Damien Millereba71ba2000-04-29 23:57:08 +100091
Damien Millereba71ba2000-04-29 23:57:08 +100092/* helper */
Damien Millera6e3f012012-11-04 23:21:40 +110093static Authmethod *authmethod_lookup(Authctxt *, const char *);
94static char *authmethods_get(Authctxt *authctxt);
Damien Miller91a55f22013-04-23 15:18:10 +100095
96#define MATCH_NONE 0 /* method or submethod mismatch */
97#define MATCH_METHOD 1 /* method matches (no submethod specified) */
98#define MATCH_BOTH 2 /* method and submethod match */
99#define MATCH_PARTIAL 3 /* method matches, submethod can't be checked */
100static int list_starts_with(const char *, const char *, const char *);
Damien Millereba71ba2000-04-29 23:57:08 +1000101
Darren Tucker4230a5d2008-07-02 22:56:09 +1000102char *
103auth2_read_banner(void)
104{
105 struct stat st;
106 char *banner = NULL;
107 size_t len, n;
108 int fd;
109
110 if ((fd = open(options.banner, O_RDONLY)) == -1)
111 return (NULL);
112 if (fstat(fd, &st) == -1) {
113 close(fd);
114 return (NULL);
115 }
Damien Miller8ed4de82011-12-19 10:52:50 +1100116 if (st.st_size <= 0 || st.st_size > 1*1024*1024) {
Darren Tucker4230a5d2008-07-02 22:56:09 +1000117 close(fd);
118 return (NULL);
119 }
120
121 len = (size_t)st.st_size; /* truncate */
122 banner = xmalloc(len + 1);
123 n = atomicio(read, fd, banner, len);
124 close(fd);
125
126 if (n != len) {
Darren Tuckera627d422013-06-02 07:31:17 +1000127 free(banner);
Darren Tucker4230a5d2008-07-02 22:56:09 +1000128 return (NULL);
129 }
130 banner[n] = '\0';
131
132 return (banner);
133}
134
135void
136userauth_send_banner(const char *msg)
137{
138 if (datafellows & SSH_BUG_BANNER)
139 return;
140
141 packet_start(SSH2_MSG_USERAUTH_BANNER);
142 packet_put_cstring(msg);
143 packet_put_cstring(""); /* language, unused */
144 packet_send();
145 debug("%s: sent", __func__);
146}
147
148static void
149userauth_banner(void)
150{
151 char *banner = NULL;
152
153 if (options.banner == NULL ||
154 strcasecmp(options.banner, "none") == 0 ||
155 (datafellows & SSH_BUG_BANNER) != 0)
156 return;
157
158 if ((banner = PRIVSEP(auth2_read_banner())) == NULL)
159 goto done;
160 userauth_send_banner(banner);
161
162done:
Darren Tuckera627d422013-06-02 07:31:17 +1000163 free(banner);
Darren Tucker4230a5d2008-07-02 22:56:09 +1000164}
165
Damien Millereba71ba2000-04-29 23:57:08 +1000166/*
Damien Miller874d77b2000-10-14 16:23:11 +1100167 * loop until authctxt->success == TRUE
Damien Millereba71ba2000-04-29 23:57:08 +1000168 */
Darren Tucker3e33cec2003-10-02 16:12:36 +1000169void
170do_authentication2(Authctxt *authctxt)
Damien Millereba71ba2000-04-29 23:57:08 +1000171{
Damien Miller7d053392002-01-22 23:24:13 +1100172 dispatch_init(&dispatch_protocol_error);
Damien Millereba71ba2000-04-29 23:57:08 +1000173 dispatch_set(SSH2_MSG_SERVICE_REQUEST, &input_service_request);
Damien Miller874d77b2000-10-14 16:23:11 +1100174 dispatch_run(DISPATCH_BLOCK, &authctxt->success, authctxt);
Damien Millereba71ba2000-04-29 23:57:08 +1000175}
176
Damien Miller91d4b122006-03-26 14:05:20 +1100177/*ARGSUSED*/
Ben Lindstrombba81212001-06-25 05:01:22 +0000178static void
Damien Miller630d6f42002-01-22 23:17:30 +1100179input_service_request(int type, u_int32_t seq, void *ctxt)
Damien Millereba71ba2000-04-29 23:57:08 +1000180{
Damien Miller874d77b2000-10-14 16:23:11 +1100181 Authctxt *authctxt = ctxt;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000182 u_int len;
Ben Lindstrom5a9d0ea2002-07-04 00:12:53 +0000183 int acceptit = 0;
Damien Millerda108ec2010-08-31 22:36:39 +1000184 char *service = packet_get_cstring(&len);
Damien Miller48b03fc2002-01-22 23:11:40 +1100185 packet_check_eom();
Damien Millereba71ba2000-04-29 23:57:08 +1000186
Damien Miller874d77b2000-10-14 16:23:11 +1100187 if (authctxt == NULL)
188 fatal("input_service_request: no authctxt");
189
Damien Millereba71ba2000-04-29 23:57:08 +1000190 if (strcmp(service, "ssh-userauth") == 0) {
Damien Miller874d77b2000-10-14 16:23:11 +1100191 if (!authctxt->success) {
Ben Lindstrom5a9d0ea2002-07-04 00:12:53 +0000192 acceptit = 1;
Damien Millereba71ba2000-04-29 23:57:08 +1000193 /* now we can handle user-auth requests */
194 dispatch_set(SSH2_MSG_USERAUTH_REQUEST, &input_userauth_request);
195 }
196 }
197 /* XXX all other service requests are denied */
198
Ben Lindstrom5a9d0ea2002-07-04 00:12:53 +0000199 if (acceptit) {
Damien Millereba71ba2000-04-29 23:57:08 +1000200 packet_start(SSH2_MSG_SERVICE_ACCEPT);
201 packet_put_cstring(service);
202 packet_send();
203 packet_write_wait();
204 } else {
205 debug("bad service request %s", service);
206 packet_disconnect("bad service request %s", service);
207 }
Darren Tuckera627d422013-06-02 07:31:17 +1000208 free(service);
Damien Millereba71ba2000-04-29 23:57:08 +1000209}
210
Damien Miller91d4b122006-03-26 14:05:20 +1100211/*ARGSUSED*/
Ben Lindstrombba81212001-06-25 05:01:22 +0000212static void
Damien Miller630d6f42002-01-22 23:17:30 +1100213input_userauth_request(int type, u_int32_t seq, void *ctxt)
Damien Millereba71ba2000-04-29 23:57:08 +1000214{
Damien Miller874d77b2000-10-14 16:23:11 +1100215 Authctxt *authctxt = ctxt;
216 Authmethod *m = NULL;
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000217 char *user, *service, *method, *style = NULL;
Damien Millereba71ba2000-04-29 23:57:08 +1000218 int authenticated = 0;
Damien Millereba71ba2000-04-29 23:57:08 +1000219
Damien Miller874d77b2000-10-14 16:23:11 +1100220 if (authctxt == NULL)
221 fatal("input_userauth_request: no authctxt");
Damien Millereba71ba2000-04-29 23:57:08 +1000222
Damien Millerda108ec2010-08-31 22:36:39 +1000223 user = packet_get_cstring(NULL);
224 service = packet_get_cstring(NULL);
225 method = packet_get_cstring(NULL);
Damien Miller874d77b2000-10-14 16:23:11 +1100226 debug("userauth-request for user %s service %s method %s", user, service, method);
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000227 debug("attempt %d failures %d", authctxt->attempt, authctxt->failures);
Damien Miller874d77b2000-10-14 16:23:11 +1100228
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000229 if ((style = strchr(user, ':')) != NULL)
230 *style++ = 0;
231
Kevin Stevesef4eea92001-02-05 12:42:17 +0000232 if (authctxt->attempt++ == 0) {
Damien Miller3a5b0232002-03-13 13:19:42 +1100233 /* setup auth context */
Kevin Steves205cc1e2002-03-22 20:43:05 +0000234 authctxt->pw = PRIVSEP(getpwnamallow(user));
Darren Tuckerdbf7a742004-03-08 23:04:06 +1100235 authctxt->user = xstrdup(user);
Kevin Steves205cc1e2002-03-22 20:43:05 +0000236 if (authctxt->pw && strcmp(service, "ssh-connection")==0) {
Damien Miller874d77b2000-10-14 16:23:11 +1100237 authctxt->valid = 1;
238 debug2("input_userauth_request: setting up authctxt for %s", user);
Damien Miller874d77b2000-10-14 16:23:11 +1100239 } else {
Darren Tucker5cb30ad2004-08-12 22:40:24 +1000240 logit("input_userauth_request: invalid user %s", user);
Damien Miller856f0be2003-09-03 07:32:45 +1000241 authctxt->pw = fakepw();
Darren Tucker2e0cf0d2005-02-08 21:52:47 +1100242#ifdef SSH_AUDIT_EVENTS
243 PRIVSEP(audit_event(SSH_INVALID_USER));
Darren Tucker269a1ea2005-02-03 00:20:53 +1100244#endif
Damien Miller874d77b2000-10-14 16:23:11 +1100245 }
Darren Tuckerd3eff2b2005-09-24 12:43:51 +1000246#ifdef USE_PAM
247 if (options.use_pam)
248 PRIVSEP(start_pam(authctxt));
249#endif
Damien Miller30d1f842004-07-21 20:48:53 +1000250 setproctitle("%s%s", authctxt->valid ? user : "unknown",
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000251 use_privsep ? " [net]" : "");
Damien Miller874d77b2000-10-14 16:23:11 +1100252 authctxt->service = xstrdup(service);
Ben Lindstrom9d0c0662001-06-09 01:40:00 +0000253 authctxt->style = style ? xstrdup(style) : NULL;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000254 if (use_privsep)
255 mm_inform_authserv(service, style);
Darren Tucker4230a5d2008-07-02 22:56:09 +1000256 userauth_banner();
Damien Millera6e3f012012-11-04 23:21:40 +1100257 if (auth2_setup_methods_lists(authctxt) != 0)
258 packet_disconnect("no authentication methods enabled");
Ben Lindstrom9d0c0662001-06-09 01:40:00 +0000259 } else if (strcmp(user, authctxt->user) != 0 ||
260 strcmp(service, authctxt->service) != 0) {
261 packet_disconnect("Change of username or service not allowed: "
262 "(%s,%s) -> (%s,%s)",
263 authctxt->user, authctxt->service, user, service);
Damien Millereba71ba2000-04-29 23:57:08 +1000264 }
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000265 /* reset state */
Damien Milleree116252001-12-21 12:42:34 +1100266 auth2_challenge_stop(authctxt);
Darren Tucker0efd1552003-08-26 11:49:55 +1000267
268#ifdef GSSAPI
Damien Miller01ed2272008-11-05 16:20:46 +1100269 /* XXX move to auth2_gssapi_stop() */
Darren Tucker0efd1552003-08-26 11:49:55 +1000270 dispatch_set(SSH2_MSG_USERAUTH_GSSAPI_TOKEN, NULL);
271 dispatch_set(SSH2_MSG_USERAUTH_GSSAPI_EXCHANGE_COMPLETE, NULL);
272#endif
273
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000274 authctxt->postponed = 0;
Damien Miller3fcdfd52011-05-05 14:04:11 +1000275 authctxt->server_caused_failure = 0;
Damien Millerb70b61f2000-09-16 16:25:12 +1100276
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000277 /* try to authenticate user */
Damien Millera6e3f012012-11-04 23:21:40 +1100278 m = authmethod_lookup(authctxt, method);
Darren Tucker4230a5d2008-07-02 22:56:09 +1000279 if (m != NULL && authctxt->failures < options.max_authtries) {
Damien Miller874d77b2000-10-14 16:23:11 +1100280 debug2("input_userauth_request: try method %s", method);
281 authenticated = m->userauth(authctxt);
Damien Miller874d77b2000-10-14 16:23:11 +1100282 }
Damien Miller15b05cf2012-12-03 09:53:20 +1100283 userauth_finish(authctxt, authenticated, method, NULL);
Damien Miller5d57e502001-03-30 10:48:31 +1000284
Darren Tuckera627d422013-06-02 07:31:17 +1000285 free(service);
286 free(user);
287 free(method);
Damien Miller5d57e502001-03-30 10:48:31 +1000288}
289
290void
Damien Miller15b05cf2012-12-03 09:53:20 +1100291userauth_finish(Authctxt *authctxt, int authenticated, const char *method,
292 const char *submethod)
Damien Miller5d57e502001-03-30 10:48:31 +1000293{
Ben Lindstromcd4349f2001-06-09 00:23:17 +0000294 char *methods;
Damien Millera6e3f012012-11-04 23:21:40 +1100295 int partial = 0;
Ben Lindstromcd4349f2001-06-09 00:23:17 +0000296
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000297 if (!authctxt->valid && authenticated)
298 fatal("INTERNAL ERROR: authenticated invalid user %s",
299 authctxt->user);
Damien Miller15b05cf2012-12-03 09:53:20 +1100300 if (authenticated && authctxt->postponed)
301 fatal("INTERNAL ERROR: authenticated and postponed");
Damien Millerb70b61f2000-09-16 16:25:12 +1100302
Damien Miller874d77b2000-10-14 16:23:11 +1100303 /* Special handling for root */
Damien Miller556f9312003-02-24 11:59:26 +1100304 if (authenticated && authctxt->pw->pw_uid == 0 &&
Darren Tucker269a1ea2005-02-03 00:20:53 +1100305 !auth_root_allowed(method)) {
Damien Millereba71ba2000-04-29 23:57:08 +1000306 authenticated = 0;
Darren Tucker2e0cf0d2005-02-08 21:52:47 +1100307#ifdef SSH_AUDIT_EVENTS
308 PRIVSEP(audit_event(SSH_LOGIN_ROOT_DENIED));
Darren Tucker269a1ea2005-02-03 00:20:53 +1100309#endif
310 }
Damien Millereba71ba2000-04-29 23:57:08 +1000311
Damien Miller15b05cf2012-12-03 09:53:20 +1100312 if (authenticated && options.num_auth_methods != 0) {
Damien Miller91a55f22013-04-23 15:18:10 +1000313 if (!auth2_update_methods_lists(authctxt, method, submethod)) {
Damien Miller15b05cf2012-12-03 09:53:20 +1100314 authenticated = 0;
315 partial = 1;
316 }
317 }
318
319 /* Log before sending the reply */
Darren Tucker0acca372013-06-02 07:41:51 +1000320 auth_log(authctxt, authenticated, partial, method, submethod);
Damien Miller15b05cf2012-12-03 09:53:20 +1100321
322 if (authctxt->postponed)
323 return;
324
Damien Miller1f499fd2003-08-25 13:08:49 +1000325#ifdef USE_PAM
Darren Tucker77fc29e2004-09-11 23:07:03 +1000326 if (options.use_pam && authenticated) {
327 if (!PRIVSEP(do_pam_account())) {
Darren Tucker77fc29e2004-09-11 23:07:03 +1000328 /* if PAM returned a message, send it to the user */
329 if (buffer_len(&loginmsg) > 0) {
330 buffer_append(&loginmsg, "\0", 1);
331 userauth_send_banner(buffer_ptr(&loginmsg));
Darren Tuckerc1386672004-12-03 14:33:47 +1100332 packet_write_wait();
Darren Tucker77fc29e2004-09-11 23:07:03 +1000333 }
Darren Tuckerc1386672004-12-03 14:33:47 +1100334 fatal("Access denied for user %s by PAM account "
Damien Millerb6f72f52005-07-17 17:26:43 +1000335 "configuration", authctxt->user);
Darren Tucker77fc29e2004-09-11 23:07:03 +1000336 }
337 }
Damien Miller1f499fd2003-08-25 13:08:49 +1000338#endif
339
Tim Rice81ed5182002-09-25 17:38:46 -0700340#ifdef _UNICOS
341 if (authenticated && cray_access_denied(authctxt->user)) {
342 authenticated = 0;
Damien Miller15b05cf2012-12-03 09:53:20 +1100343 fatal("Access denied for user %s.", authctxt->user);
Tim Rice81ed5182002-09-25 17:38:46 -0700344 }
345#endif /* _UNICOS */
346
Ben Lindstromcd4349f2001-06-09 00:23:17 +0000347 if (authenticated == 1) {
348 /* turn off userauth */
Damien Miller7d053392002-01-22 23:24:13 +1100349 dispatch_set(SSH2_MSG_USERAUTH_REQUEST, &dispatch_protocol_ignore);
Ben Lindstromcd4349f2001-06-09 00:23:17 +0000350 packet_start(SSH2_MSG_USERAUTH_SUCCESS);
351 packet_send();
352 packet_write_wait();
353 /* now we can break out */
354 authctxt->success = 1;
355 } else {
Damien Miller0b4d48b2008-07-05 09:44:53 +1000356
357 /* Allow initial try of "none" auth without failure penalty */
Damien Miller3fcdfd52011-05-05 14:04:11 +1000358 if (!authctxt->server_caused_failure &&
359 (authctxt->attempt > 1 || strcmp(method, "none") != 0))
Damien Miller0b4d48b2008-07-05 09:44:53 +1000360 authctxt->failures++;
361 if (authctxt->failures >= options.max_authtries) {
Darren Tucker2e0cf0d2005-02-08 21:52:47 +1100362#ifdef SSH_AUDIT_EVENTS
363 PRIVSEP(audit_event(SSH_LOGIN_EXCEED_MAXTRIES));
Darren Tucker269a1ea2005-02-03 00:20:53 +1100364#endif
Damien Miller686feb52014-07-03 21:29:38 +1000365 auth_maxtries_exceeded(authctxt);
Darren Tucker269a1ea2005-02-03 00:20:53 +1100366 }
Damien Millera6e3f012012-11-04 23:21:40 +1100367 methods = authmethods_get(authctxt);
368 debug3("%s: failure partial=%d next methods=\"%s\"", __func__,
369 partial, methods);
Ben Lindstromcd4349f2001-06-09 00:23:17 +0000370 packet_start(SSH2_MSG_USERAUTH_FAILURE);
371 packet_put_cstring(methods);
Damien Millera6e3f012012-11-04 23:21:40 +1100372 packet_put_char(partial);
Ben Lindstromcd4349f2001-06-09 00:23:17 +0000373 packet_send();
374 packet_write_wait();
Darren Tuckera627d422013-06-02 07:31:17 +1000375 free(methods);
Ben Lindstromcd4349f2001-06-09 00:23:17 +0000376 }
Damien Miller874d77b2000-10-14 16:23:11 +1100377}
378
Damien Millera6e3f012012-11-04 23:21:40 +1100379/*
380 * Checks whether method is allowed by at least one AuthenticationMethods
381 * methods list. Returns 1 if allowed, or no methods lists configured.
382 * 0 otherwise.
383 */
Damien Miller91a55f22013-04-23 15:18:10 +1000384int
385auth2_method_allowed(Authctxt *authctxt, const char *method,
386 const char *submethod)
Damien Millera6e3f012012-11-04 23:21:40 +1100387{
388 u_int i;
389
390 /*
391 * NB. authctxt->num_auth_methods might be zero as a result of
392 * auth2_setup_methods_lists(), so check the configuration.
393 */
394 if (options.num_auth_methods == 0)
395 return 1;
396 for (i = 0; i < authctxt->num_auth_methods; i++) {
Damien Miller91a55f22013-04-23 15:18:10 +1000397 if (list_starts_with(authctxt->auth_methods[i], method,
398 submethod) != MATCH_NONE)
Damien Millera6e3f012012-11-04 23:21:40 +1100399 return 1;
400 }
401 return 0;
402}
403
Ben Lindstrom79073822001-07-04 03:42:30 +0000404static char *
Damien Millera6e3f012012-11-04 23:21:40 +1100405authmethods_get(Authctxt *authctxt)
Damien Miller874d77b2000-10-14 16:23:11 +1100406{
Damien Miller0e3b8722002-01-22 23:26:38 +1100407 Buffer b;
Damien Miller874d77b2000-10-14 16:23:11 +1100408 char *list;
Damien Millera6e3f012012-11-04 23:21:40 +1100409 u_int i;
Damien Miller874d77b2000-10-14 16:23:11 +1100410
Damien Miller0e3b8722002-01-22 23:26:38 +1100411 buffer_init(&b);
Ben Lindstrom511bb242002-06-06 20:52:37 +0000412 for (i = 0; authmethods[i] != NULL; i++) {
413 if (strcmp(authmethods[i]->name, "none") == 0)
Damien Miller874d77b2000-10-14 16:23:11 +1100414 continue;
Damien Millera6e3f012012-11-04 23:21:40 +1100415 if (authmethods[i]->enabled == NULL ||
416 *(authmethods[i]->enabled) == 0)
417 continue;
Damien Miller91a55f22013-04-23 15:18:10 +1000418 if (!auth2_method_allowed(authctxt, authmethods[i]->name,
419 NULL))
Damien Millera6e3f012012-11-04 23:21:40 +1100420 continue;
421 if (buffer_len(&b) > 0)
422 buffer_append(&b, ",", 1);
423 buffer_append(&b, authmethods[i]->name,
424 strlen(authmethods[i]->name));
Damien Millereba71ba2000-04-29 23:57:08 +1000425 }
Damien Miller0e3b8722002-01-22 23:26:38 +1100426 buffer_append(&b, "\0", 1);
427 list = xstrdup(buffer_ptr(&b));
428 buffer_free(&b);
Damien Miller874d77b2000-10-14 16:23:11 +1100429 return list;
430}
431
Ben Lindstrombba81212001-06-25 05:01:22 +0000432static Authmethod *
Damien Millera6e3f012012-11-04 23:21:40 +1100433authmethod_lookup(Authctxt *authctxt, const char *name)
Damien Miller874d77b2000-10-14 16:23:11 +1100434{
Ben Lindstrom511bb242002-06-06 20:52:37 +0000435 int i;
436
Damien Miller874d77b2000-10-14 16:23:11 +1100437 if (name != NULL)
Ben Lindstrom511bb242002-06-06 20:52:37 +0000438 for (i = 0; authmethods[i] != NULL; i++)
439 if (authmethods[i]->enabled != NULL &&
440 *(authmethods[i]->enabled) != 0 &&
Damien Millera6e3f012012-11-04 23:21:40 +1100441 strcmp(name, authmethods[i]->name) == 0 &&
Damien Miller91a55f22013-04-23 15:18:10 +1000442 auth2_method_allowed(authctxt,
443 authmethods[i]->name, NULL))
Ben Lindstrom511bb242002-06-06 20:52:37 +0000444 return authmethods[i];
445 debug2("Unrecognized authentication method name: %s",
446 name ? name : "NULL");
Damien Miller874d77b2000-10-14 16:23:11 +1100447 return NULL;
Damien Millereba71ba2000-04-29 23:57:08 +1000448}
Darren Tucker4230a5d2008-07-02 22:56:09 +1000449
Damien Millera6e3f012012-11-04 23:21:40 +1100450/*
451 * Check a comma-separated list of methods for validity. Is need_enable is
452 * non-zero, then also require that the methods are enabled.
453 * Returns 0 on success or -1 if the methods list is invalid.
454 */
455int
456auth2_methods_valid(const char *_methods, int need_enable)
457{
Damien Miller91a55f22013-04-23 15:18:10 +1000458 char *methods, *omethods, *method, *p;
Damien Millera6e3f012012-11-04 23:21:40 +1100459 u_int i, found;
460 int ret = -1;
461
462 if (*_methods == '\0') {
463 error("empty authentication method list");
464 return -1;
465 }
466 omethods = methods = xstrdup(_methods);
467 while ((method = strsep(&methods, ",")) != NULL) {
468 for (found = i = 0; !found && authmethods[i] != NULL; i++) {
Damien Miller91a55f22013-04-23 15:18:10 +1000469 if ((p = strchr(method, ':')) != NULL)
470 *p = '\0';
Damien Millera6e3f012012-11-04 23:21:40 +1100471 if (strcmp(method, authmethods[i]->name) != 0)
472 continue;
473 if (need_enable) {
474 if (authmethods[i]->enabled == NULL ||
475 *(authmethods[i]->enabled) == 0) {
476 error("Disabled method \"%s\" in "
477 "AuthenticationMethods list \"%s\"",
478 method, _methods);
479 goto out;
480 }
481 }
482 found = 1;
483 break;
484 }
485 if (!found) {
486 error("Unknown authentication method \"%s\" in list",
487 method);
488 goto out;
489 }
490 }
491 ret = 0;
492 out:
493 free(omethods);
494 return ret;
495}
496
497/*
498 * Prune the AuthenticationMethods supplied in the configuration, removing
499 * any methods lists that include disabled methods. Note that this might
500 * leave authctxt->num_auth_methods == 0, even when multiple required auth
501 * has been requested. For this reason, all tests for whether multiple is
502 * enabled should consult options.num_auth_methods directly.
503 */
504int
505auth2_setup_methods_lists(Authctxt *authctxt)
506{
507 u_int i;
508
509 if (options.num_auth_methods == 0)
510 return 0;
511 debug3("%s: checking methods", __func__);
512 authctxt->auth_methods = xcalloc(options.num_auth_methods,
513 sizeof(*authctxt->auth_methods));
514 authctxt->num_auth_methods = 0;
515 for (i = 0; i < options.num_auth_methods; i++) {
516 if (auth2_methods_valid(options.auth_methods[i], 1) != 0) {
517 logit("Authentication methods list \"%s\" contains "
518 "disabled method, skipping",
519 options.auth_methods[i]);
520 continue;
521 }
522 debug("authentication methods list %d: %s",
523 authctxt->num_auth_methods, options.auth_methods[i]);
524 authctxt->auth_methods[authctxt->num_auth_methods++] =
525 xstrdup(options.auth_methods[i]);
526 }
527 if (authctxt->num_auth_methods == 0) {
528 error("No AuthenticationMethods left after eliminating "
529 "disabled methods");
530 return -1;
531 }
532 return 0;
533}
534
535static int
Damien Miller91a55f22013-04-23 15:18:10 +1000536list_starts_with(const char *methods, const char *method,
537 const char *submethod)
Damien Millera6e3f012012-11-04 23:21:40 +1100538{
539 size_t l = strlen(method);
Damien Miller91a55f22013-04-23 15:18:10 +1000540 int match;
541 const char *p;
Damien Millera6e3f012012-11-04 23:21:40 +1100542
543 if (strncmp(methods, method, l) != 0)
Damien Miller91a55f22013-04-23 15:18:10 +1000544 return MATCH_NONE;
545 p = methods + l;
546 match = MATCH_METHOD;
547 if (*p == ':') {
548 if (!submethod)
549 return MATCH_PARTIAL;
550 l = strlen(submethod);
551 p += 1;
552 if (strncmp(submethod, p, l))
553 return MATCH_NONE;
554 p += l;
555 match = MATCH_BOTH;
556 }
557 if (*p != ',' && *p != '\0')
558 return MATCH_NONE;
559 return match;
Damien Millera6e3f012012-11-04 23:21:40 +1100560}
561
562/*
563 * Remove method from the start of a comma-separated list of methods.
564 * Returns 0 if the list of methods did not start with that method or 1
565 * if it did.
566 */
567static int
Damien Miller91a55f22013-04-23 15:18:10 +1000568remove_method(char **methods, const char *method, const char *submethod)
Damien Millera6e3f012012-11-04 23:21:40 +1100569{
Damien Miller91a55f22013-04-23 15:18:10 +1000570 char *omethods = *methods, *p;
Damien Millera6e3f012012-11-04 23:21:40 +1100571 size_t l = strlen(method);
Damien Miller91a55f22013-04-23 15:18:10 +1000572 int match;
Damien Millera6e3f012012-11-04 23:21:40 +1100573
Damien Miller91a55f22013-04-23 15:18:10 +1000574 match = list_starts_with(omethods, method, submethod);
575 if (match != MATCH_METHOD && match != MATCH_BOTH)
Damien Millera6e3f012012-11-04 23:21:40 +1100576 return 0;
Damien Miller91a55f22013-04-23 15:18:10 +1000577 p = omethods + l;
578 if (submethod && match == MATCH_BOTH)
579 p += 1 + strlen(submethod); /* include colon */
580 if (*p == ',')
581 p++;
582 *methods = xstrdup(p);
Damien Millera6e3f012012-11-04 23:21:40 +1100583 free(omethods);
584 return 1;
585}
586
587/*
588 * Called after successful authentication. Will remove the successful method
589 * from the start of each list in which it occurs. If it was the last method
590 * in any list, then authentication is deemed successful.
591 * Returns 1 if the method completed any authentication list or 0 otherwise.
592 */
593int
Damien Miller91a55f22013-04-23 15:18:10 +1000594auth2_update_methods_lists(Authctxt *authctxt, const char *method,
595 const char *submethod)
Damien Millera6e3f012012-11-04 23:21:40 +1100596{
597 u_int i, found = 0;
598
599 debug3("%s: updating methods list after \"%s\"", __func__, method);
600 for (i = 0; i < authctxt->num_auth_methods; i++) {
Damien Miller91a55f22013-04-23 15:18:10 +1000601 if (!remove_method(&(authctxt->auth_methods[i]), method,
602 submethod))
Damien Millera6e3f012012-11-04 23:21:40 +1100603 continue;
604 found = 1;
605 if (*authctxt->auth_methods[i] == '\0') {
606 debug2("authentication methods list %d complete", i);
607 return 1;
608 }
609 debug3("authentication methods list %d remaining: \"%s\"",
610 i, authctxt->auth_methods[i]);
611 }
612 /* This should not happen, but would be bad if it did */
613 if (!found)
614 fatal("%s: method not in AuthenticationMethods", __func__);
615 return 0;
616}
617
618