blob: 67b6b05e8ca02770f415d80cd2bd3aec9b9591e0 [file] [log] [blame]
djm@openbsd.org14b5c632018-01-23 05:27:21 +00001/* $OpenBSD: auth2.c,v 1.144 2018/01/23 05:27:21 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>
Damien Miller9f2abc42006-07-10 20:53:08 +100038
Damien Miller0b4d48b2008-07-05 09:44:53 +100039#include "atomicio.h"
Darren Tucker43e7a352009-06-21 19:50:08 +100040#include "xmalloc.h"
Damien Millerd7834352006-08-05 12:39:39 +100041#include "ssh2.h"
Damien Millereba71ba2000-04-29 23:57:08 +100042#include "packet.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000043#include "log.h"
Damien Millerd7834352006-08-05 12:39:39 +100044#include "buffer.h"
Damien Miller7acefbb2014-07-18 14:11:24 +100045#include "misc.h"
Damien Millereba71ba2000-04-29 23:57:08 +100046#include "servconf.h"
47#include "compat.h"
Damien Millerd7834352006-08-05 12:39:39 +100048#include "key.h"
49#include "hostfile.h"
Damien Millereba71ba2000-04-29 23:57:08 +100050#include "auth.h"
Damien Millereba71ba2000-04-29 23:57:08 +100051#include "dispatch.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000052#include "pathnames.h"
Darren Tucker77fc29e2004-09-11 23:07:03 +100053#include "buffer.h"
Damien Millereba71ba2000-04-29 23:57:08 +100054
Darren Tucker0efd1552003-08-26 11:49:55 +100055#ifdef GSSAPI
56#include "ssh-gss.h"
57#endif
Damien Millerd7834352006-08-05 12:39:39 +100058#include "monitor_wrap.h"
djm@openbsd.org8f574952017-06-24 06:34:38 +000059#include "ssherr.h"
Darren Tucker0efd1552003-08-26 11:49:55 +100060
Damien Millereba71ba2000-04-29 23:57:08 +100061/* import */
62extern ServerOptions options;
Ben Lindstrom46c16222000-12-22 01:43:59 +000063extern u_char *session_id2;
Darren Tucker502d3842003-06-28 12:38:01 +100064extern u_int session_id2_len;
Darren Tucker77fc29e2004-09-11 23:07:03 +100065extern Buffer loginmsg;
Damien Millereba71ba2000-04-29 23:57:08 +100066
Ben Lindstrom511bb242002-06-06 20:52:37 +000067/* methods */
68
69extern Authmethod method_none;
70extern Authmethod method_pubkey;
71extern Authmethod method_passwd;
72extern Authmethod method_kbdint;
73extern Authmethod method_hostbased;
Darren Tucker0efd1552003-08-26 11:49:55 +100074#ifdef GSSAPI
75extern Authmethod method_gssapi;
76#endif
Ben Lindstrom511bb242002-06-06 20:52:37 +000077
78Authmethod *authmethods[] = {
79 &method_none,
80 &method_pubkey,
Darren Tucker0efd1552003-08-26 11:49:55 +100081#ifdef GSSAPI
82 &method_gssapi,
83#endif
Ben Lindstrom511bb242002-06-06 20:52:37 +000084 &method_passwd,
85 &method_kbdint,
86 &method_hostbased,
87 NULL
Damien Miller874d77b2000-10-14 16:23:11 +110088};
89
Damien Millereba71ba2000-04-29 23:57:08 +100090/* protocol */
91
markus@openbsd.org2ae666a2017-05-30 14:23:52 +000092static int input_service_request(int, u_int32_t, struct ssh *);
93static int input_userauth_request(int, u_int32_t, struct ssh *);
Damien Millereba71ba2000-04-29 23:57:08 +100094
Damien Millereba71ba2000-04-29 23:57:08 +100095/* helper */
Damien Millera6e3f012012-11-04 23:21:40 +110096static Authmethod *authmethod_lookup(Authctxt *, const char *);
97static char *authmethods_get(Authctxt *authctxt);
Damien Miller91a55f22013-04-23 15:18:10 +100098
99#define MATCH_NONE 0 /* method or submethod mismatch */
100#define MATCH_METHOD 1 /* method matches (no submethod specified) */
101#define MATCH_BOTH 2 /* method and submethod match */
102#define MATCH_PARTIAL 3 /* method matches, submethod can't be checked */
103static int list_starts_with(const char *, const char *, const char *);
Damien Millereba71ba2000-04-29 23:57:08 +1000104
Darren Tucker4230a5d2008-07-02 22:56:09 +1000105char *
106auth2_read_banner(void)
107{
108 struct stat st;
109 char *banner = NULL;
110 size_t len, n;
111 int fd;
112
113 if ((fd = open(options.banner, O_RDONLY)) == -1)
114 return (NULL);
115 if (fstat(fd, &st) == -1) {
116 close(fd);
117 return (NULL);
118 }
Damien Miller8ed4de82011-12-19 10:52:50 +1100119 if (st.st_size <= 0 || st.st_size > 1*1024*1024) {
Darren Tucker4230a5d2008-07-02 22:56:09 +1000120 close(fd);
121 return (NULL);
122 }
123
124 len = (size_t)st.st_size; /* truncate */
125 banner = xmalloc(len + 1);
126 n = atomicio(read, fd, banner, len);
127 close(fd);
128
129 if (n != len) {
Darren Tuckera627d422013-06-02 07:31:17 +1000130 free(banner);
Darren Tucker4230a5d2008-07-02 22:56:09 +1000131 return (NULL);
132 }
133 banner[n] = '\0';
134
135 return (banner);
136}
137
138void
139userauth_send_banner(const char *msg)
140{
Darren Tucker4230a5d2008-07-02 22:56:09 +1000141 packet_start(SSH2_MSG_USERAUTH_BANNER);
142 packet_put_cstring(msg);
143 packet_put_cstring(""); /* language, unused */
144 packet_send();
145 debug("%s: sent", __func__);
146}
147
148static void
149userauth_banner(void)
150{
151 char *banner = NULL;
152
djm@openbsd.org14b5c632018-01-23 05:27:21 +0000153 if (options.banner == NULL)
Darren Tucker4230a5d2008-07-02 22:56:09 +1000154 return;
155
156 if ((banner = PRIVSEP(auth2_read_banner())) == NULL)
157 goto done;
158 userauth_send_banner(banner);
159
160done:
Darren Tuckera627d422013-06-02 07:31:17 +1000161 free(banner);
Darren Tucker4230a5d2008-07-02 22:56:09 +1000162}
163
Damien Millereba71ba2000-04-29 23:57:08 +1000164/*
Damien Miller874d77b2000-10-14 16:23:11 +1100165 * loop until authctxt->success == TRUE
Damien Millereba71ba2000-04-29 23:57:08 +1000166 */
Darren Tucker3e33cec2003-10-02 16:12:36 +1000167void
168do_authentication2(Authctxt *authctxt)
Damien Millereba71ba2000-04-29 23:57:08 +1000169{
markus@openbsd.org5f4082d2017-05-30 14:18:15 +0000170 struct ssh *ssh = active_state; /* XXX */
171 ssh->authctxt = authctxt; /* XXX move to caller */
markus@openbsd.orgeb272ea2017-05-30 14:29:59 +0000172 ssh_dispatch_init(ssh, &dispatch_protocol_error);
173 ssh_dispatch_set(ssh, SSH2_MSG_SERVICE_REQUEST, &input_service_request);
markus@openbsd.org92e9fe62017-05-31 07:00:13 +0000174 ssh_dispatch_run_fatal(ssh, DISPATCH_BLOCK, &authctxt->success);
markus@openbsd.org5f4082d2017-05-30 14:18:15 +0000175 ssh->authctxt = NULL;
Damien Millereba71ba2000-04-29 23:57:08 +1000176}
177
Damien Miller91d4b122006-03-26 14:05:20 +1100178/*ARGSUSED*/
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +0000179static int
markus@openbsd.org2ae666a2017-05-30 14:23:52 +0000180input_service_request(int type, u_int32_t seq, struct ssh *ssh)
Damien Millereba71ba2000-04-29 23:57:08 +1000181{
markus@openbsd.org5f4082d2017-05-30 14:18:15 +0000182 Authctxt *authctxt = ssh->authctxt;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000183 u_int len;
Ben Lindstrom5a9d0ea2002-07-04 00:12:53 +0000184 int acceptit = 0;
Damien Millerda108ec2010-08-31 22:36:39 +1000185 char *service = packet_get_cstring(&len);
Damien Miller48b03fc2002-01-22 23:11:40 +1100186 packet_check_eom();
Damien Millereba71ba2000-04-29 23:57:08 +1000187
Damien Miller874d77b2000-10-14 16:23:11 +1100188 if (authctxt == NULL)
189 fatal("input_service_request: no authctxt");
190
Damien Millereba71ba2000-04-29 23:57:08 +1000191 if (strcmp(service, "ssh-userauth") == 0) {
Damien Miller874d77b2000-10-14 16:23:11 +1100192 if (!authctxt->success) {
Ben Lindstrom5a9d0ea2002-07-04 00:12:53 +0000193 acceptit = 1;
Damien Millereba71ba2000-04-29 23:57:08 +1000194 /* now we can handle user-auth requests */
markus@openbsd.orgeb272ea2017-05-30 14:29:59 +0000195 ssh_dispatch_set(ssh, SSH2_MSG_USERAUTH_REQUEST, &input_userauth_request);
Damien Millereba71ba2000-04-29 23:57:08 +1000196 }
197 }
198 /* XXX all other service requests are denied */
199
Ben Lindstrom5a9d0ea2002-07-04 00:12:53 +0000200 if (acceptit) {
Damien Millereba71ba2000-04-29 23:57:08 +1000201 packet_start(SSH2_MSG_SERVICE_ACCEPT);
202 packet_put_cstring(service);
203 packet_send();
204 packet_write_wait();
205 } else {
206 debug("bad service request %s", service);
207 packet_disconnect("bad service request %s", service);
208 }
Darren Tuckera627d422013-06-02 07:31:17 +1000209 free(service);
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +0000210 return 0;
Damien Millereba71ba2000-04-29 23:57:08 +1000211}
212
Damien Miller91d4b122006-03-26 14:05:20 +1100213/*ARGSUSED*/
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +0000214static int
markus@openbsd.org2ae666a2017-05-30 14:23:52 +0000215input_userauth_request(int type, u_int32_t seq, struct ssh *ssh)
Damien Millereba71ba2000-04-29 23:57:08 +1000216{
markus@openbsd.org5f4082d2017-05-30 14:18:15 +0000217 Authctxt *authctxt = ssh->authctxt;
Damien Miller874d77b2000-10-14 16:23:11 +1100218 Authmethod *m = NULL;
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000219 char *user, *service, *method, *style = NULL;
Damien Millereba71ba2000-04-29 23:57:08 +1000220 int authenticated = 0;
Damien Millereba71ba2000-04-29 23:57:08 +1000221
Damien Miller874d77b2000-10-14 16:23:11 +1100222 if (authctxt == NULL)
223 fatal("input_userauth_request: no authctxt");
Damien Millereba71ba2000-04-29 23:57:08 +1000224
Damien Millerda108ec2010-08-31 22:36:39 +1000225 user = packet_get_cstring(NULL);
226 service = packet_get_cstring(NULL);
227 method = packet_get_cstring(NULL);
Damien Miller874d77b2000-10-14 16:23:11 +1100228 debug("userauth-request for user %s service %s method %s", user, service, method);
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000229 debug("attempt %d failures %d", authctxt->attempt, authctxt->failures);
Damien Miller874d77b2000-10-14 16:23:11 +1100230
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000231 if ((style = strchr(user, ':')) != NULL)
232 *style++ = 0;
233
Kevin Stevesef4eea92001-02-05 12:42:17 +0000234 if (authctxt->attempt++ == 0) {
Damien Miller3a5b0232002-03-13 13:19:42 +1100235 /* setup auth context */
Kevin Steves205cc1e2002-03-22 20:43:05 +0000236 authctxt->pw = PRIVSEP(getpwnamallow(user));
Darren Tuckerdbf7a742004-03-08 23:04:06 +1100237 authctxt->user = xstrdup(user);
Kevin Steves205cc1e2002-03-22 20:43:05 +0000238 if (authctxt->pw && strcmp(service, "ssh-connection")==0) {
Damien Miller874d77b2000-10-14 16:23:11 +1100239 authctxt->valid = 1;
djm@openbsd.orgf1a19342017-02-03 23:05:57 +0000240 debug2("%s: setting up authctxt for %s",
241 __func__, user);
Damien Miller874d77b2000-10-14 16:23:11 +1100242 } else {
djm@openbsd.orgf1a19342017-02-03 23:05:57 +0000243 /* Invalid user, fake password information */
Damien Miller856f0be2003-09-03 07:32:45 +1000244 authctxt->pw = fakepw();
Darren Tucker2e0cf0d2005-02-08 21:52:47 +1100245#ifdef SSH_AUDIT_EVENTS
246 PRIVSEP(audit_event(SSH_INVALID_USER));
Darren Tucker269a1ea2005-02-03 00:20:53 +1100247#endif
Damien Miller874d77b2000-10-14 16:23:11 +1100248 }
Darren Tuckerd3eff2b2005-09-24 12:43:51 +1000249#ifdef USE_PAM
250 if (options.use_pam)
251 PRIVSEP(start_pam(authctxt));
252#endif
djm@openbsd.orgf1a19342017-02-03 23:05:57 +0000253 ssh_packet_set_log_preamble(ssh, "%suser %s",
254 authctxt->valid ? "authenticating " : "invalid ", user);
Damien Miller30d1f842004-07-21 20:48:53 +1000255 setproctitle("%s%s", authctxt->valid ? user : "unknown",
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000256 use_privsep ? " [net]" : "");
Damien Miller874d77b2000-10-14 16:23:11 +1100257 authctxt->service = xstrdup(service);
Ben Lindstrom9d0c0662001-06-09 01:40:00 +0000258 authctxt->style = style ? xstrdup(style) : NULL;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000259 if (use_privsep)
260 mm_inform_authserv(service, style);
Darren Tucker4230a5d2008-07-02 22:56:09 +1000261 userauth_banner();
Damien Millera6e3f012012-11-04 23:21:40 +1100262 if (auth2_setup_methods_lists(authctxt) != 0)
263 packet_disconnect("no authentication methods enabled");
Ben Lindstrom9d0c0662001-06-09 01:40:00 +0000264 } else if (strcmp(user, authctxt->user) != 0 ||
265 strcmp(service, authctxt->service) != 0) {
266 packet_disconnect("Change of username or service not allowed: "
267 "(%s,%s) -> (%s,%s)",
268 authctxt->user, authctxt->service, user, service);
Damien Millereba71ba2000-04-29 23:57:08 +1000269 }
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000270 /* reset state */
markus@openbsd.orgeb272ea2017-05-30 14:29:59 +0000271 auth2_challenge_stop(ssh);
Darren Tucker0efd1552003-08-26 11:49:55 +1000272
273#ifdef GSSAPI
Damien Miller01ed2272008-11-05 16:20:46 +1100274 /* XXX move to auth2_gssapi_stop() */
markus@openbsd.orgeb272ea2017-05-30 14:29:59 +0000275 ssh_dispatch_set(ssh, SSH2_MSG_USERAUTH_GSSAPI_TOKEN, NULL);
276 ssh_dispatch_set(ssh, SSH2_MSG_USERAUTH_GSSAPI_EXCHANGE_COMPLETE, NULL);
Darren Tucker0efd1552003-08-26 11:49:55 +1000277#endif
278
djm@openbsd.org8f574952017-06-24 06:34:38 +0000279 auth2_authctxt_reset_info(authctxt);
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000280 authctxt->postponed = 0;
Damien Miller3fcdfd52011-05-05 14:04:11 +1000281 authctxt->server_caused_failure = 0;
Damien Millerb70b61f2000-09-16 16:25:12 +1100282
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000283 /* try to authenticate user */
Damien Millera6e3f012012-11-04 23:21:40 +1100284 m = authmethod_lookup(authctxt, method);
Darren Tucker4230a5d2008-07-02 22:56:09 +1000285 if (m != NULL && authctxt->failures < options.max_authtries) {
Damien Miller874d77b2000-10-14 16:23:11 +1100286 debug2("input_userauth_request: try method %s", method);
markus@openbsd.orgeb272ea2017-05-30 14:29:59 +0000287 authenticated = m->userauth(ssh);
Damien Miller874d77b2000-10-14 16:23:11 +1100288 }
markus@openbsd.orgeb272ea2017-05-30 14:29:59 +0000289 userauth_finish(ssh, authenticated, method, NULL);
Damien Miller5d57e502001-03-30 10:48:31 +1000290
Darren Tuckera627d422013-06-02 07:31:17 +1000291 free(service);
292 free(user);
293 free(method);
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +0000294 return 0;
Damien Miller5d57e502001-03-30 10:48:31 +1000295}
296
297void
markus@openbsd.orgeb272ea2017-05-30 14:29:59 +0000298userauth_finish(struct ssh *ssh, int authenticated, const char *method,
Damien Miller15b05cf2012-12-03 09:53:20 +1100299 const char *submethod)
Damien Miller5d57e502001-03-30 10:48:31 +1000300{
markus@openbsd.orgeb272ea2017-05-30 14:29:59 +0000301 Authctxt *authctxt = ssh->authctxt;
Ben Lindstromcd4349f2001-06-09 00:23:17 +0000302 char *methods;
Damien Millera6e3f012012-11-04 23:21:40 +1100303 int partial = 0;
Ben Lindstromcd4349f2001-06-09 00:23:17 +0000304
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000305 if (!authctxt->valid && authenticated)
306 fatal("INTERNAL ERROR: authenticated invalid user %s",
307 authctxt->user);
Damien Miller15b05cf2012-12-03 09:53:20 +1100308 if (authenticated && authctxt->postponed)
309 fatal("INTERNAL ERROR: authenticated and postponed");
Damien Millerb70b61f2000-09-16 16:25:12 +1100310
Damien Miller874d77b2000-10-14 16:23:11 +1100311 /* Special handling for root */
Damien Miller556f9312003-02-24 11:59:26 +1100312 if (authenticated && authctxt->pw->pw_uid == 0 &&
Darren Tucker269a1ea2005-02-03 00:20:53 +1100313 !auth_root_allowed(method)) {
Damien Millereba71ba2000-04-29 23:57:08 +1000314 authenticated = 0;
Darren Tucker2e0cf0d2005-02-08 21:52:47 +1100315#ifdef SSH_AUDIT_EVENTS
316 PRIVSEP(audit_event(SSH_LOGIN_ROOT_DENIED));
Darren Tucker269a1ea2005-02-03 00:20:53 +1100317#endif
318 }
Damien Millereba71ba2000-04-29 23:57:08 +1000319
Damien Miller15b05cf2012-12-03 09:53:20 +1100320 if (authenticated && options.num_auth_methods != 0) {
Damien Miller91a55f22013-04-23 15:18:10 +1000321 if (!auth2_update_methods_lists(authctxt, method, submethod)) {
Damien Miller15b05cf2012-12-03 09:53:20 +1100322 authenticated = 0;
323 partial = 1;
324 }
325 }
326
327 /* Log before sending the reply */
Darren Tucker0acca372013-06-02 07:41:51 +1000328 auth_log(authctxt, authenticated, partial, method, submethod);
Damien Miller15b05cf2012-12-03 09:53:20 +1100329
djm@openbsd.org8f574952017-06-24 06:34:38 +0000330 /* Update information exposed to session */
331 if (authenticated || partial)
332 auth2_update_session_info(authctxt, method, submethod);
333
Damien Miller15b05cf2012-12-03 09:53:20 +1100334 if (authctxt->postponed)
335 return;
336
Damien Miller1f499fd2003-08-25 13:08:49 +1000337#ifdef USE_PAM
Darren Tucker77fc29e2004-09-11 23:07:03 +1000338 if (options.use_pam && authenticated) {
339 if (!PRIVSEP(do_pam_account())) {
Darren Tucker77fc29e2004-09-11 23:07:03 +1000340 /* if PAM returned a message, send it to the user */
341 if (buffer_len(&loginmsg) > 0) {
342 buffer_append(&loginmsg, "\0", 1);
343 userauth_send_banner(buffer_ptr(&loginmsg));
Darren Tuckerc1386672004-12-03 14:33:47 +1100344 packet_write_wait();
Darren Tucker77fc29e2004-09-11 23:07:03 +1000345 }
Darren Tuckerc1386672004-12-03 14:33:47 +1100346 fatal("Access denied for user %s by PAM account "
Damien Millerb6f72f52005-07-17 17:26:43 +1000347 "configuration", authctxt->user);
Darren Tucker77fc29e2004-09-11 23:07:03 +1000348 }
349 }
Damien Miller1f499fd2003-08-25 13:08:49 +1000350#endif
351
Tim Rice81ed5182002-09-25 17:38:46 -0700352#ifdef _UNICOS
353 if (authenticated && cray_access_denied(authctxt->user)) {
354 authenticated = 0;
Damien Miller15b05cf2012-12-03 09:53:20 +1100355 fatal("Access denied for user %s.", authctxt->user);
Tim Rice81ed5182002-09-25 17:38:46 -0700356 }
357#endif /* _UNICOS */
358
Ben Lindstromcd4349f2001-06-09 00:23:17 +0000359 if (authenticated == 1) {
360 /* turn off userauth */
markus@openbsd.orgeb272ea2017-05-30 14:29:59 +0000361 ssh_dispatch_set(ssh, SSH2_MSG_USERAUTH_REQUEST, &dispatch_protocol_ignore);
Ben Lindstromcd4349f2001-06-09 00:23:17 +0000362 packet_start(SSH2_MSG_USERAUTH_SUCCESS);
363 packet_send();
364 packet_write_wait();
365 /* now we can break out */
366 authctxt->success = 1;
djm@openbsd.orgf1a19342017-02-03 23:05:57 +0000367 ssh_packet_set_log_preamble(ssh, "user %s", authctxt->user);
Ben Lindstromcd4349f2001-06-09 00:23:17 +0000368 } else {
Damien Miller0b4d48b2008-07-05 09:44:53 +1000369
370 /* Allow initial try of "none" auth without failure penalty */
djm@openbsd.org058f8392014-12-18 23:58:04 +0000371 if (!partial && !authctxt->server_caused_failure &&
Damien Miller3fcdfd52011-05-05 14:04:11 +1000372 (authctxt->attempt > 1 || strcmp(method, "none") != 0))
Damien Miller0b4d48b2008-07-05 09:44:53 +1000373 authctxt->failures++;
374 if (authctxt->failures >= options.max_authtries) {
Darren Tucker2e0cf0d2005-02-08 21:52:47 +1100375#ifdef SSH_AUDIT_EVENTS
376 PRIVSEP(audit_event(SSH_LOGIN_EXCEED_MAXTRIES));
Darren Tucker269a1ea2005-02-03 00:20:53 +1100377#endif
Damien Miller686feb52014-07-03 21:29:38 +1000378 auth_maxtries_exceeded(authctxt);
Darren Tucker269a1ea2005-02-03 00:20:53 +1100379 }
Damien Millera6e3f012012-11-04 23:21:40 +1100380 methods = authmethods_get(authctxt);
381 debug3("%s: failure partial=%d next methods=\"%s\"", __func__,
382 partial, methods);
Ben Lindstromcd4349f2001-06-09 00:23:17 +0000383 packet_start(SSH2_MSG_USERAUTH_FAILURE);
384 packet_put_cstring(methods);
Damien Millera6e3f012012-11-04 23:21:40 +1100385 packet_put_char(partial);
Ben Lindstromcd4349f2001-06-09 00:23:17 +0000386 packet_send();
387 packet_write_wait();
Darren Tuckera627d422013-06-02 07:31:17 +1000388 free(methods);
Ben Lindstromcd4349f2001-06-09 00:23:17 +0000389 }
Damien Miller874d77b2000-10-14 16:23:11 +1100390}
391
Damien Millera6e3f012012-11-04 23:21:40 +1100392/*
393 * Checks whether method is allowed by at least one AuthenticationMethods
394 * methods list. Returns 1 if allowed, or no methods lists configured.
395 * 0 otherwise.
396 */
Damien Miller91a55f22013-04-23 15:18:10 +1000397int
398auth2_method_allowed(Authctxt *authctxt, const char *method,
399 const char *submethod)
Damien Millera6e3f012012-11-04 23:21:40 +1100400{
401 u_int i;
402
403 /*
404 * NB. authctxt->num_auth_methods might be zero as a result of
405 * auth2_setup_methods_lists(), so check the configuration.
406 */
407 if (options.num_auth_methods == 0)
408 return 1;
409 for (i = 0; i < authctxt->num_auth_methods; i++) {
Damien Miller91a55f22013-04-23 15:18:10 +1000410 if (list_starts_with(authctxt->auth_methods[i], method,
411 submethod) != MATCH_NONE)
Damien Millera6e3f012012-11-04 23:21:40 +1100412 return 1;
413 }
414 return 0;
415}
416
Ben Lindstrom79073822001-07-04 03:42:30 +0000417static char *
Damien Millera6e3f012012-11-04 23:21:40 +1100418authmethods_get(Authctxt *authctxt)
Damien Miller874d77b2000-10-14 16:23:11 +1100419{
Damien Miller0e3b8722002-01-22 23:26:38 +1100420 Buffer b;
Damien Miller874d77b2000-10-14 16:23:11 +1100421 char *list;
Damien Millera6e3f012012-11-04 23:21:40 +1100422 u_int i;
Damien Miller874d77b2000-10-14 16:23:11 +1100423
Damien Miller0e3b8722002-01-22 23:26:38 +1100424 buffer_init(&b);
Ben Lindstrom511bb242002-06-06 20:52:37 +0000425 for (i = 0; authmethods[i] != NULL; i++) {
426 if (strcmp(authmethods[i]->name, "none") == 0)
Damien Miller874d77b2000-10-14 16:23:11 +1100427 continue;
Damien Millera6e3f012012-11-04 23:21:40 +1100428 if (authmethods[i]->enabled == NULL ||
429 *(authmethods[i]->enabled) == 0)
430 continue;
Damien Miller91a55f22013-04-23 15:18:10 +1000431 if (!auth2_method_allowed(authctxt, authmethods[i]->name,
432 NULL))
Damien Millera6e3f012012-11-04 23:21:40 +1100433 continue;
434 if (buffer_len(&b) > 0)
435 buffer_append(&b, ",", 1);
436 buffer_append(&b, authmethods[i]->name,
437 strlen(authmethods[i]->name));
Damien Millereba71ba2000-04-29 23:57:08 +1000438 }
djm@openbsd.org1a31d022016-05-02 08:49:03 +0000439 if ((list = sshbuf_dup_string(&b)) == NULL)
440 fatal("%s: sshbuf_dup_string failed", __func__);
Damien Miller0e3b8722002-01-22 23:26:38 +1100441 buffer_free(&b);
Damien Miller874d77b2000-10-14 16:23:11 +1100442 return list;
443}
444
Ben Lindstrombba81212001-06-25 05:01:22 +0000445static Authmethod *
Damien Millera6e3f012012-11-04 23:21:40 +1100446authmethod_lookup(Authctxt *authctxt, const char *name)
Damien Miller874d77b2000-10-14 16:23:11 +1100447{
Ben Lindstrom511bb242002-06-06 20:52:37 +0000448 int i;
449
Damien Miller874d77b2000-10-14 16:23:11 +1100450 if (name != NULL)
Ben Lindstrom511bb242002-06-06 20:52:37 +0000451 for (i = 0; authmethods[i] != NULL; i++)
452 if (authmethods[i]->enabled != NULL &&
453 *(authmethods[i]->enabled) != 0 &&
Damien Millera6e3f012012-11-04 23:21:40 +1100454 strcmp(name, authmethods[i]->name) == 0 &&
Damien Miller91a55f22013-04-23 15:18:10 +1000455 auth2_method_allowed(authctxt,
456 authmethods[i]->name, NULL))
Ben Lindstrom511bb242002-06-06 20:52:37 +0000457 return authmethods[i];
458 debug2("Unrecognized authentication method name: %s",
459 name ? name : "NULL");
Damien Miller874d77b2000-10-14 16:23:11 +1100460 return NULL;
Damien Millereba71ba2000-04-29 23:57:08 +1000461}
Darren Tucker4230a5d2008-07-02 22:56:09 +1000462
Damien Millera6e3f012012-11-04 23:21:40 +1100463/*
464 * Check a comma-separated list of methods for validity. Is need_enable is
465 * non-zero, then also require that the methods are enabled.
466 * Returns 0 on success or -1 if the methods list is invalid.
467 */
468int
469auth2_methods_valid(const char *_methods, int need_enable)
470{
Damien Miller91a55f22013-04-23 15:18:10 +1000471 char *methods, *omethods, *method, *p;
Damien Millera6e3f012012-11-04 23:21:40 +1100472 u_int i, found;
473 int ret = -1;
474
475 if (*_methods == '\0') {
476 error("empty authentication method list");
477 return -1;
478 }
479 omethods = methods = xstrdup(_methods);
480 while ((method = strsep(&methods, ",")) != NULL) {
481 for (found = i = 0; !found && authmethods[i] != NULL; i++) {
Damien Miller91a55f22013-04-23 15:18:10 +1000482 if ((p = strchr(method, ':')) != NULL)
483 *p = '\0';
Damien Millera6e3f012012-11-04 23:21:40 +1100484 if (strcmp(method, authmethods[i]->name) != 0)
485 continue;
486 if (need_enable) {
487 if (authmethods[i]->enabled == NULL ||
488 *(authmethods[i]->enabled) == 0) {
489 error("Disabled method \"%s\" in "
490 "AuthenticationMethods list \"%s\"",
491 method, _methods);
492 goto out;
493 }
494 }
495 found = 1;
496 break;
497 }
498 if (!found) {
499 error("Unknown authentication method \"%s\" in list",
500 method);
501 goto out;
502 }
503 }
504 ret = 0;
505 out:
506 free(omethods);
507 return ret;
508}
509
510/*
511 * Prune the AuthenticationMethods supplied in the configuration, removing
512 * any methods lists that include disabled methods. Note that this might
513 * leave authctxt->num_auth_methods == 0, even when multiple required auth
514 * has been requested. For this reason, all tests for whether multiple is
515 * enabled should consult options.num_auth_methods directly.
516 */
517int
518auth2_setup_methods_lists(Authctxt *authctxt)
519{
520 u_int i;
521
522 if (options.num_auth_methods == 0)
523 return 0;
524 debug3("%s: checking methods", __func__);
525 authctxt->auth_methods = xcalloc(options.num_auth_methods,
526 sizeof(*authctxt->auth_methods));
527 authctxt->num_auth_methods = 0;
528 for (i = 0; i < options.num_auth_methods; i++) {
529 if (auth2_methods_valid(options.auth_methods[i], 1) != 0) {
530 logit("Authentication methods list \"%s\" contains "
531 "disabled method, skipping",
532 options.auth_methods[i]);
533 continue;
534 }
535 debug("authentication methods list %d: %s",
536 authctxt->num_auth_methods, options.auth_methods[i]);
537 authctxt->auth_methods[authctxt->num_auth_methods++] =
538 xstrdup(options.auth_methods[i]);
539 }
540 if (authctxt->num_auth_methods == 0) {
541 error("No AuthenticationMethods left after eliminating "
542 "disabled methods");
543 return -1;
544 }
545 return 0;
546}
547
548static int
Damien Miller91a55f22013-04-23 15:18:10 +1000549list_starts_with(const char *methods, const char *method,
550 const char *submethod)
Damien Millera6e3f012012-11-04 23:21:40 +1100551{
552 size_t l = strlen(method);
Damien Miller91a55f22013-04-23 15:18:10 +1000553 int match;
554 const char *p;
Damien Millera6e3f012012-11-04 23:21:40 +1100555
556 if (strncmp(methods, method, l) != 0)
Damien Miller91a55f22013-04-23 15:18:10 +1000557 return MATCH_NONE;
558 p = methods + l;
559 match = MATCH_METHOD;
560 if (*p == ':') {
561 if (!submethod)
562 return MATCH_PARTIAL;
563 l = strlen(submethod);
564 p += 1;
565 if (strncmp(submethod, p, l))
566 return MATCH_NONE;
567 p += l;
568 match = MATCH_BOTH;
569 }
570 if (*p != ',' && *p != '\0')
571 return MATCH_NONE;
572 return match;
Damien Millera6e3f012012-11-04 23:21:40 +1100573}
574
575/*
576 * Remove method from the start of a comma-separated list of methods.
577 * Returns 0 if the list of methods did not start with that method or 1
578 * if it did.
579 */
580static int
Damien Miller91a55f22013-04-23 15:18:10 +1000581remove_method(char **methods, const char *method, const char *submethod)
Damien Millera6e3f012012-11-04 23:21:40 +1100582{
Damien Miller91a55f22013-04-23 15:18:10 +1000583 char *omethods = *methods, *p;
Damien Millera6e3f012012-11-04 23:21:40 +1100584 size_t l = strlen(method);
Damien Miller91a55f22013-04-23 15:18:10 +1000585 int match;
Damien Millera6e3f012012-11-04 23:21:40 +1100586
Damien Miller91a55f22013-04-23 15:18:10 +1000587 match = list_starts_with(omethods, method, submethod);
588 if (match != MATCH_METHOD && match != MATCH_BOTH)
Damien Millera6e3f012012-11-04 23:21:40 +1100589 return 0;
Damien Miller91a55f22013-04-23 15:18:10 +1000590 p = omethods + l;
591 if (submethod && match == MATCH_BOTH)
592 p += 1 + strlen(submethod); /* include colon */
593 if (*p == ',')
594 p++;
595 *methods = xstrdup(p);
Damien Millera6e3f012012-11-04 23:21:40 +1100596 free(omethods);
597 return 1;
598}
599
600/*
601 * Called after successful authentication. Will remove the successful method
602 * from the start of each list in which it occurs. If it was the last method
603 * in any list, then authentication is deemed successful.
604 * Returns 1 if the method completed any authentication list or 0 otherwise.
605 */
606int
Damien Miller91a55f22013-04-23 15:18:10 +1000607auth2_update_methods_lists(Authctxt *authctxt, const char *method,
608 const char *submethod)
Damien Millera6e3f012012-11-04 23:21:40 +1100609{
610 u_int i, found = 0;
611
612 debug3("%s: updating methods list after \"%s\"", __func__, method);
613 for (i = 0; i < authctxt->num_auth_methods; i++) {
Damien Miller91a55f22013-04-23 15:18:10 +1000614 if (!remove_method(&(authctxt->auth_methods[i]), method,
615 submethod))
Damien Millera6e3f012012-11-04 23:21:40 +1100616 continue;
617 found = 1;
618 if (*authctxt->auth_methods[i] == '\0') {
619 debug2("authentication methods list %d complete", i);
620 return 1;
621 }
622 debug3("authentication methods list %d remaining: \"%s\"",
623 i, authctxt->auth_methods[i]);
624 }
625 /* This should not happen, but would be bad if it did */
626 if (!found)
627 fatal("%s: method not in AuthenticationMethods", __func__);
628 return 0;
629}
630
djm@openbsd.org8f574952017-06-24 06:34:38 +0000631/* Reset method-specific information */
632void auth2_authctxt_reset_info(Authctxt *authctxt)
633{
634 sshkey_free(authctxt->auth_method_key);
635 free(authctxt->auth_method_info);
636 authctxt->auth_method_key = NULL;
637 authctxt->auth_method_info = NULL;
638}
639
640/* Record auth method-specific information for logs */
641void
642auth2_record_info(Authctxt *authctxt, const char *fmt, ...)
643{
644 va_list ap;
645 int i;
646
647 free(authctxt->auth_method_info);
648 authctxt->auth_method_info = NULL;
649
650 va_start(ap, fmt);
651 i = vasprintf(&authctxt->auth_method_info, fmt, ap);
652 va_end(ap);
653
654 if (i < 0 || authctxt->auth_method_info == NULL)
655 fatal("%s: vasprintf failed", __func__);
656}
657
658/*
659 * Records a public key used in authentication. This is used for logging
660 * and to ensure that the same key is not subsequently accepted again for
661 * multiple authentication.
662 */
663void
664auth2_record_key(Authctxt *authctxt, int authenticated,
665 const struct sshkey *key)
666{
667 struct sshkey **tmp, *dup;
668 int r;
669
670 if ((r = sshkey_demote(key, &dup)) != 0)
671 fatal("%s: copy key: %s", __func__, ssh_err(r));
672 sshkey_free(authctxt->auth_method_key);
673 authctxt->auth_method_key = dup;
674
675 if (!authenticated)
676 return;
677
678 /* If authenticated, make sure we don't accept this key again */
679 if ((r = sshkey_demote(key, &dup)) != 0)
680 fatal("%s: copy key: %s", __func__, ssh_err(r));
681 if (authctxt->nprev_keys >= INT_MAX ||
682 (tmp = recallocarray(authctxt->prev_keys, authctxt->nprev_keys,
683 authctxt->nprev_keys + 1, sizeof(*authctxt->prev_keys))) == NULL)
684 fatal("%s: reallocarray failed", __func__);
685 authctxt->prev_keys = tmp;
686 authctxt->prev_keys[authctxt->nprev_keys] = dup;
687 authctxt->nprev_keys++;
688
689}
690
691/* Checks whether a key has already been previously used for authentication */
692int
693auth2_key_already_used(Authctxt *authctxt, const struct sshkey *key)
694{
695 u_int i;
696 char *fp;
697
698 for (i = 0; i < authctxt->nprev_keys; i++) {
699 if (sshkey_equal_public(key, authctxt->prev_keys[i])) {
700 fp = sshkey_fingerprint(authctxt->prev_keys[i],
701 options.fingerprint_hash, SSH_FP_DEFAULT);
702 debug3("%s: key already used: %s %s", __func__,
703 sshkey_type(authctxt->prev_keys[i]),
704 fp == NULL ? "UNKNOWN" : fp);
705 free(fp);
706 return 1;
707 }
708 }
709 return 0;
710}
711
712/*
713 * Updates authctxt->session_info with details of authentication. Should be
714 * whenever an authentication method succeeds.
715 */
716void
717auth2_update_session_info(Authctxt *authctxt, const char *method,
718 const char *submethod)
719{
720 int r;
721
722 if (authctxt->session_info == NULL) {
723 if ((authctxt->session_info = sshbuf_new()) == NULL)
724 fatal("%s: sshbuf_new", __func__);
725 }
726
727 /* Append method[/submethod] */
728 if ((r = sshbuf_putf(authctxt->session_info, "%s%s%s",
729 method, submethod == NULL ? "" : "/",
730 submethod == NULL ? "" : submethod)) != 0)
731 fatal("%s: append method: %s", __func__, ssh_err(r));
732
733 /* Append key if present */
734 if (authctxt->auth_method_key != NULL) {
735 if ((r = sshbuf_put_u8(authctxt->session_info, ' ')) != 0 ||
736 (r = sshkey_format_text(authctxt->auth_method_key,
737 authctxt->session_info)) != 0)
738 fatal("%s: append key: %s", __func__, ssh_err(r));
739 }
740
741 if (authctxt->auth_method_info != NULL) {
742 /* Ensure no ambiguity here */
743 if (strchr(authctxt->auth_method_info, '\n') != NULL)
744 fatal("%s: auth_method_info contains \\n", __func__);
745 if ((r = sshbuf_put_u8(authctxt->session_info, ' ')) != 0 ||
746 (r = sshbuf_putf(authctxt->session_info, "%s",
747 authctxt->auth_method_info)) != 0) {
748 fatal("%s: append method info: %s",
749 __func__, ssh_err(r));
750 }
751 }
752 if ((r = sshbuf_put_u8(authctxt->session_info, '\n')) != 0)
753 fatal("%s: append: %s", __func__, ssh_err(r));
754}
Damien Millera6e3f012012-11-04 23:21:40 +1100755