xref: /openbsd-src/usr.bin/ssh/auth2-hostbased.c (revision 898184e3e61f9129feb5978fad5a8c6865f00b92)
1 /* $OpenBSD: auth2-hostbased.c,v 1.14 2010/08/04 05:42:47 djm Exp $ */
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 
27 #include <sys/types.h>
28 
29 #include <pwd.h>
30 #include <string.h>
31 #include <stdarg.h>
32 
33 #include "xmalloc.h"
34 #include "ssh2.h"
35 #include "packet.h"
36 #include "buffer.h"
37 #include "log.h"
38 #include "servconf.h"
39 #include "compat.h"
40 #include "key.h"
41 #include "hostfile.h"
42 #include "auth.h"
43 #include "canohost.h"
44 #ifdef GSSAPI
45 #include "ssh-gss.h"
46 #endif
47 #include "monitor_wrap.h"
48 #include "pathnames.h"
49 
50 /* import */
51 extern ServerOptions options;
52 extern u_char *session_id2;
53 extern u_int session_id2_len;
54 
55 static int
56 userauth_hostbased(Authctxt *authctxt)
57 {
58 	Buffer b;
59 	Key *key = NULL;
60 	char *pkalg, *cuser, *chost, *service;
61 	u_char *pkblob, *sig;
62 	u_int alen, blen, slen;
63 	int pktype;
64 	int authenticated = 0;
65 
66 	if (!authctxt->valid) {
67 		debug2("userauth_hostbased: disabled because of invalid user");
68 		return 0;
69 	}
70 	pkalg = packet_get_string(&alen);
71 	pkblob = packet_get_string(&blen);
72 	chost = packet_get_string(NULL);
73 	cuser = packet_get_string(NULL);
74 	sig = packet_get_string(&slen);
75 
76 	debug("userauth_hostbased: cuser %s chost %s pkalg %s slen %d",
77 	    cuser, chost, pkalg, slen);
78 #ifdef DEBUG_PK
79 	debug("signature:");
80 	buffer_init(&b);
81 	buffer_append(&b, sig, slen);
82 	buffer_dump(&b);
83 	buffer_free(&b);
84 #endif
85 	pktype = key_type_from_name(pkalg);
86 	if (pktype == KEY_UNSPEC) {
87 		/* this is perfectly legal */
88 		logit("userauth_hostbased: unsupported "
89 		    "public key algorithm: %s", pkalg);
90 		goto done;
91 	}
92 	key = key_from_blob(pkblob, blen);
93 	if (key == NULL) {
94 		error("userauth_hostbased: cannot decode key: %s", pkalg);
95 		goto done;
96 	}
97 	if (key->type != pktype) {
98 		error("userauth_hostbased: type mismatch for decoded key "
99 		    "(received %d, expected %d)", key->type, pktype);
100 		goto done;
101 	}
102 	service = datafellows & SSH_BUG_HBSERVICE ? "ssh-userauth" :
103 	    authctxt->service;
104 	buffer_init(&b);
105 	buffer_put_string(&b, session_id2, session_id2_len);
106 	/* reconstruct packet */
107 	buffer_put_char(&b, SSH2_MSG_USERAUTH_REQUEST);
108 	buffer_put_cstring(&b, authctxt->user);
109 	buffer_put_cstring(&b, service);
110 	buffer_put_cstring(&b, "hostbased");
111 	buffer_put_string(&b, pkalg, alen);
112 	buffer_put_string(&b, pkblob, blen);
113 	buffer_put_cstring(&b, chost);
114 	buffer_put_cstring(&b, cuser);
115 #ifdef DEBUG_PK
116 	buffer_dump(&b);
117 #endif
118 	/* test for allowed key and correct signature */
119 	authenticated = 0;
120 	if (PRIVSEP(hostbased_key_allowed(authctxt->pw, cuser, chost, key)) &&
121 	    PRIVSEP(key_verify(key, sig, slen, buffer_ptr(&b),
122 			buffer_len(&b))) == 1)
123 		authenticated = 1;
124 
125 	buffer_free(&b);
126 done:
127 	debug2("userauth_hostbased: authenticated %d", authenticated);
128 	if (key != NULL)
129 		key_free(key);
130 	xfree(pkalg);
131 	xfree(pkblob);
132 	xfree(cuser);
133 	xfree(chost);
134 	xfree(sig);
135 	return authenticated;
136 }
137 
138 /* return 1 if given hostkey is allowed */
139 int
140 hostbased_key_allowed(struct passwd *pw, const char *cuser, char *chost,
141     Key *key)
142 {
143 	const char *resolvedname, *ipaddr, *lookup, *reason;
144 	HostStatus host_status;
145 	int len;
146 	char *fp;
147 
148 	if (auth_key_is_revoked(key))
149 		return 0;
150 
151 	resolvedname = get_canonical_hostname(options.use_dns);
152 	ipaddr = get_remote_ipaddr();
153 
154 	debug2("userauth_hostbased: chost %s resolvedname %s ipaddr %s",
155 	    chost, resolvedname, ipaddr);
156 
157 	if (((len = strlen(chost)) > 0) && chost[len - 1] == '.') {
158 		debug2("stripping trailing dot from chost %s", chost);
159 		chost[len - 1] = '\0';
160 	}
161 
162 	if (options.hostbased_uses_name_from_packet_only) {
163 		if (auth_rhosts2(pw, cuser, chost, chost) == 0)
164 			return 0;
165 		lookup = chost;
166 	} else {
167 		if (strcasecmp(resolvedname, chost) != 0)
168 			logit("userauth_hostbased mismatch: "
169 			    "client sends %s, but we resolve %s to %s",
170 			    chost, ipaddr, resolvedname);
171 		if (auth_rhosts2(pw, cuser, resolvedname, ipaddr) == 0)
172 			return 0;
173 		lookup = resolvedname;
174 	}
175 	debug2("userauth_hostbased: access allowed by auth_rhosts2");
176 
177 	if (key_is_cert(key) &&
178 	    key_cert_check_authority(key, 1, 0, lookup, &reason)) {
179 		error("%s", reason);
180 		auth_debug_add("%s", reason);
181 		return 0;
182 	}
183 
184 	host_status = check_key_in_hostfiles(pw, key, lookup,
185 	    _PATH_SSH_SYSTEM_HOSTFILE,
186 	    options.ignore_user_known_hosts ? NULL : _PATH_SSH_USER_HOSTFILE);
187 
188 	/* backward compat if no key has been found. */
189 	if (host_status == HOST_NEW) {
190 		host_status = check_key_in_hostfiles(pw, key, lookup,
191 		    _PATH_SSH_SYSTEM_HOSTFILE2,
192 		    options.ignore_user_known_hosts ? NULL :
193 		    _PATH_SSH_USER_HOSTFILE2);
194 	}
195 
196 	if (host_status == HOST_OK) {
197 		if (key_is_cert(key)) {
198 			fp = key_fingerprint(key->cert->signature_key,
199 			    SSH_FP_MD5, SSH_FP_HEX);
200 			verbose("Accepted certificate ID \"%s\" signed by "
201 			    "%s CA %s from %s@%s", key->cert->key_id,
202 			    key_type(key->cert->signature_key), fp,
203 			    cuser, lookup);
204 		} else {
205 			fp = key_fingerprint(key, SSH_FP_MD5, SSH_FP_HEX);
206 			verbose("Accepted %s public key %s from %s@%s",
207 			    key_type(key), fp, cuser, lookup);
208 		}
209 		xfree(fp);
210 	}
211 
212 	return (host_status == HOST_OK);
213 }
214 
215 Authmethod method_hostbased = {
216 	"hostbased",
217 	userauth_hostbased,
218 	&options.hostbased_authentication
219 };
220