djm@openbsd.org | e661a86 | 2015-05-04 06:10:48 +0000 | [diff] [blame] | 1 | /* $OpenBSD: auth2-hostbased.c,v 1.25 2015/05/04 06:10:48 djm Exp $ */ |
Ben Lindstrom | 855bf3a | 2002-06-06 20:27:55 +0000 | [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. |
| 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 | */ |
| 25 | |
| 26 | #include "includes.h" |
Ben Lindstrom | 855bf3a | 2002-06-06 20:27:55 +0000 | [diff] [blame] | 27 | |
Damien Miller | 9f2abc4 | 2006-07-10 20:53:08 +1000 | [diff] [blame] | 28 | #include <sys/types.h> |
| 29 | |
| 30 | #include <pwd.h> |
Damien Miller | e3476ed | 2006-07-24 14:13:33 +1000 | [diff] [blame] | 31 | #include <string.h> |
Damien Miller | d783435 | 2006-08-05 12:39:39 +1000 | [diff] [blame] | 32 | #include <stdarg.h> |
Damien Miller | 9f2abc4 | 2006-07-10 20:53:08 +1000 | [diff] [blame] | 33 | |
Ben Lindstrom | 855bf3a | 2002-06-06 20:27:55 +0000 | [diff] [blame] | 34 | #include "xmalloc.h" |
Damien Miller | d783435 | 2006-08-05 12:39:39 +1000 | [diff] [blame] | 35 | #include "ssh2.h" |
Ben Lindstrom | 855bf3a | 2002-06-06 20:27:55 +0000 | [diff] [blame] | 36 | #include "packet.h" |
| 37 | #include "buffer.h" |
| 38 | #include "log.h" |
Damien Miller | 7acefbb | 2014-07-18 14:11:24 +1000 | [diff] [blame] | 39 | #include "misc.h" |
Ben Lindstrom | 855bf3a | 2002-06-06 20:27:55 +0000 | [diff] [blame] | 40 | #include "servconf.h" |
| 41 | #include "compat.h" |
Ben Lindstrom | 855bf3a | 2002-06-06 20:27:55 +0000 | [diff] [blame] | 42 | #include "key.h" |
Damien Miller | d783435 | 2006-08-05 12:39:39 +1000 | [diff] [blame] | 43 | #include "hostfile.h" |
| 44 | #include "auth.h" |
Ben Lindstrom | 855bf3a | 2002-06-06 20:27:55 +0000 | [diff] [blame] | 45 | #include "canohost.h" |
Damien Miller | d783435 | 2006-08-05 12:39:39 +1000 | [diff] [blame] | 46 | #ifdef GSSAPI |
| 47 | #include "ssh-gss.h" |
| 48 | #endif |
Ben Lindstrom | 855bf3a | 2002-06-06 20:27:55 +0000 | [diff] [blame] | 49 | #include "monitor_wrap.h" |
| 50 | #include "pathnames.h" |
djm@openbsd.org | 1f729f0 | 2015-01-13 07:39:19 +0000 | [diff] [blame] | 51 | #include "match.h" |
Ben Lindstrom | 855bf3a | 2002-06-06 20:27:55 +0000 | [diff] [blame] | 52 | |
| 53 | /* import */ |
| 54 | extern ServerOptions options; |
| 55 | extern u_char *session_id2; |
Darren Tucker | 502d384 | 2003-06-28 12:38:01 +1000 | [diff] [blame] | 56 | extern u_int session_id2_len; |
Ben Lindstrom | 855bf3a | 2002-06-06 20:27:55 +0000 | [diff] [blame] | 57 | |
| 58 | static int |
| 59 | userauth_hostbased(Authctxt *authctxt) |
| 60 | { |
| 61 | Buffer b; |
| 62 | Key *key = NULL; |
| 63 | char *pkalg, *cuser, *chost, *service; |
| 64 | u_char *pkblob, *sig; |
| 65 | u_int alen, blen, slen; |
| 66 | int pktype; |
| 67 | int authenticated = 0; |
| 68 | |
| 69 | if (!authctxt->valid) { |
| 70 | debug2("userauth_hostbased: disabled because of invalid user"); |
| 71 | return 0; |
| 72 | } |
| 73 | pkalg = packet_get_string(&alen); |
| 74 | pkblob = packet_get_string(&blen); |
| 75 | chost = packet_get_string(NULL); |
| 76 | cuser = packet_get_string(NULL); |
| 77 | sig = packet_get_string(&slen); |
| 78 | |
| 79 | debug("userauth_hostbased: cuser %s chost %s pkalg %s slen %d", |
| 80 | cuser, chost, pkalg, slen); |
| 81 | #ifdef DEBUG_PK |
| 82 | debug("signature:"); |
| 83 | buffer_init(&b); |
| 84 | buffer_append(&b, sig, slen); |
| 85 | buffer_dump(&b); |
| 86 | buffer_free(&b); |
| 87 | #endif |
| 88 | pktype = key_type_from_name(pkalg); |
| 89 | if (pktype == KEY_UNSPEC) { |
| 90 | /* this is perfectly legal */ |
Damien Miller | 996acd2 | 2003-04-09 20:59:48 +1000 | [diff] [blame] | 91 | logit("userauth_hostbased: unsupported " |
Ben Lindstrom | 855bf3a | 2002-06-06 20:27:55 +0000 | [diff] [blame] | 92 | "public key algorithm: %s", pkalg); |
| 93 | goto done; |
| 94 | } |
| 95 | key = key_from_blob(pkblob, blen); |
| 96 | if (key == NULL) { |
| 97 | error("userauth_hostbased: cannot decode key: %s", pkalg); |
| 98 | goto done; |
| 99 | } |
| 100 | if (key->type != pktype) { |
| 101 | error("userauth_hostbased: type mismatch for decoded key " |
| 102 | "(received %d, expected %d)", key->type, pktype); |
| 103 | goto done; |
| 104 | } |
Damien Miller | 324541e | 2013-12-31 12:25:40 +1100 | [diff] [blame] | 105 | if (key_type_plain(key->type) == KEY_RSA && |
| 106 | (datafellows & SSH_BUG_RSASIGMD5) != 0) { |
| 107 | error("Refusing RSA key because peer uses unsafe " |
| 108 | "signature format"); |
| 109 | goto done; |
| 110 | } |
djm@openbsd.org | 1f729f0 | 2015-01-13 07:39:19 +0000 | [diff] [blame] | 111 | if (match_pattern_list(sshkey_ssh_name(key), |
djm@openbsd.org | e661a86 | 2015-05-04 06:10:48 +0000 | [diff] [blame] | 112 | options.hostbased_key_types, 0) != 1) { |
djm@openbsd.org | 1f729f0 | 2015-01-13 07:39:19 +0000 | [diff] [blame] | 113 | logit("%s: key type %s not in HostbasedAcceptedKeyTypes", |
| 114 | __func__, sshkey_type(key)); |
| 115 | goto done; |
| 116 | } |
| 117 | |
Ben Lindstrom | 855bf3a | 2002-06-06 20:27:55 +0000 | [diff] [blame] | 118 | service = datafellows & SSH_BUG_HBSERVICE ? "ssh-userauth" : |
| 119 | authctxt->service; |
| 120 | buffer_init(&b); |
| 121 | buffer_put_string(&b, session_id2, session_id2_len); |
| 122 | /* reconstruct packet */ |
| 123 | buffer_put_char(&b, SSH2_MSG_USERAUTH_REQUEST); |
| 124 | buffer_put_cstring(&b, authctxt->user); |
| 125 | buffer_put_cstring(&b, service); |
| 126 | buffer_put_cstring(&b, "hostbased"); |
| 127 | buffer_put_string(&b, pkalg, alen); |
| 128 | buffer_put_string(&b, pkblob, blen); |
| 129 | buffer_put_cstring(&b, chost); |
| 130 | buffer_put_cstring(&b, cuser); |
| 131 | #ifdef DEBUG_PK |
| 132 | buffer_dump(&b); |
| 133 | #endif |
Damien Miller | 20bdcd7 | 2013-07-18 16:10:09 +1000 | [diff] [blame] | 134 | |
| 135 | pubkey_auth_info(authctxt, key, |
| 136 | "client user \"%.100s\", client host \"%.100s\"", cuser, chost); |
| 137 | |
Ben Lindstrom | 855bf3a | 2002-06-06 20:27:55 +0000 | [diff] [blame] | 138 | /* test for allowed key and correct signature */ |
| 139 | authenticated = 0; |
| 140 | if (PRIVSEP(hostbased_key_allowed(authctxt->pw, cuser, chost, key)) && |
| 141 | PRIVSEP(key_verify(key, sig, slen, buffer_ptr(&b), |
| 142 | buffer_len(&b))) == 1) |
| 143 | authenticated = 1; |
| 144 | |
Damien Miller | fb1310e | 2004-01-21 11:02:50 +1100 | [diff] [blame] | 145 | buffer_free(&b); |
Ben Lindstrom | 855bf3a | 2002-06-06 20:27:55 +0000 | [diff] [blame] | 146 | done: |
| 147 | debug2("userauth_hostbased: authenticated %d", authenticated); |
| 148 | if (key != NULL) |
| 149 | key_free(key); |
Darren Tucker | a627d42 | 2013-06-02 07:31:17 +1000 | [diff] [blame] | 150 | free(pkalg); |
| 151 | free(pkblob); |
| 152 | free(cuser); |
| 153 | free(chost); |
| 154 | free(sig); |
Ben Lindstrom | 855bf3a | 2002-06-06 20:27:55 +0000 | [diff] [blame] | 155 | return authenticated; |
| 156 | } |
| 157 | |
| 158 | /* return 1 if given hostkey is allowed */ |
| 159 | int |
| 160 | hostbased_key_allowed(struct passwd *pw, const char *cuser, char *chost, |
| 161 | Key *key) |
| 162 | { |
Damien Miller | c158331 | 2010-08-05 13:04:50 +1000 | [diff] [blame] | 163 | const char *resolvedname, *ipaddr, *lookup, *reason; |
Ben Lindstrom | 855bf3a | 2002-06-06 20:27:55 +0000 | [diff] [blame] | 164 | HostStatus host_status; |
| 165 | int len; |
Damien Miller | c158331 | 2010-08-05 13:04:50 +1000 | [diff] [blame] | 166 | char *fp; |
Ben Lindstrom | 855bf3a | 2002-06-06 20:27:55 +0000 | [diff] [blame] | 167 | |
Damien Miller | 1aed65e | 2010-03-04 21:53:35 +1100 | [diff] [blame] | 168 | if (auth_key_is_revoked(key)) |
| 169 | return 0; |
| 170 | |
Damien Miller | 3a961dc | 2003-06-03 10:25:48 +1000 | [diff] [blame] | 171 | resolvedname = get_canonical_hostname(options.use_dns); |
Ben Lindstrom | 855bf3a | 2002-06-06 20:27:55 +0000 | [diff] [blame] | 172 | ipaddr = get_remote_ipaddr(); |
| 173 | |
djm@openbsd.org | 5191df9 | 2014-12-23 22:42:48 +0000 | [diff] [blame] | 174 | debug2("%s: chost %s resolvedname %s ipaddr %s", __func__, |
Ben Lindstrom | 855bf3a | 2002-06-06 20:27:55 +0000 | [diff] [blame] | 175 | chost, resolvedname, ipaddr); |
| 176 | |
Damien Miller | a1d03a5 | 2008-07-17 18:57:19 +1000 | [diff] [blame] | 177 | if (((len = strlen(chost)) > 0) && chost[len - 1] == '.') { |
| 178 | debug2("stripping trailing dot from chost %s", chost); |
| 179 | chost[len - 1] = '\0'; |
| 180 | } |
| 181 | |
Ben Lindstrom | 855bf3a | 2002-06-06 20:27:55 +0000 | [diff] [blame] | 182 | if (options.hostbased_uses_name_from_packet_only) { |
djm@openbsd.org | 5191df9 | 2014-12-23 22:42:48 +0000 | [diff] [blame] | 183 | if (auth_rhosts2(pw, cuser, chost, chost) == 0) { |
| 184 | debug2("%s: auth_rhosts2 refused " |
| 185 | "user \"%.100s\" host \"%.100s\" (from packet)", |
| 186 | __func__, cuser, chost); |
Ben Lindstrom | 855bf3a | 2002-06-06 20:27:55 +0000 | [diff] [blame] | 187 | return 0; |
djm@openbsd.org | 5191df9 | 2014-12-23 22:42:48 +0000 | [diff] [blame] | 188 | } |
Ben Lindstrom | 855bf3a | 2002-06-06 20:27:55 +0000 | [diff] [blame] | 189 | lookup = chost; |
| 190 | } else { |
Ben Lindstrom | 855bf3a | 2002-06-06 20:27:55 +0000 | [diff] [blame] | 191 | if (strcasecmp(resolvedname, chost) != 0) |
Damien Miller | 996acd2 | 2003-04-09 20:59:48 +1000 | [diff] [blame] | 192 | logit("userauth_hostbased mismatch: " |
Ben Lindstrom | 855bf3a | 2002-06-06 20:27:55 +0000 | [diff] [blame] | 193 | "client sends %s, but we resolve %s to %s", |
| 194 | chost, ipaddr, resolvedname); |
djm@openbsd.org | 5191df9 | 2014-12-23 22:42:48 +0000 | [diff] [blame] | 195 | if (auth_rhosts2(pw, cuser, resolvedname, ipaddr) == 0) { |
| 196 | debug2("%s: auth_rhosts2 refused " |
| 197 | "user \"%.100s\" host \"%.100s\" addr \"%.100s\"", |
| 198 | __func__, cuser, resolvedname, ipaddr); |
Ben Lindstrom | 855bf3a | 2002-06-06 20:27:55 +0000 | [diff] [blame] | 199 | return 0; |
djm@openbsd.org | 5191df9 | 2014-12-23 22:42:48 +0000 | [diff] [blame] | 200 | } |
Ben Lindstrom | 855bf3a | 2002-06-06 20:27:55 +0000 | [diff] [blame] | 201 | lookup = resolvedname; |
| 202 | } |
djm@openbsd.org | 5191df9 | 2014-12-23 22:42:48 +0000 | [diff] [blame] | 203 | debug2("%s: access allowed by auth_rhosts2", __func__); |
Ben Lindstrom | 855bf3a | 2002-06-06 20:27:55 +0000 | [diff] [blame] | 204 | |
Damien Miller | c158331 | 2010-08-05 13:04:50 +1000 | [diff] [blame] | 205 | if (key_is_cert(key) && |
| 206 | key_cert_check_authority(key, 1, 0, lookup, &reason)) { |
| 207 | error("%s", reason); |
| 208 | auth_debug_add("%s", reason); |
| 209 | return 0; |
| 210 | } |
| 211 | |
Ben Lindstrom | 855bf3a | 2002-06-06 20:27:55 +0000 | [diff] [blame] | 212 | host_status = check_key_in_hostfiles(pw, key, lookup, |
| 213 | _PATH_SSH_SYSTEM_HOSTFILE, |
| 214 | options.ignore_user_known_hosts ? NULL : _PATH_SSH_USER_HOSTFILE); |
| 215 | |
| 216 | /* backward compat if no key has been found. */ |
Damien Miller | c158331 | 2010-08-05 13:04:50 +1000 | [diff] [blame] | 217 | if (host_status == HOST_NEW) { |
Ben Lindstrom | 855bf3a | 2002-06-06 20:27:55 +0000 | [diff] [blame] | 218 | host_status = check_key_in_hostfiles(pw, key, lookup, |
| 219 | _PATH_SSH_SYSTEM_HOSTFILE2, |
| 220 | options.ignore_user_known_hosts ? NULL : |
| 221 | _PATH_SSH_USER_HOSTFILE2); |
Damien Miller | c158331 | 2010-08-05 13:04:50 +1000 | [diff] [blame] | 222 | } |
| 223 | |
| 224 | if (host_status == HOST_OK) { |
| 225 | if (key_is_cert(key)) { |
djm@openbsd.org | 9ce86c9 | 2015-01-28 22:36:00 +0000 | [diff] [blame] | 226 | if ((fp = sshkey_fingerprint(key->cert->signature_key, |
| 227 | options.fingerprint_hash, SSH_FP_DEFAULT)) == NULL) |
| 228 | fatal("%s: sshkey_fingerprint fail", __func__); |
Damien Miller | c158331 | 2010-08-05 13:04:50 +1000 | [diff] [blame] | 229 | verbose("Accepted certificate ID \"%s\" signed by " |
| 230 | "%s CA %s from %s@%s", key->cert->key_id, |
| 231 | key_type(key->cert->signature_key), fp, |
| 232 | cuser, lookup); |
| 233 | } else { |
djm@openbsd.org | 9ce86c9 | 2015-01-28 22:36:00 +0000 | [diff] [blame] | 234 | if ((fp = sshkey_fingerprint(key, |
| 235 | options.fingerprint_hash, SSH_FP_DEFAULT)) == NULL) |
| 236 | fatal("%s: sshkey_fingerprint fail", __func__); |
Damien Miller | c158331 | 2010-08-05 13:04:50 +1000 | [diff] [blame] | 237 | verbose("Accepted %s public key %s from %s@%s", |
| 238 | key_type(key), fp, cuser, lookup); |
| 239 | } |
Darren Tucker | a627d42 | 2013-06-02 07:31:17 +1000 | [diff] [blame] | 240 | free(fp); |
Damien Miller | c158331 | 2010-08-05 13:04:50 +1000 | [diff] [blame] | 241 | } |
Ben Lindstrom | 855bf3a | 2002-06-06 20:27:55 +0000 | [diff] [blame] | 242 | |
| 243 | return (host_status == HOST_OK); |
| 244 | } |
| 245 | |
| 246 | Authmethod method_hostbased = { |
| 247 | "hostbased", |
| 248 | userauth_hostbased, |
| 249 | &options.hostbased_authentication |
| 250 | }; |