djm@openbsd.org | 1a31d02 | 2016-05-02 08:49:03 +0000 | [diff] [blame] | 1 | /* $OpenBSD: auth2.c,v 1.136 2016/05/02 08:49:03 djm Exp $ */ |
Damien Miller | eba71ba | 2000-04-29 23:57:08 +1000 | [diff] [blame] | 2 | /* |
| 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 Miller | eba71ba | 2000-04-29 23:57:08 +1000 | [diff] [blame] | 13 | * |
| 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 Miller | e4340be | 2000-09-16 13:29:08 +1100 | [diff] [blame] | 25 | |
Damien Miller | eba71ba | 2000-04-29 23:57:08 +1000 | [diff] [blame] | 26 | #include "includes.h" |
Damien Miller | eba71ba | 2000-04-29 23:57:08 +1000 | [diff] [blame] | 27 | |
Damien Miller | 9f2abc4 | 2006-07-10 20:53:08 +1000 | [diff] [blame] | 28 | #include <sys/types.h> |
Darren Tucker | 4230a5d | 2008-07-02 22:56:09 +1000 | [diff] [blame] | 29 | #include <sys/stat.h> |
| 30 | #include <sys/uio.h> |
Damien Miller | 9f2abc4 | 2006-07-10 20:53:08 +1000 | [diff] [blame] | 31 | |
Darren Tucker | 4230a5d | 2008-07-02 22:56:09 +1000 | [diff] [blame] | 32 | #include <fcntl.h> |
Damien Miller | 9f2abc4 | 2006-07-10 20:53:08 +1000 | [diff] [blame] | 33 | #include <pwd.h> |
Damien Miller | d783435 | 2006-08-05 12:39:39 +1000 | [diff] [blame] | 34 | #include <stdarg.h> |
Damien Miller | e3476ed | 2006-07-24 14:13:33 +1000 | [diff] [blame] | 35 | #include <string.h> |
Darren Tucker | 4230a5d | 2008-07-02 22:56:09 +1000 | [diff] [blame] | 36 | #include <unistd.h> |
Damien Miller | 9f2abc4 | 2006-07-10 20:53:08 +1000 | [diff] [blame] | 37 | |
Damien Miller | 0b4d48b | 2008-07-05 09:44:53 +1000 | [diff] [blame] | 38 | #include "atomicio.h" |
Darren Tucker | 43e7a35 | 2009-06-21 19:50:08 +1000 | [diff] [blame] | 39 | #include "xmalloc.h" |
Damien Miller | d783435 | 2006-08-05 12:39:39 +1000 | [diff] [blame] | 40 | #include "ssh2.h" |
Damien Miller | eba71ba | 2000-04-29 23:57:08 +1000 | [diff] [blame] | 41 | #include "packet.h" |
Ben Lindstrom | 226cfa0 | 2001-01-22 05:34:40 +0000 | [diff] [blame] | 42 | #include "log.h" |
Damien Miller | d783435 | 2006-08-05 12:39:39 +1000 | [diff] [blame] | 43 | #include "buffer.h" |
Damien Miller | 7acefbb | 2014-07-18 14:11:24 +1000 | [diff] [blame] | 44 | #include "misc.h" |
Damien Miller | eba71ba | 2000-04-29 23:57:08 +1000 | [diff] [blame] | 45 | #include "servconf.h" |
| 46 | #include "compat.h" |
Damien Miller | d783435 | 2006-08-05 12:39:39 +1000 | [diff] [blame] | 47 | #include "key.h" |
| 48 | #include "hostfile.h" |
Damien Miller | eba71ba | 2000-04-29 23:57:08 +1000 | [diff] [blame] | 49 | #include "auth.h" |
Damien Miller | eba71ba | 2000-04-29 23:57:08 +1000 | [diff] [blame] | 50 | #include "dispatch.h" |
Ben Lindstrom | 226cfa0 | 2001-01-22 05:34:40 +0000 | [diff] [blame] | 51 | #include "pathnames.h" |
Darren Tucker | 77fc29e | 2004-09-11 23:07:03 +1000 | [diff] [blame] | 52 | #include "buffer.h" |
Damien Miller | eba71ba | 2000-04-29 23:57:08 +1000 | [diff] [blame] | 53 | |
Darren Tucker | 0efd155 | 2003-08-26 11:49:55 +1000 | [diff] [blame] | 54 | #ifdef GSSAPI |
| 55 | #include "ssh-gss.h" |
| 56 | #endif |
Damien Miller | d783435 | 2006-08-05 12:39:39 +1000 | [diff] [blame] | 57 | #include "monitor_wrap.h" |
Darren Tucker | 0efd155 | 2003-08-26 11:49:55 +1000 | [diff] [blame] | 58 | |
Damien Miller | eba71ba | 2000-04-29 23:57:08 +1000 | [diff] [blame] | 59 | /* import */ |
| 60 | extern ServerOptions options; |
Ben Lindstrom | 46c1622 | 2000-12-22 01:43:59 +0000 | [diff] [blame] | 61 | extern u_char *session_id2; |
Darren Tucker | 502d384 | 2003-06-28 12:38:01 +1000 | [diff] [blame] | 62 | extern u_int session_id2_len; |
Darren Tucker | 77fc29e | 2004-09-11 23:07:03 +1000 | [diff] [blame] | 63 | extern Buffer loginmsg; |
Damien Miller | eba71ba | 2000-04-29 23:57:08 +1000 | [diff] [blame] | 64 | |
Ben Lindstrom | 511bb24 | 2002-06-06 20:52:37 +0000 | [diff] [blame] | 65 | /* methods */ |
| 66 | |
| 67 | extern Authmethod method_none; |
| 68 | extern Authmethod method_pubkey; |
| 69 | extern Authmethod method_passwd; |
| 70 | extern Authmethod method_kbdint; |
| 71 | extern Authmethod method_hostbased; |
Darren Tucker | 0efd155 | 2003-08-26 11:49:55 +1000 | [diff] [blame] | 72 | #ifdef GSSAPI |
| 73 | extern Authmethod method_gssapi; |
| 74 | #endif |
Ben Lindstrom | 511bb24 | 2002-06-06 20:52:37 +0000 | [diff] [blame] | 75 | |
| 76 | Authmethod *authmethods[] = { |
| 77 | &method_none, |
| 78 | &method_pubkey, |
Darren Tucker | 0efd155 | 2003-08-26 11:49:55 +1000 | [diff] [blame] | 79 | #ifdef GSSAPI |
| 80 | &method_gssapi, |
| 81 | #endif |
Ben Lindstrom | 511bb24 | 2002-06-06 20:52:37 +0000 | [diff] [blame] | 82 | &method_passwd, |
| 83 | &method_kbdint, |
| 84 | &method_hostbased, |
| 85 | NULL |
Damien Miller | 874d77b | 2000-10-14 16:23:11 +1100 | [diff] [blame] | 86 | }; |
| 87 | |
Damien Miller | eba71ba | 2000-04-29 23:57:08 +1000 | [diff] [blame] | 88 | /* protocol */ |
| 89 | |
markus@openbsd.org | 3fdc88a | 2015-01-19 20:07:45 +0000 | [diff] [blame] | 90 | static int input_service_request(int, u_int32_t, void *); |
| 91 | static int input_userauth_request(int, u_int32_t, void *); |
Damien Miller | eba71ba | 2000-04-29 23:57:08 +1000 | [diff] [blame] | 92 | |
Damien Miller | eba71ba | 2000-04-29 23:57:08 +1000 | [diff] [blame] | 93 | /* helper */ |
Damien Miller | a6e3f01 | 2012-11-04 23:21:40 +1100 | [diff] [blame] | 94 | static Authmethod *authmethod_lookup(Authctxt *, const char *); |
| 95 | static char *authmethods_get(Authctxt *authctxt); |
Damien Miller | 91a55f2 | 2013-04-23 15:18:10 +1000 | [diff] [blame] | 96 | |
| 97 | #define MATCH_NONE 0 /* method or submethod mismatch */ |
| 98 | #define MATCH_METHOD 1 /* method matches (no submethod specified) */ |
| 99 | #define MATCH_BOTH 2 /* method and submethod match */ |
| 100 | #define MATCH_PARTIAL 3 /* method matches, submethod can't be checked */ |
| 101 | static int list_starts_with(const char *, const char *, const char *); |
Damien Miller | eba71ba | 2000-04-29 23:57:08 +1000 | [diff] [blame] | 102 | |
Darren Tucker | 4230a5d | 2008-07-02 22:56:09 +1000 | [diff] [blame] | 103 | char * |
| 104 | auth2_read_banner(void) |
| 105 | { |
| 106 | struct stat st; |
| 107 | char *banner = NULL; |
| 108 | size_t len, n; |
| 109 | int fd; |
| 110 | |
| 111 | if ((fd = open(options.banner, O_RDONLY)) == -1) |
| 112 | return (NULL); |
| 113 | if (fstat(fd, &st) == -1) { |
| 114 | close(fd); |
| 115 | return (NULL); |
| 116 | } |
Damien Miller | 8ed4de8 | 2011-12-19 10:52:50 +1100 | [diff] [blame] | 117 | if (st.st_size <= 0 || st.st_size > 1*1024*1024) { |
Darren Tucker | 4230a5d | 2008-07-02 22:56:09 +1000 | [diff] [blame] | 118 | close(fd); |
| 119 | return (NULL); |
| 120 | } |
| 121 | |
| 122 | len = (size_t)st.st_size; /* truncate */ |
| 123 | banner = xmalloc(len + 1); |
| 124 | n = atomicio(read, fd, banner, len); |
| 125 | close(fd); |
| 126 | |
| 127 | if (n != len) { |
Darren Tucker | a627d42 | 2013-06-02 07:31:17 +1000 | [diff] [blame] | 128 | free(banner); |
Darren Tucker | 4230a5d | 2008-07-02 22:56:09 +1000 | [diff] [blame] | 129 | return (NULL); |
| 130 | } |
| 131 | banner[n] = '\0'; |
| 132 | |
| 133 | return (banner); |
| 134 | } |
| 135 | |
| 136 | void |
| 137 | userauth_send_banner(const char *msg) |
| 138 | { |
| 139 | if (datafellows & SSH_BUG_BANNER) |
| 140 | return; |
| 141 | |
| 142 | packet_start(SSH2_MSG_USERAUTH_BANNER); |
| 143 | packet_put_cstring(msg); |
| 144 | packet_put_cstring(""); /* language, unused */ |
| 145 | packet_send(); |
| 146 | debug("%s: sent", __func__); |
| 147 | } |
| 148 | |
| 149 | static void |
| 150 | userauth_banner(void) |
| 151 | { |
| 152 | char *banner = NULL; |
| 153 | |
djm@openbsd.org | 161cf41 | 2014-12-22 07:55:51 +0000 | [diff] [blame] | 154 | if (options.banner == NULL || (datafellows & SSH_BUG_BANNER) != 0) |
Darren Tucker | 4230a5d | 2008-07-02 22:56:09 +1000 | [diff] [blame] | 155 | return; |
| 156 | |
| 157 | if ((banner = PRIVSEP(auth2_read_banner())) == NULL) |
| 158 | goto done; |
| 159 | userauth_send_banner(banner); |
| 160 | |
| 161 | done: |
Darren Tucker | a627d42 | 2013-06-02 07:31:17 +1000 | [diff] [blame] | 162 | free(banner); |
Darren Tucker | 4230a5d | 2008-07-02 22:56:09 +1000 | [diff] [blame] | 163 | } |
| 164 | |
Damien Miller | eba71ba | 2000-04-29 23:57:08 +1000 | [diff] [blame] | 165 | /* |
Damien Miller | 874d77b | 2000-10-14 16:23:11 +1100 | [diff] [blame] | 166 | * loop until authctxt->success == TRUE |
Damien Miller | eba71ba | 2000-04-29 23:57:08 +1000 | [diff] [blame] | 167 | */ |
Darren Tucker | 3e33cec | 2003-10-02 16:12:36 +1000 | [diff] [blame] | 168 | void |
| 169 | do_authentication2(Authctxt *authctxt) |
Damien Miller | eba71ba | 2000-04-29 23:57:08 +1000 | [diff] [blame] | 170 | { |
Damien Miller | 7d05339 | 2002-01-22 23:24:13 +1100 | [diff] [blame] | 171 | dispatch_init(&dispatch_protocol_error); |
Damien Miller | eba71ba | 2000-04-29 23:57:08 +1000 | [diff] [blame] | 172 | dispatch_set(SSH2_MSG_SERVICE_REQUEST, &input_service_request); |
Damien Miller | 874d77b | 2000-10-14 16:23:11 +1100 | [diff] [blame] | 173 | dispatch_run(DISPATCH_BLOCK, &authctxt->success, authctxt); |
Damien Miller | eba71ba | 2000-04-29 23:57:08 +1000 | [diff] [blame] | 174 | } |
| 175 | |
Damien Miller | 91d4b12 | 2006-03-26 14:05:20 +1100 | [diff] [blame] | 176 | /*ARGSUSED*/ |
markus@openbsd.org | 3fdc88a | 2015-01-19 20:07:45 +0000 | [diff] [blame] | 177 | static int |
Damien Miller | 630d6f4 | 2002-01-22 23:17:30 +1100 | [diff] [blame] | 178 | input_service_request(int type, u_int32_t seq, void *ctxt) |
Damien Miller | eba71ba | 2000-04-29 23:57:08 +1000 | [diff] [blame] | 179 | { |
Damien Miller | 874d77b | 2000-10-14 16:23:11 +1100 | [diff] [blame] | 180 | Authctxt *authctxt = ctxt; |
Ben Lindstrom | 46c1622 | 2000-12-22 01:43:59 +0000 | [diff] [blame] | 181 | u_int len; |
Ben Lindstrom | 5a9d0ea | 2002-07-04 00:12:53 +0000 | [diff] [blame] | 182 | int acceptit = 0; |
Damien Miller | da108ec | 2010-08-31 22:36:39 +1000 | [diff] [blame] | 183 | char *service = packet_get_cstring(&len); |
Damien Miller | 48b03fc | 2002-01-22 23:11:40 +1100 | [diff] [blame] | 184 | packet_check_eom(); |
Damien Miller | eba71ba | 2000-04-29 23:57:08 +1000 | [diff] [blame] | 185 | |
Damien Miller | 874d77b | 2000-10-14 16:23:11 +1100 | [diff] [blame] | 186 | if (authctxt == NULL) |
| 187 | fatal("input_service_request: no authctxt"); |
| 188 | |
Damien Miller | eba71ba | 2000-04-29 23:57:08 +1000 | [diff] [blame] | 189 | if (strcmp(service, "ssh-userauth") == 0) { |
Damien Miller | 874d77b | 2000-10-14 16:23:11 +1100 | [diff] [blame] | 190 | if (!authctxt->success) { |
Ben Lindstrom | 5a9d0ea | 2002-07-04 00:12:53 +0000 | [diff] [blame] | 191 | acceptit = 1; |
Damien Miller | eba71ba | 2000-04-29 23:57:08 +1000 | [diff] [blame] | 192 | /* now we can handle user-auth requests */ |
| 193 | dispatch_set(SSH2_MSG_USERAUTH_REQUEST, &input_userauth_request); |
| 194 | } |
| 195 | } |
| 196 | /* XXX all other service requests are denied */ |
| 197 | |
Ben Lindstrom | 5a9d0ea | 2002-07-04 00:12:53 +0000 | [diff] [blame] | 198 | if (acceptit) { |
Damien Miller | eba71ba | 2000-04-29 23:57:08 +1000 | [diff] [blame] | 199 | packet_start(SSH2_MSG_SERVICE_ACCEPT); |
| 200 | packet_put_cstring(service); |
| 201 | packet_send(); |
| 202 | packet_write_wait(); |
| 203 | } else { |
| 204 | debug("bad service request %s", service); |
| 205 | packet_disconnect("bad service request %s", service); |
| 206 | } |
Darren Tucker | a627d42 | 2013-06-02 07:31:17 +1000 | [diff] [blame] | 207 | free(service); |
markus@openbsd.org | 3fdc88a | 2015-01-19 20:07:45 +0000 | [diff] [blame] | 208 | return 0; |
Damien Miller | eba71ba | 2000-04-29 23:57:08 +1000 | [diff] [blame] | 209 | } |
| 210 | |
Damien Miller | 91d4b12 | 2006-03-26 14:05:20 +1100 | [diff] [blame] | 211 | /*ARGSUSED*/ |
markus@openbsd.org | 3fdc88a | 2015-01-19 20:07:45 +0000 | [diff] [blame] | 212 | static int |
Damien Miller | 630d6f4 | 2002-01-22 23:17:30 +1100 | [diff] [blame] | 213 | input_userauth_request(int type, u_int32_t seq, void *ctxt) |
Damien Miller | eba71ba | 2000-04-29 23:57:08 +1000 | [diff] [blame] | 214 | { |
Damien Miller | 874d77b | 2000-10-14 16:23:11 +1100 | [diff] [blame] | 215 | Authctxt *authctxt = ctxt; |
| 216 | Authmethod *m = NULL; |
Ben Lindstrom | db65e8f | 2001-01-19 04:26:52 +0000 | [diff] [blame] | 217 | char *user, *service, *method, *style = NULL; |
Damien Miller | eba71ba | 2000-04-29 23:57:08 +1000 | [diff] [blame] | 218 | int authenticated = 0; |
Damien Miller | eba71ba | 2000-04-29 23:57:08 +1000 | [diff] [blame] | 219 | |
Damien Miller | 874d77b | 2000-10-14 16:23:11 +1100 | [diff] [blame] | 220 | if (authctxt == NULL) |
| 221 | fatal("input_userauth_request: no authctxt"); |
Damien Miller | eba71ba | 2000-04-29 23:57:08 +1000 | [diff] [blame] | 222 | |
Damien Miller | da108ec | 2010-08-31 22:36:39 +1000 | [diff] [blame] | 223 | user = packet_get_cstring(NULL); |
| 224 | service = packet_get_cstring(NULL); |
| 225 | method = packet_get_cstring(NULL); |
Damien Miller | 874d77b | 2000-10-14 16:23:11 +1100 | [diff] [blame] | 226 | debug("userauth-request for user %s service %s method %s", user, service, method); |
Ben Lindstrom | 4dccfa5 | 2000-12-28 16:40:05 +0000 | [diff] [blame] | 227 | debug("attempt %d failures %d", authctxt->attempt, authctxt->failures); |
Damien Miller | 874d77b | 2000-10-14 16:23:11 +1100 | [diff] [blame] | 228 | |
Ben Lindstrom | db65e8f | 2001-01-19 04:26:52 +0000 | [diff] [blame] | 229 | if ((style = strchr(user, ':')) != NULL) |
| 230 | *style++ = 0; |
| 231 | |
Kevin Steves | ef4eea9 | 2001-02-05 12:42:17 +0000 | [diff] [blame] | 232 | if (authctxt->attempt++ == 0) { |
Damien Miller | 3a5b023 | 2002-03-13 13:19:42 +1100 | [diff] [blame] | 233 | /* setup auth context */ |
Kevin Steves | 205cc1e | 2002-03-22 20:43:05 +0000 | [diff] [blame] | 234 | authctxt->pw = PRIVSEP(getpwnamallow(user)); |
Darren Tucker | dbf7a74 | 2004-03-08 23:04:06 +1100 | [diff] [blame] | 235 | authctxt->user = xstrdup(user); |
Kevin Steves | 205cc1e | 2002-03-22 20:43:05 +0000 | [diff] [blame] | 236 | if (authctxt->pw && strcmp(service, "ssh-connection")==0) { |
Damien Miller | 874d77b | 2000-10-14 16:23:11 +1100 | [diff] [blame] | 237 | authctxt->valid = 1; |
| 238 | debug2("input_userauth_request: setting up authctxt for %s", user); |
Damien Miller | 874d77b | 2000-10-14 16:23:11 +1100 | [diff] [blame] | 239 | } else { |
Darren Tucker | 5cb30ad | 2004-08-12 22:40:24 +1000 | [diff] [blame] | 240 | logit("input_userauth_request: invalid user %s", user); |
Damien Miller | 856f0be | 2003-09-03 07:32:45 +1000 | [diff] [blame] | 241 | authctxt->pw = fakepw(); |
Darren Tucker | 2e0cf0d | 2005-02-08 21:52:47 +1100 | [diff] [blame] | 242 | #ifdef SSH_AUDIT_EVENTS |
| 243 | PRIVSEP(audit_event(SSH_INVALID_USER)); |
Darren Tucker | 269a1ea | 2005-02-03 00:20:53 +1100 | [diff] [blame] | 244 | #endif |
Damien Miller | 874d77b | 2000-10-14 16:23:11 +1100 | [diff] [blame] | 245 | } |
Darren Tucker | d3eff2b | 2005-09-24 12:43:51 +1000 | [diff] [blame] | 246 | #ifdef USE_PAM |
| 247 | if (options.use_pam) |
| 248 | PRIVSEP(start_pam(authctxt)); |
| 249 | #endif |
Damien Miller | 30d1f84 | 2004-07-21 20:48:53 +1000 | [diff] [blame] | 250 | setproctitle("%s%s", authctxt->valid ? user : "unknown", |
Ben Lindstrom | 7a2073c | 2002-03-22 02:30:41 +0000 | [diff] [blame] | 251 | use_privsep ? " [net]" : ""); |
Damien Miller | 874d77b | 2000-10-14 16:23:11 +1100 | [diff] [blame] | 252 | authctxt->service = xstrdup(service); |
Ben Lindstrom | 9d0c066 | 2001-06-09 01:40:00 +0000 | [diff] [blame] | 253 | authctxt->style = style ? xstrdup(style) : NULL; |
Ben Lindstrom | 7a2073c | 2002-03-22 02:30:41 +0000 | [diff] [blame] | 254 | if (use_privsep) |
| 255 | mm_inform_authserv(service, style); |
Darren Tucker | 4230a5d | 2008-07-02 22:56:09 +1000 | [diff] [blame] | 256 | userauth_banner(); |
Damien Miller | a6e3f01 | 2012-11-04 23:21:40 +1100 | [diff] [blame] | 257 | if (auth2_setup_methods_lists(authctxt) != 0) |
| 258 | packet_disconnect("no authentication methods enabled"); |
Ben Lindstrom | 9d0c066 | 2001-06-09 01:40:00 +0000 | [diff] [blame] | 259 | } else if (strcmp(user, authctxt->user) != 0 || |
| 260 | strcmp(service, authctxt->service) != 0) { |
| 261 | packet_disconnect("Change of username or service not allowed: " |
| 262 | "(%s,%s) -> (%s,%s)", |
| 263 | authctxt->user, authctxt->service, user, service); |
Damien Miller | eba71ba | 2000-04-29 23:57:08 +1000 | [diff] [blame] | 264 | } |
Ben Lindstrom | db65e8f | 2001-01-19 04:26:52 +0000 | [diff] [blame] | 265 | /* reset state */ |
Damien Miller | ee11625 | 2001-12-21 12:42:34 +1100 | [diff] [blame] | 266 | auth2_challenge_stop(authctxt); |
Darren Tucker | 0efd155 | 2003-08-26 11:49:55 +1000 | [diff] [blame] | 267 | |
| 268 | #ifdef GSSAPI |
Damien Miller | 01ed227 | 2008-11-05 16:20:46 +1100 | [diff] [blame] | 269 | /* XXX move to auth2_gssapi_stop() */ |
Darren Tucker | 0efd155 | 2003-08-26 11:49:55 +1000 | [diff] [blame] | 270 | dispatch_set(SSH2_MSG_USERAUTH_GSSAPI_TOKEN, NULL); |
| 271 | dispatch_set(SSH2_MSG_USERAUTH_GSSAPI_EXCHANGE_COMPLETE, NULL); |
| 272 | #endif |
| 273 | |
Ben Lindstrom | db65e8f | 2001-01-19 04:26:52 +0000 | [diff] [blame] | 274 | authctxt->postponed = 0; |
Damien Miller | 3fcdfd5 | 2011-05-05 14:04:11 +1000 | [diff] [blame] | 275 | authctxt->server_caused_failure = 0; |
Damien Miller | b70b61f | 2000-09-16 16:25:12 +1100 | [diff] [blame] | 276 | |
Ben Lindstrom | db65e8f | 2001-01-19 04:26:52 +0000 | [diff] [blame] | 277 | /* try to authenticate user */ |
Damien Miller | a6e3f01 | 2012-11-04 23:21:40 +1100 | [diff] [blame] | 278 | m = authmethod_lookup(authctxt, method); |
Darren Tucker | 4230a5d | 2008-07-02 22:56:09 +1000 | [diff] [blame] | 279 | if (m != NULL && authctxt->failures < options.max_authtries) { |
Damien Miller | 874d77b | 2000-10-14 16:23:11 +1100 | [diff] [blame] | 280 | debug2("input_userauth_request: try method %s", method); |
| 281 | authenticated = m->userauth(authctxt); |
Damien Miller | 874d77b | 2000-10-14 16:23:11 +1100 | [diff] [blame] | 282 | } |
Damien Miller | 15b05cf | 2012-12-03 09:53:20 +1100 | [diff] [blame] | 283 | userauth_finish(authctxt, authenticated, method, NULL); |
Damien Miller | 5d57e50 | 2001-03-30 10:48:31 +1000 | [diff] [blame] | 284 | |
Darren Tucker | a627d42 | 2013-06-02 07:31:17 +1000 | [diff] [blame] | 285 | free(service); |
| 286 | free(user); |
| 287 | free(method); |
markus@openbsd.org | 3fdc88a | 2015-01-19 20:07:45 +0000 | [diff] [blame] | 288 | return 0; |
Damien Miller | 5d57e50 | 2001-03-30 10:48:31 +1000 | [diff] [blame] | 289 | } |
| 290 | |
| 291 | void |
Damien Miller | 15b05cf | 2012-12-03 09:53:20 +1100 | [diff] [blame] | 292 | userauth_finish(Authctxt *authctxt, int authenticated, const char *method, |
| 293 | const char *submethod) |
Damien Miller | 5d57e50 | 2001-03-30 10:48:31 +1000 | [diff] [blame] | 294 | { |
Ben Lindstrom | cd4349f | 2001-06-09 00:23:17 +0000 | [diff] [blame] | 295 | char *methods; |
Damien Miller | a6e3f01 | 2012-11-04 23:21:40 +1100 | [diff] [blame] | 296 | int partial = 0; |
Ben Lindstrom | cd4349f | 2001-06-09 00:23:17 +0000 | [diff] [blame] | 297 | |
Ben Lindstrom | db65e8f | 2001-01-19 04:26:52 +0000 | [diff] [blame] | 298 | if (!authctxt->valid && authenticated) |
| 299 | fatal("INTERNAL ERROR: authenticated invalid user %s", |
| 300 | authctxt->user); |
Damien Miller | 15b05cf | 2012-12-03 09:53:20 +1100 | [diff] [blame] | 301 | if (authenticated && authctxt->postponed) |
| 302 | fatal("INTERNAL ERROR: authenticated and postponed"); |
Damien Miller | b70b61f | 2000-09-16 16:25:12 +1100 | [diff] [blame] | 303 | |
Damien Miller | 874d77b | 2000-10-14 16:23:11 +1100 | [diff] [blame] | 304 | /* Special handling for root */ |
Damien Miller | 556f931 | 2003-02-24 11:59:26 +1100 | [diff] [blame] | 305 | if (authenticated && authctxt->pw->pw_uid == 0 && |
Darren Tucker | 269a1ea | 2005-02-03 00:20:53 +1100 | [diff] [blame] | 306 | !auth_root_allowed(method)) { |
Damien Miller | eba71ba | 2000-04-29 23:57:08 +1000 | [diff] [blame] | 307 | authenticated = 0; |
Darren Tucker | 2e0cf0d | 2005-02-08 21:52:47 +1100 | [diff] [blame] | 308 | #ifdef SSH_AUDIT_EVENTS |
| 309 | PRIVSEP(audit_event(SSH_LOGIN_ROOT_DENIED)); |
Darren Tucker | 269a1ea | 2005-02-03 00:20:53 +1100 | [diff] [blame] | 310 | #endif |
| 311 | } |
Damien Miller | eba71ba | 2000-04-29 23:57:08 +1000 | [diff] [blame] | 312 | |
Damien Miller | 15b05cf | 2012-12-03 09:53:20 +1100 | [diff] [blame] | 313 | if (authenticated && options.num_auth_methods != 0) { |
Damien Miller | 91a55f2 | 2013-04-23 15:18:10 +1000 | [diff] [blame] | 314 | if (!auth2_update_methods_lists(authctxt, method, submethod)) { |
Damien Miller | 15b05cf | 2012-12-03 09:53:20 +1100 | [diff] [blame] | 315 | authenticated = 0; |
| 316 | partial = 1; |
| 317 | } |
| 318 | } |
| 319 | |
| 320 | /* Log before sending the reply */ |
Darren Tucker | 0acca37 | 2013-06-02 07:41:51 +1000 | [diff] [blame] | 321 | auth_log(authctxt, authenticated, partial, method, submethod); |
Damien Miller | 15b05cf | 2012-12-03 09:53:20 +1100 | [diff] [blame] | 322 | |
| 323 | if (authctxt->postponed) |
| 324 | return; |
| 325 | |
Damien Miller | 1f499fd | 2003-08-25 13:08:49 +1000 | [diff] [blame] | 326 | #ifdef USE_PAM |
Darren Tucker | 77fc29e | 2004-09-11 23:07:03 +1000 | [diff] [blame] | 327 | if (options.use_pam && authenticated) { |
| 328 | if (!PRIVSEP(do_pam_account())) { |
Darren Tucker | 77fc29e | 2004-09-11 23:07:03 +1000 | [diff] [blame] | 329 | /* if PAM returned a message, send it to the user */ |
| 330 | if (buffer_len(&loginmsg) > 0) { |
| 331 | buffer_append(&loginmsg, "\0", 1); |
| 332 | userauth_send_banner(buffer_ptr(&loginmsg)); |
Darren Tucker | c138667 | 2004-12-03 14:33:47 +1100 | [diff] [blame] | 333 | packet_write_wait(); |
Darren Tucker | 77fc29e | 2004-09-11 23:07:03 +1000 | [diff] [blame] | 334 | } |
Darren Tucker | c138667 | 2004-12-03 14:33:47 +1100 | [diff] [blame] | 335 | fatal("Access denied for user %s by PAM account " |
Damien Miller | b6f72f5 | 2005-07-17 17:26:43 +1000 | [diff] [blame] | 336 | "configuration", authctxt->user); |
Darren Tucker | 77fc29e | 2004-09-11 23:07:03 +1000 | [diff] [blame] | 337 | } |
| 338 | } |
Damien Miller | 1f499fd | 2003-08-25 13:08:49 +1000 | [diff] [blame] | 339 | #endif |
| 340 | |
Tim Rice | 81ed518 | 2002-09-25 17:38:46 -0700 | [diff] [blame] | 341 | #ifdef _UNICOS |
| 342 | if (authenticated && cray_access_denied(authctxt->user)) { |
| 343 | authenticated = 0; |
Damien Miller | 15b05cf | 2012-12-03 09:53:20 +1100 | [diff] [blame] | 344 | fatal("Access denied for user %s.", authctxt->user); |
Tim Rice | 81ed518 | 2002-09-25 17:38:46 -0700 | [diff] [blame] | 345 | } |
| 346 | #endif /* _UNICOS */ |
| 347 | |
Ben Lindstrom | cd4349f | 2001-06-09 00:23:17 +0000 | [diff] [blame] | 348 | if (authenticated == 1) { |
| 349 | /* turn off userauth */ |
Damien Miller | 7d05339 | 2002-01-22 23:24:13 +1100 | [diff] [blame] | 350 | dispatch_set(SSH2_MSG_USERAUTH_REQUEST, &dispatch_protocol_ignore); |
Ben Lindstrom | cd4349f | 2001-06-09 00:23:17 +0000 | [diff] [blame] | 351 | packet_start(SSH2_MSG_USERAUTH_SUCCESS); |
| 352 | packet_send(); |
| 353 | packet_write_wait(); |
| 354 | /* now we can break out */ |
| 355 | authctxt->success = 1; |
| 356 | } else { |
Damien Miller | 0b4d48b | 2008-07-05 09:44:53 +1000 | [diff] [blame] | 357 | |
| 358 | /* Allow initial try of "none" auth without failure penalty */ |
djm@openbsd.org | 058f839 | 2014-12-18 23:58:04 +0000 | [diff] [blame] | 359 | if (!partial && !authctxt->server_caused_failure && |
Damien Miller | 3fcdfd5 | 2011-05-05 14:04:11 +1000 | [diff] [blame] | 360 | (authctxt->attempt > 1 || strcmp(method, "none") != 0)) |
Damien Miller | 0b4d48b | 2008-07-05 09:44:53 +1000 | [diff] [blame] | 361 | authctxt->failures++; |
| 362 | if (authctxt->failures >= options.max_authtries) { |
Darren Tucker | 2e0cf0d | 2005-02-08 21:52:47 +1100 | [diff] [blame] | 363 | #ifdef SSH_AUDIT_EVENTS |
| 364 | PRIVSEP(audit_event(SSH_LOGIN_EXCEED_MAXTRIES)); |
Darren Tucker | 269a1ea | 2005-02-03 00:20:53 +1100 | [diff] [blame] | 365 | #endif |
Damien Miller | 686feb5 | 2014-07-03 21:29:38 +1000 | [diff] [blame] | 366 | auth_maxtries_exceeded(authctxt); |
Darren Tucker | 269a1ea | 2005-02-03 00:20:53 +1100 | [diff] [blame] | 367 | } |
Damien Miller | a6e3f01 | 2012-11-04 23:21:40 +1100 | [diff] [blame] | 368 | methods = authmethods_get(authctxt); |
| 369 | debug3("%s: failure partial=%d next methods=\"%s\"", __func__, |
| 370 | partial, methods); |
Ben Lindstrom | cd4349f | 2001-06-09 00:23:17 +0000 | [diff] [blame] | 371 | packet_start(SSH2_MSG_USERAUTH_FAILURE); |
| 372 | packet_put_cstring(methods); |
Damien Miller | a6e3f01 | 2012-11-04 23:21:40 +1100 | [diff] [blame] | 373 | packet_put_char(partial); |
Ben Lindstrom | cd4349f | 2001-06-09 00:23:17 +0000 | [diff] [blame] | 374 | packet_send(); |
| 375 | packet_write_wait(); |
Darren Tucker | a627d42 | 2013-06-02 07:31:17 +1000 | [diff] [blame] | 376 | free(methods); |
Ben Lindstrom | cd4349f | 2001-06-09 00:23:17 +0000 | [diff] [blame] | 377 | } |
Damien Miller | 874d77b | 2000-10-14 16:23:11 +1100 | [diff] [blame] | 378 | } |
| 379 | |
Damien Miller | a6e3f01 | 2012-11-04 23:21:40 +1100 | [diff] [blame] | 380 | /* |
| 381 | * Checks whether method is allowed by at least one AuthenticationMethods |
| 382 | * methods list. Returns 1 if allowed, or no methods lists configured. |
| 383 | * 0 otherwise. |
| 384 | */ |
Damien Miller | 91a55f2 | 2013-04-23 15:18:10 +1000 | [diff] [blame] | 385 | int |
| 386 | auth2_method_allowed(Authctxt *authctxt, const char *method, |
| 387 | const char *submethod) |
Damien Miller | a6e3f01 | 2012-11-04 23:21:40 +1100 | [diff] [blame] | 388 | { |
| 389 | u_int i; |
| 390 | |
| 391 | /* |
| 392 | * NB. authctxt->num_auth_methods might be zero as a result of |
| 393 | * auth2_setup_methods_lists(), so check the configuration. |
| 394 | */ |
| 395 | if (options.num_auth_methods == 0) |
| 396 | return 1; |
| 397 | for (i = 0; i < authctxt->num_auth_methods; i++) { |
Damien Miller | 91a55f2 | 2013-04-23 15:18:10 +1000 | [diff] [blame] | 398 | if (list_starts_with(authctxt->auth_methods[i], method, |
| 399 | submethod) != MATCH_NONE) |
Damien Miller | a6e3f01 | 2012-11-04 23:21:40 +1100 | [diff] [blame] | 400 | return 1; |
| 401 | } |
| 402 | return 0; |
| 403 | } |
| 404 | |
Ben Lindstrom | 7907382 | 2001-07-04 03:42:30 +0000 | [diff] [blame] | 405 | static char * |
Damien Miller | a6e3f01 | 2012-11-04 23:21:40 +1100 | [diff] [blame] | 406 | authmethods_get(Authctxt *authctxt) |
Damien Miller | 874d77b | 2000-10-14 16:23:11 +1100 | [diff] [blame] | 407 | { |
Damien Miller | 0e3b872 | 2002-01-22 23:26:38 +1100 | [diff] [blame] | 408 | Buffer b; |
Damien Miller | 874d77b | 2000-10-14 16:23:11 +1100 | [diff] [blame] | 409 | char *list; |
Damien Miller | a6e3f01 | 2012-11-04 23:21:40 +1100 | [diff] [blame] | 410 | u_int i; |
Damien Miller | 874d77b | 2000-10-14 16:23:11 +1100 | [diff] [blame] | 411 | |
Damien Miller | 0e3b872 | 2002-01-22 23:26:38 +1100 | [diff] [blame] | 412 | buffer_init(&b); |
Ben Lindstrom | 511bb24 | 2002-06-06 20:52:37 +0000 | [diff] [blame] | 413 | for (i = 0; authmethods[i] != NULL; i++) { |
| 414 | if (strcmp(authmethods[i]->name, "none") == 0) |
Damien Miller | 874d77b | 2000-10-14 16:23:11 +1100 | [diff] [blame] | 415 | continue; |
Damien Miller | a6e3f01 | 2012-11-04 23:21:40 +1100 | [diff] [blame] | 416 | if (authmethods[i]->enabled == NULL || |
| 417 | *(authmethods[i]->enabled) == 0) |
| 418 | continue; |
Damien Miller | 91a55f2 | 2013-04-23 15:18:10 +1000 | [diff] [blame] | 419 | if (!auth2_method_allowed(authctxt, authmethods[i]->name, |
| 420 | NULL)) |
Damien Miller | a6e3f01 | 2012-11-04 23:21:40 +1100 | [diff] [blame] | 421 | continue; |
| 422 | if (buffer_len(&b) > 0) |
| 423 | buffer_append(&b, ",", 1); |
| 424 | buffer_append(&b, authmethods[i]->name, |
| 425 | strlen(authmethods[i]->name)); |
Damien Miller | eba71ba | 2000-04-29 23:57:08 +1000 | [diff] [blame] | 426 | } |
djm@openbsd.org | 1a31d02 | 2016-05-02 08:49:03 +0000 | [diff] [blame] | 427 | if ((list = sshbuf_dup_string(&b)) == NULL) |
| 428 | fatal("%s: sshbuf_dup_string failed", __func__); |
Damien Miller | 0e3b872 | 2002-01-22 23:26:38 +1100 | [diff] [blame] | 429 | buffer_free(&b); |
Damien Miller | 874d77b | 2000-10-14 16:23:11 +1100 | [diff] [blame] | 430 | return list; |
| 431 | } |
| 432 | |
Ben Lindstrom | bba8121 | 2001-06-25 05:01:22 +0000 | [diff] [blame] | 433 | static Authmethod * |
Damien Miller | a6e3f01 | 2012-11-04 23:21:40 +1100 | [diff] [blame] | 434 | authmethod_lookup(Authctxt *authctxt, const char *name) |
Damien Miller | 874d77b | 2000-10-14 16:23:11 +1100 | [diff] [blame] | 435 | { |
Ben Lindstrom | 511bb24 | 2002-06-06 20:52:37 +0000 | [diff] [blame] | 436 | int i; |
| 437 | |
Damien Miller | 874d77b | 2000-10-14 16:23:11 +1100 | [diff] [blame] | 438 | if (name != NULL) |
Ben Lindstrom | 511bb24 | 2002-06-06 20:52:37 +0000 | [diff] [blame] | 439 | for (i = 0; authmethods[i] != NULL; i++) |
| 440 | if (authmethods[i]->enabled != NULL && |
| 441 | *(authmethods[i]->enabled) != 0 && |
Damien Miller | a6e3f01 | 2012-11-04 23:21:40 +1100 | [diff] [blame] | 442 | strcmp(name, authmethods[i]->name) == 0 && |
Damien Miller | 91a55f2 | 2013-04-23 15:18:10 +1000 | [diff] [blame] | 443 | auth2_method_allowed(authctxt, |
| 444 | authmethods[i]->name, NULL)) |
Ben Lindstrom | 511bb24 | 2002-06-06 20:52:37 +0000 | [diff] [blame] | 445 | return authmethods[i]; |
| 446 | debug2("Unrecognized authentication method name: %s", |
| 447 | name ? name : "NULL"); |
Damien Miller | 874d77b | 2000-10-14 16:23:11 +1100 | [diff] [blame] | 448 | return NULL; |
Damien Miller | eba71ba | 2000-04-29 23:57:08 +1000 | [diff] [blame] | 449 | } |
Darren Tucker | 4230a5d | 2008-07-02 22:56:09 +1000 | [diff] [blame] | 450 | |
Damien Miller | a6e3f01 | 2012-11-04 23:21:40 +1100 | [diff] [blame] | 451 | /* |
| 452 | * Check a comma-separated list of methods for validity. Is need_enable is |
| 453 | * non-zero, then also require that the methods are enabled. |
| 454 | * Returns 0 on success or -1 if the methods list is invalid. |
| 455 | */ |
| 456 | int |
| 457 | auth2_methods_valid(const char *_methods, int need_enable) |
| 458 | { |
Damien Miller | 91a55f2 | 2013-04-23 15:18:10 +1000 | [diff] [blame] | 459 | char *methods, *omethods, *method, *p; |
Damien Miller | a6e3f01 | 2012-11-04 23:21:40 +1100 | [diff] [blame] | 460 | u_int i, found; |
| 461 | int ret = -1; |
| 462 | |
| 463 | if (*_methods == '\0') { |
| 464 | error("empty authentication method list"); |
| 465 | return -1; |
| 466 | } |
| 467 | omethods = methods = xstrdup(_methods); |
| 468 | while ((method = strsep(&methods, ",")) != NULL) { |
| 469 | for (found = i = 0; !found && authmethods[i] != NULL; i++) { |
Damien Miller | 91a55f2 | 2013-04-23 15:18:10 +1000 | [diff] [blame] | 470 | if ((p = strchr(method, ':')) != NULL) |
| 471 | *p = '\0'; |
Damien Miller | a6e3f01 | 2012-11-04 23:21:40 +1100 | [diff] [blame] | 472 | if (strcmp(method, authmethods[i]->name) != 0) |
| 473 | continue; |
| 474 | if (need_enable) { |
| 475 | if (authmethods[i]->enabled == NULL || |
| 476 | *(authmethods[i]->enabled) == 0) { |
| 477 | error("Disabled method \"%s\" in " |
| 478 | "AuthenticationMethods list \"%s\"", |
| 479 | method, _methods); |
| 480 | goto out; |
| 481 | } |
| 482 | } |
| 483 | found = 1; |
| 484 | break; |
| 485 | } |
| 486 | if (!found) { |
| 487 | error("Unknown authentication method \"%s\" in list", |
| 488 | method); |
| 489 | goto out; |
| 490 | } |
| 491 | } |
| 492 | ret = 0; |
| 493 | out: |
| 494 | free(omethods); |
| 495 | return ret; |
| 496 | } |
| 497 | |
| 498 | /* |
| 499 | * Prune the AuthenticationMethods supplied in the configuration, removing |
| 500 | * any methods lists that include disabled methods. Note that this might |
| 501 | * leave authctxt->num_auth_methods == 0, even when multiple required auth |
| 502 | * has been requested. For this reason, all tests for whether multiple is |
| 503 | * enabled should consult options.num_auth_methods directly. |
| 504 | */ |
| 505 | int |
| 506 | auth2_setup_methods_lists(Authctxt *authctxt) |
| 507 | { |
| 508 | u_int i; |
| 509 | |
| 510 | if (options.num_auth_methods == 0) |
| 511 | return 0; |
| 512 | debug3("%s: checking methods", __func__); |
| 513 | authctxt->auth_methods = xcalloc(options.num_auth_methods, |
| 514 | sizeof(*authctxt->auth_methods)); |
| 515 | authctxt->num_auth_methods = 0; |
| 516 | for (i = 0; i < options.num_auth_methods; i++) { |
| 517 | if (auth2_methods_valid(options.auth_methods[i], 1) != 0) { |
| 518 | logit("Authentication methods list \"%s\" contains " |
| 519 | "disabled method, skipping", |
| 520 | options.auth_methods[i]); |
| 521 | continue; |
| 522 | } |
| 523 | debug("authentication methods list %d: %s", |
| 524 | authctxt->num_auth_methods, options.auth_methods[i]); |
| 525 | authctxt->auth_methods[authctxt->num_auth_methods++] = |
| 526 | xstrdup(options.auth_methods[i]); |
| 527 | } |
| 528 | if (authctxt->num_auth_methods == 0) { |
| 529 | error("No AuthenticationMethods left after eliminating " |
| 530 | "disabled methods"); |
| 531 | return -1; |
| 532 | } |
| 533 | return 0; |
| 534 | } |
| 535 | |
| 536 | static int |
Damien Miller | 91a55f2 | 2013-04-23 15:18:10 +1000 | [diff] [blame] | 537 | list_starts_with(const char *methods, const char *method, |
| 538 | const char *submethod) |
Damien Miller | a6e3f01 | 2012-11-04 23:21:40 +1100 | [diff] [blame] | 539 | { |
| 540 | size_t l = strlen(method); |
Damien Miller | 91a55f2 | 2013-04-23 15:18:10 +1000 | [diff] [blame] | 541 | int match; |
| 542 | const char *p; |
Damien Miller | a6e3f01 | 2012-11-04 23:21:40 +1100 | [diff] [blame] | 543 | |
| 544 | if (strncmp(methods, method, l) != 0) |
Damien Miller | 91a55f2 | 2013-04-23 15:18:10 +1000 | [diff] [blame] | 545 | return MATCH_NONE; |
| 546 | p = methods + l; |
| 547 | match = MATCH_METHOD; |
| 548 | if (*p == ':') { |
| 549 | if (!submethod) |
| 550 | return MATCH_PARTIAL; |
| 551 | l = strlen(submethod); |
| 552 | p += 1; |
| 553 | if (strncmp(submethod, p, l)) |
| 554 | return MATCH_NONE; |
| 555 | p += l; |
| 556 | match = MATCH_BOTH; |
| 557 | } |
| 558 | if (*p != ',' && *p != '\0') |
| 559 | return MATCH_NONE; |
| 560 | return match; |
Damien Miller | a6e3f01 | 2012-11-04 23:21:40 +1100 | [diff] [blame] | 561 | } |
| 562 | |
| 563 | /* |
| 564 | * Remove method from the start of a comma-separated list of methods. |
| 565 | * Returns 0 if the list of methods did not start with that method or 1 |
| 566 | * if it did. |
| 567 | */ |
| 568 | static int |
Damien Miller | 91a55f2 | 2013-04-23 15:18:10 +1000 | [diff] [blame] | 569 | remove_method(char **methods, const char *method, const char *submethod) |
Damien Miller | a6e3f01 | 2012-11-04 23:21:40 +1100 | [diff] [blame] | 570 | { |
Damien Miller | 91a55f2 | 2013-04-23 15:18:10 +1000 | [diff] [blame] | 571 | char *omethods = *methods, *p; |
Damien Miller | a6e3f01 | 2012-11-04 23:21:40 +1100 | [diff] [blame] | 572 | size_t l = strlen(method); |
Damien Miller | 91a55f2 | 2013-04-23 15:18:10 +1000 | [diff] [blame] | 573 | int match; |
Damien Miller | a6e3f01 | 2012-11-04 23:21:40 +1100 | [diff] [blame] | 574 | |
Damien Miller | 91a55f2 | 2013-04-23 15:18:10 +1000 | [diff] [blame] | 575 | match = list_starts_with(omethods, method, submethod); |
| 576 | if (match != MATCH_METHOD && match != MATCH_BOTH) |
Damien Miller | a6e3f01 | 2012-11-04 23:21:40 +1100 | [diff] [blame] | 577 | return 0; |
Damien Miller | 91a55f2 | 2013-04-23 15:18:10 +1000 | [diff] [blame] | 578 | p = omethods + l; |
| 579 | if (submethod && match == MATCH_BOTH) |
| 580 | p += 1 + strlen(submethod); /* include colon */ |
| 581 | if (*p == ',') |
| 582 | p++; |
| 583 | *methods = xstrdup(p); |
Damien Miller | a6e3f01 | 2012-11-04 23:21:40 +1100 | [diff] [blame] | 584 | free(omethods); |
| 585 | return 1; |
| 586 | } |
| 587 | |
| 588 | /* |
| 589 | * Called after successful authentication. Will remove the successful method |
| 590 | * from the start of each list in which it occurs. If it was the last method |
| 591 | * in any list, then authentication is deemed successful. |
| 592 | * Returns 1 if the method completed any authentication list or 0 otherwise. |
| 593 | */ |
| 594 | int |
Damien Miller | 91a55f2 | 2013-04-23 15:18:10 +1000 | [diff] [blame] | 595 | auth2_update_methods_lists(Authctxt *authctxt, const char *method, |
| 596 | const char *submethod) |
Damien Miller | a6e3f01 | 2012-11-04 23:21:40 +1100 | [diff] [blame] | 597 | { |
| 598 | u_int i, found = 0; |
| 599 | |
| 600 | debug3("%s: updating methods list after \"%s\"", __func__, method); |
| 601 | for (i = 0; i < authctxt->num_auth_methods; i++) { |
Damien Miller | 91a55f2 | 2013-04-23 15:18:10 +1000 | [diff] [blame] | 602 | if (!remove_method(&(authctxt->auth_methods[i]), method, |
| 603 | submethod)) |
Damien Miller | a6e3f01 | 2012-11-04 23:21:40 +1100 | [diff] [blame] | 604 | continue; |
| 605 | found = 1; |
| 606 | if (*authctxt->auth_methods[i] == '\0') { |
| 607 | debug2("authentication methods list %d complete", i); |
| 608 | return 1; |
| 609 | } |
| 610 | debug3("authentication methods list %d remaining: \"%s\"", |
| 611 | i, authctxt->auth_methods[i]); |
| 612 | } |
| 613 | /* This should not happen, but would be bad if it did */ |
| 614 | if (!found) |
| 615 | fatal("%s: method not in AuthenticationMethods", __func__); |
| 616 | return 0; |
| 617 | } |
| 618 | |
| 619 | |