Damien Miller | 57c3011 | 2006-03-26 14:24:48 +1100 | [diff] [blame] | 1 | /* $OpenBSD: auth2-none.c,v 1.10 2006/03/25 13:17:01 djm Exp $ */ |
Ben Lindstrom | 855bf3a | 2002-06-06 20:27:55 +0000 | [diff] [blame] | 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" |
Damien Miller | f17883e | 2006-03-15 11:45:54 +1100 | [diff] [blame] | 27 | |
| 28 | #include <sys/types.h> |
| 29 | #include <sys/stat.h> |
Ben Lindstrom | 855bf3a | 2002-06-06 20:27:55 +0000 | [diff] [blame] | 30 | |
| 31 | #include "auth.h" |
| 32 | #include "xmalloc.h" |
| 33 | #include "packet.h" |
| 34 | #include "log.h" |
| 35 | #include "servconf.h" |
| 36 | #include "atomicio.h" |
| 37 | #include "compat.h" |
| 38 | #include "ssh2.h" |
| 39 | #include "monitor_wrap.h" |
| 40 | |
| 41 | /* import */ |
| 42 | extern ServerOptions options; |
| 43 | |
| 44 | /* "none" is allowed only one time */ |
| 45 | static int none_enabled = 1; |
| 46 | |
| 47 | char * |
| 48 | auth2_read_banner(void) |
| 49 | { |
| 50 | struct stat st; |
| 51 | char *banner = NULL; |
Darren Tucker | 1f8311c | 2004-05-13 16:39:33 +1000 | [diff] [blame] | 52 | size_t len, n; |
Ben Lindstrom | 855bf3a | 2002-06-06 20:27:55 +0000 | [diff] [blame] | 53 | int fd; |
| 54 | |
| 55 | if ((fd = open(options.banner, O_RDONLY)) == -1) |
| 56 | return (NULL); |
| 57 | if (fstat(fd, &st) == -1) { |
| 58 | close(fd); |
| 59 | return (NULL); |
| 60 | } |
Darren Tucker | 1f8311c | 2004-05-13 16:39:33 +1000 | [diff] [blame] | 61 | if (st.st_size > 1*1024*1024) { |
| 62 | close(fd); |
| 63 | return (NULL); |
| 64 | } |
| 65 | |
| 66 | len = (size_t)st.st_size; /* truncate */ |
Ben Lindstrom | 855bf3a | 2002-06-06 20:27:55 +0000 | [diff] [blame] | 67 | banner = xmalloc(len + 1); |
| 68 | n = atomicio(read, fd, banner, len); |
| 69 | close(fd); |
| 70 | |
| 71 | if (n != len) { |
Ben Lindstrom | eec16fc | 2002-07-04 00:06:15 +0000 | [diff] [blame] | 72 | xfree(banner); |
Ben Lindstrom | 855bf3a | 2002-06-06 20:27:55 +0000 | [diff] [blame] | 73 | return (NULL); |
| 74 | } |
| 75 | banner[n] = '\0'; |
Ben Lindstrom | cb72e4f | 2002-06-21 00:41:51 +0000 | [diff] [blame] | 76 | |
Ben Lindstrom | 855bf3a | 2002-06-06 20:27:55 +0000 | [diff] [blame] | 77 | return (banner); |
| 78 | } |
| 79 | |
Darren Tucker | 77fc29e | 2004-09-11 23:07:03 +1000 | [diff] [blame] | 80 | void |
| 81 | userauth_send_banner(const char *msg) |
| 82 | { |
| 83 | if (datafellows & SSH_BUG_BANNER) |
| 84 | return; |
| 85 | |
| 86 | packet_start(SSH2_MSG_USERAUTH_BANNER); |
| 87 | packet_put_cstring(msg); |
| 88 | packet_put_cstring(""); /* language, unused */ |
| 89 | packet_send(); |
| 90 | debug("%s: sent", __func__); |
| 91 | } |
| 92 | |
Ben Lindstrom | 855bf3a | 2002-06-06 20:27:55 +0000 | [diff] [blame] | 93 | static void |
| 94 | userauth_banner(void) |
| 95 | { |
| 96 | char *banner = NULL; |
| 97 | |
| 98 | if (options.banner == NULL || (datafellows & SSH_BUG_BANNER)) |
| 99 | return; |
| 100 | |
| 101 | if ((banner = PRIVSEP(auth2_read_banner())) == NULL) |
| 102 | goto done; |
Darren Tucker | 77fc29e | 2004-09-11 23:07:03 +1000 | [diff] [blame] | 103 | userauth_send_banner(banner); |
Ben Lindstrom | 855bf3a | 2002-06-06 20:27:55 +0000 | [diff] [blame] | 104 | |
Ben Lindstrom | 855bf3a | 2002-06-06 20:27:55 +0000 | [diff] [blame] | 105 | done: |
| 106 | if (banner) |
| 107 | xfree(banner); |
Ben Lindstrom | 855bf3a | 2002-06-06 20:27:55 +0000 | [diff] [blame] | 108 | } |
| 109 | |
| 110 | static int |
| 111 | userauth_none(Authctxt *authctxt) |
| 112 | { |
| 113 | none_enabled = 0; |
| 114 | packet_check_eom(); |
| 115 | userauth_banner(); |
| 116 | #ifdef HAVE_CYGWIN |
| 117 | if (check_nt_auth(1, authctxt->pw) == 0) |
Damien Miller | 4765679 | 2004-09-11 22:42:09 +1000 | [diff] [blame] | 118 | return (0); |
Ben Lindstrom | 855bf3a | 2002-06-06 20:27:55 +0000 | [diff] [blame] | 119 | #endif |
Damien Miller | 856f0be | 2003-09-03 07:32:45 +1000 | [diff] [blame] | 120 | if (options.password_authentication) |
Darren Tucker | 4b60966 | 2003-08-03 00:05:01 +1000 | [diff] [blame] | 121 | return (PRIVSEP(auth_password(authctxt, ""))); |
| 122 | return (0); |
Ben Lindstrom | 855bf3a | 2002-06-06 20:27:55 +0000 | [diff] [blame] | 123 | } |
| 124 | |
| 125 | Authmethod method_none = { |
| 126 | "none", |
| 127 | userauth_none, |
| 128 | &none_enabled |
| 129 | }; |