turn down some warnings
[openssh.git] / auth2.c
1 /* $OpenBSD: auth2.c,v 1.122 2010/08/31 09:58:37 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 "atomicio.h"
39 #include "xmalloc.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 */
59 extern ServerOptions options;
60 extern u_char *session_id2;
61 extern u_int session_id2_len;
62 extern Buffer loginmsg;
63
64 /* methods */
65
66 extern Authmethod method_none;
67 extern Authmethod method_pubkey;
68 extern Authmethod method_passwd;
69 extern Authmethod method_kbdint;
70 extern Authmethod method_hostbased;
71 #ifdef GSSAPI
72 extern Authmethod method_gsskeyex;
73 extern Authmethod method_gssapi;
74 #endif
75 #ifdef JPAKE
76 extern Authmethod method_jpake;
77 #endif
78
79 Authmethod *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
97 static void input_service_request(int, u_int32_t, void *);
98 static void input_userauth_request(int, u_int32_t, void *);
99
100 /* helper */
101 static Authmethod *authmethod_lookup(const char *);
102 static char *authmethods_get(void);
103
104 char *
105 auth2_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
137 void
138 userauth_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
150 static void
151 userauth_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
164 done:
165         if (banner)
166                 xfree(banner);
167 }
168
169 /*
170  * loop until authctxt->success == TRUE
171  */
172 void
173 do_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*/
181 static void
182 input_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_cstring(&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*/
215 static void
216 input_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_cstring(NULL);
227         service = packet_get_cstring(NULL);
228         method = packet_get_cstring(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 first time or username changed or empty username,
236            setup/reset authentication context. */
237         if ((authctxt->attempt++ == 0) ||
238             (strcmp(user, authctxt->user) != 0) ||
239             (strcmp(user, "") == 0)) {
240                 if (authctxt->user) {
241                     xfree(authctxt->user);
242                     authctxt->user = NULL;
243                 }
244                 authctxt->valid = 0;
245         authctxt->user = xstrdup(user);
246         if (strcmp(service, "ssh-connection") != 0) {
247             packet_disconnect("Unsupported service %s", service);
248         }
249 #ifdef GSSAPI
250                 /* If we're going to set the username based on the
251                    GSSAPI context later, then wait until then to
252                    verify it. Just put in placeholders for now. */
253                 if ((strcmp(user, "") == 0) &&
254                     (strcmp(method, "gssapi-with-mic") == 0 ||
255                      strcmp(method, "gssapi-keyex") == 0)) {
256                         authctxt->pw = fakepw();
257                 } else {
258 #endif
259                 authctxt->pw = PRIVSEP(getpwnamallow(user));
260                 if (authctxt->pw) {
261                         authctxt->valid = 1;
262                         debug2("input_userauth_request: setting up authctxt for %s", user);
263                 } else {
264                         logit("input_userauth_request: invalid user %s", user);
265                         authctxt->pw = fakepw();
266 #ifdef SSH_AUDIT_EVENTS
267                         PRIVSEP(audit_event(SSH_INVALID_USER));
268 #endif
269                 }
270 #ifdef USE_PAM
271                 if (options.use_pam)
272                         PRIVSEP(start_pam(authctxt));
273 #endif
274 #ifdef GSSAPI
275                 } /* endif for setting username based on GSSAPI context */
276 #endif
277                 setproctitle("%s%s", authctxt->valid ? user : "unknown",
278                     use_privsep ? " [net]" : "");
279                 if (authctxt->attempt == 1) {
280                         authctxt->service = xstrdup(service);
281                         authctxt->style = style ? xstrdup(style) : NULL;
282                         if (use_privsep)
283                                 mm_inform_authserv(service, style);
284                         userauth_banner();
285                 }
286         }
287         if (strcmp(service, authctxt->service) != 0) {
288                 packet_disconnect("Change of username or service not allowed: "
289                     "(%s,%s) -> (%s,%s)",
290                     authctxt->user, authctxt->service, user, service);
291         }
292         /* reset state */
293         auth2_challenge_stop(authctxt);
294 #ifdef JPAKE
295         auth2_jpake_stop(authctxt);
296 #endif
297
298 #ifdef GSSAPI
299         /* XXX move to auth2_gssapi_stop() */
300         dispatch_set(SSH2_MSG_USERAUTH_GSSAPI_TOKEN, NULL);
301         dispatch_set(SSH2_MSG_USERAUTH_GSSAPI_EXCHANGE_COMPLETE, NULL);
302 #endif
303
304         authctxt->postponed = 0;
305         authctxt->server_caused_failure = 0;
306
307         /* try to authenticate user */
308         m = authmethod_lookup(method);
309         if (m != NULL && authctxt->failures < options.max_authtries) {
310                 debug2("input_userauth_request: try method %s", method);
311                 authenticated = m->userauth(authctxt);
312         }
313         userauth_finish(authctxt, authenticated, method);
314
315         xfree(service);
316         xfree(user);
317         xfree(method);
318 }
319
320 void
321 userauth_finish(Authctxt *authctxt, int authenticated, char *method)
322 {
323         char *methods;
324
325         if (!authctxt->valid && authenticated)
326                 fatal("INTERNAL ERROR: authenticated invalid user %s",
327                     authctxt->user);
328
329         /* Special handling for root */
330         if (authenticated && authctxt->pw->pw_uid == 0 &&
331             !auth_root_allowed(method)) {
332                 authenticated = 0;
333 #ifdef SSH_AUDIT_EVENTS
334                 PRIVSEP(audit_event(SSH_LOGIN_ROOT_DENIED));
335 #endif
336         }
337
338 #ifdef USE_PAM
339         if (options.use_pam && authenticated) {
340                 if (!PRIVSEP(do_pam_account())) {
341                         /* if PAM returned a message, send it to the user */
342                         if (buffer_len(&loginmsg) > 0) {
343                                 buffer_append(&loginmsg, "\0", 1);
344                                 userauth_send_banner(buffer_ptr(&loginmsg));
345                                 packet_write_wait();
346                         }
347                         fatal("Access denied for user %s by PAM account "
348                             "configuration", authctxt->user);
349                 }
350         }
351 #endif
352
353 #ifdef _UNICOS
354         if (authenticated && cray_access_denied(authctxt->user)) {
355                 authenticated = 0;
356                 fatal("Access denied for user %s.",authctxt->user);
357         }
358 #endif /* _UNICOS */
359
360         /* Log before sending the reply */
361         auth_log(authctxt, authenticated, method, " ssh2");
362
363         if (authctxt->postponed)
364                 return;
365
366         /* XXX todo: check if multiple auth methods are needed */
367         if (authenticated == 1) {
368                 /* turn off userauth */
369                 dispatch_set(SSH2_MSG_USERAUTH_REQUEST, &dispatch_protocol_ignore);
370                 packet_start(SSH2_MSG_USERAUTH_SUCCESS);
371                 packet_send();
372                 packet_write_wait();
373                 /* now we can break out */
374                 authctxt->success = 1;
375         } else {
376
377                 /* Allow initial try of "none" auth without failure penalty */
378                 if (!authctxt->server_caused_failure &&
379                     (authctxt->attempt > 1 || strcmp(method, "none") != 0))
380                         authctxt->failures++;
381                 if (authctxt->failures >= options.max_authtries) {
382 #ifdef SSH_AUDIT_EVENTS
383                         PRIVSEP(audit_event(SSH_LOGIN_EXCEED_MAXTRIES));
384 #endif
385                         packet_disconnect(AUTH_FAIL_MSG, authctxt->user);
386                 }
387                 methods = authmethods_get();
388                 packet_start(SSH2_MSG_USERAUTH_FAILURE);
389                 packet_put_cstring(methods);
390                 packet_put_char(0);     /* XXX partial success, unused */
391                 packet_send();
392                 packet_write_wait();
393                 xfree(methods);
394         }
395 }
396
397 static char *
398 authmethods_get(void)
399 {
400         Buffer b;
401         char *list;
402         int i;
403
404         buffer_init(&b);
405         for (i = 0; authmethods[i] != NULL; i++) {
406                 if (strcmp(authmethods[i]->name, "none") == 0)
407                         continue;
408                 if (authmethods[i]->enabled != NULL &&
409                     *(authmethods[i]->enabled) != 0) {
410                         if (buffer_len(&b) > 0)
411                                 buffer_append(&b, ",", 1);
412                         buffer_append(&b, authmethods[i]->name,
413                             strlen(authmethods[i]->name));
414                 }
415         }
416         buffer_append(&b, "\0", 1);
417         list = xstrdup(buffer_ptr(&b));
418         buffer_free(&b);
419         return list;
420 }
421
422 static Authmethod *
423 authmethod_lookup(const char *name)
424 {
425         int i;
426
427         if (name != NULL)
428                 for (i = 0; authmethods[i] != NULL; i++)
429                         if (authmethods[i]->enabled != NULL &&
430                             *(authmethods[i]->enabled) != 0 &&
431                             strcmp(name, authmethods[i]->name) == 0)
432                                 return authmethods[i];
433         debug2("Unrecognized authentication method name: %s",
434             name ? name : "NULL");
435         return NULL;
436 }
437