]> andersk Git - gssapi-openssh.git/blame - openssh/auth2.c
openssh-3.6.1p2-gssapi-20030430.diff from Simon
[gssapi-openssh.git] / openssh / auth2.c
CommitLineData
3c0ef626 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.
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 */
24
25#include "includes.h"
6a9b3198 26RCSID("$OpenBSD: auth2.c,v 1.96 2003/02/06 21:22:43 markus Exp $");
3c0ef626 27
28#include "ssh2.h"
29#include "xmalloc.h"
3c0ef626 30#include "packet.h"
3c0ef626 31#include "log.h"
32#include "servconf.h"
33#include "compat.h"
3c0ef626 34#include "auth.h"
3c0ef626 35#include "dispatch.h"
3c0ef626 36#include "pathnames.h"
700318f3 37#include "monitor_wrap.h"
3c0ef626 38
c0fc5818 39#ifdef GSSAPI
40#include "ssh-gss.h"
41#endif
42
3c0ef626 43/* import */
44extern ServerOptions options;
45extern u_char *session_id2;
46extern int session_id2_len;
47
700318f3 48Authctxt *x_authctxt = NULL;
3c0ef626 49
f5799ae1 50/* methods */
51
52extern Authmethod method_none;
53extern Authmethod method_pubkey;
54extern Authmethod method_passwd;
55extern Authmethod method_kbdint;
56extern Authmethod method_hostbased;
c0fc5818 57extern Authmethod method_external;
58extern Authmethod method_gssapi;
f5799ae1 59
60Authmethod *authmethods[] = {
61 &method_none,
c0fc5818 62#ifdef GSSAPI
63 &method_external,
64 &method_gssapi,
65#endif
f5799ae1 66 &method_pubkey,
67 &method_passwd,
68 &method_kbdint,
69 &method_hostbased,
70 NULL
3c0ef626 71};
72
73/* protocol */
74
e9a17296 75static void input_service_request(int, u_int32_t, void *);
76static void input_userauth_request(int, u_int32_t, void *);
3c0ef626 77
78/* helper */
79static Authmethod *authmethod_lookup(const char *);
80static char *authmethods_get(void);
700318f3 81int user_key_allowed(struct passwd *, Key *);
82int hostbased_key_allowed(struct passwd *, const char *, char *, Key *);
3c0ef626 83
3c0ef626 84/*
85 * loop until authctxt->success == TRUE
86 */
87
700318f3 88Authctxt *
e9a17296 89do_authentication2(void)
3c0ef626 90{
91 Authctxt *authctxt = authctxt_new();
92
93 x_authctxt = authctxt; /*XXX*/
94
95 /* challenge-response is implemented via keyboard interactive */
96 if (options.challenge_response_authentication)
97 options.kbd_interactive_authentication = 1;
98 if (options.pam_authentication_via_kbd_int)
99 options.kbd_interactive_authentication = 1;
700318f3 100 if (use_privsep)
101 options.pam_authentication_via_kbd_int = 0;
3c0ef626 102
e9a17296 103 dispatch_init(&dispatch_protocol_error);
3c0ef626 104 dispatch_set(SSH2_MSG_SERVICE_REQUEST, &input_service_request);
105 dispatch_run(DISPATCH_BLOCK, &authctxt->success, authctxt);
700318f3 106
107 return (authctxt);
3c0ef626 108}
109
110static void
e9a17296 111input_service_request(int type, u_int32_t seq, void *ctxt)
3c0ef626 112{
113 Authctxt *authctxt = ctxt;
114 u_int len;
41b2f314 115 int acceptit = 0;
3c0ef626 116 char *service = packet_get_string(&len);
e9a17296 117 packet_check_eom();
3c0ef626 118
119 if (authctxt == NULL)
120 fatal("input_service_request: no authctxt");
121
122 if (strcmp(service, "ssh-userauth") == 0) {
123 if (!authctxt->success) {
41b2f314 124 acceptit = 1;
3c0ef626 125 /* now we can handle user-auth requests */
126 dispatch_set(SSH2_MSG_USERAUTH_REQUEST, &input_userauth_request);
127 }
128 }
129 /* XXX all other service requests are denied */
130
41b2f314 131 if (acceptit) {
3c0ef626 132 packet_start(SSH2_MSG_SERVICE_ACCEPT);
133 packet_put_cstring(service);
134 packet_send();
135 packet_write_wait();
136 } else {
137 debug("bad service request %s", service);
138 packet_disconnect("bad service request %s", service);
139 }
140 xfree(service);
141}
142
143static void
e9a17296 144input_userauth_request(int type, u_int32_t seq, void *ctxt)
3c0ef626 145{
146 Authctxt *authctxt = ctxt;
147 Authmethod *m = NULL;
148 char *user, *service, *method, *style = NULL;
149 int authenticated = 0;
150
151 if (authctxt == NULL)
152 fatal("input_userauth_request: no authctxt");
153
154 user = packet_get_string(NULL);
155 service = packet_get_string(NULL);
156 method = packet_get_string(NULL);
157 debug("userauth-request for user %s service %s method %s", user, service, method);
158 debug("attempt %d failures %d", authctxt->attempt, authctxt->failures);
159
160 if ((style = strchr(user, ':')) != NULL)
161 *style++ = 0;
162
163 if (authctxt->attempt++ == 0) {
164 /* setup auth context */
700318f3 165 authctxt->pw = PRIVSEP(getpwnamallow(user));
166 if (authctxt->pw && strcmp(service, "ssh-connection")==0) {
3c0ef626 167 authctxt->valid = 1;
168 debug2("input_userauth_request: setting up authctxt for %s", user);
169#ifdef USE_PAM
700318f3 170 PRIVSEP(start_pam(authctxt->pw->pw_name));
3c0ef626 171#endif
172 } else {
173 log("input_userauth_request: illegal user %s", user);
174#ifdef USE_PAM
700318f3 175 PRIVSEP(start_pam("NOUSER"));
3c0ef626 176#endif
177 }
700318f3 178 setproctitle("%s%s", authctxt->pw ? user : "unknown",
179 use_privsep ? " [net]" : "");
3c0ef626 180 authctxt->user = xstrdup(user);
181 authctxt->service = xstrdup(service);
182 authctxt->style = style ? xstrdup(style) : NULL;
700318f3 183 if (use_privsep)
184 mm_inform_authserv(service, style);
3c0ef626 185 } else if (strcmp(user, authctxt->user) != 0 ||
186 strcmp(service, authctxt->service) != 0) {
187 packet_disconnect("Change of username or service not allowed: "
188 "(%s,%s) -> (%s,%s)",
189 authctxt->user, authctxt->service, user, service);
190 }
191 /* reset state */
e9a17296 192 auth2_challenge_stop(authctxt);
c0fc5818 193
194#ifdef GSSAPI
195 dispatch_set(SSH2_MSG_USERAUTH_GSSAPI_TOKEN, NULL);
196 dispatch_set(SSH2_MSG_USERAUTH_GSSAPI_EXCHANGE_COMPLETE, NULL);
197#endif
198
3c0ef626 199 authctxt->postponed = 0;
3c0ef626 200
201 /* try to authenticate user */
202 m = authmethod_lookup(method);
203 if (m != NULL) {
204 debug2("input_userauth_request: try method %s", method);
205 authenticated = m->userauth(authctxt);
206 }
207 userauth_finish(authctxt, authenticated, method);
208
209 xfree(service);
210 xfree(user);
211 xfree(method);
212}
213
214void
215userauth_finish(Authctxt *authctxt, int authenticated, char *method)
216{
217 char *methods;
218
219 if (!authctxt->valid && authenticated)
220 fatal("INTERNAL ERROR: authenticated invalid user %s",
221 authctxt->user);
222
223 /* Special handling for root */
6a9b3198 224 if (authenticated && authctxt->pw->pw_uid == 0 &&
3c0ef626 225 !auth_root_allowed(method))
226 authenticated = 0;
227
228#ifdef USE_PAM
700318f3 229 if (!use_privsep && authenticated && authctxt->user &&
230 !do_pam_account(authctxt->user, NULL))
3c0ef626 231 authenticated = 0;
232#endif /* USE_PAM */
233
41b2f314 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
3c0ef626 241 /* Log before sending the reply */
242 auth_log(authctxt, authenticated, method, " ssh2");
243
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 */
e9a17296 250 dispatch_set(SSH2_MSG_USERAUTH_REQUEST, &dispatch_protocol_ignore);
3c0ef626 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 {
257 if (authctxt->failures++ > AUTH_FAIL_MAX) {
3c0ef626 258 packet_disconnect(AUTH_FAIL_MSG, authctxt->user);
259 }
41b2f314 260#ifdef _UNICOS
261 if (strcmp(method, "password") == 0)
262 cray_login_failure(authctxt->user, IA_UDBERR);
263#endif /* _UNICOS */
3c0ef626 264 methods = authmethods_get();
265 packet_start(SSH2_MSG_USERAUTH_FAILURE);
266 packet_put_cstring(methods);
267 packet_put_char(0); /* XXX partial success, unused */
268 packet_send();
269 packet_write_wait();
270 xfree(methods);
271 }
272}
273
3c0ef626 274/* get current user */
275
276struct passwd*
277auth_get_user(void)
278{
279 return (x_authctxt != NULL && x_authctxt->valid) ? x_authctxt->pw : NULL;
280}
281
282#define DELIM ","
283
284static char *
285authmethods_get(void)
286{
e9a17296 287 Buffer b;
3c0ef626 288 char *list;
f5799ae1 289 int i;
3c0ef626 290
e9a17296 291 buffer_init(&b);
f5799ae1 292 for (i = 0; authmethods[i] != NULL; i++) {
293 if (strcmp(authmethods[i]->name, "none") == 0)
3c0ef626 294 continue;
f5799ae1 295 if (authmethods[i]->enabled != NULL &&
296 *(authmethods[i]->enabled) != 0) {
e9a17296 297 if (buffer_len(&b) > 0)
298 buffer_append(&b, ",", 1);
f5799ae1 299 buffer_append(&b, authmethods[i]->name,
300 strlen(authmethods[i]->name));
3c0ef626 301 }
302 }
e9a17296 303 buffer_append(&b, "\0", 1);
304 list = xstrdup(buffer_ptr(&b));
305 buffer_free(&b);
3c0ef626 306 return list;
307}
308
309static Authmethod *
310authmethod_lookup(const char *name)
311{
f5799ae1 312 int i;
313
3c0ef626 314 if (name != NULL)
f5799ae1 315 for (i = 0; authmethods[i] != NULL; i++)
316 if (authmethods[i]->enabled != NULL &&
317 *(authmethods[i]->enabled) != 0 &&
318 strcmp(name, authmethods[i]->name) == 0)
319 return authmethods[i];
320 debug2("Unrecognized authentication method name: %s",
321 name ? name : "NULL");
3c0ef626 322 return NULL;
323}
This page took 0.095809 seconds and 5 git commands to generate.