blob: 0c40fad4ed310bb69d3767e42d9a96aed0e977a1 [file] [log] [blame]
djm@openbsd.org04c091f2019-01-19 21:43:56 +00001/* $OpenBSD: auth2-hostbased.c,v 1.40 2019/01/19 21:43:56 djm Exp $ */
Ben Lindstrom855bf3a2002-06-06 20:27:55 +00002/*
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 Lindstrom855bf3a2002-06-06 20:27:55 +000027
Damien Miller9f2abc42006-07-10 20:53:08 +100028#include <sys/types.h>
29
30#include <pwd.h>
Damien Millere3476ed2006-07-24 14:13:33 +100031#include <string.h>
Damien Millerd7834352006-08-05 12:39:39 +100032#include <stdarg.h>
Damien Miller9f2abc42006-07-10 20:53:08 +100033
Ben Lindstrom855bf3a2002-06-06 20:27:55 +000034#include "xmalloc.h"
Damien Millerd7834352006-08-05 12:39:39 +100035#include "ssh2.h"
Ben Lindstrom855bf3a2002-06-06 20:27:55 +000036#include "packet.h"
markus@openbsd.orgc7d39ac2018-07-09 21:35:50 +000037#include "sshbuf.h"
Ben Lindstrom855bf3a2002-06-06 20:27:55 +000038#include "log.h"
Damien Miller7acefbb2014-07-18 14:11:24 +100039#include "misc.h"
Ben Lindstrom855bf3a2002-06-06 20:27:55 +000040#include "servconf.h"
41#include "compat.h"
markus@openbsd.orgeb766982017-05-30 14:25:42 +000042#include "sshkey.h"
Damien Millerd7834352006-08-05 12:39:39 +100043#include "hostfile.h"
44#include "auth.h"
Ben Lindstrom855bf3a2002-06-06 20:27:55 +000045#include "canohost.h"
Damien Millerd7834352006-08-05 12:39:39 +100046#ifdef GSSAPI
47#include "ssh-gss.h"
48#endif
Ben Lindstrom855bf3a2002-06-06 20:27:55 +000049#include "monitor_wrap.h"
50#include "pathnames.h"
markus@openbsd.orgeb766982017-05-30 14:25:42 +000051#include "ssherr.h"
djm@openbsd.org1f729f02015-01-13 07:39:19 +000052#include "match.h"
Ben Lindstrom855bf3a2002-06-06 20:27:55 +000053
54/* import */
55extern ServerOptions options;
56extern u_char *session_id2;
Darren Tucker502d3842003-06-28 12:38:01 +100057extern u_int session_id2_len;
Ben Lindstrom855bf3a2002-06-06 20:27:55 +000058
59static int
markus@openbsd.orgeb272ea2017-05-30 14:29:59 +000060userauth_hostbased(struct ssh *ssh)
Ben Lindstrom855bf3a2002-06-06 20:27:55 +000061{
markus@openbsd.orgeb272ea2017-05-30 14:29:59 +000062 Authctxt *authctxt = ssh->authctxt;
markus@openbsd.orgeb766982017-05-30 14:25:42 +000063 struct sshbuf *b;
markus@openbsd.org54d90ac2017-05-30 08:52:19 +000064 struct sshkey *key = NULL;
djm@openbsd.org14b5c632018-01-23 05:27:21 +000065 char *pkalg, *cuser, *chost;
Ben Lindstrom855bf3a2002-06-06 20:27:55 +000066 u_char *pkblob, *sig;
markus@openbsd.orgeb766982017-05-30 14:25:42 +000067 size_t alen, blen, slen;
68 int r, pktype, authenticated = 0;
Ben Lindstrom855bf3a2002-06-06 20:27:55 +000069
markus@openbsd.orgeb766982017-05-30 14:25:42 +000070 /* XXX use sshkey_froms() */
71 if ((r = sshpkt_get_cstring(ssh, &pkalg, &alen)) != 0 ||
72 (r = sshpkt_get_string(ssh, &pkblob, &blen)) != 0 ||
73 (r = sshpkt_get_cstring(ssh, &chost, NULL)) != 0 ||
74 (r = sshpkt_get_cstring(ssh, &cuser, NULL)) != 0 ||
75 (r = sshpkt_get_string(ssh, &sig, &slen)) != 0)
76 fatal("%s: packet parsing: %s", __func__, ssh_err(r));
Ben Lindstrom855bf3a2002-06-06 20:27:55 +000077
markus@openbsd.orgeb766982017-05-30 14:25:42 +000078 debug("%s: cuser %s chost %s pkalg %s slen %zu", __func__,
Ben Lindstrom855bf3a2002-06-06 20:27:55 +000079 cuser, chost, pkalg, slen);
80#ifdef DEBUG_PK
81 debug("signature:");
mestre@openbsd.org086cc612018-08-28 12:17:45 +000082 sshbuf_dump_data(sig, slen, stderr);
Ben Lindstrom855bf3a2002-06-06 20:27:55 +000083#endif
markus@openbsd.orgeb766982017-05-30 14:25:42 +000084 pktype = sshkey_type_from_name(pkalg);
Ben Lindstrom855bf3a2002-06-06 20:27:55 +000085 if (pktype == KEY_UNSPEC) {
86 /* this is perfectly legal */
markus@openbsd.orgeb766982017-05-30 14:25:42 +000087 logit("%s: unsupported public key algorithm: %s",
88 __func__, pkalg);
Ben Lindstrom855bf3a2002-06-06 20:27:55 +000089 goto done;
90 }
markus@openbsd.orgeb766982017-05-30 14:25:42 +000091 if ((r = sshkey_from_blob(pkblob, blen, &key)) != 0) {
92 error("%s: key_from_blob: %s", __func__, ssh_err(r));
93 goto done;
94 }
Ben Lindstrom855bf3a2002-06-06 20:27:55 +000095 if (key == NULL) {
markus@openbsd.orgeb766982017-05-30 14:25:42 +000096 error("%s: cannot decode key: %s", __func__, pkalg);
Ben Lindstrom855bf3a2002-06-06 20:27:55 +000097 goto done;
98 }
99 if (key->type != pktype) {
markus@openbsd.orgeb766982017-05-30 14:25:42 +0000100 error("%s: type mismatch for decoded key "
101 "(received %d, expected %d)", __func__, key->type, pktype);
Ben Lindstrom855bf3a2002-06-06 20:27:55 +0000102 goto done;
103 }
markus@openbsd.orgeb766982017-05-30 14:25:42 +0000104 if (sshkey_type_plain(key->type) == KEY_RSA &&
105 (ssh->compat & SSH_BUG_RSASIGMD5) != 0) {
Damien Miller324541e2013-12-31 12:25:40 +1100106 error("Refusing RSA key because peer uses unsafe "
107 "signature format");
108 goto done;
109 }
djm@openbsd.org4ba0d542018-07-03 11:39:54 +0000110 if (match_pattern_list(pkalg, options.hostbased_key_types, 0) != 1) {
djm@openbsd.org1f729f02015-01-13 07:39:19 +0000111 logit("%s: key type %s not in HostbasedAcceptedKeyTypes",
112 __func__, sshkey_type(key));
113 goto done;
114 }
djm@openbsd.org86e57372018-09-20 03:28:06 +0000115 if ((r = sshkey_check_cert_sigtype(key,
116 options.ca_sign_algorithms)) != 0) {
117 logit("%s: certificate signature algorithm %s: %s", __func__,
118 (key->cert == NULL || key->cert->signature_type == NULL) ?
119 "(null)" : key->cert->signature_type, ssh_err(r));
120 goto done;
121 }
djm@openbsd.org1f729f02015-01-13 07:39:19 +0000122
djm@openbsd.org74287f52018-07-31 03:10:27 +0000123 if (!authctxt->valid || authctxt->user == NULL) {
124 debug2("%s: disabled because of invalid user", __func__);
125 goto done;
126 }
127
markus@openbsd.orgeb766982017-05-30 14:25:42 +0000128 if ((b = sshbuf_new()) == NULL)
129 fatal("%s: sshbuf_new failed", __func__);
Ben Lindstrom855bf3a2002-06-06 20:27:55 +0000130 /* reconstruct packet */
markus@openbsd.orgeb766982017-05-30 14:25:42 +0000131 if ((r = sshbuf_put_string(b, session_id2, session_id2_len)) != 0 ||
132 (r = sshbuf_put_u8(b, SSH2_MSG_USERAUTH_REQUEST)) != 0 ||
133 (r = sshbuf_put_cstring(b, authctxt->user)) != 0 ||
djm@openbsd.org14b5c632018-01-23 05:27:21 +0000134 (r = sshbuf_put_cstring(b, authctxt->service)) != 0 ||
markus@openbsd.orgeb766982017-05-30 14:25:42 +0000135 (r = sshbuf_put_cstring(b, "hostbased")) != 0 ||
136 (r = sshbuf_put_string(b, pkalg, alen)) != 0 ||
137 (r = sshbuf_put_string(b, pkblob, blen)) != 0 ||
138 (r = sshbuf_put_cstring(b, chost)) != 0 ||
139 (r = sshbuf_put_cstring(b, cuser)) != 0)
140 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Ben Lindstrom855bf3a2002-06-06 20:27:55 +0000141#ifdef DEBUG_PK
markus@openbsd.orgeb766982017-05-30 14:25:42 +0000142 sshbuf_dump(b, stderr);
Ben Lindstrom855bf3a2002-06-06 20:27:55 +0000143#endif
Damien Miller20bdcd72013-07-18 16:10:09 +1000144
djm@openbsd.org8f574952017-06-24 06:34:38 +0000145 auth2_record_info(authctxt,
Damien Miller20bdcd72013-07-18 16:10:09 +1000146 "client user \"%.100s\", client host \"%.100s\"", cuser, chost);
147
Ben Lindstrom855bf3a2002-06-06 20:27:55 +0000148 /* test for allowed key and correct signature */
149 authenticated = 0;
djm@openbsd.org04c091f2019-01-19 21:43:56 +0000150 if (PRIVSEP(hostbased_key_allowed(ssh, authctxt->pw, cuser,
151 chost, key)) &&
markus@openbsd.orgeb766982017-05-30 14:25:42 +0000152 PRIVSEP(sshkey_verify(key, sig, slen,
djm@openbsd.org04c7e282017-12-18 02:25:15 +0000153 sshbuf_ptr(b), sshbuf_len(b), pkalg, ssh->compat)) == 0)
Ben Lindstrom855bf3a2002-06-06 20:27:55 +0000154 authenticated = 1;
155
djm@openbsd.org8f574952017-06-24 06:34:38 +0000156 auth2_record_key(authctxt, authenticated, key);
markus@openbsd.orgeb766982017-05-30 14:25:42 +0000157 sshbuf_free(b);
Ben Lindstrom855bf3a2002-06-06 20:27:55 +0000158done:
markus@openbsd.orgeb766982017-05-30 14:25:42 +0000159 debug2("%s: authenticated %d", __func__, authenticated);
djm@openbsd.org8f574952017-06-24 06:34:38 +0000160 sshkey_free(key);
Darren Tuckera627d422013-06-02 07:31:17 +1000161 free(pkalg);
162 free(pkblob);
163 free(cuser);
164 free(chost);
165 free(sig);
Ben Lindstrom855bf3a2002-06-06 20:27:55 +0000166 return authenticated;
167}
168
169/* return 1 if given hostkey is allowed */
170int
djm@openbsd.org04c091f2019-01-19 21:43:56 +0000171hostbased_key_allowed(struct ssh *ssh, struct passwd *pw,
172 const char *cuser, char *chost, struct sshkey *key)
Ben Lindstrom855bf3a2002-06-06 20:27:55 +0000173{
Damien Millerc1583312010-08-05 13:04:50 +1000174 const char *resolvedname, *ipaddr, *lookup, *reason;
Ben Lindstrom855bf3a2002-06-06 20:27:55 +0000175 HostStatus host_status;
176 int len;
Damien Millerc1583312010-08-05 13:04:50 +1000177 char *fp;
Ben Lindstrom855bf3a2002-06-06 20:27:55 +0000178
Damien Miller1aed65e2010-03-04 21:53:35 +1100179 if (auth_key_is_revoked(key))
180 return 0;
181
djm@openbsd.org95767262016-03-07 19:02:43 +0000182 resolvedname = auth_get_canonical_hostname(ssh, options.use_dns);
183 ipaddr = ssh_remote_ipaddr(ssh);
Ben Lindstrom855bf3a2002-06-06 20:27:55 +0000184
djm@openbsd.org5191df92014-12-23 22:42:48 +0000185 debug2("%s: chost %s resolvedname %s ipaddr %s", __func__,
Ben Lindstrom855bf3a2002-06-06 20:27:55 +0000186 chost, resolvedname, ipaddr);
187
Damien Millera1d03a52008-07-17 18:57:19 +1000188 if (((len = strlen(chost)) > 0) && chost[len - 1] == '.') {
189 debug2("stripping trailing dot from chost %s", chost);
190 chost[len - 1] = '\0';
191 }
192
Ben Lindstrom855bf3a2002-06-06 20:27:55 +0000193 if (options.hostbased_uses_name_from_packet_only) {
djm@openbsd.org5191df92014-12-23 22:42:48 +0000194 if (auth_rhosts2(pw, cuser, chost, chost) == 0) {
195 debug2("%s: auth_rhosts2 refused "
196 "user \"%.100s\" host \"%.100s\" (from packet)",
197 __func__, cuser, chost);
Ben Lindstrom855bf3a2002-06-06 20:27:55 +0000198 return 0;
djm@openbsd.org5191df92014-12-23 22:42:48 +0000199 }
Ben Lindstrom855bf3a2002-06-06 20:27:55 +0000200 lookup = chost;
201 } else {
Ben Lindstrom855bf3a2002-06-06 20:27:55 +0000202 if (strcasecmp(resolvedname, chost) != 0)
Damien Miller996acd22003-04-09 20:59:48 +1000203 logit("userauth_hostbased mismatch: "
Ben Lindstrom855bf3a2002-06-06 20:27:55 +0000204 "client sends %s, but we resolve %s to %s",
205 chost, ipaddr, resolvedname);
djm@openbsd.org5191df92014-12-23 22:42:48 +0000206 if (auth_rhosts2(pw, cuser, resolvedname, ipaddr) == 0) {
207 debug2("%s: auth_rhosts2 refused "
208 "user \"%.100s\" host \"%.100s\" addr \"%.100s\"",
209 __func__, cuser, resolvedname, ipaddr);
Ben Lindstrom855bf3a2002-06-06 20:27:55 +0000210 return 0;
djm@openbsd.org5191df92014-12-23 22:42:48 +0000211 }
Ben Lindstrom855bf3a2002-06-06 20:27:55 +0000212 lookup = resolvedname;
213 }
djm@openbsd.org5191df92014-12-23 22:42:48 +0000214 debug2("%s: access allowed by auth_rhosts2", __func__);
Ben Lindstrom855bf3a2002-06-06 20:27:55 +0000215
markus@openbsd.orgeb766982017-05-30 14:25:42 +0000216 if (sshkey_is_cert(key) &&
217 sshkey_cert_check_authority(key, 1, 0, lookup, &reason)) {
Damien Millerc1583312010-08-05 13:04:50 +1000218 error("%s", reason);
219 auth_debug_add("%s", reason);
220 return 0;
221 }
222
Ben Lindstrom855bf3a2002-06-06 20:27:55 +0000223 host_status = check_key_in_hostfiles(pw, key, lookup,
224 _PATH_SSH_SYSTEM_HOSTFILE,
225 options.ignore_user_known_hosts ? NULL : _PATH_SSH_USER_HOSTFILE);
226
227 /* backward compat if no key has been found. */
Damien Millerc1583312010-08-05 13:04:50 +1000228 if (host_status == HOST_NEW) {
Ben Lindstrom855bf3a2002-06-06 20:27:55 +0000229 host_status = check_key_in_hostfiles(pw, key, lookup,
230 _PATH_SSH_SYSTEM_HOSTFILE2,
231 options.ignore_user_known_hosts ? NULL :
232 _PATH_SSH_USER_HOSTFILE2);
Damien Millerc1583312010-08-05 13:04:50 +1000233 }
234
235 if (host_status == HOST_OK) {
markus@openbsd.orgeb766982017-05-30 14:25:42 +0000236 if (sshkey_is_cert(key)) {
djm@openbsd.org9ce86c92015-01-28 22:36:00 +0000237 if ((fp = sshkey_fingerprint(key->cert->signature_key,
238 options.fingerprint_hash, SSH_FP_DEFAULT)) == NULL)
239 fatal("%s: sshkey_fingerprint fail", __func__);
Damien Millerc1583312010-08-05 13:04:50 +1000240 verbose("Accepted certificate ID \"%s\" signed by "
241 "%s CA %s from %s@%s", key->cert->key_id,
markus@openbsd.orgeb766982017-05-30 14:25:42 +0000242 sshkey_type(key->cert->signature_key), fp,
Damien Millerc1583312010-08-05 13:04:50 +1000243 cuser, lookup);
244 } else {
djm@openbsd.org9ce86c92015-01-28 22:36:00 +0000245 if ((fp = sshkey_fingerprint(key,
246 options.fingerprint_hash, SSH_FP_DEFAULT)) == NULL)
247 fatal("%s: sshkey_fingerprint fail", __func__);
Damien Millerc1583312010-08-05 13:04:50 +1000248 verbose("Accepted %s public key %s from %s@%s",
markus@openbsd.orgeb766982017-05-30 14:25:42 +0000249 sshkey_type(key), fp, cuser, lookup);
Damien Millerc1583312010-08-05 13:04:50 +1000250 }
Darren Tuckera627d422013-06-02 07:31:17 +1000251 free(fp);
Damien Millerc1583312010-08-05 13:04:50 +1000252 }
Ben Lindstrom855bf3a2002-06-06 20:27:55 +0000253
254 return (host_status == HOST_OK);
255}
256
257Authmethod method_hostbased = {
258 "hostbased",
259 userauth_hostbased,
260 &options.hostbased_authentication
261};