blob: bded8c2f8556bf90d6323674ce1188f57c4e85da [file] [log] [blame]
Darren Tucker208ac572007-05-20 14:58:41 +10001/* $OpenBSD: auth2.c,v 1.115 2007/04/14 22:01:58 stevesk 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);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000090int user_key_allowed(struct passwd *, Key *);
Damien Millereba71ba2000-04-29 23:57:08 +100091
Damien Millereba71ba2000-04-29 23:57:08 +100092/*
Damien Miller874d77b2000-10-14 16:23:11 +110093 * loop until authctxt->success == TRUE
Damien Millereba71ba2000-04-29 23:57:08 +100094 */
95
Darren Tucker3e33cec2003-10-02 16:12:36 +100096void
97do_authentication2(Authctxt *authctxt)
Damien Millereba71ba2000-04-29 23:57:08 +100098{
Damien Miller7d053392002-01-22 23:24:13 +110099 dispatch_init(&dispatch_protocol_error);
Damien Millereba71ba2000-04-29 23:57:08 +1000100 dispatch_set(SSH2_MSG_SERVICE_REQUEST, &input_service_request);
Damien Miller874d77b2000-10-14 16:23:11 +1100101 dispatch_run(DISPATCH_BLOCK, &authctxt->success, authctxt);
Damien Millereba71ba2000-04-29 23:57:08 +1000102}
103
Damien Miller91d4b122006-03-26 14:05:20 +1100104/*ARGSUSED*/
Ben Lindstrombba81212001-06-25 05:01:22 +0000105static void
Damien Miller630d6f42002-01-22 23:17:30 +1100106input_service_request(int type, u_int32_t seq, void *ctxt)
Damien Millereba71ba2000-04-29 23:57:08 +1000107{
Damien Miller874d77b2000-10-14 16:23:11 +1100108 Authctxt *authctxt = ctxt;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000109 u_int len;
Ben Lindstrom5a9d0ea2002-07-04 00:12:53 +0000110 int acceptit = 0;
Damien Millereba71ba2000-04-29 23:57:08 +1000111 char *service = packet_get_string(&len);
Damien Miller48b03fc2002-01-22 23:11:40 +1100112 packet_check_eom();
Damien Millereba71ba2000-04-29 23:57:08 +1000113
Damien Miller874d77b2000-10-14 16:23:11 +1100114 if (authctxt == NULL)
115 fatal("input_service_request: no authctxt");
116
Damien Millereba71ba2000-04-29 23:57:08 +1000117 if (strcmp(service, "ssh-userauth") == 0) {
Damien Miller874d77b2000-10-14 16:23:11 +1100118 if (!authctxt->success) {
Ben Lindstrom5a9d0ea2002-07-04 00:12:53 +0000119 acceptit = 1;
Damien Millereba71ba2000-04-29 23:57:08 +1000120 /* now we can handle user-auth requests */
121 dispatch_set(SSH2_MSG_USERAUTH_REQUEST, &input_userauth_request);
122 }
123 }
124 /* XXX all other service requests are denied */
125
Ben Lindstrom5a9d0ea2002-07-04 00:12:53 +0000126 if (acceptit) {
Damien Millereba71ba2000-04-29 23:57:08 +1000127 packet_start(SSH2_MSG_SERVICE_ACCEPT);
128 packet_put_cstring(service);
129 packet_send();
130 packet_write_wait();
131 } else {
132 debug("bad service request %s", service);
133 packet_disconnect("bad service request %s", service);
134 }
135 xfree(service);
136}
137
Damien Miller91d4b122006-03-26 14:05:20 +1100138/*ARGSUSED*/
Ben Lindstrombba81212001-06-25 05:01:22 +0000139static void
Damien Miller630d6f42002-01-22 23:17:30 +1100140input_userauth_request(int type, u_int32_t seq, void *ctxt)
Damien Millereba71ba2000-04-29 23:57:08 +1000141{
Damien Miller874d77b2000-10-14 16:23:11 +1100142 Authctxt *authctxt = ctxt;
143 Authmethod *m = NULL;
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000144 char *user, *service, *method, *style = NULL;
Damien Millereba71ba2000-04-29 23:57:08 +1000145 int authenticated = 0;
Damien Millereba71ba2000-04-29 23:57:08 +1000146
Damien Miller874d77b2000-10-14 16:23:11 +1100147 if (authctxt == NULL)
148 fatal("input_userauth_request: no authctxt");
Damien Millereba71ba2000-04-29 23:57:08 +1000149
Damien Miller874d77b2000-10-14 16:23:11 +1100150 user = packet_get_string(NULL);
151 service = packet_get_string(NULL);
152 method = packet_get_string(NULL);
153 debug("userauth-request for user %s service %s method %s", user, service, method);
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000154 debug("attempt %d failures %d", authctxt->attempt, authctxt->failures);
Damien Miller874d77b2000-10-14 16:23:11 +1100155
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000156 if ((style = strchr(user, ':')) != NULL)
157 *style++ = 0;
158
Kevin Stevesef4eea92001-02-05 12:42:17 +0000159 if (authctxt->attempt++ == 0) {
Damien Miller3a5b0232002-03-13 13:19:42 +1100160 /* setup auth context */
Kevin Steves205cc1e2002-03-22 20:43:05 +0000161 authctxt->pw = PRIVSEP(getpwnamallow(user));
Darren Tuckerdbf7a742004-03-08 23:04:06 +1100162 authctxt->user = xstrdup(user);
Kevin Steves205cc1e2002-03-22 20:43:05 +0000163 if (authctxt->pw && strcmp(service, "ssh-connection")==0) {
Damien Miller874d77b2000-10-14 16:23:11 +1100164 authctxt->valid = 1;
165 debug2("input_userauth_request: setting up authctxt for %s", user);
Damien Miller874d77b2000-10-14 16:23:11 +1100166 } else {
Darren Tucker5cb30ad2004-08-12 22:40:24 +1000167 logit("input_userauth_request: invalid user %s", user);
Damien Miller856f0be2003-09-03 07:32:45 +1000168 authctxt->pw = fakepw();
Darren Tucker2e0cf0d2005-02-08 21:52:47 +1100169#ifdef SSH_AUDIT_EVENTS
170 PRIVSEP(audit_event(SSH_INVALID_USER));
Darren Tucker269a1ea2005-02-03 00:20:53 +1100171#endif
Damien Miller874d77b2000-10-14 16:23:11 +1100172 }
Darren Tuckerd3eff2b2005-09-24 12:43:51 +1000173#ifdef USE_PAM
174 if (options.use_pam)
175 PRIVSEP(start_pam(authctxt));
176#endif
Damien Miller30d1f842004-07-21 20:48:53 +1000177 setproctitle("%s%s", authctxt->valid ? user : "unknown",
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000178 use_privsep ? " [net]" : "");
Damien Miller874d77b2000-10-14 16:23:11 +1100179 authctxt->service = xstrdup(service);
Ben Lindstrom9d0c0662001-06-09 01:40:00 +0000180 authctxt->style = style ? xstrdup(style) : NULL;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000181 if (use_privsep)
182 mm_inform_authserv(service, style);
Ben Lindstrom9d0c0662001-06-09 01:40:00 +0000183 } else if (strcmp(user, authctxt->user) != 0 ||
184 strcmp(service, authctxt->service) != 0) {
185 packet_disconnect("Change of username or service not allowed: "
186 "(%s,%s) -> (%s,%s)",
187 authctxt->user, authctxt->service, user, service);
Damien Millereba71ba2000-04-29 23:57:08 +1000188 }
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000189 /* reset state */
Damien Milleree116252001-12-21 12:42:34 +1100190 auth2_challenge_stop(authctxt);
Darren Tucker0efd1552003-08-26 11:49:55 +1000191
192#ifdef GSSAPI
193 dispatch_set(SSH2_MSG_USERAUTH_GSSAPI_TOKEN, NULL);
194 dispatch_set(SSH2_MSG_USERAUTH_GSSAPI_EXCHANGE_COMPLETE, NULL);
195#endif
196
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000197 authctxt->postponed = 0;
Damien Millerb70b61f2000-09-16 16:25:12 +1100198
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000199 /* try to authenticate user */
Damien Miller874d77b2000-10-14 16:23:11 +1100200 m = authmethod_lookup(method);
201 if (m != NULL) {
202 debug2("input_userauth_request: try method %s", method);
203 authenticated = m->userauth(authctxt);
Damien Miller874d77b2000-10-14 16:23:11 +1100204 }
Damien Miller5d57e502001-03-30 10:48:31 +1000205 userauth_finish(authctxt, authenticated, method);
206
207 xfree(service);
208 xfree(user);
209 xfree(method);
210}
211
212void
213userauth_finish(Authctxt *authctxt, int authenticated, char *method)
214{
Ben Lindstromcd4349f2001-06-09 00:23:17 +0000215 char *methods;
216
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000217 if (!authctxt->valid && authenticated)
218 fatal("INTERNAL ERROR: authenticated invalid user %s",
219 authctxt->user);
Damien Millerb70b61f2000-09-16 16:25:12 +1100220
Damien Miller874d77b2000-10-14 16:23:11 +1100221 /* Special handling for root */
Damien Miller556f9312003-02-24 11:59:26 +1100222 if (authenticated && authctxt->pw->pw_uid == 0 &&
Darren Tucker269a1ea2005-02-03 00:20:53 +1100223 !auth_root_allowed(method)) {
Damien Millereba71ba2000-04-29 23:57:08 +1000224 authenticated = 0;
Darren Tucker2e0cf0d2005-02-08 21:52:47 +1100225#ifdef SSH_AUDIT_EVENTS
226 PRIVSEP(audit_event(SSH_LOGIN_ROOT_DENIED));
Darren Tucker269a1ea2005-02-03 00:20:53 +1100227#endif
228 }
Damien Millereba71ba2000-04-29 23:57:08 +1000229
Damien Miller1f499fd2003-08-25 13:08:49 +1000230#ifdef USE_PAM
Darren Tucker77fc29e2004-09-11 23:07:03 +1000231 if (options.use_pam && authenticated) {
232 if (!PRIVSEP(do_pam_account())) {
Darren Tucker77fc29e2004-09-11 23:07:03 +1000233 /* if PAM returned a message, send it to the user */
234 if (buffer_len(&loginmsg) > 0) {
235 buffer_append(&loginmsg, "\0", 1);
236 userauth_send_banner(buffer_ptr(&loginmsg));
Darren Tuckerc1386672004-12-03 14:33:47 +1100237 packet_write_wait();
Darren Tucker77fc29e2004-09-11 23:07:03 +1000238 }
Darren Tuckerc1386672004-12-03 14:33:47 +1100239 fatal("Access denied for user %s by PAM account "
Damien Millerb6f72f52005-07-17 17:26:43 +1000240 "configuration", authctxt->user);
Darren Tucker77fc29e2004-09-11 23:07:03 +1000241 }
242 }
Damien Miller1f499fd2003-08-25 13:08:49 +1000243#endif
244
Tim Rice81ed5182002-09-25 17:38:46 -0700245#ifdef _UNICOS
246 if (authenticated && cray_access_denied(authctxt->user)) {
247 authenticated = 0;
248 fatal("Access denied for user %s.",authctxt->user);
249 }
250#endif /* _UNICOS */
251
Damien Miller874d77b2000-10-14 16:23:11 +1100252 /* Log before sending the reply */
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000253 auth_log(authctxt, authenticated, method, " ssh2");
254
Ben Lindstromcd4349f2001-06-09 00:23:17 +0000255 if (authctxt->postponed)
256 return;
257
258 /* XXX todo: check if multiple auth methods are needed */
259 if (authenticated == 1) {
260 /* turn off userauth */
Damien Miller7d053392002-01-22 23:24:13 +1100261 dispatch_set(SSH2_MSG_USERAUTH_REQUEST, &dispatch_protocol_ignore);
Ben Lindstromcd4349f2001-06-09 00:23:17 +0000262 packet_start(SSH2_MSG_USERAUTH_SUCCESS);
263 packet_send();
264 packet_write_wait();
265 /* now we can break out */
266 authctxt->success = 1;
267 } else {
Darren Tucker269a1ea2005-02-03 00:20:53 +1100268 if (authctxt->failures++ > options.max_authtries) {
Darren Tucker2e0cf0d2005-02-08 21:52:47 +1100269#ifdef SSH_AUDIT_EVENTS
270 PRIVSEP(audit_event(SSH_LOGIN_EXCEED_MAXTRIES));
Darren Tucker269a1ea2005-02-03 00:20:53 +1100271#endif
Ben Lindstromcd4349f2001-06-09 00:23:17 +0000272 packet_disconnect(AUTH_FAIL_MSG, authctxt->user);
Darren Tucker269a1ea2005-02-03 00:20:53 +1100273 }
Ben Lindstromcd4349f2001-06-09 00:23:17 +0000274 methods = authmethods_get();
275 packet_start(SSH2_MSG_USERAUTH_FAILURE);
276 packet_put_cstring(methods);
277 packet_put_char(0); /* XXX partial success, unused */
278 packet_send();
279 packet_write_wait();
280 xfree(methods);
281 }
Damien Miller874d77b2000-10-14 16:23:11 +1100282}
283
Ben Lindstrom79073822001-07-04 03:42:30 +0000284static char *
Damien Miller874d77b2000-10-14 16:23:11 +1100285authmethods_get(void)
286{
Damien Miller0e3b8722002-01-22 23:26:38 +1100287 Buffer b;
Damien Miller874d77b2000-10-14 16:23:11 +1100288 char *list;
Ben Lindstrom511bb242002-06-06 20:52:37 +0000289 int i;
Damien Miller874d77b2000-10-14 16:23:11 +1100290
Damien Miller0e3b8722002-01-22 23:26:38 +1100291 buffer_init(&b);
Ben Lindstrom511bb242002-06-06 20:52:37 +0000292 for (i = 0; authmethods[i] != NULL; i++) {
293 if (strcmp(authmethods[i]->name, "none") == 0)
Damien Miller874d77b2000-10-14 16:23:11 +1100294 continue;
Ben Lindstrom511bb242002-06-06 20:52:37 +0000295 if (authmethods[i]->enabled != NULL &&
296 *(authmethods[i]->enabled) != 0) {
Damien Miller0e3b8722002-01-22 23:26:38 +1100297 if (buffer_len(&b) > 0)
298 buffer_append(&b, ",", 1);
Ben Lindstrom511bb242002-06-06 20:52:37 +0000299 buffer_append(&b, authmethods[i]->name,
300 strlen(authmethods[i]->name));
Damien Millereba71ba2000-04-29 23:57:08 +1000301 }
302 }
Damien Miller0e3b8722002-01-22 23:26:38 +1100303 buffer_append(&b, "\0", 1);
304 list = xstrdup(buffer_ptr(&b));
305 buffer_free(&b);
Damien Miller874d77b2000-10-14 16:23:11 +1100306 return list;
307}
308
Ben Lindstrombba81212001-06-25 05:01:22 +0000309static Authmethod *
Damien Miller874d77b2000-10-14 16:23:11 +1100310authmethod_lookup(const char *name)
311{
Ben Lindstrom511bb242002-06-06 20:52:37 +0000312 int i;
313
Damien Miller874d77b2000-10-14 16:23:11 +1100314 if (name != NULL)
Ben Lindstrom511bb242002-06-06 20:52:37 +0000315 for (i = 0; authmethods[i] != NULL; i++)
316 if (authmethods[i]->enabled != NULL &&
317 *(authmethods[i]->enabled) != 0 &&
318 strcmp(name, authmethods[i]->name) == 0)
319 return authmethods[i];
320 debug2("Unrecognized authentication method name: %s",
321 name ? name : "NULL");
Damien Miller874d77b2000-10-14 16:23:11 +1100322 return NULL;
Damien Millereba71ba2000-04-29 23:57:08 +1000323}