blob: 01c8304677cfd77a9307521a50604aa843f6c48a [file] [log] [blame]
dtucker@openbsd.orgfdba5032018-05-11 03:22:55 +00001/* $OpenBSD: auth2.c,v 1.147 2018/05/11 03:22:55 dtucker 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>
djm@openbsd.org8f574952017-06-24 06:34:38 +000033#include <limits.h>
Damien Miller9f2abc42006-07-10 20:53:08 +100034#include <pwd.h>
Damien Millerd7834352006-08-05 12:39:39 +100035#include <stdarg.h>
Damien Millere3476ed2006-07-24 14:13:33 +100036#include <string.h>
Darren Tucker4230a5d2008-07-02 22:56:09 +100037#include <unistd.h>
Damien Miller9f2abc42006-07-10 20:53:08 +100038
Damien Miller0b4d48b2008-07-05 09:44:53 +100039#include "atomicio.h"
Darren Tucker43e7a352009-06-21 19:50:08 +100040#include "xmalloc.h"
Damien Millerd7834352006-08-05 12:39:39 +100041#include "ssh2.h"
Damien Millereba71ba2000-04-29 23:57:08 +100042#include "packet.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000043#include "log.h"
Damien Millerd7834352006-08-05 12:39:39 +100044#include "buffer.h"
Damien Miller7acefbb2014-07-18 14:11:24 +100045#include "misc.h"
Damien Millereba71ba2000-04-29 23:57:08 +100046#include "servconf.h"
47#include "compat.h"
Damien Millerd7834352006-08-05 12:39:39 +100048#include "key.h"
49#include "hostfile.h"
Damien Millereba71ba2000-04-29 23:57:08 +100050#include "auth.h"
Damien Millereba71ba2000-04-29 23:57:08 +100051#include "dispatch.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000052#include "pathnames.h"
Darren Tucker77fc29e2004-09-11 23:07:03 +100053#include "buffer.h"
Damien Millereba71ba2000-04-29 23:57:08 +100054
Darren Tucker0efd1552003-08-26 11:49:55 +100055#ifdef GSSAPI
56#include "ssh-gss.h"
57#endif
Damien Millerd7834352006-08-05 12:39:39 +100058#include "monitor_wrap.h"
djm@openbsd.org8f574952017-06-24 06:34:38 +000059#include "ssherr.h"
dtucker@openbsd.orge9d910b2018-04-13 03:57:26 +000060#include "digest.h"
Darren Tucker0efd1552003-08-26 11:49:55 +100061
Damien Millereba71ba2000-04-29 23:57:08 +100062/* import */
63extern ServerOptions options;
Ben Lindstrom46c16222000-12-22 01:43:59 +000064extern u_char *session_id2;
Darren Tucker502d3842003-06-28 12:38:01 +100065extern u_int session_id2_len;
Darren Tucker77fc29e2004-09-11 23:07:03 +100066extern Buffer loginmsg;
Damien Millereba71ba2000-04-29 23:57:08 +100067
Ben Lindstrom511bb242002-06-06 20:52:37 +000068/* methods */
69
70extern Authmethod method_none;
71extern Authmethod method_pubkey;
72extern Authmethod method_passwd;
73extern Authmethod method_kbdint;
74extern Authmethod method_hostbased;
Darren Tucker0efd1552003-08-26 11:49:55 +100075#ifdef GSSAPI
76extern Authmethod method_gssapi;
77#endif
Ben Lindstrom511bb242002-06-06 20:52:37 +000078
79Authmethod *authmethods[] = {
80 &method_none,
81 &method_pubkey,
Darren Tucker0efd1552003-08-26 11:49:55 +100082#ifdef GSSAPI
83 &method_gssapi,
84#endif
Ben Lindstrom511bb242002-06-06 20:52:37 +000085 &method_passwd,
86 &method_kbdint,
87 &method_hostbased,
88 NULL
Damien Miller874d77b2000-10-14 16:23:11 +110089};
90
Damien Millereba71ba2000-04-29 23:57:08 +100091/* protocol */
92
markus@openbsd.org2ae666a2017-05-30 14:23:52 +000093static int input_service_request(int, u_int32_t, struct ssh *);
94static int input_userauth_request(int, u_int32_t, struct ssh *);
Damien Millereba71ba2000-04-29 23:57:08 +100095
Damien Millereba71ba2000-04-29 23:57:08 +100096/* helper */
Damien Millera6e3f012012-11-04 23:21:40 +110097static Authmethod *authmethod_lookup(Authctxt *, const char *);
98static char *authmethods_get(Authctxt *authctxt);
Damien Miller91a55f22013-04-23 15:18:10 +100099
100#define MATCH_NONE 0 /* method or submethod mismatch */
101#define MATCH_METHOD 1 /* method matches (no submethod specified) */
102#define MATCH_BOTH 2 /* method and submethod match */
103#define MATCH_PARTIAL 3 /* method matches, submethod can't be checked */
104static int list_starts_with(const char *, const char *, const char *);
Damien Millereba71ba2000-04-29 23:57:08 +1000105
Darren Tucker4230a5d2008-07-02 22:56:09 +1000106char *
107auth2_read_banner(void)
108{
109 struct stat st;
110 char *banner = NULL;
111 size_t len, n;
112 int fd;
113
114 if ((fd = open(options.banner, O_RDONLY)) == -1)
115 return (NULL);
116 if (fstat(fd, &st) == -1) {
117 close(fd);
118 return (NULL);
119 }
Damien Miller8ed4de82011-12-19 10:52:50 +1100120 if (st.st_size <= 0 || st.st_size > 1*1024*1024) {
Darren Tucker4230a5d2008-07-02 22:56:09 +1000121 close(fd);
122 return (NULL);
123 }
124
125 len = (size_t)st.st_size; /* truncate */
126 banner = xmalloc(len + 1);
127 n = atomicio(read, fd, banner, len);
128 close(fd);
129
130 if (n != len) {
Darren Tuckera627d422013-06-02 07:31:17 +1000131 free(banner);
Darren Tucker4230a5d2008-07-02 22:56:09 +1000132 return (NULL);
133 }
134 banner[n] = '\0';
135
136 return (banner);
137}
138
139void
140userauth_send_banner(const char *msg)
141{
Darren Tucker4230a5d2008-07-02 22:56:09 +1000142 packet_start(SSH2_MSG_USERAUTH_BANNER);
143 packet_put_cstring(msg);
144 packet_put_cstring(""); /* language, unused */
145 packet_send();
146 debug("%s: sent", __func__);
147}
148
149static void
150userauth_banner(void)
151{
152 char *banner = NULL;
153
djm@openbsd.org14b5c632018-01-23 05:27:21 +0000154 if (options.banner == NULL)
Darren Tucker4230a5d2008-07-02 22:56:09 +1000155 return;
156
157 if ((banner = PRIVSEP(auth2_read_banner())) == NULL)
158 goto done;
159 userauth_send_banner(banner);
160
161done:
Darren Tuckera627d422013-06-02 07:31:17 +1000162 free(banner);
Darren Tucker4230a5d2008-07-02 22:56:09 +1000163}
164
Damien Millereba71ba2000-04-29 23:57:08 +1000165/*
Damien Miller874d77b2000-10-14 16:23:11 +1100166 * loop until authctxt->success == TRUE
Damien Millereba71ba2000-04-29 23:57:08 +1000167 */
Darren Tucker3e33cec2003-10-02 16:12:36 +1000168void
169do_authentication2(Authctxt *authctxt)
Damien Millereba71ba2000-04-29 23:57:08 +1000170{
markus@openbsd.org5f4082d2017-05-30 14:18:15 +0000171 struct ssh *ssh = active_state; /* XXX */
172 ssh->authctxt = authctxt; /* XXX move to caller */
markus@openbsd.orgeb272ea2017-05-30 14:29:59 +0000173 ssh_dispatch_init(ssh, &dispatch_protocol_error);
174 ssh_dispatch_set(ssh, SSH2_MSG_SERVICE_REQUEST, &input_service_request);
markus@openbsd.org92e9fe62017-05-31 07:00:13 +0000175 ssh_dispatch_run_fatal(ssh, DISPATCH_BLOCK, &authctxt->success);
markus@openbsd.org5f4082d2017-05-30 14:18:15 +0000176 ssh->authctxt = NULL;
Damien Millereba71ba2000-04-29 23:57:08 +1000177}
178
Damien Miller91d4b122006-03-26 14:05:20 +1100179/*ARGSUSED*/
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +0000180static int
markus@openbsd.org2ae666a2017-05-30 14:23:52 +0000181input_service_request(int type, u_int32_t seq, struct ssh *ssh)
Damien Millereba71ba2000-04-29 23:57:08 +1000182{
markus@openbsd.org5f4082d2017-05-30 14:18:15 +0000183 Authctxt *authctxt = ssh->authctxt;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000184 u_int len;
Ben Lindstrom5a9d0ea2002-07-04 00:12:53 +0000185 int acceptit = 0;
Damien Millerda108ec2010-08-31 22:36:39 +1000186 char *service = packet_get_cstring(&len);
Damien Miller48b03fc2002-01-22 23:11:40 +1100187 packet_check_eom();
Damien Millereba71ba2000-04-29 23:57:08 +1000188
Damien Miller874d77b2000-10-14 16:23:11 +1100189 if (authctxt == NULL)
190 fatal("input_service_request: no authctxt");
191
Damien Millereba71ba2000-04-29 23:57:08 +1000192 if (strcmp(service, "ssh-userauth") == 0) {
Damien Miller874d77b2000-10-14 16:23:11 +1100193 if (!authctxt->success) {
Ben Lindstrom5a9d0ea2002-07-04 00:12:53 +0000194 acceptit = 1;
Damien Millereba71ba2000-04-29 23:57:08 +1000195 /* now we can handle user-auth requests */
markus@openbsd.orgeb272ea2017-05-30 14:29:59 +0000196 ssh_dispatch_set(ssh, SSH2_MSG_USERAUTH_REQUEST, &input_userauth_request);
Damien Millereba71ba2000-04-29 23:57:08 +1000197 }
198 }
199 /* XXX all other service requests are denied */
200
Ben Lindstrom5a9d0ea2002-07-04 00:12:53 +0000201 if (acceptit) {
Damien Millereba71ba2000-04-29 23:57:08 +1000202 packet_start(SSH2_MSG_SERVICE_ACCEPT);
203 packet_put_cstring(service);
204 packet_send();
205 packet_write_wait();
206 } else {
207 debug("bad service request %s", service);
208 packet_disconnect("bad service request %s", service);
209 }
Darren Tuckera627d422013-06-02 07:31:17 +1000210 free(service);
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +0000211 return 0;
Damien Millereba71ba2000-04-29 23:57:08 +1000212}
213
dtucker@openbsd.orge9d910b2018-04-13 03:57:26 +0000214#define MIN_FAIL_DELAY_SECONDS 0.005
215static double
216user_specific_delay(const char *user)
217{
218 char b[512];
219 size_t len = ssh_digest_bytes(SSH_DIGEST_SHA512);
220 u_char *hash = xmalloc(len);
221 double delay;
222
dtucker@openbsd.orgfdba5032018-05-11 03:22:55 +0000223 (void)snprintf(b, sizeof b, "%llu%s",
224 (unsigned long long)options.timing_secret, user);
dtucker@openbsd.orge9d910b2018-04-13 03:57:26 +0000225 if (ssh_digest_memory(SSH_DIGEST_SHA512, b, strlen(b), hash, len) != 0)
226 fatal("%s: ssh_digest_memory", __func__);
227 /* 0-4.2 ms of delay */
228 delay = (double)PEEK_U32(hash) / 1000 / 1000 / 1000 / 1000;
229 freezero(hash, len);
230 debug3("%s: user specific delay %0.3lfms", __func__, delay/1000);
231 return MIN_FAIL_DELAY_SECONDS + delay;
232}
233
234static void
235ensure_minimum_time_since(double start, double seconds)
236{
237 struct timespec ts;
238 double elapsed = monotime_double() - start, req = seconds, remain;
239
240 /* if we've already passed the requested time, scale up */
241 while ((remain = seconds - elapsed) < 0.0)
242 seconds *= 2;
243
244 ts.tv_sec = remain;
245 ts.tv_nsec = (remain - ts.tv_sec) * 1000000000;
246 debug3("%s: elapsed %0.3lfms, delaying %0.3lfms (requested %0.3lfms)",
247 __func__, elapsed*1000, remain*1000, req*1000);
248 nanosleep(&ts, NULL);
249}
250
Damien Miller91d4b122006-03-26 14:05:20 +1100251/*ARGSUSED*/
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +0000252static int
markus@openbsd.org2ae666a2017-05-30 14:23:52 +0000253input_userauth_request(int type, u_int32_t seq, struct ssh *ssh)
Damien Millereba71ba2000-04-29 23:57:08 +1000254{
markus@openbsd.org5f4082d2017-05-30 14:18:15 +0000255 Authctxt *authctxt = ssh->authctxt;
Damien Miller874d77b2000-10-14 16:23:11 +1100256 Authmethod *m = NULL;
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000257 char *user, *service, *method, *style = NULL;
Damien Millereba71ba2000-04-29 23:57:08 +1000258 int authenticated = 0;
dtucker@openbsd.orge9d910b2018-04-13 03:57:26 +0000259 double tstart = monotime_double();
Damien Millereba71ba2000-04-29 23:57:08 +1000260
Damien Miller874d77b2000-10-14 16:23:11 +1100261 if (authctxt == NULL)
262 fatal("input_userauth_request: no authctxt");
Damien Millereba71ba2000-04-29 23:57:08 +1000263
Damien Millerda108ec2010-08-31 22:36:39 +1000264 user = packet_get_cstring(NULL);
265 service = packet_get_cstring(NULL);
266 method = packet_get_cstring(NULL);
Damien Miller874d77b2000-10-14 16:23:11 +1100267 debug("userauth-request for user %s service %s method %s", user, service, method);
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000268 debug("attempt %d failures %d", authctxt->attempt, authctxt->failures);
Damien Miller874d77b2000-10-14 16:23:11 +1100269
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000270 if ((style = strchr(user, ':')) != NULL)
271 *style++ = 0;
272
Kevin Stevesef4eea92001-02-05 12:42:17 +0000273 if (authctxt->attempt++ == 0) {
Damien Miller3a5b0232002-03-13 13:19:42 +1100274 /* setup auth context */
Kevin Steves205cc1e2002-03-22 20:43:05 +0000275 authctxt->pw = PRIVSEP(getpwnamallow(user));
Darren Tuckerdbf7a742004-03-08 23:04:06 +1100276 authctxt->user = xstrdup(user);
Kevin Steves205cc1e2002-03-22 20:43:05 +0000277 if (authctxt->pw && strcmp(service, "ssh-connection")==0) {
Damien Miller874d77b2000-10-14 16:23:11 +1100278 authctxt->valid = 1;
djm@openbsd.orgf1a19342017-02-03 23:05:57 +0000279 debug2("%s: setting up authctxt for %s",
280 __func__, user);
Damien Miller874d77b2000-10-14 16:23:11 +1100281 } else {
djm@openbsd.orgf1a19342017-02-03 23:05:57 +0000282 /* Invalid user, fake password information */
Damien Miller856f0be2003-09-03 07:32:45 +1000283 authctxt->pw = fakepw();
Darren Tucker2e0cf0d2005-02-08 21:52:47 +1100284#ifdef SSH_AUDIT_EVENTS
285 PRIVSEP(audit_event(SSH_INVALID_USER));
Darren Tucker269a1ea2005-02-03 00:20:53 +1100286#endif
Damien Miller874d77b2000-10-14 16:23:11 +1100287 }
Darren Tuckerd3eff2b2005-09-24 12:43:51 +1000288#ifdef USE_PAM
289 if (options.use_pam)
290 PRIVSEP(start_pam(authctxt));
291#endif
djm@openbsd.orgf1a19342017-02-03 23:05:57 +0000292 ssh_packet_set_log_preamble(ssh, "%suser %s",
293 authctxt->valid ? "authenticating " : "invalid ", user);
Damien Miller30d1f842004-07-21 20:48:53 +1000294 setproctitle("%s%s", authctxt->valid ? user : "unknown",
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000295 use_privsep ? " [net]" : "");
Damien Miller874d77b2000-10-14 16:23:11 +1100296 authctxt->service = xstrdup(service);
Ben Lindstrom9d0c0662001-06-09 01:40:00 +0000297 authctxt->style = style ? xstrdup(style) : NULL;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000298 if (use_privsep)
299 mm_inform_authserv(service, style);
Darren Tucker4230a5d2008-07-02 22:56:09 +1000300 userauth_banner();
Damien Millera6e3f012012-11-04 23:21:40 +1100301 if (auth2_setup_methods_lists(authctxt) != 0)
302 packet_disconnect("no authentication methods enabled");
Ben Lindstrom9d0c0662001-06-09 01:40:00 +0000303 } else if (strcmp(user, authctxt->user) != 0 ||
304 strcmp(service, authctxt->service) != 0) {
305 packet_disconnect("Change of username or service not allowed: "
306 "(%s,%s) -> (%s,%s)",
307 authctxt->user, authctxt->service, user, service);
Damien Millereba71ba2000-04-29 23:57:08 +1000308 }
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000309 /* reset state */
markus@openbsd.orgeb272ea2017-05-30 14:29:59 +0000310 auth2_challenge_stop(ssh);
Darren Tucker0efd1552003-08-26 11:49:55 +1000311
312#ifdef GSSAPI
Damien Miller01ed2272008-11-05 16:20:46 +1100313 /* XXX move to auth2_gssapi_stop() */
markus@openbsd.orgeb272ea2017-05-30 14:29:59 +0000314 ssh_dispatch_set(ssh, SSH2_MSG_USERAUTH_GSSAPI_TOKEN, NULL);
315 ssh_dispatch_set(ssh, SSH2_MSG_USERAUTH_GSSAPI_EXCHANGE_COMPLETE, NULL);
Darren Tucker0efd1552003-08-26 11:49:55 +1000316#endif
317
djm@openbsd.org8f574952017-06-24 06:34:38 +0000318 auth2_authctxt_reset_info(authctxt);
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000319 authctxt->postponed = 0;
Damien Miller3fcdfd52011-05-05 14:04:11 +1000320 authctxt->server_caused_failure = 0;
Damien Millerb70b61f2000-09-16 16:25:12 +1100321
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000322 /* try to authenticate user */
Damien Millera6e3f012012-11-04 23:21:40 +1100323 m = authmethod_lookup(authctxt, method);
Darren Tucker4230a5d2008-07-02 22:56:09 +1000324 if (m != NULL && authctxt->failures < options.max_authtries) {
Damien Miller874d77b2000-10-14 16:23:11 +1100325 debug2("input_userauth_request: try method %s", method);
markus@openbsd.orgeb272ea2017-05-30 14:29:59 +0000326 authenticated = m->userauth(ssh);
Damien Miller874d77b2000-10-14 16:23:11 +1100327 }
dtucker@openbsd.orge9d910b2018-04-13 03:57:26 +0000328 if (!authctxt->authenticated)
329 ensure_minimum_time_since(tstart,
330 user_specific_delay(authctxt->user));
markus@openbsd.orgeb272ea2017-05-30 14:29:59 +0000331 userauth_finish(ssh, authenticated, method, NULL);
Damien Miller5d57e502001-03-30 10:48:31 +1000332
Darren Tuckera627d422013-06-02 07:31:17 +1000333 free(service);
334 free(user);
335 free(method);
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +0000336 return 0;
Damien Miller5d57e502001-03-30 10:48:31 +1000337}
338
339void
markus@openbsd.orgeb272ea2017-05-30 14:29:59 +0000340userauth_finish(struct ssh *ssh, int authenticated, const char *method,
Damien Miller15b05cf2012-12-03 09:53:20 +1100341 const char *submethod)
Damien Miller5d57e502001-03-30 10:48:31 +1000342{
markus@openbsd.orgeb272ea2017-05-30 14:29:59 +0000343 Authctxt *authctxt = ssh->authctxt;
Ben Lindstromcd4349f2001-06-09 00:23:17 +0000344 char *methods;
Damien Millera6e3f012012-11-04 23:21:40 +1100345 int partial = 0;
Ben Lindstromcd4349f2001-06-09 00:23:17 +0000346
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000347 if (!authctxt->valid && authenticated)
348 fatal("INTERNAL ERROR: authenticated invalid user %s",
349 authctxt->user);
Damien Miller15b05cf2012-12-03 09:53:20 +1100350 if (authenticated && authctxt->postponed)
351 fatal("INTERNAL ERROR: authenticated and postponed");
Damien Millerb70b61f2000-09-16 16:25:12 +1100352
Damien Miller874d77b2000-10-14 16:23:11 +1100353 /* Special handling for root */
Damien Miller556f9312003-02-24 11:59:26 +1100354 if (authenticated && authctxt->pw->pw_uid == 0 &&
djm@openbsd.org7c856852018-03-03 03:15:51 +0000355 !auth_root_allowed(ssh, method)) {
Damien Millereba71ba2000-04-29 23:57:08 +1000356 authenticated = 0;
Darren Tucker2e0cf0d2005-02-08 21:52:47 +1100357#ifdef SSH_AUDIT_EVENTS
358 PRIVSEP(audit_event(SSH_LOGIN_ROOT_DENIED));
Darren Tucker269a1ea2005-02-03 00:20:53 +1100359#endif
360 }
Damien Millereba71ba2000-04-29 23:57:08 +1000361
Damien Miller15b05cf2012-12-03 09:53:20 +1100362 if (authenticated && options.num_auth_methods != 0) {
Damien Miller91a55f22013-04-23 15:18:10 +1000363 if (!auth2_update_methods_lists(authctxt, method, submethod)) {
Damien Miller15b05cf2012-12-03 09:53:20 +1100364 authenticated = 0;
365 partial = 1;
366 }
367 }
368
369 /* Log before sending the reply */
Darren Tucker0acca372013-06-02 07:41:51 +1000370 auth_log(authctxt, authenticated, partial, method, submethod);
Damien Miller15b05cf2012-12-03 09:53:20 +1100371
djm@openbsd.org8f574952017-06-24 06:34:38 +0000372 /* Update information exposed to session */
373 if (authenticated || partial)
374 auth2_update_session_info(authctxt, method, submethod);
375
Damien Miller15b05cf2012-12-03 09:53:20 +1100376 if (authctxt->postponed)
377 return;
378
Damien Miller1f499fd2003-08-25 13:08:49 +1000379#ifdef USE_PAM
Darren Tucker77fc29e2004-09-11 23:07:03 +1000380 if (options.use_pam && authenticated) {
381 if (!PRIVSEP(do_pam_account())) {
Darren Tucker77fc29e2004-09-11 23:07:03 +1000382 /* if PAM returned a message, send it to the user */
383 if (buffer_len(&loginmsg) > 0) {
384 buffer_append(&loginmsg, "\0", 1);
385 userauth_send_banner(buffer_ptr(&loginmsg));
Darren Tuckerc1386672004-12-03 14:33:47 +1100386 packet_write_wait();
Darren Tucker77fc29e2004-09-11 23:07:03 +1000387 }
Darren Tuckerc1386672004-12-03 14:33:47 +1100388 fatal("Access denied for user %s by PAM account "
Damien Millerb6f72f52005-07-17 17:26:43 +1000389 "configuration", authctxt->user);
Darren Tucker77fc29e2004-09-11 23:07:03 +1000390 }
391 }
Damien Miller1f499fd2003-08-25 13:08:49 +1000392#endif
393
Ben Lindstromcd4349f2001-06-09 00:23:17 +0000394 if (authenticated == 1) {
395 /* turn off userauth */
markus@openbsd.orgeb272ea2017-05-30 14:29:59 +0000396 ssh_dispatch_set(ssh, SSH2_MSG_USERAUTH_REQUEST, &dispatch_protocol_ignore);
Ben Lindstromcd4349f2001-06-09 00:23:17 +0000397 packet_start(SSH2_MSG_USERAUTH_SUCCESS);
398 packet_send();
399 packet_write_wait();
400 /* now we can break out */
401 authctxt->success = 1;
djm@openbsd.orgf1a19342017-02-03 23:05:57 +0000402 ssh_packet_set_log_preamble(ssh, "user %s", authctxt->user);
Ben Lindstromcd4349f2001-06-09 00:23:17 +0000403 } else {
Damien Miller0b4d48b2008-07-05 09:44:53 +1000404 /* Allow initial try of "none" auth without failure penalty */
djm@openbsd.org058f8392014-12-18 23:58:04 +0000405 if (!partial && !authctxt->server_caused_failure &&
Damien Miller3fcdfd52011-05-05 14:04:11 +1000406 (authctxt->attempt > 1 || strcmp(method, "none") != 0))
Damien Miller0b4d48b2008-07-05 09:44:53 +1000407 authctxt->failures++;
408 if (authctxt->failures >= options.max_authtries) {
Darren Tucker2e0cf0d2005-02-08 21:52:47 +1100409#ifdef SSH_AUDIT_EVENTS
410 PRIVSEP(audit_event(SSH_LOGIN_EXCEED_MAXTRIES));
Darren Tucker269a1ea2005-02-03 00:20:53 +1100411#endif
Damien Miller686feb52014-07-03 21:29:38 +1000412 auth_maxtries_exceeded(authctxt);
Darren Tucker269a1ea2005-02-03 00:20:53 +1100413 }
Damien Millera6e3f012012-11-04 23:21:40 +1100414 methods = authmethods_get(authctxt);
415 debug3("%s: failure partial=%d next methods=\"%s\"", __func__,
416 partial, methods);
Ben Lindstromcd4349f2001-06-09 00:23:17 +0000417 packet_start(SSH2_MSG_USERAUTH_FAILURE);
418 packet_put_cstring(methods);
Damien Millera6e3f012012-11-04 23:21:40 +1100419 packet_put_char(partial);
Ben Lindstromcd4349f2001-06-09 00:23:17 +0000420 packet_send();
421 packet_write_wait();
Darren Tuckera627d422013-06-02 07:31:17 +1000422 free(methods);
Ben Lindstromcd4349f2001-06-09 00:23:17 +0000423 }
Damien Miller874d77b2000-10-14 16:23:11 +1100424}
425
Damien Millera6e3f012012-11-04 23:21:40 +1100426/*
427 * Checks whether method is allowed by at least one AuthenticationMethods
428 * methods list. Returns 1 if allowed, or no methods lists configured.
429 * 0 otherwise.
430 */
Damien Miller91a55f22013-04-23 15:18:10 +1000431int
432auth2_method_allowed(Authctxt *authctxt, const char *method,
433 const char *submethod)
Damien Millera6e3f012012-11-04 23:21:40 +1100434{
435 u_int i;
436
437 /*
438 * NB. authctxt->num_auth_methods might be zero as a result of
439 * auth2_setup_methods_lists(), so check the configuration.
440 */
441 if (options.num_auth_methods == 0)
442 return 1;
443 for (i = 0; i < authctxt->num_auth_methods; i++) {
Damien Miller91a55f22013-04-23 15:18:10 +1000444 if (list_starts_with(authctxt->auth_methods[i], method,
445 submethod) != MATCH_NONE)
Damien Millera6e3f012012-11-04 23:21:40 +1100446 return 1;
447 }
448 return 0;
449}
450
Ben Lindstrom79073822001-07-04 03:42:30 +0000451static char *
Damien Millera6e3f012012-11-04 23:21:40 +1100452authmethods_get(Authctxt *authctxt)
Damien Miller874d77b2000-10-14 16:23:11 +1100453{
Damien Miller0e3b8722002-01-22 23:26:38 +1100454 Buffer b;
Damien Miller874d77b2000-10-14 16:23:11 +1100455 char *list;
Damien Millera6e3f012012-11-04 23:21:40 +1100456 u_int i;
Damien Miller874d77b2000-10-14 16:23:11 +1100457
Damien Miller0e3b8722002-01-22 23:26:38 +1100458 buffer_init(&b);
Ben Lindstrom511bb242002-06-06 20:52:37 +0000459 for (i = 0; authmethods[i] != NULL; i++) {
460 if (strcmp(authmethods[i]->name, "none") == 0)
Damien Miller874d77b2000-10-14 16:23:11 +1100461 continue;
Damien Millera6e3f012012-11-04 23:21:40 +1100462 if (authmethods[i]->enabled == NULL ||
463 *(authmethods[i]->enabled) == 0)
464 continue;
Damien Miller91a55f22013-04-23 15:18:10 +1000465 if (!auth2_method_allowed(authctxt, authmethods[i]->name,
466 NULL))
Damien Millera6e3f012012-11-04 23:21:40 +1100467 continue;
468 if (buffer_len(&b) > 0)
469 buffer_append(&b, ",", 1);
470 buffer_append(&b, authmethods[i]->name,
471 strlen(authmethods[i]->name));
Damien Millereba71ba2000-04-29 23:57:08 +1000472 }
djm@openbsd.org1a31d022016-05-02 08:49:03 +0000473 if ((list = sshbuf_dup_string(&b)) == NULL)
474 fatal("%s: sshbuf_dup_string failed", __func__);
Damien Miller0e3b8722002-01-22 23:26:38 +1100475 buffer_free(&b);
Damien Miller874d77b2000-10-14 16:23:11 +1100476 return list;
477}
478
Ben Lindstrombba81212001-06-25 05:01:22 +0000479static Authmethod *
Damien Millera6e3f012012-11-04 23:21:40 +1100480authmethod_lookup(Authctxt *authctxt, const char *name)
Damien Miller874d77b2000-10-14 16:23:11 +1100481{
Ben Lindstrom511bb242002-06-06 20:52:37 +0000482 int i;
483
Damien Miller874d77b2000-10-14 16:23:11 +1100484 if (name != NULL)
Ben Lindstrom511bb242002-06-06 20:52:37 +0000485 for (i = 0; authmethods[i] != NULL; i++)
486 if (authmethods[i]->enabled != NULL &&
487 *(authmethods[i]->enabled) != 0 &&
Damien Millera6e3f012012-11-04 23:21:40 +1100488 strcmp(name, authmethods[i]->name) == 0 &&
Damien Miller91a55f22013-04-23 15:18:10 +1000489 auth2_method_allowed(authctxt,
490 authmethods[i]->name, NULL))
Ben Lindstrom511bb242002-06-06 20:52:37 +0000491 return authmethods[i];
492 debug2("Unrecognized authentication method name: %s",
493 name ? name : "NULL");
Damien Miller874d77b2000-10-14 16:23:11 +1100494 return NULL;
Damien Millereba71ba2000-04-29 23:57:08 +1000495}
Darren Tucker4230a5d2008-07-02 22:56:09 +1000496
Damien Millera6e3f012012-11-04 23:21:40 +1100497/*
498 * Check a comma-separated list of methods for validity. Is need_enable is
499 * non-zero, then also require that the methods are enabled.
500 * Returns 0 on success or -1 if the methods list is invalid.
501 */
502int
503auth2_methods_valid(const char *_methods, int need_enable)
504{
Damien Miller91a55f22013-04-23 15:18:10 +1000505 char *methods, *omethods, *method, *p;
Damien Millera6e3f012012-11-04 23:21:40 +1100506 u_int i, found;
507 int ret = -1;
508
509 if (*_methods == '\0') {
510 error("empty authentication method list");
511 return -1;
512 }
513 omethods = methods = xstrdup(_methods);
514 while ((method = strsep(&methods, ",")) != NULL) {
515 for (found = i = 0; !found && authmethods[i] != NULL; i++) {
Damien Miller91a55f22013-04-23 15:18:10 +1000516 if ((p = strchr(method, ':')) != NULL)
517 *p = '\0';
Damien Millera6e3f012012-11-04 23:21:40 +1100518 if (strcmp(method, authmethods[i]->name) != 0)
519 continue;
520 if (need_enable) {
521 if (authmethods[i]->enabled == NULL ||
522 *(authmethods[i]->enabled) == 0) {
523 error("Disabled method \"%s\" in "
524 "AuthenticationMethods list \"%s\"",
525 method, _methods);
526 goto out;
527 }
528 }
529 found = 1;
530 break;
531 }
532 if (!found) {
533 error("Unknown authentication method \"%s\" in list",
534 method);
535 goto out;
536 }
537 }
538 ret = 0;
539 out:
540 free(omethods);
541 return ret;
542}
543
544/*
545 * Prune the AuthenticationMethods supplied in the configuration, removing
546 * any methods lists that include disabled methods. Note that this might
547 * leave authctxt->num_auth_methods == 0, even when multiple required auth
548 * has been requested. For this reason, all tests for whether multiple is
549 * enabled should consult options.num_auth_methods directly.
550 */
551int
552auth2_setup_methods_lists(Authctxt *authctxt)
553{
554 u_int i;
555
556 if (options.num_auth_methods == 0)
557 return 0;
558 debug3("%s: checking methods", __func__);
559 authctxt->auth_methods = xcalloc(options.num_auth_methods,
560 sizeof(*authctxt->auth_methods));
561 authctxt->num_auth_methods = 0;
562 for (i = 0; i < options.num_auth_methods; i++) {
563 if (auth2_methods_valid(options.auth_methods[i], 1) != 0) {
564 logit("Authentication methods list \"%s\" contains "
565 "disabled method, skipping",
566 options.auth_methods[i]);
567 continue;
568 }
569 debug("authentication methods list %d: %s",
570 authctxt->num_auth_methods, options.auth_methods[i]);
571 authctxt->auth_methods[authctxt->num_auth_methods++] =
572 xstrdup(options.auth_methods[i]);
573 }
574 if (authctxt->num_auth_methods == 0) {
575 error("No AuthenticationMethods left after eliminating "
576 "disabled methods");
577 return -1;
578 }
579 return 0;
580}
581
582static int
Damien Miller91a55f22013-04-23 15:18:10 +1000583list_starts_with(const char *methods, const char *method,
584 const char *submethod)
Damien Millera6e3f012012-11-04 23:21:40 +1100585{
586 size_t l = strlen(method);
Damien Miller91a55f22013-04-23 15:18:10 +1000587 int match;
588 const char *p;
Damien Millera6e3f012012-11-04 23:21:40 +1100589
590 if (strncmp(methods, method, l) != 0)
Damien Miller91a55f22013-04-23 15:18:10 +1000591 return MATCH_NONE;
592 p = methods + l;
593 match = MATCH_METHOD;
594 if (*p == ':') {
595 if (!submethod)
596 return MATCH_PARTIAL;
597 l = strlen(submethod);
598 p += 1;
599 if (strncmp(submethod, p, l))
600 return MATCH_NONE;
601 p += l;
602 match = MATCH_BOTH;
603 }
604 if (*p != ',' && *p != '\0')
605 return MATCH_NONE;
606 return match;
Damien Millera6e3f012012-11-04 23:21:40 +1100607}
608
609/*
610 * Remove method from the start of a comma-separated list of methods.
611 * Returns 0 if the list of methods did not start with that method or 1
612 * if it did.
613 */
614static int
Damien Miller91a55f22013-04-23 15:18:10 +1000615remove_method(char **methods, const char *method, const char *submethod)
Damien Millera6e3f012012-11-04 23:21:40 +1100616{
Damien Miller91a55f22013-04-23 15:18:10 +1000617 char *omethods = *methods, *p;
Damien Millera6e3f012012-11-04 23:21:40 +1100618 size_t l = strlen(method);
Damien Miller91a55f22013-04-23 15:18:10 +1000619 int match;
Damien Millera6e3f012012-11-04 23:21:40 +1100620
Damien Miller91a55f22013-04-23 15:18:10 +1000621 match = list_starts_with(omethods, method, submethod);
622 if (match != MATCH_METHOD && match != MATCH_BOTH)
Damien Millera6e3f012012-11-04 23:21:40 +1100623 return 0;
Damien Miller91a55f22013-04-23 15:18:10 +1000624 p = omethods + l;
625 if (submethod && match == MATCH_BOTH)
626 p += 1 + strlen(submethod); /* include colon */
627 if (*p == ',')
628 p++;
629 *methods = xstrdup(p);
Damien Millera6e3f012012-11-04 23:21:40 +1100630 free(omethods);
631 return 1;
632}
633
634/*
635 * Called after successful authentication. Will remove the successful method
636 * from the start of each list in which it occurs. If it was the last method
637 * in any list, then authentication is deemed successful.
638 * Returns 1 if the method completed any authentication list or 0 otherwise.
639 */
640int
Damien Miller91a55f22013-04-23 15:18:10 +1000641auth2_update_methods_lists(Authctxt *authctxt, const char *method,
642 const char *submethod)
Damien Millera6e3f012012-11-04 23:21:40 +1100643{
644 u_int i, found = 0;
645
646 debug3("%s: updating methods list after \"%s\"", __func__, method);
647 for (i = 0; i < authctxt->num_auth_methods; i++) {
Damien Miller91a55f22013-04-23 15:18:10 +1000648 if (!remove_method(&(authctxt->auth_methods[i]), method,
649 submethod))
Damien Millera6e3f012012-11-04 23:21:40 +1100650 continue;
651 found = 1;
652 if (*authctxt->auth_methods[i] == '\0') {
653 debug2("authentication methods list %d complete", i);
654 return 1;
655 }
656 debug3("authentication methods list %d remaining: \"%s\"",
657 i, authctxt->auth_methods[i]);
658 }
659 /* This should not happen, but would be bad if it did */
660 if (!found)
661 fatal("%s: method not in AuthenticationMethods", __func__);
662 return 0;
663}
664
djm@openbsd.org8f574952017-06-24 06:34:38 +0000665/* Reset method-specific information */
666void auth2_authctxt_reset_info(Authctxt *authctxt)
667{
668 sshkey_free(authctxt->auth_method_key);
669 free(authctxt->auth_method_info);
670 authctxt->auth_method_key = NULL;
671 authctxt->auth_method_info = NULL;
672}
673
674/* Record auth method-specific information for logs */
675void
676auth2_record_info(Authctxt *authctxt, const char *fmt, ...)
677{
678 va_list ap;
679 int i;
680
681 free(authctxt->auth_method_info);
682 authctxt->auth_method_info = NULL;
683
684 va_start(ap, fmt);
685 i = vasprintf(&authctxt->auth_method_info, fmt, ap);
686 va_end(ap);
687
688 if (i < 0 || authctxt->auth_method_info == NULL)
689 fatal("%s: vasprintf failed", __func__);
690}
691
692/*
693 * Records a public key used in authentication. This is used for logging
694 * and to ensure that the same key is not subsequently accepted again for
695 * multiple authentication.
696 */
697void
698auth2_record_key(Authctxt *authctxt, int authenticated,
699 const struct sshkey *key)
700{
701 struct sshkey **tmp, *dup;
702 int r;
703
704 if ((r = sshkey_demote(key, &dup)) != 0)
705 fatal("%s: copy key: %s", __func__, ssh_err(r));
706 sshkey_free(authctxt->auth_method_key);
707 authctxt->auth_method_key = dup;
708
709 if (!authenticated)
710 return;
711
712 /* If authenticated, make sure we don't accept this key again */
713 if ((r = sshkey_demote(key, &dup)) != 0)
714 fatal("%s: copy key: %s", __func__, ssh_err(r));
715 if (authctxt->nprev_keys >= INT_MAX ||
716 (tmp = recallocarray(authctxt->prev_keys, authctxt->nprev_keys,
717 authctxt->nprev_keys + 1, sizeof(*authctxt->prev_keys))) == NULL)
718 fatal("%s: reallocarray failed", __func__);
719 authctxt->prev_keys = tmp;
720 authctxt->prev_keys[authctxt->nprev_keys] = dup;
721 authctxt->nprev_keys++;
722
723}
724
725/* Checks whether a key has already been previously used for authentication */
726int
727auth2_key_already_used(Authctxt *authctxt, const struct sshkey *key)
728{
729 u_int i;
730 char *fp;
731
732 for (i = 0; i < authctxt->nprev_keys; i++) {
733 if (sshkey_equal_public(key, authctxt->prev_keys[i])) {
734 fp = sshkey_fingerprint(authctxt->prev_keys[i],
735 options.fingerprint_hash, SSH_FP_DEFAULT);
736 debug3("%s: key already used: %s %s", __func__,
737 sshkey_type(authctxt->prev_keys[i]),
738 fp == NULL ? "UNKNOWN" : fp);
739 free(fp);
740 return 1;
741 }
742 }
743 return 0;
744}
745
746/*
747 * Updates authctxt->session_info with details of authentication. Should be
748 * whenever an authentication method succeeds.
749 */
750void
751auth2_update_session_info(Authctxt *authctxt, const char *method,
752 const char *submethod)
753{
754 int r;
755
756 if (authctxt->session_info == NULL) {
757 if ((authctxt->session_info = sshbuf_new()) == NULL)
758 fatal("%s: sshbuf_new", __func__);
759 }
760
761 /* Append method[/submethod] */
762 if ((r = sshbuf_putf(authctxt->session_info, "%s%s%s",
763 method, submethod == NULL ? "" : "/",
764 submethod == NULL ? "" : submethod)) != 0)
765 fatal("%s: append method: %s", __func__, ssh_err(r));
766
767 /* Append key if present */
768 if (authctxt->auth_method_key != NULL) {
769 if ((r = sshbuf_put_u8(authctxt->session_info, ' ')) != 0 ||
770 (r = sshkey_format_text(authctxt->auth_method_key,
771 authctxt->session_info)) != 0)
772 fatal("%s: append key: %s", __func__, ssh_err(r));
773 }
774
775 if (authctxt->auth_method_info != NULL) {
776 /* Ensure no ambiguity here */
777 if (strchr(authctxt->auth_method_info, '\n') != NULL)
778 fatal("%s: auth_method_info contains \\n", __func__);
779 if ((r = sshbuf_put_u8(authctxt->session_info, ' ')) != 0 ||
780 (r = sshbuf_putf(authctxt->session_info, "%s",
781 authctxt->auth_method_info)) != 0) {
782 fatal("%s: append method info: %s",
783 __func__, ssh_err(r));
784 }
785 }
786 if ((r = sshbuf_put_u8(authctxt->session_info, '\n')) != 0)
787 fatal("%s: append: %s", __func__, ssh_err(r));
788}
Damien Millera6e3f012012-11-04 23:21:40 +1100789