blob: 03d7f09dc680c8720803190479300a29aacf67d3 [file] [log] [blame]
Damien Millerb8c98072007-10-26 14:26:15 +10001/* $OpenBSD: auth2.c,v 1.116 2007/09/29 00:25:51 dtucker Exp $ */
Damien Millereba71ba2000-04-29 23:57:08 +10002/*
3 * Copyright (c) 2000 Markus Friedl. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
Damien Millereba71ba2000-04-29 23:57:08 +100013 *
14 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
15 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
16 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
17 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
18 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
19 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
20 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
21 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
23 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24 */
Damien Millere4340be2000-09-16 13:29:08 +110025
Damien Millereba71ba2000-04-29 23:57:08 +100026#include "includes.h"
Damien Millereba71ba2000-04-29 23:57:08 +100027
Damien Miller9f2abc42006-07-10 20:53:08 +100028#include <sys/types.h>
29
30#include <pwd.h>
Damien Millerd7834352006-08-05 12:39:39 +100031#include <stdarg.h>
Damien Millere3476ed2006-07-24 14:13:33 +100032#include <string.h>
Damien Miller9f2abc42006-07-10 20:53:08 +100033
Damien Millereba71ba2000-04-29 23:57:08 +100034#include "xmalloc.h"
Damien Millerd7834352006-08-05 12:39:39 +100035#include "ssh2.h"
Damien Millereba71ba2000-04-29 23:57:08 +100036#include "packet.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000037#include "log.h"
Damien Millerd7834352006-08-05 12:39:39 +100038#include "buffer.h"
Damien Millereba71ba2000-04-29 23:57:08 +100039#include "servconf.h"
40#include "compat.h"
Damien Millerd7834352006-08-05 12:39:39 +100041#include "key.h"
42#include "hostfile.h"
Damien Millereba71ba2000-04-29 23:57:08 +100043#include "auth.h"
Damien Millereba71ba2000-04-29 23:57:08 +100044#include "dispatch.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000045#include "pathnames.h"
Darren Tucker77fc29e2004-09-11 23:07:03 +100046#include "buffer.h"
Damien Millereba71ba2000-04-29 23:57:08 +100047
Darren Tucker0efd1552003-08-26 11:49:55 +100048#ifdef GSSAPI
49#include "ssh-gss.h"
50#endif
Damien Millerd7834352006-08-05 12:39:39 +100051#include "monitor_wrap.h"
Darren Tucker0efd1552003-08-26 11:49:55 +100052
Damien Millereba71ba2000-04-29 23:57:08 +100053/* import */
54extern ServerOptions options;
Ben Lindstrom46c16222000-12-22 01:43:59 +000055extern u_char *session_id2;
Darren Tucker502d3842003-06-28 12:38:01 +100056extern u_int session_id2_len;
Darren Tucker77fc29e2004-09-11 23:07:03 +100057extern Buffer loginmsg;
Damien Millereba71ba2000-04-29 23:57:08 +100058
Ben Lindstrom511bb242002-06-06 20:52:37 +000059/* methods */
60
61extern Authmethod method_none;
62extern Authmethod method_pubkey;
63extern Authmethod method_passwd;
64extern Authmethod method_kbdint;
65extern Authmethod method_hostbased;
Darren Tucker0efd1552003-08-26 11:49:55 +100066#ifdef GSSAPI
67extern Authmethod method_gssapi;
68#endif
Ben Lindstrom511bb242002-06-06 20:52:37 +000069
70Authmethod *authmethods[] = {
71 &method_none,
72 &method_pubkey,
Darren Tucker0efd1552003-08-26 11:49:55 +100073#ifdef GSSAPI
74 &method_gssapi,
75#endif
Ben Lindstrom511bb242002-06-06 20:52:37 +000076 &method_passwd,
77 &method_kbdint,
78 &method_hostbased,
79 NULL
Damien Miller874d77b2000-10-14 16:23:11 +110080};
81
Damien Millereba71ba2000-04-29 23:57:08 +100082/* protocol */
83
Damien Miller630d6f42002-01-22 23:17:30 +110084static void input_service_request(int, u_int32_t, void *);
85static void input_userauth_request(int, u_int32_t, void *);
Damien Millereba71ba2000-04-29 23:57:08 +100086
Damien Millereba71ba2000-04-29 23:57:08 +100087/* helper */
Ben Lindstrombba81212001-06-25 05:01:22 +000088static Authmethod *authmethod_lookup(const char *);
Ben Lindstrom79073822001-07-04 03:42:30 +000089static char *authmethods_get(void);
Damien Millereba71ba2000-04-29 23:57:08 +100090
Damien Millereba71ba2000-04-29 23:57:08 +100091/*
Damien Miller874d77b2000-10-14 16:23:11 +110092 * loop until authctxt->success == TRUE
Damien Millereba71ba2000-04-29 23:57:08 +100093 */
94
Darren Tucker3e33cec2003-10-02 16:12:36 +100095void
96do_authentication2(Authctxt *authctxt)
Damien Millereba71ba2000-04-29 23:57:08 +100097{
Damien Miller7d053392002-01-22 23:24:13 +110098 dispatch_init(&dispatch_protocol_error);
Damien Millereba71ba2000-04-29 23:57:08 +100099 dispatch_set(SSH2_MSG_SERVICE_REQUEST, &input_service_request);
Damien Miller874d77b2000-10-14 16:23:11 +1100100 dispatch_run(DISPATCH_BLOCK, &authctxt->success, authctxt);
Damien Millereba71ba2000-04-29 23:57:08 +1000101}
102
Damien Miller91d4b122006-03-26 14:05:20 +1100103/*ARGSUSED*/
Ben Lindstrombba81212001-06-25 05:01:22 +0000104static void
Damien Miller630d6f42002-01-22 23:17:30 +1100105input_service_request(int type, u_int32_t seq, void *ctxt)
Damien Millereba71ba2000-04-29 23:57:08 +1000106{
Damien Miller874d77b2000-10-14 16:23:11 +1100107 Authctxt *authctxt = ctxt;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000108 u_int len;
Ben Lindstrom5a9d0ea2002-07-04 00:12:53 +0000109 int acceptit = 0;
Damien Millereba71ba2000-04-29 23:57:08 +1000110 char *service = packet_get_string(&len);
Damien Miller48b03fc2002-01-22 23:11:40 +1100111 packet_check_eom();
Damien Millereba71ba2000-04-29 23:57:08 +1000112
Damien Miller874d77b2000-10-14 16:23:11 +1100113 if (authctxt == NULL)
114 fatal("input_service_request: no authctxt");
115
Damien Millereba71ba2000-04-29 23:57:08 +1000116 if (strcmp(service, "ssh-userauth") == 0) {
Damien Miller874d77b2000-10-14 16:23:11 +1100117 if (!authctxt->success) {
Ben Lindstrom5a9d0ea2002-07-04 00:12:53 +0000118 acceptit = 1;
Damien Millereba71ba2000-04-29 23:57:08 +1000119 /* now we can handle user-auth requests */
120 dispatch_set(SSH2_MSG_USERAUTH_REQUEST, &input_userauth_request);
121 }
122 }
123 /* XXX all other service requests are denied */
124
Ben Lindstrom5a9d0ea2002-07-04 00:12:53 +0000125 if (acceptit) {
Damien Millereba71ba2000-04-29 23:57:08 +1000126 packet_start(SSH2_MSG_SERVICE_ACCEPT);
127 packet_put_cstring(service);
128 packet_send();
129 packet_write_wait();
130 } else {
131 debug("bad service request %s", service);
132 packet_disconnect("bad service request %s", service);
133 }
134 xfree(service);
135}
136
Damien Miller91d4b122006-03-26 14:05:20 +1100137/*ARGSUSED*/
Ben Lindstrombba81212001-06-25 05:01:22 +0000138static void
Damien Miller630d6f42002-01-22 23:17:30 +1100139input_userauth_request(int type, u_int32_t seq, void *ctxt)
Damien Millereba71ba2000-04-29 23:57:08 +1000140{
Damien Miller874d77b2000-10-14 16:23:11 +1100141 Authctxt *authctxt = ctxt;
142 Authmethod *m = NULL;
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000143 char *user, *service, *method, *style = NULL;
Damien Millereba71ba2000-04-29 23:57:08 +1000144 int authenticated = 0;
Damien Millereba71ba2000-04-29 23:57:08 +1000145
Damien Miller874d77b2000-10-14 16:23:11 +1100146 if (authctxt == NULL)
147 fatal("input_userauth_request: no authctxt");
Damien Millereba71ba2000-04-29 23:57:08 +1000148
Damien Miller874d77b2000-10-14 16:23:11 +1100149 user = packet_get_string(NULL);
150 service = packet_get_string(NULL);
151 method = packet_get_string(NULL);
152 debug("userauth-request for user %s service %s method %s", user, service, method);
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000153 debug("attempt %d failures %d", authctxt->attempt, authctxt->failures);
Damien Miller874d77b2000-10-14 16:23:11 +1100154
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000155 if ((style = strchr(user, ':')) != NULL)
156 *style++ = 0;
157
Kevin Stevesef4eea92001-02-05 12:42:17 +0000158 if (authctxt->attempt++ == 0) {
Damien Miller3a5b0232002-03-13 13:19:42 +1100159 /* setup auth context */
Kevin Steves205cc1e2002-03-22 20:43:05 +0000160 authctxt->pw = PRIVSEP(getpwnamallow(user));
Darren Tuckerdbf7a742004-03-08 23:04:06 +1100161 authctxt->user = xstrdup(user);
Kevin Steves205cc1e2002-03-22 20:43:05 +0000162 if (authctxt->pw && strcmp(service, "ssh-connection")==0) {
Damien Miller874d77b2000-10-14 16:23:11 +1100163 authctxt->valid = 1;
164 debug2("input_userauth_request: setting up authctxt for %s", user);
Damien Miller874d77b2000-10-14 16:23:11 +1100165 } else {
Darren Tucker5cb30ad2004-08-12 22:40:24 +1000166 logit("input_userauth_request: invalid user %s", user);
Damien Miller856f0be2003-09-03 07:32:45 +1000167 authctxt->pw = fakepw();
Darren Tucker2e0cf0d2005-02-08 21:52:47 +1100168#ifdef SSH_AUDIT_EVENTS
169 PRIVSEP(audit_event(SSH_INVALID_USER));
Darren Tucker269a1ea2005-02-03 00:20:53 +1100170#endif
Damien Miller874d77b2000-10-14 16:23:11 +1100171 }
Darren Tuckerd3eff2b2005-09-24 12:43:51 +1000172#ifdef USE_PAM
173 if (options.use_pam)
174 PRIVSEP(start_pam(authctxt));
175#endif
Damien Miller30d1f842004-07-21 20:48:53 +1000176 setproctitle("%s%s", authctxt->valid ? user : "unknown",
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000177 use_privsep ? " [net]" : "");
Damien Miller874d77b2000-10-14 16:23:11 +1100178 authctxt->service = xstrdup(service);
Ben Lindstrom9d0c0662001-06-09 01:40:00 +0000179 authctxt->style = style ? xstrdup(style) : NULL;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000180 if (use_privsep)
181 mm_inform_authserv(service, style);
Ben Lindstrom9d0c0662001-06-09 01:40:00 +0000182 } else if (strcmp(user, authctxt->user) != 0 ||
183 strcmp(service, authctxt->service) != 0) {
184 packet_disconnect("Change of username or service not allowed: "
185 "(%s,%s) -> (%s,%s)",
186 authctxt->user, authctxt->service, user, service);
Damien Millereba71ba2000-04-29 23:57:08 +1000187 }
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000188 /* reset state */
Damien Milleree116252001-12-21 12:42:34 +1100189 auth2_challenge_stop(authctxt);
Darren Tucker0efd1552003-08-26 11:49:55 +1000190
191#ifdef GSSAPI
192 dispatch_set(SSH2_MSG_USERAUTH_GSSAPI_TOKEN, NULL);
193 dispatch_set(SSH2_MSG_USERAUTH_GSSAPI_EXCHANGE_COMPLETE, NULL);
194#endif
195
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000196 authctxt->postponed = 0;
Damien Millerb70b61f2000-09-16 16:25:12 +1100197
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000198 /* try to authenticate user */
Damien Miller874d77b2000-10-14 16:23:11 +1100199 m = authmethod_lookup(method);
200 if (m != NULL) {
201 debug2("input_userauth_request: try method %s", method);
202 authenticated = m->userauth(authctxt);
Damien Miller874d77b2000-10-14 16:23:11 +1100203 }
Damien Miller5d57e502001-03-30 10:48:31 +1000204 userauth_finish(authctxt, authenticated, method);
205
206 xfree(service);
207 xfree(user);
208 xfree(method);
209}
210
211void
212userauth_finish(Authctxt *authctxt, int authenticated, char *method)
213{
Ben Lindstromcd4349f2001-06-09 00:23:17 +0000214 char *methods;
215
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000216 if (!authctxt->valid && authenticated)
217 fatal("INTERNAL ERROR: authenticated invalid user %s",
218 authctxt->user);
Damien Millerb70b61f2000-09-16 16:25:12 +1100219
Damien Miller874d77b2000-10-14 16:23:11 +1100220 /* Special handling for root */
Damien Miller556f9312003-02-24 11:59:26 +1100221 if (authenticated && authctxt->pw->pw_uid == 0 &&
Darren Tucker269a1ea2005-02-03 00:20:53 +1100222 !auth_root_allowed(method)) {
Damien Millereba71ba2000-04-29 23:57:08 +1000223 authenticated = 0;
Darren Tucker2e0cf0d2005-02-08 21:52:47 +1100224#ifdef SSH_AUDIT_EVENTS
225 PRIVSEP(audit_event(SSH_LOGIN_ROOT_DENIED));
Darren Tucker269a1ea2005-02-03 00:20:53 +1100226#endif
227 }
Damien Millereba71ba2000-04-29 23:57:08 +1000228
Damien Miller1f499fd2003-08-25 13:08:49 +1000229#ifdef USE_PAM
Darren Tucker77fc29e2004-09-11 23:07:03 +1000230 if (options.use_pam && authenticated) {
231 if (!PRIVSEP(do_pam_account())) {
Darren Tucker77fc29e2004-09-11 23:07:03 +1000232 /* if PAM returned a message, send it to the user */
233 if (buffer_len(&loginmsg) > 0) {
234 buffer_append(&loginmsg, "\0", 1);
235 userauth_send_banner(buffer_ptr(&loginmsg));
Darren Tuckerc1386672004-12-03 14:33:47 +1100236 packet_write_wait();
Darren Tucker77fc29e2004-09-11 23:07:03 +1000237 }
Darren Tuckerc1386672004-12-03 14:33:47 +1100238 fatal("Access denied for user %s by PAM account "
Damien Millerb6f72f52005-07-17 17:26:43 +1000239 "configuration", authctxt->user);
Darren Tucker77fc29e2004-09-11 23:07:03 +1000240 }
241 }
Damien Miller1f499fd2003-08-25 13:08:49 +1000242#endif
243
Tim Rice81ed5182002-09-25 17:38:46 -0700244#ifdef _UNICOS
245 if (authenticated && cray_access_denied(authctxt->user)) {
246 authenticated = 0;
247 fatal("Access denied for user %s.",authctxt->user);
248 }
249#endif /* _UNICOS */
250
Damien Miller874d77b2000-10-14 16:23:11 +1100251 /* Log before sending the reply */
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000252 auth_log(authctxt, authenticated, method, " ssh2");
253
Ben Lindstromcd4349f2001-06-09 00:23:17 +0000254 if (authctxt->postponed)
255 return;
256
257 /* XXX todo: check if multiple auth methods are needed */
258 if (authenticated == 1) {
259 /* turn off userauth */
Damien Miller7d053392002-01-22 23:24:13 +1100260 dispatch_set(SSH2_MSG_USERAUTH_REQUEST, &dispatch_protocol_ignore);
Ben Lindstromcd4349f2001-06-09 00:23:17 +0000261 packet_start(SSH2_MSG_USERAUTH_SUCCESS);
262 packet_send();
263 packet_write_wait();
264 /* now we can break out */
265 authctxt->success = 1;
266 } else {
Darren Tucker269a1ea2005-02-03 00:20:53 +1100267 if (authctxt->failures++ > options.max_authtries) {
Darren Tucker2e0cf0d2005-02-08 21:52:47 +1100268#ifdef SSH_AUDIT_EVENTS
269 PRIVSEP(audit_event(SSH_LOGIN_EXCEED_MAXTRIES));
Darren Tucker269a1ea2005-02-03 00:20:53 +1100270#endif
Ben Lindstromcd4349f2001-06-09 00:23:17 +0000271 packet_disconnect(AUTH_FAIL_MSG, authctxt->user);
Darren Tucker269a1ea2005-02-03 00:20:53 +1100272 }
Ben Lindstromcd4349f2001-06-09 00:23:17 +0000273 methods = authmethods_get();
274 packet_start(SSH2_MSG_USERAUTH_FAILURE);
275 packet_put_cstring(methods);
276 packet_put_char(0); /* XXX partial success, unused */
277 packet_send();
278 packet_write_wait();
279 xfree(methods);
280 }
Damien Miller874d77b2000-10-14 16:23:11 +1100281}
282
Ben Lindstrom79073822001-07-04 03:42:30 +0000283static char *
Damien Miller874d77b2000-10-14 16:23:11 +1100284authmethods_get(void)
285{
Damien Miller0e3b8722002-01-22 23:26:38 +1100286 Buffer b;
Damien Miller874d77b2000-10-14 16:23:11 +1100287 char *list;
Ben Lindstrom511bb242002-06-06 20:52:37 +0000288 int i;
Damien Miller874d77b2000-10-14 16:23:11 +1100289
Damien Miller0e3b8722002-01-22 23:26:38 +1100290 buffer_init(&b);
Ben Lindstrom511bb242002-06-06 20:52:37 +0000291 for (i = 0; authmethods[i] != NULL; i++) {
292 if (strcmp(authmethods[i]->name, "none") == 0)
Damien Miller874d77b2000-10-14 16:23:11 +1100293 continue;
Ben Lindstrom511bb242002-06-06 20:52:37 +0000294 if (authmethods[i]->enabled != NULL &&
295 *(authmethods[i]->enabled) != 0) {
Damien Miller0e3b8722002-01-22 23:26:38 +1100296 if (buffer_len(&b) > 0)
297 buffer_append(&b, ",", 1);
Ben Lindstrom511bb242002-06-06 20:52:37 +0000298 buffer_append(&b, authmethods[i]->name,
299 strlen(authmethods[i]->name));
Damien Millereba71ba2000-04-29 23:57:08 +1000300 }
301 }
Damien Miller0e3b8722002-01-22 23:26:38 +1100302 buffer_append(&b, "\0", 1);
303 list = xstrdup(buffer_ptr(&b));
304 buffer_free(&b);
Damien Miller874d77b2000-10-14 16:23:11 +1100305 return list;
306}
307
Ben Lindstrombba81212001-06-25 05:01:22 +0000308static Authmethod *
Damien Miller874d77b2000-10-14 16:23:11 +1100309authmethod_lookup(const char *name)
310{
Ben Lindstrom511bb242002-06-06 20:52:37 +0000311 int i;
312
Damien Miller874d77b2000-10-14 16:23:11 +1100313 if (name != NULL)
Ben Lindstrom511bb242002-06-06 20:52:37 +0000314 for (i = 0; authmethods[i] != NULL; i++)
315 if (authmethods[i]->enabled != NULL &&
316 *(authmethods[i]->enabled) != 0 &&
317 strcmp(name, authmethods[i]->name) == 0)
318 return authmethods[i];
319 debug2("Unrecognized authentication method name: %s",
320 name ? name : "NULL");
Damien Miller874d77b2000-10-14 16:23:11 +1100321 return NULL;
Damien Millereba71ba2000-04-29 23:57:08 +1000322}