blob: 8c9eb17a9790fbae0035cc71b901cbaf6035850d [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 Lindstrom0cae0402001-04-04 23:47:52 +000026RCSID("$OpenBSD: auth2.c,v 1.50 2001/04/04 20:32:56 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"
Ben Lindstromd95c09c2001-02-18 19:13:33 +000033#include "sshpty.h"
Damien Millereba71ba2000-04-29 23:57:08 +100034#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"
Ben Lindstrom086cf212001-03-05 05:56:40 +000050#include "misc.h"
Damien Millereba71ba2000-04-29 23:57:08 +100051
52/* import */
53extern ServerOptions options;
Ben Lindstrom46c16222000-12-22 01:43:59 +000054extern u_char *session_id2;
Damien Millereba71ba2000-04-29 23:57:08 +100055extern int session_id2_len;
56
Damien Miller874d77b2000-10-14 16:23:11 +110057#ifdef WITH_AIXAUTHENTICATE
58extern char *aixloginmsg;
59#endif
Damien Miller874d77b2000-10-14 16:23:11 +110060
61static Authctxt *x_authctxt = NULL;
62static int one = 1;
63
64typedef struct Authmethod Authmethod;
65struct Authmethod {
66 char *name;
67 int (*userauth)(Authctxt *authctxt);
68 int *enabled;
69};
70
Damien Millereba71ba2000-04-29 23:57:08 +100071/* protocol */
72
Damien Miller62cee002000-09-23 17:15:56 +110073void input_service_request(int type, int plen, void *ctxt);
74void input_userauth_request(int type, int plen, void *ctxt);
75void protocol_error(int type, int plen, void *ctxt);
Damien Millereba71ba2000-04-29 23:57:08 +100076
Damien Millereba71ba2000-04-29 23:57:08 +100077/* helper */
Damien Miller874d77b2000-10-14 16:23:11 +110078Authmethod *authmethod_lookup(const char *name);
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 Miller5d57e502001-03-30 10:48:31 +100084void userauth_reply(Authctxt *authctxt, int authenticated);
Damien Miller874d77b2000-10-14 16:23:11 +110085int userauth_none(Authctxt *authctxt);
86int userauth_passwd(Authctxt *authctxt);
87int userauth_pubkey(Authctxt *authctxt);
88int userauth_kbdint(Authctxt *authctxt);
89
90Authmethod authmethods[] = {
91 {"none",
92 userauth_none,
93 &one},
94 {"publickey",
95 userauth_pubkey,
Damien Miller0bc1bd82000-11-13 22:57:25 +110096 &options.pubkey_authentication},
Damien Miller874d77b2000-10-14 16:23:11 +110097 {"password",
98 userauth_passwd,
99 &options.password_authentication},
Ben Lindstromd1f20ec2001-02-10 21:31:53 +0000100 {"keyboard-interactive",
101 userauth_kbdint,
102 &options.kbd_interactive_authentication},
Damien Miller874d77b2000-10-14 16:23:11 +1100103 {NULL, NULL, NULL}
Damien Millereba71ba2000-04-29 23:57:08 +1000104};
Damien Millereba71ba2000-04-29 23:57:08 +1000105
106/*
Damien Miller874d77b2000-10-14 16:23:11 +1100107 * loop until authctxt->success == TRUE
Damien Millereba71ba2000-04-29 23:57:08 +1000108 */
109
110void
111do_authentication2()
112{
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000113 Authctxt *authctxt = authctxt_new();
114
Damien Miller874d77b2000-10-14 16:23:11 +1100115 x_authctxt = authctxt; /*XXX*/
116
Ben Lindstrom95fb2dd2001-01-23 03:12:10 +0000117 /* challenge-reponse is implemented via keyboard interactive */
118 if (options.challenge_reponse_authentication)
119 options.kbd_interactive_authentication = 1;
120
Damien Millereba71ba2000-04-29 23:57:08 +1000121 dispatch_init(&protocol_error);
122 dispatch_set(SSH2_MSG_SERVICE_REQUEST, &input_service_request);
Damien Miller874d77b2000-10-14 16:23:11 +1100123 dispatch_run(DISPATCH_BLOCK, &authctxt->success, authctxt);
Ben Lindstromb31783d2001-03-22 02:02:12 +0000124 do_authenticated(authctxt);
Damien Millereba71ba2000-04-29 23:57:08 +1000125}
126
127void
Damien Miller62cee002000-09-23 17:15:56 +1100128protocol_error(int type, int plen, void *ctxt)
Damien Millereba71ba2000-04-29 23:57:08 +1000129{
130 log("auth: protocol error: type %d plen %d", type, plen);
131 packet_start(SSH2_MSG_UNIMPLEMENTED);
132 packet_put_int(0);
133 packet_send();
134 packet_write_wait();
135}
136
137void
Damien Miller62cee002000-09-23 17:15:56 +1100138input_service_request(int type, int plen, void *ctxt)
Damien Millereba71ba2000-04-29 23:57:08 +1000139{
Damien Miller874d77b2000-10-14 16:23:11 +1100140 Authctxt *authctxt = ctxt;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000141 u_int len;
Damien Millereba71ba2000-04-29 23:57:08 +1000142 int accept = 0;
143 char *service = packet_get_string(&len);
144 packet_done();
145
Damien Miller874d77b2000-10-14 16:23:11 +1100146 if (authctxt == NULL)
147 fatal("input_service_request: no authctxt");
148
Damien Millereba71ba2000-04-29 23:57:08 +1000149 if (strcmp(service, "ssh-userauth") == 0) {
Damien Miller874d77b2000-10-14 16:23:11 +1100150 if (!authctxt->success) {
Damien Millereba71ba2000-04-29 23:57:08 +1000151 accept = 1;
152 /* now we can handle user-auth requests */
153 dispatch_set(SSH2_MSG_USERAUTH_REQUEST, &input_userauth_request);
154 }
155 }
156 /* XXX all other service requests are denied */
157
158 if (accept) {
159 packet_start(SSH2_MSG_SERVICE_ACCEPT);
160 packet_put_cstring(service);
161 packet_send();
162 packet_write_wait();
163 } else {
164 debug("bad service request %s", service);
165 packet_disconnect("bad service request %s", service);
166 }
167 xfree(service);
168}
169
170void
Damien Miller62cee002000-09-23 17:15:56 +1100171input_userauth_request(int type, int plen, void *ctxt)
Damien Millereba71ba2000-04-29 23:57:08 +1000172{
Damien Miller874d77b2000-10-14 16:23:11 +1100173 Authctxt *authctxt = ctxt;
174 Authmethod *m = NULL;
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000175 char *user, *service, *method, *style = NULL;
Damien Millereba71ba2000-04-29 23:57:08 +1000176 int authenticated = 0;
Damien Millereba71ba2000-04-29 23:57:08 +1000177
Damien Miller874d77b2000-10-14 16:23:11 +1100178 if (authctxt == NULL)
179 fatal("input_userauth_request: no authctxt");
Damien Millereba71ba2000-04-29 23:57:08 +1000180
Damien Miller874d77b2000-10-14 16:23:11 +1100181 user = packet_get_string(NULL);
182 service = packet_get_string(NULL);
183 method = packet_get_string(NULL);
184 debug("userauth-request for user %s service %s method %s", user, service, method);
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000185 debug("attempt %d failures %d", authctxt->attempt, authctxt->failures);
Damien Miller874d77b2000-10-14 16:23:11 +1100186
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000187 if ((style = strchr(user, ':')) != NULL)
188 *style++ = 0;
189
Kevin Stevesef4eea92001-02-05 12:42:17 +0000190 if (authctxt->attempt++ == 0) {
Damien Miller874d77b2000-10-14 16:23:11 +1100191 /* setup auth context */
192 struct passwd *pw = NULL;
Damien Miller874d77b2000-10-14 16:23:11 +1100193 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 }
Ben Lindstromc1ba31f2001-02-15 03:14:11 +0000207 setproctitle("%s", pw ? user : "unknown");
Damien Miller874d77b2000-10-14 16:23:11 +1100208 authctxt->user = xstrdup(user);
209 authctxt->service = xstrdup(service);
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000210 authctxt->style = style ? xstrdup(style) : NULL; /* currently unused */
Damien Miller874d77b2000-10-14 16:23:11 +1100211 } else if (authctxt->valid) {
212 if (strcmp(user, authctxt->user) != 0 ||
213 strcmp(service, authctxt->service) != 0) {
214 log("input_userauth_request: missmatch: (%s,%s)!=(%s,%s)",
215 user, service, authctxt->user, authctxt->service);
216 authctxt->valid = 0;
Damien Millereba71ba2000-04-29 23:57:08 +1000217 }
218 }
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000219 /* reset state */
220 dispatch_set(SSH2_MSG_USERAUTH_INFO_RESPONSE, &protocol_error);
221 authctxt->postponed = 0;
Damien Miller60396b02001-02-18 17:01:00 +1100222#ifdef BSD_AUTH
223 if (authctxt->as) {
224 auth_close(authctxt->as);
225 authctxt->as = NULL;
226 }
227#endif
Damien Millerb70b61f2000-09-16 16:25:12 +1100228
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000229 /* try to authenticate user */
Damien Miller874d77b2000-10-14 16:23:11 +1100230 m = authmethod_lookup(method);
231 if (m != NULL) {
232 debug2("input_userauth_request: try method %s", method);
233 authenticated = m->userauth(authctxt);
Damien Miller874d77b2000-10-14 16:23:11 +1100234 }
Damien Miller5d57e502001-03-30 10:48:31 +1000235 userauth_finish(authctxt, authenticated, method);
236
237 xfree(service);
238 xfree(user);
239 xfree(method);
240}
241
242void
243userauth_finish(Authctxt *authctxt, int authenticated, char *method)
244{
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000245 if (!authctxt->valid && authenticated)
246 fatal("INTERNAL ERROR: authenticated invalid user %s",
247 authctxt->user);
Damien Millerb70b61f2000-09-16 16:25:12 +1100248
Damien Miller874d77b2000-10-14 16:23:11 +1100249 /* Special handling for root */
Ben Lindstromd8a90212001-02-15 03:08:27 +0000250 if (authenticated && authctxt->pw->pw_uid == 0 &&
251 !auth_root_allowed(method))
Damien Millereba71ba2000-04-29 23:57:08 +1000252 authenticated = 0;
Damien Millereba71ba2000-04-29 23:57:08 +1000253
254#ifdef USE_PAM
Damien Millerc83de6d2001-02-16 14:17:59 +1100255 if (authenticated && authctxt->user && !do_pam_account(authctxt->user,
256 NULL))
Damien Millerb70b61f2000-09-16 16:25:12 +1100257 authenticated = 0;
Damien Millereba71ba2000-04-29 23:57:08 +1000258#endif /* USE_PAM */
259
Damien Miller874d77b2000-10-14 16:23:11 +1100260 /* Log before sending the reply */
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000261 auth_log(authctxt, authenticated, method, " ssh2");
262
263 if (!authctxt->postponed)
264 userauth_reply(authctxt, authenticated);
Damien Miller874d77b2000-10-14 16:23:11 +1100265}
266
Ben Lindstrom48bd7c12001-01-09 00:35:42 +0000267void
268userauth_banner(void)
269{
270 struct stat st;
271 char *banner = NULL;
272 off_t len, n;
273 int fd;
274
275 if (options.banner == NULL || (datafellows & SSH_BUG_BANNER))
276 return;
Ben Lindstrom0cae0402001-04-04 23:47:52 +0000277 if ((fd = open(options.banner, O_RDONLY)) < 0)
Ben Lindstrom48bd7c12001-01-09 00:35:42 +0000278 return;
Ben Lindstrom48bd7c12001-01-09 00:35:42 +0000279 if (fstat(fd, &st) < 0)
280 goto done;
281 len = st.st_size;
282 banner = xmalloc(len + 1);
283 if ((n = read(fd, banner, len)) < 0)
284 goto done;
285 banner[n] = '\0';
286 packet_start(SSH2_MSG_USERAUTH_BANNER);
287 packet_put_cstring(banner);
288 packet_put_cstring(""); /* language, unused */
289 packet_send();
290 debug("userauth_banner: sent");
291done:
292 if (banner)
293 xfree(banner);
294 close(fd);
295 return;
296}
Damien Miller874d77b2000-10-14 16:23:11 +1100297
Kevin Stevesef4eea92001-02-05 12:42:17 +0000298void
Damien Miller874d77b2000-10-14 16:23:11 +1100299userauth_reply(Authctxt *authctxt, int authenticated)
300{
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000301 char *methods;
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000302
Damien Millere247cc42000-05-07 12:03:14 +1000303 /* XXX todo: check if multiple auth methods are needed */
Kevin Steves4abe4de2001-02-08 19:16:32 +0000304 if (authenticated == 1) {
Damien Millerd2c208a2000-05-17 22:00:02 +1000305#ifdef WITH_AIXAUTHENTICATE
306 /* We don't have a pty yet, so just label the line as "ssh" */
Kevin Stevesef4eea92001-02-05 12:42:17 +0000307 if (loginsuccess(authctxt->user?authctxt->user:"NOUSER",
308 get_canonical_hostname(options.reverse_mapping_check),
Damien Miller33804262001-02-04 23:20:18 +1100309 "ssh", &aixloginmsg) < 0)
Damien Millerd2c208a2000-05-17 22:00:02 +1000310 aixloginmsg = NULL;
311#endif /* WITH_AIXAUTHENTICATE */
Damien Millereba71ba2000-04-29 23:57:08 +1000312 /* turn off userauth */
313 dispatch_set(SSH2_MSG_USERAUTH_REQUEST, &protocol_error);
314 packet_start(SSH2_MSG_USERAUTH_SUCCESS);
315 packet_send();
316 packet_write_wait();
317 /* now we can break out */
Damien Miller874d77b2000-10-14 16:23:11 +1100318 authctxt->success = 1;
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000319 } else {
320 if (authctxt->failures++ > AUTH_FAIL_MAX)
Kevin Stevesef4eea92001-02-05 12:42:17 +0000321 packet_disconnect(AUTH_FAIL_MSG, authctxt->user);
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000322 methods = authmethods_get();
Damien Millereba71ba2000-04-29 23:57:08 +1000323 packet_start(SSH2_MSG_USERAUTH_FAILURE);
Damien Miller874d77b2000-10-14 16:23:11 +1100324 packet_put_cstring(methods);
325 packet_put_char(0); /* XXX partial success, unused */
Damien Millereba71ba2000-04-29 23:57:08 +1000326 packet_send();
327 packet_write_wait();
Damien Miller874d77b2000-10-14 16:23:11 +1100328 xfree(methods);
Damien Millereba71ba2000-04-29 23:57:08 +1000329 }
Damien Millereba71ba2000-04-29 23:57:08 +1000330}
331
332int
Damien Miller874d77b2000-10-14 16:23:11 +1100333userauth_none(Authctxt *authctxt)
Damien Millereba71ba2000-04-29 23:57:08 +1000334{
Damien Miller874d77b2000-10-14 16:23:11 +1100335 /* disable method "none", only allowed one time */
336 Authmethod *m = authmethod_lookup("none");
337 if (m != NULL)
338 m->enabled = NULL;
Damien Millereba71ba2000-04-29 23:57:08 +1000339 packet_done();
Kevin Stevesef4eea92001-02-05 12:42:17 +0000340 userauth_banner();
Damien Millerb8c656e2000-06-28 15:22:41 +1000341
Damien Miller874d77b2000-10-14 16:23:11 +1100342 if (authctxt->valid == 0)
343 return(0);
Kevin Stevesef4eea92001-02-05 12:42:17 +0000344
Damien Miller874d77b2000-10-14 16:23:11 +1100345#ifdef HAVE_CYGWIN
346 if (check_nt_auth(1, authctxt->pw->pw_uid) == 0)
347 return(0);
348#endif
Damien Millereba71ba2000-04-29 23:57:08 +1000349#ifdef USE_PAM
Damien Miller874d77b2000-10-14 16:23:11 +1100350 return auth_pam_password(authctxt->pw, "");
Damien Millerb8c656e2000-06-28 15:22:41 +1000351#elif defined(HAVE_OSF_SIA)
Damien Miller92ddb7d2001-02-14 01:25:23 +1100352 return 0;
Damien Millerb8c656e2000-06-28 15:22:41 +1000353#else /* !HAVE_OSF_SIA && !USE_PAM */
Damien Miller60396b02001-02-18 17:01:00 +1100354 return auth_password(authctxt, "");
Damien Millereba71ba2000-04-29 23:57:08 +1000355#endif /* USE_PAM */
356}
Damien Miller874d77b2000-10-14 16:23:11 +1100357
Damien Millereba71ba2000-04-29 23:57:08 +1000358int
Damien Miller874d77b2000-10-14 16:23:11 +1100359userauth_passwd(Authctxt *authctxt)
Damien Millereba71ba2000-04-29 23:57:08 +1000360{
361 char *password;
362 int authenticated = 0;
363 int change;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000364 u_int len;
Damien Millereba71ba2000-04-29 23:57:08 +1000365 change = packet_get_char();
366 if (change)
367 log("password change not supported");
368 password = packet_get_string(&len);
369 packet_done();
Damien Miller874d77b2000-10-14 16:23:11 +1100370 if (authctxt->valid &&
371#ifdef HAVE_CYGWIN
372 check_nt_auth(1, authctxt->pw->pw_uid) &&
373#endif
Damien Millereba71ba2000-04-29 23:57:08 +1000374#ifdef USE_PAM
Damien Miller874d77b2000-10-14 16:23:11 +1100375 auth_pam_password(authctxt->pw, password) == 1)
Damien Millerb8c656e2000-06-28 15:22:41 +1000376#elif defined(HAVE_OSF_SIA)
Damien Miller92ddb7d2001-02-14 01:25:23 +1100377 auth_sia_password(authctxt->user, password) == 1)
Damien Millerb8c656e2000-06-28 15:22:41 +1000378#else /* !USE_PAM && !HAVE_OSF_SIA */
Damien Miller60396b02001-02-18 17:01:00 +1100379 auth_password(authctxt, password) == 1)
Damien Millereba71ba2000-04-29 23:57:08 +1000380#endif /* USE_PAM */
381 authenticated = 1;
382 memset(password, 0, len);
383 xfree(password);
384 return authenticated;
385}
Damien Miller874d77b2000-10-14 16:23:11 +1100386
Damien Millereba71ba2000-04-29 23:57:08 +1000387int
Damien Miller874d77b2000-10-14 16:23:11 +1100388userauth_kbdint(Authctxt *authctxt)
389{
390 int authenticated = 0;
391 char *lang = NULL;
392 char *devs = NULL;
393
394 lang = packet_get_string(NULL);
395 devs = packet_get_string(NULL);
396 packet_done();
397
398 debug("keyboard-interactive language %s devs %s", lang, devs);
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000399
Ben Lindstrom95fb2dd2001-01-23 03:12:10 +0000400 if (options.challenge_reponse_authentication)
401 authenticated = auth2_challenge(authctxt, devs);
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000402
Damien Millerb8481582000-12-03 11:51:51 +1100403#ifdef USE_PAM
404 if (authenticated == 0)
405 authenticated = auth2_pam(authctxt);
406#endif
Damien Miller874d77b2000-10-14 16:23:11 +1100407 xfree(lang);
408 xfree(devs);
409#ifdef HAVE_CYGWIN
410 if (check_nt_auth(0, authctxt->pw->pw_uid) == 0)
411 return(0);
412#endif
413 return authenticated;
414}
415
416int
417userauth_pubkey(Authctxt *authctxt)
Damien Millereba71ba2000-04-29 23:57:08 +1000418{
419 Buffer b;
420 Key *key;
421 char *pkalg, *pkblob, *sig;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000422 u_int alen, blen, slen;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100423 int have_sig, pktype;
Damien Millereba71ba2000-04-29 23:57:08 +1000424 int authenticated = 0;
425
Damien Miller874d77b2000-10-14 16:23:11 +1100426 if (!authctxt->valid) {
427 debug2("userauth_pubkey: disabled because of invalid user");
Damien Millereba71ba2000-04-29 23:57:08 +1000428 return 0;
429 }
430 have_sig = packet_get_char();
Ben Lindstromd121f612000-12-03 17:00:47 +0000431 if (datafellows & SSH_BUG_PKAUTH) {
432 debug2("userauth_pubkey: SSH_BUG_PKAUTH");
433 /* no explicit pkalg given */
434 pkblob = packet_get_string(&blen);
435 buffer_init(&b);
436 buffer_append(&b, pkblob, blen);
437 /* so we have to extract the pkalg from the pkblob */
438 pkalg = buffer_get_string(&b, &alen);
439 buffer_free(&b);
440 } else {
441 pkalg = packet_get_string(&alen);
442 pkblob = packet_get_string(&blen);
443 }
Damien Miller0bc1bd82000-11-13 22:57:25 +1100444 pktype = key_type_from_name(pkalg);
445 if (pktype == KEY_UNSPEC) {
Ben Lindstromd121f612000-12-03 17:00:47 +0000446 /* this is perfectly legal */
447 log("userauth_pubkey: unsupported public key algorithm: %s", pkalg);
Damien Miller874d77b2000-10-14 16:23:11 +1100448 xfree(pkalg);
Ben Lindstromd121f612000-12-03 17:00:47 +0000449 xfree(pkblob);
Damien Millereba71ba2000-04-29 23:57:08 +1000450 return 0;
451 }
Damien Miller0bc1bd82000-11-13 22:57:25 +1100452 key = key_from_blob(pkblob, blen);
Damien Millereba71ba2000-04-29 23:57:08 +1000453 if (key != NULL) {
454 if (have_sig) {
455 sig = packet_get_string(&slen);
456 packet_done();
457 buffer_init(&b);
Damien Miller50a41ed2000-10-16 12:14:42 +1100458 if (datafellows & SSH_OLD_SESSIONID) {
Damien Miller6536c7d2000-06-22 21:32:31 +1000459 buffer_append(&b, session_id2, session_id2_len);
Damien Miller50a41ed2000-10-16 12:14:42 +1100460 } else {
461 buffer_put_string(&b, session_id2, session_id2_len);
Damien Miller6536c7d2000-06-22 21:32:31 +1000462 }
Damien Millerf6d9e222000-06-18 14:50:44 +1000463 /* reconstruct packet */
Damien Millereba71ba2000-04-29 23:57:08 +1000464 buffer_put_char(&b, SSH2_MSG_USERAUTH_REQUEST);
Damien Miller874d77b2000-10-14 16:23:11 +1100465 buffer_put_cstring(&b, authctxt->user);
Damien Millerf6d9e222000-06-18 14:50:44 +1000466 buffer_put_cstring(&b,
Ben Lindstromd121f612000-12-03 17:00:47 +0000467 datafellows & SSH_BUG_PKSERVICE ?
Damien Millerf6d9e222000-06-18 14:50:44 +1000468 "ssh-userauth" :
Damien Miller874d77b2000-10-14 16:23:11 +1100469 authctxt->service);
Ben Lindstromd121f612000-12-03 17:00:47 +0000470 if (datafellows & SSH_BUG_PKAUTH) {
471 buffer_put_char(&b, have_sig);
472 } else {
473 buffer_put_cstring(&b, "publickey");
474 buffer_put_char(&b, have_sig);
475 buffer_put_cstring(&b, key_ssh_name(key));
476 }
Damien Millerf6d9e222000-06-18 14:50:44 +1000477 buffer_put_string(&b, pkblob, blen);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100478#ifdef DEBUG_PK
Damien Millereba71ba2000-04-29 23:57:08 +1000479 buffer_dump(&b);
480#endif
481 /* test for correct signature */
Damien Miller0bc1bd82000-11-13 22:57:25 +1100482 if (user_key_allowed(authctxt->pw, key) &&
483 key_verify(key, sig, slen, buffer_ptr(&b), buffer_len(&b)) == 1)
Damien Millereba71ba2000-04-29 23:57:08 +1000484 authenticated = 1;
485 buffer_clear(&b);
486 xfree(sig);
487 } else {
Damien Miller874d77b2000-10-14 16:23:11 +1100488 debug("test whether pkalg/pkblob are acceptable");
Damien Millereba71ba2000-04-29 23:57:08 +1000489 packet_done();
Damien Miller874d77b2000-10-14 16:23:11 +1100490
Damien Millereba71ba2000-04-29 23:57:08 +1000491 /* XXX fake reply and always send PK_OK ? */
Damien Millere247cc42000-05-07 12:03:14 +1000492 /*
493 * XXX this allows testing whether a user is allowed
494 * to login: if you happen to have a valid pubkey this
495 * message is sent. the message is NEVER sent at all
496 * if a user is not allowed to login. is this an
497 * issue? -markus
498 */
Damien Miller0bc1bd82000-11-13 22:57:25 +1100499 if (user_key_allowed(authctxt->pw, key)) {
Damien Millereba71ba2000-04-29 23:57:08 +1000500 packet_start(SSH2_MSG_USERAUTH_PK_OK);
501 packet_put_string(pkalg, alen);
502 packet_put_string(pkblob, blen);
503 packet_send();
504 packet_write_wait();
Kevin Steves4abe4de2001-02-08 19:16:32 +0000505 authctxt->postponed = 1;
Damien Millereba71ba2000-04-29 23:57:08 +1000506 }
507 }
Damien Miller874d77b2000-10-14 16:23:11 +1100508 if (authenticated != 1)
509 auth_clear_options();
Damien Millereba71ba2000-04-29 23:57:08 +1000510 key_free(key);
511 }
Damien Miller0bc1bd82000-11-13 22:57:25 +1100512 debug2("userauth_pubkey: authenticated %d pkalg %s", authenticated, pkalg);
Damien Millereba71ba2000-04-29 23:57:08 +1000513 xfree(pkalg);
514 xfree(pkblob);
Damien Miller874d77b2000-10-14 16:23:11 +1100515#ifdef HAVE_CYGWIN
516 if (check_nt_auth(0, authctxt->pw->pw_uid) == 0)
517 return(0);
518#endif
Damien Millereba71ba2000-04-29 23:57:08 +1000519 return authenticated;
520}
521
Damien Miller874d77b2000-10-14 16:23:11 +1100522/* get current user */
Damien Millereba71ba2000-04-29 23:57:08 +1000523
524struct passwd*
525auth_get_user(void)
526{
Damien Miller874d77b2000-10-14 16:23:11 +1100527 return (x_authctxt != NULL && x_authctxt->valid) ? x_authctxt->pw : NULL;
Damien Millereba71ba2000-04-29 23:57:08 +1000528}
529
Damien Miller874d77b2000-10-14 16:23:11 +1100530#define DELIM ","
Damien Millereba71ba2000-04-29 23:57:08 +1000531
Damien Miller874d77b2000-10-14 16:23:11 +1100532char *
533authmethods_get(void)
534{
535 Authmethod *method = NULL;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000536 u_int size = 0;
Damien Miller874d77b2000-10-14 16:23:11 +1100537 char *list;
538
539 for (method = authmethods; method->name != NULL; method++) {
540 if (strcmp(method->name, "none") == 0)
541 continue;
542 if (method->enabled != NULL && *(method->enabled) != 0) {
543 if (size != 0)
544 size += strlen(DELIM);
545 size += strlen(method->name);
Damien Millereba71ba2000-04-29 23:57:08 +1000546 }
547 }
Damien Miller874d77b2000-10-14 16:23:11 +1100548 size++; /* trailing '\0' */
549 list = xmalloc(size);
550 list[0] = '\0';
551
552 for (method = authmethods; method->name != NULL; method++) {
553 if (strcmp(method->name, "none") == 0)
554 continue;
555 if (method->enabled != NULL && *(method->enabled) != 0) {
556 if (list[0] != '\0')
557 strlcat(list, DELIM, size);
558 strlcat(list, method->name, size);
559 }
560 }
561 return list;
562}
563
564Authmethod *
565authmethod_lookup(const char *name)
566{
567 Authmethod *method = NULL;
568 if (name != NULL)
569 for (method = authmethods; method->name != NULL; method++)
570 if (method->enabled != NULL &&
571 *(method->enabled) != 0 &&
572 strcmp(name, method->name) == 0)
573 return method;
574 debug2("Unrecognized authentication method name: %s", name ? name : "NULL");
575 return NULL;
Damien Millereba71ba2000-04-29 23:57:08 +1000576}
577
578/* return 1 if user allows given key */
579int
Damien Miller0bc1bd82000-11-13 22:57:25 +1100580user_key_allowed(struct passwd *pw, Key *key)
Damien Millereba71ba2000-04-29 23:57:08 +1000581{
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000582 char line[8192], file[MAXPATHLEN];
Damien Millereba71ba2000-04-29 23:57:08 +1000583 int found_key = 0;
Damien Millereba71ba2000-04-29 23:57:08 +1000584 FILE *f;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000585 u_long linenum = 0;
Damien Millereba71ba2000-04-29 23:57:08 +1000586 struct stat st;
587 Key *found;
588
Damien Miller874d77b2000-10-14 16:23:11 +1100589 if (pw == NULL)
590 return 0;
591
Damien Millereba71ba2000-04-29 23:57:08 +1000592 /* Temporarily use the user's uid. */
593 temporarily_use_uid(pw->pw_uid);
594
595 /* The authorized keys. */
596 snprintf(file, sizeof file, "%.500s/%.100s", pw->pw_dir,
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000597 _PATH_SSH_USER_PERMITTED_KEYS2);
Damien Millereba71ba2000-04-29 23:57:08 +1000598
599 /* Fail quietly if file does not exist */
600 if (stat(file, &st) < 0) {
601 /* Restore the privileged uid. */
602 restore_uid();
603 return 0;
604 }
605 /* Open the file containing the authorized keys. */
606 f = fopen(file, "r");
607 if (!f) {
608 /* Restore the privileged uid. */
609 restore_uid();
610 return 0;
611 }
612 if (options.strict_modes) {
613 int fail = 0;
614 char buf[1024];
615 /* Check open file in order to avoid open/stat races */
616 if (fstat(fileno(f), &st) < 0 ||
617 (st.st_uid != 0 && st.st_uid != pw->pw_uid) ||
618 (st.st_mode & 022) != 0) {
Damien Millerd3444942000-09-30 14:20:03 +1100619 snprintf(buf, sizeof buf,
620 "%s authentication refused for %.100s: "
621 "bad ownership or modes for '%s'.",
622 key_type(key), pw->pw_name, file);
Damien Millereba71ba2000-04-29 23:57:08 +1000623 fail = 1;
624 } else {
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000625 /* Check path to _PATH_SSH_USER_PERMITTED_KEYS */
Damien Millereba71ba2000-04-29 23:57:08 +1000626 int i;
627 static const char *check[] = {
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000628 "", _PATH_SSH_USER_DIR, NULL
Damien Millereba71ba2000-04-29 23:57:08 +1000629 };
630 for (i = 0; check[i]; i++) {
631 snprintf(line, sizeof line, "%.500s/%.100s",
632 pw->pw_dir, check[i]);
633 if (stat(line, &st) < 0 ||
634 (st.st_uid != 0 && st.st_uid != pw->pw_uid) ||
635 (st.st_mode & 022) != 0) {
636 snprintf(buf, sizeof buf,
Damien Millerd3444942000-09-30 14:20:03 +1100637 "%s authentication refused for %.100s: "
Damien Millereba71ba2000-04-29 23:57:08 +1000638 "bad ownership or modes for '%s'.",
Damien Millerd3444942000-09-30 14:20:03 +1100639 key_type(key), pw->pw_name, line);
Damien Millereba71ba2000-04-29 23:57:08 +1000640 fail = 1;
641 break;
642 }
643 }
644 }
645 if (fail) {
Damien Millereba71ba2000-04-29 23:57:08 +1000646 fclose(f);
Ben Lindstrom204e4882001-03-05 06:47:00 +0000647 log("%s", buf);
Damien Millereba71ba2000-04-29 23:57:08 +1000648 restore_uid();
649 return 0;
650 }
651 }
652 found_key = 0;
Damien Millerd3444942000-09-30 14:20:03 +1100653 found = key_new(key->type);
Damien Millereba71ba2000-04-29 23:57:08 +1000654
655 while (fgets(line, sizeof(line), f)) {
Damien Millerf6d9e222000-06-18 14:50:44 +1000656 char *cp, *options = NULL;
Damien Millereba71ba2000-04-29 23:57:08 +1000657 linenum++;
658 /* Skip leading whitespace, empty and comment lines. */
659 for (cp = line; *cp == ' ' || *cp == '\t'; cp++)
660 ;
661 if (!*cp || *cp == '\n' || *cp == '#')
662 continue;
Damien Millerf6d9e222000-06-18 14:50:44 +1000663
Damien Miller0bc1bd82000-11-13 22:57:25 +1100664 if (key_read(found, &cp) == -1) {
Damien Millerf6d9e222000-06-18 14:50:44 +1000665 /* no key? check if there are options for this key */
666 int quoted = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100667 debug2("user_key_allowed: check options: '%s'", cp);
Damien Millerf6d9e222000-06-18 14:50:44 +1000668 options = cp;
669 for (; *cp && (quoted || (*cp != ' ' && *cp != '\t')); cp++) {
670 if (*cp == '\\' && cp[1] == '"')
671 cp++; /* Skip both */
672 else if (*cp == '"')
673 quoted = !quoted;
674 }
675 /* Skip remaining whitespace. */
676 for (; *cp == ' ' || *cp == '\t'; cp++)
677 ;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100678 if (key_read(found, &cp) == -1) {
679 debug2("user_key_allowed: advance: '%s'", cp);
Damien Millerf6d9e222000-06-18 14:50:44 +1000680 /* still no key? advance to next line*/
681 continue;
682 }
683 }
684 if (key_equal(found, key) &&
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000685 auth_parse_options(pw, options, file, linenum) == 1) {
Damien Millereba71ba2000-04-29 23:57:08 +1000686 found_key = 1;
687 debug("matching key found: file %s, line %ld",
688 file, linenum);
689 break;
690 }
691 }
692 restore_uid();
693 fclose(f);
694 key_free(found);
Ben Lindstromb54873a2001-03-11 20:01:55 +0000695 if (!found_key)
696 debug2("key not found");
Damien Millereba71ba2000-04-29 23:57:08 +1000697 return found_key;
698}