]> andersk Git - openssh.git/blame - auth2.c
- (djm) OpenBSD CVS Sync
[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"
af4bd935 26RCSID("$OpenBSD: auth2.c,v 1.105 2004/05/23 23:59:53 dtucker 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 *);
a306f2dd 80
a306f2dd 81/*
94ec8c6b 82 * loop until authctxt->success == TRUE
a306f2dd 83 */
84
2362db19 85void
86do_authentication2(Authctxt *authctxt)
a306f2dd 87{
aa8003d6 88 /* challenge-response is implemented via keyboard interactive */
5ba55ada 89 if (options.challenge_response_authentication)
d464095c 90 options.kbd_interactive_authentication = 1;
91
6367063f 92 dispatch_init(&dispatch_protocol_error);
a306f2dd 93 dispatch_set(SSH2_MSG_SERVICE_REQUEST, &input_service_request);
94ec8c6b 94 dispatch_run(DISPATCH_BLOCK, &authctxt->success, authctxt);
a306f2dd 95}
96
396c147e 97static void
7819b5c3 98input_service_request(int type, u_int32_t seq, void *ctxt)
a306f2dd 99{
94ec8c6b 100 Authctxt *authctxt = ctxt;
1e3b8b07 101 u_int len;
7fdc56c5 102 int acceptit = 0;
a306f2dd 103 char *service = packet_get_string(&len);
95500969 104 packet_check_eom();
a306f2dd 105
94ec8c6b 106 if (authctxt == NULL)
107 fatal("input_service_request: no authctxt");
108
a306f2dd 109 if (strcmp(service, "ssh-userauth") == 0) {
94ec8c6b 110 if (!authctxt->success) {
7fdc56c5 111 acceptit = 1;
a306f2dd 112 /* now we can handle user-auth requests */
113 dispatch_set(SSH2_MSG_USERAUTH_REQUEST, &input_userauth_request);
114 }
115 }
116 /* XXX all other service requests are denied */
117
7fdc56c5 118 if (acceptit) {
a306f2dd 119 packet_start(SSH2_MSG_SERVICE_ACCEPT);
120 packet_put_cstring(service);
121 packet_send();
122 packet_write_wait();
123 } else {
124 debug("bad service request %s", service);
125 packet_disconnect("bad service request %s", service);
126 }
127 xfree(service);
128}
129
396c147e 130static void
7819b5c3 131input_userauth_request(int type, u_int32_t seq, void *ctxt)
a306f2dd 132{
94ec8c6b 133 Authctxt *authctxt = ctxt;
134 Authmethod *m = NULL;
59c97189 135 char *user, *service, *method, *style = NULL;
a306f2dd 136 int authenticated = 0;
a306f2dd 137
94ec8c6b 138 if (authctxt == NULL)
139 fatal("input_userauth_request: no authctxt");
a306f2dd 140
94ec8c6b 141 user = packet_get_string(NULL);
142 service = packet_get_string(NULL);
143 method = packet_get_string(NULL);
144 debug("userauth-request for user %s service %s method %s", user, service, method);
8abcdba4 145 debug("attempt %d failures %d", authctxt->attempt, authctxt->failures);
94ec8c6b 146
59c97189 147 if ((style = strchr(user, ':')) != NULL)
148 *style++ = 0;
149
2b87da3b 150 if (authctxt->attempt++ == 0) {
63284fbb 151 /* setup auth context */
f7ed12f1 152 authctxt->pw = PRIVSEP(getpwnamallow(user));
529d73ab 153 authctxt->user = xstrdup(user);
f7ed12f1 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)
529d73ab 159 PRIVSEP(start_pam(authctxt));
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)
529d73ab 166 PRIVSEP(start_pam(authctxt));
04fc7a67 167#endif
94ec8c6b 168 }
5f1f36b5 169 setproctitle("%s%s", authctxt->pw ? user : "unknown",
1853d1ef 170 use_privsep ? " [net]" : "");
94ec8c6b 171 authctxt->service = xstrdup(service);
2a6a054e 172 authctxt->style = style ? xstrdup(style) : NULL;
1853d1ef 173 if (use_privsep)
174 mm_inform_authserv(service, style);
2a6a054e 175 } 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);
a306f2dd 180 }
59c97189 181 /* reset state */
2f293d43 182 auth2_challenge_stop(authctxt);
7364bd04 183
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
59c97189 189 authctxt->postponed = 0;
9cd45ea4 190
59c97189 191 /* try to authenticate user */
94ec8c6b 192 m = authmethod_lookup(method);
193 if (m != NULL) {
194 debug2("input_userauth_request: try method %s", method);
195 authenticated = m->userauth(authctxt);
9cd45ea4 196 }
d9cd3575 197 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{
4e81159c 207 char *methods;
208
59c97189 209 if (!authctxt->valid && authenticated)
210 fatal("INTERNAL ERROR: authenticated invalid user %s",
211 authctxt->user);
9cd45ea4 212
94ec8c6b 213 /* Special handling for root */
5d47f1d4 214 if (authenticated && authctxt->pw->pw_uid == 0 &&
15853e93 215 !auth_root_allowed(method))
a306f2dd 216 authenticated = 0;
a306f2dd 217
5b9e2464 218#ifdef USE_PAM
219 if (options.use_pam && authenticated && !PRIVSEP(do_pam_account()))
220 authenticated = 0;
221#endif
222
ef51930f 223#ifdef _UNICOS
224 if (authenticated && cray_access_denied(authctxt->user)) {
225 authenticated = 0;
226 fatal("Access denied for user %s.",authctxt->user);
227 }
228#endif /* _UNICOS */
229
94ec8c6b 230 /* Log before sending the reply */
59c97189 231 auth_log(authctxt, authenticated, method, " ssh2");
232
4e81159c 233 if (authctxt->postponed)
234 return;
235
236 /* XXX todo: check if multiple auth methods are needed */
237 if (authenticated == 1) {
238 /* turn off userauth */
6367063f 239 dispatch_set(SSH2_MSG_USERAUTH_REQUEST, &dispatch_protocol_ignore);
4e81159c 240 packet_start(SSH2_MSG_USERAUTH_SUCCESS);
241 packet_send();
242 packet_write_wait();
243 /* now we can break out */
244 authctxt->success = 1;
245 } else {
af4bd935 246 if (authctxt->failures++ > options.max_authtries)
4e81159c 247 packet_disconnect(AUTH_FAIL_MSG, authctxt->user);
248 methods = authmethods_get();
249 packet_start(SSH2_MSG_USERAUTH_FAILURE);
250 packet_put_cstring(methods);
251 packet_put_char(0); /* XXX partial success, unused */
252 packet_send();
253 packet_write_wait();
254 xfree(methods);
255 }
94ec8c6b 256}
257
94ec8c6b 258#define DELIM ","
259
ffb215be 260static char *
94ec8c6b 261authmethods_get(void)
a306f2dd 262{
3469eac4 263 Buffer b;
94ec8c6b 264 char *list;
01c24737 265 int i;
94ec8c6b 266
3469eac4 267 buffer_init(&b);
01c24737 268 for (i = 0; authmethods[i] != NULL; i++) {
269 if (strcmp(authmethods[i]->name, "none") == 0)
94ec8c6b 270 continue;
01c24737 271 if (authmethods[i]->enabled != NULL &&
272 *(authmethods[i]->enabled) != 0) {
3469eac4 273 if (buffer_len(&b) > 0)
274 buffer_append(&b, ",", 1);
01c24737 275 buffer_append(&b, authmethods[i]->name,
276 strlen(authmethods[i]->name));
a306f2dd 277 }
278 }
3469eac4 279 buffer_append(&b, "\0", 1);
280 list = xstrdup(buffer_ptr(&b));
281 buffer_free(&b);
94ec8c6b 282 return list;
283}
284
396c147e 285static Authmethod *
94ec8c6b 286authmethod_lookup(const char *name)
287{
01c24737 288 int i;
289
94ec8c6b 290 if (name != NULL)
01c24737 291 for (i = 0; authmethods[i] != NULL; i++)
292 if (authmethods[i]->enabled != NULL &&
293 *(authmethods[i]->enabled) != 0 &&
294 strcmp(name, authmethods[i]->name) == 0)
295 return authmethods[i];
296 debug2("Unrecognized authentication method name: %s",
297 name ? name : "NULL");
94ec8c6b 298 return NULL;
a306f2dd 299}
This page took 0.780999 seconds and 5 git commands to generate.