blob: 5f136ce0922df3e90b01f47801acec4a1647209c [file] [log] [blame]
Darren Tuckera627d422013-06-02 07:31:17 +10001/* $OpenBSD: auth2.c,v 1.128 2013/05/17 00:13:13 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
Damien Miller01ed2272008-11-05 16:20:46 +110074#ifdef JPAKE
75extern Authmethod method_jpake;
76#endif
Ben Lindstrom511bb242002-06-06 20:52:37 +000077
78Authmethod *authmethods[] = {
79 &method_none,
80 &method_pubkey,
Darren Tucker0efd1552003-08-26 11:49:55 +100081#ifdef GSSAPI
82 &method_gssapi,
83#endif
Damien Miller01ed2272008-11-05 16:20:46 +110084#ifdef JPAKE
85 &method_jpake,
86#endif
Ben Lindstrom511bb242002-06-06 20:52:37 +000087 &method_passwd,
88 &method_kbdint,
89 &method_hostbased,
90 NULL
Damien Miller874d77b2000-10-14 16:23:11 +110091};
92
Damien Millereba71ba2000-04-29 23:57:08 +100093/* protocol */
94
Damien Miller630d6f42002-01-22 23:17:30 +110095static void input_service_request(int, u_int32_t, void *);
96static void input_userauth_request(int, u_int32_t, void *);
Damien Millereba71ba2000-04-29 23:57:08 +100097
Damien Millereba71ba2000-04-29 23:57:08 +100098/* helper */
Damien Millera6e3f012012-11-04 23:21:40 +110099static Authmethod *authmethod_lookup(Authctxt *, const char *);
100static char *authmethods_get(Authctxt *authctxt);
Damien Miller91a55f22013-04-23 15:18:10 +1000101
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 */
106static int list_starts_with(const char *, const char *, const char *);
Damien Millereba71ba2000-04-29 23:57:08 +1000107
Darren Tucker4230a5d2008-07-02 22:56:09 +1000108char *
109auth2_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 }
Damien Miller8ed4de82011-12-19 10:52:50 +1100122 if (st.st_size <= 0 || st.st_size > 1*1024*1024) {
Darren Tucker4230a5d2008-07-02 22:56:09 +1000123 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) {
Darren Tuckera627d422013-06-02 07:31:17 +1000133 free(banner);
Darren Tucker4230a5d2008-07-02 22:56:09 +1000134 return (NULL);
135 }
136 banner[n] = '\0';
137
138 return (banner);
139}
140
141void
142userauth_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
154static void
155userauth_banner(void)
156{
157 char *banner = NULL;
158
159 if (options.banner == NULL ||
160 strcasecmp(options.banner, "none") == 0 ||
161 (datafellows & SSH_BUG_BANNER) != 0)
162 return;
163
164 if ((banner = PRIVSEP(auth2_read_banner())) == NULL)
165 goto done;
166 userauth_send_banner(banner);
167
168done:
Darren Tuckera627d422013-06-02 07:31:17 +1000169 free(banner);
Darren Tucker4230a5d2008-07-02 22:56:09 +1000170}
171
Damien Millereba71ba2000-04-29 23:57:08 +1000172/*
Damien Miller874d77b2000-10-14 16:23:11 +1100173 * loop until authctxt->success == TRUE
Damien Millereba71ba2000-04-29 23:57:08 +1000174 */
Darren Tucker3e33cec2003-10-02 16:12:36 +1000175void
176do_authentication2(Authctxt *authctxt)
Damien Millereba71ba2000-04-29 23:57:08 +1000177{
Damien Miller7d053392002-01-22 23:24:13 +1100178 dispatch_init(&dispatch_protocol_error);
Damien Millereba71ba2000-04-29 23:57:08 +1000179 dispatch_set(SSH2_MSG_SERVICE_REQUEST, &input_service_request);
Damien Miller874d77b2000-10-14 16:23:11 +1100180 dispatch_run(DISPATCH_BLOCK, &authctxt->success, authctxt);
Damien Millereba71ba2000-04-29 23:57:08 +1000181}
182
Damien Miller91d4b122006-03-26 14:05:20 +1100183/*ARGSUSED*/
Ben Lindstrombba81212001-06-25 05:01:22 +0000184static void
Damien Miller630d6f42002-01-22 23:17:30 +1100185input_service_request(int type, u_int32_t seq, void *ctxt)
Damien Millereba71ba2000-04-29 23:57:08 +1000186{
Damien Miller874d77b2000-10-14 16:23:11 +1100187 Authctxt *authctxt = ctxt;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000188 u_int len;
Ben Lindstrom5a9d0ea2002-07-04 00:12:53 +0000189 int acceptit = 0;
Damien Millerda108ec2010-08-31 22:36:39 +1000190 char *service = packet_get_cstring(&len);
Damien Miller48b03fc2002-01-22 23:11:40 +1100191 packet_check_eom();
Damien Millereba71ba2000-04-29 23:57:08 +1000192
Damien Miller874d77b2000-10-14 16:23:11 +1100193 if (authctxt == NULL)
194 fatal("input_service_request: no authctxt");
195
Damien Millereba71ba2000-04-29 23:57:08 +1000196 if (strcmp(service, "ssh-userauth") == 0) {
Damien Miller874d77b2000-10-14 16:23:11 +1100197 if (!authctxt->success) {
Ben Lindstrom5a9d0ea2002-07-04 00:12:53 +0000198 acceptit = 1;
Damien Millereba71ba2000-04-29 23:57:08 +1000199 /* now we can handle user-auth requests */
200 dispatch_set(SSH2_MSG_USERAUTH_REQUEST, &input_userauth_request);
201 }
202 }
203 /* XXX all other service requests are denied */
204
Ben Lindstrom5a9d0ea2002-07-04 00:12:53 +0000205 if (acceptit) {
Damien Millereba71ba2000-04-29 23:57:08 +1000206 packet_start(SSH2_MSG_SERVICE_ACCEPT);
207 packet_put_cstring(service);
208 packet_send();
209 packet_write_wait();
210 } else {
211 debug("bad service request %s", service);
212 packet_disconnect("bad service request %s", service);
213 }
Darren Tuckera627d422013-06-02 07:31:17 +1000214 free(service);
Damien Millereba71ba2000-04-29 23:57:08 +1000215}
216
Damien Miller91d4b122006-03-26 14:05:20 +1100217/*ARGSUSED*/
Ben Lindstrombba81212001-06-25 05:01:22 +0000218static void
Damien Miller630d6f42002-01-22 23:17:30 +1100219input_userauth_request(int type, u_int32_t seq, void *ctxt)
Damien Millereba71ba2000-04-29 23:57:08 +1000220{
Damien Miller874d77b2000-10-14 16:23:11 +1100221 Authctxt *authctxt = ctxt;
222 Authmethod *m = NULL;
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000223 char *user, *service, *method, *style = NULL;
Damien Millereba71ba2000-04-29 23:57:08 +1000224 int authenticated = 0;
Damien Millereba71ba2000-04-29 23:57:08 +1000225
Damien Miller874d77b2000-10-14 16:23:11 +1100226 if (authctxt == NULL)
227 fatal("input_userauth_request: no authctxt");
Damien Millereba71ba2000-04-29 23:57:08 +1000228
Damien Millerda108ec2010-08-31 22:36:39 +1000229 user = packet_get_cstring(NULL);
230 service = packet_get_cstring(NULL);
231 method = packet_get_cstring(NULL);
Damien Miller874d77b2000-10-14 16:23:11 +1100232 debug("userauth-request for user %s service %s method %s", user, service, method);
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000233 debug("attempt %d failures %d", authctxt->attempt, authctxt->failures);
Damien Miller874d77b2000-10-14 16:23:11 +1100234
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000235 if ((style = strchr(user, ':')) != NULL)
236 *style++ = 0;
237
Kevin Stevesef4eea92001-02-05 12:42:17 +0000238 if (authctxt->attempt++ == 0) {
Damien Miller3a5b0232002-03-13 13:19:42 +1100239 /* setup auth context */
Kevin Steves205cc1e2002-03-22 20:43:05 +0000240 authctxt->pw = PRIVSEP(getpwnamallow(user));
Darren Tuckerdbf7a742004-03-08 23:04:06 +1100241 authctxt->user = xstrdup(user);
Kevin Steves205cc1e2002-03-22 20:43:05 +0000242 if (authctxt->pw && strcmp(service, "ssh-connection")==0) {
Damien Miller874d77b2000-10-14 16:23:11 +1100243 authctxt->valid = 1;
244 debug2("input_userauth_request: setting up authctxt for %s", user);
Damien Miller874d77b2000-10-14 16:23:11 +1100245 } else {
Darren Tucker5cb30ad2004-08-12 22:40:24 +1000246 logit("input_userauth_request: invalid user %s", user);
Damien Miller856f0be2003-09-03 07:32:45 +1000247 authctxt->pw = fakepw();
Darren Tucker2e0cf0d2005-02-08 21:52:47 +1100248#ifdef SSH_AUDIT_EVENTS
249 PRIVSEP(audit_event(SSH_INVALID_USER));
Darren Tucker269a1ea2005-02-03 00:20:53 +1100250#endif
Damien Miller874d77b2000-10-14 16:23:11 +1100251 }
Darren Tuckerd3eff2b2005-09-24 12:43:51 +1000252#ifdef USE_PAM
253 if (options.use_pam)
254 PRIVSEP(start_pam(authctxt));
255#endif
Damien Miller30d1f842004-07-21 20:48:53 +1000256 setproctitle("%s%s", authctxt->valid ? user : "unknown",
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000257 use_privsep ? " [net]" : "");
Damien Miller874d77b2000-10-14 16:23:11 +1100258 authctxt->service = xstrdup(service);
Ben Lindstrom9d0c0662001-06-09 01:40:00 +0000259 authctxt->style = style ? xstrdup(style) : NULL;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000260 if (use_privsep)
261 mm_inform_authserv(service, style);
Darren Tucker4230a5d2008-07-02 22:56:09 +1000262 userauth_banner();
Damien Millera6e3f012012-11-04 23:21:40 +1100263 if (auth2_setup_methods_lists(authctxt) != 0)
264 packet_disconnect("no authentication methods enabled");
Ben Lindstrom9d0c0662001-06-09 01:40:00 +0000265 } else if (strcmp(user, authctxt->user) != 0 ||
266 strcmp(service, authctxt->service) != 0) {
267 packet_disconnect("Change of username or service not allowed: "
268 "(%s,%s) -> (%s,%s)",
269 authctxt->user, authctxt->service, user, service);
Damien Millereba71ba2000-04-29 23:57:08 +1000270 }
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000271 /* reset state */
Damien Milleree116252001-12-21 12:42:34 +1100272 auth2_challenge_stop(authctxt);
Damien Miller01ed2272008-11-05 16:20:46 +1100273#ifdef JPAKE
274 auth2_jpake_stop(authctxt);
275#endif
Darren Tucker0efd1552003-08-26 11:49:55 +1000276
277#ifdef GSSAPI
Damien Miller01ed2272008-11-05 16:20:46 +1100278 /* XXX move to auth2_gssapi_stop() */
Darren Tucker0efd1552003-08-26 11:49:55 +1000279 dispatch_set(SSH2_MSG_USERAUTH_GSSAPI_TOKEN, NULL);
280 dispatch_set(SSH2_MSG_USERAUTH_GSSAPI_EXCHANGE_COMPLETE, NULL);
281#endif
282
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000283 authctxt->postponed = 0;
Damien Miller3fcdfd52011-05-05 14:04:11 +1000284 authctxt->server_caused_failure = 0;
Damien Millerb70b61f2000-09-16 16:25:12 +1100285
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000286 /* try to authenticate user */
Damien Millera6e3f012012-11-04 23:21:40 +1100287 m = authmethod_lookup(authctxt, method);
Darren Tucker4230a5d2008-07-02 22:56:09 +1000288 if (m != NULL && authctxt->failures < options.max_authtries) {
Damien Miller874d77b2000-10-14 16:23:11 +1100289 debug2("input_userauth_request: try method %s", method);
290 authenticated = m->userauth(authctxt);
Damien Miller874d77b2000-10-14 16:23:11 +1100291 }
Damien Miller15b05cf2012-12-03 09:53:20 +1100292 userauth_finish(authctxt, authenticated, method, NULL);
Damien Miller5d57e502001-03-30 10:48:31 +1000293
Darren Tuckera627d422013-06-02 07:31:17 +1000294 free(service);
295 free(user);
296 free(method);
Damien Miller5d57e502001-03-30 10:48:31 +1000297}
298
299void
Damien Miller15b05cf2012-12-03 09:53:20 +1100300userauth_finish(Authctxt *authctxt, int authenticated, const char *method,
301 const char *submethod)
Damien Miller5d57e502001-03-30 10:48:31 +1000302{
Ben Lindstromcd4349f2001-06-09 00:23:17 +0000303 char *methods;
Damien Millera6e3f012012-11-04 23:21:40 +1100304 int partial = 0;
Ben Lindstromcd4349f2001-06-09 00:23:17 +0000305
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000306 if (!authctxt->valid && authenticated)
307 fatal("INTERNAL ERROR: authenticated invalid user %s",
308 authctxt->user);
Damien Miller15b05cf2012-12-03 09:53:20 +1100309 if (authenticated && authctxt->postponed)
310 fatal("INTERNAL ERROR: authenticated and postponed");
Damien Millerb70b61f2000-09-16 16:25:12 +1100311
Damien Miller874d77b2000-10-14 16:23:11 +1100312 /* Special handling for root */
Damien Miller556f9312003-02-24 11:59:26 +1100313 if (authenticated && authctxt->pw->pw_uid == 0 &&
Darren Tucker269a1ea2005-02-03 00:20:53 +1100314 !auth_root_allowed(method)) {
Damien Millereba71ba2000-04-29 23:57:08 +1000315 authenticated = 0;
Darren Tucker2e0cf0d2005-02-08 21:52:47 +1100316#ifdef SSH_AUDIT_EVENTS
317 PRIVSEP(audit_event(SSH_LOGIN_ROOT_DENIED));
Darren Tucker269a1ea2005-02-03 00:20:53 +1100318#endif
319 }
Damien Millereba71ba2000-04-29 23:57:08 +1000320
Damien Miller15b05cf2012-12-03 09:53:20 +1100321 if (authenticated && options.num_auth_methods != 0) {
Damien Miller91a55f22013-04-23 15:18:10 +1000322 if (!auth2_update_methods_lists(authctxt, method, submethod)) {
Damien Miller15b05cf2012-12-03 09:53:20 +1100323 authenticated = 0;
324 partial = 1;
325 }
326 }
327
328 /* Log before sending the reply */
329 auth_log(authctxt, authenticated, partial, method, submethod, " ssh2");
330
331 if (authctxt->postponed)
332 return;
333
Damien Miller1f499fd2003-08-25 13:08:49 +1000334#ifdef USE_PAM
Darren Tucker77fc29e2004-09-11 23:07:03 +1000335 if (options.use_pam && authenticated) {
336 if (!PRIVSEP(do_pam_account())) {
Darren Tucker77fc29e2004-09-11 23:07:03 +1000337 /* if PAM returned a message, send it to the user */
338 if (buffer_len(&loginmsg) > 0) {
339 buffer_append(&loginmsg, "\0", 1);
340 userauth_send_banner(buffer_ptr(&loginmsg));
Darren Tuckerc1386672004-12-03 14:33:47 +1100341 packet_write_wait();
Darren Tucker77fc29e2004-09-11 23:07:03 +1000342 }
Darren Tuckerc1386672004-12-03 14:33:47 +1100343 fatal("Access denied for user %s by PAM account "
Damien Millerb6f72f52005-07-17 17:26:43 +1000344 "configuration", authctxt->user);
Darren Tucker77fc29e2004-09-11 23:07:03 +1000345 }
346 }
Damien Miller1f499fd2003-08-25 13:08:49 +1000347#endif
348
Tim Rice81ed5182002-09-25 17:38:46 -0700349#ifdef _UNICOS
350 if (authenticated && cray_access_denied(authctxt->user)) {
351 authenticated = 0;
Damien Miller15b05cf2012-12-03 09:53:20 +1100352 fatal("Access denied for user %s.", authctxt->user);
Tim Rice81ed5182002-09-25 17:38:46 -0700353 }
354#endif /* _UNICOS */
355
Ben Lindstromcd4349f2001-06-09 00:23:17 +0000356 if (authenticated == 1) {
357 /* turn off userauth */
Damien Miller7d053392002-01-22 23:24:13 +1100358 dispatch_set(SSH2_MSG_USERAUTH_REQUEST, &dispatch_protocol_ignore);
Ben Lindstromcd4349f2001-06-09 00:23:17 +0000359 packet_start(SSH2_MSG_USERAUTH_SUCCESS);
360 packet_send();
361 packet_write_wait();
362 /* now we can break out */
363 authctxt->success = 1;
364 } else {
Damien Miller0b4d48b2008-07-05 09:44:53 +1000365
366 /* Allow initial try of "none" auth without failure penalty */
Damien Miller3fcdfd52011-05-05 14:04:11 +1000367 if (!authctxt->server_caused_failure &&
368 (authctxt->attempt > 1 || strcmp(method, "none") != 0))
Damien Miller0b4d48b2008-07-05 09:44:53 +1000369 authctxt->failures++;
370 if (authctxt->failures >= options.max_authtries) {
Darren Tucker2e0cf0d2005-02-08 21:52:47 +1100371#ifdef SSH_AUDIT_EVENTS
372 PRIVSEP(audit_event(SSH_LOGIN_EXCEED_MAXTRIES));
Darren Tucker269a1ea2005-02-03 00:20:53 +1100373#endif
Ben Lindstromcd4349f2001-06-09 00:23:17 +0000374 packet_disconnect(AUTH_FAIL_MSG, authctxt->user);
Darren Tucker269a1ea2005-02-03 00:20:53 +1100375 }
Damien Millera6e3f012012-11-04 23:21:40 +1100376 methods = authmethods_get(authctxt);
377 debug3("%s: failure partial=%d next methods=\"%s\"", __func__,
378 partial, methods);
Ben Lindstromcd4349f2001-06-09 00:23:17 +0000379 packet_start(SSH2_MSG_USERAUTH_FAILURE);
380 packet_put_cstring(methods);
Damien Millera6e3f012012-11-04 23:21:40 +1100381 packet_put_char(partial);
Ben Lindstromcd4349f2001-06-09 00:23:17 +0000382 packet_send();
383 packet_write_wait();
Darren Tuckera627d422013-06-02 07:31:17 +1000384 free(methods);
Ben Lindstromcd4349f2001-06-09 00:23:17 +0000385 }
Damien Miller874d77b2000-10-14 16:23:11 +1100386}
387
Damien Millera6e3f012012-11-04 23:21:40 +1100388/*
389 * Checks whether method is allowed by at least one AuthenticationMethods
390 * methods list. Returns 1 if allowed, or no methods lists configured.
391 * 0 otherwise.
392 */
Damien Miller91a55f22013-04-23 15:18:10 +1000393int
394auth2_method_allowed(Authctxt *authctxt, const char *method,
395 const char *submethod)
Damien Millera6e3f012012-11-04 23:21:40 +1100396{
397 u_int i;
398
399 /*
400 * NB. authctxt->num_auth_methods might be zero as a result of
401 * auth2_setup_methods_lists(), so check the configuration.
402 */
403 if (options.num_auth_methods == 0)
404 return 1;
405 for (i = 0; i < authctxt->num_auth_methods; i++) {
Damien Miller91a55f22013-04-23 15:18:10 +1000406 if (list_starts_with(authctxt->auth_methods[i], method,
407 submethod) != MATCH_NONE)
Damien Millera6e3f012012-11-04 23:21:40 +1100408 return 1;
409 }
410 return 0;
411}
412
Ben Lindstrom79073822001-07-04 03:42:30 +0000413static char *
Damien Millera6e3f012012-11-04 23:21:40 +1100414authmethods_get(Authctxt *authctxt)
Damien Miller874d77b2000-10-14 16:23:11 +1100415{
Damien Miller0e3b8722002-01-22 23:26:38 +1100416 Buffer b;
Damien Miller874d77b2000-10-14 16:23:11 +1100417 char *list;
Damien Millera6e3f012012-11-04 23:21:40 +1100418 u_int i;
Damien Miller874d77b2000-10-14 16:23:11 +1100419
Damien Miller0e3b8722002-01-22 23:26:38 +1100420 buffer_init(&b);
Ben Lindstrom511bb242002-06-06 20:52:37 +0000421 for (i = 0; authmethods[i] != NULL; i++) {
422 if (strcmp(authmethods[i]->name, "none") == 0)
Damien Miller874d77b2000-10-14 16:23:11 +1100423 continue;
Damien Millera6e3f012012-11-04 23:21:40 +1100424 if (authmethods[i]->enabled == NULL ||
425 *(authmethods[i]->enabled) == 0)
426 continue;
Damien Miller91a55f22013-04-23 15:18:10 +1000427 if (!auth2_method_allowed(authctxt, authmethods[i]->name,
428 NULL))
Damien Millera6e3f012012-11-04 23:21:40 +1100429 continue;
430 if (buffer_len(&b) > 0)
431 buffer_append(&b, ",", 1);
432 buffer_append(&b, authmethods[i]->name,
433 strlen(authmethods[i]->name));
Damien Millereba71ba2000-04-29 23:57:08 +1000434 }
Damien Miller0e3b8722002-01-22 23:26:38 +1100435 buffer_append(&b, "\0", 1);
436 list = xstrdup(buffer_ptr(&b));
437 buffer_free(&b);
Damien Miller874d77b2000-10-14 16:23:11 +1100438 return list;
439}
440
Ben Lindstrombba81212001-06-25 05:01:22 +0000441static Authmethod *
Damien Millera6e3f012012-11-04 23:21:40 +1100442authmethod_lookup(Authctxt *authctxt, const char *name)
Damien Miller874d77b2000-10-14 16:23:11 +1100443{
Ben Lindstrom511bb242002-06-06 20:52:37 +0000444 int i;
445
Damien Miller874d77b2000-10-14 16:23:11 +1100446 if (name != NULL)
Ben Lindstrom511bb242002-06-06 20:52:37 +0000447 for (i = 0; authmethods[i] != NULL; i++)
448 if (authmethods[i]->enabled != NULL &&
449 *(authmethods[i]->enabled) != 0 &&
Damien Millera6e3f012012-11-04 23:21:40 +1100450 strcmp(name, authmethods[i]->name) == 0 &&
Damien Miller91a55f22013-04-23 15:18:10 +1000451 auth2_method_allowed(authctxt,
452 authmethods[i]->name, NULL))
Ben Lindstrom511bb242002-06-06 20:52:37 +0000453 return authmethods[i];
454 debug2("Unrecognized authentication method name: %s",
455 name ? name : "NULL");
Damien Miller874d77b2000-10-14 16:23:11 +1100456 return NULL;
Damien Millereba71ba2000-04-29 23:57:08 +1000457}
Darren Tucker4230a5d2008-07-02 22:56:09 +1000458
Damien Millera6e3f012012-11-04 23:21:40 +1100459/*
460 * Check a comma-separated list of methods for validity. Is need_enable is
461 * non-zero, then also require that the methods are enabled.
462 * Returns 0 on success or -1 if the methods list is invalid.
463 */
464int
465auth2_methods_valid(const char *_methods, int need_enable)
466{
Damien Miller91a55f22013-04-23 15:18:10 +1000467 char *methods, *omethods, *method, *p;
Damien Millera6e3f012012-11-04 23:21:40 +1100468 u_int i, found;
469 int ret = -1;
470
471 if (*_methods == '\0') {
472 error("empty authentication method list");
473 return -1;
474 }
475 omethods = methods = xstrdup(_methods);
476 while ((method = strsep(&methods, ",")) != NULL) {
477 for (found = i = 0; !found && authmethods[i] != NULL; i++) {
Damien Miller91a55f22013-04-23 15:18:10 +1000478 if ((p = strchr(method, ':')) != NULL)
479 *p = '\0';
Damien Millera6e3f012012-11-04 23:21:40 +1100480 if (strcmp(method, authmethods[i]->name) != 0)
481 continue;
482 if (need_enable) {
483 if (authmethods[i]->enabled == NULL ||
484 *(authmethods[i]->enabled) == 0) {
485 error("Disabled method \"%s\" in "
486 "AuthenticationMethods list \"%s\"",
487 method, _methods);
488 goto out;
489 }
490 }
491 found = 1;
492 break;
493 }
494 if (!found) {
495 error("Unknown authentication method \"%s\" in list",
496 method);
497 goto out;
498 }
499 }
500 ret = 0;
501 out:
502 free(omethods);
503 return ret;
504}
505
506/*
507 * Prune the AuthenticationMethods supplied in the configuration, removing
508 * any methods lists that include disabled methods. Note that this might
509 * leave authctxt->num_auth_methods == 0, even when multiple required auth
510 * has been requested. For this reason, all tests for whether multiple is
511 * enabled should consult options.num_auth_methods directly.
512 */
513int
514auth2_setup_methods_lists(Authctxt *authctxt)
515{
516 u_int i;
517
518 if (options.num_auth_methods == 0)
519 return 0;
520 debug3("%s: checking methods", __func__);
521 authctxt->auth_methods = xcalloc(options.num_auth_methods,
522 sizeof(*authctxt->auth_methods));
523 authctxt->num_auth_methods = 0;
524 for (i = 0; i < options.num_auth_methods; i++) {
525 if (auth2_methods_valid(options.auth_methods[i], 1) != 0) {
526 logit("Authentication methods list \"%s\" contains "
527 "disabled method, skipping",
528 options.auth_methods[i]);
529 continue;
530 }
531 debug("authentication methods list %d: %s",
532 authctxt->num_auth_methods, options.auth_methods[i]);
533 authctxt->auth_methods[authctxt->num_auth_methods++] =
534 xstrdup(options.auth_methods[i]);
535 }
536 if (authctxt->num_auth_methods == 0) {
537 error("No AuthenticationMethods left after eliminating "
538 "disabled methods");
539 return -1;
540 }
541 return 0;
542}
543
544static int
Damien Miller91a55f22013-04-23 15:18:10 +1000545list_starts_with(const char *methods, const char *method,
546 const char *submethod)
Damien Millera6e3f012012-11-04 23:21:40 +1100547{
548 size_t l = strlen(method);
Damien Miller91a55f22013-04-23 15:18:10 +1000549 int match;
550 const char *p;
Damien Millera6e3f012012-11-04 23:21:40 +1100551
552 if (strncmp(methods, method, l) != 0)
Damien Miller91a55f22013-04-23 15:18:10 +1000553 return MATCH_NONE;
554 p = methods + l;
555 match = MATCH_METHOD;
556 if (*p == ':') {
557 if (!submethod)
558 return MATCH_PARTIAL;
559 l = strlen(submethod);
560 p += 1;
561 if (strncmp(submethod, p, l))
562 return MATCH_NONE;
563 p += l;
564 match = MATCH_BOTH;
565 }
566 if (*p != ',' && *p != '\0')
567 return MATCH_NONE;
568 return match;
Damien Millera6e3f012012-11-04 23:21:40 +1100569}
570
571/*
572 * Remove method from the start of a comma-separated list of methods.
573 * Returns 0 if the list of methods did not start with that method or 1
574 * if it did.
575 */
576static int
Damien Miller91a55f22013-04-23 15:18:10 +1000577remove_method(char **methods, const char *method, const char *submethod)
Damien Millera6e3f012012-11-04 23:21:40 +1100578{
Damien Miller91a55f22013-04-23 15:18:10 +1000579 char *omethods = *methods, *p;
Damien Millera6e3f012012-11-04 23:21:40 +1100580 size_t l = strlen(method);
Damien Miller91a55f22013-04-23 15:18:10 +1000581 int match;
Damien Millera6e3f012012-11-04 23:21:40 +1100582
Damien Miller91a55f22013-04-23 15:18:10 +1000583 match = list_starts_with(omethods, method, submethod);
584 if (match != MATCH_METHOD && match != MATCH_BOTH)
Damien Millera6e3f012012-11-04 23:21:40 +1100585 return 0;
Damien Miller91a55f22013-04-23 15:18:10 +1000586 p = omethods + l;
587 if (submethod && match == MATCH_BOTH)
588 p += 1 + strlen(submethod); /* include colon */
589 if (*p == ',')
590 p++;
591 *methods = xstrdup(p);
Damien Millera6e3f012012-11-04 23:21:40 +1100592 free(omethods);
593 return 1;
594}
595
596/*
597 * Called after successful authentication. Will remove the successful method
598 * from the start of each list in which it occurs. If it was the last method
599 * in any list, then authentication is deemed successful.
600 * Returns 1 if the method completed any authentication list or 0 otherwise.
601 */
602int
Damien Miller91a55f22013-04-23 15:18:10 +1000603auth2_update_methods_lists(Authctxt *authctxt, const char *method,
604 const char *submethod)
Damien Millera6e3f012012-11-04 23:21:40 +1100605{
606 u_int i, found = 0;
607
608 debug3("%s: updating methods list after \"%s\"", __func__, method);
609 for (i = 0; i < authctxt->num_auth_methods; i++) {
Damien Miller91a55f22013-04-23 15:18:10 +1000610 if (!remove_method(&(authctxt->auth_methods[i]), method,
611 submethod))
Damien Millera6e3f012012-11-04 23:21:40 +1100612 continue;
613 found = 1;
614 if (*authctxt->auth_methods[i] == '\0') {
615 debug2("authentication methods list %d complete", i);
616 return 1;
617 }
618 debug3("authentication methods list %d remaining: \"%s\"",
619 i, authctxt->auth_methods[i]);
620 }
621 /* This should not happen, but would be bad if it did */
622 if (!found)
623 fatal("%s: method not in AuthenticationMethods", __func__);
624 return 0;
625}
626
627