blob: 4415c11ec5a5702828ef4883051a19b1c720a1cd [file] [log] [blame]
djm@openbsd.org943d0962019-01-17 04:20:53 +00001/* $OpenBSD: auth2.c,v 1.151 2019/01/17 04:20:53 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>
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>
djm@openbsd.org943d0962019-01-17 04:20:53 +000038#include <time.h>
Damien Miller9f2abc42006-07-10 20:53:08 +100039
Damien Miller0b4d48b2008-07-05 09:44:53 +100040#include "atomicio.h"
Darren Tucker43e7a352009-06-21 19:50:08 +100041#include "xmalloc.h"
Damien Millerd7834352006-08-05 12:39:39 +100042#include "ssh2.h"
Damien Millereba71ba2000-04-29 23:57:08 +100043#include "packet.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000044#include "log.h"
markus@openbsd.orgc7d39ac2018-07-09 21:35:50 +000045#include "sshbuf.h"
Damien Miller7acefbb2014-07-18 14:11:24 +100046#include "misc.h"
Damien Millereba71ba2000-04-29 23:57:08 +100047#include "servconf.h"
48#include "compat.h"
markus@openbsd.org5467fbc2018-07-11 18:53:29 +000049#include "sshkey.h"
Damien Millerd7834352006-08-05 12:39:39 +100050#include "hostfile.h"
Damien Millereba71ba2000-04-29 23:57:08 +100051#include "auth.h"
Damien Millereba71ba2000-04-29 23:57:08 +100052#include "dispatch.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000053#include "pathnames.h"
Damien Miller120a1ec2018-07-10 19:39:52 +100054#include "sshbuf.h"
55#include "ssherr.h"
Damien Millereba71ba2000-04-29 23:57:08 +100056
Darren Tucker0efd1552003-08-26 11:49:55 +100057#ifdef GSSAPI
58#include "ssh-gss.h"
59#endif
Damien Millerd7834352006-08-05 12:39:39 +100060#include "monitor_wrap.h"
djm@openbsd.org8f574952017-06-24 06:34:38 +000061#include "ssherr.h"
dtucker@openbsd.orge9d910b2018-04-13 03:57:26 +000062#include "digest.h"
Darren Tucker0efd1552003-08-26 11:49:55 +100063
Damien Millereba71ba2000-04-29 23:57:08 +100064/* import */
65extern ServerOptions options;
Ben Lindstrom46c16222000-12-22 01:43:59 +000066extern u_char *session_id2;
Darren Tucker502d3842003-06-28 12:38:01 +100067extern u_int session_id2_len;
Damien Miller120a1ec2018-07-10 19:39:52 +100068extern struct sshbuf *loginmsg;
Damien Millereba71ba2000-04-29 23:57:08 +100069
Ben Lindstrom511bb242002-06-06 20:52:37 +000070/* methods */
71
72extern Authmethod method_none;
73extern Authmethod method_pubkey;
74extern Authmethod method_passwd;
75extern Authmethod method_kbdint;
76extern Authmethod method_hostbased;
Darren Tucker0efd1552003-08-26 11:49:55 +100077#ifdef GSSAPI
78extern Authmethod method_gssapi;
79#endif
Ben Lindstrom511bb242002-06-06 20:52:37 +000080
81Authmethod *authmethods[] = {
82 &method_none,
83 &method_pubkey,
Darren Tucker0efd1552003-08-26 11:49:55 +100084#ifdef GSSAPI
85 &method_gssapi,
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
markus@openbsd.org2ae666a2017-05-30 14:23:52 +000095static int input_service_request(int, u_int32_t, struct ssh *);
96static int input_userauth_request(int, u_int32_t, struct ssh *);
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{
Darren Tucker4230a5d2008-07-02 22:56:09 +1000144 packet_start(SSH2_MSG_USERAUTH_BANNER);
145 packet_put_cstring(msg);
146 packet_put_cstring(""); /* language, unused */
147 packet_send();
148 debug("%s: sent", __func__);
149}
150
151static void
152userauth_banner(void)
153{
154 char *banner = NULL;
155
djm@openbsd.org14b5c632018-01-23 05:27:21 +0000156 if (options.banner == NULL)
Darren Tucker4230a5d2008-07-02 22:56:09 +1000157 return;
158
159 if ((banner = PRIVSEP(auth2_read_banner())) == NULL)
160 goto done;
161 userauth_send_banner(banner);
162
163done:
Darren Tuckera627d422013-06-02 07:31:17 +1000164 free(banner);
Darren Tucker4230a5d2008-07-02 22:56:09 +1000165}
166
Damien Millereba71ba2000-04-29 23:57:08 +1000167/*
Damien Miller874d77b2000-10-14 16:23:11 +1100168 * loop until authctxt->success == TRUE
Damien Millereba71ba2000-04-29 23:57:08 +1000169 */
Darren Tucker3e33cec2003-10-02 16:12:36 +1000170void
171do_authentication2(Authctxt *authctxt)
Damien Millereba71ba2000-04-29 23:57:08 +1000172{
markus@openbsd.org5f4082d2017-05-30 14:18:15 +0000173 struct ssh *ssh = active_state; /* XXX */
174 ssh->authctxt = authctxt; /* XXX move to caller */
markus@openbsd.orgeb272ea2017-05-30 14:29:59 +0000175 ssh_dispatch_init(ssh, &dispatch_protocol_error);
176 ssh_dispatch_set(ssh, SSH2_MSG_SERVICE_REQUEST, &input_service_request);
markus@openbsd.org92e9fe62017-05-31 07:00:13 +0000177 ssh_dispatch_run_fatal(ssh, DISPATCH_BLOCK, &authctxt->success);
markus@openbsd.org5f4082d2017-05-30 14:18:15 +0000178 ssh->authctxt = NULL;
Damien Millereba71ba2000-04-29 23:57:08 +1000179}
180
Damien Miller91d4b122006-03-26 14:05:20 +1100181/*ARGSUSED*/
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +0000182static int
markus@openbsd.org2ae666a2017-05-30 14:23:52 +0000183input_service_request(int type, u_int32_t seq, struct ssh *ssh)
Damien Millereba71ba2000-04-29 23:57:08 +1000184{
markus@openbsd.org5f4082d2017-05-30 14:18:15 +0000185 Authctxt *authctxt = ssh->authctxt;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000186 u_int len;
Ben Lindstrom5a9d0ea2002-07-04 00:12:53 +0000187 int acceptit = 0;
Damien Millerda108ec2010-08-31 22:36:39 +1000188 char *service = packet_get_cstring(&len);
Damien Miller48b03fc2002-01-22 23:11:40 +1100189 packet_check_eom();
Damien Millereba71ba2000-04-29 23:57:08 +1000190
Damien Miller874d77b2000-10-14 16:23:11 +1100191 if (authctxt == NULL)
192 fatal("input_service_request: no authctxt");
193
Damien Millereba71ba2000-04-29 23:57:08 +1000194 if (strcmp(service, "ssh-userauth") == 0) {
Damien Miller874d77b2000-10-14 16:23:11 +1100195 if (!authctxt->success) {
Ben Lindstrom5a9d0ea2002-07-04 00:12:53 +0000196 acceptit = 1;
Damien Millereba71ba2000-04-29 23:57:08 +1000197 /* now we can handle user-auth requests */
markus@openbsd.orgeb272ea2017-05-30 14:29:59 +0000198 ssh_dispatch_set(ssh, SSH2_MSG_USERAUTH_REQUEST, &input_userauth_request);
Damien Millereba71ba2000-04-29 23:57:08 +1000199 }
200 }
201 /* XXX all other service requests are denied */
202
Ben Lindstrom5a9d0ea2002-07-04 00:12:53 +0000203 if (acceptit) {
Damien Millereba71ba2000-04-29 23:57:08 +1000204 packet_start(SSH2_MSG_SERVICE_ACCEPT);
205 packet_put_cstring(service);
206 packet_send();
207 packet_write_wait();
208 } else {
209 debug("bad service request %s", service);
210 packet_disconnect("bad service request %s", service);
211 }
Darren Tuckera627d422013-06-02 07:31:17 +1000212 free(service);
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +0000213 return 0;
Damien Millereba71ba2000-04-29 23:57:08 +1000214}
215
dtucker@openbsd.orge9d910b2018-04-13 03:57:26 +0000216#define MIN_FAIL_DELAY_SECONDS 0.005
217static double
218user_specific_delay(const char *user)
219{
220 char b[512];
221 size_t len = ssh_digest_bytes(SSH_DIGEST_SHA512);
222 u_char *hash = xmalloc(len);
223 double delay;
224
dtucker@openbsd.orgfdba5032018-05-11 03:22:55 +0000225 (void)snprintf(b, sizeof b, "%llu%s",
226 (unsigned long long)options.timing_secret, user);
dtucker@openbsd.orge9d910b2018-04-13 03:57:26 +0000227 if (ssh_digest_memory(SSH_DIGEST_SHA512, b, strlen(b), hash, len) != 0)
228 fatal("%s: ssh_digest_memory", __func__);
229 /* 0-4.2 ms of delay */
230 delay = (double)PEEK_U32(hash) / 1000 / 1000 / 1000 / 1000;
231 freezero(hash, len);
232 debug3("%s: user specific delay %0.3lfms", __func__, delay/1000);
233 return MIN_FAIL_DELAY_SECONDS + delay;
234}
235
236static void
237ensure_minimum_time_since(double start, double seconds)
238{
239 struct timespec ts;
240 double elapsed = monotime_double() - start, req = seconds, remain;
241
242 /* if we've already passed the requested time, scale up */
243 while ((remain = seconds - elapsed) < 0.0)
244 seconds *= 2;
245
246 ts.tv_sec = remain;
247 ts.tv_nsec = (remain - ts.tv_sec) * 1000000000;
248 debug3("%s: elapsed %0.3lfms, delaying %0.3lfms (requested %0.3lfms)",
249 __func__, elapsed*1000, remain*1000, req*1000);
250 nanosleep(&ts, NULL);
251}
252
Damien Miller91d4b122006-03-26 14:05:20 +1100253/*ARGSUSED*/
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +0000254static int
markus@openbsd.org2ae666a2017-05-30 14:23:52 +0000255input_userauth_request(int type, u_int32_t seq, struct ssh *ssh)
Damien Millereba71ba2000-04-29 23:57:08 +1000256{
markus@openbsd.org5f4082d2017-05-30 14:18:15 +0000257 Authctxt *authctxt = ssh->authctxt;
Damien Miller874d77b2000-10-14 16:23:11 +1100258 Authmethod *m = NULL;
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000259 char *user, *service, *method, *style = NULL;
Damien Millereba71ba2000-04-29 23:57:08 +1000260 int authenticated = 0;
dtucker@openbsd.orge9d910b2018-04-13 03:57:26 +0000261 double tstart = monotime_double();
Damien Millereba71ba2000-04-29 23:57:08 +1000262
Damien Miller874d77b2000-10-14 16:23:11 +1100263 if (authctxt == NULL)
264 fatal("input_userauth_request: no authctxt");
Damien Millereba71ba2000-04-29 23:57:08 +1000265
Damien Millerda108ec2010-08-31 22:36:39 +1000266 user = packet_get_cstring(NULL);
267 service = packet_get_cstring(NULL);
268 method = packet_get_cstring(NULL);
Damien Miller874d77b2000-10-14 16:23:11 +1100269 debug("userauth-request for user %s service %s method %s", user, service, method);
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000270 debug("attempt %d failures %d", authctxt->attempt, authctxt->failures);
Damien Miller874d77b2000-10-14 16:23:11 +1100271
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000272 if ((style = strchr(user, ':')) != NULL)
273 *style++ = 0;
274
Kevin Stevesef4eea92001-02-05 12:42:17 +0000275 if (authctxt->attempt++ == 0) {
Damien Miller3a5b0232002-03-13 13:19:42 +1100276 /* setup auth context */
Kevin Steves205cc1e2002-03-22 20:43:05 +0000277 authctxt->pw = PRIVSEP(getpwnamallow(user));
Darren Tuckerdbf7a742004-03-08 23:04:06 +1100278 authctxt->user = xstrdup(user);
Kevin Steves205cc1e2002-03-22 20:43:05 +0000279 if (authctxt->pw && strcmp(service, "ssh-connection")==0) {
Damien Miller874d77b2000-10-14 16:23:11 +1100280 authctxt->valid = 1;
djm@openbsd.orgf1a19342017-02-03 23:05:57 +0000281 debug2("%s: setting up authctxt for %s",
282 __func__, user);
Damien Miller874d77b2000-10-14 16:23:11 +1100283 } else {
djm@openbsd.orgf1a19342017-02-03 23:05:57 +0000284 /* Invalid user, fake password information */
Damien Miller856f0be2003-09-03 07:32:45 +1000285 authctxt->pw = fakepw();
Darren Tucker2e0cf0d2005-02-08 21:52:47 +1100286#ifdef SSH_AUDIT_EVENTS
287 PRIVSEP(audit_event(SSH_INVALID_USER));
Darren Tucker269a1ea2005-02-03 00:20:53 +1100288#endif
Damien Miller874d77b2000-10-14 16:23:11 +1100289 }
Darren Tuckerd3eff2b2005-09-24 12:43:51 +1000290#ifdef USE_PAM
291 if (options.use_pam)
292 PRIVSEP(start_pam(authctxt));
293#endif
djm@openbsd.orgf1a19342017-02-03 23:05:57 +0000294 ssh_packet_set_log_preamble(ssh, "%suser %s",
295 authctxt->valid ? "authenticating " : "invalid ", user);
Damien Miller30d1f842004-07-21 20:48:53 +1000296 setproctitle("%s%s", authctxt->valid ? user : "unknown",
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000297 use_privsep ? " [net]" : "");
Damien Miller874d77b2000-10-14 16:23:11 +1100298 authctxt->service = xstrdup(service);
Ben Lindstrom9d0c0662001-06-09 01:40:00 +0000299 authctxt->style = style ? xstrdup(style) : NULL;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000300 if (use_privsep)
301 mm_inform_authserv(service, style);
Darren Tucker4230a5d2008-07-02 22:56:09 +1000302 userauth_banner();
Damien Millera6e3f012012-11-04 23:21:40 +1100303 if (auth2_setup_methods_lists(authctxt) != 0)
304 packet_disconnect("no authentication methods enabled");
Ben Lindstrom9d0c0662001-06-09 01:40:00 +0000305 } else if (strcmp(user, authctxt->user) != 0 ||
306 strcmp(service, authctxt->service) != 0) {
307 packet_disconnect("Change of username or service not allowed: "
308 "(%s,%s) -> (%s,%s)",
309 authctxt->user, authctxt->service, user, service);
Damien Millereba71ba2000-04-29 23:57:08 +1000310 }
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000311 /* reset state */
markus@openbsd.orgeb272ea2017-05-30 14:29:59 +0000312 auth2_challenge_stop(ssh);
Darren Tucker0efd1552003-08-26 11:49:55 +1000313
314#ifdef GSSAPI
Damien Miller01ed2272008-11-05 16:20:46 +1100315 /* XXX move to auth2_gssapi_stop() */
markus@openbsd.orgeb272ea2017-05-30 14:29:59 +0000316 ssh_dispatch_set(ssh, SSH2_MSG_USERAUTH_GSSAPI_TOKEN, NULL);
317 ssh_dispatch_set(ssh, SSH2_MSG_USERAUTH_GSSAPI_EXCHANGE_COMPLETE, NULL);
Darren Tucker0efd1552003-08-26 11:49:55 +1000318#endif
319
djm@openbsd.org8f574952017-06-24 06:34:38 +0000320 auth2_authctxt_reset_info(authctxt);
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000321 authctxt->postponed = 0;
Damien Miller3fcdfd52011-05-05 14:04:11 +1000322 authctxt->server_caused_failure = 0;
Damien Millerb70b61f2000-09-16 16:25:12 +1100323
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000324 /* try to authenticate user */
Damien Millera6e3f012012-11-04 23:21:40 +1100325 m = authmethod_lookup(authctxt, method);
Darren Tucker4230a5d2008-07-02 22:56:09 +1000326 if (m != NULL && authctxt->failures < options.max_authtries) {
Damien Miller874d77b2000-10-14 16:23:11 +1100327 debug2("input_userauth_request: try method %s", method);
markus@openbsd.orgeb272ea2017-05-30 14:29:59 +0000328 authenticated = m->userauth(ssh);
Damien Miller874d77b2000-10-14 16:23:11 +1100329 }
dtucker@openbsd.orge9d910b2018-04-13 03:57:26 +0000330 if (!authctxt->authenticated)
331 ensure_minimum_time_since(tstart,
332 user_specific_delay(authctxt->user));
markus@openbsd.orgeb272ea2017-05-30 14:29:59 +0000333 userauth_finish(ssh, authenticated, method, NULL);
Damien Miller5d57e502001-03-30 10:48:31 +1000334
Darren Tuckera627d422013-06-02 07:31:17 +1000335 free(service);
336 free(user);
337 free(method);
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +0000338 return 0;
Damien Miller5d57e502001-03-30 10:48:31 +1000339}
340
341void
markus@openbsd.orgeb272ea2017-05-30 14:29:59 +0000342userauth_finish(struct ssh *ssh, int authenticated, const char *method,
Damien Miller15b05cf2012-12-03 09:53:20 +1100343 const char *submethod)
Damien Miller5d57e502001-03-30 10:48:31 +1000344{
markus@openbsd.orgeb272ea2017-05-30 14:29:59 +0000345 Authctxt *authctxt = ssh->authctxt;
Ben Lindstromcd4349f2001-06-09 00:23:17 +0000346 char *methods;
Damien Millera6e3f012012-11-04 23:21:40 +1100347 int partial = 0;
Ben Lindstromcd4349f2001-06-09 00:23:17 +0000348
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000349 if (!authctxt->valid && authenticated)
350 fatal("INTERNAL ERROR: authenticated invalid user %s",
351 authctxt->user);
Damien Miller15b05cf2012-12-03 09:53:20 +1100352 if (authenticated && authctxt->postponed)
353 fatal("INTERNAL ERROR: authenticated and postponed");
Damien Millerb70b61f2000-09-16 16:25:12 +1100354
Damien Miller874d77b2000-10-14 16:23:11 +1100355 /* Special handling for root */
Damien Miller556f9312003-02-24 11:59:26 +1100356 if (authenticated && authctxt->pw->pw_uid == 0 &&
djm@openbsd.org7c856852018-03-03 03:15:51 +0000357 !auth_root_allowed(ssh, method)) {
Damien Millereba71ba2000-04-29 23:57:08 +1000358 authenticated = 0;
Darren Tucker2e0cf0d2005-02-08 21:52:47 +1100359#ifdef SSH_AUDIT_EVENTS
360 PRIVSEP(audit_event(SSH_LOGIN_ROOT_DENIED));
Darren Tucker269a1ea2005-02-03 00:20:53 +1100361#endif
362 }
Damien Millereba71ba2000-04-29 23:57:08 +1000363
Damien Miller15b05cf2012-12-03 09:53:20 +1100364 if (authenticated && options.num_auth_methods != 0) {
Damien Miller91a55f22013-04-23 15:18:10 +1000365 if (!auth2_update_methods_lists(authctxt, method, submethod)) {
Damien Miller15b05cf2012-12-03 09:53:20 +1100366 authenticated = 0;
367 partial = 1;
368 }
369 }
370
371 /* Log before sending the reply */
Darren Tucker0acca372013-06-02 07:41:51 +1000372 auth_log(authctxt, authenticated, partial, method, submethod);
Damien Miller15b05cf2012-12-03 09:53:20 +1100373
djm@openbsd.org8f574952017-06-24 06:34:38 +0000374 /* Update information exposed to session */
375 if (authenticated || partial)
376 auth2_update_session_info(authctxt, method, submethod);
377
Damien Miller15b05cf2012-12-03 09:53:20 +1100378 if (authctxt->postponed)
379 return;
380
Damien Miller1f499fd2003-08-25 13:08:49 +1000381#ifdef USE_PAM
Darren Tucker77fc29e2004-09-11 23:07:03 +1000382 if (options.use_pam && authenticated) {
Damien Miller120a1ec2018-07-10 19:39:52 +1000383 int r;
384
Darren Tucker77fc29e2004-09-11 23:07:03 +1000385 if (!PRIVSEP(do_pam_account())) {
Darren Tucker77fc29e2004-09-11 23:07:03 +1000386 /* if PAM returned a message, send it to the user */
Damien Miller120a1ec2018-07-10 19:39:52 +1000387 if (sshbuf_len(loginmsg) > 0) {
388 if ((r = sshbuf_put(loginmsg, "\0", 1)) != 0)
389 fatal("%s: buffer error: %s",
390 __func__, ssh_err(r));
391 userauth_send_banner(sshbuf_ptr(loginmsg));
Darren Tuckerc1386672004-12-03 14:33:47 +1100392 packet_write_wait();
Darren Tucker77fc29e2004-09-11 23:07:03 +1000393 }
Darren Tuckerc1386672004-12-03 14:33:47 +1100394 fatal("Access denied for user %s by PAM account "
Damien Millerb6f72f52005-07-17 17:26:43 +1000395 "configuration", authctxt->user);
Darren Tucker77fc29e2004-09-11 23:07:03 +1000396 }
397 }
Damien Miller1f499fd2003-08-25 13:08:49 +1000398#endif
399
Ben Lindstromcd4349f2001-06-09 00:23:17 +0000400 if (authenticated == 1) {
401 /* turn off userauth */
markus@openbsd.orgeb272ea2017-05-30 14:29:59 +0000402 ssh_dispatch_set(ssh, SSH2_MSG_USERAUTH_REQUEST, &dispatch_protocol_ignore);
Ben Lindstromcd4349f2001-06-09 00:23:17 +0000403 packet_start(SSH2_MSG_USERAUTH_SUCCESS);
404 packet_send();
405 packet_write_wait();
406 /* now we can break out */
407 authctxt->success = 1;
djm@openbsd.orgf1a19342017-02-03 23:05:57 +0000408 ssh_packet_set_log_preamble(ssh, "user %s", authctxt->user);
Ben Lindstromcd4349f2001-06-09 00:23:17 +0000409 } else {
Damien Miller0b4d48b2008-07-05 09:44:53 +1000410 /* Allow initial try of "none" auth without failure penalty */
djm@openbsd.org058f8392014-12-18 23:58:04 +0000411 if (!partial && !authctxt->server_caused_failure &&
Damien Miller3fcdfd52011-05-05 14:04:11 +1000412 (authctxt->attempt > 1 || strcmp(method, "none") != 0))
Damien Miller0b4d48b2008-07-05 09:44:53 +1000413 authctxt->failures++;
414 if (authctxt->failures >= options.max_authtries) {
Darren Tucker2e0cf0d2005-02-08 21:52:47 +1100415#ifdef SSH_AUDIT_EVENTS
416 PRIVSEP(audit_event(SSH_LOGIN_EXCEED_MAXTRIES));
Darren Tucker269a1ea2005-02-03 00:20:53 +1100417#endif
Damien Miller686feb52014-07-03 21:29:38 +1000418 auth_maxtries_exceeded(authctxt);
Darren Tucker269a1ea2005-02-03 00:20:53 +1100419 }
Damien Millera6e3f012012-11-04 23:21:40 +1100420 methods = authmethods_get(authctxt);
421 debug3("%s: failure partial=%d next methods=\"%s\"", __func__,
422 partial, methods);
Ben Lindstromcd4349f2001-06-09 00:23:17 +0000423 packet_start(SSH2_MSG_USERAUTH_FAILURE);
424 packet_put_cstring(methods);
Damien Millera6e3f012012-11-04 23:21:40 +1100425 packet_put_char(partial);
Ben Lindstromcd4349f2001-06-09 00:23:17 +0000426 packet_send();
427 packet_write_wait();
Darren Tuckera627d422013-06-02 07:31:17 +1000428 free(methods);
Ben Lindstromcd4349f2001-06-09 00:23:17 +0000429 }
Damien Miller874d77b2000-10-14 16:23:11 +1100430}
431
Damien Millera6e3f012012-11-04 23:21:40 +1100432/*
433 * Checks whether method is allowed by at least one AuthenticationMethods
434 * methods list. Returns 1 if allowed, or no methods lists configured.
435 * 0 otherwise.
436 */
Damien Miller91a55f22013-04-23 15:18:10 +1000437int
438auth2_method_allowed(Authctxt *authctxt, const char *method,
439 const char *submethod)
Damien Millera6e3f012012-11-04 23:21:40 +1100440{
441 u_int i;
442
443 /*
444 * NB. authctxt->num_auth_methods might be zero as a result of
445 * auth2_setup_methods_lists(), so check the configuration.
446 */
447 if (options.num_auth_methods == 0)
448 return 1;
449 for (i = 0; i < authctxt->num_auth_methods; i++) {
Damien Miller91a55f22013-04-23 15:18:10 +1000450 if (list_starts_with(authctxt->auth_methods[i], method,
451 submethod) != MATCH_NONE)
Damien Millera6e3f012012-11-04 23:21:40 +1100452 return 1;
453 }
454 return 0;
455}
456
Ben Lindstrom79073822001-07-04 03:42:30 +0000457static char *
Damien Millera6e3f012012-11-04 23:21:40 +1100458authmethods_get(Authctxt *authctxt)
Damien Miller874d77b2000-10-14 16:23:11 +1100459{
markus@openbsd.orgc7d39ac2018-07-09 21:35:50 +0000460 struct sshbuf *b;
Damien Miller874d77b2000-10-14 16:23:11 +1100461 char *list;
markus@openbsd.orgc7d39ac2018-07-09 21:35:50 +0000462 int i, r;
Damien Miller874d77b2000-10-14 16:23:11 +1100463
markus@openbsd.orgc7d39ac2018-07-09 21:35:50 +0000464 if ((b = sshbuf_new()) == NULL)
465 fatal("%s: sshbuf_new failed", __func__);
Ben Lindstrom511bb242002-06-06 20:52:37 +0000466 for (i = 0; authmethods[i] != NULL; i++) {
467 if (strcmp(authmethods[i]->name, "none") == 0)
Damien Miller874d77b2000-10-14 16:23:11 +1100468 continue;
Damien Millera6e3f012012-11-04 23:21:40 +1100469 if (authmethods[i]->enabled == NULL ||
470 *(authmethods[i]->enabled) == 0)
471 continue;
Damien Miller91a55f22013-04-23 15:18:10 +1000472 if (!auth2_method_allowed(authctxt, authmethods[i]->name,
473 NULL))
Damien Millera6e3f012012-11-04 23:21:40 +1100474 continue;
markus@openbsd.orgc7d39ac2018-07-09 21:35:50 +0000475 if ((r = sshbuf_putf(b, "%s%s", sshbuf_len(b) ? "," : "",
476 authmethods[i]->name)) != 0)
477 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Damien Millereba71ba2000-04-29 23:57:08 +1000478 }
markus@openbsd.orgc7d39ac2018-07-09 21:35:50 +0000479 if ((list = sshbuf_dup_string(b)) == NULL)
djm@openbsd.org1a31d022016-05-02 08:49:03 +0000480 fatal("%s: sshbuf_dup_string failed", __func__);
markus@openbsd.orgc7d39ac2018-07-09 21:35:50 +0000481 sshbuf_free(b);
Damien Miller874d77b2000-10-14 16:23:11 +1100482 return list;
483}
484
Ben Lindstrombba81212001-06-25 05:01:22 +0000485static Authmethod *
Damien Millera6e3f012012-11-04 23:21:40 +1100486authmethod_lookup(Authctxt *authctxt, const char *name)
Damien Miller874d77b2000-10-14 16:23:11 +1100487{
Ben Lindstrom511bb242002-06-06 20:52:37 +0000488 int i;
489
Damien Miller874d77b2000-10-14 16:23:11 +1100490 if (name != NULL)
Ben Lindstrom511bb242002-06-06 20:52:37 +0000491 for (i = 0; authmethods[i] != NULL; i++)
492 if (authmethods[i]->enabled != NULL &&
493 *(authmethods[i]->enabled) != 0 &&
Damien Millera6e3f012012-11-04 23:21:40 +1100494 strcmp(name, authmethods[i]->name) == 0 &&
Damien Miller91a55f22013-04-23 15:18:10 +1000495 auth2_method_allowed(authctxt,
496 authmethods[i]->name, NULL))
Ben Lindstrom511bb242002-06-06 20:52:37 +0000497 return authmethods[i];
498 debug2("Unrecognized authentication method name: %s",
499 name ? name : "NULL");
Damien Miller874d77b2000-10-14 16:23:11 +1100500 return NULL;
Damien Millereba71ba2000-04-29 23:57:08 +1000501}
Darren Tucker4230a5d2008-07-02 22:56:09 +1000502
Damien Millera6e3f012012-11-04 23:21:40 +1100503/*
504 * Check a comma-separated list of methods for validity. Is need_enable is
505 * non-zero, then also require that the methods are enabled.
506 * Returns 0 on success or -1 if the methods list is invalid.
507 */
508int
509auth2_methods_valid(const char *_methods, int need_enable)
510{
Damien Miller91a55f22013-04-23 15:18:10 +1000511 char *methods, *omethods, *method, *p;
Damien Millera6e3f012012-11-04 23:21:40 +1100512 u_int i, found;
513 int ret = -1;
514
515 if (*_methods == '\0') {
516 error("empty authentication method list");
517 return -1;
518 }
519 omethods = methods = xstrdup(_methods);
520 while ((method = strsep(&methods, ",")) != NULL) {
521 for (found = i = 0; !found && authmethods[i] != NULL; i++) {
Damien Miller91a55f22013-04-23 15:18:10 +1000522 if ((p = strchr(method, ':')) != NULL)
523 *p = '\0';
Damien Millera6e3f012012-11-04 23:21:40 +1100524 if (strcmp(method, authmethods[i]->name) != 0)
525 continue;
526 if (need_enable) {
527 if (authmethods[i]->enabled == NULL ||
528 *(authmethods[i]->enabled) == 0) {
529 error("Disabled method \"%s\" in "
530 "AuthenticationMethods list \"%s\"",
531 method, _methods);
532 goto out;
533 }
534 }
535 found = 1;
536 break;
537 }
538 if (!found) {
539 error("Unknown authentication method \"%s\" in list",
540 method);
541 goto out;
542 }
543 }
544 ret = 0;
545 out:
546 free(omethods);
547 return ret;
548}
549
550/*
551 * Prune the AuthenticationMethods supplied in the configuration, removing
552 * any methods lists that include disabled methods. Note that this might
553 * leave authctxt->num_auth_methods == 0, even when multiple required auth
554 * has been requested. For this reason, all tests for whether multiple is
555 * enabled should consult options.num_auth_methods directly.
556 */
557int
558auth2_setup_methods_lists(Authctxt *authctxt)
559{
560 u_int i;
561
562 if (options.num_auth_methods == 0)
563 return 0;
564 debug3("%s: checking methods", __func__);
565 authctxt->auth_methods = xcalloc(options.num_auth_methods,
566 sizeof(*authctxt->auth_methods));
567 authctxt->num_auth_methods = 0;
568 for (i = 0; i < options.num_auth_methods; i++) {
569 if (auth2_methods_valid(options.auth_methods[i], 1) != 0) {
570 logit("Authentication methods list \"%s\" contains "
571 "disabled method, skipping",
572 options.auth_methods[i]);
573 continue;
574 }
575 debug("authentication methods list %d: %s",
576 authctxt->num_auth_methods, options.auth_methods[i]);
577 authctxt->auth_methods[authctxt->num_auth_methods++] =
578 xstrdup(options.auth_methods[i]);
579 }
580 if (authctxt->num_auth_methods == 0) {
581 error("No AuthenticationMethods left after eliminating "
582 "disabled methods");
583 return -1;
584 }
585 return 0;
586}
587
588static int
Damien Miller91a55f22013-04-23 15:18:10 +1000589list_starts_with(const char *methods, const char *method,
590 const char *submethod)
Damien Millera6e3f012012-11-04 23:21:40 +1100591{
592 size_t l = strlen(method);
Damien Miller91a55f22013-04-23 15:18:10 +1000593 int match;
594 const char *p;
Damien Millera6e3f012012-11-04 23:21:40 +1100595
596 if (strncmp(methods, method, l) != 0)
Damien Miller91a55f22013-04-23 15:18:10 +1000597 return MATCH_NONE;
598 p = methods + l;
599 match = MATCH_METHOD;
600 if (*p == ':') {
601 if (!submethod)
602 return MATCH_PARTIAL;
603 l = strlen(submethod);
604 p += 1;
605 if (strncmp(submethod, p, l))
606 return MATCH_NONE;
607 p += l;
608 match = MATCH_BOTH;
609 }
610 if (*p != ',' && *p != '\0')
611 return MATCH_NONE;
612 return match;
Damien Millera6e3f012012-11-04 23:21:40 +1100613}
614
615/*
616 * Remove method from the start of a comma-separated list of methods.
617 * Returns 0 if the list of methods did not start with that method or 1
618 * if it did.
619 */
620static int
Damien Miller91a55f22013-04-23 15:18:10 +1000621remove_method(char **methods, const char *method, const char *submethod)
Damien Millera6e3f012012-11-04 23:21:40 +1100622{
Damien Miller91a55f22013-04-23 15:18:10 +1000623 char *omethods = *methods, *p;
Damien Millera6e3f012012-11-04 23:21:40 +1100624 size_t l = strlen(method);
Damien Miller91a55f22013-04-23 15:18:10 +1000625 int match;
Damien Millera6e3f012012-11-04 23:21:40 +1100626
Damien Miller91a55f22013-04-23 15:18:10 +1000627 match = list_starts_with(omethods, method, submethod);
628 if (match != MATCH_METHOD && match != MATCH_BOTH)
Damien Millera6e3f012012-11-04 23:21:40 +1100629 return 0;
Damien Miller91a55f22013-04-23 15:18:10 +1000630 p = omethods + l;
631 if (submethod && match == MATCH_BOTH)
632 p += 1 + strlen(submethod); /* include colon */
633 if (*p == ',')
634 p++;
635 *methods = xstrdup(p);
Damien Millera6e3f012012-11-04 23:21:40 +1100636 free(omethods);
637 return 1;
638}
639
640/*
641 * Called after successful authentication. Will remove the successful method
642 * from the start of each list in which it occurs. If it was the last method
643 * in any list, then authentication is deemed successful.
644 * Returns 1 if the method completed any authentication list or 0 otherwise.
645 */
646int
Damien Miller91a55f22013-04-23 15:18:10 +1000647auth2_update_methods_lists(Authctxt *authctxt, const char *method,
648 const char *submethod)
Damien Millera6e3f012012-11-04 23:21:40 +1100649{
650 u_int i, found = 0;
651
652 debug3("%s: updating methods list after \"%s\"", __func__, method);
653 for (i = 0; i < authctxt->num_auth_methods; i++) {
Damien Miller91a55f22013-04-23 15:18:10 +1000654 if (!remove_method(&(authctxt->auth_methods[i]), method,
655 submethod))
Damien Millera6e3f012012-11-04 23:21:40 +1100656 continue;
657 found = 1;
658 if (*authctxt->auth_methods[i] == '\0') {
659 debug2("authentication methods list %d complete", i);
660 return 1;
661 }
662 debug3("authentication methods list %d remaining: \"%s\"",
663 i, authctxt->auth_methods[i]);
664 }
665 /* This should not happen, but would be bad if it did */
666 if (!found)
667 fatal("%s: method not in AuthenticationMethods", __func__);
668 return 0;
669}
670
djm@openbsd.org8f574952017-06-24 06:34:38 +0000671/* Reset method-specific information */
672void auth2_authctxt_reset_info(Authctxt *authctxt)
673{
674 sshkey_free(authctxt->auth_method_key);
675 free(authctxt->auth_method_info);
676 authctxt->auth_method_key = NULL;
677 authctxt->auth_method_info = NULL;
678}
679
680/* Record auth method-specific information for logs */
681void
682auth2_record_info(Authctxt *authctxt, const char *fmt, ...)
683{
684 va_list ap;
685 int i;
686
687 free(authctxt->auth_method_info);
688 authctxt->auth_method_info = NULL;
689
690 va_start(ap, fmt);
691 i = vasprintf(&authctxt->auth_method_info, fmt, ap);
692 va_end(ap);
693
694 if (i < 0 || authctxt->auth_method_info == NULL)
695 fatal("%s: vasprintf failed", __func__);
696}
697
698/*
699 * Records a public key used in authentication. This is used for logging
700 * and to ensure that the same key is not subsequently accepted again for
701 * multiple authentication.
702 */
703void
704auth2_record_key(Authctxt *authctxt, int authenticated,
705 const struct sshkey *key)
706{
707 struct sshkey **tmp, *dup;
708 int r;
709
djm@openbsd.org482d23b2018-09-13 02:08:33 +0000710 if ((r = sshkey_from_private(key, &dup)) != 0)
djm@openbsd.org8f574952017-06-24 06:34:38 +0000711 fatal("%s: copy key: %s", __func__, ssh_err(r));
712 sshkey_free(authctxt->auth_method_key);
713 authctxt->auth_method_key = dup;
714
715 if (!authenticated)
716 return;
717
718 /* If authenticated, make sure we don't accept this key again */
djm@openbsd.org482d23b2018-09-13 02:08:33 +0000719 if ((r = sshkey_from_private(key, &dup)) != 0)
djm@openbsd.org8f574952017-06-24 06:34:38 +0000720 fatal("%s: copy key: %s", __func__, ssh_err(r));
721 if (authctxt->nprev_keys >= INT_MAX ||
722 (tmp = recallocarray(authctxt->prev_keys, authctxt->nprev_keys,
723 authctxt->nprev_keys + 1, sizeof(*authctxt->prev_keys))) == NULL)
724 fatal("%s: reallocarray failed", __func__);
725 authctxt->prev_keys = tmp;
726 authctxt->prev_keys[authctxt->nprev_keys] = dup;
727 authctxt->nprev_keys++;
728
729}
730
731/* Checks whether a key has already been previously used for authentication */
732int
733auth2_key_already_used(Authctxt *authctxt, const struct sshkey *key)
734{
735 u_int i;
736 char *fp;
737
738 for (i = 0; i < authctxt->nprev_keys; i++) {
739 if (sshkey_equal_public(key, authctxt->prev_keys[i])) {
740 fp = sshkey_fingerprint(authctxt->prev_keys[i],
741 options.fingerprint_hash, SSH_FP_DEFAULT);
742 debug3("%s: key already used: %s %s", __func__,
743 sshkey_type(authctxt->prev_keys[i]),
744 fp == NULL ? "UNKNOWN" : fp);
745 free(fp);
746 return 1;
747 }
748 }
749 return 0;
750}
751
752/*
753 * Updates authctxt->session_info with details of authentication. Should be
754 * whenever an authentication method succeeds.
755 */
756void
757auth2_update_session_info(Authctxt *authctxt, const char *method,
758 const char *submethod)
759{
760 int r;
761
762 if (authctxt->session_info == NULL) {
763 if ((authctxt->session_info = sshbuf_new()) == NULL)
764 fatal("%s: sshbuf_new", __func__);
765 }
766
767 /* Append method[/submethod] */
768 if ((r = sshbuf_putf(authctxt->session_info, "%s%s%s",
769 method, submethod == NULL ? "" : "/",
770 submethod == NULL ? "" : submethod)) != 0)
771 fatal("%s: append method: %s", __func__, ssh_err(r));
772
773 /* Append key if present */
774 if (authctxt->auth_method_key != NULL) {
775 if ((r = sshbuf_put_u8(authctxt->session_info, ' ')) != 0 ||
776 (r = sshkey_format_text(authctxt->auth_method_key,
777 authctxt->session_info)) != 0)
778 fatal("%s: append key: %s", __func__, ssh_err(r));
779 }
780
781 if (authctxt->auth_method_info != NULL) {
782 /* Ensure no ambiguity here */
783 if (strchr(authctxt->auth_method_info, '\n') != NULL)
784 fatal("%s: auth_method_info contains \\n", __func__);
785 if ((r = sshbuf_put_u8(authctxt->session_info, ' ')) != 0 ||
786 (r = sshbuf_putf(authctxt->session_info, "%s",
787 authctxt->auth_method_info)) != 0) {
788 fatal("%s: append method info: %s",
789 __func__, ssh_err(r));
790 }
791 }
792 if ((r = sshbuf_put_u8(authctxt->session_info, '\n')) != 0)
793 fatal("%s: append: %s", __func__, ssh_err(r));
794}
Damien Millera6e3f012012-11-04 23:21:40 +1100795