blob: b49cc79c7f179515d2e1cded250da5b2ea2d6f6f [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"
Damien Millereba71ba2000-04-29 23:57:08 +100026
Ben Lindstrom226cfa02001-01-22 05:34:40 +000027#include "ssh2.h"
Damien Millereba71ba2000-04-29 23:57:08 +100028#include "xmalloc.h"
Damien Millereba71ba2000-04-29 23:57:08 +100029#include "packet.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000030#include "log.h"
Damien Millereba71ba2000-04-29 23:57:08 +100031#include "servconf.h"
32#include "compat.h"
Damien Millereba71ba2000-04-29 23:57:08 +100033#include "auth.h"
Damien Millereba71ba2000-04-29 23:57:08 +100034#include "dispatch.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000035#include "pathnames.h"
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000036#include "monitor_wrap.h"
Darren Tucker77fc29e2004-09-11 23:07:03 +100037#include "buffer.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;
Darren Tucker77fc29e2004-09-11 23:07:03 +100047extern Buffer loginmsg;
Damien Millereba71ba2000-04-29 23:57:08 +100048
Ben Lindstrom511bb242002-06-06 20:52:37 +000049/* methods */
50
51extern Authmethod method_none;
52extern Authmethod method_pubkey;
53extern Authmethod method_passwd;
54extern Authmethod method_kbdint;
55extern Authmethod method_hostbased;
Darren Tucker0efd1552003-08-26 11:49:55 +100056#ifdef GSSAPI
57extern Authmethod method_gssapi;
58#endif
Ben Lindstrom511bb242002-06-06 20:52:37 +000059
60Authmethod *authmethods[] = {
61 &method_none,
62 &method_pubkey,
Darren Tucker0efd1552003-08-26 11:49:55 +100063#ifdef GSSAPI
64 &method_gssapi,
65#endif
Ben Lindstrom511bb242002-06-06 20:52:37 +000066 &method_passwd,
67 &method_kbdint,
68 &method_hostbased,
69 NULL
Damien Miller874d77b2000-10-14 16:23:11 +110070};
71
Damien Millereba71ba2000-04-29 23:57:08 +100072/* protocol */
73
Damien Miller630d6f42002-01-22 23:17:30 +110074static void input_service_request(int, u_int32_t, void *);
75static void input_userauth_request(int, u_int32_t, void *);
Damien Millereba71ba2000-04-29 23:57:08 +100076
Damien Millereba71ba2000-04-29 23:57:08 +100077/* helper */
Ben Lindstrombba81212001-06-25 05:01:22 +000078static Authmethod *authmethod_lookup(const char *);
Ben Lindstrom79073822001-07-04 03:42:30 +000079static char *authmethods_get(void);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000080int user_key_allowed(struct passwd *, Key *);
Damien Millereba71ba2000-04-29 23:57:08 +100081
Damien Millereba71ba2000-04-29 23:57:08 +100082/*
Damien Miller874d77b2000-10-14 16:23:11 +110083 * loop until authctxt->success == TRUE
Damien Millereba71ba2000-04-29 23:57:08 +100084 */
85
Darren Tucker3e33cec2003-10-02 16:12:36 +100086void
87do_authentication2(Authctxt *authctxt)
Damien Millereba71ba2000-04-29 23:57:08 +100088{
Ben Lindstrombdfb4df2001-10-03 17:12:43 +000089 /* challenge-response is implemented via keyboard interactive */
Ben Lindstrom551ea372001-06-05 18:56:16 +000090 if (options.challenge_response_authentication)
Ben Lindstrom95fb2dd2001-01-23 03:12:10 +000091 options.kbd_interactive_authentication = 1;
92
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);
Damien Millereba71ba2000-04-29 23:57:08 +100096}
97
Ben Lindstrombba81212001-06-25 05:01:22 +000098static void
Damien Miller630d6f42002-01-22 23:17:30 +110099input_service_request(int type, u_int32_t seq, void *ctxt)
Damien Millereba71ba2000-04-29 23:57:08 +1000100{
Damien Miller874d77b2000-10-14 16:23:11 +1100101 Authctxt *authctxt = ctxt;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000102 u_int len;
Ben Lindstrom5a9d0ea2002-07-04 00:12:53 +0000103 int acceptit = 0;
Damien Millereba71ba2000-04-29 23:57:08 +1000104 char *service = packet_get_string(&len);
Damien Miller48b03fc2002-01-22 23:11:40 +1100105 packet_check_eom();
Damien Millereba71ba2000-04-29 23:57:08 +1000106
Damien Miller874d77b2000-10-14 16:23:11 +1100107 if (authctxt == NULL)
108 fatal("input_service_request: no authctxt");
109
Damien Millereba71ba2000-04-29 23:57:08 +1000110 if (strcmp(service, "ssh-userauth") == 0) {
Damien Miller874d77b2000-10-14 16:23:11 +1100111 if (!authctxt->success) {
Ben Lindstrom5a9d0ea2002-07-04 00:12:53 +0000112 acceptit = 1;
Damien Millereba71ba2000-04-29 23:57:08 +1000113 /* now we can handle user-auth requests */
114 dispatch_set(SSH2_MSG_USERAUTH_REQUEST, &input_userauth_request);
115 }
116 }
117 /* XXX all other service requests are denied */
118
Ben Lindstrom5a9d0ea2002-07-04 00:12:53 +0000119 if (acceptit) {
Damien Millereba71ba2000-04-29 23:57:08 +1000120 packet_start(SSH2_MSG_SERVICE_ACCEPT);
121 packet_put_cstring(service);
122 packet_send();
123 packet_write_wait();
124 } else {
125 debug("bad service request %s", service);
126 packet_disconnect("bad service request %s", service);
127 }
128 xfree(service);
129}
130
Ben Lindstrombba81212001-06-25 05:01:22 +0000131static void
Damien Miller630d6f42002-01-22 23:17:30 +1100132input_userauth_request(int type, u_int32_t seq, void *ctxt)
Damien Millereba71ba2000-04-29 23:57:08 +1000133{
Damien Miller874d77b2000-10-14 16:23:11 +1100134 Authctxt *authctxt = ctxt;
135 Authmethod *m = NULL;
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000136 char *user, *service, *method, *style = NULL;
Damien Millereba71ba2000-04-29 23:57:08 +1000137 int authenticated = 0;
Damien Millereba71ba2000-04-29 23:57:08 +1000138
Damien Miller874d77b2000-10-14 16:23:11 +1100139 if (authctxt == NULL)
140 fatal("input_userauth_request: no authctxt");
Damien Millereba71ba2000-04-29 23:57:08 +1000141
Damien Miller874d77b2000-10-14 16:23:11 +1100142 user = packet_get_string(NULL);
143 service = packet_get_string(NULL);
144 method = packet_get_string(NULL);
145 debug("userauth-request for user %s service %s method %s", user, service, method);
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000146 debug("attempt %d failures %d", authctxt->attempt, authctxt->failures);
Damien Miller874d77b2000-10-14 16:23:11 +1100147
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000148 if ((style = strchr(user, ':')) != NULL)
149 *style++ = 0;
150
Kevin Stevesef4eea92001-02-05 12:42:17 +0000151 if (authctxt->attempt++ == 0) {
Damien Miller3a5b0232002-03-13 13:19:42 +1100152 /* setup auth context */
Kevin Steves205cc1e2002-03-22 20:43:05 +0000153 authctxt->pw = PRIVSEP(getpwnamallow(user));
Darren Tuckerdbf7a742004-03-08 23:04:06 +1100154 authctxt->user = xstrdup(user);
Kevin Steves205cc1e2002-03-22 20:43:05 +0000155 if (authctxt->pw && strcmp(service, "ssh-connection")==0) {
Damien Miller874d77b2000-10-14 16:23:11 +1100156 authctxt->valid = 1;
157 debug2("input_userauth_request: setting up authctxt for %s", user);
Damien Miller874d77b2000-10-14 16:23:11 +1100158 } else {
Darren Tucker5cb30ad2004-08-12 22:40:24 +1000159 logit("input_userauth_request: invalid user %s", user);
Damien Miller856f0be2003-09-03 07:32:45 +1000160 authctxt->pw = fakepw();
Darren Tucker2e0cf0d2005-02-08 21:52:47 +1100161#ifdef SSH_AUDIT_EVENTS
162 PRIVSEP(audit_event(SSH_INVALID_USER));
Darren Tucker269a1ea2005-02-03 00:20:53 +1100163#endif
Damien Miller874d77b2000-10-14 16:23:11 +1100164 }
Darren Tuckerd3eff2b2005-09-24 12:43:51 +1000165#ifdef USE_PAM
166 if (options.use_pam)
167 PRIVSEP(start_pam(authctxt));
168#endif
Damien Miller30d1f842004-07-21 20:48:53 +1000169 setproctitle("%s%s", authctxt->valid ? user : "unknown",
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000170 use_privsep ? " [net]" : "");
Damien Miller874d77b2000-10-14 16:23:11 +1100171 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);
Darren Tucker0efd1552003-08-26 11:49:55 +1000183
184#ifdef GSSAPI
185 dispatch_set(SSH2_MSG_USERAUTH_GSSAPI_TOKEN, NULL);
186 dispatch_set(SSH2_MSG_USERAUTH_GSSAPI_EXCHANGE_COMPLETE, NULL);
187#endif
188
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000189 authctxt->postponed = 0;
Damien Millerb70b61f2000-09-16 16:25:12 +1100190
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000191 /* try to authenticate user */
Damien Miller874d77b2000-10-14 16:23:11 +1100192 m = authmethod_lookup(method);
193 if (m != NULL) {
194 debug2("input_userauth_request: try method %s", method);
195 authenticated = m->userauth(authctxt);
Damien Miller874d77b2000-10-14 16:23:11 +1100196 }
Damien Miller5d57e502001-03-30 10:48:31 +1000197 userauth_finish(authctxt, authenticated, method);
198
199 xfree(service);
200 xfree(user);
201 xfree(method);
202}
203
204void
205userauth_finish(Authctxt *authctxt, int authenticated, char *method)
206{
Ben Lindstromcd4349f2001-06-09 00:23:17 +0000207 char *methods;
208
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000209 if (!authctxt->valid && authenticated)
210 fatal("INTERNAL ERROR: authenticated invalid user %s",
211 authctxt->user);
Damien Millerb70b61f2000-09-16 16:25:12 +1100212
Damien Miller874d77b2000-10-14 16:23:11 +1100213 /* Special handling for root */
Damien Miller556f9312003-02-24 11:59:26 +1100214 if (authenticated && authctxt->pw->pw_uid == 0 &&
Darren Tucker269a1ea2005-02-03 00:20:53 +1100215 !auth_root_allowed(method)) {
Damien Millereba71ba2000-04-29 23:57:08 +1000216 authenticated = 0;
Darren Tucker2e0cf0d2005-02-08 21:52:47 +1100217#ifdef SSH_AUDIT_EVENTS
218 PRIVSEP(audit_event(SSH_LOGIN_ROOT_DENIED));
Darren Tucker269a1ea2005-02-03 00:20:53 +1100219#endif
220 }
Damien Millereba71ba2000-04-29 23:57:08 +1000221
Damien Miller1f499fd2003-08-25 13:08:49 +1000222#ifdef USE_PAM
Darren Tucker77fc29e2004-09-11 23:07:03 +1000223 if (options.use_pam && authenticated) {
224 if (!PRIVSEP(do_pam_account())) {
Darren Tucker77fc29e2004-09-11 23:07:03 +1000225 /* if PAM returned a message, send it to the user */
226 if (buffer_len(&loginmsg) > 0) {
227 buffer_append(&loginmsg, "\0", 1);
228 userauth_send_banner(buffer_ptr(&loginmsg));
Darren Tuckerc1386672004-12-03 14:33:47 +1100229 packet_write_wait();
Darren Tucker77fc29e2004-09-11 23:07:03 +1000230 }
Darren Tuckerc1386672004-12-03 14:33:47 +1100231 fatal("Access denied for user %s by PAM account "
Damien Millerb6f72f52005-07-17 17:26:43 +1000232 "configuration", authctxt->user);
Darren Tucker77fc29e2004-09-11 23:07:03 +1000233 }
234 }
Damien Miller1f499fd2003-08-25 13:08:49 +1000235#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 {
Darren Tucker269a1ea2005-02-03 00:20:53 +1100260 if (authctxt->failures++ > options.max_authtries) {
Darren Tucker2e0cf0d2005-02-08 21:52:47 +1100261#ifdef SSH_AUDIT_EVENTS
262 PRIVSEP(audit_event(SSH_LOGIN_EXCEED_MAXTRIES));
Darren Tucker269a1ea2005-02-03 00:20:53 +1100263#endif
Ben Lindstromcd4349f2001-06-09 00:23:17 +0000264 packet_disconnect(AUTH_FAIL_MSG, authctxt->user);
Darren Tucker269a1ea2005-02-03 00:20:53 +1100265 }
Ben Lindstromcd4349f2001-06-09 00:23:17 +0000266 methods = authmethods_get();
267 packet_start(SSH2_MSG_USERAUTH_FAILURE);
268 packet_put_cstring(methods);
269 packet_put_char(0); /* XXX partial success, unused */
270 packet_send();
271 packet_write_wait();
272 xfree(methods);
273 }
Damien Miller874d77b2000-10-14 16:23:11 +1100274}
275
Damien Miller874d77b2000-10-14 16:23:11 +1100276#define DELIM ","
Damien Millereba71ba2000-04-29 23:57:08 +1000277
Ben Lindstrom79073822001-07-04 03:42:30 +0000278static char *
Damien Miller874d77b2000-10-14 16:23:11 +1100279authmethods_get(void)
280{
Damien Miller0e3b8722002-01-22 23:26:38 +1100281 Buffer b;
Damien Miller874d77b2000-10-14 16:23:11 +1100282 char *list;
Ben Lindstrom511bb242002-06-06 20:52:37 +0000283 int i;
Damien Miller874d77b2000-10-14 16:23:11 +1100284
Damien Miller0e3b8722002-01-22 23:26:38 +1100285 buffer_init(&b);
Ben Lindstrom511bb242002-06-06 20:52:37 +0000286 for (i = 0; authmethods[i] != NULL; i++) {
287 if (strcmp(authmethods[i]->name, "none") == 0)
Damien Miller874d77b2000-10-14 16:23:11 +1100288 continue;
Ben Lindstrom511bb242002-06-06 20:52:37 +0000289 if (authmethods[i]->enabled != NULL &&
290 *(authmethods[i]->enabled) != 0) {
Damien Miller0e3b8722002-01-22 23:26:38 +1100291 if (buffer_len(&b) > 0)
292 buffer_append(&b, ",", 1);
Ben Lindstrom511bb242002-06-06 20:52:37 +0000293 buffer_append(&b, authmethods[i]->name,
294 strlen(authmethods[i]->name));
Damien Millereba71ba2000-04-29 23:57:08 +1000295 }
296 }
Damien Miller0e3b8722002-01-22 23:26:38 +1100297 buffer_append(&b, "\0", 1);
298 list = xstrdup(buffer_ptr(&b));
299 buffer_free(&b);
Damien Miller874d77b2000-10-14 16:23:11 +1100300 return list;
301}
302
Ben Lindstrombba81212001-06-25 05:01:22 +0000303static Authmethod *
Damien Miller874d77b2000-10-14 16:23:11 +1100304authmethod_lookup(const char *name)
305{
Ben Lindstrom511bb242002-06-06 20:52:37 +0000306 int i;
307
Damien Miller874d77b2000-10-14 16:23:11 +1100308 if (name != NULL)
Ben Lindstrom511bb242002-06-06 20:52:37 +0000309 for (i = 0; authmethods[i] != NULL; i++)
310 if (authmethods[i]->enabled != NULL &&
311 *(authmethods[i]->enabled) != 0 &&
312 strcmp(name, authmethods[i]->name) == 0)
313 return authmethods[i];
314 debug2("Unrecognized authentication method name: %s",
315 name ? name : "NULL");
Damien Miller874d77b2000-10-14 16:23:11 +1100316 return NULL;
Damien Millereba71ba2000-04-29 23:57:08 +1000317}