blob: f455bdde315b9ebc6e179177d346f9fbc9fa5dc0 [file] [log] [blame]
Darren Tucker1a3d6e72006-08-05 18:46:47 +10001/* $OpenBSD: auth2-none.c,v 1.13 2006/08/05 07:52:52 dtucker Exp $ */
Ben Lindstrom855bf3a2002-06-06 20:27:55 +00002/*
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 Millerf17883e2006-03-15 11:45:54 +110027
28#include <sys/types.h>
29#include <sys/stat.h>
Darren Tucker1a3d6e72006-08-05 18:46:47 +100030#include <sys/uio.h>
Ben Lindstrom855bf3a2002-06-06 20:27:55 +000031
Damien Miller57cf6382006-07-10 21:13:46 +100032#include <fcntl.h>
Damien Miller75bb6642006-08-05 14:07:20 +100033#include <unistd.h>
Damien Miller57cf6382006-07-10 21:13:46 +100034
Ben Lindstrom855bf3a2002-06-06 20:27:55 +000035#include "xmalloc.h"
Damien Millerd7834352006-08-05 12:39:39 +100036#include "key.h"
37#include "hostfile.h"
38#include "auth.h"
Ben Lindstrom855bf3a2002-06-06 20:27:55 +000039#include "packet.h"
40#include "log.h"
Damien Millerd7834352006-08-05 12:39:39 +100041#include "buffer.h"
Ben Lindstrom855bf3a2002-06-06 20:27:55 +000042#include "servconf.h"
43#include "atomicio.h"
44#include "compat.h"
45#include "ssh2.h"
Damien Millerd7834352006-08-05 12:39:39 +100046#ifdef GSSAPI
47#include "ssh-gss.h"
48#endif
Ben Lindstrom855bf3a2002-06-06 20:27:55 +000049#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;
Darren Tucker1f8311c2004-05-13 16:39:33 +100062 size_t len, n;
Ben Lindstrom855bf3a2002-06-06 20:27:55 +000063 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 }
Darren Tucker1f8311c2004-05-13 16:39:33 +100071 if (st.st_size > 1*1024*1024) {
72 close(fd);
73 return (NULL);
74 }
75
76 len = (size_t)st.st_size; /* truncate */
Ben Lindstrom855bf3a2002-06-06 20:27:55 +000077 banner = xmalloc(len + 1);
78 n = atomicio(read, fd, banner, len);
79 close(fd);
80
81 if (n != len) {
Ben Lindstromeec16fc2002-07-04 00:06:15 +000082 xfree(banner);
Ben Lindstrom855bf3a2002-06-06 20:27:55 +000083 return (NULL);
84 }
85 banner[n] = '\0';
Ben Lindstromcb72e4f2002-06-21 00:41:51 +000086
Ben Lindstrom855bf3a2002-06-06 20:27:55 +000087 return (banner);
88}
89
Darren Tucker77fc29e2004-09-11 23:07:03 +100090void
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
Ben Lindstrom855bf3a2002-06-06 20:27:55 +0000103static 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;
Darren Tucker77fc29e2004-09-11 23:07:03 +1000113 userauth_send_banner(banner);
Ben Lindstrom855bf3a2002-06-06 20:27:55 +0000114
Ben Lindstrom855bf3a2002-06-06 20:27:55 +0000115done:
116 if (banner)
117 xfree(banner);
Ben Lindstrom855bf3a2002-06-06 20:27:55 +0000118}
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)
Damien Miller47656792004-09-11 22:42:09 +1000128 return (0);
Ben Lindstrom855bf3a2002-06-06 20:27:55 +0000129#endif
Damien Miller856f0be2003-09-03 07:32:45 +1000130 if (options.password_authentication)
Darren Tucker4b609662003-08-03 00:05:01 +1000131 return (PRIVSEP(auth_password(authctxt, "")));
132 return (0);
Ben Lindstrom855bf3a2002-06-06 20:27:55 +0000133}
134
135Authmethod method_none = {
136 "none",
137 userauth_none,
138 &none_enabled
139};