Merge branch 'vendor/OPENSSH'
[dragonfly.git] / crypto / openssh / auth2-hostbased.c
1 /* $OpenBSD: auth2-hostbased.c,v 1.18 2014/07/15 15:54:14 millert 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 #include "includes.h"
27
28 #include <sys/types.h>
29
30 #include <pwd.h>
31 #include <string.h>
32 #include <stdarg.h>
33
34 #include "xmalloc.h"
35 #include "ssh2.h"
36 #include "packet.h"
37 #include "buffer.h"
38 #include "log.h"
39 #include "misc.h"
40 #include "servconf.h"
41 #include "compat.h"
42 #include "key.h"
43 #include "hostfile.h"
44 #include "authfile.h"
45 #include "auth.h"
46 #include "canohost.h"
47 #ifdef GSSAPI
48 #include "ssh-gss.h"
49 #endif
50 #include "monitor_wrap.h"
51 #include "pathnames.h"
52
53 /* import */
54 extern ServerOptions options;
55 extern u_char *session_id2;
56 extern u_int session_id2_len;
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 */
91                 logit("userauth_hostbased: unsupported "
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         }
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         }
111         service = datafellows & SSH_BUG_HBSERVICE ? "ssh-userauth" :
112             authctxt->service;
113         buffer_init(&b);
114         buffer_put_string(&b, session_id2, session_id2_len);
115         /* reconstruct packet */
116         buffer_put_char(&b, SSH2_MSG_USERAUTH_REQUEST);
117         buffer_put_cstring(&b, authctxt->user);
118         buffer_put_cstring(&b, service);
119         buffer_put_cstring(&b, "hostbased");
120         buffer_put_string(&b, pkalg, alen);
121         buffer_put_string(&b, pkblob, blen);
122         buffer_put_cstring(&b, chost);
123         buffer_put_cstring(&b, cuser);
124 #ifdef DEBUG_PK
125         buffer_dump(&b);
126 #endif
127
128         pubkey_auth_info(authctxt, key,
129             "client user \"%.100s\", client host \"%.100s\"", cuser, chost);
130
131         /* test for allowed key and correct signature */
132         authenticated = 0;
133         if (PRIVSEP(hostbased_key_allowed(authctxt->pw, cuser, chost, key)) &&
134             PRIVSEP(key_verify(key, sig, slen, buffer_ptr(&b),
135                         buffer_len(&b))) == 1)
136                 authenticated = 1;
137
138         buffer_free(&b);
139 done:
140         debug2("userauth_hostbased: authenticated %d", authenticated);
141         if (key != NULL)
142                 key_free(key);
143         free(pkalg);
144         free(pkblob);
145         free(cuser);
146         free(chost);
147         free(sig);
148         return authenticated;
149 }
150
151 /* return 1 if given hostkey is allowed */
152 int
153 hostbased_key_allowed(struct passwd *pw, const char *cuser, char *chost,
154     Key *key)
155 {
156         const char *resolvedname, *ipaddr, *lookup, *reason;
157         HostStatus host_status;
158         int len;
159         char *fp;
160
161         if (auth_key_is_revoked(key))
162                 return 0;
163
164         if (blacklisted_key(key)) {
165                 fp = key_fingerprint(key, SSH_FP_MD5, SSH_FP_HEX);
166                 if (options.permit_blacklisted_keys)
167                         logit("Public key %s blacklisted (see "
168                             "ssh-vulnkey(1)); continuing anyway", fp);
169                 else
170                         logit("Public key %s blacklisted (see "
171                             "ssh-vulnkey(1))", fp);
172                 xfree(fp);
173                 if (!options.permit_blacklisted_keys)
174                         return 0;
175         }
176
177         resolvedname = get_canonical_hostname(options.use_dns);
178         ipaddr = get_remote_ipaddr();
179
180         debug2("userauth_hostbased: chost %s resolvedname %s ipaddr %s",
181             chost, resolvedname, ipaddr);
182
183         if (((len = strlen(chost)) > 0) && chost[len - 1] == '.') {
184                 debug2("stripping trailing dot from chost %s", chost);
185                 chost[len - 1] = '\0';
186         }
187
188         if (options.hostbased_uses_name_from_packet_only) {
189                 if (auth_rhosts2(pw, cuser, chost, chost) == 0)
190                         return 0;
191                 lookup = chost;
192         } else {
193                 if (strcasecmp(resolvedname, chost) != 0)
194                         logit("userauth_hostbased mismatch: "
195                             "client sends %s, but we resolve %s to %s",
196                             chost, ipaddr, resolvedname);
197                 if (auth_rhosts2(pw, cuser, resolvedname, ipaddr) == 0)
198                         return 0;
199                 lookup = resolvedname;
200         }
201         debug2("userauth_hostbased: access allowed by auth_rhosts2");
202
203         if (key_is_cert(key) && 
204             key_cert_check_authority(key, 1, 0, lookup, &reason)) {
205                 error("%s", reason);
206                 auth_debug_add("%s", reason);
207                 return 0;
208         }
209
210         host_status = check_key_in_hostfiles(pw, key, lookup,
211             _PATH_SSH_SYSTEM_HOSTFILE,
212             options.ignore_user_known_hosts ? NULL : _PATH_SSH_USER_HOSTFILE);
213
214         /* backward compat if no key has been found. */
215         if (host_status == HOST_NEW) {
216                 host_status = check_key_in_hostfiles(pw, key, lookup,
217                     _PATH_SSH_SYSTEM_HOSTFILE2,
218                     options.ignore_user_known_hosts ? NULL :
219                     _PATH_SSH_USER_HOSTFILE2);
220         }
221
222         if (host_status == HOST_OK) {
223                 if (key_is_cert(key)) {
224                         fp = key_fingerprint(key->cert->signature_key,
225                             SSH_FP_MD5, SSH_FP_HEX);
226                         verbose("Accepted certificate ID \"%s\" signed by "
227                             "%s CA %s from %s@%s", key->cert->key_id,
228                             key_type(key->cert->signature_key), fp,
229                             cuser, lookup);
230                 } else {
231                         fp = key_fingerprint(key, SSH_FP_MD5, SSH_FP_HEX);
232                         verbose("Accepted %s public key %s from %s@%s",
233                             key_type(key), fp, cuser, lookup);
234                 }
235                 free(fp);
236         }
237
238         return (host_status == HOST_OK);
239 }
240
241 Authmethod method_hostbased = {
242         "hostbased",
243         userauth_hostbased,
244         &options.hostbased_authentication
245 };