]> andersk Git - openssh.git/blame - auth2-none.c
- (dtucker) [contrib/cygwin/ssh-host-config] Add SeTcbPrivilege privilege
[openssh.git] / auth2-none.c
CommitLineData
428f6258 1/* $OpenBSD: auth2-none.c,v 1.13 2006/08/05 07:52:52 dtucker Exp $ */
013eab17 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"
4095f623 27
28#include <sys/types.h>
29#include <sys/stat.h>
428f6258 30#include <sys/uio.h>
013eab17 31
d3221cca 32#include <fcntl.h>
00a017bd 33#include <unistd.h>
d3221cca 34
013eab17 35#include "xmalloc.h"
31652869 36#include "key.h"
37#include "hostfile.h"
38#include "auth.h"
013eab17 39#include "packet.h"
40#include "log.h"
31652869 41#include "buffer.h"
013eab17 42#include "servconf.h"
43#include "atomicio.h"
44#include "compat.h"
45#include "ssh2.h"
31652869 46#ifdef GSSAPI
47#include "ssh-gss.h"
48#endif
013eab17 49#include "monitor_wrap.h"
50
51/* import */
52extern ServerOptions options;
53
54/* "none" is allowed only one time */
55static int none_enabled = 1;
56
57char *
58auth2_read_banner(void)
59{
60 struct stat st;
61 char *banner = NULL;
f6be21a0 62 size_t len, n;
013eab17 63 int fd;
64
65 if ((fd = open(options.banner, O_RDONLY)) == -1)
66 return (NULL);
67 if (fstat(fd, &st) == -1) {
68 close(fd);
69 return (NULL);
70 }
f6be21a0 71 if (st.st_size > 1*1024*1024) {
72 close(fd);
73 return (NULL);
74 }
75
76 len = (size_t)st.st_size; /* truncate */
013eab17 77 banner = xmalloc(len + 1);
78 n = atomicio(read, fd, banner, len);
79 close(fd);
80
81 if (n != len) {
30e37ee6 82 xfree(banner);
013eab17 83 return (NULL);
84 }
85 banner[n] = '\0';
7203d6bb 86
013eab17 87 return (banner);
88}
89
ba6dd90e 90void
91userauth_send_banner(const char *msg)
92{
93 if (datafellows & SSH_BUG_BANNER)
94 return;
95
96 packet_start(SSH2_MSG_USERAUTH_BANNER);
97 packet_put_cstring(msg);
98 packet_put_cstring(""); /* language, unused */
99 packet_send();
100 debug("%s: sent", __func__);
101}
102
013eab17 103static void
104userauth_banner(void)
105{
106 char *banner = NULL;
107
108 if (options.banner == NULL || (datafellows & SSH_BUG_BANNER))
109 return;
110
111 if ((banner = PRIVSEP(auth2_read_banner())) == NULL)
112 goto done;
ba6dd90e 113 userauth_send_banner(banner);
013eab17 114
013eab17 115done:
116 if (banner)
117 xfree(banner);
013eab17 118}
119
120static int
121userauth_none(Authctxt *authctxt)
122{
123 none_enabled = 0;
124 packet_check_eom();
125 userauth_banner();
126#ifdef HAVE_CYGWIN
127 if (check_nt_auth(1, authctxt->pw) == 0)
73b1ee82 128 return (0);
013eab17 129#endif
96d0bf74 130 if (options.password_authentication)
0f57e1e6 131 return (PRIVSEP(auth_password(authctxt, "")));
132 return (0);
013eab17 133}
134
135Authmethod method_none = {
136 "none",
137 userauth_none,
138 &none_enabled
139};
This page took 3.84641 seconds and 5 git commands to generate.