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