xref: /openbsd-src/usr.bin/ssh/auth2-hostbased.c (revision a28daedfc357b214be5c701aa8ba8adb29a7f1c2)
1 /* $OpenBSD: auth2-hostbased.c,v 1.12 2008/07/17 08:51:07 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;
144 	HostStatus host_status;
145 	int len;
146 
147 	resolvedname = get_canonical_hostname(options.use_dns);
148 	ipaddr = get_remote_ipaddr();
149 
150 	debug2("userauth_hostbased: chost %s resolvedname %s ipaddr %s",
151 	    chost, resolvedname, ipaddr);
152 
153 	if (((len = strlen(chost)) > 0) && chost[len - 1] == '.') {
154 		debug2("stripping trailing dot from chost %s", chost);
155 		chost[len - 1] = '\0';
156 	}
157 
158 	if (options.hostbased_uses_name_from_packet_only) {
159 		if (auth_rhosts2(pw, cuser, chost, chost) == 0)
160 			return 0;
161 		lookup = chost;
162 	} else {
163 		if (strcasecmp(resolvedname, chost) != 0)
164 			logit("userauth_hostbased mismatch: "
165 			    "client sends %s, but we resolve %s to %s",
166 			    chost, ipaddr, resolvedname);
167 		if (auth_rhosts2(pw, cuser, resolvedname, ipaddr) == 0)
168 			return 0;
169 		lookup = resolvedname;
170 	}
171 	debug2("userauth_hostbased: access allowed by auth_rhosts2");
172 
173 	host_status = check_key_in_hostfiles(pw, key, lookup,
174 	    _PATH_SSH_SYSTEM_HOSTFILE,
175 	    options.ignore_user_known_hosts ? NULL : _PATH_SSH_USER_HOSTFILE);
176 
177 	/* backward compat if no key has been found. */
178 	if (host_status == HOST_NEW)
179 		host_status = check_key_in_hostfiles(pw, key, lookup,
180 		    _PATH_SSH_SYSTEM_HOSTFILE2,
181 		    options.ignore_user_known_hosts ? NULL :
182 		    _PATH_SSH_USER_HOSTFILE2);
183 
184 	return (host_status == HOST_OK);
185 }
186 
187 Authmethod method_hostbased = {
188 	"hostbased",
189 	userauth_hostbased,
190 	&options.hostbased_authentication
191 };
192