]> andersk Git - openssh.git/blame - auth2.c
- markus@cvs.openbsd.org 2003/09/23 20:17:11
[openssh.git] / auth2.c
CommitLineData
a306f2dd 1/*
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.
a306f2dd 12 *
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 */
bcbf86ec 24
a306f2dd 25#include "includes.h"
2362db19 26RCSID("$OpenBSD: auth2.c,v 1.103 2003/09/23 20:17:11 markus Exp $");
a306f2dd 27
42f11eb2 28#include "ssh2.h"
a306f2dd 29#include "xmalloc.h"
a306f2dd 30#include "packet.h"
42f11eb2 31#include "log.h"
a306f2dd 32#include "servconf.h"
33#include "compat.h"
a306f2dd 34#include "auth.h"
a306f2dd 35#include "dispatch.h"
42f11eb2 36#include "pathnames.h"
1853d1ef 37#include "monitor_wrap.h"
a306f2dd 38
7364bd04 39#ifdef GSSAPI
40#include "ssh-gss.h"
41#endif
42
a306f2dd 43/* import */
44extern ServerOptions options;
1e3b8b07 45extern u_char *session_id2;
a27002e5 46extern u_int session_id2_len;
a306f2dd 47
01c24737 48/* methods */
49
50extern Authmethod method_none;
51extern Authmethod method_pubkey;
52extern Authmethod method_passwd;
53extern Authmethod method_kbdint;
54extern Authmethod method_hostbased;
7364bd04 55#ifdef GSSAPI
56extern Authmethod method_gssapi;
57#endif
01c24737 58
59Authmethod *authmethods[] = {
60 &method_none,
61 &method_pubkey,
7364bd04 62#ifdef GSSAPI
63 &method_gssapi,
64#endif
01c24737 65 &method_passwd,
66 &method_kbdint,
67 &method_hostbased,
68 NULL
94ec8c6b 69};
70
a306f2dd 71/* protocol */
72
7819b5c3 73static void input_service_request(int, u_int32_t, void *);
74static void input_userauth_request(int, u_int32_t, void *);
a306f2dd 75
a306f2dd 76/* helper */
396c147e 77static Authmethod *authmethod_lookup(const char *);
ffb215be 78static char *authmethods_get(void);
1853d1ef 79int user_key_allowed(struct passwd *, Key *);
80int hostbased_key_allowed(struct passwd *, const char *, char *, Key *);
a306f2dd 81
a306f2dd 82/*
94ec8c6b 83 * loop until authctxt->success == TRUE
a306f2dd 84 */
85
2362db19 86void
87do_authentication2(Authctxt *authctxt)
a306f2dd 88{
aa8003d6 89 /* challenge-response is implemented via keyboard interactive */
5ba55ada 90 if (options.challenge_response_authentication)
d464095c 91 options.kbd_interactive_authentication = 1;
92
6367063f 93 dispatch_init(&dispatch_protocol_error);
a306f2dd 94 dispatch_set(SSH2_MSG_SERVICE_REQUEST, &input_service_request);
94ec8c6b 95 dispatch_run(DISPATCH_BLOCK, &authctxt->success, authctxt);
a306f2dd 96}
97
396c147e 98static void
7819b5c3 99input_service_request(int type, u_int32_t seq, void *ctxt)
a306f2dd 100{
94ec8c6b 101 Authctxt *authctxt = ctxt;
1e3b8b07 102 u_int len;
7fdc56c5 103 int acceptit = 0;
a306f2dd 104 char *service = packet_get_string(&len);
95500969 105 packet_check_eom();
a306f2dd 106
94ec8c6b 107 if (authctxt == NULL)
108 fatal("input_service_request: no authctxt");
109
a306f2dd 110 if (strcmp(service, "ssh-userauth") == 0) {
94ec8c6b 111 if (!authctxt->success) {
7fdc56c5 112 acceptit = 1;
a306f2dd 113 /* 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
7fdc56c5 119 if (acceptit) {
a306f2dd 120 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
396c147e 131static void
7819b5c3 132input_userauth_request(int type, u_int32_t seq, void *ctxt)
a306f2dd 133{
94ec8c6b 134 Authctxt *authctxt = ctxt;
135 Authmethod *m = NULL;
59c97189 136 char *user, *service, *method, *style = NULL;
a306f2dd 137 int authenticated = 0;
a306f2dd 138
94ec8c6b 139 if (authctxt == NULL)
140 fatal("input_userauth_request: no authctxt");
a306f2dd 141
94ec8c6b 142 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);
8abcdba4 146 debug("attempt %d failures %d", authctxt->attempt, authctxt->failures);
94ec8c6b 147
59c97189 148 if ((style = strchr(user, ':')) != NULL)
149 *style++ = 0;
150
2b87da3b 151 if (authctxt->attempt++ == 0) {
63284fbb 152 /* setup auth context */
f7ed12f1 153 authctxt->pw = PRIVSEP(getpwnamallow(user));
154 if (authctxt->pw && strcmp(service, "ssh-connection")==0) {
94ec8c6b 155 authctxt->valid = 1;
156 debug2("input_userauth_request: setting up authctxt for %s", user);
157#ifdef USE_PAM
7fceb20d 158 if (options.use_pam)
159 PRIVSEP(start_pam(authctxt->pw->pw_name));
94ec8c6b 160#endif
161 } else {
bbe88b6d 162 logit("input_userauth_request: illegal user %s", user);
96d0bf74 163 authctxt->pw = fakepw();
04fc7a67 164#ifdef USE_PAM
7fceb20d 165 if (options.use_pam)
166 PRIVSEP(start_pam(user));
04fc7a67 167#endif
94ec8c6b 168 }
5f1f36b5 169 setproctitle("%s%s", authctxt->pw ? user : "unknown",
1853d1ef 170 use_privsep ? " [net]" : "");
94ec8c6b 171 authctxt->user = xstrdup(user);
172 authctxt->service = xstrdup(service);
2a6a054e 173 authctxt->style = style ? xstrdup(style) : NULL;
1853d1ef 174 if (use_privsep)
175 mm_inform_authserv(service, style);
2a6a054e 176 } else if (strcmp(user, authctxt->user) != 0 ||
177 strcmp(service, authctxt->service) != 0) {
178 packet_disconnect("Change of username or service not allowed: "
179 "(%s,%s) -> (%s,%s)",
180 authctxt->user, authctxt->service, user, service);
a306f2dd 181 }
59c97189 182 /* reset state */
2f293d43 183 auth2_challenge_stop(authctxt);
7364bd04 184
185#ifdef GSSAPI
186 dispatch_set(SSH2_MSG_USERAUTH_GSSAPI_TOKEN, NULL);
187 dispatch_set(SSH2_MSG_USERAUTH_GSSAPI_EXCHANGE_COMPLETE, NULL);
188#endif
189
59c97189 190 authctxt->postponed = 0;
9cd45ea4 191
59c97189 192 /* try to authenticate user */
94ec8c6b 193 m = authmethod_lookup(method);
194 if (m != NULL) {
195 debug2("input_userauth_request: try method %s", method);
196 authenticated = m->userauth(authctxt);
9cd45ea4 197 }
d9cd3575 198 userauth_finish(authctxt, authenticated, method);
199
200 xfree(service);
201 xfree(user);
202 xfree(method);
203}
204
205void
206userauth_finish(Authctxt *authctxt, int authenticated, char *method)
207{
4e81159c 208 char *methods;
209
59c97189 210 if (!authctxt->valid && authenticated)
211 fatal("INTERNAL ERROR: authenticated invalid user %s",
212 authctxt->user);
9cd45ea4 213
94ec8c6b 214 /* Special handling for root */
5d47f1d4 215 if (authenticated && authctxt->pw->pw_uid == 0 &&
15853e93 216 !auth_root_allowed(method))
a306f2dd 217 authenticated = 0;
a306f2dd 218
5b9e2464 219#ifdef USE_PAM
220 if (options.use_pam && authenticated && !PRIVSEP(do_pam_account()))
221 authenticated = 0;
222#endif
223
ef51930f 224#ifdef _UNICOS
225 if (authenticated && cray_access_denied(authctxt->user)) {
226 authenticated = 0;
227 fatal("Access denied for user %s.",authctxt->user);
228 }
229#endif /* _UNICOS */
230
94ec8c6b 231 /* Log before sending the reply */
59c97189 232 auth_log(authctxt, authenticated, method, " ssh2");
233
4e81159c 234 if (authctxt->postponed)
235 return;
236
237 /* XXX todo: check if multiple auth methods are needed */
238 if (authenticated == 1) {
239 /* turn off userauth */
6367063f 240 dispatch_set(SSH2_MSG_USERAUTH_REQUEST, &dispatch_protocol_ignore);
4e81159c 241 packet_start(SSH2_MSG_USERAUTH_SUCCESS);
242 packet_send();
243 packet_write_wait();
244 /* now we can break out */
245 authctxt->success = 1;
246 } else {
d7cf277b 247 if (authctxt->failures++ > AUTH_FAIL_MAX)
4e81159c 248 packet_disconnect(AUTH_FAIL_MSG, authctxt->user);
249 methods = authmethods_get();
250 packet_start(SSH2_MSG_USERAUTH_FAILURE);
251 packet_put_cstring(methods);
252 packet_put_char(0); /* XXX partial success, unused */
253 packet_send();
254 packet_write_wait();
255 xfree(methods);
256 }
94ec8c6b 257}
258
94ec8c6b 259#define DELIM ","
260
ffb215be 261static char *
94ec8c6b 262authmethods_get(void)
a306f2dd 263{
3469eac4 264 Buffer b;
94ec8c6b 265 char *list;
01c24737 266 int i;
94ec8c6b 267
3469eac4 268 buffer_init(&b);
01c24737 269 for (i = 0; authmethods[i] != NULL; i++) {
270 if (strcmp(authmethods[i]->name, "none") == 0)
94ec8c6b 271 continue;
01c24737 272 if (authmethods[i]->enabled != NULL &&
273 *(authmethods[i]->enabled) != 0) {
3469eac4 274 if (buffer_len(&b) > 0)
275 buffer_append(&b, ",", 1);
01c24737 276 buffer_append(&b, authmethods[i]->name,
277 strlen(authmethods[i]->name));
a306f2dd 278 }
279 }
3469eac4 280 buffer_append(&b, "\0", 1);
281 list = xstrdup(buffer_ptr(&b));
282 buffer_free(&b);
94ec8c6b 283 return list;
284}
285
396c147e 286static Authmethod *
94ec8c6b 287authmethod_lookup(const char *name)
288{
01c24737 289 int i;
290
94ec8c6b 291 if (name != NULL)
01c24737 292 for (i = 0; authmethods[i] != NULL; i++)
293 if (authmethods[i]->enabled != NULL &&
294 *(authmethods[i]->enabled) != 0 &&
295 strcmp(name, authmethods[i]->name) == 0)
296 return authmethods[i];
297 debug2("Unrecognized authentication method name: %s",
298 name ? name : "NULL");
94ec8c6b 299 return NULL;
a306f2dd 300}
This page took 0.182767 seconds and 5 git commands to generate.