]> andersk Git - gssapi-openssh.git/blame_incremental - openssh/auth2.c
http://www.sxw.org.uk/computing/patches/openssh-5.2p1-gsskex-all-20090726.patch commi...
[gssapi-openssh.git] / openssh / auth2.c
... / ...
CommitLineData
1/* $OpenBSD: auth2.c,v 1.120 2008/11/04 08:22:12 djm Exp $ */
2/*
3 * Copyright (c) 2000 Markus Friedl. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 *
14 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
15 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
16 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
17 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
18 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
19 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
20 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
21 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
23 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24 */
25
26#include "includes.h"
27
28#include <sys/types.h>
29#include <sys/stat.h>
30#include <sys/uio.h>
31
32#include <fcntl.h>
33#include <pwd.h>
34#include <stdarg.h>
35#include <string.h>
36#include <unistd.h>
37
38#include "xmalloc.h"
39#include "atomicio.h"
40#include "ssh2.h"
41#include "packet.h"
42#include "log.h"
43#include "buffer.h"
44#include "servconf.h"
45#include "compat.h"
46#include "key.h"
47#include "hostfile.h"
48#include "auth.h"
49#include "dispatch.h"
50#include "pathnames.h"
51#include "buffer.h"
52
53#ifdef GSSAPI
54#include "ssh-gss.h"
55#endif
56#include "monitor_wrap.h"
57
58/* import */
59extern ServerOptions options;
60extern u_char *session_id2;
61extern u_int session_id2_len;
62extern Buffer loginmsg;
63
64/* methods */
65
66extern Authmethod method_none;
67extern Authmethod method_pubkey;
68extern Authmethod method_passwd;
69extern Authmethod method_kbdint;
70extern Authmethod method_hostbased;
71#ifdef GSSAPI
72extern Authmethod method_gsskeyex;
73extern Authmethod method_gssapi;
74#endif
75#ifdef JPAKE
76extern Authmethod method_jpake;
77#endif
78
79Authmethod *authmethods[] = {
80 &method_none,
81 &method_pubkey,
82#ifdef GSSAPI
83 &method_gsskeyex,
84 &method_gssapi,
85#endif
86#ifdef JPAKE
87 &method_jpake,
88#endif
89 &method_passwd,
90 &method_kbdint,
91 &method_hostbased,
92 NULL
93};
94
95/* protocol */
96
97static void input_service_request(int, u_int32_t, void *);
98static void input_userauth_request(int, u_int32_t, void *);
99
100/* helper */
101static Authmethod *authmethod_lookup(const char *);
102static char *authmethods_get(void);
103
104char *
105auth2_read_banner(void)
106{
107 struct stat st;
108 char *banner = NULL;
109 size_t len, n;
110 int fd;
111
112 if ((fd = open(options.banner, O_RDONLY)) == -1)
113 return (NULL);
114 if (fstat(fd, &st) == -1) {
115 close(fd);
116 return (NULL);
117 }
118 if (st.st_size > 1*1024*1024) {
119 close(fd);
120 return (NULL);
121 }
122
123 len = (size_t)st.st_size; /* truncate */
124 banner = xmalloc(len + 1);
125 n = atomicio(read, fd, banner, len);
126 close(fd);
127
128 if (n != len) {
129 xfree(banner);
130 return (NULL);
131 }
132 banner[n] = '\0';
133
134 return (banner);
135}
136
137void
138userauth_send_banner(const char *msg)
139{
140 if (datafellows & SSH_BUG_BANNER)
141 return;
142
143 packet_start(SSH2_MSG_USERAUTH_BANNER);
144 packet_put_cstring(msg);
145 packet_put_cstring(""); /* language, unused */
146 packet_send();
147 debug("%s: sent", __func__);
148}
149
150static void
151userauth_banner(void)
152{
153 char *banner = NULL;
154
155 if (options.banner == NULL ||
156 strcasecmp(options.banner, "none") == 0 ||
157 (datafellows & SSH_BUG_BANNER) != 0)
158 return;
159
160 if ((banner = PRIVSEP(auth2_read_banner())) == NULL)
161 goto done;
162 userauth_send_banner(banner);
163
164done:
165 if (banner)
166 xfree(banner);
167}
168
169/*
170 * loop until authctxt->success == TRUE
171 */
172void
173do_authentication2(Authctxt *authctxt)
174{
175 dispatch_init(&dispatch_protocol_error);
176 dispatch_set(SSH2_MSG_SERVICE_REQUEST, &input_service_request);
177 dispatch_run(DISPATCH_BLOCK, &authctxt->success, authctxt);
178}
179
180/*ARGSUSED*/
181static void
182input_service_request(int type, u_int32_t seq, void *ctxt)
183{
184 Authctxt *authctxt = ctxt;
185 u_int len;
186 int acceptit = 0;
187 char *service = packet_get_string(&len);
188 packet_check_eom();
189
190 if (authctxt == NULL)
191 fatal("input_service_request: no authctxt");
192
193 if (strcmp(service, "ssh-userauth") == 0) {
194 if (!authctxt->success) {
195 acceptit = 1;
196 /* now we can handle user-auth requests */
197 dispatch_set(SSH2_MSG_USERAUTH_REQUEST, &input_userauth_request);
198 }
199 }
200 /* XXX all other service requests are denied */
201
202 if (acceptit) {
203 packet_start(SSH2_MSG_SERVICE_ACCEPT);
204 packet_put_cstring(service);
205 packet_send();
206 packet_write_wait();
207 } else {
208 debug("bad service request %s", service);
209 packet_disconnect("bad service request %s", service);
210 }
211 xfree(service);
212}
213
214/*ARGSUSED*/
215static void
216input_userauth_request(int type, u_int32_t seq, void *ctxt)
217{
218 Authctxt *authctxt = ctxt;
219 Authmethod *m = NULL;
220 char *user, *service, *method, *style = NULL;
221 int authenticated = 0;
222
223 if (authctxt == NULL)
224 fatal("input_userauth_request: no authctxt");
225
226 user = packet_get_string(NULL);
227 service = packet_get_string(NULL);
228 method = packet_get_string(NULL);
229 debug("userauth-request for user %s service %s method %s", user, service, method);
230 debug("attempt %d failures %d", authctxt->attempt, authctxt->failures);
231
232 if ((style = strchr(user, ':')) != NULL)
233 *style++ = 0;
234
235 if (authctxt->attempt++ == 0) {
236 /* setup auth context */
237 authctxt->pw = PRIVSEP(getpwnamallow(user));
238 authctxt->user = xstrdup(user);
239 if (authctxt->pw && strcmp(service, "ssh-connection")==0) {
240 authctxt->valid = 1;
241 debug2("input_userauth_request: setting up authctxt for %s", user);
242 } else {
243 logit("input_userauth_request: invalid user %s", user);
244 authctxt->pw = fakepw();
245#ifdef SSH_AUDIT_EVENTS
246 PRIVSEP(audit_event(SSH_INVALID_USER));
247#endif
248 }
249#ifdef USE_PAM
250 if (options.use_pam)
251 PRIVSEP(start_pam(authctxt));
252#endif
253 setproctitle("%s%s", authctxt->valid ? user : "unknown",
254 use_privsep ? " [net]" : "");
255 authctxt->service = xstrdup(service);
256 authctxt->style = style ? xstrdup(style) : NULL;
257 if (use_privsep)
258 mm_inform_authserv(service, style);
259 userauth_banner();
260 } else if (strcmp(user, authctxt->user) != 0 ||
261 strcmp(service, authctxt->service) != 0) {
262 packet_disconnect("Change of username or service not allowed: "
263 "(%s,%s) -> (%s,%s)",
264 authctxt->user, authctxt->service, user, service);
265 }
266 /* reset state */
267 auth2_challenge_stop(authctxt);
268#ifdef JPAKE
269 auth2_jpake_stop(authctxt);
270#endif
271
272#ifdef GSSAPI
273 /* XXX move to auth2_gssapi_stop() */
274 dispatch_set(SSH2_MSG_USERAUTH_GSSAPI_TOKEN, NULL);
275 dispatch_set(SSH2_MSG_USERAUTH_GSSAPI_EXCHANGE_COMPLETE, NULL);
276#endif
277
278 authctxt->postponed = 0;
279 authctxt->server_caused_failure = 0;
280
281 /* try to authenticate user */
282 m = authmethod_lookup(method);
283 if (m != NULL && authctxt->failures < options.max_authtries) {
284 debug2("input_userauth_request: try method %s", method);
285 authenticated = m->userauth(authctxt);
286 }
287 userauth_finish(authctxt, authenticated, method);
288
289 xfree(service);
290 xfree(user);
291 xfree(method);
292}
293
294void
295userauth_finish(Authctxt *authctxt, int authenticated, char *method)
296{
297 char *methods;
298
299 if (!authctxt->valid && authenticated)
300 fatal("INTERNAL ERROR: authenticated invalid user %s",
301 authctxt->user);
302
303 /* Special handling for root */
304 if (authenticated && authctxt->pw->pw_uid == 0 &&
305 !auth_root_allowed(method)) {
306 authenticated = 0;
307#ifdef SSH_AUDIT_EVENTS
308 PRIVSEP(audit_event(SSH_LOGIN_ROOT_DENIED));
309#endif
310 }
311
312#ifdef USE_PAM
313 if (options.use_pam && authenticated) {
314 if (!PRIVSEP(do_pam_account())) {
315 /* if PAM returned a message, send it to the user */
316 if (buffer_len(&loginmsg) > 0) {
317 buffer_append(&loginmsg, "\0", 1);
318 userauth_send_banner(buffer_ptr(&loginmsg));
319 packet_write_wait();
320 }
321 fatal("Access denied for user %s by PAM account "
322 "configuration", authctxt->user);
323 }
324 }
325#endif
326
327#ifdef _UNICOS
328 if (authenticated && cray_access_denied(authctxt->user)) {
329 authenticated = 0;
330 fatal("Access denied for user %s.",authctxt->user);
331 }
332#endif /* _UNICOS */
333
334 /* Log before sending the reply */
335 auth_log(authctxt, authenticated, method, " ssh2");
336
337 if (authctxt->postponed)
338 return;
339
340 /* XXX todo: check if multiple auth methods are needed */
341 if (authenticated == 1) {
342 /* turn off userauth */
343 dispatch_set(SSH2_MSG_USERAUTH_REQUEST, &dispatch_protocol_ignore);
344 packet_start(SSH2_MSG_USERAUTH_SUCCESS);
345 packet_send();
346 packet_write_wait();
347 /* now we can break out */
348 authctxt->success = 1;
349 } else {
350
351 /* Allow initial try of "none" auth without failure penalty */
352 if (!authctxt->server_caused_failure &&
353 (authctxt->attempt > 1 || strcmp(method, "none") != 0))
354 authctxt->failures++;
355 if (authctxt->failures >= options.max_authtries) {
356#ifdef SSH_AUDIT_EVENTS
357 PRIVSEP(audit_event(SSH_LOGIN_EXCEED_MAXTRIES));
358#endif
359 packet_disconnect(AUTH_FAIL_MSG, authctxt->user);
360 }
361 methods = authmethods_get();
362 packet_start(SSH2_MSG_USERAUTH_FAILURE);
363 packet_put_cstring(methods);
364 packet_put_char(0); /* XXX partial success, unused */
365 packet_send();
366 packet_write_wait();
367 xfree(methods);
368 }
369}
370
371static char *
372authmethods_get(void)
373{
374 Buffer b;
375 char *list;
376 int i;
377
378 buffer_init(&b);
379 for (i = 0; authmethods[i] != NULL; i++) {
380 if (strcmp(authmethods[i]->name, "none") == 0)
381 continue;
382 if (authmethods[i]->enabled != NULL &&
383 *(authmethods[i]->enabled) != 0) {
384 if (buffer_len(&b) > 0)
385 buffer_append(&b, ",", 1);
386 buffer_append(&b, authmethods[i]->name,
387 strlen(authmethods[i]->name));
388 }
389 }
390 buffer_append(&b, "\0", 1);
391 list = xstrdup(buffer_ptr(&b));
392 buffer_free(&b);
393 return list;
394}
395
396static Authmethod *
397authmethod_lookup(const char *name)
398{
399 int i;
400
401 if (name != NULL)
402 for (i = 0; authmethods[i] != NULL; i++)
403 if (authmethods[i]->enabled != NULL &&
404 *(authmethods[i]->enabled) != 0 &&
405 strcmp(name, authmethods[i]->name) == 0)
406 return authmethods[i];
407 debug2("Unrecognized authentication method name: %s",
408 name ? name : "NULL");
409 return NULL;
410}
411
This page took 1.477916 seconds and 5 git commands to generate.