1 /* $OpenBSD: auth2-hostbased.c,v 1.11 2006/08/03 03:34:41 deraadt Exp $ */
3 * Copyright (c) 2000 Markus Friedl. All rights reserved.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
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.
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.
28 #include <sys/types.h>
48 #include "monitor_wrap.h"
49 #include "pathnames.h"
52 extern ServerOptions options
;
53 extern u_char
*session_id2
;
54 extern u_int session_id2_len
;
57 userauth_hostbased(Authctxt
*authctxt
)
61 char *pkalg
, *cuser
, *chost
, *service
;
63 u_int alen
, blen
, slen
;
65 int authenticated
= 0;
67 if (!authctxt
->valid
) {
68 debug2("userauth_hostbased: disabled because of invalid user");
71 pkalg
= packet_get_string(&alen
);
72 pkblob
= packet_get_string(&blen
);
73 chost
= packet_get_string(NULL
);
74 cuser
= packet_get_string(NULL
);
75 sig
= packet_get_string(&slen
);
77 debug("userauth_hostbased: cuser %s chost %s pkalg %s slen %d",
78 cuser
, chost
, pkalg
, slen
);
82 buffer_append(&b
, sig
, slen
);
86 pktype
= key_type_from_name(pkalg
);
87 if (pktype
== KEY_UNSPEC
) {
88 /* this is perfectly legal */
89 logit("userauth_hostbased: unsupported "
90 "public key algorithm: %s", pkalg
);
93 key
= key_from_blob(pkblob
, blen
);
95 error("userauth_hostbased: cannot decode key: %s", pkalg
);
98 if (key
->type
!= pktype
) {
99 error("userauth_hostbased: type mismatch for decoded key "
100 "(received %d, expected %d)", key
->type
, pktype
);
103 service
= datafellows
& SSH_BUG_HBSERVICE
? "ssh-userauth" :
106 buffer_put_string(&b
, session_id2
, session_id2_len
);
107 /* reconstruct packet */
108 buffer_put_char(&b
, SSH2_MSG_USERAUTH_REQUEST
);
109 buffer_put_cstring(&b
, authctxt
->user
);
110 buffer_put_cstring(&b
, service
);
111 buffer_put_cstring(&b
, "hostbased");
112 buffer_put_string(&b
, pkalg
, alen
);
113 buffer_put_string(&b
, pkblob
, blen
);
114 buffer_put_cstring(&b
, chost
);
115 buffer_put_cstring(&b
, cuser
);
119 /* test for allowed key and correct signature */
121 if (PRIVSEP(hostbased_key_allowed(authctxt
->pw
, cuser
, chost
, key
)) &&
122 PRIVSEP(key_verify(key
, sig
, slen
, buffer_ptr(&b
),
123 buffer_len(&b
))) == 1)
128 debug2("userauth_hostbased: authenticated %d", authenticated
);
136 return authenticated
;
139 /* return 1 if given hostkey is allowed */
141 hostbased_key_allowed(struct passwd
*pw
, const char *cuser
, char *chost
,
144 const char *resolvedname
, *ipaddr
, *lookup
;
145 HostStatus host_status
;
148 resolvedname
= get_canonical_hostname(options
.use_dns
);
149 ipaddr
= get_remote_ipaddr();
151 debug2("userauth_hostbased: chost %s resolvedname %s ipaddr %s",
152 chost
, resolvedname
, ipaddr
);
154 if (options
.hostbased_uses_name_from_packet_only
) {
155 if (auth_rhosts2(pw
, cuser
, chost
, chost
) == 0)
159 if (((len
= strlen(chost
)) > 0) && chost
[len
- 1] == '.') {
160 debug2("stripping trailing dot from chost %s", chost
);
161 chost
[len
- 1] = '\0';
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)
169 lookup
= resolvedname
;
171 debug2("userauth_hostbased: access allowed by auth_rhosts2");
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
);
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
);
184 return (host_status
== HOST_OK
);
187 Authmethod method_hostbased
= {
190 &options
.hostbased_authentication