]> andersk Git - openssh.git/blame - auth2.c
- djm@cvs.openbsd.org 2005/07/17 07:17:55
[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));
c00e4d75 169#endif
6039eeef 170#ifdef SSH_AUDIT_EVENTS
171 PRIVSEP(audit_event(SSH_INVALID_USER));
04fc7a67 172#endif
94ec8c6b 173 }
bd5c0694 174 setproctitle("%s%s", authctxt->valid ? user : "unknown",
1853d1ef 175 use_privsep ? " [net]" : "");
94ec8c6b 176 authctxt->service = xstrdup(service);
2a6a054e 177 authctxt->style = style ? xstrdup(style) : NULL;
1853d1ef 178 if (use_privsep)
179 mm_inform_authserv(service, style);
2a6a054e 180 } 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);
a306f2dd 185 }
59c97189 186 /* reset state */
2f293d43 187 auth2_challenge_stop(authctxt);
7364bd04 188
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
59c97189 194 authctxt->postponed = 0;
9cd45ea4 195
59c97189 196 /* try to authenticate user */
94ec8c6b 197 m = authmethod_lookup(method);
198 if (m != NULL) {
199 debug2("input_userauth_request: try method %s", method);
200 authenticated = m->userauth(authctxt);
9cd45ea4 201 }
d9cd3575 202 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{
4e81159c 212 char *methods;
213
59c97189 214 if (!authctxt->valid && authenticated)
215 fatal("INTERNAL ERROR: authenticated invalid user %s",
216 authctxt->user);
9cd45ea4 217
94ec8c6b 218 /* Special handling for root */
5d47f1d4 219 if (authenticated && authctxt->pw->pw_uid == 0 &&
c00e4d75 220 !auth_root_allowed(method)) {
a306f2dd 221 authenticated = 0;
6039eeef 222#ifdef SSH_AUDIT_EVENTS
223 PRIVSEP(audit_event(SSH_LOGIN_ROOT_DENIED));
c00e4d75 224#endif
225 }
a306f2dd 226
5b9e2464 227#ifdef USE_PAM
ba6dd90e 228 if (options.use_pam && authenticated) {
229 if (!PRIVSEP(do_pam_account())) {
ba6dd90e 230 /* 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));
9aab0af7 234 packet_write_wait();
ba6dd90e 235 }
9aab0af7 236 fatal("Access denied for user %s by PAM account "
237 "configuration", authctxt->user);
ba6dd90e 238 }
239 }
5b9e2464 240#endif
241
ef51930f 242#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
94ec8c6b 249 /* Log before sending the reply */
59c97189 250 auth_log(authctxt, authenticated, method, " ssh2");
251
4e81159c 252 if (authctxt->postponed)
253 return;
254
255 /* XXX todo: check if multiple auth methods are needed */
256 if (authenticated == 1) {
257 /* turn off userauth */
6367063f 258 dispatch_set(SSH2_MSG_USERAUTH_REQUEST, &dispatch_protocol_ignore);
4e81159c 259 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 {
c00e4d75 265 if (authctxt->failures++ > options.max_authtries) {
6039eeef 266#ifdef SSH_AUDIT_EVENTS
267 PRIVSEP(audit_event(SSH_LOGIN_EXCEED_MAXTRIES));
c00e4d75 268#endif
4e81159c 269 packet_disconnect(AUTH_FAIL_MSG, authctxt->user);
c00e4d75 270 }
4e81159c 271 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 }
94ec8c6b 279}
280
94ec8c6b 281#define DELIM ","
282
ffb215be 283static char *
94ec8c6b 284authmethods_get(void)
a306f2dd 285{
3469eac4 286 Buffer b;
94ec8c6b 287 char *list;
01c24737 288 int i;
94ec8c6b 289
3469eac4 290 buffer_init(&b);
01c24737 291 for (i = 0; authmethods[i] != NULL; i++) {
292 if (strcmp(authmethods[i]->name, "none") == 0)
94ec8c6b 293 continue;
01c24737 294 if (authmethods[i]->enabled != NULL &&
295 *(authmethods[i]->enabled) != 0) {
3469eac4 296 if (buffer_len(&b) > 0)
297 buffer_append(&b, ",", 1);
01c24737 298 buffer_append(&b, authmethods[i]->name,
299 strlen(authmethods[i]->name));
a306f2dd 300 }
301 }
3469eac4 302 buffer_append(&b, "\0", 1);
303 list = xstrdup(buffer_ptr(&b));
304 buffer_free(&b);
94ec8c6b 305 return list;
306}
307
396c147e 308static Authmethod *
94ec8c6b 309authmethod_lookup(const char *name)
310{
01c24737 311 int i;
312
94ec8c6b 313 if (name != NULL)
01c24737 314 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");
94ec8c6b 321 return NULL;
a306f2dd 322}
This page took 0.266768 seconds and 5 git commands to generate.