blob: 4a305a416a384d1736c3fb96d9a0d6c435ae6cb8 [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"
Darren Tucker0efd1552003-08-26 11:49:55 +100026RCSID("$OpenBSD: auth2.c,v 1.100 2003/08/22 10:56:08 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
Darren Tucker0efd1552003-08-26 11:49:55 +100039#ifdef GSSAPI
40#include "ssh-gss.h"
41#endif
42
Damien Millereba71ba2000-04-29 23:57:08 +100043/* import */
44extern ServerOptions options;
Ben Lindstrom46c16222000-12-22 01:43:59 +000045extern u_char *session_id2;
Darren Tucker502d3842003-06-28 12:38:01 +100046extern u_int session_id2_len;
Damien Millereba71ba2000-04-29 23:57:08 +100047
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000048Authctxt *x_authctxt = NULL;
Damien Miller874d77b2000-10-14 16:23:11 +110049
Ben Lindstrom511bb242002-06-06 20:52:37 +000050/* methods */
51
52extern Authmethod method_none;
53extern Authmethod method_pubkey;
54extern Authmethod method_passwd;
55extern Authmethod method_kbdint;
56extern Authmethod method_hostbased;
Damien Miller3ab496b2003-05-14 13:47:37 +100057#ifdef KRB5
58extern Authmethod method_kerberos;
59#endif
Darren Tucker0efd1552003-08-26 11:49:55 +100060#ifdef GSSAPI
61extern Authmethod method_gssapi;
62#endif
Ben Lindstrom511bb242002-06-06 20:52:37 +000063
64Authmethod *authmethods[] = {
65 &method_none,
66 &method_pubkey,
Darren Tucker0efd1552003-08-26 11:49:55 +100067#ifdef GSSAPI
68 &method_gssapi,
69#endif
Ben Lindstrom511bb242002-06-06 20:52:37 +000070 &method_passwd,
71 &method_kbdint,
72 &method_hostbased,
Damien Miller3ab496b2003-05-14 13:47:37 +100073#ifdef KRB5
74 &method_kerberos,
75#endif
Ben Lindstrom511bb242002-06-06 20:52:37 +000076 NULL
Damien Miller874d77b2000-10-14 16:23:11 +110077};
78
Damien Millereba71ba2000-04-29 23:57:08 +100079/* protocol */
80
Damien Miller630d6f42002-01-22 23:17:30 +110081static void input_service_request(int, u_int32_t, void *);
82static void input_userauth_request(int, u_int32_t, void *);
Damien Millereba71ba2000-04-29 23:57:08 +100083
Damien Millereba71ba2000-04-29 23:57:08 +100084/* helper */
Ben Lindstrombba81212001-06-25 05:01:22 +000085static Authmethod *authmethod_lookup(const char *);
Ben Lindstrom79073822001-07-04 03:42:30 +000086static char *authmethods_get(void);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000087int user_key_allowed(struct passwd *, Key *);
88int hostbased_key_allowed(struct passwd *, const char *, char *, Key *);
Damien Millereba71ba2000-04-29 23:57:08 +100089
Damien Millereba71ba2000-04-29 23:57:08 +100090/*
Damien Miller874d77b2000-10-14 16:23:11 +110091 * loop until authctxt->success == TRUE
Damien Millereba71ba2000-04-29 23:57:08 +100092 */
93
Ben Lindstrom73ab9ba2002-03-22 01:27:35 +000094Authctxt *
Ben Lindstrom3c36bb22001-12-06 17:55:26 +000095do_authentication2(void)
Damien Millereba71ba2000-04-29 23:57:08 +100096{
Ben Lindstromdb65e8f2001-01-19 04:26:52 +000097 Authctxt *authctxt = authctxt_new();
98
Damien Miller874d77b2000-10-14 16:23:11 +110099 x_authctxt = authctxt; /*XXX*/
100
Ben Lindstrombdfb4df2001-10-03 17:12:43 +0000101 /* challenge-response is implemented via keyboard interactive */
Ben Lindstrom551ea372001-06-05 18:56:16 +0000102 if (options.challenge_response_authentication)
Ben Lindstrom95fb2dd2001-01-23 03:12:10 +0000103 options.kbd_interactive_authentication = 1;
104
Damien Miller7d053392002-01-22 23:24:13 +1100105 dispatch_init(&dispatch_protocol_error);
Damien Millereba71ba2000-04-29 23:57:08 +1000106 dispatch_set(SSH2_MSG_SERVICE_REQUEST, &input_service_request);
Damien Miller874d77b2000-10-14 16:23:11 +1100107 dispatch_run(DISPATCH_BLOCK, &authctxt->success, authctxt);
Ben Lindstrom73ab9ba2002-03-22 01:27:35 +0000108
109 return (authctxt);
Damien Millereba71ba2000-04-29 23:57:08 +1000110}
111
Ben Lindstrombba81212001-06-25 05:01:22 +0000112static void
Damien Miller630d6f42002-01-22 23:17:30 +1100113input_service_request(int type, u_int32_t seq, void *ctxt)
Damien Millereba71ba2000-04-29 23:57:08 +1000114{
Damien Miller874d77b2000-10-14 16:23:11 +1100115 Authctxt *authctxt = ctxt;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000116 u_int len;
Ben Lindstrom5a9d0ea2002-07-04 00:12:53 +0000117 int acceptit = 0;
Damien Millereba71ba2000-04-29 23:57:08 +1000118 char *service = packet_get_string(&len);
Damien Miller48b03fc2002-01-22 23:11:40 +1100119 packet_check_eom();
Damien Millereba71ba2000-04-29 23:57:08 +1000120
Damien Miller874d77b2000-10-14 16:23:11 +1100121 if (authctxt == NULL)
122 fatal("input_service_request: no authctxt");
123
Damien Millereba71ba2000-04-29 23:57:08 +1000124 if (strcmp(service, "ssh-userauth") == 0) {
Damien Miller874d77b2000-10-14 16:23:11 +1100125 if (!authctxt->success) {
Ben Lindstrom5a9d0ea2002-07-04 00:12:53 +0000126 acceptit = 1;
Damien Millereba71ba2000-04-29 23:57:08 +1000127 /* now we can handle user-auth requests */
128 dispatch_set(SSH2_MSG_USERAUTH_REQUEST, &input_userauth_request);
129 }
130 }
131 /* XXX all other service requests are denied */
132
Ben Lindstrom5a9d0ea2002-07-04 00:12:53 +0000133 if (acceptit) {
Damien Millereba71ba2000-04-29 23:57:08 +1000134 packet_start(SSH2_MSG_SERVICE_ACCEPT);
135 packet_put_cstring(service);
136 packet_send();
137 packet_write_wait();
138 } else {
139 debug("bad service request %s", service);
140 packet_disconnect("bad service request %s", service);
141 }
142 xfree(service);
143}
144
Ben Lindstrombba81212001-06-25 05:01:22 +0000145static void
Damien Miller630d6f42002-01-22 23:17:30 +1100146input_userauth_request(int type, u_int32_t seq, void *ctxt)
Damien Millereba71ba2000-04-29 23:57:08 +1000147{
Damien Miller874d77b2000-10-14 16:23:11 +1100148 Authctxt *authctxt = ctxt;
149 Authmethod *m = NULL;
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000150 char *user, *service, *method, *style = NULL;
Damien Millereba71ba2000-04-29 23:57:08 +1000151 int authenticated = 0;
Damien Millereba71ba2000-04-29 23:57:08 +1000152
Damien Miller874d77b2000-10-14 16:23:11 +1100153 if (authctxt == NULL)
154 fatal("input_userauth_request: no authctxt");
Damien Millereba71ba2000-04-29 23:57:08 +1000155
Damien Miller874d77b2000-10-14 16:23:11 +1100156 user = packet_get_string(NULL);
157 service = packet_get_string(NULL);
158 method = packet_get_string(NULL);
159 debug("userauth-request for user %s service %s method %s", user, service, method);
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000160 debug("attempt %d failures %d", authctxt->attempt, authctxt->failures);
Damien Miller874d77b2000-10-14 16:23:11 +1100161
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000162 if ((style = strchr(user, ':')) != NULL)
163 *style++ = 0;
164
Kevin Stevesef4eea92001-02-05 12:42:17 +0000165 if (authctxt->attempt++ == 0) {
Damien Miller3a5b0232002-03-13 13:19:42 +1100166 /* setup auth context */
Kevin Steves205cc1e2002-03-22 20:43:05 +0000167 authctxt->pw = PRIVSEP(getpwnamallow(user));
168 if (authctxt->pw && strcmp(service, "ssh-connection")==0) {
Damien Miller874d77b2000-10-14 16:23:11 +1100169 authctxt->valid = 1;
170 debug2("input_userauth_request: setting up authctxt for %s", user);
171#ifdef USE_PAM
Damien Miller4e448a32003-05-14 15:11:48 +1000172 if (options.use_pam)
173 PRIVSEP(start_pam(authctxt->pw->pw_name));
Damien Miller874d77b2000-10-14 16:23:11 +1100174#endif
175 } else {
Damien Miller996acd22003-04-09 20:59:48 +1000176 logit("input_userauth_request: illegal user %s", user);
Damien Miller22e22bf2001-01-19 15:46:38 +1100177#ifdef USE_PAM
Damien Miller4e448a32003-05-14 15:11:48 +1000178 if (options.use_pam)
179 PRIVSEP(start_pam(user));
Damien Miller22e22bf2001-01-19 15:46:38 +1100180#endif
Damien Miller874d77b2000-10-14 16:23:11 +1100181 }
Ben Lindstrom7ebb6352002-03-22 03:04:08 +0000182 setproctitle("%s%s", authctxt->pw ? user : "unknown",
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000183 use_privsep ? " [net]" : "");
Damien Miller874d77b2000-10-14 16:23:11 +1100184 authctxt->user = xstrdup(user);
185 authctxt->service = xstrdup(service);
Ben Lindstrom9d0c0662001-06-09 01:40:00 +0000186 authctxt->style = style ? xstrdup(style) : NULL;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000187 if (use_privsep)
188 mm_inform_authserv(service, style);
Ben Lindstrom9d0c0662001-06-09 01:40:00 +0000189 } else if (strcmp(user, authctxt->user) != 0 ||
190 strcmp(service, authctxt->service) != 0) {
191 packet_disconnect("Change of username or service not allowed: "
192 "(%s,%s) -> (%s,%s)",
193 authctxt->user, authctxt->service, user, service);
Damien Millereba71ba2000-04-29 23:57:08 +1000194 }
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000195 /* reset state */
Damien Milleree116252001-12-21 12:42:34 +1100196 auth2_challenge_stop(authctxt);
Darren Tucker0efd1552003-08-26 11:49:55 +1000197
198#ifdef GSSAPI
199 dispatch_set(SSH2_MSG_USERAUTH_GSSAPI_TOKEN, NULL);
200 dispatch_set(SSH2_MSG_USERAUTH_GSSAPI_EXCHANGE_COMPLETE, NULL);
201#endif
202
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000203 authctxt->postponed = 0;
Damien Millerb70b61f2000-09-16 16:25:12 +1100204
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000205 /* try to authenticate user */
Damien Miller874d77b2000-10-14 16:23:11 +1100206 m = authmethod_lookup(method);
207 if (m != NULL) {
208 debug2("input_userauth_request: try method %s", method);
209 authenticated = m->userauth(authctxt);
Damien Miller874d77b2000-10-14 16:23:11 +1100210 }
Damien Miller5d57e502001-03-30 10:48:31 +1000211 userauth_finish(authctxt, authenticated, method);
212
213 xfree(service);
214 xfree(user);
215 xfree(method);
216}
217
218void
219userauth_finish(Authctxt *authctxt, int authenticated, char *method)
220{
Ben Lindstromcd4349f2001-06-09 00:23:17 +0000221 char *methods;
222
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000223 if (!authctxt->valid && authenticated)
224 fatal("INTERNAL ERROR: authenticated invalid user %s",
225 authctxt->user);
Damien Millerb70b61f2000-09-16 16:25:12 +1100226
Damien Miller874d77b2000-10-14 16:23:11 +1100227 /* Special handling for root */
Damien Miller556f9312003-02-24 11:59:26 +1100228 if (authenticated && authctxt->pw->pw_uid == 0 &&
Ben Lindstromd8a90212001-02-15 03:08:27 +0000229 !auth_root_allowed(method))
Damien Millereba71ba2000-04-29 23:57:08 +1000230 authenticated = 0;
Damien Millereba71ba2000-04-29 23:57:08 +1000231
Damien Miller1f499fd2003-08-25 13:08:49 +1000232#ifdef USE_PAM
233 if (options.use_pam && authenticated && !PRIVSEP(do_pam_account()))
234 authenticated = 0;
235#endif
236
Tim Rice81ed5182002-09-25 17:38:46 -0700237#ifdef _UNICOS
238 if (authenticated && cray_access_denied(authctxt->user)) {
239 authenticated = 0;
240 fatal("Access denied for user %s.",authctxt->user);
241 }
242#endif /* _UNICOS */
243
Damien Miller874d77b2000-10-14 16:23:11 +1100244 /* Log before sending the reply */
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000245 auth_log(authctxt, authenticated, method, " ssh2");
246
Ben Lindstromcd4349f2001-06-09 00:23:17 +0000247 if (authctxt->postponed)
248 return;
249
250 /* XXX todo: check if multiple auth methods are needed */
251 if (authenticated == 1) {
252 /* turn off userauth */
Damien Miller7d053392002-01-22 23:24:13 +1100253 dispatch_set(SSH2_MSG_USERAUTH_REQUEST, &dispatch_protocol_ignore);
Ben Lindstromcd4349f2001-06-09 00:23:17 +0000254 packet_start(SSH2_MSG_USERAUTH_SUCCESS);
255 packet_send();
256 packet_write_wait();
257 /* now we can break out */
258 authctxt->success = 1;
259 } else {
Ben Lindstromf50ad1f2003-04-27 18:44:31 +0000260 if (authctxt->failures++ > AUTH_FAIL_MAX)
Ben Lindstromcd4349f2001-06-09 00:23:17 +0000261 packet_disconnect(AUTH_FAIL_MSG, authctxt->user);
262 methods = authmethods_get();
263 packet_start(SSH2_MSG_USERAUTH_FAILURE);
264 packet_put_cstring(methods);
265 packet_put_char(0); /* XXX partial success, unused */
266 packet_send();
267 packet_write_wait();
268 xfree(methods);
269 }
Damien Miller874d77b2000-10-14 16:23:11 +1100270}
271
Damien Miller874d77b2000-10-14 16:23:11 +1100272/* get current user */
Damien Millereba71ba2000-04-29 23:57:08 +1000273
274struct passwd*
275auth_get_user(void)
276{
Damien Miller874d77b2000-10-14 16:23:11 +1100277 return (x_authctxt != NULL && x_authctxt->valid) ? x_authctxt->pw : NULL;
Damien Millereba71ba2000-04-29 23:57:08 +1000278}
279
Damien Miller874d77b2000-10-14 16:23:11 +1100280#define DELIM ","
Damien Millereba71ba2000-04-29 23:57:08 +1000281
Ben Lindstrom79073822001-07-04 03:42:30 +0000282static char *
Damien Miller874d77b2000-10-14 16:23:11 +1100283authmethods_get(void)
284{
Damien Miller0e3b8722002-01-22 23:26:38 +1100285 Buffer b;
Damien Miller874d77b2000-10-14 16:23:11 +1100286 char *list;
Ben Lindstrom511bb242002-06-06 20:52:37 +0000287 int i;
Damien Miller874d77b2000-10-14 16:23:11 +1100288
Damien Miller0e3b8722002-01-22 23:26:38 +1100289 buffer_init(&b);
Ben Lindstrom511bb242002-06-06 20:52:37 +0000290 for (i = 0; authmethods[i] != NULL; i++) {
291 if (strcmp(authmethods[i]->name, "none") == 0)
Damien Miller874d77b2000-10-14 16:23:11 +1100292 continue;
Ben Lindstrom511bb242002-06-06 20:52:37 +0000293 if (authmethods[i]->enabled != NULL &&
294 *(authmethods[i]->enabled) != 0) {
Damien Miller0e3b8722002-01-22 23:26:38 +1100295 if (buffer_len(&b) > 0)
296 buffer_append(&b, ",", 1);
Ben Lindstrom511bb242002-06-06 20:52:37 +0000297 buffer_append(&b, authmethods[i]->name,
298 strlen(authmethods[i]->name));
Damien Millereba71ba2000-04-29 23:57:08 +1000299 }
300 }
Damien Miller0e3b8722002-01-22 23:26:38 +1100301 buffer_append(&b, "\0", 1);
302 list = xstrdup(buffer_ptr(&b));
303 buffer_free(&b);
Damien Miller874d77b2000-10-14 16:23:11 +1100304 return list;
305}
306
Ben Lindstrombba81212001-06-25 05:01:22 +0000307static Authmethod *
Damien Miller874d77b2000-10-14 16:23:11 +1100308authmethod_lookup(const char *name)
309{
Ben Lindstrom511bb242002-06-06 20:52:37 +0000310 int i;
311
Damien Miller874d77b2000-10-14 16:23:11 +1100312 if (name != NULL)
Ben Lindstrom511bb242002-06-06 20:52:37 +0000313 for (i = 0; authmethods[i] != NULL; i++)
314 if (authmethods[i]->enabled != NULL &&
315 *(authmethods[i]->enabled) != 0 &&
316 strcmp(name, authmethods[i]->name) == 0)
317 return authmethods[i];
318 debug2("Unrecognized authentication method name: %s",
319 name ? name : "NULL");
Damien Miller874d77b2000-10-14 16:23:11 +1100320 return NULL;
Damien Millereba71ba2000-04-29 23:57:08 +1000321}