blob: 4d19957a6ed32effe83463c0a39ad4d03e98ba0c [file] [log] [blame]
markus@openbsd.org5467fbc2018-07-11 18:53:29 +00001/* $OpenBSD: auth2.c,v 1.149 2018/07/11 18:53:29 markus 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"
markus@openbsd.orgc7d39ac2018-07-09 21:35:50 +000044#include "sshbuf.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"
markus@openbsd.org5467fbc2018-07-11 18:53:29 +000048#include "sshkey.h"
Damien Millerd7834352006-08-05 12:39:39 +100049#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"
Damien Miller120a1ec2018-07-10 19:39:52 +100053#include "sshbuf.h"
54#include "ssherr.h"
Damien Millereba71ba2000-04-29 23:57:08 +100055
Darren Tucker0efd1552003-08-26 11:49:55 +100056#ifdef GSSAPI
57#include "ssh-gss.h"
58#endif
Damien Millerd7834352006-08-05 12:39:39 +100059#include "monitor_wrap.h"
djm@openbsd.org8f574952017-06-24 06:34:38 +000060#include "ssherr.h"
dtucker@openbsd.orge9d910b2018-04-13 03:57:26 +000061#include "digest.h"
Darren Tucker0efd1552003-08-26 11:49:55 +100062
Damien Millereba71ba2000-04-29 23:57:08 +100063/* import */
64extern ServerOptions options;
Ben Lindstrom46c16222000-12-22 01:43:59 +000065extern u_char *session_id2;
Darren Tucker502d3842003-06-28 12:38:01 +100066extern u_int session_id2_len;
Damien Miller120a1ec2018-07-10 19:39:52 +100067extern struct sshbuf *loginmsg;
Damien Millereba71ba2000-04-29 23:57:08 +100068
Ben Lindstrom511bb242002-06-06 20:52:37 +000069/* methods */
70
71extern Authmethod method_none;
72extern Authmethod method_pubkey;
73extern Authmethod method_passwd;
74extern Authmethod method_kbdint;
75extern Authmethod method_hostbased;
Darren Tucker0efd1552003-08-26 11:49:55 +100076#ifdef GSSAPI
77extern Authmethod method_gssapi;
78#endif
Ben Lindstrom511bb242002-06-06 20:52:37 +000079
80Authmethod *authmethods[] = {
81 &method_none,
82 &method_pubkey,
Darren Tucker0efd1552003-08-26 11:49:55 +100083#ifdef GSSAPI
84 &method_gssapi,
85#endif
Ben Lindstrom511bb242002-06-06 20:52:37 +000086 &method_passwd,
87 &method_kbdint,
88 &method_hostbased,
89 NULL
Damien Miller874d77b2000-10-14 16:23:11 +110090};
91
Damien Millereba71ba2000-04-29 23:57:08 +100092/* protocol */
93
markus@openbsd.org2ae666a2017-05-30 14:23:52 +000094static int input_service_request(int, u_int32_t, struct ssh *);
95static int input_userauth_request(int, u_int32_t, struct ssh *);
Damien Millereba71ba2000-04-29 23:57:08 +100096
Damien Millereba71ba2000-04-29 23:57:08 +100097/* helper */
Damien Millera6e3f012012-11-04 23:21:40 +110098static Authmethod *authmethod_lookup(Authctxt *, const char *);
99static char *authmethods_get(Authctxt *authctxt);
Damien Miller91a55f22013-04-23 15:18:10 +1000100
101#define MATCH_NONE 0 /* method or submethod mismatch */
102#define MATCH_METHOD 1 /* method matches (no submethod specified) */
103#define MATCH_BOTH 2 /* method and submethod match */
104#define MATCH_PARTIAL 3 /* method matches, submethod can't be checked */
105static int list_starts_with(const char *, const char *, const char *);
Damien Millereba71ba2000-04-29 23:57:08 +1000106
Darren Tucker4230a5d2008-07-02 22:56:09 +1000107char *
108auth2_read_banner(void)
109{
110 struct stat st;
111 char *banner = NULL;
112 size_t len, n;
113 int fd;
114
115 if ((fd = open(options.banner, O_RDONLY)) == -1)
116 return (NULL);
117 if (fstat(fd, &st) == -1) {
118 close(fd);
119 return (NULL);
120 }
Damien Miller8ed4de82011-12-19 10:52:50 +1100121 if (st.st_size <= 0 || st.st_size > 1*1024*1024) {
Darren Tucker4230a5d2008-07-02 22:56:09 +1000122 close(fd);
123 return (NULL);
124 }
125
126 len = (size_t)st.st_size; /* truncate */
127 banner = xmalloc(len + 1);
128 n = atomicio(read, fd, banner, len);
129 close(fd);
130
131 if (n != len) {
Darren Tuckera627d422013-06-02 07:31:17 +1000132 free(banner);
Darren Tucker4230a5d2008-07-02 22:56:09 +1000133 return (NULL);
134 }
135 banner[n] = '\0';
136
137 return (banner);
138}
139
140void
141userauth_send_banner(const char *msg)
142{
Darren Tucker4230a5d2008-07-02 22:56:09 +1000143 packet_start(SSH2_MSG_USERAUTH_BANNER);
144 packet_put_cstring(msg);
145 packet_put_cstring(""); /* language, unused */
146 packet_send();
147 debug("%s: sent", __func__);
148}
149
150static void
151userauth_banner(void)
152{
153 char *banner = NULL;
154
djm@openbsd.org14b5c632018-01-23 05:27:21 +0000155 if (options.banner == NULL)
Darren Tucker4230a5d2008-07-02 22:56:09 +1000156 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{
markus@openbsd.org5f4082d2017-05-30 14:18:15 +0000172 struct ssh *ssh = active_state; /* XXX */
173 ssh->authctxt = authctxt; /* XXX move to caller */
markus@openbsd.orgeb272ea2017-05-30 14:29:59 +0000174 ssh_dispatch_init(ssh, &dispatch_protocol_error);
175 ssh_dispatch_set(ssh, SSH2_MSG_SERVICE_REQUEST, &input_service_request);
markus@openbsd.org92e9fe62017-05-31 07:00:13 +0000176 ssh_dispatch_run_fatal(ssh, DISPATCH_BLOCK, &authctxt->success);
markus@openbsd.org5f4082d2017-05-30 14:18:15 +0000177 ssh->authctxt = NULL;
Damien Millereba71ba2000-04-29 23:57:08 +1000178}
179
Damien Miller91d4b122006-03-26 14:05:20 +1100180/*ARGSUSED*/
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +0000181static int
markus@openbsd.org2ae666a2017-05-30 14:23:52 +0000182input_service_request(int type, u_int32_t seq, struct ssh *ssh)
Damien Millereba71ba2000-04-29 23:57:08 +1000183{
markus@openbsd.org5f4082d2017-05-30 14:18:15 +0000184 Authctxt *authctxt = ssh->authctxt;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000185 u_int len;
Ben Lindstrom5a9d0ea2002-07-04 00:12:53 +0000186 int acceptit = 0;
Damien Millerda108ec2010-08-31 22:36:39 +1000187 char *service = packet_get_cstring(&len);
Damien Miller48b03fc2002-01-22 23:11:40 +1100188 packet_check_eom();
Damien Millereba71ba2000-04-29 23:57:08 +1000189
Damien Miller874d77b2000-10-14 16:23:11 +1100190 if (authctxt == NULL)
191 fatal("input_service_request: no authctxt");
192
Damien Millereba71ba2000-04-29 23:57:08 +1000193 if (strcmp(service, "ssh-userauth") == 0) {
Damien Miller874d77b2000-10-14 16:23:11 +1100194 if (!authctxt->success) {
Ben Lindstrom5a9d0ea2002-07-04 00:12:53 +0000195 acceptit = 1;
Damien Millereba71ba2000-04-29 23:57:08 +1000196 /* now we can handle user-auth requests */
markus@openbsd.orgeb272ea2017-05-30 14:29:59 +0000197 ssh_dispatch_set(ssh, SSH2_MSG_USERAUTH_REQUEST, &input_userauth_request);
Damien Millereba71ba2000-04-29 23:57:08 +1000198 }
199 }
200 /* XXX all other service requests are denied */
201
Ben Lindstrom5a9d0ea2002-07-04 00:12:53 +0000202 if (acceptit) {
Damien Millereba71ba2000-04-29 23:57:08 +1000203 packet_start(SSH2_MSG_SERVICE_ACCEPT);
204 packet_put_cstring(service);
205 packet_send();
206 packet_write_wait();
207 } else {
208 debug("bad service request %s", service);
209 packet_disconnect("bad service request %s", service);
210 }
Darren Tuckera627d422013-06-02 07:31:17 +1000211 free(service);
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +0000212 return 0;
Damien Millereba71ba2000-04-29 23:57:08 +1000213}
214
dtucker@openbsd.orge9d910b2018-04-13 03:57:26 +0000215#define MIN_FAIL_DELAY_SECONDS 0.005
216static double
217user_specific_delay(const char *user)
218{
219 char b[512];
220 size_t len = ssh_digest_bytes(SSH_DIGEST_SHA512);
221 u_char *hash = xmalloc(len);
222 double delay;
223
dtucker@openbsd.orgfdba5032018-05-11 03:22:55 +0000224 (void)snprintf(b, sizeof b, "%llu%s",
225 (unsigned long long)options.timing_secret, user);
dtucker@openbsd.orge9d910b2018-04-13 03:57:26 +0000226 if (ssh_digest_memory(SSH_DIGEST_SHA512, b, strlen(b), hash, len) != 0)
227 fatal("%s: ssh_digest_memory", __func__);
228 /* 0-4.2 ms of delay */
229 delay = (double)PEEK_U32(hash) / 1000 / 1000 / 1000 / 1000;
230 freezero(hash, len);
231 debug3("%s: user specific delay %0.3lfms", __func__, delay/1000);
232 return MIN_FAIL_DELAY_SECONDS + delay;
233}
234
235static void
236ensure_minimum_time_since(double start, double seconds)
237{
238 struct timespec ts;
239 double elapsed = monotime_double() - start, req = seconds, remain;
240
241 /* if we've already passed the requested time, scale up */
242 while ((remain = seconds - elapsed) < 0.0)
243 seconds *= 2;
244
245 ts.tv_sec = remain;
246 ts.tv_nsec = (remain - ts.tv_sec) * 1000000000;
247 debug3("%s: elapsed %0.3lfms, delaying %0.3lfms (requested %0.3lfms)",
248 __func__, elapsed*1000, remain*1000, req*1000);
249 nanosleep(&ts, NULL);
250}
251
Damien Miller91d4b122006-03-26 14:05:20 +1100252/*ARGSUSED*/
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +0000253static int
markus@openbsd.org2ae666a2017-05-30 14:23:52 +0000254input_userauth_request(int type, u_int32_t seq, struct ssh *ssh)
Damien Millereba71ba2000-04-29 23:57:08 +1000255{
markus@openbsd.org5f4082d2017-05-30 14:18:15 +0000256 Authctxt *authctxt = ssh->authctxt;
Damien Miller874d77b2000-10-14 16:23:11 +1100257 Authmethod *m = NULL;
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000258 char *user, *service, *method, *style = NULL;
Damien Millereba71ba2000-04-29 23:57:08 +1000259 int authenticated = 0;
dtucker@openbsd.orge9d910b2018-04-13 03:57:26 +0000260 double tstart = monotime_double();
Damien Millereba71ba2000-04-29 23:57:08 +1000261
Damien Miller874d77b2000-10-14 16:23:11 +1100262 if (authctxt == NULL)
263 fatal("input_userauth_request: no authctxt");
Damien Millereba71ba2000-04-29 23:57:08 +1000264
Damien Millerda108ec2010-08-31 22:36:39 +1000265 user = packet_get_cstring(NULL);
266 service = packet_get_cstring(NULL);
267 method = packet_get_cstring(NULL);
Damien Miller874d77b2000-10-14 16:23:11 +1100268 debug("userauth-request for user %s service %s method %s", user, service, method);
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000269 debug("attempt %d failures %d", authctxt->attempt, authctxt->failures);
Damien Miller874d77b2000-10-14 16:23:11 +1100270
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000271 if ((style = strchr(user, ':')) != NULL)
272 *style++ = 0;
273
Kevin Stevesef4eea92001-02-05 12:42:17 +0000274 if (authctxt->attempt++ == 0) {
Damien Miller3a5b0232002-03-13 13:19:42 +1100275 /* setup auth context */
Kevin Steves205cc1e2002-03-22 20:43:05 +0000276 authctxt->pw = PRIVSEP(getpwnamallow(user));
Darren Tuckerdbf7a742004-03-08 23:04:06 +1100277 authctxt->user = xstrdup(user);
Kevin Steves205cc1e2002-03-22 20:43:05 +0000278 if (authctxt->pw && strcmp(service, "ssh-connection")==0) {
Damien Miller874d77b2000-10-14 16:23:11 +1100279 authctxt->valid = 1;
djm@openbsd.orgf1a19342017-02-03 23:05:57 +0000280 debug2("%s: setting up authctxt for %s",
281 __func__, user);
Damien Miller874d77b2000-10-14 16:23:11 +1100282 } else {
djm@openbsd.orgf1a19342017-02-03 23:05:57 +0000283 /* Invalid user, fake password information */
Damien Miller856f0be2003-09-03 07:32:45 +1000284 authctxt->pw = fakepw();
Darren Tucker2e0cf0d2005-02-08 21:52:47 +1100285#ifdef SSH_AUDIT_EVENTS
286 PRIVSEP(audit_event(SSH_INVALID_USER));
Darren Tucker269a1ea2005-02-03 00:20:53 +1100287#endif
Damien Miller874d77b2000-10-14 16:23:11 +1100288 }
Darren Tuckerd3eff2b2005-09-24 12:43:51 +1000289#ifdef USE_PAM
290 if (options.use_pam)
291 PRIVSEP(start_pam(authctxt));
292#endif
djm@openbsd.orgf1a19342017-02-03 23:05:57 +0000293 ssh_packet_set_log_preamble(ssh, "%suser %s",
294 authctxt->valid ? "authenticating " : "invalid ", user);
Damien Miller30d1f842004-07-21 20:48:53 +1000295 setproctitle("%s%s", authctxt->valid ? user : "unknown",
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000296 use_privsep ? " [net]" : "");
Damien Miller874d77b2000-10-14 16:23:11 +1100297 authctxt->service = xstrdup(service);
Ben Lindstrom9d0c0662001-06-09 01:40:00 +0000298 authctxt->style = style ? xstrdup(style) : NULL;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000299 if (use_privsep)
300 mm_inform_authserv(service, style);
Darren Tucker4230a5d2008-07-02 22:56:09 +1000301 userauth_banner();
Damien Millera6e3f012012-11-04 23:21:40 +1100302 if (auth2_setup_methods_lists(authctxt) != 0)
303 packet_disconnect("no authentication methods enabled");
Ben Lindstrom9d0c0662001-06-09 01:40:00 +0000304 } else if (strcmp(user, authctxt->user) != 0 ||
305 strcmp(service, authctxt->service) != 0) {
306 packet_disconnect("Change of username or service not allowed: "
307 "(%s,%s) -> (%s,%s)",
308 authctxt->user, authctxt->service, user, service);
Damien Millereba71ba2000-04-29 23:57:08 +1000309 }
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000310 /* reset state */
markus@openbsd.orgeb272ea2017-05-30 14:29:59 +0000311 auth2_challenge_stop(ssh);
Darren Tucker0efd1552003-08-26 11:49:55 +1000312
313#ifdef GSSAPI
Damien Miller01ed2272008-11-05 16:20:46 +1100314 /* XXX move to auth2_gssapi_stop() */
markus@openbsd.orgeb272ea2017-05-30 14:29:59 +0000315 ssh_dispatch_set(ssh, SSH2_MSG_USERAUTH_GSSAPI_TOKEN, NULL);
316 ssh_dispatch_set(ssh, SSH2_MSG_USERAUTH_GSSAPI_EXCHANGE_COMPLETE, NULL);
Darren Tucker0efd1552003-08-26 11:49:55 +1000317#endif
318
djm@openbsd.org8f574952017-06-24 06:34:38 +0000319 auth2_authctxt_reset_info(authctxt);
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000320 authctxt->postponed = 0;
Damien Miller3fcdfd52011-05-05 14:04:11 +1000321 authctxt->server_caused_failure = 0;
Damien Millerb70b61f2000-09-16 16:25:12 +1100322
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000323 /* try to authenticate user */
Damien Millera6e3f012012-11-04 23:21:40 +1100324 m = authmethod_lookup(authctxt, method);
Darren Tucker4230a5d2008-07-02 22:56:09 +1000325 if (m != NULL && authctxt->failures < options.max_authtries) {
Damien Miller874d77b2000-10-14 16:23:11 +1100326 debug2("input_userauth_request: try method %s", method);
markus@openbsd.orgeb272ea2017-05-30 14:29:59 +0000327 authenticated = m->userauth(ssh);
Damien Miller874d77b2000-10-14 16:23:11 +1100328 }
dtucker@openbsd.orge9d910b2018-04-13 03:57:26 +0000329 if (!authctxt->authenticated)
330 ensure_minimum_time_since(tstart,
331 user_specific_delay(authctxt->user));
markus@openbsd.orgeb272ea2017-05-30 14:29:59 +0000332 userauth_finish(ssh, authenticated, method, NULL);
Damien Miller5d57e502001-03-30 10:48:31 +1000333
Darren Tuckera627d422013-06-02 07:31:17 +1000334 free(service);
335 free(user);
336 free(method);
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +0000337 return 0;
Damien Miller5d57e502001-03-30 10:48:31 +1000338}
339
340void
markus@openbsd.orgeb272ea2017-05-30 14:29:59 +0000341userauth_finish(struct ssh *ssh, int authenticated, const char *method,
Damien Miller15b05cf2012-12-03 09:53:20 +1100342 const char *submethod)
Damien Miller5d57e502001-03-30 10:48:31 +1000343{
markus@openbsd.orgeb272ea2017-05-30 14:29:59 +0000344 Authctxt *authctxt = ssh->authctxt;
Ben Lindstromcd4349f2001-06-09 00:23:17 +0000345 char *methods;
Damien Millera6e3f012012-11-04 23:21:40 +1100346 int partial = 0;
Ben Lindstromcd4349f2001-06-09 00:23:17 +0000347
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000348 if (!authctxt->valid && authenticated)
349 fatal("INTERNAL ERROR: authenticated invalid user %s",
350 authctxt->user);
Damien Miller15b05cf2012-12-03 09:53:20 +1100351 if (authenticated && authctxt->postponed)
352 fatal("INTERNAL ERROR: authenticated and postponed");
Damien Millerb70b61f2000-09-16 16:25:12 +1100353
Damien Miller874d77b2000-10-14 16:23:11 +1100354 /* Special handling for root */
Damien Miller556f9312003-02-24 11:59:26 +1100355 if (authenticated && authctxt->pw->pw_uid == 0 &&
djm@openbsd.org7c856852018-03-03 03:15:51 +0000356 !auth_root_allowed(ssh, method)) {
Damien Millereba71ba2000-04-29 23:57:08 +1000357 authenticated = 0;
Darren Tucker2e0cf0d2005-02-08 21:52:47 +1100358#ifdef SSH_AUDIT_EVENTS
359 PRIVSEP(audit_event(SSH_LOGIN_ROOT_DENIED));
Darren Tucker269a1ea2005-02-03 00:20:53 +1100360#endif
361 }
Damien Millereba71ba2000-04-29 23:57:08 +1000362
Damien Miller15b05cf2012-12-03 09:53:20 +1100363 if (authenticated && options.num_auth_methods != 0) {
Damien Miller91a55f22013-04-23 15:18:10 +1000364 if (!auth2_update_methods_lists(authctxt, method, submethod)) {
Damien Miller15b05cf2012-12-03 09:53:20 +1100365 authenticated = 0;
366 partial = 1;
367 }
368 }
369
370 /* Log before sending the reply */
Darren Tucker0acca372013-06-02 07:41:51 +1000371 auth_log(authctxt, authenticated, partial, method, submethod);
Damien Miller15b05cf2012-12-03 09:53:20 +1100372
djm@openbsd.org8f574952017-06-24 06:34:38 +0000373 /* Update information exposed to session */
374 if (authenticated || partial)
375 auth2_update_session_info(authctxt, method, submethod);
376
Damien Miller15b05cf2012-12-03 09:53:20 +1100377 if (authctxt->postponed)
378 return;
379
Damien Miller1f499fd2003-08-25 13:08:49 +1000380#ifdef USE_PAM
Darren Tucker77fc29e2004-09-11 23:07:03 +1000381 if (options.use_pam && authenticated) {
Damien Miller120a1ec2018-07-10 19:39:52 +1000382 int r;
383
Darren Tucker77fc29e2004-09-11 23:07:03 +1000384 if (!PRIVSEP(do_pam_account())) {
Darren Tucker77fc29e2004-09-11 23:07:03 +1000385 /* if PAM returned a message, send it to the user */
Damien Miller120a1ec2018-07-10 19:39:52 +1000386 if (sshbuf_len(loginmsg) > 0) {
387 if ((r = sshbuf_put(loginmsg, "\0", 1)) != 0)
388 fatal("%s: buffer error: %s",
389 __func__, ssh_err(r));
390 userauth_send_banner(sshbuf_ptr(loginmsg));
Darren Tuckerc1386672004-12-03 14:33:47 +1100391 packet_write_wait();
Darren Tucker77fc29e2004-09-11 23:07:03 +1000392 }
Darren Tuckerc1386672004-12-03 14:33:47 +1100393 fatal("Access denied for user %s by PAM account "
Damien Millerb6f72f52005-07-17 17:26:43 +1000394 "configuration", authctxt->user);
Darren Tucker77fc29e2004-09-11 23:07:03 +1000395 }
396 }
Damien Miller1f499fd2003-08-25 13:08:49 +1000397#endif
398
Ben Lindstromcd4349f2001-06-09 00:23:17 +0000399 if (authenticated == 1) {
400 /* turn off userauth */
markus@openbsd.orgeb272ea2017-05-30 14:29:59 +0000401 ssh_dispatch_set(ssh, SSH2_MSG_USERAUTH_REQUEST, &dispatch_protocol_ignore);
Ben Lindstromcd4349f2001-06-09 00:23:17 +0000402 packet_start(SSH2_MSG_USERAUTH_SUCCESS);
403 packet_send();
404 packet_write_wait();
405 /* now we can break out */
406 authctxt->success = 1;
djm@openbsd.orgf1a19342017-02-03 23:05:57 +0000407 ssh_packet_set_log_preamble(ssh, "user %s", authctxt->user);
Ben Lindstromcd4349f2001-06-09 00:23:17 +0000408 } else {
Damien Miller0b4d48b2008-07-05 09:44:53 +1000409 /* Allow initial try of "none" auth without failure penalty */
djm@openbsd.org058f8392014-12-18 23:58:04 +0000410 if (!partial && !authctxt->server_caused_failure &&
Damien Miller3fcdfd52011-05-05 14:04:11 +1000411 (authctxt->attempt > 1 || strcmp(method, "none") != 0))
Damien Miller0b4d48b2008-07-05 09:44:53 +1000412 authctxt->failures++;
413 if (authctxt->failures >= options.max_authtries) {
Darren Tucker2e0cf0d2005-02-08 21:52:47 +1100414#ifdef SSH_AUDIT_EVENTS
415 PRIVSEP(audit_event(SSH_LOGIN_EXCEED_MAXTRIES));
Darren Tucker269a1ea2005-02-03 00:20:53 +1100416#endif
Damien Miller686feb52014-07-03 21:29:38 +1000417 auth_maxtries_exceeded(authctxt);
Darren Tucker269a1ea2005-02-03 00:20:53 +1100418 }
Damien Millera6e3f012012-11-04 23:21:40 +1100419 methods = authmethods_get(authctxt);
420 debug3("%s: failure partial=%d next methods=\"%s\"", __func__,
421 partial, methods);
Ben Lindstromcd4349f2001-06-09 00:23:17 +0000422 packet_start(SSH2_MSG_USERAUTH_FAILURE);
423 packet_put_cstring(methods);
Damien Millera6e3f012012-11-04 23:21:40 +1100424 packet_put_char(partial);
Ben Lindstromcd4349f2001-06-09 00:23:17 +0000425 packet_send();
426 packet_write_wait();
Darren Tuckera627d422013-06-02 07:31:17 +1000427 free(methods);
Ben Lindstromcd4349f2001-06-09 00:23:17 +0000428 }
Damien Miller874d77b2000-10-14 16:23:11 +1100429}
430
Damien Millera6e3f012012-11-04 23:21:40 +1100431/*
432 * Checks whether method is allowed by at least one AuthenticationMethods
433 * methods list. Returns 1 if allowed, or no methods lists configured.
434 * 0 otherwise.
435 */
Damien Miller91a55f22013-04-23 15:18:10 +1000436int
437auth2_method_allowed(Authctxt *authctxt, const char *method,
438 const char *submethod)
Damien Millera6e3f012012-11-04 23:21:40 +1100439{
440 u_int i;
441
442 /*
443 * NB. authctxt->num_auth_methods might be zero as a result of
444 * auth2_setup_methods_lists(), so check the configuration.
445 */
446 if (options.num_auth_methods == 0)
447 return 1;
448 for (i = 0; i < authctxt->num_auth_methods; i++) {
Damien Miller91a55f22013-04-23 15:18:10 +1000449 if (list_starts_with(authctxt->auth_methods[i], method,
450 submethod) != MATCH_NONE)
Damien Millera6e3f012012-11-04 23:21:40 +1100451 return 1;
452 }
453 return 0;
454}
455
Ben Lindstrom79073822001-07-04 03:42:30 +0000456static char *
Damien Millera6e3f012012-11-04 23:21:40 +1100457authmethods_get(Authctxt *authctxt)
Damien Miller874d77b2000-10-14 16:23:11 +1100458{
markus@openbsd.orgc7d39ac2018-07-09 21:35:50 +0000459 struct sshbuf *b;
Damien Miller874d77b2000-10-14 16:23:11 +1100460 char *list;
markus@openbsd.orgc7d39ac2018-07-09 21:35:50 +0000461 int i, r;
Damien Miller874d77b2000-10-14 16:23:11 +1100462
markus@openbsd.orgc7d39ac2018-07-09 21:35:50 +0000463 if ((b = sshbuf_new()) == NULL)
464 fatal("%s: sshbuf_new failed", __func__);
Ben Lindstrom511bb242002-06-06 20:52:37 +0000465 for (i = 0; authmethods[i] != NULL; i++) {
466 if (strcmp(authmethods[i]->name, "none") == 0)
Damien Miller874d77b2000-10-14 16:23:11 +1100467 continue;
Damien Millera6e3f012012-11-04 23:21:40 +1100468 if (authmethods[i]->enabled == NULL ||
469 *(authmethods[i]->enabled) == 0)
470 continue;
Damien Miller91a55f22013-04-23 15:18:10 +1000471 if (!auth2_method_allowed(authctxt, authmethods[i]->name,
472 NULL))
Damien Millera6e3f012012-11-04 23:21:40 +1100473 continue;
markus@openbsd.orgc7d39ac2018-07-09 21:35:50 +0000474 if ((r = sshbuf_putf(b, "%s%s", sshbuf_len(b) ? "," : "",
475 authmethods[i]->name)) != 0)
476 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Damien Millereba71ba2000-04-29 23:57:08 +1000477 }
markus@openbsd.orgc7d39ac2018-07-09 21:35:50 +0000478 if ((list = sshbuf_dup_string(b)) == NULL)
djm@openbsd.org1a31d022016-05-02 08:49:03 +0000479 fatal("%s: sshbuf_dup_string failed", __func__);
markus@openbsd.orgc7d39ac2018-07-09 21:35:50 +0000480 sshbuf_free(b);
Damien Miller874d77b2000-10-14 16:23:11 +1100481 return list;
482}
483
Ben Lindstrombba81212001-06-25 05:01:22 +0000484static Authmethod *
Damien Millera6e3f012012-11-04 23:21:40 +1100485authmethod_lookup(Authctxt *authctxt, const char *name)
Damien Miller874d77b2000-10-14 16:23:11 +1100486{
Ben Lindstrom511bb242002-06-06 20:52:37 +0000487 int i;
488
Damien Miller874d77b2000-10-14 16:23:11 +1100489 if (name != NULL)
Ben Lindstrom511bb242002-06-06 20:52:37 +0000490 for (i = 0; authmethods[i] != NULL; i++)
491 if (authmethods[i]->enabled != NULL &&
492 *(authmethods[i]->enabled) != 0 &&
Damien Millera6e3f012012-11-04 23:21:40 +1100493 strcmp(name, authmethods[i]->name) == 0 &&
Damien Miller91a55f22013-04-23 15:18:10 +1000494 auth2_method_allowed(authctxt,
495 authmethods[i]->name, NULL))
Ben Lindstrom511bb242002-06-06 20:52:37 +0000496 return authmethods[i];
497 debug2("Unrecognized authentication method name: %s",
498 name ? name : "NULL");
Damien Miller874d77b2000-10-14 16:23:11 +1100499 return NULL;
Damien Millereba71ba2000-04-29 23:57:08 +1000500}
Darren Tucker4230a5d2008-07-02 22:56:09 +1000501
Damien Millera6e3f012012-11-04 23:21:40 +1100502/*
503 * Check a comma-separated list of methods for validity. Is need_enable is
504 * non-zero, then also require that the methods are enabled.
505 * Returns 0 on success or -1 if the methods list is invalid.
506 */
507int
508auth2_methods_valid(const char *_methods, int need_enable)
509{
Damien Miller91a55f22013-04-23 15:18:10 +1000510 char *methods, *omethods, *method, *p;
Damien Millera6e3f012012-11-04 23:21:40 +1100511 u_int i, found;
512 int ret = -1;
513
514 if (*_methods == '\0') {
515 error("empty authentication method list");
516 return -1;
517 }
518 omethods = methods = xstrdup(_methods);
519 while ((method = strsep(&methods, ",")) != NULL) {
520 for (found = i = 0; !found && authmethods[i] != NULL; i++) {
Damien Miller91a55f22013-04-23 15:18:10 +1000521 if ((p = strchr(method, ':')) != NULL)
522 *p = '\0';
Damien Millera6e3f012012-11-04 23:21:40 +1100523 if (strcmp(method, authmethods[i]->name) != 0)
524 continue;
525 if (need_enable) {
526 if (authmethods[i]->enabled == NULL ||
527 *(authmethods[i]->enabled) == 0) {
528 error("Disabled method \"%s\" in "
529 "AuthenticationMethods list \"%s\"",
530 method, _methods);
531 goto out;
532 }
533 }
534 found = 1;
535 break;
536 }
537 if (!found) {
538 error("Unknown authentication method \"%s\" in list",
539 method);
540 goto out;
541 }
542 }
543 ret = 0;
544 out:
545 free(omethods);
546 return ret;
547}
548
549/*
550 * Prune the AuthenticationMethods supplied in the configuration, removing
551 * any methods lists that include disabled methods. Note that this might
552 * leave authctxt->num_auth_methods == 0, even when multiple required auth
553 * has been requested. For this reason, all tests for whether multiple is
554 * enabled should consult options.num_auth_methods directly.
555 */
556int
557auth2_setup_methods_lists(Authctxt *authctxt)
558{
559 u_int i;
560
561 if (options.num_auth_methods == 0)
562 return 0;
563 debug3("%s: checking methods", __func__);
564 authctxt->auth_methods = xcalloc(options.num_auth_methods,
565 sizeof(*authctxt->auth_methods));
566 authctxt->num_auth_methods = 0;
567 for (i = 0; i < options.num_auth_methods; i++) {
568 if (auth2_methods_valid(options.auth_methods[i], 1) != 0) {
569 logit("Authentication methods list \"%s\" contains "
570 "disabled method, skipping",
571 options.auth_methods[i]);
572 continue;
573 }
574 debug("authentication methods list %d: %s",
575 authctxt->num_auth_methods, options.auth_methods[i]);
576 authctxt->auth_methods[authctxt->num_auth_methods++] =
577 xstrdup(options.auth_methods[i]);
578 }
579 if (authctxt->num_auth_methods == 0) {
580 error("No AuthenticationMethods left after eliminating "
581 "disabled methods");
582 return -1;
583 }
584 return 0;
585}
586
587static int
Damien Miller91a55f22013-04-23 15:18:10 +1000588list_starts_with(const char *methods, const char *method,
589 const char *submethod)
Damien Millera6e3f012012-11-04 23:21:40 +1100590{
591 size_t l = strlen(method);
Damien Miller91a55f22013-04-23 15:18:10 +1000592 int match;
593 const char *p;
Damien Millera6e3f012012-11-04 23:21:40 +1100594
595 if (strncmp(methods, method, l) != 0)
Damien Miller91a55f22013-04-23 15:18:10 +1000596 return MATCH_NONE;
597 p = methods + l;
598 match = MATCH_METHOD;
599 if (*p == ':') {
600 if (!submethod)
601 return MATCH_PARTIAL;
602 l = strlen(submethod);
603 p += 1;
604 if (strncmp(submethod, p, l))
605 return MATCH_NONE;
606 p += l;
607 match = MATCH_BOTH;
608 }
609 if (*p != ',' && *p != '\0')
610 return MATCH_NONE;
611 return match;
Damien Millera6e3f012012-11-04 23:21:40 +1100612}
613
614/*
615 * Remove method from the start of a comma-separated list of methods.
616 * Returns 0 if the list of methods did not start with that method or 1
617 * if it did.
618 */
619static int
Damien Miller91a55f22013-04-23 15:18:10 +1000620remove_method(char **methods, const char *method, const char *submethod)
Damien Millera6e3f012012-11-04 23:21:40 +1100621{
Damien Miller91a55f22013-04-23 15:18:10 +1000622 char *omethods = *methods, *p;
Damien Millera6e3f012012-11-04 23:21:40 +1100623 size_t l = strlen(method);
Damien Miller91a55f22013-04-23 15:18:10 +1000624 int match;
Damien Millera6e3f012012-11-04 23:21:40 +1100625
Damien Miller91a55f22013-04-23 15:18:10 +1000626 match = list_starts_with(omethods, method, submethod);
627 if (match != MATCH_METHOD && match != MATCH_BOTH)
Damien Millera6e3f012012-11-04 23:21:40 +1100628 return 0;
Damien Miller91a55f22013-04-23 15:18:10 +1000629 p = omethods + l;
630 if (submethod && match == MATCH_BOTH)
631 p += 1 + strlen(submethod); /* include colon */
632 if (*p == ',')
633 p++;
634 *methods = xstrdup(p);
Damien Millera6e3f012012-11-04 23:21:40 +1100635 free(omethods);
636 return 1;
637}
638
639/*
640 * Called after successful authentication. Will remove the successful method
641 * from the start of each list in which it occurs. If it was the last method
642 * in any list, then authentication is deemed successful.
643 * Returns 1 if the method completed any authentication list or 0 otherwise.
644 */
645int
Damien Miller91a55f22013-04-23 15:18:10 +1000646auth2_update_methods_lists(Authctxt *authctxt, const char *method,
647 const char *submethod)
Damien Millera6e3f012012-11-04 23:21:40 +1100648{
649 u_int i, found = 0;
650
651 debug3("%s: updating methods list after \"%s\"", __func__, method);
652 for (i = 0; i < authctxt->num_auth_methods; i++) {
Damien Miller91a55f22013-04-23 15:18:10 +1000653 if (!remove_method(&(authctxt->auth_methods[i]), method,
654 submethod))
Damien Millera6e3f012012-11-04 23:21:40 +1100655 continue;
656 found = 1;
657 if (*authctxt->auth_methods[i] == '\0') {
658 debug2("authentication methods list %d complete", i);
659 return 1;
660 }
661 debug3("authentication methods list %d remaining: \"%s\"",
662 i, authctxt->auth_methods[i]);
663 }
664 /* This should not happen, but would be bad if it did */
665 if (!found)
666 fatal("%s: method not in AuthenticationMethods", __func__);
667 return 0;
668}
669
djm@openbsd.org8f574952017-06-24 06:34:38 +0000670/* Reset method-specific information */
671void auth2_authctxt_reset_info(Authctxt *authctxt)
672{
673 sshkey_free(authctxt->auth_method_key);
674 free(authctxt->auth_method_info);
675 authctxt->auth_method_key = NULL;
676 authctxt->auth_method_info = NULL;
677}
678
679/* Record auth method-specific information for logs */
680void
681auth2_record_info(Authctxt *authctxt, const char *fmt, ...)
682{
683 va_list ap;
684 int i;
685
686 free(authctxt->auth_method_info);
687 authctxt->auth_method_info = NULL;
688
689 va_start(ap, fmt);
690 i = vasprintf(&authctxt->auth_method_info, fmt, ap);
691 va_end(ap);
692
693 if (i < 0 || authctxt->auth_method_info == NULL)
694 fatal("%s: vasprintf failed", __func__);
695}
696
697/*
698 * Records a public key used in authentication. This is used for logging
699 * and to ensure that the same key is not subsequently accepted again for
700 * multiple authentication.
701 */
702void
703auth2_record_key(Authctxt *authctxt, int authenticated,
704 const struct sshkey *key)
705{
706 struct sshkey **tmp, *dup;
707 int r;
708
djm@openbsd.org482d23b2018-09-13 02:08:33 +0000709 if ((r = sshkey_from_private(key, &dup)) != 0)
djm@openbsd.org8f574952017-06-24 06:34:38 +0000710 fatal("%s: copy key: %s", __func__, ssh_err(r));
711 sshkey_free(authctxt->auth_method_key);
712 authctxt->auth_method_key = dup;
713
714 if (!authenticated)
715 return;
716
717 /* If authenticated, make sure we don't accept this key again */
djm@openbsd.org482d23b2018-09-13 02:08:33 +0000718 if ((r = sshkey_from_private(key, &dup)) != 0)
djm@openbsd.org8f574952017-06-24 06:34:38 +0000719 fatal("%s: copy key: %s", __func__, ssh_err(r));
720 if (authctxt->nprev_keys >= INT_MAX ||
721 (tmp = recallocarray(authctxt->prev_keys, authctxt->nprev_keys,
722 authctxt->nprev_keys + 1, sizeof(*authctxt->prev_keys))) == NULL)
723 fatal("%s: reallocarray failed", __func__);
724 authctxt->prev_keys = tmp;
725 authctxt->prev_keys[authctxt->nprev_keys] = dup;
726 authctxt->nprev_keys++;
727
728}
729
730/* Checks whether a key has already been previously used for authentication */
731int
732auth2_key_already_used(Authctxt *authctxt, const struct sshkey *key)
733{
734 u_int i;
735 char *fp;
736
737 for (i = 0; i < authctxt->nprev_keys; i++) {
738 if (sshkey_equal_public(key, authctxt->prev_keys[i])) {
739 fp = sshkey_fingerprint(authctxt->prev_keys[i],
740 options.fingerprint_hash, SSH_FP_DEFAULT);
741 debug3("%s: key already used: %s %s", __func__,
742 sshkey_type(authctxt->prev_keys[i]),
743 fp == NULL ? "UNKNOWN" : fp);
744 free(fp);
745 return 1;
746 }
747 }
748 return 0;
749}
750
751/*
752 * Updates authctxt->session_info with details of authentication. Should be
753 * whenever an authentication method succeeds.
754 */
755void
756auth2_update_session_info(Authctxt *authctxt, const char *method,
757 const char *submethod)
758{
759 int r;
760
761 if (authctxt->session_info == NULL) {
762 if ((authctxt->session_info = sshbuf_new()) == NULL)
763 fatal("%s: sshbuf_new", __func__);
764 }
765
766 /* Append method[/submethod] */
767 if ((r = sshbuf_putf(authctxt->session_info, "%s%s%s",
768 method, submethod == NULL ? "" : "/",
769 submethod == NULL ? "" : submethod)) != 0)
770 fatal("%s: append method: %s", __func__, ssh_err(r));
771
772 /* Append key if present */
773 if (authctxt->auth_method_key != NULL) {
774 if ((r = sshbuf_put_u8(authctxt->session_info, ' ')) != 0 ||
775 (r = sshkey_format_text(authctxt->auth_method_key,
776 authctxt->session_info)) != 0)
777 fatal("%s: append key: %s", __func__, ssh_err(r));
778 }
779
780 if (authctxt->auth_method_info != NULL) {
781 /* Ensure no ambiguity here */
782 if (strchr(authctxt->auth_method_info, '\n') != NULL)
783 fatal("%s: auth_method_info contains \\n", __func__);
784 if ((r = sshbuf_put_u8(authctxt->session_info, ' ')) != 0 ||
785 (r = sshbuf_putf(authctxt->session_info, "%s",
786 authctxt->auth_method_info)) != 0) {
787 fatal("%s: append method info: %s",
788 __func__, ssh_err(r));
789 }
790 }
791 if ((r = sshbuf_put_u8(authctxt->session_info, '\n')) != 0)
792 fatal("%s: append: %s", __func__, ssh_err(r));
793}
Damien Millera6e3f012012-11-04 23:21:40 +1100794