blob: b749205781ef9a21bb9ee9ad7a16394f1d91a89e [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 Lindstromd1f20ec2001-02-10 21:31:53 +000026RCSID("$OpenBSD: auth2.c,v 1.40 2001/02/10 12:52:02 markus Exp $");
Damien Miller874d77b2000-10-14 16:23:11 +110027
Damien Millereba71ba2000-04-29 23:57:08 +100028#include <openssl/evp.h>
29
Ben Lindstrom226cfa02001-01-22 05:34:40 +000030#include "ssh2.h"
Damien Millereba71ba2000-04-29 23:57:08 +100031#include "xmalloc.h"
32#include "rsa.h"
Damien Millereba71ba2000-04-29 23:57:08 +100033#include "pty.h"
34#include "packet.h"
35#include "buffer.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000036#include "log.h"
Damien Millereba71ba2000-04-29 23:57:08 +100037#include "servconf.h"
38#include "compat.h"
39#include "channels.h"
40#include "bufaux.h"
Damien Millereba71ba2000-04-29 23:57:08 +100041#include "auth.h"
42#include "session.h"
43#include "dispatch.h"
Damien Millereba71ba2000-04-29 23:57:08 +100044#include "key.h"
Ben Lindstrom6d40c0f2001-01-29 09:02:24 +000045#include "cipher.h"
Damien Millereba71ba2000-04-29 23:57:08 +100046#include "kex.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000047#include "pathnames.h"
Damien Millereba71ba2000-04-29 23:57:08 +100048#include "uidswap.h"
Damien Millerf6d9e222000-06-18 14:50:44 +100049#include "auth-options.h"
Damien Millereba71ba2000-04-29 23:57:08 +100050
51/* import */
52extern ServerOptions options;
Ben Lindstrom46c16222000-12-22 01:43:59 +000053extern u_char *session_id2;
Damien Millereba71ba2000-04-29 23:57:08 +100054extern int session_id2_len;
55
Damien Miller874d77b2000-10-14 16:23:11 +110056#ifdef WITH_AIXAUTHENTICATE
57extern char *aixloginmsg;
58#endif
Damien Miller874d77b2000-10-14 16:23:11 +110059
60static Authctxt *x_authctxt = NULL;
61static int one = 1;
62
63typedef struct Authmethod Authmethod;
64struct Authmethod {
65 char *name;
66 int (*userauth)(Authctxt *authctxt);
67 int *enabled;
68};
69
Damien Millereba71ba2000-04-29 23:57:08 +100070/* protocol */
71
Damien Miller62cee002000-09-23 17:15:56 +110072void input_service_request(int type, int plen, void *ctxt);
73void input_userauth_request(int type, int plen, void *ctxt);
74void protocol_error(int type, int plen, void *ctxt);
Damien Millereba71ba2000-04-29 23:57:08 +100075
Damien Millereba71ba2000-04-29 23:57:08 +100076/* helper */
Damien Miller874d77b2000-10-14 16:23:11 +110077Authmethod *authmethod_lookup(const char *name);
78struct passwd *pwcopy(struct passwd *pw);
Damien Miller0bc1bd82000-11-13 22:57:25 +110079int user_key_allowed(struct passwd *pw, Key *key);
Damien Miller874d77b2000-10-14 16:23:11 +110080char *authmethods_get(void);
Damien Millereba71ba2000-04-29 23:57:08 +100081
Damien Miller874d77b2000-10-14 16:23:11 +110082/* auth */
Ben Lindstrom48bd7c12001-01-09 00:35:42 +000083void userauth_banner(void);
Damien Miller874d77b2000-10-14 16:23:11 +110084int userauth_none(Authctxt *authctxt);
85int userauth_passwd(Authctxt *authctxt);
86int userauth_pubkey(Authctxt *authctxt);
87int userauth_kbdint(Authctxt *authctxt);
88
89Authmethod authmethods[] = {
90 {"none",
91 userauth_none,
92 &one},
93 {"publickey",
94 userauth_pubkey,
Damien Miller0bc1bd82000-11-13 22:57:25 +110095 &options.pubkey_authentication},
Damien Miller874d77b2000-10-14 16:23:11 +110096 {"password",
97 userauth_passwd,
98 &options.password_authentication},
Ben Lindstromd1f20ec2001-02-10 21:31:53 +000099 {"keyboard-interactive",
100 userauth_kbdint,
101 &options.kbd_interactive_authentication},
Damien Miller874d77b2000-10-14 16:23:11 +1100102 {NULL, NULL, NULL}
Damien Millereba71ba2000-04-29 23:57:08 +1000103};
Damien Millereba71ba2000-04-29 23:57:08 +1000104
105/*
Damien Miller874d77b2000-10-14 16:23:11 +1100106 * loop until authctxt->success == TRUE
Damien Millereba71ba2000-04-29 23:57:08 +1000107 */
108
109void
110do_authentication2()
111{
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000112 Authctxt *authctxt = authctxt_new();
113
Damien Miller874d77b2000-10-14 16:23:11 +1100114 x_authctxt = authctxt; /*XXX*/
115
Ben Lindstrom95fb2dd2001-01-23 03:12:10 +0000116 /* challenge-reponse is implemented via keyboard interactive */
117 if (options.challenge_reponse_authentication)
118 options.kbd_interactive_authentication = 1;
119
Damien Millereba71ba2000-04-29 23:57:08 +1000120 dispatch_init(&protocol_error);
121 dispatch_set(SSH2_MSG_SERVICE_REQUEST, &input_service_request);
Damien Miller874d77b2000-10-14 16:23:11 +1100122 dispatch_run(DISPATCH_BLOCK, &authctxt->success, authctxt);
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000123 do_authenticated2(authctxt);
Damien Millereba71ba2000-04-29 23:57:08 +1000124}
125
126void
Damien Miller62cee002000-09-23 17:15:56 +1100127protocol_error(int type, int plen, void *ctxt)
Damien Millereba71ba2000-04-29 23:57:08 +1000128{
129 log("auth: protocol error: type %d plen %d", type, plen);
130 packet_start(SSH2_MSG_UNIMPLEMENTED);
131 packet_put_int(0);
132 packet_send();
133 packet_write_wait();
134}
135
136void
Damien Miller62cee002000-09-23 17:15:56 +1100137input_service_request(int type, int plen, void *ctxt)
Damien Millereba71ba2000-04-29 23:57:08 +1000138{
Damien Miller874d77b2000-10-14 16:23:11 +1100139 Authctxt *authctxt = ctxt;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000140 u_int len;
Damien Millereba71ba2000-04-29 23:57:08 +1000141 int accept = 0;
142 char *service = packet_get_string(&len);
143 packet_done();
144
Damien Miller874d77b2000-10-14 16:23:11 +1100145 if (authctxt == NULL)
146 fatal("input_service_request: no authctxt");
147
Damien Millereba71ba2000-04-29 23:57:08 +1000148 if (strcmp(service, "ssh-userauth") == 0) {
Damien Miller874d77b2000-10-14 16:23:11 +1100149 if (!authctxt->success) {
Damien Millereba71ba2000-04-29 23:57:08 +1000150 accept = 1;
151 /* now we can handle user-auth requests */
152 dispatch_set(SSH2_MSG_USERAUTH_REQUEST, &input_userauth_request);
153 }
154 }
155 /* XXX all other service requests are denied */
156
157 if (accept) {
158 packet_start(SSH2_MSG_SERVICE_ACCEPT);
159 packet_put_cstring(service);
160 packet_send();
161 packet_write_wait();
162 } else {
163 debug("bad service request %s", service);
164 packet_disconnect("bad service request %s", service);
165 }
166 xfree(service);
167}
168
169void
Damien Miller62cee002000-09-23 17:15:56 +1100170input_userauth_request(int type, int plen, void *ctxt)
Damien Millereba71ba2000-04-29 23:57:08 +1000171{
Damien Miller874d77b2000-10-14 16:23:11 +1100172 Authctxt *authctxt = ctxt;
173 Authmethod *m = NULL;
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000174 char *user, *service, *method, *style = NULL;
Damien Millereba71ba2000-04-29 23:57:08 +1000175 int authenticated = 0;
Damien Millereba71ba2000-04-29 23:57:08 +1000176
Damien Miller874d77b2000-10-14 16:23:11 +1100177 if (authctxt == NULL)
178 fatal("input_userauth_request: no authctxt");
Damien Millereba71ba2000-04-29 23:57:08 +1000179
Damien Miller874d77b2000-10-14 16:23:11 +1100180 user = packet_get_string(NULL);
181 service = packet_get_string(NULL);
182 method = packet_get_string(NULL);
183 debug("userauth-request for user %s service %s method %s", user, service, method);
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000184 debug("attempt %d failures %d", authctxt->attempt, authctxt->failures);
Damien Miller874d77b2000-10-14 16:23:11 +1100185
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000186 if ((style = strchr(user, ':')) != NULL)
187 *style++ = 0;
188
Kevin Stevesef4eea92001-02-05 12:42:17 +0000189 if (authctxt->attempt++ == 0) {
Damien Miller874d77b2000-10-14 16:23:11 +1100190 /* setup auth context */
191 struct passwd *pw = NULL;
192 setproctitle("%s", user);
193 pw = getpwnam(user);
194 if (pw && allowed_user(pw) && strcmp(service, "ssh-connection")==0) {
195 authctxt->pw = pwcopy(pw);
196 authctxt->valid = 1;
197 debug2("input_userauth_request: setting up authctxt for %s", user);
198#ifdef USE_PAM
Damien Miller22e22bf2001-01-19 15:46:38 +1100199 start_pam(pw->pw_name);
Damien Miller874d77b2000-10-14 16:23:11 +1100200#endif
201 } else {
202 log("input_userauth_request: illegal user %s", user);
Damien Miller22e22bf2001-01-19 15:46:38 +1100203#ifdef USE_PAM
204 start_pam("NOUSER");
205#endif
Damien Miller874d77b2000-10-14 16:23:11 +1100206 }
207 authctxt->user = xstrdup(user);
208 authctxt->service = xstrdup(service);
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000209 authctxt->style = style ? xstrdup(style) : NULL; /* currently unused */
Damien Miller874d77b2000-10-14 16:23:11 +1100210 } else if (authctxt->valid) {
211 if (strcmp(user, authctxt->user) != 0 ||
212 strcmp(service, authctxt->service) != 0) {
213 log("input_userauth_request: missmatch: (%s,%s)!=(%s,%s)",
214 user, service, authctxt->user, authctxt->service);
215 authctxt->valid = 0;
Damien Millereba71ba2000-04-29 23:57:08 +1000216 }
217 }
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000218 /* reset state */
219 dispatch_set(SSH2_MSG_USERAUTH_INFO_RESPONSE, &protocol_error);
220 authctxt->postponed = 0;
Damien Millerb70b61f2000-09-16 16:25:12 +1100221
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000222 /* try to authenticate user */
Damien Miller874d77b2000-10-14 16:23:11 +1100223 m = authmethod_lookup(method);
224 if (m != NULL) {
225 debug2("input_userauth_request: try method %s", method);
226 authenticated = m->userauth(authctxt);
Damien Miller874d77b2000-10-14 16:23:11 +1100227 }
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000228 if (!authctxt->valid && authenticated)
229 fatal("INTERNAL ERROR: authenticated invalid user %s",
230 authctxt->user);
Damien Millerb70b61f2000-09-16 16:25:12 +1100231
Damien Miller874d77b2000-10-14 16:23:11 +1100232 /* Special handling for root */
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000233 if (authenticated && authctxt->pw->pw_uid == 0 && !auth_root_allowed())
Damien Millereba71ba2000-04-29 23:57:08 +1000234 authenticated = 0;
Damien Millereba71ba2000-04-29 23:57:08 +1000235
236#ifdef USE_PAM
Damien Millerd425d4d2000-10-28 21:05:57 +1100237 if (authenticated && authctxt->user && !do_pam_account(authctxt->user, NULL))
Damien Millerb70b61f2000-09-16 16:25:12 +1100238 authenticated = 0;
Damien Millereba71ba2000-04-29 23:57:08 +1000239#endif /* USE_PAM */
240
Damien Miller874d77b2000-10-14 16:23:11 +1100241 /* Log before sending the reply */
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000242 auth_log(authctxt, authenticated, method, " ssh2");
243
244 if (!authctxt->postponed)
245 userauth_reply(authctxt, authenticated);
Damien Miller874d77b2000-10-14 16:23:11 +1100246
247 xfree(service);
248 xfree(user);
249 xfree(method);
250}
251
Ben Lindstrom48bd7c12001-01-09 00:35:42 +0000252void
253userauth_banner(void)
254{
255 struct stat st;
256 char *banner = NULL;
257 off_t len, n;
258 int fd;
259
260 if (options.banner == NULL || (datafellows & SSH_BUG_BANNER))
261 return;
262 if ((fd = open(options.banner, O_RDONLY)) < 0) {
263 error("userauth_banner: open %s failed: %s",
264 options.banner, strerror(errno));
265 return;
266 }
267 if (fstat(fd, &st) < 0)
268 goto done;
269 len = st.st_size;
270 banner = xmalloc(len + 1);
271 if ((n = read(fd, banner, len)) < 0)
272 goto done;
273 banner[n] = '\0';
274 packet_start(SSH2_MSG_USERAUTH_BANNER);
275 packet_put_cstring(banner);
276 packet_put_cstring(""); /* language, unused */
277 packet_send();
278 debug("userauth_banner: sent");
279done:
280 if (banner)
281 xfree(banner);
282 close(fd);
283 return;
284}
Damien Miller874d77b2000-10-14 16:23:11 +1100285
Kevin Stevesef4eea92001-02-05 12:42:17 +0000286void
Damien Miller874d77b2000-10-14 16:23:11 +1100287userauth_reply(Authctxt *authctxt, int authenticated)
288{
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000289 char *methods;
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000290
Damien Millere247cc42000-05-07 12:03:14 +1000291 /* XXX todo: check if multiple auth methods are needed */
Kevin Steves4abe4de2001-02-08 19:16:32 +0000292 if (authenticated == 1) {
Damien Millerd2c208a2000-05-17 22:00:02 +1000293#ifdef WITH_AIXAUTHENTICATE
294 /* We don't have a pty yet, so just label the line as "ssh" */
Kevin Stevesef4eea92001-02-05 12:42:17 +0000295 if (loginsuccess(authctxt->user?authctxt->user:"NOUSER",
296 get_canonical_hostname(options.reverse_mapping_check),
Damien Miller33804262001-02-04 23:20:18 +1100297 "ssh", &aixloginmsg) < 0)
Damien Millerd2c208a2000-05-17 22:00:02 +1000298 aixloginmsg = NULL;
299#endif /* WITH_AIXAUTHENTICATE */
Damien Millereba71ba2000-04-29 23:57:08 +1000300 /* turn off userauth */
301 dispatch_set(SSH2_MSG_USERAUTH_REQUEST, &protocol_error);
302 packet_start(SSH2_MSG_USERAUTH_SUCCESS);
303 packet_send();
304 packet_write_wait();
305 /* now we can break out */
Damien Miller874d77b2000-10-14 16:23:11 +1100306 authctxt->success = 1;
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000307 } else {
308 if (authctxt->failures++ > AUTH_FAIL_MAX)
Kevin Stevesef4eea92001-02-05 12:42:17 +0000309 packet_disconnect(AUTH_FAIL_MSG, authctxt->user);
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000310 methods = authmethods_get();
Damien Millereba71ba2000-04-29 23:57:08 +1000311 packet_start(SSH2_MSG_USERAUTH_FAILURE);
Damien Miller874d77b2000-10-14 16:23:11 +1100312 packet_put_cstring(methods);
313 packet_put_char(0); /* XXX partial success, unused */
Damien Millereba71ba2000-04-29 23:57:08 +1000314 packet_send();
315 packet_write_wait();
Damien Miller874d77b2000-10-14 16:23:11 +1100316 xfree(methods);
Damien Millereba71ba2000-04-29 23:57:08 +1000317 }
Damien Millereba71ba2000-04-29 23:57:08 +1000318}
319
320int
Damien Miller874d77b2000-10-14 16:23:11 +1100321userauth_none(Authctxt *authctxt)
Damien Millereba71ba2000-04-29 23:57:08 +1000322{
Damien Miller874d77b2000-10-14 16:23:11 +1100323 /* disable method "none", only allowed one time */
324 Authmethod *m = authmethod_lookup("none");
325 if (m != NULL)
326 m->enabled = NULL;
Damien Millereba71ba2000-04-29 23:57:08 +1000327 packet_done();
Kevin Stevesef4eea92001-02-05 12:42:17 +0000328 userauth_banner();
Damien Millerb8c656e2000-06-28 15:22:41 +1000329
Damien Miller874d77b2000-10-14 16:23:11 +1100330 if (authctxt->valid == 0)
331 return(0);
Kevin Stevesef4eea92001-02-05 12:42:17 +0000332
Damien Miller874d77b2000-10-14 16:23:11 +1100333#ifdef HAVE_CYGWIN
334 if (check_nt_auth(1, authctxt->pw->pw_uid) == 0)
335 return(0);
336#endif
Damien Millereba71ba2000-04-29 23:57:08 +1000337#ifdef USE_PAM
Damien Miller874d77b2000-10-14 16:23:11 +1100338 return auth_pam_password(authctxt->pw, "");
Damien Millerb8c656e2000-06-28 15:22:41 +1000339#elif defined(HAVE_OSF_SIA)
Damien Miller92ddb7d2001-02-14 01:25:23 +1100340 return 0;
Damien Millerb8c656e2000-06-28 15:22:41 +1000341#else /* !HAVE_OSF_SIA && !USE_PAM */
Damien Miller874d77b2000-10-14 16:23:11 +1100342 return auth_password(authctxt->pw, "");
Damien Millereba71ba2000-04-29 23:57:08 +1000343#endif /* USE_PAM */
344}
Damien Miller874d77b2000-10-14 16:23:11 +1100345
Damien Millereba71ba2000-04-29 23:57:08 +1000346int
Damien Miller874d77b2000-10-14 16:23:11 +1100347userauth_passwd(Authctxt *authctxt)
Damien Millereba71ba2000-04-29 23:57:08 +1000348{
349 char *password;
350 int authenticated = 0;
351 int change;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000352 u_int len;
Damien Millereba71ba2000-04-29 23:57:08 +1000353 change = packet_get_char();
354 if (change)
355 log("password change not supported");
356 password = packet_get_string(&len);
357 packet_done();
Damien Miller874d77b2000-10-14 16:23:11 +1100358 if (authctxt->valid &&
359#ifdef HAVE_CYGWIN
360 check_nt_auth(1, authctxt->pw->pw_uid) &&
361#endif
Damien Millereba71ba2000-04-29 23:57:08 +1000362#ifdef USE_PAM
Damien Miller874d77b2000-10-14 16:23:11 +1100363 auth_pam_password(authctxt->pw, password) == 1)
Damien Millerb8c656e2000-06-28 15:22:41 +1000364#elif defined(HAVE_OSF_SIA)
Damien Miller92ddb7d2001-02-14 01:25:23 +1100365 auth_sia_password(authctxt->user, password) == 1)
Damien Millerb8c656e2000-06-28 15:22:41 +1000366#else /* !USE_PAM && !HAVE_OSF_SIA */
Damien Miller874d77b2000-10-14 16:23:11 +1100367 auth_password(authctxt->pw, password) == 1)
Damien Millereba71ba2000-04-29 23:57:08 +1000368#endif /* USE_PAM */
369 authenticated = 1;
370 memset(password, 0, len);
371 xfree(password);
372 return authenticated;
373}
Damien Miller874d77b2000-10-14 16:23:11 +1100374
Damien Millereba71ba2000-04-29 23:57:08 +1000375int
Damien Miller874d77b2000-10-14 16:23:11 +1100376userauth_kbdint(Authctxt *authctxt)
377{
378 int authenticated = 0;
379 char *lang = NULL;
380 char *devs = NULL;
381
382 lang = packet_get_string(NULL);
383 devs = packet_get_string(NULL);
384 packet_done();
385
386 debug("keyboard-interactive language %s devs %s", lang, devs);
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000387
Ben Lindstrom95fb2dd2001-01-23 03:12:10 +0000388 if (options.challenge_reponse_authentication)
389 authenticated = auth2_challenge(authctxt, devs);
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000390
Damien Millerb8481582000-12-03 11:51:51 +1100391#ifdef USE_PAM
392 if (authenticated == 0)
393 authenticated = auth2_pam(authctxt);
394#endif
Damien Miller874d77b2000-10-14 16:23:11 +1100395 xfree(lang);
396 xfree(devs);
397#ifdef HAVE_CYGWIN
398 if (check_nt_auth(0, authctxt->pw->pw_uid) == 0)
399 return(0);
400#endif
401 return authenticated;
402}
403
404int
405userauth_pubkey(Authctxt *authctxt)
Damien Millereba71ba2000-04-29 23:57:08 +1000406{
407 Buffer b;
408 Key *key;
409 char *pkalg, *pkblob, *sig;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000410 u_int alen, blen, slen;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100411 int have_sig, pktype;
Damien Millereba71ba2000-04-29 23:57:08 +1000412 int authenticated = 0;
413
Damien Miller874d77b2000-10-14 16:23:11 +1100414 if (!authctxt->valid) {
415 debug2("userauth_pubkey: disabled because of invalid user");
Damien Millereba71ba2000-04-29 23:57:08 +1000416 return 0;
417 }
418 have_sig = packet_get_char();
Ben Lindstromd121f612000-12-03 17:00:47 +0000419 if (datafellows & SSH_BUG_PKAUTH) {
420 debug2("userauth_pubkey: SSH_BUG_PKAUTH");
421 /* no explicit pkalg given */
422 pkblob = packet_get_string(&blen);
423 buffer_init(&b);
424 buffer_append(&b, pkblob, blen);
425 /* so we have to extract the pkalg from the pkblob */
426 pkalg = buffer_get_string(&b, &alen);
427 buffer_free(&b);
428 } else {
429 pkalg = packet_get_string(&alen);
430 pkblob = packet_get_string(&blen);
431 }
Damien Miller0bc1bd82000-11-13 22:57:25 +1100432 pktype = key_type_from_name(pkalg);
433 if (pktype == KEY_UNSPEC) {
Ben Lindstromd121f612000-12-03 17:00:47 +0000434 /* this is perfectly legal */
435 log("userauth_pubkey: unsupported public key algorithm: %s", pkalg);
Damien Miller874d77b2000-10-14 16:23:11 +1100436 xfree(pkalg);
Ben Lindstromd121f612000-12-03 17:00:47 +0000437 xfree(pkblob);
Damien Millereba71ba2000-04-29 23:57:08 +1000438 return 0;
439 }
Damien Miller0bc1bd82000-11-13 22:57:25 +1100440 key = key_from_blob(pkblob, blen);
Damien Millereba71ba2000-04-29 23:57:08 +1000441 if (key != NULL) {
442 if (have_sig) {
443 sig = packet_get_string(&slen);
444 packet_done();
445 buffer_init(&b);
Damien Miller50a41ed2000-10-16 12:14:42 +1100446 if (datafellows & SSH_OLD_SESSIONID) {
Damien Miller6536c7d2000-06-22 21:32:31 +1000447 buffer_append(&b, session_id2, session_id2_len);
Damien Miller50a41ed2000-10-16 12:14:42 +1100448 } else {
449 buffer_put_string(&b, session_id2, session_id2_len);
Damien Miller6536c7d2000-06-22 21:32:31 +1000450 }
Damien Millerf6d9e222000-06-18 14:50:44 +1000451 /* reconstruct packet */
Damien Millereba71ba2000-04-29 23:57:08 +1000452 buffer_put_char(&b, SSH2_MSG_USERAUTH_REQUEST);
Damien Miller874d77b2000-10-14 16:23:11 +1100453 buffer_put_cstring(&b, authctxt->user);
Damien Millerf6d9e222000-06-18 14:50:44 +1000454 buffer_put_cstring(&b,
Ben Lindstromd121f612000-12-03 17:00:47 +0000455 datafellows & SSH_BUG_PKSERVICE ?
Damien Millerf6d9e222000-06-18 14:50:44 +1000456 "ssh-userauth" :
Damien Miller874d77b2000-10-14 16:23:11 +1100457 authctxt->service);
Ben Lindstromd121f612000-12-03 17:00:47 +0000458 if (datafellows & SSH_BUG_PKAUTH) {
459 buffer_put_char(&b, have_sig);
460 } else {
461 buffer_put_cstring(&b, "publickey");
462 buffer_put_char(&b, have_sig);
463 buffer_put_cstring(&b, key_ssh_name(key));
464 }
Damien Millerf6d9e222000-06-18 14:50:44 +1000465 buffer_put_string(&b, pkblob, blen);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100466#ifdef DEBUG_PK
Damien Millereba71ba2000-04-29 23:57:08 +1000467 buffer_dump(&b);
468#endif
469 /* test for correct signature */
Damien Miller0bc1bd82000-11-13 22:57:25 +1100470 if (user_key_allowed(authctxt->pw, key) &&
471 key_verify(key, sig, slen, buffer_ptr(&b), buffer_len(&b)) == 1)
Damien Millereba71ba2000-04-29 23:57:08 +1000472 authenticated = 1;
473 buffer_clear(&b);
474 xfree(sig);
475 } else {
Damien Miller874d77b2000-10-14 16:23:11 +1100476 debug("test whether pkalg/pkblob are acceptable");
Damien Millereba71ba2000-04-29 23:57:08 +1000477 packet_done();
Damien Miller874d77b2000-10-14 16:23:11 +1100478
Damien Millereba71ba2000-04-29 23:57:08 +1000479 /* XXX fake reply and always send PK_OK ? */
Damien Millere247cc42000-05-07 12:03:14 +1000480 /*
481 * XXX this allows testing whether a user is allowed
482 * to login: if you happen to have a valid pubkey this
483 * message is sent. the message is NEVER sent at all
484 * if a user is not allowed to login. is this an
485 * issue? -markus
486 */
Damien Miller0bc1bd82000-11-13 22:57:25 +1100487 if (user_key_allowed(authctxt->pw, key)) {
Damien Millereba71ba2000-04-29 23:57:08 +1000488 packet_start(SSH2_MSG_USERAUTH_PK_OK);
489 packet_put_string(pkalg, alen);
490 packet_put_string(pkblob, blen);
491 packet_send();
492 packet_write_wait();
Kevin Steves4abe4de2001-02-08 19:16:32 +0000493 authctxt->postponed = 1;
Damien Millereba71ba2000-04-29 23:57:08 +1000494 }
495 }
Damien Miller874d77b2000-10-14 16:23:11 +1100496 if (authenticated != 1)
497 auth_clear_options();
Damien Millereba71ba2000-04-29 23:57:08 +1000498 key_free(key);
499 }
Damien Miller0bc1bd82000-11-13 22:57:25 +1100500 debug2("userauth_pubkey: authenticated %d pkalg %s", authenticated, pkalg);
Damien Millereba71ba2000-04-29 23:57:08 +1000501 xfree(pkalg);
502 xfree(pkblob);
Damien Miller874d77b2000-10-14 16:23:11 +1100503#ifdef HAVE_CYGWIN
504 if (check_nt_auth(0, authctxt->pw->pw_uid) == 0)
505 return(0);
506#endif
Damien Millereba71ba2000-04-29 23:57:08 +1000507 return authenticated;
508}
509
Damien Miller874d77b2000-10-14 16:23:11 +1100510/* get current user */
Damien Millereba71ba2000-04-29 23:57:08 +1000511
512struct passwd*
513auth_get_user(void)
514{
Damien Miller874d77b2000-10-14 16:23:11 +1100515 return (x_authctxt != NULL && x_authctxt->valid) ? x_authctxt->pw : NULL;
Damien Millereba71ba2000-04-29 23:57:08 +1000516}
517
Damien Miller874d77b2000-10-14 16:23:11 +1100518#define DELIM ","
Damien Millereba71ba2000-04-29 23:57:08 +1000519
Damien Miller874d77b2000-10-14 16:23:11 +1100520char *
521authmethods_get(void)
522{
523 Authmethod *method = NULL;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000524 u_int size = 0;
Damien Miller874d77b2000-10-14 16:23:11 +1100525 char *list;
526
527 for (method = authmethods; method->name != NULL; method++) {
528 if (strcmp(method->name, "none") == 0)
529 continue;
530 if (method->enabled != NULL && *(method->enabled) != 0) {
531 if (size != 0)
532 size += strlen(DELIM);
533 size += strlen(method->name);
Damien Millereba71ba2000-04-29 23:57:08 +1000534 }
535 }
Damien Miller874d77b2000-10-14 16:23:11 +1100536 size++; /* trailing '\0' */
537 list = xmalloc(size);
538 list[0] = '\0';
539
540 for (method = authmethods; method->name != NULL; method++) {
541 if (strcmp(method->name, "none") == 0)
542 continue;
543 if (method->enabled != NULL && *(method->enabled) != 0) {
544 if (list[0] != '\0')
545 strlcat(list, DELIM, size);
546 strlcat(list, method->name, size);
547 }
548 }
549 return list;
550}
551
552Authmethod *
553authmethod_lookup(const char *name)
554{
555 Authmethod *method = NULL;
556 if (name != NULL)
557 for (method = authmethods; method->name != NULL; method++)
558 if (method->enabled != NULL &&
559 *(method->enabled) != 0 &&
560 strcmp(name, method->name) == 0)
561 return method;
562 debug2("Unrecognized authentication method name: %s", name ? name : "NULL");
563 return NULL;
Damien Millereba71ba2000-04-29 23:57:08 +1000564}
565
566/* return 1 if user allows given key */
567int
Damien Miller0bc1bd82000-11-13 22:57:25 +1100568user_key_allowed(struct passwd *pw, Key *key)
Damien Millereba71ba2000-04-29 23:57:08 +1000569{
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000570 char line[8192], file[MAXPATHLEN];
Damien Millereba71ba2000-04-29 23:57:08 +1000571 int found_key = 0;
Damien Millereba71ba2000-04-29 23:57:08 +1000572 FILE *f;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000573 u_long linenum = 0;
Damien Millereba71ba2000-04-29 23:57:08 +1000574 struct stat st;
575 Key *found;
576
Damien Miller874d77b2000-10-14 16:23:11 +1100577 if (pw == NULL)
578 return 0;
579
Damien Millereba71ba2000-04-29 23:57:08 +1000580 /* Temporarily use the user's uid. */
581 temporarily_use_uid(pw->pw_uid);
582
583 /* The authorized keys. */
584 snprintf(file, sizeof file, "%.500s/%.100s", pw->pw_dir,
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000585 _PATH_SSH_USER_PERMITTED_KEYS2);
Damien Millereba71ba2000-04-29 23:57:08 +1000586
587 /* Fail quietly if file does not exist */
588 if (stat(file, &st) < 0) {
589 /* Restore the privileged uid. */
590 restore_uid();
591 return 0;
592 }
593 /* Open the file containing the authorized keys. */
594 f = fopen(file, "r");
595 if (!f) {
596 /* Restore the privileged uid. */
597 restore_uid();
598 return 0;
599 }
600 if (options.strict_modes) {
601 int fail = 0;
602 char buf[1024];
603 /* Check open file in order to avoid open/stat races */
604 if (fstat(fileno(f), &st) < 0 ||
605 (st.st_uid != 0 && st.st_uid != pw->pw_uid) ||
606 (st.st_mode & 022) != 0) {
Damien Millerd3444942000-09-30 14:20:03 +1100607 snprintf(buf, sizeof buf,
608 "%s authentication refused for %.100s: "
609 "bad ownership or modes for '%s'.",
610 key_type(key), pw->pw_name, file);
Damien Millereba71ba2000-04-29 23:57:08 +1000611 fail = 1;
612 } else {
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000613 /* Check path to _PATH_SSH_USER_PERMITTED_KEYS */
Damien Millereba71ba2000-04-29 23:57:08 +1000614 int i;
615 static const char *check[] = {
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000616 "", _PATH_SSH_USER_DIR, NULL
Damien Millereba71ba2000-04-29 23:57:08 +1000617 };
618 for (i = 0; check[i]; i++) {
619 snprintf(line, sizeof line, "%.500s/%.100s",
620 pw->pw_dir, check[i]);
621 if (stat(line, &st) < 0 ||
622 (st.st_uid != 0 && st.st_uid != pw->pw_uid) ||
623 (st.st_mode & 022) != 0) {
624 snprintf(buf, sizeof buf,
Damien Millerd3444942000-09-30 14:20:03 +1100625 "%s authentication refused for %.100s: "
Damien Millereba71ba2000-04-29 23:57:08 +1000626 "bad ownership or modes for '%s'.",
Damien Millerd3444942000-09-30 14:20:03 +1100627 key_type(key), pw->pw_name, line);
Damien Millereba71ba2000-04-29 23:57:08 +1000628 fail = 1;
629 break;
630 }
631 }
632 }
633 if (fail) {
Damien Millereba71ba2000-04-29 23:57:08 +1000634 fclose(f);
Damien Miller37023962000-07-11 17:31:38 +1000635 log("%s",buf);
Damien Millereba71ba2000-04-29 23:57:08 +1000636 restore_uid();
637 return 0;
638 }
639 }
640 found_key = 0;
Damien Millerd3444942000-09-30 14:20:03 +1100641 found = key_new(key->type);
Damien Millereba71ba2000-04-29 23:57:08 +1000642
643 while (fgets(line, sizeof(line), f)) {
Damien Millerf6d9e222000-06-18 14:50:44 +1000644 char *cp, *options = NULL;
Damien Millereba71ba2000-04-29 23:57:08 +1000645 linenum++;
646 /* Skip leading whitespace, empty and comment lines. */
647 for (cp = line; *cp == ' ' || *cp == '\t'; cp++)
648 ;
649 if (!*cp || *cp == '\n' || *cp == '#')
650 continue;
Damien Millerf6d9e222000-06-18 14:50:44 +1000651
Damien Miller0bc1bd82000-11-13 22:57:25 +1100652 if (key_read(found, &cp) == -1) {
Damien Millerf6d9e222000-06-18 14:50:44 +1000653 /* no key? check if there are options for this key */
654 int quoted = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100655 debug2("user_key_allowed: check options: '%s'", cp);
Damien Millerf6d9e222000-06-18 14:50:44 +1000656 options = cp;
657 for (; *cp && (quoted || (*cp != ' ' && *cp != '\t')); cp++) {
658 if (*cp == '\\' && cp[1] == '"')
659 cp++; /* Skip both */
660 else if (*cp == '"')
661 quoted = !quoted;
662 }
663 /* Skip remaining whitespace. */
664 for (; *cp == ' ' || *cp == '\t'; cp++)
665 ;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100666 if (key_read(found, &cp) == -1) {
667 debug2("user_key_allowed: advance: '%s'", cp);
Damien Millerf6d9e222000-06-18 14:50:44 +1000668 /* still no key? advance to next line*/
669 continue;
670 }
671 }
672 if (key_equal(found, key) &&
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000673 auth_parse_options(pw, options, file, linenum) == 1) {
Damien Millereba71ba2000-04-29 23:57:08 +1000674 found_key = 1;
675 debug("matching key found: file %s, line %ld",
676 file, linenum);
677 break;
678 }
679 }
680 restore_uid();
681 fclose(f);
682 key_free(found);
683 return found_key;
684}