blob: 9f8a01cbe9dae54df9fc437fbb532d3ced475f05 [file] [log] [blame]
djm@openbsd.org1f729f02015-01-13 07:39:19 +00001/* $OpenBSD: auth2-hostbased.c,v 1.22 2015/01/13 07:39:19 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"
37#include "buffer.h"
38#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"
Ben Lindstrom855bf3a2002-06-06 20:27:55 +000042#include "key.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"
djm@openbsd.org1f729f02015-01-13 07:39:19 +000051#include "match.h"
Ben Lindstrom855bf3a2002-06-06 20:27:55 +000052
53/* import */
54extern ServerOptions options;
55extern u_char *session_id2;
Darren Tucker502d3842003-06-28 12:38:01 +100056extern u_int session_id2_len;
Ben Lindstrom855bf3a2002-06-06 20:27:55 +000057
58static int
59userauth_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
djm@openbsd.org1195f4c2015-01-08 10:14:08 +000088 /* XXX provide some way to allow admin to specify key types accepted */
Ben Lindstrom855bf3a2002-06-06 20:27:55 +000089 pktype = key_type_from_name(pkalg);
90 if (pktype == KEY_UNSPEC) {
91 /* this is perfectly legal */
Damien Miller996acd22003-04-09 20:59:48 +100092 logit("userauth_hostbased: unsupported "
Ben Lindstrom855bf3a2002-06-06 20:27:55 +000093 "public key algorithm: %s", pkalg);
94 goto done;
95 }
96 key = key_from_blob(pkblob, blen);
97 if (key == NULL) {
98 error("userauth_hostbased: cannot decode key: %s", pkalg);
99 goto done;
100 }
101 if (key->type != pktype) {
102 error("userauth_hostbased: type mismatch for decoded key "
103 "(received %d, expected %d)", key->type, pktype);
104 goto done;
105 }
Damien Miller324541e2013-12-31 12:25:40 +1100106 if (key_type_plain(key->type) == KEY_RSA &&
107 (datafellows & SSH_BUG_RSASIGMD5) != 0) {
108 error("Refusing RSA key because peer uses unsafe "
109 "signature format");
110 goto done;
111 }
djm@openbsd.org1f729f02015-01-13 07:39:19 +0000112 if (match_pattern_list(sshkey_ssh_name(key),
113 options.hostbased_key_types,
114 strlen(options.hostbased_key_types), 0) != 1) {
115 logit("%s: key type %s not in HostbasedAcceptedKeyTypes",
116 __func__, sshkey_type(key));
117 goto done;
118 }
119
Ben Lindstrom855bf3a2002-06-06 20:27:55 +0000120 service = datafellows & SSH_BUG_HBSERVICE ? "ssh-userauth" :
121 authctxt->service;
122 buffer_init(&b);
123 buffer_put_string(&b, session_id2, session_id2_len);
124 /* reconstruct packet */
125 buffer_put_char(&b, SSH2_MSG_USERAUTH_REQUEST);
126 buffer_put_cstring(&b, authctxt->user);
127 buffer_put_cstring(&b, service);
128 buffer_put_cstring(&b, "hostbased");
129 buffer_put_string(&b, pkalg, alen);
130 buffer_put_string(&b, pkblob, blen);
131 buffer_put_cstring(&b, chost);
132 buffer_put_cstring(&b, cuser);
133#ifdef DEBUG_PK
134 buffer_dump(&b);
135#endif
Damien Miller20bdcd72013-07-18 16:10:09 +1000136
137 pubkey_auth_info(authctxt, key,
138 "client user \"%.100s\", client host \"%.100s\"", cuser, chost);
139
Ben Lindstrom855bf3a2002-06-06 20:27:55 +0000140 /* test for allowed key and correct signature */
141 authenticated = 0;
142 if (PRIVSEP(hostbased_key_allowed(authctxt->pw, cuser, chost, key)) &&
143 PRIVSEP(key_verify(key, sig, slen, buffer_ptr(&b),
144 buffer_len(&b))) == 1)
145 authenticated = 1;
146
Damien Millerfb1310e2004-01-21 11:02:50 +1100147 buffer_free(&b);
Ben Lindstrom855bf3a2002-06-06 20:27:55 +0000148done:
149 debug2("userauth_hostbased: authenticated %d", authenticated);
150 if (key != NULL)
151 key_free(key);
Darren Tuckera627d422013-06-02 07:31:17 +1000152 free(pkalg);
153 free(pkblob);
154 free(cuser);
155 free(chost);
156 free(sig);
Ben Lindstrom855bf3a2002-06-06 20:27:55 +0000157 return authenticated;
158}
159
160/* return 1 if given hostkey is allowed */
161int
162hostbased_key_allowed(struct passwd *pw, const char *cuser, char *chost,
163 Key *key)
164{
Damien Millerc1583312010-08-05 13:04:50 +1000165 const char *resolvedname, *ipaddr, *lookup, *reason;
Ben Lindstrom855bf3a2002-06-06 20:27:55 +0000166 HostStatus host_status;
167 int len;
Damien Millerc1583312010-08-05 13:04:50 +1000168 char *fp;
Ben Lindstrom855bf3a2002-06-06 20:27:55 +0000169
Damien Miller1aed65e2010-03-04 21:53:35 +1100170 if (auth_key_is_revoked(key))
171 return 0;
172
Damien Miller3a961dc2003-06-03 10:25:48 +1000173 resolvedname = get_canonical_hostname(options.use_dns);
Ben Lindstrom855bf3a2002-06-06 20:27:55 +0000174 ipaddr = get_remote_ipaddr();
175
djm@openbsd.org5191df92014-12-23 22:42:48 +0000176 debug2("%s: chost %s resolvedname %s ipaddr %s", __func__,
Ben Lindstrom855bf3a2002-06-06 20:27:55 +0000177 chost, resolvedname, ipaddr);
178
Damien Millera1d03a52008-07-17 18:57:19 +1000179 if (((len = strlen(chost)) > 0) && chost[len - 1] == '.') {
180 debug2("stripping trailing dot from chost %s", chost);
181 chost[len - 1] = '\0';
182 }
183
Ben Lindstrom855bf3a2002-06-06 20:27:55 +0000184 if (options.hostbased_uses_name_from_packet_only) {
djm@openbsd.org5191df92014-12-23 22:42:48 +0000185 if (auth_rhosts2(pw, cuser, chost, chost) == 0) {
186 debug2("%s: auth_rhosts2 refused "
187 "user \"%.100s\" host \"%.100s\" (from packet)",
188 __func__, cuser, chost);
Ben Lindstrom855bf3a2002-06-06 20:27:55 +0000189 return 0;
djm@openbsd.org5191df92014-12-23 22:42:48 +0000190 }
Ben Lindstrom855bf3a2002-06-06 20:27:55 +0000191 lookup = chost;
192 } else {
Ben Lindstrom855bf3a2002-06-06 20:27:55 +0000193 if (strcasecmp(resolvedname, chost) != 0)
Damien Miller996acd22003-04-09 20:59:48 +1000194 logit("userauth_hostbased mismatch: "
Ben Lindstrom855bf3a2002-06-06 20:27:55 +0000195 "client sends %s, but we resolve %s to %s",
196 chost, ipaddr, resolvedname);
djm@openbsd.org5191df92014-12-23 22:42:48 +0000197 if (auth_rhosts2(pw, cuser, resolvedname, ipaddr) == 0) {
198 debug2("%s: auth_rhosts2 refused "
199 "user \"%.100s\" host \"%.100s\" addr \"%.100s\"",
200 __func__, cuser, resolvedname, ipaddr);
Ben Lindstrom855bf3a2002-06-06 20:27:55 +0000201 return 0;
djm@openbsd.org5191df92014-12-23 22:42:48 +0000202 }
Ben Lindstrom855bf3a2002-06-06 20:27:55 +0000203 lookup = resolvedname;
204 }
djm@openbsd.org5191df92014-12-23 22:42:48 +0000205 debug2("%s: access allowed by auth_rhosts2", __func__);
Ben Lindstrom855bf3a2002-06-06 20:27:55 +0000206
Damien Millerc1583312010-08-05 13:04:50 +1000207 if (key_is_cert(key) &&
208 key_cert_check_authority(key, 1, 0, lookup, &reason)) {
209 error("%s", reason);
210 auth_debug_add("%s", reason);
211 return 0;
212 }
213
Ben Lindstrom855bf3a2002-06-06 20:27:55 +0000214 host_status = check_key_in_hostfiles(pw, key, lookup,
215 _PATH_SSH_SYSTEM_HOSTFILE,
216 options.ignore_user_known_hosts ? NULL : _PATH_SSH_USER_HOSTFILE);
217
218 /* backward compat if no key has been found. */
Damien Millerc1583312010-08-05 13:04:50 +1000219 if (host_status == HOST_NEW) {
Ben Lindstrom855bf3a2002-06-06 20:27:55 +0000220 host_status = check_key_in_hostfiles(pw, key, lookup,
221 _PATH_SSH_SYSTEM_HOSTFILE2,
222 options.ignore_user_known_hosts ? NULL :
223 _PATH_SSH_USER_HOSTFILE2);
Damien Millerc1583312010-08-05 13:04:50 +1000224 }
225
226 if (host_status == HOST_OK) {
227 if (key_is_cert(key)) {
228 fp = key_fingerprint(key->cert->signature_key,
djm@openbsd.org56d1c832014-12-21 22:27:55 +0000229 options.fingerprint_hash, SSH_FP_DEFAULT);
Damien Millerc1583312010-08-05 13:04:50 +1000230 verbose("Accepted certificate ID \"%s\" signed by "
231 "%s CA %s from %s@%s", key->cert->key_id,
232 key_type(key->cert->signature_key), fp,
233 cuser, lookup);
234 } else {
djm@openbsd.org56d1c832014-12-21 22:27:55 +0000235 fp = key_fingerprint(key, options.fingerprint_hash,
236 SSH_FP_DEFAULT);
Damien Millerc1583312010-08-05 13:04:50 +1000237 verbose("Accepted %s public key %s from %s@%s",
238 key_type(key), fp, cuser, lookup);
239 }
Darren Tuckera627d422013-06-02 07:31:17 +1000240 free(fp);
Damien Millerc1583312010-08-05 13:04:50 +1000241 }
Ben Lindstrom855bf3a2002-06-06 20:27:55 +0000242
243 return (host_status == HOST_OK);
244}
245
246Authmethod method_hostbased = {
247 "hostbased",
248 userauth_hostbased,
249 &options.hostbased_authentication
250};