blob: 2265d311ecf5e51ba672c81ba423028a26459dbd [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 Tucker5cb30ad2004-08-12 22:40:24 +100026RCSID("$OpenBSD: auth2.c,v 1.107 2004/07/28 09:40:29 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"
Darren Tucker77fc29e2004-09-11 23:07:03 +100038#include "buffer.h"
Damien Millereba71ba2000-04-29 23:57:08 +100039
Darren Tucker0efd1552003-08-26 11:49:55 +100040#ifdef GSSAPI
41#include "ssh-gss.h"
42#endif
43
Damien Millereba71ba2000-04-29 23:57:08 +100044/* import */
45extern ServerOptions options;
Ben Lindstrom46c16222000-12-22 01:43:59 +000046extern u_char *session_id2;
Darren Tucker502d3842003-06-28 12:38:01 +100047extern u_int session_id2_len;
Darren Tucker77fc29e2004-09-11 23:07:03 +100048extern Buffer loginmsg;
Damien Millereba71ba2000-04-29 23:57:08 +100049
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;
Darren Tucker0efd1552003-08-26 11:49:55 +100057#ifdef GSSAPI
58extern Authmethod method_gssapi;
59#endif
Ben Lindstrom511bb242002-06-06 20:52:37 +000060
61Authmethod *authmethods[] = {
62 &method_none,
63 &method_pubkey,
Darren Tucker0efd1552003-08-26 11:49:55 +100064#ifdef GSSAPI
65 &method_gssapi,
66#endif
Ben Lindstrom511bb242002-06-06 20:52:37 +000067 &method_passwd,
68 &method_kbdint,
69 &method_hostbased,
70 NULL
Damien Miller874d77b2000-10-14 16:23:11 +110071};
72
Damien Millereba71ba2000-04-29 23:57:08 +100073/* protocol */
74
Damien Miller630d6f42002-01-22 23:17:30 +110075static void input_service_request(int, u_int32_t, void *);
76static void input_userauth_request(int, u_int32_t, void *);
Damien Millereba71ba2000-04-29 23:57:08 +100077
Damien Millereba71ba2000-04-29 23:57:08 +100078/* helper */
Ben Lindstrombba81212001-06-25 05:01:22 +000079static Authmethod *authmethod_lookup(const char *);
Ben Lindstrom79073822001-07-04 03:42:30 +000080static char *authmethods_get(void);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000081int user_key_allowed(struct passwd *, Key *);
Damien Millereba71ba2000-04-29 23:57:08 +100082
Damien Millereba71ba2000-04-29 23:57:08 +100083/*
Damien Miller874d77b2000-10-14 16:23:11 +110084 * loop until authctxt->success == TRUE
Damien Millereba71ba2000-04-29 23:57:08 +100085 */
86
Darren Tucker3e33cec2003-10-02 16:12:36 +100087void
88do_authentication2(Authctxt *authctxt)
Damien Millereba71ba2000-04-29 23:57:08 +100089{
Ben Lindstrombdfb4df2001-10-03 17:12:43 +000090 /* challenge-response is implemented via keyboard interactive */
Ben Lindstrom551ea372001-06-05 18:56:16 +000091 if (options.challenge_response_authentication)
Ben Lindstrom95fb2dd2001-01-23 03:12:10 +000092 options.kbd_interactive_authentication = 1;
93
Damien Miller7d053392002-01-22 23:24:13 +110094 dispatch_init(&dispatch_protocol_error);
Damien Millereba71ba2000-04-29 23:57:08 +100095 dispatch_set(SSH2_MSG_SERVICE_REQUEST, &input_service_request);
Damien Miller874d77b2000-10-14 16:23:11 +110096 dispatch_run(DISPATCH_BLOCK, &authctxt->success, authctxt);
Damien Millereba71ba2000-04-29 23:57:08 +100097}
98
Ben Lindstrombba81212001-06-25 05:01:22 +000099static void
Damien Miller630d6f42002-01-22 23:17:30 +1100100input_service_request(int type, u_int32_t seq, void *ctxt)
Damien Millereba71ba2000-04-29 23:57:08 +1000101{
Damien Miller874d77b2000-10-14 16:23:11 +1100102 Authctxt *authctxt = ctxt;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000103 u_int len;
Ben Lindstrom5a9d0ea2002-07-04 00:12:53 +0000104 int acceptit = 0;
Damien Millereba71ba2000-04-29 23:57:08 +1000105 char *service = packet_get_string(&len);
Damien Miller48b03fc2002-01-22 23:11:40 +1100106 packet_check_eom();
Damien Millereba71ba2000-04-29 23:57:08 +1000107
Damien Miller874d77b2000-10-14 16:23:11 +1100108 if (authctxt == NULL)
109 fatal("input_service_request: no authctxt");
110
Damien Millereba71ba2000-04-29 23:57:08 +1000111 if (strcmp(service, "ssh-userauth") == 0) {
Damien Miller874d77b2000-10-14 16:23:11 +1100112 if (!authctxt->success) {
Ben Lindstrom5a9d0ea2002-07-04 00:12:53 +0000113 acceptit = 1;
Damien Millereba71ba2000-04-29 23:57:08 +1000114 /* now we can handle user-auth requests */
115 dispatch_set(SSH2_MSG_USERAUTH_REQUEST, &input_userauth_request);
116 }
117 }
118 /* XXX all other service requests are denied */
119
Ben Lindstrom5a9d0ea2002-07-04 00:12:53 +0000120 if (acceptit) {
Damien Millereba71ba2000-04-29 23:57:08 +1000121 packet_start(SSH2_MSG_SERVICE_ACCEPT);
122 packet_put_cstring(service);
123 packet_send();
124 packet_write_wait();
125 } else {
126 debug("bad service request %s", service);
127 packet_disconnect("bad service request %s", service);
128 }
129 xfree(service);
130}
131
Ben Lindstrombba81212001-06-25 05:01:22 +0000132static void
Damien Miller630d6f42002-01-22 23:17:30 +1100133input_userauth_request(int type, u_int32_t seq, void *ctxt)
Damien Millereba71ba2000-04-29 23:57:08 +1000134{
Damien Miller874d77b2000-10-14 16:23:11 +1100135 Authctxt *authctxt = ctxt;
136 Authmethod *m = NULL;
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000137 char *user, *service, *method, *style = NULL;
Damien Millereba71ba2000-04-29 23:57:08 +1000138 int authenticated = 0;
Damien Millereba71ba2000-04-29 23:57:08 +1000139
Damien Miller874d77b2000-10-14 16:23:11 +1100140 if (authctxt == NULL)
141 fatal("input_userauth_request: no authctxt");
Damien Millereba71ba2000-04-29 23:57:08 +1000142
Damien Miller874d77b2000-10-14 16:23:11 +1100143 user = packet_get_string(NULL);
144 service = packet_get_string(NULL);
145 method = packet_get_string(NULL);
146 debug("userauth-request for user %s service %s method %s", user, service, method);
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000147 debug("attempt %d failures %d", authctxt->attempt, authctxt->failures);
Damien Miller874d77b2000-10-14 16:23:11 +1100148
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000149 if ((style = strchr(user, ':')) != NULL)
150 *style++ = 0;
151
Kevin Stevesef4eea92001-02-05 12:42:17 +0000152 if (authctxt->attempt++ == 0) {
Damien Miller3a5b0232002-03-13 13:19:42 +1100153 /* setup auth context */
Kevin Steves205cc1e2002-03-22 20:43:05 +0000154 authctxt->pw = PRIVSEP(getpwnamallow(user));
Darren Tuckerdbf7a742004-03-08 23:04:06 +1100155 authctxt->user = xstrdup(user);
Kevin Steves205cc1e2002-03-22 20:43:05 +0000156 if (authctxt->pw && strcmp(service, "ssh-connection")==0) {
Damien Miller874d77b2000-10-14 16:23:11 +1100157 authctxt->valid = 1;
158 debug2("input_userauth_request: setting up authctxt for %s", user);
159#ifdef USE_PAM
Damien Miller4e448a32003-05-14 15:11:48 +1000160 if (options.use_pam)
Darren Tuckerdbf7a742004-03-08 23:04:06 +1100161 PRIVSEP(start_pam(authctxt));
Damien Miller874d77b2000-10-14 16:23:11 +1100162#endif
163 } else {
Darren Tucker5cb30ad2004-08-12 22:40:24 +1000164 logit("input_userauth_request: invalid user %s", user);
Damien Miller856f0be2003-09-03 07:32:45 +1000165 authctxt->pw = fakepw();
Damien Miller22e22bf2001-01-19 15:46:38 +1100166#ifdef USE_PAM
Damien Miller4e448a32003-05-14 15:11:48 +1000167 if (options.use_pam)
Darren Tuckerdbf7a742004-03-08 23:04:06 +1100168 PRIVSEP(start_pam(authctxt));
Damien Miller22e22bf2001-01-19 15:46:38 +1100169#endif
Darren Tucker2e0cf0d2005-02-08 21:52:47 +1100170#ifdef SSH_AUDIT_EVENTS
171 PRIVSEP(audit_event(SSH_INVALID_USER));
Darren Tucker269a1ea2005-02-03 00:20:53 +1100172#endif
Damien Miller874d77b2000-10-14 16:23:11 +1100173 }
Damien Miller30d1f842004-07-21 20:48:53 +1000174 setproctitle("%s%s", authctxt->valid ? user : "unknown",
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000175 use_privsep ? " [net]" : "");
Damien Miller874d77b2000-10-14 16:23:11 +1100176 authctxt->service = xstrdup(service);
Ben Lindstrom9d0c0662001-06-09 01:40:00 +0000177 authctxt->style = style ? xstrdup(style) : NULL;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000178 if (use_privsep)
179 mm_inform_authserv(service, style);
Ben Lindstrom9d0c0662001-06-09 01:40:00 +0000180 } else if (strcmp(user, authctxt->user) != 0 ||
181 strcmp(service, authctxt->service) != 0) {
182 packet_disconnect("Change of username or service not allowed: "
183 "(%s,%s) -> (%s,%s)",
184 authctxt->user, authctxt->service, user, service);
Damien Millereba71ba2000-04-29 23:57:08 +1000185 }
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000186 /* reset state */
Damien Milleree116252001-12-21 12:42:34 +1100187 auth2_challenge_stop(authctxt);
Darren Tucker0efd1552003-08-26 11:49:55 +1000188
189#ifdef GSSAPI
190 dispatch_set(SSH2_MSG_USERAUTH_GSSAPI_TOKEN, NULL);
191 dispatch_set(SSH2_MSG_USERAUTH_GSSAPI_EXCHANGE_COMPLETE, NULL);
192#endif
193
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000194 authctxt->postponed = 0;
Damien Millerb70b61f2000-09-16 16:25:12 +1100195
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000196 /* try to authenticate user */
Damien Miller874d77b2000-10-14 16:23:11 +1100197 m = authmethod_lookup(method);
198 if (m != NULL) {
199 debug2("input_userauth_request: try method %s", method);
200 authenticated = m->userauth(authctxt);
Damien Miller874d77b2000-10-14 16:23:11 +1100201 }
Damien Miller5d57e502001-03-30 10:48:31 +1000202 userauth_finish(authctxt, authenticated, method);
203
204 xfree(service);
205 xfree(user);
206 xfree(method);
207}
208
209void
210userauth_finish(Authctxt *authctxt, int authenticated, char *method)
211{
Ben Lindstromcd4349f2001-06-09 00:23:17 +0000212 char *methods;
213
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000214 if (!authctxt->valid && authenticated)
215 fatal("INTERNAL ERROR: authenticated invalid user %s",
216 authctxt->user);
Damien Millerb70b61f2000-09-16 16:25:12 +1100217
Damien Miller874d77b2000-10-14 16:23:11 +1100218 /* Special handling for root */
Damien Miller556f9312003-02-24 11:59:26 +1100219 if (authenticated && authctxt->pw->pw_uid == 0 &&
Darren Tucker269a1ea2005-02-03 00:20:53 +1100220 !auth_root_allowed(method)) {
Damien Millereba71ba2000-04-29 23:57:08 +1000221 authenticated = 0;
Darren Tucker2e0cf0d2005-02-08 21:52:47 +1100222#ifdef SSH_AUDIT_EVENTS
223 PRIVSEP(audit_event(SSH_LOGIN_ROOT_DENIED));
Darren Tucker269a1ea2005-02-03 00:20:53 +1100224#endif
225 }
Damien Millereba71ba2000-04-29 23:57:08 +1000226
Damien Miller1f499fd2003-08-25 13:08:49 +1000227#ifdef USE_PAM
Darren Tucker77fc29e2004-09-11 23:07:03 +1000228 if (options.use_pam && authenticated) {
229 if (!PRIVSEP(do_pam_account())) {
Darren Tucker77fc29e2004-09-11 23:07:03 +1000230 /* if PAM returned a message, send it to the user */
231 if (buffer_len(&loginmsg) > 0) {
232 buffer_append(&loginmsg, "\0", 1);
233 userauth_send_banner(buffer_ptr(&loginmsg));
Darren Tuckerc1386672004-12-03 14:33:47 +1100234 packet_write_wait();
Darren Tucker77fc29e2004-09-11 23:07:03 +1000235 }
Darren Tuckerc1386672004-12-03 14:33:47 +1100236 fatal("Access denied for user %s by PAM account "
237 "configuration", authctxt->user);
Darren Tucker77fc29e2004-09-11 23:07:03 +1000238 }
239 }
Damien Miller1f499fd2003-08-25 13:08:49 +1000240#endif
241
Tim Rice81ed5182002-09-25 17:38:46 -0700242#ifdef _UNICOS
243 if (authenticated && cray_access_denied(authctxt->user)) {
244 authenticated = 0;
245 fatal("Access denied for user %s.",authctxt->user);
246 }
247#endif /* _UNICOS */
248
Damien Miller874d77b2000-10-14 16:23:11 +1100249 /* Log before sending the reply */
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000250 auth_log(authctxt, authenticated, method, " ssh2");
251
Ben Lindstromcd4349f2001-06-09 00:23:17 +0000252 if (authctxt->postponed)
253 return;
254
255 /* XXX todo: check if multiple auth methods are needed */
256 if (authenticated == 1) {
257 /* turn off userauth */
Damien Miller7d053392002-01-22 23:24:13 +1100258 dispatch_set(SSH2_MSG_USERAUTH_REQUEST, &dispatch_protocol_ignore);
Ben Lindstromcd4349f2001-06-09 00:23:17 +0000259 packet_start(SSH2_MSG_USERAUTH_SUCCESS);
260 packet_send();
261 packet_write_wait();
262 /* now we can break out */
263 authctxt->success = 1;
264 } else {
Darren Tucker269a1ea2005-02-03 00:20:53 +1100265 if (authctxt->failures++ > options.max_authtries) {
Darren Tucker2e0cf0d2005-02-08 21:52:47 +1100266#ifdef SSH_AUDIT_EVENTS
267 PRIVSEP(audit_event(SSH_LOGIN_EXCEED_MAXTRIES));
Darren Tucker269a1ea2005-02-03 00:20:53 +1100268#endif
Ben Lindstromcd4349f2001-06-09 00:23:17 +0000269 packet_disconnect(AUTH_FAIL_MSG, authctxt->user);
Darren Tucker269a1ea2005-02-03 00:20:53 +1100270 }
Ben Lindstromcd4349f2001-06-09 00:23:17 +0000271 methods = authmethods_get();
272 packet_start(SSH2_MSG_USERAUTH_FAILURE);
273 packet_put_cstring(methods);
274 packet_put_char(0); /* XXX partial success, unused */
275 packet_send();
276 packet_write_wait();
277 xfree(methods);
278 }
Damien Miller874d77b2000-10-14 16:23:11 +1100279}
280
Damien Miller874d77b2000-10-14 16:23:11 +1100281#define DELIM ","
Damien Millereba71ba2000-04-29 23:57:08 +1000282
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}