2 * Copyright (c) 2000 Markus Friedl. All rights reserved.
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the
11 * documentation and/or other materials provided with the distribution.
13 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
14 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
15 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
16 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
17 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
18 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
19 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
20 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
21 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
22 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26 RCSID("$OpenBSD: auth2-hostbased.c,v 1.6 2004/01/19 21:25:15 markus Exp $");
39 #include "monitor_wrap.h"
40 #include "pathnames.h"
43 extern ServerOptions options
;
44 extern u_char
*session_id2
;
45 extern u_int session_id2_len
;
48 userauth_hostbased(Authctxt
*authctxt
)
52 char *pkalg
, *cuser
, *chost
, *service
;
54 u_int alen
, blen
, slen
;
56 int authenticated
= 0;
58 if (!authctxt
->valid
) {
59 debug2("userauth_hostbased: disabled because of invalid user");
62 pkalg
= packet_get_string(&alen
);
63 pkblob
= packet_get_string(&blen
);
64 chost
= packet_get_string(NULL
);
65 cuser
= packet_get_string(NULL
);
66 sig
= packet_get_string(&slen
);
68 debug("userauth_hostbased: cuser %s chost %s pkalg %s slen %d",
69 cuser
, chost
, pkalg
, slen
);
73 buffer_append(&b
, sig
, slen
);
77 pktype
= key_type_from_name(pkalg
);
78 if (pktype
== KEY_UNSPEC
) {
79 /* this is perfectly legal */
80 logit("userauth_hostbased: unsupported "
81 "public key algorithm: %s", pkalg
);
84 key
= key_from_blob(pkblob
, blen
);
86 error("userauth_hostbased: cannot decode key: %s", pkalg
);
89 if (key
->type
!= pktype
) {
90 error("userauth_hostbased: type mismatch for decoded key "
91 "(received %d, expected %d)", key
->type
, pktype
);
94 service
= datafellows
& SSH_BUG_HBSERVICE
? "ssh-userauth" :
97 buffer_put_string(&b
, session_id2
, session_id2_len
);
98 /* reconstruct packet */
99 buffer_put_char(&b
, SSH2_MSG_USERAUTH_REQUEST
);
100 buffer_put_cstring(&b
, authctxt
->user
);
101 buffer_put_cstring(&b
, service
);
102 buffer_put_cstring(&b
, "hostbased");
103 buffer_put_string(&b
, pkalg
, alen
);
104 buffer_put_string(&b
, pkblob
, blen
);
105 buffer_put_cstring(&b
, chost
);
106 buffer_put_cstring(&b
, cuser
);
110 /* test for allowed key and correct signature */
112 if (PRIVSEP(hostbased_key_allowed(authctxt
->pw
, cuser
, chost
, key
)) &&
113 PRIVSEP(key_verify(key
, sig
, slen
, buffer_ptr(&b
),
114 buffer_len(&b
))) == 1)
119 debug2("userauth_hostbased: authenticated %d", authenticated
);
127 return authenticated
;
130 /* return 1 if given hostkey is allowed */
132 hostbased_key_allowed(struct passwd
*pw
, const char *cuser
, char *chost
,
135 const char *resolvedname
, *ipaddr
, *lookup
;
136 HostStatus host_status
;
139 resolvedname
= get_canonical_hostname(options
.use_dns
);
140 ipaddr
= get_remote_ipaddr();
142 debug2("userauth_hostbased: chost %s resolvedname %s ipaddr %s",
143 chost
, resolvedname
, ipaddr
);
145 if (options
.hostbased_uses_name_from_packet_only
) {
146 if (auth_rhosts2(pw
, cuser
, chost
, chost
) == 0)
150 if (((len
= strlen(chost
)) > 0) && chost
[len
- 1] == '.') {
151 debug2("stripping trailing dot from chost %s", chost
);
152 chost
[len
- 1] = '\0';
154 if (strcasecmp(resolvedname
, chost
) != 0)
155 logit("userauth_hostbased mismatch: "
156 "client sends %s, but we resolve %s to %s",
157 chost
, ipaddr
, resolvedname
);
158 if (auth_rhosts2(pw
, cuser
, resolvedname
, ipaddr
) == 0)
160 lookup
= resolvedname
;
162 debug2("userauth_hostbased: access allowed by auth_rhosts2");
164 host_status
= check_key_in_hostfiles(pw
, key
, lookup
,
165 _PATH_SSH_SYSTEM_HOSTFILE
,
166 options
.ignore_user_known_hosts
? NULL
: _PATH_SSH_USER_HOSTFILE
);
168 /* backward compat if no key has been found. */
169 if (host_status
== HOST_NEW
)
170 host_status
= check_key_in_hostfiles(pw
, key
, lookup
,
171 _PATH_SSH_SYSTEM_HOSTFILE2
,
172 options
.ignore_user_known_hosts
? NULL
:
173 _PATH_SSH_USER_HOSTFILE2
);
175 return (host_status
== HOST_OK
);
178 Authmethod method_hostbased
= {
181 &options
.hostbased_authentication