blob: c7cc0c64004cc4b0e2094d9f706bc2987b802243 [file] [log] [blame]
Damien Millereba71ba2000-04-29 23:57:08 +10001/*
2 * Copyright (c) 2000 Markus Friedl. All rights reserved.
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
6 * are met:
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.
Damien Millereba71ba2000-04-29 23:57:08 +100012 *
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.
23 */
Damien Millere4340be2000-09-16 13:29:08 +110024
Damien Millereba71ba2000-04-29 23:57:08 +100025#include "includes.h"
Ben Lindstrom511bb242002-06-06 20:52:37 +000026RCSID("$OpenBSD: auth2.c,v 1.93 2002/05/31 11:35:15 markus Exp $");
Damien Millereba71ba2000-04-29 23:57:08 +100027
Ben Lindstrom226cfa02001-01-22 05:34:40 +000028#include "ssh2.h"
Damien Millereba71ba2000-04-29 23:57:08 +100029#include "xmalloc.h"
Damien Millereba71ba2000-04-29 23:57:08 +100030#include "packet.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000031#include "log.h"
Damien Millereba71ba2000-04-29 23:57:08 +100032#include "servconf.h"
33#include "compat.h"
Damien Millereba71ba2000-04-29 23:57:08 +100034#include "auth.h"
Damien Millereba71ba2000-04-29 23:57:08 +100035#include "dispatch.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000036#include "pathnames.h"
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000037#include "monitor_wrap.h"
Damien Millereba71ba2000-04-29 23:57:08 +100038
39/* import */
40extern ServerOptions options;
Ben Lindstrom46c16222000-12-22 01:43:59 +000041extern u_char *session_id2;
Damien Millereba71ba2000-04-29 23:57:08 +100042extern int session_id2_len;
43
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000044Authctxt *x_authctxt = NULL;
Damien Miller874d77b2000-10-14 16:23:11 +110045
Ben Lindstrom511bb242002-06-06 20:52:37 +000046/* methods */
47
48extern Authmethod method_none;
49extern Authmethod method_pubkey;
50extern Authmethod method_passwd;
51extern Authmethod method_kbdint;
52extern Authmethod method_hostbased;
53
54Authmethod *authmethods[] = {
55 &method_none,
56 &method_pubkey,
57 &method_passwd,
58 &method_kbdint,
59 &method_hostbased,
60 NULL
Damien Miller874d77b2000-10-14 16:23:11 +110061};
62
Damien Millereba71ba2000-04-29 23:57:08 +100063/* protocol */
64
Damien Miller630d6f42002-01-22 23:17:30 +110065static void input_service_request(int, u_int32_t, void *);
66static void input_userauth_request(int, u_int32_t, void *);
Damien Millereba71ba2000-04-29 23:57:08 +100067
Damien Millereba71ba2000-04-29 23:57:08 +100068/* helper */
Ben Lindstrombba81212001-06-25 05:01:22 +000069static Authmethod *authmethod_lookup(const char *);
Ben Lindstrom79073822001-07-04 03:42:30 +000070static char *authmethods_get(void);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000071int user_key_allowed(struct passwd *, Key *);
72int hostbased_key_allowed(struct passwd *, const char *, char *, Key *);
Damien Millereba71ba2000-04-29 23:57:08 +100073
Damien Millereba71ba2000-04-29 23:57:08 +100074/*
Damien Miller874d77b2000-10-14 16:23:11 +110075 * loop until authctxt->success == TRUE
Damien Millereba71ba2000-04-29 23:57:08 +100076 */
77
Ben Lindstrom73ab9ba2002-03-22 01:27:35 +000078Authctxt *
Ben Lindstrom3c36bb22001-12-06 17:55:26 +000079do_authentication2(void)
Damien Millereba71ba2000-04-29 23:57:08 +100080{
Ben Lindstromdb65e8f2001-01-19 04:26:52 +000081 Authctxt *authctxt = authctxt_new();
82
Damien Miller874d77b2000-10-14 16:23:11 +110083 x_authctxt = authctxt; /*XXX*/
84
Ben Lindstrombdfb4df2001-10-03 17:12:43 +000085 /* challenge-response is implemented via keyboard interactive */
Ben Lindstrom551ea372001-06-05 18:56:16 +000086 if (options.challenge_response_authentication)
Ben Lindstrom95fb2dd2001-01-23 03:12:10 +000087 options.kbd_interactive_authentication = 1;
Damien Millerf8154422001-04-25 22:44:14 +100088 if (options.pam_authentication_via_kbd_int)
89 options.kbd_interactive_authentication = 1;
Damien Millerffc868f2002-05-09 15:59:13 +100090 if (use_privsep)
91 options.pam_authentication_via_kbd_int = 0;
Ben Lindstrom95fb2dd2001-01-23 03:12:10 +000092
Damien Miller7d053392002-01-22 23:24:13 +110093 dispatch_init(&dispatch_protocol_error);
Damien Millereba71ba2000-04-29 23:57:08 +100094 dispatch_set(SSH2_MSG_SERVICE_REQUEST, &input_service_request);
Damien Miller874d77b2000-10-14 16:23:11 +110095 dispatch_run(DISPATCH_BLOCK, &authctxt->success, authctxt);
Ben Lindstrom73ab9ba2002-03-22 01:27:35 +000096
97 return (authctxt);
Damien Millereba71ba2000-04-29 23:57:08 +100098}
99
Ben Lindstrombba81212001-06-25 05:01:22 +0000100static void
Damien Miller630d6f42002-01-22 23:17:30 +1100101input_service_request(int type, u_int32_t seq, void *ctxt)
Damien Millereba71ba2000-04-29 23:57:08 +1000102{
Damien Miller874d77b2000-10-14 16:23:11 +1100103 Authctxt *authctxt = ctxt;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000104 u_int len;
Damien Millereba71ba2000-04-29 23:57:08 +1000105 int accept = 0;
106 char *service = packet_get_string(&len);
Damien Miller48b03fc2002-01-22 23:11:40 +1100107 packet_check_eom();
Damien Millereba71ba2000-04-29 23:57:08 +1000108
Damien Miller874d77b2000-10-14 16:23:11 +1100109 if (authctxt == NULL)
110 fatal("input_service_request: no authctxt");
111
Damien Millereba71ba2000-04-29 23:57:08 +1000112 if (strcmp(service, "ssh-userauth") == 0) {
Damien Miller874d77b2000-10-14 16:23:11 +1100113 if (!authctxt->success) {
Damien Millereba71ba2000-04-29 23:57:08 +1000114 accept = 1;
115 /* now we can handle user-auth requests */
116 dispatch_set(SSH2_MSG_USERAUTH_REQUEST, &input_userauth_request);
117 }
118 }
119 /* XXX all other service requests are denied */
120
121 if (accept) {
122 packet_start(SSH2_MSG_SERVICE_ACCEPT);
123 packet_put_cstring(service);
124 packet_send();
125 packet_write_wait();
126 } else {
127 debug("bad service request %s", service);
128 packet_disconnect("bad service request %s", service);
129 }
130 xfree(service);
131}
132
Ben Lindstrombba81212001-06-25 05:01:22 +0000133static void
Damien Miller630d6f42002-01-22 23:17:30 +1100134input_userauth_request(int type, u_int32_t seq, void *ctxt)
Damien Millereba71ba2000-04-29 23:57:08 +1000135{
Damien Miller874d77b2000-10-14 16:23:11 +1100136 Authctxt *authctxt = ctxt;
137 Authmethod *m = NULL;
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000138 char *user, *service, *method, *style = NULL;
Damien Millereba71ba2000-04-29 23:57:08 +1000139 int authenticated = 0;
Damien Millereba71ba2000-04-29 23:57:08 +1000140
Damien Miller874d77b2000-10-14 16:23:11 +1100141 if (authctxt == NULL)
142 fatal("input_userauth_request: no authctxt");
Damien Millereba71ba2000-04-29 23:57:08 +1000143
Damien Miller874d77b2000-10-14 16:23:11 +1100144 user = packet_get_string(NULL);
145 service = packet_get_string(NULL);
146 method = packet_get_string(NULL);
147 debug("userauth-request for user %s service %s method %s", user, service, method);
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000148 debug("attempt %d failures %d", authctxt->attempt, authctxt->failures);
Damien Miller874d77b2000-10-14 16:23:11 +1100149
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000150 if ((style = strchr(user, ':')) != NULL)
151 *style++ = 0;
152
Kevin Stevesef4eea92001-02-05 12:42:17 +0000153 if (authctxt->attempt++ == 0) {
Damien Miller3a5b0232002-03-13 13:19:42 +1100154 /* setup auth context */
Kevin Steves205cc1e2002-03-22 20:43:05 +0000155 authctxt->pw = PRIVSEP(getpwnamallow(user));
156 if (authctxt->pw && strcmp(service, "ssh-connection")==0) {
Damien Miller874d77b2000-10-14 16:23:11 +1100157 authctxt->valid = 1;
158 debug2("input_userauth_request: setting up authctxt for %s", user);
159#ifdef USE_PAM
Damien Miller79418552002-04-23 20:28:48 +1000160 PRIVSEP(start_pam(authctxt->pw->pw_name));
Damien Miller874d77b2000-10-14 16:23:11 +1100161#endif
162 } else {
163 log("input_userauth_request: illegal user %s", user);
Damien Miller22e22bf2001-01-19 15:46:38 +1100164#ifdef USE_PAM
Damien Miller79418552002-04-23 20:28:48 +1000165 PRIVSEP(start_pam("NOUSER"));
Damien Miller22e22bf2001-01-19 15:46:38 +1100166#endif
Damien Miller874d77b2000-10-14 16:23:11 +1100167 }
Ben Lindstrom7ebb6352002-03-22 03:04:08 +0000168 setproctitle("%s%s", authctxt->pw ? user : "unknown",
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000169 use_privsep ? " [net]" : "");
Damien Miller874d77b2000-10-14 16:23:11 +1100170 authctxt->user = xstrdup(user);
171 authctxt->service = xstrdup(service);
Ben Lindstrom9d0c0662001-06-09 01:40:00 +0000172 authctxt->style = style ? xstrdup(style) : NULL;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000173 if (use_privsep)
174 mm_inform_authserv(service, style);
Ben Lindstrom9d0c0662001-06-09 01:40:00 +0000175 } else if (strcmp(user, authctxt->user) != 0 ||
176 strcmp(service, authctxt->service) != 0) {
177 packet_disconnect("Change of username or service not allowed: "
178 "(%s,%s) -> (%s,%s)",
179 authctxt->user, authctxt->service, user, service);
Damien Millereba71ba2000-04-29 23:57:08 +1000180 }
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000181 /* reset state */
Damien Milleree116252001-12-21 12:42:34 +1100182 auth2_challenge_stop(authctxt);
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000183 authctxt->postponed = 0;
Damien Millerb70b61f2000-09-16 16:25:12 +1100184
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000185 /* try to authenticate user */
Damien Miller874d77b2000-10-14 16:23:11 +1100186 m = authmethod_lookup(method);
187 if (m != NULL) {
188 debug2("input_userauth_request: try method %s", method);
189 authenticated = m->userauth(authctxt);
Damien Miller874d77b2000-10-14 16:23:11 +1100190 }
Damien Miller5d57e502001-03-30 10:48:31 +1000191 userauth_finish(authctxt, authenticated, method);
192
193 xfree(service);
194 xfree(user);
195 xfree(method);
196}
197
198void
199userauth_finish(Authctxt *authctxt, int authenticated, char *method)
200{
Ben Lindstromcd4349f2001-06-09 00:23:17 +0000201 char *methods;
202
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000203 if (!authctxt->valid && authenticated)
204 fatal("INTERNAL ERROR: authenticated invalid user %s",
205 authctxt->user);
Damien Millerb70b61f2000-09-16 16:25:12 +1100206
Damien Miller874d77b2000-10-14 16:23:11 +1100207 /* Special handling for root */
Ben Lindstromd8a90212001-02-15 03:08:27 +0000208 if (authenticated && authctxt->pw->pw_uid == 0 &&
209 !auth_root_allowed(method))
Damien Millereba71ba2000-04-29 23:57:08 +1000210 authenticated = 0;
Damien Millereba71ba2000-04-29 23:57:08 +1000211
212#ifdef USE_PAM
Damien Miller79418552002-04-23 20:28:48 +1000213 if (!use_privsep && authenticated && authctxt->user &&
214 !do_pam_account(authctxt->user, NULL))
Damien Millerb70b61f2000-09-16 16:25:12 +1100215 authenticated = 0;
Damien Millereba71ba2000-04-29 23:57:08 +1000216#endif /* USE_PAM */
217
Damien Miller874d77b2000-10-14 16:23:11 +1100218 /* Log before sending the reply */
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000219 auth_log(authctxt, authenticated, method, " ssh2");
220
Ben Lindstromcd4349f2001-06-09 00:23:17 +0000221 if (authctxt->postponed)
222 return;
223
224 /* XXX todo: check if multiple auth methods are needed */
225 if (authenticated == 1) {
226 /* turn off userauth */
Damien Miller7d053392002-01-22 23:24:13 +1100227 dispatch_set(SSH2_MSG_USERAUTH_REQUEST, &dispatch_protocol_ignore);
Ben Lindstromcd4349f2001-06-09 00:23:17 +0000228 packet_start(SSH2_MSG_USERAUTH_SUCCESS);
229 packet_send();
230 packet_write_wait();
231 /* now we can break out */
232 authctxt->success = 1;
233 } else {
Damien Millere49d0962001-11-13 23:46:18 +1100234 if (authctxt->failures++ > AUTH_FAIL_MAX) {
235#ifdef WITH_AIXAUTHENTICATE
236 loginfailed(authctxt->user,
Damien Millerf3451a22002-02-05 12:40:46 +1100237 get_canonical_hostname(options.verify_reverse_mapping),
Damien Millere49d0962001-11-13 23:46:18 +1100238 "ssh");
239#endif /* WITH_AIXAUTHENTICATE */
Ben Lindstromcd4349f2001-06-09 00:23:17 +0000240 packet_disconnect(AUTH_FAIL_MSG, authctxt->user);
Damien Millere49d0962001-11-13 23:46:18 +1100241 }
Ben Lindstromcd4349f2001-06-09 00:23:17 +0000242 methods = authmethods_get();
243 packet_start(SSH2_MSG_USERAUTH_FAILURE);
244 packet_put_cstring(methods);
245 packet_put_char(0); /* XXX partial success, unused */
246 packet_send();
247 packet_write_wait();
248 xfree(methods);
249 }
Damien Miller874d77b2000-10-14 16:23:11 +1100250}
251
Damien Miller5ad9fd92002-05-13 11:07:41 +1000252char *
253auth2_read_banner(void)
Ben Lindstrom48bd7c12001-01-09 00:35:42 +0000254{
255 struct stat st;
256 char *banner = NULL;
257 off_t len, n;
258 int fd;
259
Damien Miller5ad9fd92002-05-13 11:07:41 +1000260 if ((fd = open(options.banner, O_RDONLY)) == -1)
261 return (NULL);
262 if (fstat(fd, &st) == -1) {
263 close(fd);
264 return (NULL);
265 }
Ben Lindstrom48bd7c12001-01-09 00:35:42 +0000266 len = st.st_size;
267 banner = xmalloc(len + 1);
Damien Miller5ad9fd92002-05-13 11:07:41 +1000268 n = atomicio(read, fd, banner, len);
269 close(fd);
270
271 if (n != len) {
272 free(banner);
273 return (NULL);
274 }
Ben Lindstrom48bd7c12001-01-09 00:35:42 +0000275 banner[n] = '\0';
Damien Miller5ad9fd92002-05-13 11:07:41 +1000276
277 return (banner);
278}
279
280static void
281userauth_banner(void)
282{
283 char *banner = NULL;
284
285 if (options.banner == NULL || (datafellows & SSH_BUG_BANNER))
286 return;
287
288 if ((banner = PRIVSEP(auth2_read_banner())) == NULL)
289 goto done;
290
Ben Lindstrom48bd7c12001-01-09 00:35:42 +0000291 packet_start(SSH2_MSG_USERAUTH_BANNER);
292 packet_put_cstring(banner);
293 packet_put_cstring(""); /* language, unused */
294 packet_send();
295 debug("userauth_banner: sent");
296done:
297 if (banner)
298 xfree(banner);
Ben Lindstrom48bd7c12001-01-09 00:35:42 +0000299 return;
300}
Damien Miller874d77b2000-10-14 16:23:11 +1100301
Ben Lindstrombba81212001-06-25 05:01:22 +0000302static int
Damien Miller874d77b2000-10-14 16:23:11 +1100303userauth_none(Authctxt *authctxt)
Damien Millereba71ba2000-04-29 23:57:08 +1000304{
Damien Miller874d77b2000-10-14 16:23:11 +1100305 /* disable method "none", only allowed one time */
306 Authmethod *m = authmethod_lookup("none");
307 if (m != NULL)
308 m->enabled = NULL;
Damien Miller48b03fc2002-01-22 23:11:40 +1100309 packet_check_eom();
Kevin Stevesef4eea92001-02-05 12:42:17 +0000310 userauth_banner();
Damien Millerb8c656e2000-06-28 15:22:41 +1000311
Damien Miller874d77b2000-10-14 16:23:11 +1100312 if (authctxt->valid == 0)
313 return(0);
Damien Miller3a5b0232002-03-13 13:19:42 +1100314
315#ifdef HAVE_CYGWIN
316 if (check_nt_auth(1, authctxt->pw) == 0)
317 return(0);
Damien Miller874d77b2000-10-14 16:23:11 +1100318#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000319 return PRIVSEP(auth_password(authctxt, ""));
Damien Millereba71ba2000-04-29 23:57:08 +1000320}
Damien Miller874d77b2000-10-14 16:23:11 +1100321
Ben Lindstrombba81212001-06-25 05:01:22 +0000322static int
Damien Miller874d77b2000-10-14 16:23:11 +1100323userauth_passwd(Authctxt *authctxt)
Damien Millereba71ba2000-04-29 23:57:08 +1000324{
325 char *password;
326 int authenticated = 0;
327 int change;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000328 u_int len;
Damien Millereba71ba2000-04-29 23:57:08 +1000329 change = packet_get_char();
330 if (change)
331 log("password change not supported");
332 password = packet_get_string(&len);
Damien Miller48b03fc2002-01-22 23:11:40 +1100333 packet_check_eom();
Damien Miller3a5b0232002-03-13 13:19:42 +1100334 if (authctxt->valid &&
335#ifdef HAVE_CYGWIN
336 check_nt_auth(1, authctxt->pw) &&
Damien Miller874d77b2000-10-14 16:23:11 +1100337#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000338 PRIVSEP(auth_password(authctxt, password)) == 1)
Damien Miller3a5b0232002-03-13 13:19:42 +1100339 authenticated = 1;
Damien Millereba71ba2000-04-29 23:57:08 +1000340 memset(password, 0, len);
341 xfree(password);
342 return authenticated;
343}
Damien Miller874d77b2000-10-14 16:23:11 +1100344
Ben Lindstrombba81212001-06-25 05:01:22 +0000345static int
Damien Miller874d77b2000-10-14 16:23:11 +1100346userauth_kbdint(Authctxt *authctxt)
347{
348 int authenticated = 0;
Ben Lindstrom551ea372001-06-05 18:56:16 +0000349 char *lang, *devs;
Damien Miller874d77b2000-10-14 16:23:11 +1100350
351 lang = packet_get_string(NULL);
352 devs = packet_get_string(NULL);
Damien Miller48b03fc2002-01-22 23:11:40 +1100353 packet_check_eom();
Damien Miller874d77b2000-10-14 16:23:11 +1100354
Ben Lindstrom551ea372001-06-05 18:56:16 +0000355 debug("keyboard-interactive devs %s", devs);
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000356
Ben Lindstrom551ea372001-06-05 18:56:16 +0000357 if (options.challenge_response_authentication)
Ben Lindstrom95fb2dd2001-01-23 03:12:10 +0000358 authenticated = auth2_challenge(authctxt, devs);
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000359
Damien Millerb8481582000-12-03 11:51:51 +1100360#ifdef USE_PAM
Damien Millerf8154422001-04-25 22:44:14 +1000361 if (authenticated == 0 && options.pam_authentication_via_kbd_int)
Damien Millerb8481582000-12-03 11:51:51 +1100362 authenticated = auth2_pam(authctxt);
363#endif
Damien Miller874d77b2000-10-14 16:23:11 +1100364 xfree(devs);
Ben Lindstrom551ea372001-06-05 18:56:16 +0000365 xfree(lang);
Damien Miller874d77b2000-10-14 16:23:11 +1100366#ifdef HAVE_CYGWIN
Damien Miller0dea79d2001-12-29 14:08:28 +1100367 if (check_nt_auth(0, authctxt->pw) == 0)
Damien Miller874d77b2000-10-14 16:23:11 +1100368 return(0);
369#endif
370 return authenticated;
371}
372
Ben Lindstrombba81212001-06-25 05:01:22 +0000373static int
Damien Miller874d77b2000-10-14 16:23:11 +1100374userauth_pubkey(Authctxt *authctxt)
Damien Millereba71ba2000-04-29 23:57:08 +1000375{
376 Buffer b;
Damien Miller9b74bfc2002-02-05 12:26:03 +1100377 Key *key = NULL;
Ben Lindstrom90fd8142002-02-26 18:09:42 +0000378 char *pkalg;
379 u_char *pkblob, *sig;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000380 u_int alen, blen, slen;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100381 int have_sig, pktype;
Damien Millereba71ba2000-04-29 23:57:08 +1000382 int authenticated = 0;
383
Damien Miller874d77b2000-10-14 16:23:11 +1100384 if (!authctxt->valid) {
385 debug2("userauth_pubkey: disabled because of invalid user");
Damien Millereba71ba2000-04-29 23:57:08 +1000386 return 0;
387 }
388 have_sig = packet_get_char();
Ben Lindstromd121f612000-12-03 17:00:47 +0000389 if (datafellows & SSH_BUG_PKAUTH) {
390 debug2("userauth_pubkey: SSH_BUG_PKAUTH");
391 /* no explicit pkalg given */
392 pkblob = packet_get_string(&blen);
393 buffer_init(&b);
394 buffer_append(&b, pkblob, blen);
395 /* so we have to extract the pkalg from the pkblob */
396 pkalg = buffer_get_string(&b, &alen);
397 buffer_free(&b);
398 } else {
399 pkalg = packet_get_string(&alen);
400 pkblob = packet_get_string(&blen);
401 }
Damien Miller0bc1bd82000-11-13 22:57:25 +1100402 pktype = key_type_from_name(pkalg);
403 if (pktype == KEY_UNSPEC) {
Ben Lindstromd121f612000-12-03 17:00:47 +0000404 /* this is perfectly legal */
Damien Miller9b74bfc2002-02-05 12:26:03 +1100405 log("userauth_pubkey: unsupported public key algorithm: %s",
406 pkalg);
407 goto done;
Damien Millereba71ba2000-04-29 23:57:08 +1000408 }
Damien Miller0bc1bd82000-11-13 22:57:25 +1100409 key = key_from_blob(pkblob, blen);
Damien Miller9b74bfc2002-02-05 12:26:03 +1100410 if (key == NULL) {
411 error("userauth_pubkey: cannot decode key: %s", pkalg);
412 goto done;
Damien Millereba71ba2000-04-29 23:57:08 +1000413 }
Damien Miller9b74bfc2002-02-05 12:26:03 +1100414 if (key->type != pktype) {
415 error("userauth_pubkey: type mismatch for decoded key "
416 "(received %d, expected %d)", key->type, pktype);
417 goto done;
418 }
419 if (have_sig) {
420 sig = packet_get_string(&slen);
421 packet_check_eom();
422 buffer_init(&b);
423 if (datafellows & SSH_OLD_SESSIONID) {
424 buffer_append(&b, session_id2, session_id2_len);
425 } else {
426 buffer_put_string(&b, session_id2, session_id2_len);
427 }
428 /* reconstruct packet */
429 buffer_put_char(&b, SSH2_MSG_USERAUTH_REQUEST);
430 buffer_put_cstring(&b, authctxt->user);
431 buffer_put_cstring(&b,
432 datafellows & SSH_BUG_PKSERVICE ?
433 "ssh-userauth" :
434 authctxt->service);
435 if (datafellows & SSH_BUG_PKAUTH) {
436 buffer_put_char(&b, have_sig);
437 } else {
438 buffer_put_cstring(&b, "publickey");
439 buffer_put_char(&b, have_sig);
440 buffer_put_cstring(&b, pkalg);
441 }
442 buffer_put_string(&b, pkblob, blen);
443#ifdef DEBUG_PK
444 buffer_dump(&b);
445#endif
446 /* test for correct signature */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000447 authenticated = 0;
448 if (PRIVSEP(user_key_allowed(authctxt->pw, key)) &&
449 PRIVSEP(key_verify(key, sig, slen, buffer_ptr(&b),
450 buffer_len(&b))) == 1)
Damien Miller3a5b0232002-03-13 13:19:42 +1100451 authenticated = 1;
Damien Miller9b74bfc2002-02-05 12:26:03 +1100452 buffer_clear(&b);
453 xfree(sig);
454 } else {
455 debug("test whether pkalg/pkblob are acceptable");
456 packet_check_eom();
457
458 /* XXX fake reply and always send PK_OK ? */
459 /*
460 * XXX this allows testing whether a user is allowed
461 * to login: if you happen to have a valid pubkey this
462 * message is sent. the message is NEVER sent at all
463 * if a user is not allowed to login. is this an
464 * issue? -markus
465 */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000466 if (PRIVSEP(user_key_allowed(authctxt->pw, key))) {
Damien Miller9b74bfc2002-02-05 12:26:03 +1100467 packet_start(SSH2_MSG_USERAUTH_PK_OK);
468 packet_put_string(pkalg, alen);
469 packet_put_string(pkblob, blen);
470 packet_send();
471 packet_write_wait();
472 authctxt->postponed = 1;
473 }
474 }
475 if (authenticated != 1)
476 auth_clear_options();
477done:
Damien Miller0bc1bd82000-11-13 22:57:25 +1100478 debug2("userauth_pubkey: authenticated %d pkalg %s", authenticated, pkalg);
Damien Miller9b74bfc2002-02-05 12:26:03 +1100479 if (key != NULL)
480 key_free(key);
Damien Millereba71ba2000-04-29 23:57:08 +1000481 xfree(pkalg);
482 xfree(pkblob);
Damien Miller874d77b2000-10-14 16:23:11 +1100483#ifdef HAVE_CYGWIN
Damien Miller0dea79d2001-12-29 14:08:28 +1100484 if (check_nt_auth(0, authctxt->pw) == 0)
Damien Miller874d77b2000-10-14 16:23:11 +1100485 return(0);
486#endif
Damien Millereba71ba2000-04-29 23:57:08 +1000487 return authenticated;
488}
489
Ben Lindstrombba81212001-06-25 05:01:22 +0000490static int
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000491userauth_hostbased(Authctxt *authctxt)
492{
493 Buffer b;
Damien Miller9b74bfc2002-02-05 12:26:03 +1100494 Key *key = NULL;
Ben Lindstrom90fd8142002-02-26 18:09:42 +0000495 char *pkalg, *cuser, *chost, *service;
496 u_char *pkblob, *sig;
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000497 u_int alen, blen, slen;
498 int pktype;
499 int authenticated = 0;
500
501 if (!authctxt->valid) {
502 debug2("userauth_hostbased: disabled because of invalid user");
503 return 0;
504 }
505 pkalg = packet_get_string(&alen);
506 pkblob = packet_get_string(&blen);
507 chost = packet_get_string(NULL);
508 cuser = packet_get_string(NULL);
509 sig = packet_get_string(&slen);
510
511 debug("userauth_hostbased: cuser %s chost %s pkalg %s slen %d",
512 cuser, chost, pkalg, slen);
513#ifdef DEBUG_PK
514 debug("signature:");
515 buffer_init(&b);
516 buffer_append(&b, sig, slen);
517 buffer_dump(&b);
518 buffer_free(&b);
519#endif
520 pktype = key_type_from_name(pkalg);
521 if (pktype == KEY_UNSPEC) {
522 /* this is perfectly legal */
523 log("userauth_hostbased: unsupported "
524 "public key algorithm: %s", pkalg);
525 goto done;
526 }
527 key = key_from_blob(pkblob, blen);
528 if (key == NULL) {
Damien Miller9b74bfc2002-02-05 12:26:03 +1100529 error("userauth_hostbased: cannot decode key: %s", pkalg);
530 goto done;
531 }
532 if (key->type != pktype) {
533 error("userauth_hostbased: type mismatch for decoded key "
534 "(received %d, expected %d)", key->type, pktype);
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000535 goto done;
536 }
Ben Lindstrom671388f2001-04-19 20:40:45 +0000537 service = datafellows & SSH_BUG_HBSERVICE ? "ssh-userauth" :
538 authctxt->service;
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000539 buffer_init(&b);
Ben Lindstrom671388f2001-04-19 20:40:45 +0000540 buffer_put_string(&b, session_id2, session_id2_len);
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000541 /* reconstruct packet */
542 buffer_put_char(&b, SSH2_MSG_USERAUTH_REQUEST);
543 buffer_put_cstring(&b, authctxt->user);
Ben Lindstrom671388f2001-04-19 20:40:45 +0000544 buffer_put_cstring(&b, service);
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000545 buffer_put_cstring(&b, "hostbased");
546 buffer_put_string(&b, pkalg, alen);
547 buffer_put_string(&b, pkblob, blen);
548 buffer_put_cstring(&b, chost);
549 buffer_put_cstring(&b, cuser);
550#ifdef DEBUG_PK
551 buffer_dump(&b);
552#endif
553 /* test for allowed key and correct signature */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000554 authenticated = 0;
555 if (PRIVSEP(hostbased_key_allowed(authctxt->pw, cuser, chost, key)) &&
556 PRIVSEP(key_verify(key, sig, slen, buffer_ptr(&b),
557 buffer_len(&b))) == 1)
Damien Miller3a5b0232002-03-13 13:19:42 +1100558 authenticated = 1;
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000559
560 buffer_clear(&b);
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000561done:
562 debug2("userauth_hostbased: authenticated %d", authenticated);
Damien Miller9b74bfc2002-02-05 12:26:03 +1100563 if (key != NULL)
564 key_free(key);
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000565 xfree(pkalg);
566 xfree(pkblob);
567 xfree(cuser);
568 xfree(chost);
569 xfree(sig);
570 return authenticated;
571}
572
Damien Miller874d77b2000-10-14 16:23:11 +1100573/* get current user */
Damien Millereba71ba2000-04-29 23:57:08 +1000574
575struct passwd*
576auth_get_user(void)
577{
Damien Miller874d77b2000-10-14 16:23:11 +1100578 return (x_authctxt != NULL && x_authctxt->valid) ? x_authctxt->pw : NULL;
Damien Millereba71ba2000-04-29 23:57:08 +1000579}
580
Damien Miller874d77b2000-10-14 16:23:11 +1100581#define DELIM ","
Damien Millereba71ba2000-04-29 23:57:08 +1000582
Ben Lindstrom79073822001-07-04 03:42:30 +0000583static char *
Damien Miller874d77b2000-10-14 16:23:11 +1100584authmethods_get(void)
585{
Damien Miller0e3b8722002-01-22 23:26:38 +1100586 Buffer b;
Damien Miller874d77b2000-10-14 16:23:11 +1100587 char *list;
Ben Lindstrom511bb242002-06-06 20:52:37 +0000588 int i;
Damien Miller874d77b2000-10-14 16:23:11 +1100589
Damien Miller0e3b8722002-01-22 23:26:38 +1100590 buffer_init(&b);
Ben Lindstrom511bb242002-06-06 20:52:37 +0000591 for (i = 0; authmethods[i] != NULL; i++) {
592 if (strcmp(authmethods[i]->name, "none") == 0)
Damien Miller874d77b2000-10-14 16:23:11 +1100593 continue;
Ben Lindstrom511bb242002-06-06 20:52:37 +0000594 if (authmethods[i]->enabled != NULL &&
595 *(authmethods[i]->enabled) != 0) {
Damien Miller0e3b8722002-01-22 23:26:38 +1100596 if (buffer_len(&b) > 0)
597 buffer_append(&b, ",", 1);
Ben Lindstrom511bb242002-06-06 20:52:37 +0000598 buffer_append(&b, authmethods[i]->name,
599 strlen(authmethods[i]->name));
Damien Millereba71ba2000-04-29 23:57:08 +1000600 }
601 }
Damien Miller0e3b8722002-01-22 23:26:38 +1100602 buffer_append(&b, "\0", 1);
603 list = xstrdup(buffer_ptr(&b));
604 buffer_free(&b);
Damien Miller874d77b2000-10-14 16:23:11 +1100605 return list;
606}
607
Ben Lindstrombba81212001-06-25 05:01:22 +0000608static Authmethod *
Damien Miller874d77b2000-10-14 16:23:11 +1100609authmethod_lookup(const char *name)
610{
Ben Lindstrom511bb242002-06-06 20:52:37 +0000611 int i;
612
Damien Miller874d77b2000-10-14 16:23:11 +1100613 if (name != NULL)
Ben Lindstrom511bb242002-06-06 20:52:37 +0000614 for (i = 0; authmethods[i] != NULL; i++)
615 if (authmethods[i]->enabled != NULL &&
616 *(authmethods[i]->enabled) != 0 &&
617 strcmp(name, authmethods[i]->name) == 0)
618 return authmethods[i];
619 debug2("Unrecognized authentication method name: %s",
620 name ? name : "NULL");
Damien Miller874d77b2000-10-14 16:23:11 +1100621 return NULL;
Damien Millereba71ba2000-04-29 23:57:08 +1000622}