]> andersk Git - openssh.git/blob - auth2.c
- markus@cvs.openbsd.org 2001/04/04 20:32:56
[openssh.git] / auth2.c
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"
26 RCSID("$OpenBSD: auth2.c,v 1.50 2001/04/04 20:32:56 markus Exp $");
27
28 #include <openssl/evp.h>
29
30 #include "ssh2.h"
31 #include "xmalloc.h"
32 #include "rsa.h"
33 #include "sshpty.h"
34 #include "packet.h"
35 #include "buffer.h"
36 #include "log.h"
37 #include "servconf.h"
38 #include "compat.h"
39 #include "channels.h"
40 #include "bufaux.h"
41 #include "auth.h"
42 #include "session.h"
43 #include "dispatch.h"
44 #include "key.h"
45 #include "cipher.h"
46 #include "kex.h"
47 #include "pathnames.h"
48 #include "uidswap.h"
49 #include "auth-options.h"
50 #include "misc.h"
51
52 /* import */
53 extern ServerOptions options;
54 extern u_char *session_id2;
55 extern int session_id2_len;
56
57 #ifdef WITH_AIXAUTHENTICATE
58 extern char *aixloginmsg;
59 #endif
60
61 static Authctxt *x_authctxt = NULL;
62 static int one = 1;
63
64 typedef struct Authmethod Authmethod;
65 struct Authmethod {
66         char    *name;
67         int     (*userauth)(Authctxt *authctxt);
68         int     *enabled;
69 };
70
71 /* protocol */
72
73 void    input_service_request(int type, int plen, void *ctxt);
74 void    input_userauth_request(int type, int plen, void *ctxt);
75 void    protocol_error(int type, int plen, void *ctxt);
76
77 /* helper */
78 Authmethod      *authmethod_lookup(const char *name);
79 int     user_key_allowed(struct passwd *pw, Key *key);
80 char    *authmethods_get(void);
81
82 /* auth */
83 void    userauth_banner(void);
84 void    userauth_reply(Authctxt *authctxt, int authenticated);
85 int     userauth_none(Authctxt *authctxt);
86 int     userauth_passwd(Authctxt *authctxt);
87 int     userauth_pubkey(Authctxt *authctxt);
88 int     userauth_kbdint(Authctxt *authctxt);
89
90 Authmethod authmethods[] = {
91         {"none",
92                 userauth_none,
93                 &one},
94         {"publickey",
95                 userauth_pubkey,
96                 &options.pubkey_authentication},
97         {"password",
98                 userauth_passwd,
99                 &options.password_authentication},
100         {"keyboard-interactive",
101                 userauth_kbdint,
102                 &options.kbd_interactive_authentication},
103         {NULL, NULL, NULL}
104 };
105
106 /*
107  * loop until authctxt->success == TRUE
108  */
109
110 void
111 do_authentication2()
112 {
113         Authctxt *authctxt = authctxt_new();
114
115         x_authctxt = authctxt;          /*XXX*/
116
117         /* challenge-reponse is implemented via keyboard interactive */
118         if (options.challenge_reponse_authentication)
119                 options.kbd_interactive_authentication = 1;
120
121         dispatch_init(&protocol_error);
122         dispatch_set(SSH2_MSG_SERVICE_REQUEST, &input_service_request);
123         dispatch_run(DISPATCH_BLOCK, &authctxt->success, authctxt);
124         do_authenticated(authctxt);
125 }
126
127 void
128 protocol_error(int type, int plen, void *ctxt)
129 {
130         log("auth: protocol error: type %d plen %d", type, plen);
131         packet_start(SSH2_MSG_UNIMPLEMENTED);
132         packet_put_int(0);
133         packet_send();
134         packet_write_wait();
135 }
136
137 void
138 input_service_request(int type, int plen, void *ctxt)
139 {
140         Authctxt *authctxt = ctxt;
141         u_int len;
142         int accept = 0;
143         char *service = packet_get_string(&len);
144         packet_done();
145
146         if (authctxt == NULL)
147                 fatal("input_service_request: no authctxt");
148
149         if (strcmp(service, "ssh-userauth") == 0) {
150                 if (!authctxt->success) {
151                         accept = 1;
152                         /* now we can handle user-auth requests */
153                         dispatch_set(SSH2_MSG_USERAUTH_REQUEST, &input_userauth_request);
154                 }
155         }
156         /* XXX all other service requests are denied */
157
158         if (accept) {
159                 packet_start(SSH2_MSG_SERVICE_ACCEPT);
160                 packet_put_cstring(service);
161                 packet_send();
162                 packet_write_wait();
163         } else {
164                 debug("bad service request %s", service);
165                 packet_disconnect("bad service request %s", service);
166         }
167         xfree(service);
168 }
169
170 void
171 input_userauth_request(int type, int plen, void *ctxt)
172 {
173         Authctxt *authctxt = ctxt;
174         Authmethod *m = NULL;
175         char *user, *service, *method, *style = NULL;
176         int authenticated = 0;
177
178         if (authctxt == NULL)
179                 fatal("input_userauth_request: no authctxt");
180
181         user = packet_get_string(NULL);
182         service = packet_get_string(NULL);
183         method = packet_get_string(NULL);
184         debug("userauth-request for user %s service %s method %s", user, service, method);
185         debug("attempt %d failures %d", authctxt->attempt, authctxt->failures);
186
187         if ((style = strchr(user, ':')) != NULL)
188                 *style++ = 0;
189
190         if (authctxt->attempt++ == 0) {
191                 /* setup auth context */
192                 struct passwd *pw = NULL;
193                 pw = getpwnam(user);
194                 if (pw && allowed_user(pw) && strcmp(service, "ssh-connection")==0) {
195                         authctxt->pw = pwcopy(pw);
196                         authctxt->valid = 1;
197                         debug2("input_userauth_request: setting up authctxt for %s", user);
198 #ifdef USE_PAM
199                         start_pam(pw->pw_name);
200 #endif
201                 } else {
202                         log("input_userauth_request: illegal user %s", user);
203 #ifdef USE_PAM
204                         start_pam("NOUSER");
205 #endif
206                 }
207                 setproctitle("%s", pw ? user : "unknown");
208                 authctxt->user = xstrdup(user);
209                 authctxt->service = xstrdup(service);
210                 authctxt->style = style ? xstrdup(style) : NULL; /* currently unused */
211         } else if (authctxt->valid) {
212                 if (strcmp(user, authctxt->user) != 0 ||
213                     strcmp(service, authctxt->service) != 0) {
214                         log("input_userauth_request: missmatch: (%s,%s)!=(%s,%s)",
215                             user, service, authctxt->user, authctxt->service);
216                         authctxt->valid = 0;
217                 }
218         }
219         /* reset state */
220         dispatch_set(SSH2_MSG_USERAUTH_INFO_RESPONSE, &protocol_error);
221         authctxt->postponed = 0;
222 #ifdef BSD_AUTH
223         if (authctxt->as) {
224                 auth_close(authctxt->as);
225                 authctxt->as = NULL;
226         }
227 #endif
228
229         /* try to authenticate user */
230         m = authmethod_lookup(method);
231         if (m != NULL) {
232                 debug2("input_userauth_request: try method %s", method);
233                 authenticated = m->userauth(authctxt);
234         }
235         userauth_finish(authctxt, authenticated, method);
236
237         xfree(service);
238         xfree(user);
239         xfree(method);
240 }
241
242 void
243 userauth_finish(Authctxt *authctxt, int authenticated, char *method)
244 {
245         if (!authctxt->valid && authenticated)
246                 fatal("INTERNAL ERROR: authenticated invalid user %s",
247                     authctxt->user);
248
249         /* Special handling for root */
250         if (authenticated && authctxt->pw->pw_uid == 0 &&
251             !auth_root_allowed(method))
252                 authenticated = 0;
253
254 #ifdef USE_PAM
255         if (authenticated && authctxt->user && !do_pam_account(authctxt->user,
256             NULL))
257                 authenticated = 0;
258 #endif /* USE_PAM */
259
260         /* Log before sending the reply */
261         auth_log(authctxt, authenticated, method, " ssh2");
262
263         if (!authctxt->postponed)
264                 userauth_reply(authctxt, authenticated);
265 }
266
267 void
268 userauth_banner(void)
269 {
270         struct stat st;
271         char *banner = NULL;
272         off_t len, n;
273         int fd;
274
275         if (options.banner == NULL || (datafellows & SSH_BUG_BANNER))
276                 return;
277         if ((fd = open(options.banner, O_RDONLY)) < 0)
278                 return;
279         if (fstat(fd, &st) < 0)
280                 goto done;
281         len = st.st_size;
282         banner = xmalloc(len + 1);
283         if ((n = read(fd, banner, len)) < 0)
284                 goto done;
285         banner[n] = '\0';
286         packet_start(SSH2_MSG_USERAUTH_BANNER);
287         packet_put_cstring(banner);
288         packet_put_cstring("");         /* language, unused */
289         packet_send();
290         debug("userauth_banner: sent");
291 done:
292         if (banner)
293                 xfree(banner);
294         close(fd);
295         return;
296 }
297
298 void
299 userauth_reply(Authctxt *authctxt, int authenticated)
300 {
301         char *methods;
302
303         /* XXX todo: check if multiple auth methods are needed */
304         if (authenticated == 1) {
305 #ifdef WITH_AIXAUTHENTICATE
306                 /* We don't have a pty yet, so just label the line as "ssh" */
307                 if (loginsuccess(authctxt->user?authctxt->user:"NOUSER",
308                     get_canonical_hostname(options.reverse_mapping_check),
309                     "ssh", &aixloginmsg) < 0)
310                         aixloginmsg = NULL;
311 #endif /* WITH_AIXAUTHENTICATE */
312                 /* turn off userauth */
313                 dispatch_set(SSH2_MSG_USERAUTH_REQUEST, &protocol_error);
314                 packet_start(SSH2_MSG_USERAUTH_SUCCESS);
315                 packet_send();
316                 packet_write_wait();
317                 /* now we can break out */
318                 authctxt->success = 1;
319         } else {
320                 if (authctxt->failures++ > AUTH_FAIL_MAX)
321                         packet_disconnect(AUTH_FAIL_MSG, authctxt->user);
322                 methods = authmethods_get();
323                 packet_start(SSH2_MSG_USERAUTH_FAILURE);
324                 packet_put_cstring(methods);
325                 packet_put_char(0);     /* XXX partial success, unused */
326                 packet_send();
327                 packet_write_wait();
328                 xfree(methods);
329         }
330 }
331
332 int
333 userauth_none(Authctxt *authctxt)
334 {
335         /* disable method "none", only allowed one time */
336         Authmethod *m = authmethod_lookup("none");
337         if (m != NULL)
338                 m->enabled = NULL;
339         packet_done();
340         userauth_banner();
341
342         if (authctxt->valid == 0)
343                 return(0);
344
345 #ifdef HAVE_CYGWIN
346         if (check_nt_auth(1, authctxt->pw->pw_uid) == 0)
347                 return(0);
348 #endif
349 #ifdef USE_PAM
350         return auth_pam_password(authctxt->pw, "");
351 #elif defined(HAVE_OSF_SIA)
352         return 0;
353 #else /* !HAVE_OSF_SIA && !USE_PAM */
354         return auth_password(authctxt, "");
355 #endif /* USE_PAM */
356 }
357
358 int
359 userauth_passwd(Authctxt *authctxt)
360 {
361         char *password;
362         int authenticated = 0;
363         int change;
364         u_int len;
365         change = packet_get_char();
366         if (change)
367                 log("password change not supported");
368         password = packet_get_string(&len);
369         packet_done();
370         if (authctxt->valid &&
371 #ifdef HAVE_CYGWIN
372                 check_nt_auth(1, authctxt->pw->pw_uid) &&
373 #endif
374 #ifdef USE_PAM
375             auth_pam_password(authctxt->pw, password) == 1)
376 #elif defined(HAVE_OSF_SIA)
377             auth_sia_password(authctxt->user, password) == 1)
378 #else /* !USE_PAM && !HAVE_OSF_SIA */
379             auth_password(authctxt, password) == 1)
380 #endif /* USE_PAM */
381                 authenticated = 1;
382         memset(password, 0, len);
383         xfree(password);
384         return authenticated;
385 }
386
387 int
388 userauth_kbdint(Authctxt *authctxt)
389 {
390         int authenticated = 0;
391         char *lang = NULL;
392         char *devs = NULL;
393
394         lang = packet_get_string(NULL);
395         devs = packet_get_string(NULL);
396         packet_done();
397
398         debug("keyboard-interactive language %s devs %s", lang, devs);
399
400         if (options.challenge_reponse_authentication)
401                 authenticated = auth2_challenge(authctxt, devs);
402
403 #ifdef USE_PAM
404         if (authenticated == 0)
405                 authenticated = auth2_pam(authctxt);
406 #endif
407         xfree(lang);
408         xfree(devs);
409 #ifdef HAVE_CYGWIN
410         if (check_nt_auth(0, authctxt->pw->pw_uid) == 0)
411                 return(0);
412 #endif
413         return authenticated;
414 }
415
416 int
417 userauth_pubkey(Authctxt *authctxt)
418 {
419         Buffer b;
420         Key *key;
421         char *pkalg, *pkblob, *sig;
422         u_int alen, blen, slen;
423         int have_sig, pktype;
424         int authenticated = 0;
425
426         if (!authctxt->valid) {
427                 debug2("userauth_pubkey: disabled because of invalid user");
428                 return 0;
429         }
430         have_sig = packet_get_char();
431         if (datafellows & SSH_BUG_PKAUTH) {
432                 debug2("userauth_pubkey: SSH_BUG_PKAUTH");
433                 /* no explicit pkalg given */
434                 pkblob = packet_get_string(&blen);
435                 buffer_init(&b);
436                 buffer_append(&b, pkblob, blen);
437                 /* so we have to extract the pkalg from the pkblob */
438                 pkalg = buffer_get_string(&b, &alen);
439                 buffer_free(&b);
440         } else {
441                 pkalg = packet_get_string(&alen);
442                 pkblob = packet_get_string(&blen);
443         }
444         pktype = key_type_from_name(pkalg);
445         if (pktype == KEY_UNSPEC) {
446                 /* this is perfectly legal */
447                 log("userauth_pubkey: unsupported public key algorithm: %s", pkalg);
448                 xfree(pkalg);
449                 xfree(pkblob);
450                 return 0;
451         }
452         key = key_from_blob(pkblob, blen);
453         if (key != NULL) {
454                 if (have_sig) {
455                         sig = packet_get_string(&slen);
456                         packet_done();
457                         buffer_init(&b);
458                         if (datafellows & SSH_OLD_SESSIONID) {
459                                 buffer_append(&b, session_id2, session_id2_len);
460                         } else {
461                                 buffer_put_string(&b, session_id2, session_id2_len);
462                         }
463                         /* reconstruct packet */
464                         buffer_put_char(&b, SSH2_MSG_USERAUTH_REQUEST);
465                         buffer_put_cstring(&b, authctxt->user);
466                         buffer_put_cstring(&b,
467                             datafellows & SSH_BUG_PKSERVICE ?
468                             "ssh-userauth" :
469                             authctxt->service);
470                         if (datafellows & SSH_BUG_PKAUTH) {
471                                 buffer_put_char(&b, have_sig);
472                         } else {
473                                 buffer_put_cstring(&b, "publickey");
474                                 buffer_put_char(&b, have_sig);
475                                 buffer_put_cstring(&b, key_ssh_name(key));
476                         }
477                         buffer_put_string(&b, pkblob, blen);
478 #ifdef DEBUG_PK
479                         buffer_dump(&b);
480 #endif
481                         /* test for correct signature */
482                         if (user_key_allowed(authctxt->pw, key) &&
483                             key_verify(key, sig, slen, buffer_ptr(&b), buffer_len(&b)) == 1)
484                                 authenticated = 1;
485                         buffer_clear(&b);
486                         xfree(sig);
487                 } else {
488                         debug("test whether pkalg/pkblob are acceptable");
489                         packet_done();
490
491                         /* XXX fake reply and always send PK_OK ? */
492                         /*
493                          * XXX this allows testing whether a user is allowed
494                          * to login: if you happen to have a valid pubkey this
495                          * message is sent. the message is NEVER sent at all
496                          * if a user is not allowed to login. is this an
497                          * issue? -markus
498                          */
499                         if (user_key_allowed(authctxt->pw, key)) {
500                                 packet_start(SSH2_MSG_USERAUTH_PK_OK);
501                                 packet_put_string(pkalg, alen);
502                                 packet_put_string(pkblob, blen);
503                                 packet_send();
504                                 packet_write_wait();
505                                 authctxt->postponed = 1;
506                         }
507                 }
508                 if (authenticated != 1)
509                         auth_clear_options();
510                 key_free(key);
511         }
512         debug2("userauth_pubkey: authenticated %d pkalg %s", authenticated, pkalg);
513         xfree(pkalg);
514         xfree(pkblob);
515 #ifdef HAVE_CYGWIN
516         if (check_nt_auth(0, authctxt->pw->pw_uid) == 0)
517                 return(0);
518 #endif
519         return authenticated;
520 }
521
522 /* get current user */
523
524 struct passwd*
525 auth_get_user(void)
526 {
527         return (x_authctxt != NULL && x_authctxt->valid) ? x_authctxt->pw : NULL;
528 }
529
530 #define DELIM   ","
531
532 char *
533 authmethods_get(void)
534 {
535         Authmethod *method = NULL;
536         u_int size = 0;
537         char *list;
538
539         for (method = authmethods; method->name != NULL; method++) {
540                 if (strcmp(method->name, "none") == 0)
541                         continue;
542                 if (method->enabled != NULL && *(method->enabled) != 0) {
543                         if (size != 0)
544                                 size += strlen(DELIM);
545                         size += strlen(method->name);
546                 }
547         }
548         size++;                 /* trailing '\0' */
549         list = xmalloc(size);
550         list[0] = '\0';
551
552         for (method = authmethods; method->name != NULL; method++) {
553                 if (strcmp(method->name, "none") == 0)
554                         continue;
555                 if (method->enabled != NULL && *(method->enabled) != 0) {
556                         if (list[0] != '\0')
557                                 strlcat(list, DELIM, size);
558                         strlcat(list, method->name, size);
559                 }
560         }
561         return list;
562 }
563
564 Authmethod *
565 authmethod_lookup(const char *name)
566 {
567         Authmethod *method = NULL;
568         if (name != NULL)
569                 for (method = authmethods; method->name != NULL; method++)
570                         if (method->enabled != NULL &&
571                             *(method->enabled) != 0 &&
572                             strcmp(name, method->name) == 0)
573                                 return method;
574         debug2("Unrecognized authentication method name: %s", name ? name : "NULL");
575         return NULL;
576 }
577
578 /* return 1 if user allows given key */
579 int
580 user_key_allowed(struct passwd *pw, Key *key)
581 {
582         char line[8192], file[MAXPATHLEN];
583         int found_key = 0;
584         FILE *f;
585         u_long linenum = 0;
586         struct stat st;
587         Key *found;
588
589         if (pw == NULL)
590                 return 0;
591
592         /* Temporarily use the user's uid. */
593         temporarily_use_uid(pw->pw_uid);
594
595         /* The authorized keys. */
596         snprintf(file, sizeof file, "%.500s/%.100s", pw->pw_dir,
597             _PATH_SSH_USER_PERMITTED_KEYS2);
598
599         /* Fail quietly if file does not exist */
600         if (stat(file, &st) < 0) {
601                 /* Restore the privileged uid. */
602                 restore_uid();
603                 return 0;
604         }
605         /* Open the file containing the authorized keys. */
606         f = fopen(file, "r");
607         if (!f) {
608                 /* Restore the privileged uid. */
609                 restore_uid();
610                 return 0;
611         }
612         if (options.strict_modes) {
613                 int fail = 0;
614                 char buf[1024];
615                 /* Check open file in order to avoid open/stat races */
616                 if (fstat(fileno(f), &st) < 0 ||
617                     (st.st_uid != 0 && st.st_uid != pw->pw_uid) ||
618                     (st.st_mode & 022) != 0) {
619                         snprintf(buf, sizeof buf,
620                             "%s authentication refused for %.100s: "
621                             "bad ownership or modes for '%s'.",
622                             key_type(key), pw->pw_name, file);
623                         fail = 1;
624                 } else {
625                         /* Check path to _PATH_SSH_USER_PERMITTED_KEYS */
626                         int i;
627                         static const char *check[] = {
628                                 "", _PATH_SSH_USER_DIR, NULL
629                         };
630                         for (i = 0; check[i]; i++) {
631                                 snprintf(line, sizeof line, "%.500s/%.100s",
632                                     pw->pw_dir, check[i]);
633                                 if (stat(line, &st) < 0 ||
634                                     (st.st_uid != 0 && st.st_uid != pw->pw_uid) ||
635                                     (st.st_mode & 022) != 0) {
636                                         snprintf(buf, sizeof buf,
637                                             "%s authentication refused for %.100s: "
638                                             "bad ownership or modes for '%s'.",
639                                             key_type(key), pw->pw_name, line);
640                                         fail = 1;
641                                         break;
642                                 }
643                         }
644                 }
645                 if (fail) {
646                         fclose(f);
647                         log("%s", buf);
648                         restore_uid();
649                         return 0;
650                 }
651         }
652         found_key = 0;
653         found = key_new(key->type);
654
655         while (fgets(line, sizeof(line), f)) {
656                 char *cp, *options = NULL;
657                 linenum++;
658                 /* Skip leading whitespace, empty and comment lines. */
659                 for (cp = line; *cp == ' ' || *cp == '\t'; cp++)
660                         ;
661                 if (!*cp || *cp == '\n' || *cp == '#')
662                         continue;
663
664                 if (key_read(found, &cp) == -1) {
665                         /* no key?  check if there are options for this key */
666                         int quoted = 0;
667                         debug2("user_key_allowed: check options: '%s'", cp);
668                         options = cp;
669                         for (; *cp && (quoted || (*cp != ' ' && *cp != '\t')); cp++) {
670                                 if (*cp == '\\' && cp[1] == '"')
671                                         cp++;   /* Skip both */
672                                 else if (*cp == '"')
673                                         quoted = !quoted;
674                         }
675                         /* Skip remaining whitespace. */
676                         for (; *cp == ' ' || *cp == '\t'; cp++)
677                                 ;
678                         if (key_read(found, &cp) == -1) {
679                                 debug2("user_key_allowed: advance: '%s'", cp);
680                                 /* still no key?  advance to next line*/
681                                 continue;
682                         }
683                 }
684                 if (key_equal(found, key) &&
685                     auth_parse_options(pw, options, file, linenum) == 1) {
686                         found_key = 1;
687                         debug("matching key found: file %s, line %ld",
688                             file, linenum);
689                         break;
690                 }
691         }
692         restore_uid();
693         fclose(f);
694         key_free(found);
695         if (!found_key)
696                 debug2("key not found");
697         return found_key;
698 }
This page took 0.097414 seconds and 5 git commands to generate.