djm@openbsd.org | 14b5c63 | 2018-01-23 05:27:21 +0000 | [diff] [blame] | 1 | /* $OpenBSD: auth2.c,v 1.144 2018/01/23 05:27:21 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> |
djm@openbsd.org | 8f57495 | 2017-06-24 06:34:38 +0000 | [diff] [blame] | 33 | #include <limits.h> |
Damien Miller | 9f2abc4 | 2006-07-10 20:53:08 +1000 | [diff] [blame] | 34 | #include <pwd.h> |
Damien Miller | d783435 | 2006-08-05 12:39:39 +1000 | [diff] [blame] | 35 | #include <stdarg.h> |
Damien Miller | e3476ed | 2006-07-24 14:13:33 +1000 | [diff] [blame] | 36 | #include <string.h> |
Darren Tucker | 4230a5d | 2008-07-02 22:56:09 +1000 | [diff] [blame] | 37 | #include <unistd.h> |
Damien Miller | 9f2abc4 | 2006-07-10 20:53:08 +1000 | [diff] [blame] | 38 | |
Damien Miller | 0b4d48b | 2008-07-05 09:44:53 +1000 | [diff] [blame] | 39 | #include "atomicio.h" |
Darren Tucker | 43e7a35 | 2009-06-21 19:50:08 +1000 | [diff] [blame] | 40 | #include "xmalloc.h" |
Damien Miller | d783435 | 2006-08-05 12:39:39 +1000 | [diff] [blame] | 41 | #include "ssh2.h" |
Damien Miller | eba71ba | 2000-04-29 23:57:08 +1000 | [diff] [blame] | 42 | #include "packet.h" |
Ben Lindstrom | 226cfa0 | 2001-01-22 05:34:40 +0000 | [diff] [blame] | 43 | #include "log.h" |
Damien Miller | d783435 | 2006-08-05 12:39:39 +1000 | [diff] [blame] | 44 | #include "buffer.h" |
Damien Miller | 7acefbb | 2014-07-18 14:11:24 +1000 | [diff] [blame] | 45 | #include "misc.h" |
Damien Miller | eba71ba | 2000-04-29 23:57:08 +1000 | [diff] [blame] | 46 | #include "servconf.h" |
| 47 | #include "compat.h" |
Damien Miller | d783435 | 2006-08-05 12:39:39 +1000 | [diff] [blame] | 48 | #include "key.h" |
| 49 | #include "hostfile.h" |
Damien Miller | eba71ba | 2000-04-29 23:57:08 +1000 | [diff] [blame] | 50 | #include "auth.h" |
Damien Miller | eba71ba | 2000-04-29 23:57:08 +1000 | [diff] [blame] | 51 | #include "dispatch.h" |
Ben Lindstrom | 226cfa0 | 2001-01-22 05:34:40 +0000 | [diff] [blame] | 52 | #include "pathnames.h" |
Darren Tucker | 77fc29e | 2004-09-11 23:07:03 +1000 | [diff] [blame] | 53 | #include "buffer.h" |
Damien Miller | eba71ba | 2000-04-29 23:57:08 +1000 | [diff] [blame] | 54 | |
Darren Tucker | 0efd155 | 2003-08-26 11:49:55 +1000 | [diff] [blame] | 55 | #ifdef GSSAPI |
| 56 | #include "ssh-gss.h" |
| 57 | #endif |
Damien Miller | d783435 | 2006-08-05 12:39:39 +1000 | [diff] [blame] | 58 | #include "monitor_wrap.h" |
djm@openbsd.org | 8f57495 | 2017-06-24 06:34:38 +0000 | [diff] [blame] | 59 | #include "ssherr.h" |
Darren Tucker | 0efd155 | 2003-08-26 11:49:55 +1000 | [diff] [blame] | 60 | |
Damien Miller | eba71ba | 2000-04-29 23:57:08 +1000 | [diff] [blame] | 61 | /* import */ |
| 62 | extern ServerOptions options; |
Ben Lindstrom | 46c1622 | 2000-12-22 01:43:59 +0000 | [diff] [blame] | 63 | extern u_char *session_id2; |
Darren Tucker | 502d384 | 2003-06-28 12:38:01 +1000 | [diff] [blame] | 64 | extern u_int session_id2_len; |
Darren Tucker | 77fc29e | 2004-09-11 23:07:03 +1000 | [diff] [blame] | 65 | extern Buffer loginmsg; |
Damien Miller | eba71ba | 2000-04-29 23:57:08 +1000 | [diff] [blame] | 66 | |
Ben Lindstrom | 511bb24 | 2002-06-06 20:52:37 +0000 | [diff] [blame] | 67 | /* methods */ |
| 68 | |
| 69 | extern Authmethod method_none; |
| 70 | extern Authmethod method_pubkey; |
| 71 | extern Authmethod method_passwd; |
| 72 | extern Authmethod method_kbdint; |
| 73 | extern Authmethod method_hostbased; |
Darren Tucker | 0efd155 | 2003-08-26 11:49:55 +1000 | [diff] [blame] | 74 | #ifdef GSSAPI |
| 75 | extern Authmethod method_gssapi; |
| 76 | #endif |
Ben Lindstrom | 511bb24 | 2002-06-06 20:52:37 +0000 | [diff] [blame] | 77 | |
| 78 | Authmethod *authmethods[] = { |
| 79 | &method_none, |
| 80 | &method_pubkey, |
Darren Tucker | 0efd155 | 2003-08-26 11:49:55 +1000 | [diff] [blame] | 81 | #ifdef GSSAPI |
| 82 | &method_gssapi, |
| 83 | #endif |
Ben Lindstrom | 511bb24 | 2002-06-06 20:52:37 +0000 | [diff] [blame] | 84 | &method_passwd, |
| 85 | &method_kbdint, |
| 86 | &method_hostbased, |
| 87 | NULL |
Damien Miller | 874d77b | 2000-10-14 16:23:11 +1100 | [diff] [blame] | 88 | }; |
| 89 | |
Damien Miller | eba71ba | 2000-04-29 23:57:08 +1000 | [diff] [blame] | 90 | /* protocol */ |
| 91 | |
markus@openbsd.org | 2ae666a | 2017-05-30 14:23:52 +0000 | [diff] [blame] | 92 | static int input_service_request(int, u_int32_t, struct ssh *); |
| 93 | static int input_userauth_request(int, u_int32_t, struct ssh *); |
Damien Miller | eba71ba | 2000-04-29 23:57:08 +1000 | [diff] [blame] | 94 | |
Damien Miller | eba71ba | 2000-04-29 23:57:08 +1000 | [diff] [blame] | 95 | /* helper */ |
Damien Miller | a6e3f01 | 2012-11-04 23:21:40 +1100 | [diff] [blame] | 96 | static Authmethod *authmethod_lookup(Authctxt *, const char *); |
| 97 | static char *authmethods_get(Authctxt *authctxt); |
Damien Miller | 91a55f2 | 2013-04-23 15:18:10 +1000 | [diff] [blame] | 98 | |
| 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 */ |
| 103 | static int list_starts_with(const char *, const char *, const char *); |
Damien Miller | eba71ba | 2000-04-29 23:57:08 +1000 | [diff] [blame] | 104 | |
Darren Tucker | 4230a5d | 2008-07-02 22:56:09 +1000 | [diff] [blame] | 105 | char * |
| 106 | auth2_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 Miller | 8ed4de8 | 2011-12-19 10:52:50 +1100 | [diff] [blame] | 119 | if (st.st_size <= 0 || st.st_size > 1*1024*1024) { |
Darren Tucker | 4230a5d | 2008-07-02 22:56:09 +1000 | [diff] [blame] | 120 | 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 Tucker | a627d42 | 2013-06-02 07:31:17 +1000 | [diff] [blame] | 130 | free(banner); |
Darren Tucker | 4230a5d | 2008-07-02 22:56:09 +1000 | [diff] [blame] | 131 | return (NULL); |
| 132 | } |
| 133 | banner[n] = '\0'; |
| 134 | |
| 135 | return (banner); |
| 136 | } |
| 137 | |
| 138 | void |
| 139 | userauth_send_banner(const char *msg) |
| 140 | { |
Darren Tucker | 4230a5d | 2008-07-02 22:56:09 +1000 | [diff] [blame] | 141 | 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 | |
| 148 | static void |
| 149 | userauth_banner(void) |
| 150 | { |
| 151 | char *banner = NULL; |
| 152 | |
djm@openbsd.org | 14b5c63 | 2018-01-23 05:27:21 +0000 | [diff] [blame] | 153 | if (options.banner == NULL) |
Darren Tucker | 4230a5d | 2008-07-02 22:56:09 +1000 | [diff] [blame] | 154 | return; |
| 155 | |
| 156 | if ((banner = PRIVSEP(auth2_read_banner())) == NULL) |
| 157 | goto done; |
| 158 | userauth_send_banner(banner); |
| 159 | |
| 160 | done: |
Darren Tucker | a627d42 | 2013-06-02 07:31:17 +1000 | [diff] [blame] | 161 | free(banner); |
Darren Tucker | 4230a5d | 2008-07-02 22:56:09 +1000 | [diff] [blame] | 162 | } |
| 163 | |
Damien Miller | eba71ba | 2000-04-29 23:57:08 +1000 | [diff] [blame] | 164 | /* |
Damien Miller | 874d77b | 2000-10-14 16:23:11 +1100 | [diff] [blame] | 165 | * loop until authctxt->success == TRUE |
Damien Miller | eba71ba | 2000-04-29 23:57:08 +1000 | [diff] [blame] | 166 | */ |
Darren Tucker | 3e33cec | 2003-10-02 16:12:36 +1000 | [diff] [blame] | 167 | void |
| 168 | do_authentication2(Authctxt *authctxt) |
Damien Miller | eba71ba | 2000-04-29 23:57:08 +1000 | [diff] [blame] | 169 | { |
markus@openbsd.org | 5f4082d | 2017-05-30 14:18:15 +0000 | [diff] [blame] | 170 | struct ssh *ssh = active_state; /* XXX */ |
| 171 | ssh->authctxt = authctxt; /* XXX move to caller */ |
markus@openbsd.org | eb272ea | 2017-05-30 14:29:59 +0000 | [diff] [blame] | 172 | ssh_dispatch_init(ssh, &dispatch_protocol_error); |
| 173 | ssh_dispatch_set(ssh, SSH2_MSG_SERVICE_REQUEST, &input_service_request); |
markus@openbsd.org | 92e9fe6 | 2017-05-31 07:00:13 +0000 | [diff] [blame] | 174 | ssh_dispatch_run_fatal(ssh, DISPATCH_BLOCK, &authctxt->success); |
markus@openbsd.org | 5f4082d | 2017-05-30 14:18:15 +0000 | [diff] [blame] | 175 | ssh->authctxt = NULL; |
Damien Miller | eba71ba | 2000-04-29 23:57:08 +1000 | [diff] [blame] | 176 | } |
| 177 | |
Damien Miller | 91d4b12 | 2006-03-26 14:05:20 +1100 | [diff] [blame] | 178 | /*ARGSUSED*/ |
markus@openbsd.org | 3fdc88a | 2015-01-19 20:07:45 +0000 | [diff] [blame] | 179 | static int |
markus@openbsd.org | 2ae666a | 2017-05-30 14:23:52 +0000 | [diff] [blame] | 180 | input_service_request(int type, u_int32_t seq, struct ssh *ssh) |
Damien Miller | eba71ba | 2000-04-29 23:57:08 +1000 | [diff] [blame] | 181 | { |
markus@openbsd.org | 5f4082d | 2017-05-30 14:18:15 +0000 | [diff] [blame] | 182 | Authctxt *authctxt = ssh->authctxt; |
Ben Lindstrom | 46c1622 | 2000-12-22 01:43:59 +0000 | [diff] [blame] | 183 | u_int len; |
Ben Lindstrom | 5a9d0ea | 2002-07-04 00:12:53 +0000 | [diff] [blame] | 184 | int acceptit = 0; |
Damien Miller | da108ec | 2010-08-31 22:36:39 +1000 | [diff] [blame] | 185 | char *service = packet_get_cstring(&len); |
Damien Miller | 48b03fc | 2002-01-22 23:11:40 +1100 | [diff] [blame] | 186 | packet_check_eom(); |
Damien Miller | eba71ba | 2000-04-29 23:57:08 +1000 | [diff] [blame] | 187 | |
Damien Miller | 874d77b | 2000-10-14 16:23:11 +1100 | [diff] [blame] | 188 | if (authctxt == NULL) |
| 189 | fatal("input_service_request: no authctxt"); |
| 190 | |
Damien Miller | eba71ba | 2000-04-29 23:57:08 +1000 | [diff] [blame] | 191 | if (strcmp(service, "ssh-userauth") == 0) { |
Damien Miller | 874d77b | 2000-10-14 16:23:11 +1100 | [diff] [blame] | 192 | if (!authctxt->success) { |
Ben Lindstrom | 5a9d0ea | 2002-07-04 00:12:53 +0000 | [diff] [blame] | 193 | acceptit = 1; |
Damien Miller | eba71ba | 2000-04-29 23:57:08 +1000 | [diff] [blame] | 194 | /* now we can handle user-auth requests */ |
markus@openbsd.org | eb272ea | 2017-05-30 14:29:59 +0000 | [diff] [blame] | 195 | ssh_dispatch_set(ssh, SSH2_MSG_USERAUTH_REQUEST, &input_userauth_request); |
Damien Miller | eba71ba | 2000-04-29 23:57:08 +1000 | [diff] [blame] | 196 | } |
| 197 | } |
| 198 | /* XXX all other service requests are denied */ |
| 199 | |
Ben Lindstrom | 5a9d0ea | 2002-07-04 00:12:53 +0000 | [diff] [blame] | 200 | if (acceptit) { |
Damien Miller | eba71ba | 2000-04-29 23:57:08 +1000 | [diff] [blame] | 201 | 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 Tucker | a627d42 | 2013-06-02 07:31:17 +1000 | [diff] [blame] | 209 | free(service); |
markus@openbsd.org | 3fdc88a | 2015-01-19 20:07:45 +0000 | [diff] [blame] | 210 | return 0; |
Damien Miller | eba71ba | 2000-04-29 23:57:08 +1000 | [diff] [blame] | 211 | } |
| 212 | |
Damien Miller | 91d4b12 | 2006-03-26 14:05:20 +1100 | [diff] [blame] | 213 | /*ARGSUSED*/ |
markus@openbsd.org | 3fdc88a | 2015-01-19 20:07:45 +0000 | [diff] [blame] | 214 | static int |
markus@openbsd.org | 2ae666a | 2017-05-30 14:23:52 +0000 | [diff] [blame] | 215 | input_userauth_request(int type, u_int32_t seq, struct ssh *ssh) |
Damien Miller | eba71ba | 2000-04-29 23:57:08 +1000 | [diff] [blame] | 216 | { |
markus@openbsd.org | 5f4082d | 2017-05-30 14:18:15 +0000 | [diff] [blame] | 217 | Authctxt *authctxt = ssh->authctxt; |
Damien Miller | 874d77b | 2000-10-14 16:23:11 +1100 | [diff] [blame] | 218 | Authmethod *m = NULL; |
Ben Lindstrom | db65e8f | 2001-01-19 04:26:52 +0000 | [diff] [blame] | 219 | char *user, *service, *method, *style = NULL; |
Damien Miller | eba71ba | 2000-04-29 23:57:08 +1000 | [diff] [blame] | 220 | int authenticated = 0; |
Damien Miller | eba71ba | 2000-04-29 23:57:08 +1000 | [diff] [blame] | 221 | |
Damien Miller | 874d77b | 2000-10-14 16:23:11 +1100 | [diff] [blame] | 222 | if (authctxt == NULL) |
| 223 | fatal("input_userauth_request: no authctxt"); |
Damien Miller | eba71ba | 2000-04-29 23:57:08 +1000 | [diff] [blame] | 224 | |
Damien Miller | da108ec | 2010-08-31 22:36:39 +1000 | [diff] [blame] | 225 | user = packet_get_cstring(NULL); |
| 226 | service = packet_get_cstring(NULL); |
| 227 | method = packet_get_cstring(NULL); |
Damien Miller | 874d77b | 2000-10-14 16:23:11 +1100 | [diff] [blame] | 228 | 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] | 229 | debug("attempt %d failures %d", authctxt->attempt, authctxt->failures); |
Damien Miller | 874d77b | 2000-10-14 16:23:11 +1100 | [diff] [blame] | 230 | |
Ben Lindstrom | db65e8f | 2001-01-19 04:26:52 +0000 | [diff] [blame] | 231 | if ((style = strchr(user, ':')) != NULL) |
| 232 | *style++ = 0; |
| 233 | |
Kevin Steves | ef4eea9 | 2001-02-05 12:42:17 +0000 | [diff] [blame] | 234 | if (authctxt->attempt++ == 0) { |
Damien Miller | 3a5b023 | 2002-03-13 13:19:42 +1100 | [diff] [blame] | 235 | /* setup auth context */ |
Kevin Steves | 205cc1e | 2002-03-22 20:43:05 +0000 | [diff] [blame] | 236 | authctxt->pw = PRIVSEP(getpwnamallow(user)); |
Darren Tucker | dbf7a74 | 2004-03-08 23:04:06 +1100 | [diff] [blame] | 237 | authctxt->user = xstrdup(user); |
Kevin Steves | 205cc1e | 2002-03-22 20:43:05 +0000 | [diff] [blame] | 238 | if (authctxt->pw && strcmp(service, "ssh-connection")==0) { |
Damien Miller | 874d77b | 2000-10-14 16:23:11 +1100 | [diff] [blame] | 239 | authctxt->valid = 1; |
djm@openbsd.org | f1a1934 | 2017-02-03 23:05:57 +0000 | [diff] [blame] | 240 | debug2("%s: setting up authctxt for %s", |
| 241 | __func__, user); |
Damien Miller | 874d77b | 2000-10-14 16:23:11 +1100 | [diff] [blame] | 242 | } else { |
djm@openbsd.org | f1a1934 | 2017-02-03 23:05:57 +0000 | [diff] [blame] | 243 | /* Invalid user, fake password information */ |
Damien Miller | 856f0be | 2003-09-03 07:32:45 +1000 | [diff] [blame] | 244 | authctxt->pw = fakepw(); |
Darren Tucker | 2e0cf0d | 2005-02-08 21:52:47 +1100 | [diff] [blame] | 245 | #ifdef SSH_AUDIT_EVENTS |
| 246 | PRIVSEP(audit_event(SSH_INVALID_USER)); |
Darren Tucker | 269a1ea | 2005-02-03 00:20:53 +1100 | [diff] [blame] | 247 | #endif |
Damien Miller | 874d77b | 2000-10-14 16:23:11 +1100 | [diff] [blame] | 248 | } |
Darren Tucker | d3eff2b | 2005-09-24 12:43:51 +1000 | [diff] [blame] | 249 | #ifdef USE_PAM |
| 250 | if (options.use_pam) |
| 251 | PRIVSEP(start_pam(authctxt)); |
| 252 | #endif |
djm@openbsd.org | f1a1934 | 2017-02-03 23:05:57 +0000 | [diff] [blame] | 253 | ssh_packet_set_log_preamble(ssh, "%suser %s", |
| 254 | authctxt->valid ? "authenticating " : "invalid ", user); |
Damien Miller | 30d1f84 | 2004-07-21 20:48:53 +1000 | [diff] [blame] | 255 | setproctitle("%s%s", authctxt->valid ? user : "unknown", |
Ben Lindstrom | 7a2073c | 2002-03-22 02:30:41 +0000 | [diff] [blame] | 256 | use_privsep ? " [net]" : ""); |
Damien Miller | 874d77b | 2000-10-14 16:23:11 +1100 | [diff] [blame] | 257 | authctxt->service = xstrdup(service); |
Ben Lindstrom | 9d0c066 | 2001-06-09 01:40:00 +0000 | [diff] [blame] | 258 | authctxt->style = style ? xstrdup(style) : NULL; |
Ben Lindstrom | 7a2073c | 2002-03-22 02:30:41 +0000 | [diff] [blame] | 259 | if (use_privsep) |
| 260 | mm_inform_authserv(service, style); |
Darren Tucker | 4230a5d | 2008-07-02 22:56:09 +1000 | [diff] [blame] | 261 | userauth_banner(); |
Damien Miller | a6e3f01 | 2012-11-04 23:21:40 +1100 | [diff] [blame] | 262 | if (auth2_setup_methods_lists(authctxt) != 0) |
| 263 | packet_disconnect("no authentication methods enabled"); |
Ben Lindstrom | 9d0c066 | 2001-06-09 01:40:00 +0000 | [diff] [blame] | 264 | } 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 Miller | eba71ba | 2000-04-29 23:57:08 +1000 | [diff] [blame] | 269 | } |
Ben Lindstrom | db65e8f | 2001-01-19 04:26:52 +0000 | [diff] [blame] | 270 | /* reset state */ |
markus@openbsd.org | eb272ea | 2017-05-30 14:29:59 +0000 | [diff] [blame] | 271 | auth2_challenge_stop(ssh); |
Darren Tucker | 0efd155 | 2003-08-26 11:49:55 +1000 | [diff] [blame] | 272 | |
| 273 | #ifdef GSSAPI |
Damien Miller | 01ed227 | 2008-11-05 16:20:46 +1100 | [diff] [blame] | 274 | /* XXX move to auth2_gssapi_stop() */ |
markus@openbsd.org | eb272ea | 2017-05-30 14:29:59 +0000 | [diff] [blame] | 275 | ssh_dispatch_set(ssh, SSH2_MSG_USERAUTH_GSSAPI_TOKEN, NULL); |
| 276 | ssh_dispatch_set(ssh, SSH2_MSG_USERAUTH_GSSAPI_EXCHANGE_COMPLETE, NULL); |
Darren Tucker | 0efd155 | 2003-08-26 11:49:55 +1000 | [diff] [blame] | 277 | #endif |
| 278 | |
djm@openbsd.org | 8f57495 | 2017-06-24 06:34:38 +0000 | [diff] [blame] | 279 | auth2_authctxt_reset_info(authctxt); |
Ben Lindstrom | db65e8f | 2001-01-19 04:26:52 +0000 | [diff] [blame] | 280 | authctxt->postponed = 0; |
Damien Miller | 3fcdfd5 | 2011-05-05 14:04:11 +1000 | [diff] [blame] | 281 | authctxt->server_caused_failure = 0; |
Damien Miller | b70b61f | 2000-09-16 16:25:12 +1100 | [diff] [blame] | 282 | |
Ben Lindstrom | db65e8f | 2001-01-19 04:26:52 +0000 | [diff] [blame] | 283 | /* try to authenticate user */ |
Damien Miller | a6e3f01 | 2012-11-04 23:21:40 +1100 | [diff] [blame] | 284 | m = authmethod_lookup(authctxt, method); |
Darren Tucker | 4230a5d | 2008-07-02 22:56:09 +1000 | [diff] [blame] | 285 | if (m != NULL && authctxt->failures < options.max_authtries) { |
Damien Miller | 874d77b | 2000-10-14 16:23:11 +1100 | [diff] [blame] | 286 | debug2("input_userauth_request: try method %s", method); |
markus@openbsd.org | eb272ea | 2017-05-30 14:29:59 +0000 | [diff] [blame] | 287 | authenticated = m->userauth(ssh); |
Damien Miller | 874d77b | 2000-10-14 16:23:11 +1100 | [diff] [blame] | 288 | } |
markus@openbsd.org | eb272ea | 2017-05-30 14:29:59 +0000 | [diff] [blame] | 289 | userauth_finish(ssh, authenticated, method, NULL); |
Damien Miller | 5d57e50 | 2001-03-30 10:48:31 +1000 | [diff] [blame] | 290 | |
Darren Tucker | a627d42 | 2013-06-02 07:31:17 +1000 | [diff] [blame] | 291 | free(service); |
| 292 | free(user); |
| 293 | free(method); |
markus@openbsd.org | 3fdc88a | 2015-01-19 20:07:45 +0000 | [diff] [blame] | 294 | return 0; |
Damien Miller | 5d57e50 | 2001-03-30 10:48:31 +1000 | [diff] [blame] | 295 | } |
| 296 | |
| 297 | void |
markus@openbsd.org | eb272ea | 2017-05-30 14:29:59 +0000 | [diff] [blame] | 298 | userauth_finish(struct ssh *ssh, int authenticated, const char *method, |
Damien Miller | 15b05cf | 2012-12-03 09:53:20 +1100 | [diff] [blame] | 299 | const char *submethod) |
Damien Miller | 5d57e50 | 2001-03-30 10:48:31 +1000 | [diff] [blame] | 300 | { |
markus@openbsd.org | eb272ea | 2017-05-30 14:29:59 +0000 | [diff] [blame] | 301 | Authctxt *authctxt = ssh->authctxt; |
Ben Lindstrom | cd4349f | 2001-06-09 00:23:17 +0000 | [diff] [blame] | 302 | char *methods; |
Damien Miller | a6e3f01 | 2012-11-04 23:21:40 +1100 | [diff] [blame] | 303 | int partial = 0; |
Ben Lindstrom | cd4349f | 2001-06-09 00:23:17 +0000 | [diff] [blame] | 304 | |
Ben Lindstrom | db65e8f | 2001-01-19 04:26:52 +0000 | [diff] [blame] | 305 | if (!authctxt->valid && authenticated) |
| 306 | fatal("INTERNAL ERROR: authenticated invalid user %s", |
| 307 | authctxt->user); |
Damien Miller | 15b05cf | 2012-12-03 09:53:20 +1100 | [diff] [blame] | 308 | if (authenticated && authctxt->postponed) |
| 309 | fatal("INTERNAL ERROR: authenticated and postponed"); |
Damien Miller | b70b61f | 2000-09-16 16:25:12 +1100 | [diff] [blame] | 310 | |
Damien Miller | 874d77b | 2000-10-14 16:23:11 +1100 | [diff] [blame] | 311 | /* Special handling for root */ |
Damien Miller | 556f931 | 2003-02-24 11:59:26 +1100 | [diff] [blame] | 312 | if (authenticated && authctxt->pw->pw_uid == 0 && |
Darren Tucker | 269a1ea | 2005-02-03 00:20:53 +1100 | [diff] [blame] | 313 | !auth_root_allowed(method)) { |
Damien Miller | eba71ba | 2000-04-29 23:57:08 +1000 | [diff] [blame] | 314 | authenticated = 0; |
Darren Tucker | 2e0cf0d | 2005-02-08 21:52:47 +1100 | [diff] [blame] | 315 | #ifdef SSH_AUDIT_EVENTS |
| 316 | PRIVSEP(audit_event(SSH_LOGIN_ROOT_DENIED)); |
Darren Tucker | 269a1ea | 2005-02-03 00:20:53 +1100 | [diff] [blame] | 317 | #endif |
| 318 | } |
Damien Miller | eba71ba | 2000-04-29 23:57:08 +1000 | [diff] [blame] | 319 | |
Damien Miller | 15b05cf | 2012-12-03 09:53:20 +1100 | [diff] [blame] | 320 | if (authenticated && options.num_auth_methods != 0) { |
Damien Miller | 91a55f2 | 2013-04-23 15:18:10 +1000 | [diff] [blame] | 321 | if (!auth2_update_methods_lists(authctxt, method, submethod)) { |
Damien Miller | 15b05cf | 2012-12-03 09:53:20 +1100 | [diff] [blame] | 322 | authenticated = 0; |
| 323 | partial = 1; |
| 324 | } |
| 325 | } |
| 326 | |
| 327 | /* Log before sending the reply */ |
Darren Tucker | 0acca37 | 2013-06-02 07:41:51 +1000 | [diff] [blame] | 328 | auth_log(authctxt, authenticated, partial, method, submethod); |
Damien Miller | 15b05cf | 2012-12-03 09:53:20 +1100 | [diff] [blame] | 329 | |
djm@openbsd.org | 8f57495 | 2017-06-24 06:34:38 +0000 | [diff] [blame] | 330 | /* Update information exposed to session */ |
| 331 | if (authenticated || partial) |
| 332 | auth2_update_session_info(authctxt, method, submethod); |
| 333 | |
Damien Miller | 15b05cf | 2012-12-03 09:53:20 +1100 | [diff] [blame] | 334 | if (authctxt->postponed) |
| 335 | return; |
| 336 | |
Damien Miller | 1f499fd | 2003-08-25 13:08:49 +1000 | [diff] [blame] | 337 | #ifdef USE_PAM |
Darren Tucker | 77fc29e | 2004-09-11 23:07:03 +1000 | [diff] [blame] | 338 | if (options.use_pam && authenticated) { |
| 339 | if (!PRIVSEP(do_pam_account())) { |
Darren Tucker | 77fc29e | 2004-09-11 23:07:03 +1000 | [diff] [blame] | 340 | /* 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 Tucker | c138667 | 2004-12-03 14:33:47 +1100 | [diff] [blame] | 344 | packet_write_wait(); |
Darren Tucker | 77fc29e | 2004-09-11 23:07:03 +1000 | [diff] [blame] | 345 | } |
Darren Tucker | c138667 | 2004-12-03 14:33:47 +1100 | [diff] [blame] | 346 | fatal("Access denied for user %s by PAM account " |
Damien Miller | b6f72f5 | 2005-07-17 17:26:43 +1000 | [diff] [blame] | 347 | "configuration", authctxt->user); |
Darren Tucker | 77fc29e | 2004-09-11 23:07:03 +1000 | [diff] [blame] | 348 | } |
| 349 | } |
Damien Miller | 1f499fd | 2003-08-25 13:08:49 +1000 | [diff] [blame] | 350 | #endif |
| 351 | |
Ben Lindstrom | cd4349f | 2001-06-09 00:23:17 +0000 | [diff] [blame] | 352 | if (authenticated == 1) { |
| 353 | /* turn off userauth */ |
markus@openbsd.org | eb272ea | 2017-05-30 14:29:59 +0000 | [diff] [blame] | 354 | ssh_dispatch_set(ssh, SSH2_MSG_USERAUTH_REQUEST, &dispatch_protocol_ignore); |
Ben Lindstrom | cd4349f | 2001-06-09 00:23:17 +0000 | [diff] [blame] | 355 | packet_start(SSH2_MSG_USERAUTH_SUCCESS); |
| 356 | packet_send(); |
| 357 | packet_write_wait(); |
| 358 | /* now we can break out */ |
| 359 | authctxt->success = 1; |
djm@openbsd.org | f1a1934 | 2017-02-03 23:05:57 +0000 | [diff] [blame] | 360 | ssh_packet_set_log_preamble(ssh, "user %s", authctxt->user); |
Ben Lindstrom | cd4349f | 2001-06-09 00:23:17 +0000 | [diff] [blame] | 361 | } else { |
Damien Miller | 0b4d48b | 2008-07-05 09:44:53 +1000 | [diff] [blame] | 362 | /* Allow initial try of "none" auth without failure penalty */ |
djm@openbsd.org | 058f839 | 2014-12-18 23:58:04 +0000 | [diff] [blame] | 363 | if (!partial && !authctxt->server_caused_failure && |
Damien Miller | 3fcdfd5 | 2011-05-05 14:04:11 +1000 | [diff] [blame] | 364 | (authctxt->attempt > 1 || strcmp(method, "none") != 0)) |
Damien Miller | 0b4d48b | 2008-07-05 09:44:53 +1000 | [diff] [blame] | 365 | authctxt->failures++; |
| 366 | if (authctxt->failures >= options.max_authtries) { |
Darren Tucker | 2e0cf0d | 2005-02-08 21:52:47 +1100 | [diff] [blame] | 367 | #ifdef SSH_AUDIT_EVENTS |
| 368 | PRIVSEP(audit_event(SSH_LOGIN_EXCEED_MAXTRIES)); |
Darren Tucker | 269a1ea | 2005-02-03 00:20:53 +1100 | [diff] [blame] | 369 | #endif |
Damien Miller | 686feb5 | 2014-07-03 21:29:38 +1000 | [diff] [blame] | 370 | auth_maxtries_exceeded(authctxt); |
Darren Tucker | 269a1ea | 2005-02-03 00:20:53 +1100 | [diff] [blame] | 371 | } |
Damien Miller | a6e3f01 | 2012-11-04 23:21:40 +1100 | [diff] [blame] | 372 | methods = authmethods_get(authctxt); |
| 373 | debug3("%s: failure partial=%d next methods=\"%s\"", __func__, |
| 374 | partial, methods); |
Ben Lindstrom | cd4349f | 2001-06-09 00:23:17 +0000 | [diff] [blame] | 375 | packet_start(SSH2_MSG_USERAUTH_FAILURE); |
| 376 | packet_put_cstring(methods); |
Damien Miller | a6e3f01 | 2012-11-04 23:21:40 +1100 | [diff] [blame] | 377 | packet_put_char(partial); |
Ben Lindstrom | cd4349f | 2001-06-09 00:23:17 +0000 | [diff] [blame] | 378 | packet_send(); |
| 379 | packet_write_wait(); |
Darren Tucker | a627d42 | 2013-06-02 07:31:17 +1000 | [diff] [blame] | 380 | free(methods); |
Ben Lindstrom | cd4349f | 2001-06-09 00:23:17 +0000 | [diff] [blame] | 381 | } |
Damien Miller | 874d77b | 2000-10-14 16:23:11 +1100 | [diff] [blame] | 382 | } |
| 383 | |
Damien Miller | a6e3f01 | 2012-11-04 23:21:40 +1100 | [diff] [blame] | 384 | /* |
| 385 | * Checks whether method is allowed by at least one AuthenticationMethods |
| 386 | * methods list. Returns 1 if allowed, or no methods lists configured. |
| 387 | * 0 otherwise. |
| 388 | */ |
Damien Miller | 91a55f2 | 2013-04-23 15:18:10 +1000 | [diff] [blame] | 389 | int |
| 390 | auth2_method_allowed(Authctxt *authctxt, const char *method, |
| 391 | const char *submethod) |
Damien Miller | a6e3f01 | 2012-11-04 23:21:40 +1100 | [diff] [blame] | 392 | { |
| 393 | u_int i; |
| 394 | |
| 395 | /* |
| 396 | * NB. authctxt->num_auth_methods might be zero as a result of |
| 397 | * auth2_setup_methods_lists(), so check the configuration. |
| 398 | */ |
| 399 | if (options.num_auth_methods == 0) |
| 400 | return 1; |
| 401 | for (i = 0; i < authctxt->num_auth_methods; i++) { |
Damien Miller | 91a55f2 | 2013-04-23 15:18:10 +1000 | [diff] [blame] | 402 | if (list_starts_with(authctxt->auth_methods[i], method, |
| 403 | submethod) != MATCH_NONE) |
Damien Miller | a6e3f01 | 2012-11-04 23:21:40 +1100 | [diff] [blame] | 404 | return 1; |
| 405 | } |
| 406 | return 0; |
| 407 | } |
| 408 | |
Ben Lindstrom | 7907382 | 2001-07-04 03:42:30 +0000 | [diff] [blame] | 409 | static char * |
Damien Miller | a6e3f01 | 2012-11-04 23:21:40 +1100 | [diff] [blame] | 410 | authmethods_get(Authctxt *authctxt) |
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 b; |
Damien Miller | 874d77b | 2000-10-14 16:23:11 +1100 | [diff] [blame] | 413 | char *list; |
Damien Miller | a6e3f01 | 2012-11-04 23:21:40 +1100 | [diff] [blame] | 414 | u_int i; |
Damien Miller | 874d77b | 2000-10-14 16:23:11 +1100 | [diff] [blame] | 415 | |
Damien Miller | 0e3b872 | 2002-01-22 23:26:38 +1100 | [diff] [blame] | 416 | buffer_init(&b); |
Ben Lindstrom | 511bb24 | 2002-06-06 20:52:37 +0000 | [diff] [blame] | 417 | for (i = 0; authmethods[i] != NULL; i++) { |
| 418 | if (strcmp(authmethods[i]->name, "none") == 0) |
Damien Miller | 874d77b | 2000-10-14 16:23:11 +1100 | [diff] [blame] | 419 | continue; |
Damien Miller | a6e3f01 | 2012-11-04 23:21:40 +1100 | [diff] [blame] | 420 | if (authmethods[i]->enabled == NULL || |
| 421 | *(authmethods[i]->enabled) == 0) |
| 422 | continue; |
Damien Miller | 91a55f2 | 2013-04-23 15:18:10 +1000 | [diff] [blame] | 423 | if (!auth2_method_allowed(authctxt, authmethods[i]->name, |
| 424 | NULL)) |
Damien Miller | a6e3f01 | 2012-11-04 23:21:40 +1100 | [diff] [blame] | 425 | continue; |
| 426 | if (buffer_len(&b) > 0) |
| 427 | buffer_append(&b, ",", 1); |
| 428 | buffer_append(&b, authmethods[i]->name, |
| 429 | strlen(authmethods[i]->name)); |
Damien Miller | eba71ba | 2000-04-29 23:57:08 +1000 | [diff] [blame] | 430 | } |
djm@openbsd.org | 1a31d02 | 2016-05-02 08:49:03 +0000 | [diff] [blame] | 431 | if ((list = sshbuf_dup_string(&b)) == NULL) |
| 432 | fatal("%s: sshbuf_dup_string failed", __func__); |
Damien Miller | 0e3b872 | 2002-01-22 23:26:38 +1100 | [diff] [blame] | 433 | buffer_free(&b); |
Damien Miller | 874d77b | 2000-10-14 16:23:11 +1100 | [diff] [blame] | 434 | return list; |
| 435 | } |
| 436 | |
Ben Lindstrom | bba8121 | 2001-06-25 05:01:22 +0000 | [diff] [blame] | 437 | static Authmethod * |
Damien Miller | a6e3f01 | 2012-11-04 23:21:40 +1100 | [diff] [blame] | 438 | authmethod_lookup(Authctxt *authctxt, const char *name) |
Damien Miller | 874d77b | 2000-10-14 16:23:11 +1100 | [diff] [blame] | 439 | { |
Ben Lindstrom | 511bb24 | 2002-06-06 20:52:37 +0000 | [diff] [blame] | 440 | int i; |
| 441 | |
Damien Miller | 874d77b | 2000-10-14 16:23:11 +1100 | [diff] [blame] | 442 | if (name != NULL) |
Ben Lindstrom | 511bb24 | 2002-06-06 20:52:37 +0000 | [diff] [blame] | 443 | for (i = 0; authmethods[i] != NULL; i++) |
| 444 | if (authmethods[i]->enabled != NULL && |
| 445 | *(authmethods[i]->enabled) != 0 && |
Damien Miller | a6e3f01 | 2012-11-04 23:21:40 +1100 | [diff] [blame] | 446 | strcmp(name, authmethods[i]->name) == 0 && |
Damien Miller | 91a55f2 | 2013-04-23 15:18:10 +1000 | [diff] [blame] | 447 | auth2_method_allowed(authctxt, |
| 448 | authmethods[i]->name, NULL)) |
Ben Lindstrom | 511bb24 | 2002-06-06 20:52:37 +0000 | [diff] [blame] | 449 | return authmethods[i]; |
| 450 | debug2("Unrecognized authentication method name: %s", |
| 451 | name ? name : "NULL"); |
Damien Miller | 874d77b | 2000-10-14 16:23:11 +1100 | [diff] [blame] | 452 | return NULL; |
Damien Miller | eba71ba | 2000-04-29 23:57:08 +1000 | [diff] [blame] | 453 | } |
Darren Tucker | 4230a5d | 2008-07-02 22:56:09 +1000 | [diff] [blame] | 454 | |
Damien Miller | a6e3f01 | 2012-11-04 23:21:40 +1100 | [diff] [blame] | 455 | /* |
| 456 | * Check a comma-separated list of methods for validity. Is need_enable is |
| 457 | * non-zero, then also require that the methods are enabled. |
| 458 | * Returns 0 on success or -1 if the methods list is invalid. |
| 459 | */ |
| 460 | int |
| 461 | auth2_methods_valid(const char *_methods, int need_enable) |
| 462 | { |
Damien Miller | 91a55f2 | 2013-04-23 15:18:10 +1000 | [diff] [blame] | 463 | char *methods, *omethods, *method, *p; |
Damien Miller | a6e3f01 | 2012-11-04 23:21:40 +1100 | [diff] [blame] | 464 | u_int i, found; |
| 465 | int ret = -1; |
| 466 | |
| 467 | if (*_methods == '\0') { |
| 468 | error("empty authentication method list"); |
| 469 | return -1; |
| 470 | } |
| 471 | omethods = methods = xstrdup(_methods); |
| 472 | while ((method = strsep(&methods, ",")) != NULL) { |
| 473 | for (found = i = 0; !found && authmethods[i] != NULL; i++) { |
Damien Miller | 91a55f2 | 2013-04-23 15:18:10 +1000 | [diff] [blame] | 474 | if ((p = strchr(method, ':')) != NULL) |
| 475 | *p = '\0'; |
Damien Miller | a6e3f01 | 2012-11-04 23:21:40 +1100 | [diff] [blame] | 476 | if (strcmp(method, authmethods[i]->name) != 0) |
| 477 | continue; |
| 478 | if (need_enable) { |
| 479 | if (authmethods[i]->enabled == NULL || |
| 480 | *(authmethods[i]->enabled) == 0) { |
| 481 | error("Disabled method \"%s\" in " |
| 482 | "AuthenticationMethods list \"%s\"", |
| 483 | method, _methods); |
| 484 | goto out; |
| 485 | } |
| 486 | } |
| 487 | found = 1; |
| 488 | break; |
| 489 | } |
| 490 | if (!found) { |
| 491 | error("Unknown authentication method \"%s\" in list", |
| 492 | method); |
| 493 | goto out; |
| 494 | } |
| 495 | } |
| 496 | ret = 0; |
| 497 | out: |
| 498 | free(omethods); |
| 499 | return ret; |
| 500 | } |
| 501 | |
| 502 | /* |
| 503 | * Prune the AuthenticationMethods supplied in the configuration, removing |
| 504 | * any methods lists that include disabled methods. Note that this might |
| 505 | * leave authctxt->num_auth_methods == 0, even when multiple required auth |
| 506 | * has been requested. For this reason, all tests for whether multiple is |
| 507 | * enabled should consult options.num_auth_methods directly. |
| 508 | */ |
| 509 | int |
| 510 | auth2_setup_methods_lists(Authctxt *authctxt) |
| 511 | { |
| 512 | u_int i; |
| 513 | |
| 514 | if (options.num_auth_methods == 0) |
| 515 | return 0; |
| 516 | debug3("%s: checking methods", __func__); |
| 517 | authctxt->auth_methods = xcalloc(options.num_auth_methods, |
| 518 | sizeof(*authctxt->auth_methods)); |
| 519 | authctxt->num_auth_methods = 0; |
| 520 | for (i = 0; i < options.num_auth_methods; i++) { |
| 521 | if (auth2_methods_valid(options.auth_methods[i], 1) != 0) { |
| 522 | logit("Authentication methods list \"%s\" contains " |
| 523 | "disabled method, skipping", |
| 524 | options.auth_methods[i]); |
| 525 | continue; |
| 526 | } |
| 527 | debug("authentication methods list %d: %s", |
| 528 | authctxt->num_auth_methods, options.auth_methods[i]); |
| 529 | authctxt->auth_methods[authctxt->num_auth_methods++] = |
| 530 | xstrdup(options.auth_methods[i]); |
| 531 | } |
| 532 | if (authctxt->num_auth_methods == 0) { |
| 533 | error("No AuthenticationMethods left after eliminating " |
| 534 | "disabled methods"); |
| 535 | return -1; |
| 536 | } |
| 537 | return 0; |
| 538 | } |
| 539 | |
| 540 | static int |
Damien Miller | 91a55f2 | 2013-04-23 15:18:10 +1000 | [diff] [blame] | 541 | list_starts_with(const char *methods, const char *method, |
| 542 | const char *submethod) |
Damien Miller | a6e3f01 | 2012-11-04 23:21:40 +1100 | [diff] [blame] | 543 | { |
| 544 | size_t l = strlen(method); |
Damien Miller | 91a55f2 | 2013-04-23 15:18:10 +1000 | [diff] [blame] | 545 | int match; |
| 546 | const char *p; |
Damien Miller | a6e3f01 | 2012-11-04 23:21:40 +1100 | [diff] [blame] | 547 | |
| 548 | if (strncmp(methods, method, l) != 0) |
Damien Miller | 91a55f2 | 2013-04-23 15:18:10 +1000 | [diff] [blame] | 549 | return MATCH_NONE; |
| 550 | p = methods + l; |
| 551 | match = MATCH_METHOD; |
| 552 | if (*p == ':') { |
| 553 | if (!submethod) |
| 554 | return MATCH_PARTIAL; |
| 555 | l = strlen(submethod); |
| 556 | p += 1; |
| 557 | if (strncmp(submethod, p, l)) |
| 558 | return MATCH_NONE; |
| 559 | p += l; |
| 560 | match = MATCH_BOTH; |
| 561 | } |
| 562 | if (*p != ',' && *p != '\0') |
| 563 | return MATCH_NONE; |
| 564 | return match; |
Damien Miller | a6e3f01 | 2012-11-04 23:21:40 +1100 | [diff] [blame] | 565 | } |
| 566 | |
| 567 | /* |
| 568 | * Remove method from the start of a comma-separated list of methods. |
| 569 | * Returns 0 if the list of methods did not start with that method or 1 |
| 570 | * if it did. |
| 571 | */ |
| 572 | static int |
Damien Miller | 91a55f2 | 2013-04-23 15:18:10 +1000 | [diff] [blame] | 573 | remove_method(char **methods, const char *method, const char *submethod) |
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 | char *omethods = *methods, *p; |
Damien Miller | a6e3f01 | 2012-11-04 23:21:40 +1100 | [diff] [blame] | 576 | size_t l = strlen(method); |
Damien Miller | 91a55f2 | 2013-04-23 15:18:10 +1000 | [diff] [blame] | 577 | int match; |
Damien Miller | a6e3f01 | 2012-11-04 23:21:40 +1100 | [diff] [blame] | 578 | |
Damien Miller | 91a55f2 | 2013-04-23 15:18:10 +1000 | [diff] [blame] | 579 | match = list_starts_with(omethods, method, submethod); |
| 580 | if (match != MATCH_METHOD && match != MATCH_BOTH) |
Damien Miller | a6e3f01 | 2012-11-04 23:21:40 +1100 | [diff] [blame] | 581 | return 0; |
Damien Miller | 91a55f2 | 2013-04-23 15:18:10 +1000 | [diff] [blame] | 582 | p = omethods + l; |
| 583 | if (submethod && match == MATCH_BOTH) |
| 584 | p += 1 + strlen(submethod); /* include colon */ |
| 585 | if (*p == ',') |
| 586 | p++; |
| 587 | *methods = xstrdup(p); |
Damien Miller | a6e3f01 | 2012-11-04 23:21:40 +1100 | [diff] [blame] | 588 | free(omethods); |
| 589 | return 1; |
| 590 | } |
| 591 | |
| 592 | /* |
| 593 | * Called after successful authentication. Will remove the successful method |
| 594 | * from the start of each list in which it occurs. If it was the last method |
| 595 | * in any list, then authentication is deemed successful. |
| 596 | * Returns 1 if the method completed any authentication list or 0 otherwise. |
| 597 | */ |
| 598 | int |
Damien Miller | 91a55f2 | 2013-04-23 15:18:10 +1000 | [diff] [blame] | 599 | auth2_update_methods_lists(Authctxt *authctxt, const char *method, |
| 600 | const char *submethod) |
Damien Miller | a6e3f01 | 2012-11-04 23:21:40 +1100 | [diff] [blame] | 601 | { |
| 602 | u_int i, found = 0; |
| 603 | |
| 604 | debug3("%s: updating methods list after \"%s\"", __func__, method); |
| 605 | for (i = 0; i < authctxt->num_auth_methods; i++) { |
Damien Miller | 91a55f2 | 2013-04-23 15:18:10 +1000 | [diff] [blame] | 606 | if (!remove_method(&(authctxt->auth_methods[i]), method, |
| 607 | submethod)) |
Damien Miller | a6e3f01 | 2012-11-04 23:21:40 +1100 | [diff] [blame] | 608 | continue; |
| 609 | found = 1; |
| 610 | if (*authctxt->auth_methods[i] == '\0') { |
| 611 | debug2("authentication methods list %d complete", i); |
| 612 | return 1; |
| 613 | } |
| 614 | debug3("authentication methods list %d remaining: \"%s\"", |
| 615 | i, authctxt->auth_methods[i]); |
| 616 | } |
| 617 | /* This should not happen, but would be bad if it did */ |
| 618 | if (!found) |
| 619 | fatal("%s: method not in AuthenticationMethods", __func__); |
| 620 | return 0; |
| 621 | } |
| 622 | |
djm@openbsd.org | 8f57495 | 2017-06-24 06:34:38 +0000 | [diff] [blame] | 623 | /* Reset method-specific information */ |
| 624 | void auth2_authctxt_reset_info(Authctxt *authctxt) |
| 625 | { |
| 626 | sshkey_free(authctxt->auth_method_key); |
| 627 | free(authctxt->auth_method_info); |
| 628 | authctxt->auth_method_key = NULL; |
| 629 | authctxt->auth_method_info = NULL; |
| 630 | } |
| 631 | |
| 632 | /* Record auth method-specific information for logs */ |
| 633 | void |
| 634 | auth2_record_info(Authctxt *authctxt, const char *fmt, ...) |
| 635 | { |
| 636 | va_list ap; |
| 637 | int i; |
| 638 | |
| 639 | free(authctxt->auth_method_info); |
| 640 | authctxt->auth_method_info = NULL; |
| 641 | |
| 642 | va_start(ap, fmt); |
| 643 | i = vasprintf(&authctxt->auth_method_info, fmt, ap); |
| 644 | va_end(ap); |
| 645 | |
| 646 | if (i < 0 || authctxt->auth_method_info == NULL) |
| 647 | fatal("%s: vasprintf failed", __func__); |
| 648 | } |
| 649 | |
| 650 | /* |
| 651 | * Records a public key used in authentication. This is used for logging |
| 652 | * and to ensure that the same key is not subsequently accepted again for |
| 653 | * multiple authentication. |
| 654 | */ |
| 655 | void |
| 656 | auth2_record_key(Authctxt *authctxt, int authenticated, |
| 657 | const struct sshkey *key) |
| 658 | { |
| 659 | struct sshkey **tmp, *dup; |
| 660 | int r; |
| 661 | |
| 662 | if ((r = sshkey_demote(key, &dup)) != 0) |
| 663 | fatal("%s: copy key: %s", __func__, ssh_err(r)); |
| 664 | sshkey_free(authctxt->auth_method_key); |
| 665 | authctxt->auth_method_key = dup; |
| 666 | |
| 667 | if (!authenticated) |
| 668 | return; |
| 669 | |
| 670 | /* If authenticated, make sure we don't accept this key again */ |
| 671 | if ((r = sshkey_demote(key, &dup)) != 0) |
| 672 | fatal("%s: copy key: %s", __func__, ssh_err(r)); |
| 673 | if (authctxt->nprev_keys >= INT_MAX || |
| 674 | (tmp = recallocarray(authctxt->prev_keys, authctxt->nprev_keys, |
| 675 | authctxt->nprev_keys + 1, sizeof(*authctxt->prev_keys))) == NULL) |
| 676 | fatal("%s: reallocarray failed", __func__); |
| 677 | authctxt->prev_keys = tmp; |
| 678 | authctxt->prev_keys[authctxt->nprev_keys] = dup; |
| 679 | authctxt->nprev_keys++; |
| 680 | |
| 681 | } |
| 682 | |
| 683 | /* Checks whether a key has already been previously used for authentication */ |
| 684 | int |
| 685 | auth2_key_already_used(Authctxt *authctxt, const struct sshkey *key) |
| 686 | { |
| 687 | u_int i; |
| 688 | char *fp; |
| 689 | |
| 690 | for (i = 0; i < authctxt->nprev_keys; i++) { |
| 691 | if (sshkey_equal_public(key, authctxt->prev_keys[i])) { |
| 692 | fp = sshkey_fingerprint(authctxt->prev_keys[i], |
| 693 | options.fingerprint_hash, SSH_FP_DEFAULT); |
| 694 | debug3("%s: key already used: %s %s", __func__, |
| 695 | sshkey_type(authctxt->prev_keys[i]), |
| 696 | fp == NULL ? "UNKNOWN" : fp); |
| 697 | free(fp); |
| 698 | return 1; |
| 699 | } |
| 700 | } |
| 701 | return 0; |
| 702 | } |
| 703 | |
| 704 | /* |
| 705 | * Updates authctxt->session_info with details of authentication. Should be |
| 706 | * whenever an authentication method succeeds. |
| 707 | */ |
| 708 | void |
| 709 | auth2_update_session_info(Authctxt *authctxt, const char *method, |
| 710 | const char *submethod) |
| 711 | { |
| 712 | int r; |
| 713 | |
| 714 | if (authctxt->session_info == NULL) { |
| 715 | if ((authctxt->session_info = sshbuf_new()) == NULL) |
| 716 | fatal("%s: sshbuf_new", __func__); |
| 717 | } |
| 718 | |
| 719 | /* Append method[/submethod] */ |
| 720 | if ((r = sshbuf_putf(authctxt->session_info, "%s%s%s", |
| 721 | method, submethod == NULL ? "" : "/", |
| 722 | submethod == NULL ? "" : submethod)) != 0) |
| 723 | fatal("%s: append method: %s", __func__, ssh_err(r)); |
| 724 | |
| 725 | /* Append key if present */ |
| 726 | if (authctxt->auth_method_key != NULL) { |
| 727 | if ((r = sshbuf_put_u8(authctxt->session_info, ' ')) != 0 || |
| 728 | (r = sshkey_format_text(authctxt->auth_method_key, |
| 729 | authctxt->session_info)) != 0) |
| 730 | fatal("%s: append key: %s", __func__, ssh_err(r)); |
| 731 | } |
| 732 | |
| 733 | if (authctxt->auth_method_info != NULL) { |
| 734 | /* Ensure no ambiguity here */ |
| 735 | if (strchr(authctxt->auth_method_info, '\n') != NULL) |
| 736 | fatal("%s: auth_method_info contains \\n", __func__); |
| 737 | if ((r = sshbuf_put_u8(authctxt->session_info, ' ')) != 0 || |
| 738 | (r = sshbuf_putf(authctxt->session_info, "%s", |
| 739 | authctxt->auth_method_info)) != 0) { |
| 740 | fatal("%s: append method info: %s", |
| 741 | __func__, ssh_err(r)); |
| 742 | } |
| 743 | } |
| 744 | if ((r = sshbuf_put_u8(authctxt->session_info, '\n')) != 0) |
| 745 | fatal("%s: append: %s", __func__, ssh_err(r)); |
| 746 | } |
Damien Miller | a6e3f01 | 2012-11-04 23:21:40 +1100 | [diff] [blame] | 747 | |