blob: 3df2acf78ae81a5f7ed0587beb7cb4acbbb56ef1 [file] [log] [blame]
djm@openbsd.org0fa174e2019-01-19 21:31:32 +00001/* $OpenBSD: auth2.c,v 1.152 2019/01/19 21:31:32 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
djm@openbsd.org0fa174e2019-01-19 21:31:32 +000064#include "opacket.h" /* XXX */
65extern struct ssh *active_state; /* XXX */
66
Damien Millereba71ba2000-04-29 23:57:08 +100067/* import */
68extern ServerOptions options;
Ben Lindstrom46c16222000-12-22 01:43:59 +000069extern u_char *session_id2;
Darren Tucker502d3842003-06-28 12:38:01 +100070extern u_int session_id2_len;
Damien Miller120a1ec2018-07-10 19:39:52 +100071extern struct sshbuf *loginmsg;
Damien Millereba71ba2000-04-29 23:57:08 +100072
Ben Lindstrom511bb242002-06-06 20:52:37 +000073/* methods */
74
75extern Authmethod method_none;
76extern Authmethod method_pubkey;
77extern Authmethod method_passwd;
78extern Authmethod method_kbdint;
79extern Authmethod method_hostbased;
Darren Tucker0efd1552003-08-26 11:49:55 +100080#ifdef GSSAPI
81extern Authmethod method_gssapi;
82#endif
Ben Lindstrom511bb242002-06-06 20:52:37 +000083
84Authmethod *authmethods[] = {
85 &method_none,
86 &method_pubkey,
Darren Tucker0efd1552003-08-26 11:49:55 +100087#ifdef GSSAPI
88 &method_gssapi,
89#endif
Ben Lindstrom511bb242002-06-06 20:52:37 +000090 &method_passwd,
91 &method_kbdint,
92 &method_hostbased,
93 NULL
Damien Miller874d77b2000-10-14 16:23:11 +110094};
95
Damien Millereba71ba2000-04-29 23:57:08 +100096/* protocol */
97
markus@openbsd.org2ae666a2017-05-30 14:23:52 +000098static int input_service_request(int, u_int32_t, struct ssh *);
99static int input_userauth_request(int, u_int32_t, struct ssh *);
Damien Millereba71ba2000-04-29 23:57:08 +1000100
Damien Millereba71ba2000-04-29 23:57:08 +1000101/* helper */
Damien Millera6e3f012012-11-04 23:21:40 +1100102static Authmethod *authmethod_lookup(Authctxt *, const char *);
103static char *authmethods_get(Authctxt *authctxt);
Damien Miller91a55f22013-04-23 15:18:10 +1000104
105#define MATCH_NONE 0 /* method or submethod mismatch */
106#define MATCH_METHOD 1 /* method matches (no submethod specified) */
107#define MATCH_BOTH 2 /* method and submethod match */
108#define MATCH_PARTIAL 3 /* method matches, submethod can't be checked */
109static int list_starts_with(const char *, const char *, const char *);
Damien Millereba71ba2000-04-29 23:57:08 +1000110
Darren Tucker4230a5d2008-07-02 22:56:09 +1000111char *
112auth2_read_banner(void)
113{
114 struct stat st;
115 char *banner = NULL;
116 size_t len, n;
117 int fd;
118
119 if ((fd = open(options.banner, O_RDONLY)) == -1)
120 return (NULL);
121 if (fstat(fd, &st) == -1) {
122 close(fd);
123 return (NULL);
124 }
Damien Miller8ed4de82011-12-19 10:52:50 +1100125 if (st.st_size <= 0 || st.st_size > 1*1024*1024) {
Darren Tucker4230a5d2008-07-02 22:56:09 +1000126 close(fd);
127 return (NULL);
128 }
129
130 len = (size_t)st.st_size; /* truncate */
131 banner = xmalloc(len + 1);
132 n = atomicio(read, fd, banner, len);
133 close(fd);
134
135 if (n != len) {
Darren Tuckera627d422013-06-02 07:31:17 +1000136 free(banner);
Darren Tucker4230a5d2008-07-02 22:56:09 +1000137 return (NULL);
138 }
139 banner[n] = '\0';
140
141 return (banner);
142}
143
144void
145userauth_send_banner(const char *msg)
146{
Darren Tucker4230a5d2008-07-02 22:56:09 +1000147 packet_start(SSH2_MSG_USERAUTH_BANNER);
148 packet_put_cstring(msg);
149 packet_put_cstring(""); /* language, unused */
150 packet_send();
151 debug("%s: sent", __func__);
152}
153
154static void
155userauth_banner(void)
156{
157 char *banner = NULL;
158
djm@openbsd.org14b5c632018-01-23 05:27:21 +0000159 if (options.banner == NULL)
Darren Tucker4230a5d2008-07-02 22:56:09 +1000160 return;
161
162 if ((banner = PRIVSEP(auth2_read_banner())) == NULL)
163 goto done;
164 userauth_send_banner(banner);
165
166done:
Darren Tuckera627d422013-06-02 07:31:17 +1000167 free(banner);
Darren Tucker4230a5d2008-07-02 22:56:09 +1000168}
169
Damien Millereba71ba2000-04-29 23:57:08 +1000170/*
Damien Miller874d77b2000-10-14 16:23:11 +1100171 * loop until authctxt->success == TRUE
Damien Millereba71ba2000-04-29 23:57:08 +1000172 */
Darren Tucker3e33cec2003-10-02 16:12:36 +1000173void
174do_authentication2(Authctxt *authctxt)
Damien Millereba71ba2000-04-29 23:57:08 +1000175{
markus@openbsd.org5f4082d2017-05-30 14:18:15 +0000176 struct ssh *ssh = active_state; /* XXX */
177 ssh->authctxt = authctxt; /* XXX move to caller */
markus@openbsd.orgeb272ea2017-05-30 14:29:59 +0000178 ssh_dispatch_init(ssh, &dispatch_protocol_error);
179 ssh_dispatch_set(ssh, SSH2_MSG_SERVICE_REQUEST, &input_service_request);
markus@openbsd.org92e9fe62017-05-31 07:00:13 +0000180 ssh_dispatch_run_fatal(ssh, DISPATCH_BLOCK, &authctxt->success);
markus@openbsd.org5f4082d2017-05-30 14:18:15 +0000181 ssh->authctxt = NULL;
Damien Millereba71ba2000-04-29 23:57:08 +1000182}
183
Damien Miller91d4b122006-03-26 14:05:20 +1100184/*ARGSUSED*/
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +0000185static int
markus@openbsd.org2ae666a2017-05-30 14:23:52 +0000186input_service_request(int type, u_int32_t seq, struct ssh *ssh)
Damien Millereba71ba2000-04-29 23:57:08 +1000187{
markus@openbsd.org5f4082d2017-05-30 14:18:15 +0000188 Authctxt *authctxt = ssh->authctxt;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000189 u_int len;
Ben Lindstrom5a9d0ea2002-07-04 00:12:53 +0000190 int acceptit = 0;
Damien Millerda108ec2010-08-31 22:36:39 +1000191 char *service = packet_get_cstring(&len);
Damien Miller48b03fc2002-01-22 23:11:40 +1100192 packet_check_eom();
Damien Millereba71ba2000-04-29 23:57:08 +1000193
Damien Miller874d77b2000-10-14 16:23:11 +1100194 if (authctxt == NULL)
195 fatal("input_service_request: no authctxt");
196
Damien Millereba71ba2000-04-29 23:57:08 +1000197 if (strcmp(service, "ssh-userauth") == 0) {
Damien Miller874d77b2000-10-14 16:23:11 +1100198 if (!authctxt->success) {
Ben Lindstrom5a9d0ea2002-07-04 00:12:53 +0000199 acceptit = 1;
Damien Millereba71ba2000-04-29 23:57:08 +1000200 /* now we can handle user-auth requests */
markus@openbsd.orgeb272ea2017-05-30 14:29:59 +0000201 ssh_dispatch_set(ssh, SSH2_MSG_USERAUTH_REQUEST, &input_userauth_request);
Damien Millereba71ba2000-04-29 23:57:08 +1000202 }
203 }
204 /* XXX all other service requests are denied */
205
Ben Lindstrom5a9d0ea2002-07-04 00:12:53 +0000206 if (acceptit) {
Damien Millereba71ba2000-04-29 23:57:08 +1000207 packet_start(SSH2_MSG_SERVICE_ACCEPT);
208 packet_put_cstring(service);
209 packet_send();
210 packet_write_wait();
211 } else {
212 debug("bad service request %s", service);
213 packet_disconnect("bad service request %s", service);
214 }
Darren Tuckera627d422013-06-02 07:31:17 +1000215 free(service);
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +0000216 return 0;
Damien Millereba71ba2000-04-29 23:57:08 +1000217}
218
dtucker@openbsd.orge9d910b2018-04-13 03:57:26 +0000219#define MIN_FAIL_DELAY_SECONDS 0.005
220static double
221user_specific_delay(const char *user)
222{
223 char b[512];
224 size_t len = ssh_digest_bytes(SSH_DIGEST_SHA512);
225 u_char *hash = xmalloc(len);
226 double delay;
227
dtucker@openbsd.orgfdba5032018-05-11 03:22:55 +0000228 (void)snprintf(b, sizeof b, "%llu%s",
229 (unsigned long long)options.timing_secret, user);
dtucker@openbsd.orge9d910b2018-04-13 03:57:26 +0000230 if (ssh_digest_memory(SSH_DIGEST_SHA512, b, strlen(b), hash, len) != 0)
231 fatal("%s: ssh_digest_memory", __func__);
232 /* 0-4.2 ms of delay */
233 delay = (double)PEEK_U32(hash) / 1000 / 1000 / 1000 / 1000;
234 freezero(hash, len);
235 debug3("%s: user specific delay %0.3lfms", __func__, delay/1000);
236 return MIN_FAIL_DELAY_SECONDS + delay;
237}
238
239static void
240ensure_minimum_time_since(double start, double seconds)
241{
242 struct timespec ts;
243 double elapsed = monotime_double() - start, req = seconds, remain;
244
245 /* if we've already passed the requested time, scale up */
246 while ((remain = seconds - elapsed) < 0.0)
247 seconds *= 2;
248
249 ts.tv_sec = remain;
250 ts.tv_nsec = (remain - ts.tv_sec) * 1000000000;
251 debug3("%s: elapsed %0.3lfms, delaying %0.3lfms (requested %0.3lfms)",
252 __func__, elapsed*1000, remain*1000, req*1000);
253 nanosleep(&ts, NULL);
254}
255
Damien Miller91d4b122006-03-26 14:05:20 +1100256/*ARGSUSED*/
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +0000257static int
markus@openbsd.org2ae666a2017-05-30 14:23:52 +0000258input_userauth_request(int type, u_int32_t seq, struct ssh *ssh)
Damien Millereba71ba2000-04-29 23:57:08 +1000259{
markus@openbsd.org5f4082d2017-05-30 14:18:15 +0000260 Authctxt *authctxt = ssh->authctxt;
Damien Miller874d77b2000-10-14 16:23:11 +1100261 Authmethod *m = NULL;
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000262 char *user, *service, *method, *style = NULL;
Damien Millereba71ba2000-04-29 23:57:08 +1000263 int authenticated = 0;
dtucker@openbsd.orge9d910b2018-04-13 03:57:26 +0000264 double tstart = monotime_double();
Damien Millereba71ba2000-04-29 23:57:08 +1000265
Damien Miller874d77b2000-10-14 16:23:11 +1100266 if (authctxt == NULL)
267 fatal("input_userauth_request: no authctxt");
Damien Millereba71ba2000-04-29 23:57:08 +1000268
Damien Millerda108ec2010-08-31 22:36:39 +1000269 user = packet_get_cstring(NULL);
270 service = packet_get_cstring(NULL);
271 method = packet_get_cstring(NULL);
Damien Miller874d77b2000-10-14 16:23:11 +1100272 debug("userauth-request for user %s service %s method %s", user, service, method);
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000273 debug("attempt %d failures %d", authctxt->attempt, authctxt->failures);
Damien Miller874d77b2000-10-14 16:23:11 +1100274
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000275 if ((style = strchr(user, ':')) != NULL)
276 *style++ = 0;
277
Kevin Stevesef4eea92001-02-05 12:42:17 +0000278 if (authctxt->attempt++ == 0) {
Damien Miller3a5b0232002-03-13 13:19:42 +1100279 /* setup auth context */
Kevin Steves205cc1e2002-03-22 20:43:05 +0000280 authctxt->pw = PRIVSEP(getpwnamallow(user));
Darren Tuckerdbf7a742004-03-08 23:04:06 +1100281 authctxt->user = xstrdup(user);
Kevin Steves205cc1e2002-03-22 20:43:05 +0000282 if (authctxt->pw && strcmp(service, "ssh-connection")==0) {
Damien Miller874d77b2000-10-14 16:23:11 +1100283 authctxt->valid = 1;
djm@openbsd.orgf1a19342017-02-03 23:05:57 +0000284 debug2("%s: setting up authctxt for %s",
285 __func__, user);
Damien Miller874d77b2000-10-14 16:23:11 +1100286 } else {
djm@openbsd.orgf1a19342017-02-03 23:05:57 +0000287 /* Invalid user, fake password information */
Damien Miller856f0be2003-09-03 07:32:45 +1000288 authctxt->pw = fakepw();
Darren Tucker2e0cf0d2005-02-08 21:52:47 +1100289#ifdef SSH_AUDIT_EVENTS
290 PRIVSEP(audit_event(SSH_INVALID_USER));
Darren Tucker269a1ea2005-02-03 00:20:53 +1100291#endif
Damien Miller874d77b2000-10-14 16:23:11 +1100292 }
Darren Tuckerd3eff2b2005-09-24 12:43:51 +1000293#ifdef USE_PAM
294 if (options.use_pam)
295 PRIVSEP(start_pam(authctxt));
296#endif
djm@openbsd.orgf1a19342017-02-03 23:05:57 +0000297 ssh_packet_set_log_preamble(ssh, "%suser %s",
298 authctxt->valid ? "authenticating " : "invalid ", user);
Damien Miller30d1f842004-07-21 20:48:53 +1000299 setproctitle("%s%s", authctxt->valid ? user : "unknown",
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000300 use_privsep ? " [net]" : "");
Damien Miller874d77b2000-10-14 16:23:11 +1100301 authctxt->service = xstrdup(service);
Ben Lindstrom9d0c0662001-06-09 01:40:00 +0000302 authctxt->style = style ? xstrdup(style) : NULL;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000303 if (use_privsep)
304 mm_inform_authserv(service, style);
Darren Tucker4230a5d2008-07-02 22:56:09 +1000305 userauth_banner();
Damien Millera6e3f012012-11-04 23:21:40 +1100306 if (auth2_setup_methods_lists(authctxt) != 0)
307 packet_disconnect("no authentication methods enabled");
Ben Lindstrom9d0c0662001-06-09 01:40:00 +0000308 } else if (strcmp(user, authctxt->user) != 0 ||
309 strcmp(service, authctxt->service) != 0) {
310 packet_disconnect("Change of username or service not allowed: "
311 "(%s,%s) -> (%s,%s)",
312 authctxt->user, authctxt->service, user, service);
Damien Millereba71ba2000-04-29 23:57:08 +1000313 }
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000314 /* reset state */
markus@openbsd.orgeb272ea2017-05-30 14:29:59 +0000315 auth2_challenge_stop(ssh);
Darren Tucker0efd1552003-08-26 11:49:55 +1000316
317#ifdef GSSAPI
Damien Miller01ed2272008-11-05 16:20:46 +1100318 /* XXX move to auth2_gssapi_stop() */
markus@openbsd.orgeb272ea2017-05-30 14:29:59 +0000319 ssh_dispatch_set(ssh, SSH2_MSG_USERAUTH_GSSAPI_TOKEN, NULL);
320 ssh_dispatch_set(ssh, SSH2_MSG_USERAUTH_GSSAPI_EXCHANGE_COMPLETE, NULL);
Darren Tucker0efd1552003-08-26 11:49:55 +1000321#endif
322
djm@openbsd.org8f574952017-06-24 06:34:38 +0000323 auth2_authctxt_reset_info(authctxt);
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000324 authctxt->postponed = 0;
Damien Miller3fcdfd52011-05-05 14:04:11 +1000325 authctxt->server_caused_failure = 0;
Damien Millerb70b61f2000-09-16 16:25:12 +1100326
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000327 /* try to authenticate user */
Damien Millera6e3f012012-11-04 23:21:40 +1100328 m = authmethod_lookup(authctxt, method);
Darren Tucker4230a5d2008-07-02 22:56:09 +1000329 if (m != NULL && authctxt->failures < options.max_authtries) {
Damien Miller874d77b2000-10-14 16:23:11 +1100330 debug2("input_userauth_request: try method %s", method);
markus@openbsd.orgeb272ea2017-05-30 14:29:59 +0000331 authenticated = m->userauth(ssh);
Damien Miller874d77b2000-10-14 16:23:11 +1100332 }
dtucker@openbsd.orge9d910b2018-04-13 03:57:26 +0000333 if (!authctxt->authenticated)
334 ensure_minimum_time_since(tstart,
335 user_specific_delay(authctxt->user));
markus@openbsd.orgeb272ea2017-05-30 14:29:59 +0000336 userauth_finish(ssh, authenticated, method, NULL);
Damien Miller5d57e502001-03-30 10:48:31 +1000337
Darren Tuckera627d422013-06-02 07:31:17 +1000338 free(service);
339 free(user);
340 free(method);
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +0000341 return 0;
Damien Miller5d57e502001-03-30 10:48:31 +1000342}
343
344void
markus@openbsd.orgeb272ea2017-05-30 14:29:59 +0000345userauth_finish(struct ssh *ssh, int authenticated, const char *method,
Damien Miller15b05cf2012-12-03 09:53:20 +1100346 const char *submethod)
Damien Miller5d57e502001-03-30 10:48:31 +1000347{
markus@openbsd.orgeb272ea2017-05-30 14:29:59 +0000348 Authctxt *authctxt = ssh->authctxt;
Ben Lindstromcd4349f2001-06-09 00:23:17 +0000349 char *methods;
Damien Millera6e3f012012-11-04 23:21:40 +1100350 int partial = 0;
Ben Lindstromcd4349f2001-06-09 00:23:17 +0000351
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000352 if (!authctxt->valid && authenticated)
353 fatal("INTERNAL ERROR: authenticated invalid user %s",
354 authctxt->user);
Damien Miller15b05cf2012-12-03 09:53:20 +1100355 if (authenticated && authctxt->postponed)
356 fatal("INTERNAL ERROR: authenticated and postponed");
Damien Millerb70b61f2000-09-16 16:25:12 +1100357
Damien Miller874d77b2000-10-14 16:23:11 +1100358 /* Special handling for root */
Damien Miller556f9312003-02-24 11:59:26 +1100359 if (authenticated && authctxt->pw->pw_uid == 0 &&
djm@openbsd.org7c856852018-03-03 03:15:51 +0000360 !auth_root_allowed(ssh, method)) {
Damien Millereba71ba2000-04-29 23:57:08 +1000361 authenticated = 0;
Darren Tucker2e0cf0d2005-02-08 21:52:47 +1100362#ifdef SSH_AUDIT_EVENTS
363 PRIVSEP(audit_event(SSH_LOGIN_ROOT_DENIED));
Darren Tucker269a1ea2005-02-03 00:20:53 +1100364#endif
365 }
Damien Millereba71ba2000-04-29 23:57:08 +1000366
Damien Miller15b05cf2012-12-03 09:53:20 +1100367 if (authenticated && options.num_auth_methods != 0) {
Damien Miller91a55f22013-04-23 15:18:10 +1000368 if (!auth2_update_methods_lists(authctxt, method, submethod)) {
Damien Miller15b05cf2012-12-03 09:53:20 +1100369 authenticated = 0;
370 partial = 1;
371 }
372 }
373
374 /* Log before sending the reply */
Darren Tucker0acca372013-06-02 07:41:51 +1000375 auth_log(authctxt, authenticated, partial, method, submethod);
Damien Miller15b05cf2012-12-03 09:53:20 +1100376
djm@openbsd.org8f574952017-06-24 06:34:38 +0000377 /* Update information exposed to session */
378 if (authenticated || partial)
379 auth2_update_session_info(authctxt, method, submethod);
380
Damien Miller15b05cf2012-12-03 09:53:20 +1100381 if (authctxt->postponed)
382 return;
383
Damien Miller1f499fd2003-08-25 13:08:49 +1000384#ifdef USE_PAM
Darren Tucker77fc29e2004-09-11 23:07:03 +1000385 if (options.use_pam && authenticated) {
Damien Miller120a1ec2018-07-10 19:39:52 +1000386 int r;
387
Darren Tucker77fc29e2004-09-11 23:07:03 +1000388 if (!PRIVSEP(do_pam_account())) {
Darren Tucker77fc29e2004-09-11 23:07:03 +1000389 /* if PAM returned a message, send it to the user */
Damien Miller120a1ec2018-07-10 19:39:52 +1000390 if (sshbuf_len(loginmsg) > 0) {
391 if ((r = sshbuf_put(loginmsg, "\0", 1)) != 0)
392 fatal("%s: buffer error: %s",
393 __func__, ssh_err(r));
394 userauth_send_banner(sshbuf_ptr(loginmsg));
Darren Tuckerc1386672004-12-03 14:33:47 +1100395 packet_write_wait();
Darren Tucker77fc29e2004-09-11 23:07:03 +1000396 }
Darren Tuckerc1386672004-12-03 14:33:47 +1100397 fatal("Access denied for user %s by PAM account "
Damien Millerb6f72f52005-07-17 17:26:43 +1000398 "configuration", authctxt->user);
Darren Tucker77fc29e2004-09-11 23:07:03 +1000399 }
400 }
Damien Miller1f499fd2003-08-25 13:08:49 +1000401#endif
402
Ben Lindstromcd4349f2001-06-09 00:23:17 +0000403 if (authenticated == 1) {
404 /* turn off userauth */
markus@openbsd.orgeb272ea2017-05-30 14:29:59 +0000405 ssh_dispatch_set(ssh, SSH2_MSG_USERAUTH_REQUEST, &dispatch_protocol_ignore);
Ben Lindstromcd4349f2001-06-09 00:23:17 +0000406 packet_start(SSH2_MSG_USERAUTH_SUCCESS);
407 packet_send();
408 packet_write_wait();
409 /* now we can break out */
410 authctxt->success = 1;
djm@openbsd.orgf1a19342017-02-03 23:05:57 +0000411 ssh_packet_set_log_preamble(ssh, "user %s", authctxt->user);
Ben Lindstromcd4349f2001-06-09 00:23:17 +0000412 } else {
Damien Miller0b4d48b2008-07-05 09:44:53 +1000413 /* Allow initial try of "none" auth without failure penalty */
djm@openbsd.org058f8392014-12-18 23:58:04 +0000414 if (!partial && !authctxt->server_caused_failure &&
Damien Miller3fcdfd52011-05-05 14:04:11 +1000415 (authctxt->attempt > 1 || strcmp(method, "none") != 0))
Damien Miller0b4d48b2008-07-05 09:44:53 +1000416 authctxt->failures++;
417 if (authctxt->failures >= options.max_authtries) {
Darren Tucker2e0cf0d2005-02-08 21:52:47 +1100418#ifdef SSH_AUDIT_EVENTS
419 PRIVSEP(audit_event(SSH_LOGIN_EXCEED_MAXTRIES));
Darren Tucker269a1ea2005-02-03 00:20:53 +1100420#endif
Damien Miller686feb52014-07-03 21:29:38 +1000421 auth_maxtries_exceeded(authctxt);
Darren Tucker269a1ea2005-02-03 00:20:53 +1100422 }
Damien Millera6e3f012012-11-04 23:21:40 +1100423 methods = authmethods_get(authctxt);
424 debug3("%s: failure partial=%d next methods=\"%s\"", __func__,
425 partial, methods);
Ben Lindstromcd4349f2001-06-09 00:23:17 +0000426 packet_start(SSH2_MSG_USERAUTH_FAILURE);
427 packet_put_cstring(methods);
Damien Millera6e3f012012-11-04 23:21:40 +1100428 packet_put_char(partial);
Ben Lindstromcd4349f2001-06-09 00:23:17 +0000429 packet_send();
430 packet_write_wait();
Darren Tuckera627d422013-06-02 07:31:17 +1000431 free(methods);
Ben Lindstromcd4349f2001-06-09 00:23:17 +0000432 }
Damien Miller874d77b2000-10-14 16:23:11 +1100433}
434
Damien Millera6e3f012012-11-04 23:21:40 +1100435/*
436 * Checks whether method is allowed by at least one AuthenticationMethods
437 * methods list. Returns 1 if allowed, or no methods lists configured.
438 * 0 otherwise.
439 */
Damien Miller91a55f22013-04-23 15:18:10 +1000440int
441auth2_method_allowed(Authctxt *authctxt, const char *method,
442 const char *submethod)
Damien Millera6e3f012012-11-04 23:21:40 +1100443{
444 u_int i;
445
446 /*
447 * NB. authctxt->num_auth_methods might be zero as a result of
448 * auth2_setup_methods_lists(), so check the configuration.
449 */
450 if (options.num_auth_methods == 0)
451 return 1;
452 for (i = 0; i < authctxt->num_auth_methods; i++) {
Damien Miller91a55f22013-04-23 15:18:10 +1000453 if (list_starts_with(authctxt->auth_methods[i], method,
454 submethod) != MATCH_NONE)
Damien Millera6e3f012012-11-04 23:21:40 +1100455 return 1;
456 }
457 return 0;
458}
459
Ben Lindstrom79073822001-07-04 03:42:30 +0000460static char *
Damien Millera6e3f012012-11-04 23:21:40 +1100461authmethods_get(Authctxt *authctxt)
Damien Miller874d77b2000-10-14 16:23:11 +1100462{
markus@openbsd.orgc7d39ac2018-07-09 21:35:50 +0000463 struct sshbuf *b;
Damien Miller874d77b2000-10-14 16:23:11 +1100464 char *list;
markus@openbsd.orgc7d39ac2018-07-09 21:35:50 +0000465 int i, r;
Damien Miller874d77b2000-10-14 16:23:11 +1100466
markus@openbsd.orgc7d39ac2018-07-09 21:35:50 +0000467 if ((b = sshbuf_new()) == NULL)
468 fatal("%s: sshbuf_new failed", __func__);
Ben Lindstrom511bb242002-06-06 20:52:37 +0000469 for (i = 0; authmethods[i] != NULL; i++) {
470 if (strcmp(authmethods[i]->name, "none") == 0)
Damien Miller874d77b2000-10-14 16:23:11 +1100471 continue;
Damien Millera6e3f012012-11-04 23:21:40 +1100472 if (authmethods[i]->enabled == NULL ||
473 *(authmethods[i]->enabled) == 0)
474 continue;
Damien Miller91a55f22013-04-23 15:18:10 +1000475 if (!auth2_method_allowed(authctxt, authmethods[i]->name,
476 NULL))
Damien Millera6e3f012012-11-04 23:21:40 +1100477 continue;
markus@openbsd.orgc7d39ac2018-07-09 21:35:50 +0000478 if ((r = sshbuf_putf(b, "%s%s", sshbuf_len(b) ? "," : "",
479 authmethods[i]->name)) != 0)
480 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Damien Millereba71ba2000-04-29 23:57:08 +1000481 }
markus@openbsd.orgc7d39ac2018-07-09 21:35:50 +0000482 if ((list = sshbuf_dup_string(b)) == NULL)
djm@openbsd.org1a31d022016-05-02 08:49:03 +0000483 fatal("%s: sshbuf_dup_string failed", __func__);
markus@openbsd.orgc7d39ac2018-07-09 21:35:50 +0000484 sshbuf_free(b);
Damien Miller874d77b2000-10-14 16:23:11 +1100485 return list;
486}
487
Ben Lindstrombba81212001-06-25 05:01:22 +0000488static Authmethod *
Damien Millera6e3f012012-11-04 23:21:40 +1100489authmethod_lookup(Authctxt *authctxt, const char *name)
Damien Miller874d77b2000-10-14 16:23:11 +1100490{
Ben Lindstrom511bb242002-06-06 20:52:37 +0000491 int i;
492
Damien Miller874d77b2000-10-14 16:23:11 +1100493 if (name != NULL)
Ben Lindstrom511bb242002-06-06 20:52:37 +0000494 for (i = 0; authmethods[i] != NULL; i++)
495 if (authmethods[i]->enabled != NULL &&
496 *(authmethods[i]->enabled) != 0 &&
Damien Millera6e3f012012-11-04 23:21:40 +1100497 strcmp(name, authmethods[i]->name) == 0 &&
Damien Miller91a55f22013-04-23 15:18:10 +1000498 auth2_method_allowed(authctxt,
499 authmethods[i]->name, NULL))
Ben Lindstrom511bb242002-06-06 20:52:37 +0000500 return authmethods[i];
501 debug2("Unrecognized authentication method name: %s",
502 name ? name : "NULL");
Damien Miller874d77b2000-10-14 16:23:11 +1100503 return NULL;
Damien Millereba71ba2000-04-29 23:57:08 +1000504}
Darren Tucker4230a5d2008-07-02 22:56:09 +1000505
Damien Millera6e3f012012-11-04 23:21:40 +1100506/*
507 * Check a comma-separated list of methods for validity. Is need_enable is
508 * non-zero, then also require that the methods are enabled.
509 * Returns 0 on success or -1 if the methods list is invalid.
510 */
511int
512auth2_methods_valid(const char *_methods, int need_enable)
513{
Damien Miller91a55f22013-04-23 15:18:10 +1000514 char *methods, *omethods, *method, *p;
Damien Millera6e3f012012-11-04 23:21:40 +1100515 u_int i, found;
516 int ret = -1;
517
518 if (*_methods == '\0') {
519 error("empty authentication method list");
520 return -1;
521 }
522 omethods = methods = xstrdup(_methods);
523 while ((method = strsep(&methods, ",")) != NULL) {
524 for (found = i = 0; !found && authmethods[i] != NULL; i++) {
Damien Miller91a55f22013-04-23 15:18:10 +1000525 if ((p = strchr(method, ':')) != NULL)
526 *p = '\0';
Damien Millera6e3f012012-11-04 23:21:40 +1100527 if (strcmp(method, authmethods[i]->name) != 0)
528 continue;
529 if (need_enable) {
530 if (authmethods[i]->enabled == NULL ||
531 *(authmethods[i]->enabled) == 0) {
532 error("Disabled method \"%s\" in "
533 "AuthenticationMethods list \"%s\"",
534 method, _methods);
535 goto out;
536 }
537 }
538 found = 1;
539 break;
540 }
541 if (!found) {
542 error("Unknown authentication method \"%s\" in list",
543 method);
544 goto out;
545 }
546 }
547 ret = 0;
548 out:
549 free(omethods);
550 return ret;
551}
552
553/*
554 * Prune the AuthenticationMethods supplied in the configuration, removing
555 * any methods lists that include disabled methods. Note that this might
556 * leave authctxt->num_auth_methods == 0, even when multiple required auth
557 * has been requested. For this reason, all tests for whether multiple is
558 * enabled should consult options.num_auth_methods directly.
559 */
560int
561auth2_setup_methods_lists(Authctxt *authctxt)
562{
563 u_int i;
564
565 if (options.num_auth_methods == 0)
566 return 0;
567 debug3("%s: checking methods", __func__);
568 authctxt->auth_methods = xcalloc(options.num_auth_methods,
569 sizeof(*authctxt->auth_methods));
570 authctxt->num_auth_methods = 0;
571 for (i = 0; i < options.num_auth_methods; i++) {
572 if (auth2_methods_valid(options.auth_methods[i], 1) != 0) {
573 logit("Authentication methods list \"%s\" contains "
574 "disabled method, skipping",
575 options.auth_methods[i]);
576 continue;
577 }
578 debug("authentication methods list %d: %s",
579 authctxt->num_auth_methods, options.auth_methods[i]);
580 authctxt->auth_methods[authctxt->num_auth_methods++] =
581 xstrdup(options.auth_methods[i]);
582 }
583 if (authctxt->num_auth_methods == 0) {
584 error("No AuthenticationMethods left after eliminating "
585 "disabled methods");
586 return -1;
587 }
588 return 0;
589}
590
591static int
Damien Miller91a55f22013-04-23 15:18:10 +1000592list_starts_with(const char *methods, const char *method,
593 const char *submethod)
Damien Millera6e3f012012-11-04 23:21:40 +1100594{
595 size_t l = strlen(method);
Damien Miller91a55f22013-04-23 15:18:10 +1000596 int match;
597 const char *p;
Damien Millera6e3f012012-11-04 23:21:40 +1100598
599 if (strncmp(methods, method, l) != 0)
Damien Miller91a55f22013-04-23 15:18:10 +1000600 return MATCH_NONE;
601 p = methods + l;
602 match = MATCH_METHOD;
603 if (*p == ':') {
604 if (!submethod)
605 return MATCH_PARTIAL;
606 l = strlen(submethod);
607 p += 1;
608 if (strncmp(submethod, p, l))
609 return MATCH_NONE;
610 p += l;
611 match = MATCH_BOTH;
612 }
613 if (*p != ',' && *p != '\0')
614 return MATCH_NONE;
615 return match;
Damien Millera6e3f012012-11-04 23:21:40 +1100616}
617
618/*
619 * Remove method from the start of a comma-separated list of methods.
620 * Returns 0 if the list of methods did not start with that method or 1
621 * if it did.
622 */
623static int
Damien Miller91a55f22013-04-23 15:18:10 +1000624remove_method(char **methods, const char *method, const char *submethod)
Damien Millera6e3f012012-11-04 23:21:40 +1100625{
Damien Miller91a55f22013-04-23 15:18:10 +1000626 char *omethods = *methods, *p;
Damien Millera6e3f012012-11-04 23:21:40 +1100627 size_t l = strlen(method);
Damien Miller91a55f22013-04-23 15:18:10 +1000628 int match;
Damien Millera6e3f012012-11-04 23:21:40 +1100629
Damien Miller91a55f22013-04-23 15:18:10 +1000630 match = list_starts_with(omethods, method, submethod);
631 if (match != MATCH_METHOD && match != MATCH_BOTH)
Damien Millera6e3f012012-11-04 23:21:40 +1100632 return 0;
Damien Miller91a55f22013-04-23 15:18:10 +1000633 p = omethods + l;
634 if (submethod && match == MATCH_BOTH)
635 p += 1 + strlen(submethod); /* include colon */
636 if (*p == ',')
637 p++;
638 *methods = xstrdup(p);
Damien Millera6e3f012012-11-04 23:21:40 +1100639 free(omethods);
640 return 1;
641}
642
643/*
644 * Called after successful authentication. Will remove the successful method
645 * from the start of each list in which it occurs. If it was the last method
646 * in any list, then authentication is deemed successful.
647 * Returns 1 if the method completed any authentication list or 0 otherwise.
648 */
649int
Damien Miller91a55f22013-04-23 15:18:10 +1000650auth2_update_methods_lists(Authctxt *authctxt, const char *method,
651 const char *submethod)
Damien Millera6e3f012012-11-04 23:21:40 +1100652{
653 u_int i, found = 0;
654
655 debug3("%s: updating methods list after \"%s\"", __func__, method);
656 for (i = 0; i < authctxt->num_auth_methods; i++) {
Damien Miller91a55f22013-04-23 15:18:10 +1000657 if (!remove_method(&(authctxt->auth_methods[i]), method,
658 submethod))
Damien Millera6e3f012012-11-04 23:21:40 +1100659 continue;
660 found = 1;
661 if (*authctxt->auth_methods[i] == '\0') {
662 debug2("authentication methods list %d complete", i);
663 return 1;
664 }
665 debug3("authentication methods list %d remaining: \"%s\"",
666 i, authctxt->auth_methods[i]);
667 }
668 /* This should not happen, but would be bad if it did */
669 if (!found)
670 fatal("%s: method not in AuthenticationMethods", __func__);
671 return 0;
672}
673
djm@openbsd.org8f574952017-06-24 06:34:38 +0000674/* Reset method-specific information */
675void auth2_authctxt_reset_info(Authctxt *authctxt)
676{
677 sshkey_free(authctxt->auth_method_key);
678 free(authctxt->auth_method_info);
679 authctxt->auth_method_key = NULL;
680 authctxt->auth_method_info = NULL;
681}
682
683/* Record auth method-specific information for logs */
684void
685auth2_record_info(Authctxt *authctxt, const char *fmt, ...)
686{
687 va_list ap;
688 int i;
689
690 free(authctxt->auth_method_info);
691 authctxt->auth_method_info = NULL;
692
693 va_start(ap, fmt);
694 i = vasprintf(&authctxt->auth_method_info, fmt, ap);
695 va_end(ap);
696
697 if (i < 0 || authctxt->auth_method_info == NULL)
698 fatal("%s: vasprintf failed", __func__);
699}
700
701/*
702 * Records a public key used in authentication. This is used for logging
703 * and to ensure that the same key is not subsequently accepted again for
704 * multiple authentication.
705 */
706void
707auth2_record_key(Authctxt *authctxt, int authenticated,
708 const struct sshkey *key)
709{
710 struct sshkey **tmp, *dup;
711 int r;
712
djm@openbsd.org482d23b2018-09-13 02:08:33 +0000713 if ((r = sshkey_from_private(key, &dup)) != 0)
djm@openbsd.org8f574952017-06-24 06:34:38 +0000714 fatal("%s: copy key: %s", __func__, ssh_err(r));
715 sshkey_free(authctxt->auth_method_key);
716 authctxt->auth_method_key = dup;
717
718 if (!authenticated)
719 return;
720
721 /* If authenticated, make sure we don't accept this key again */
djm@openbsd.org482d23b2018-09-13 02:08:33 +0000722 if ((r = sshkey_from_private(key, &dup)) != 0)
djm@openbsd.org8f574952017-06-24 06:34:38 +0000723 fatal("%s: copy key: %s", __func__, ssh_err(r));
724 if (authctxt->nprev_keys >= INT_MAX ||
725 (tmp = recallocarray(authctxt->prev_keys, authctxt->nprev_keys,
726 authctxt->nprev_keys + 1, sizeof(*authctxt->prev_keys))) == NULL)
727 fatal("%s: reallocarray failed", __func__);
728 authctxt->prev_keys = tmp;
729 authctxt->prev_keys[authctxt->nprev_keys] = dup;
730 authctxt->nprev_keys++;
731
732}
733
734/* Checks whether a key has already been previously used for authentication */
735int
736auth2_key_already_used(Authctxt *authctxt, const struct sshkey *key)
737{
738 u_int i;
739 char *fp;
740
741 for (i = 0; i < authctxt->nprev_keys; i++) {
742 if (sshkey_equal_public(key, authctxt->prev_keys[i])) {
743 fp = sshkey_fingerprint(authctxt->prev_keys[i],
744 options.fingerprint_hash, SSH_FP_DEFAULT);
745 debug3("%s: key already used: %s %s", __func__,
746 sshkey_type(authctxt->prev_keys[i]),
747 fp == NULL ? "UNKNOWN" : fp);
748 free(fp);
749 return 1;
750 }
751 }
752 return 0;
753}
754
755/*
756 * Updates authctxt->session_info with details of authentication. Should be
757 * whenever an authentication method succeeds.
758 */
759void
760auth2_update_session_info(Authctxt *authctxt, const char *method,
761 const char *submethod)
762{
763 int r;
764
765 if (authctxt->session_info == NULL) {
766 if ((authctxt->session_info = sshbuf_new()) == NULL)
767 fatal("%s: sshbuf_new", __func__);
768 }
769
770 /* Append method[/submethod] */
771 if ((r = sshbuf_putf(authctxt->session_info, "%s%s%s",
772 method, submethod == NULL ? "" : "/",
773 submethod == NULL ? "" : submethod)) != 0)
774 fatal("%s: append method: %s", __func__, ssh_err(r));
775
776 /* Append key if present */
777 if (authctxt->auth_method_key != NULL) {
778 if ((r = sshbuf_put_u8(authctxt->session_info, ' ')) != 0 ||
779 (r = sshkey_format_text(authctxt->auth_method_key,
780 authctxt->session_info)) != 0)
781 fatal("%s: append key: %s", __func__, ssh_err(r));
782 }
783
784 if (authctxt->auth_method_info != NULL) {
785 /* Ensure no ambiguity here */
786 if (strchr(authctxt->auth_method_info, '\n') != NULL)
787 fatal("%s: auth_method_info contains \\n", __func__);
788 if ((r = sshbuf_put_u8(authctxt->session_info, ' ')) != 0 ||
789 (r = sshbuf_putf(authctxt->session_info, "%s",
790 authctxt->auth_method_info)) != 0) {
791 fatal("%s: append method info: %s",
792 __func__, ssh_err(r));
793 }
794 }
795 if ((r = sshbuf_put_u8(authctxt->session_info, '\n')) != 0)
796 fatal("%s: append: %s", __func__, ssh_err(r));
797}
Damien Millera6e3f012012-11-04 23:21:40 +1100798