blob: ea07eef23be6afbb302ecd334d966fa5fda0dcff [file] [log] [blame]
markus@openbsd.org2ae666a2017-05-30 14:23:52 +00001/* $OpenBSD: serverloop.c,v 1.192 2017/05/30 14:23:52 markus Exp $ */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002/*
Damien Miller95def091999-11-25 00:26:21 +11003 * Author: Tatu Ylonen <ylo@cs.hut.fi>
4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
5 * All rights reserved
Damien Miller95def091999-11-25 00:26:21 +11006 * Server main loop for handling the interactive session.
Damien Millere4340be2000-09-16 13:29:08 +11007 *
8 * As far as I am concerned, the code I have written for this software
9 * can be used freely for any purpose. Any derived versions of this
10 * software must be clearly marked as such, and if the derived work is
11 * incompatible with the protocol description in the RFC file, it must be
12 * called by a name other than "ssh" or "Secure Shell".
13 *
Damien Millerefb4afe2000-04-12 18:45:05 +100014 * SSH2 support by Markus Friedl.
Ben Lindstrom44697232001-07-04 03:32:30 +000015 * Copyright (c) 2000, 2001 Markus Friedl. All rights reserved.
Damien Millere4340be2000-09-16 13:29:08 +110016 *
17 * Redistribution and use in source and binary forms, with or without
18 * modification, are permitted provided that the following conditions
19 * are met:
20 * 1. Redistributions of source code must retain the above copyright
21 * notice, this list of conditions and the following disclaimer.
22 * 2. Redistributions in binary form must reproduce the above copyright
23 * notice, this list of conditions and the following disclaimer in the
24 * documentation and/or other materials provided with the distribution.
25 *
26 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
27 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
28 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
29 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
30 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
31 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
32 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
33 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
34 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
35 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Damien Millerefb4afe2000-04-12 18:45:05 +100036 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100037
38#include "includes.h"
Damien Miller9cf6d072006-03-15 11:29:24 +110039
40#include <sys/types.h>
41#include <sys/wait.h>
Damien Miller8ec8c3e2006-07-10 20:35:38 +100042#include <sys/socket.h>
Damien Miller9aec9192006-08-05 10:57:45 +100043#ifdef HAVE_SYS_TIME_H
44# include <sys/time.h>
45#endif
Damien Miller8ec8c3e2006-07-10 20:35:38 +100046
47#include <netinet/in.h>
Damien Miller99bd21e2006-03-15 11:11:28 +110048
Darren Tucker39972492006-07-12 22:22:46 +100049#include <errno.h>
Damien Miller57cf6382006-07-10 21:13:46 +100050#include <fcntl.h>
Damien Miller9f2abc42006-07-10 20:53:08 +100051#include <pwd.h>
Damien Miller6ff3cad2006-03-15 11:52:09 +110052#include <signal.h>
Damien Millere3476ed2006-07-24 14:13:33 +100053#include <string.h>
Damien Miller99bd21e2006-03-15 11:11:28 +110054#include <termios.h>
Damien Miller1cdde6f2006-07-24 14:07:35 +100055#include <unistd.h>
Damien Millerd7834352006-08-05 12:39:39 +100056#include <stdarg.h>
Damien Miller69b69aa2000-10-28 14:19:58 +110057
Damien Millerb84886b2008-05-19 15:05:07 +100058#include "openbsd-compat/sys-queue.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100059#include "xmalloc.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100060#include "packet.h"
61#include "buffer.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000062#include "log.h"
Damien Miller7acefbb2014-07-18 14:11:24 +100063#include "misc.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100064#include "servconf.h"
Damien Miller16aed052002-09-22 01:26:27 +100065#include "canohost.h"
Ben Lindstromd95c09c2001-02-18 19:13:33 +000066#include "sshpty.h"
Ben Lindstromc7637672001-06-09 00:36:26 +000067#include "channels.h"
Damien Millerb38eff82000-04-01 11:09:21 +100068#include "compat.h"
Damien Millerefb4afe2000-04-12 18:45:05 +100069#include "ssh2.h"
Damien Millerd7834352006-08-05 12:39:39 +100070#include "key.h"
71#include "cipher.h"
72#include "kex.h"
73#include "hostfile.h"
Ben Lindstromdb65e8f2001-01-19 04:26:52 +000074#include "auth.h"
Damien Millerefb4afe2000-04-12 18:45:05 +100075#include "session.h"
Damien Millerb38eff82000-04-01 11:09:21 +100076#include "dispatch.h"
Damien Millerf6d9e222000-06-18 14:50:44 +100077#include "auth-options.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000078#include "serverloop.h"
djm@openbsd.org523463a2015-02-16 22:13:32 +000079#include "ssherr.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100080
Damien Miller50a41ed2000-10-16 12:14:42 +110081extern ServerOptions options;
82
Ben Lindstrom8ac91062001-04-04 17:57:54 +000083/* XXX */
Darren Tucker3e33cec2003-10-02 16:12:36 +100084extern Authctxt *the_authctxt;
Damien Miller24ecf612005-11-05 15:16:52 +110085extern int use_privsep;
Ben Lindstrom8ac91062001-04-04 17:57:54 +000086
Darren Tucker8901fa92008-06-11 09:34:01 +100087static int no_more_sessions = 0; /* Disallow further sessions. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100088
Damien Miller5428f641999-11-25 11:54:57 +110089/*
90 * This SIGCHLD kludge is used to detect when the child exits. The server
91 * will exit after that, as soon as forwarded connections have terminated.
92 */
Ben Lindstrombba81212001-06-25 05:01:22 +000093
Ben Lindstrom5e71c542001-12-06 16:48:14 +000094static volatile sig_atomic_t child_terminated = 0; /* The child has terminated. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100095
Damien Miller24ecf612005-11-05 15:16:52 +110096/* Cleanup on signals (!use_privsep case only) */
97static volatile sig_atomic_t received_sigterm = 0;
98
Ben Lindstrombba81212001-06-25 05:01:22 +000099/* prototypes */
100static void server_init_dispatch(void);
Damien Millerb38eff82000-04-01 11:09:21 +1000101
Damien Millerf6681a32001-12-21 14:53:11 +1100102/*
103 * we write to this pipe if a SIGCHLD is caught in order to avoid
104 * the race between select() and child_terminated
105 */
106static int notify_pipe[2];
107static void
108notify_setup(void)
109{
110 if (pipe(notify_pipe) < 0) {
111 error("pipe(notify_pipe) failed %s", strerror(errno));
Damien Miller814ace02011-05-20 19:02:47 +1000112 } else if ((fcntl(notify_pipe[0], F_SETFD, FD_CLOEXEC) == -1) ||
113 (fcntl(notify_pipe[1], F_SETFD, FD_CLOEXEC) == -1)) {
Damien Millerf6681a32001-12-21 14:53:11 +1100114 error("fcntl(notify_pipe, F_SETFD) failed %s", strerror(errno));
115 close(notify_pipe[0]);
116 close(notify_pipe[1]);
117 } else {
118 set_nonblock(notify_pipe[0]);
119 set_nonblock(notify_pipe[1]);
120 return;
121 }
122 notify_pipe[0] = -1; /* read end */
123 notify_pipe[1] = -1; /* write end */
124}
125static void
126notify_parent(void)
127{
128 if (notify_pipe[1] != -1)
Darren Tuckerdbee3082013-05-16 20:32:29 +1000129 (void)write(notify_pipe[1], "", 1);
Damien Millerf6681a32001-12-21 14:53:11 +1100130}
131static void
132notify_prepare(fd_set *readset)
133{
134 if (notify_pipe[0] != -1)
135 FD_SET(notify_pipe[0], readset);
136}
137static void
138notify_done(fd_set *readset)
139{
140 char c;
141
142 if (notify_pipe[0] != -1 && FD_ISSET(notify_pipe[0], readset))
143 while (read(notify_pipe[0], &c, 1) != -1)
144 debug2("notify_done: reading");
145}
146
Damien Millerf0b15df2006-03-26 13:59:20 +1100147/*ARGSUSED*/
Ben Lindstrombba81212001-06-25 05:01:22 +0000148static void
Damien Miller95def091999-11-25 00:26:21 +1100149sigchld_handler(int sig)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000150{
Damien Miller95def091999-11-25 00:26:21 +1100151 int save_errno = errno;
Damien Millerefb4afe2000-04-12 18:45:05 +1000152 child_terminated = 1;
Tim Rice81ed5182002-09-25 17:38:46 -0700153#ifndef _UNICOS
Ben Lindstromec46e0b2001-06-09 01:27:31 +0000154 mysignal(SIGCHLD, sigchld_handler);
Tim Rice81ed5182002-09-25 17:38:46 -0700155#endif
Damien Millerf6681a32001-12-21 14:53:11 +1100156 notify_parent();
Damien Millerefb4afe2000-04-12 18:45:05 +1000157 errno = save_errno;
158}
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000159
Damien Millerf0b15df2006-03-26 13:59:20 +1100160/*ARGSUSED*/
Damien Miller24ecf612005-11-05 15:16:52 +1100161static void
162sigterm_handler(int sig)
163{
164 received_sigterm = sig;
165}
166
Damien Miller8c3902a2001-10-10 15:01:40 +1000167static void
168client_alive_check(void)
169{
Damien Millerb5820f42003-12-17 16:27:32 +1100170 int channel_id;
Damien Miller056cf732002-01-22 23:21:39 +1100171
Damien Miller8c3902a2001-10-10 15:01:40 +1000172 /* timeout, check to see how many we have had */
Darren Tuckerf7288d72009-06-21 18:12:20 +1000173 if (packet_inc_alive_timeouts() > options.client_alive_count_max) {
Damien Miller985a4482006-10-24 03:02:41 +1000174 logit("Timeout, client not responding.");
175 cleanup_exit(255);
176 }
Damien Miller8c3902a2001-10-10 15:01:40 +1000177
Damien Miller8c3902a2001-10-10 15:01:40 +1000178 /*
Damien Millerb5820f42003-12-17 16:27:32 +1100179 * send a bogus global/channel request with "wantreply",
Damien Miller8c3902a2001-10-10 15:01:40 +1000180 * we should get back a failure
181 */
Damien Millerb5820f42003-12-17 16:27:32 +1100182 if ((channel_id = channel_find_open()) == -1) {
183 packet_start(SSH2_MSG_GLOBAL_REQUEST);
184 packet_put_cstring("keepalive@openssh.com");
185 packet_put_char(1); /* boolean: want reply */
186 } else {
187 channel_request_start(channel_id, "keepalive@openssh.com", 1);
188 }
Damien Miller8c3902a2001-10-10 15:01:40 +1000189 packet_send();
190}
191
Damien Miller95def091999-11-25 00:26:21 +1100192/*
193 * Sleep in select() until we can do something. This will initialize the
194 * select masks. Upon return, the masks will indicate which descriptors
195 * have data or can accept data. Optionally, a maximum time can be specified
196 * for the duration of the wait (0 = infinite).
197 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000198static void
markus@openbsd.org6cb6dcf2016-08-13 17:47:40 +0000199wait_until_can_do_something(int connection_in, int connection_out,
200 fd_set **readsetp, fd_set **writesetp, int *maxfdp,
djm@openbsd.org988e4292016-03-04 03:35:44 +0000201 u_int *nallocp, u_int64_t max_time_ms)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000202{
Damien Miller95def091999-11-25 00:26:21 +1100203 struct timeval tv, *tvp;
204 int ret;
Damien Miller6c6da332012-06-20 22:31:26 +1000205 time_t minwait_secs = 0;
Ben Lindstrom5744dc42001-04-13 23:28:01 +0000206 int client_alive_scheduled = 0;
207
Damien Millera6508752012-04-22 11:21:10 +1000208 /* Allocate and update select() masks for channel descriptors. */
209 channel_prepare_select(readsetp, writesetp, maxfdp, nallocp,
210 &minwait_secs, 0);
211
djm@openbsd.org988e4292016-03-04 03:35:44 +0000212 /* XXX need proper deadline system for rekey/client alive */
Damien Millera6508752012-04-22 11:21:10 +1000213 if (minwait_secs != 0)
deraadt@openbsd.org9136ec12016-09-12 01:22:38 +0000214 max_time_ms = MINIMUM(max_time_ms, (u_int)minwait_secs * 1000);
Damien Millera6508752012-04-22 11:21:10 +1000215
Ben Lindstrom5744dc42001-04-13 23:28:01 +0000216 /*
Damien Miller9f0f5c62001-12-21 14:45:46 +1100217 * if using client_alive, set the max timeout accordingly,
Ben Lindstrom5744dc42001-04-13 23:28:01 +0000218 * and indicate that this particular timeout was for client
219 * alive by setting the client_alive_scheduled flag.
220 *
221 * this could be randomized somewhat to make traffic
Damien Miller9f0f5c62001-12-21 14:45:46 +1100222 * analysis more difficult, but we're not doing it yet.
Ben Lindstrom5744dc42001-04-13 23:28:01 +0000223 */
markus@openbsd.org6cb6dcf2016-08-13 17:47:40 +0000224 if (options.client_alive_interval) {
djm@openbsd.org988e4292016-03-04 03:35:44 +0000225 uint64_t keepalive_ms =
226 (uint64_t)options.client_alive_interval * 1000;
227
Ben Lindstrom2f0304c2001-04-29 19:49:14 +0000228 client_alive_scheduled = 1;
djm@openbsd.org988e4292016-03-04 03:35:44 +0000229 if (max_time_ms == 0 || max_time_ms > keepalive_ms)
230 max_time_ms = keepalive_ms;
Ben Lindstrom36857f62001-07-18 15:48:57 +0000231 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000232
Damien Milleraf5f2e62001-10-10 15:01:16 +1000233#if 0
markus@openbsd.org6cb6dcf2016-08-13 17:47:40 +0000234 /* wrong: bad condition XXX */
235 if (channel_not_very_much_buffered_data())
Damien Milleraf5f2e62001-10-10 15:01:16 +1000236#endif
markus@openbsd.org6cb6dcf2016-08-13 17:47:40 +0000237 FD_SET(connection_in, *readsetp);
Damien Millerf6681a32001-12-21 14:53:11 +1100238 notify_prepare(*readsetp);
Damien Miller95def091999-11-25 00:26:21 +1100239
Damien Miller5428f641999-11-25 11:54:57 +1100240 /*
241 * If we have buffered packet data going to the client, mark that
242 * descriptor.
243 */
Damien Miller95def091999-11-25 00:26:21 +1100244 if (packet_have_data_to_write())
Damien Miller5e953212001-01-30 09:14:00 +1100245 FD_SET(connection_out, *writesetp);
Damien Miller95def091999-11-25 00:26:21 +1100246
Damien Miller5428f641999-11-25 11:54:57 +1100247 /*
248 * If child has terminated and there is enough buffer space to read
249 * from it, then read as much as is available and exit.
250 */
Damien Miller95def091999-11-25 00:26:21 +1100251 if (child_terminated && packet_not_very_much_data_to_write())
djm@openbsd.org988e4292016-03-04 03:35:44 +0000252 if (max_time_ms == 0 || client_alive_scheduled)
253 max_time_ms = 100;
Damien Miller95def091999-11-25 00:26:21 +1100254
djm@openbsd.org988e4292016-03-04 03:35:44 +0000255 if (max_time_ms == 0)
Damien Miller95def091999-11-25 00:26:21 +1100256 tvp = NULL;
257 else {
djm@openbsd.org988e4292016-03-04 03:35:44 +0000258 tv.tv_sec = max_time_ms / 1000;
259 tv.tv_usec = 1000 * (max_time_ms % 1000);
Damien Miller95def091999-11-25 00:26:21 +1100260 tvp = &tv;
261 }
262
263 /* Wait for something to happen, or the timeout to expire. */
Damien Miller5e953212001-01-30 09:14:00 +1100264 ret = select((*maxfdp)+1, *readsetp, *writesetp, NULL, tvp);
Damien Miller95def091999-11-25 00:26:21 +1100265
Ben Lindstrom5744dc42001-04-13 23:28:01 +0000266 if (ret == -1) {
Damien Miller79faeff2001-11-12 11:06:32 +1100267 memset(*readsetp, 0, *nallocp);
268 memset(*writesetp, 0, *nallocp);
Damien Miller95def091999-11-25 00:26:21 +1100269 if (errno != EINTR)
270 error("select: %.100s", strerror(errno));
markus@openbsd.org6cb6dcf2016-08-13 17:47:40 +0000271 } else if (ret == 0 && client_alive_scheduled)
272 client_alive_check();
Damien Millerf6681a32001-12-21 14:53:11 +1100273
274 notify_done(*readsetp);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000275}
276
Damien Miller95def091999-11-25 00:26:21 +1100277/*
278 * Processes input from the client and the program. Input data is stored
279 * in buffers and processed later.
280 */
markus@openbsd.org6cb6dcf2016-08-13 17:47:40 +0000281static int
282process_input(fd_set *readset, int connection_in)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000283{
djm@openbsd.org95767262016-03-07 19:02:43 +0000284 struct ssh *ssh = active_state; /* XXX */
Damien Miller95def091999-11-25 00:26:21 +1100285 int len;
286 char buf[16384];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000287
Damien Miller95def091999-11-25 00:26:21 +1100288 /* Read and buffer any input data from the client. */
289 if (FD_ISSET(connection_in, readset)) {
markus@openbsd.orga3068632016-01-14 16:17:39 +0000290 len = read(connection_in, buf, sizeof(buf));
Damien Miller95def091999-11-25 00:26:21 +1100291 if (len == 0) {
djm@openbsd.org95767262016-03-07 19:02:43 +0000292 verbose("Connection closed by %.100s port %d",
293 ssh_remote_ipaddr(ssh), ssh_remote_port(ssh));
markus@openbsd.org6cb6dcf2016-08-13 17:47:40 +0000294 return -1;
Damien Millerdcb6ecd2000-05-17 22:34:22 +1000295 } else if (len < 0) {
Damien Millerd8968ad2008-07-04 23:10:49 +1000296 if (errno != EINTR && errno != EAGAIN &&
297 errno != EWOULDBLOCK) {
Damien Miller16aed052002-09-22 01:26:27 +1000298 verbose("Read error from remote host "
djm@openbsd.org95767262016-03-07 19:02:43 +0000299 "%.100s port %d: %.100s",
300 ssh_remote_ipaddr(ssh),
301 ssh_remote_port(ssh), strerror(errno));
Darren Tucker3e33cec2003-10-02 16:12:36 +1000302 cleanup_exit(255);
Damien Millerdcb6ecd2000-05-17 22:34:22 +1000303 }
304 } else {
305 /* Buffer any received data. */
306 packet_process_incoming(buf, len);
Damien Miller95def091999-11-25 00:26:21 +1100307 }
Damien Miller95def091999-11-25 00:26:21 +1100308 }
markus@openbsd.org6cb6dcf2016-08-13 17:47:40 +0000309 return 0;
Damien Miller95def091999-11-25 00:26:21 +1100310}
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000311
Damien Miller95def091999-11-25 00:26:21 +1100312/*
313 * Sends data from internal buffers to client program stdin.
314 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000315static void
markus@openbsd.org6cb6dcf2016-08-13 17:47:40 +0000316process_output(fd_set *writeset, int connection_out)
Damien Miller95def091999-11-25 00:26:21 +1100317{
Damien Miller95def091999-11-25 00:26:21 +1100318 /* Send any buffered packet data to the client. */
319 if (FD_ISSET(connection_out, writeset))
320 packet_write_poll();
321}
322
Ben Lindstrombba81212001-06-25 05:01:22 +0000323static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000324process_buffered_input_packets(void)
Damien Millerb38eff82000-04-01 11:09:21 +1000325{
markus@openbsd.org57d10cb2015-01-19 20:16:15 +0000326 dispatch_run(DISPATCH_NONBLOCK, NULL, active_state);
Damien Millerb38eff82000-04-01 11:09:21 +1000327}
328
Damien Miller3ec27592001-10-12 11:35:04 +1000329static void
330collect_children(void)
331{
332 pid_t pid;
333 sigset_t oset, nset;
334 int status;
335
336 /* block SIGCHLD while we check for dead children */
337 sigemptyset(&nset);
338 sigaddset(&nset, SIGCHLD);
339 sigprocmask(SIG_BLOCK, &nset, &oset);
340 if (child_terminated) {
Damien Millerec04f362006-03-15 12:01:34 +1100341 debug("Received SIGCHLD.");
Ben Lindstrom47fd8112002-04-02 20:48:19 +0000342 while ((pid = waitpid(-1, &status, WNOHANG)) > 0 ||
343 (pid < 0 && errno == EINTR))
344 if (pid > 0)
345 session_close_by_pid(pid, status);
Damien Miller3ec27592001-10-12 11:35:04 +1000346 child_terminated = 0;
347 }
348 sigprocmask(SIG_SETMASK, &oset, NULL);
349}
350
Damien Miller4af51302000-04-16 11:18:38 +1000351void
Ben Lindstrombddd5512001-07-04 04:53:53 +0000352server_loop2(Authctxt *authctxt)
Damien Millerefb4afe2000-04-12 18:45:05 +1000353{
Damien Miller5e953212001-01-30 09:14:00 +1100354 fd_set *readset = NULL, *writeset = NULL;
djm@openbsd.org19bcf2e2016-02-08 10:57:07 +0000355 int max_fd;
markus@openbsd.org6cb6dcf2016-08-13 17:47:40 +0000356 u_int nalloc = 0, connection_in, connection_out;
Darren Tucker5f96f3b2013-05-16 20:29:28 +1000357 u_int64_t rekey_timeout_ms = 0;
Damien Millerefb4afe2000-04-12 18:45:05 +1000358
359 debug("Entering interactive session for SSH2.");
360
Ben Lindstromec46e0b2001-06-09 01:27:31 +0000361 mysignal(SIGCHLD, sigchld_handler);
Damien Millerefb4afe2000-04-12 18:45:05 +1000362 child_terminated = 0;
363 connection_in = packet_get_connection_in();
364 connection_out = packet_get_connection_out();
Damien Miller5e953212001-01-30 09:14:00 +1100365
Damien Miller24ecf612005-11-05 15:16:52 +1100366 if (!use_privsep) {
367 signal(SIGTERM, sigterm_handler);
368 signal(SIGINT, sigterm_handler);
369 signal(SIGQUIT, sigterm_handler);
370 }
371
Damien Millerf6681a32001-12-21 14:53:11 +1100372 notify_setup();
373
deraadt@openbsd.org9136ec12016-09-12 01:22:38 +0000374 max_fd = MAXIMUM(connection_in, connection_out);
375 max_fd = MAXIMUM(max_fd, notify_pipe[0]);
Damien Millerf6681a32001-12-21 14:53:11 +1100376
Damien Millerefb4afe2000-04-12 18:45:05 +1000377 server_init_dispatch();
378
379 for (;;) {
380 process_buffered_input_packets();
Ben Lindstrom8e312f32001-04-04 23:50:21 +0000381
djm@openbsd.org19bcf2e2016-02-08 10:57:07 +0000382 if (!ssh_packet_is_rekeying(active_state) &&
383 packet_not_very_much_data_to_write())
Damien Millerefb4afe2000-04-12 18:45:05 +1000384 channel_output_poll();
markus@openbsd.org6cb6dcf2016-08-13 17:47:40 +0000385 if (options.rekey_interval > 0 &&
djm@openbsd.org19bcf2e2016-02-08 10:57:07 +0000386 !ssh_packet_is_rekeying(active_state))
Darren Tucker5f96f3b2013-05-16 20:29:28 +1000387 rekey_timeout_ms = packet_get_rekey_timeout() * 1000;
388 else
389 rekey_timeout_ms = 0;
390
markus@openbsd.org6cb6dcf2016-08-13 17:47:40 +0000391 wait_until_can_do_something(connection_in, connection_out,
392 &readset, &writeset, &max_fd, &nalloc, rekey_timeout_ms);
Damien Miller52b77be2001-10-10 15:14:37 +1000393
Damien Miller24ecf612005-11-05 15:16:52 +1100394 if (received_sigterm) {
Darren Tucker3e1027c2012-12-07 13:07:46 +1100395 logit("Exiting on signal %d", (int)received_sigterm);
Damien Miller24ecf612005-11-05 15:16:52 +1100396 /* Clean up sessions, utmp, etc. */
397 cleanup_exit(255);
398 }
399
Damien Miller3ec27592001-10-12 11:35:04 +1000400 collect_children();
djm@openbsd.org19bcf2e2016-02-08 10:57:07 +0000401 if (!ssh_packet_is_rekeying(active_state))
Ben Lindstrom8e312f32001-04-04 23:50:21 +0000402 channel_after_select(readset, writeset);
markus@openbsd.org6cb6dcf2016-08-13 17:47:40 +0000403 if (process_input(readset, connection_in) < 0)
Ben Lindstrome34ab4c2001-04-07 01:12:11 +0000404 break;
markus@openbsd.org6cb6dcf2016-08-13 17:47:40 +0000405 process_output(writeset, connection_out);
Damien Millerefb4afe2000-04-12 18:45:05 +1000406 }
Damien Miller3ec27592001-10-12 11:35:04 +1000407 collect_children();
408
Darren Tuckera627d422013-06-02 07:31:17 +1000409 free(readset);
410 free(writeset);
Damien Miller5e953212001-01-30 09:14:00 +1100411
Damien Miller52b77be2001-10-10 15:14:37 +1000412 /* free all channels, no more reads and writes */
413 channel_free_all();
Ben Lindstrom4983d5e2001-07-04 05:17:40 +0000414
Damien Miller3ec27592001-10-12 11:35:04 +1000415 /* free remaining sessions, e.g. remove wtmp entries */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000416 session_destroy_all(NULL);
Damien Millerefb4afe2000-04-12 18:45:05 +1000417}
418
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +0000419static int
markus@openbsd.org2ae666a2017-05-30 14:23:52 +0000420server_input_keep_alive(int type, u_int32_t seq, struct ssh *ssh)
Ben Lindstrom5744dc42001-04-13 23:28:01 +0000421{
Damien Millerb5820f42003-12-17 16:27:32 +1100422 debug("Got %d/%u for keepalive", type, seq);
Damien Miller9f0f5c62001-12-21 14:45:46 +1100423 /*
Ben Lindstrom2f0304c2001-04-29 19:49:14 +0000424 * reset timeout, since we got a sane answer from the client.
Ben Lindstrom5744dc42001-04-13 23:28:01 +0000425 * even if this was generated by something other than
426 * the bogus CHANNEL_REQUEST we send for keepalives.
427 */
Darren Tuckerf7288d72009-06-21 18:12:20 +1000428 packet_set_alive_timeouts(0);
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +0000429 return 0;
Ben Lindstrom5744dc42001-04-13 23:28:01 +0000430}
431
Ben Lindstrombba81212001-06-25 05:01:22 +0000432static Channel *
dtucker@openbsd.org858252f2017-02-01 02:59:09 +0000433server_request_direct_tcpip(int *reason, const char **errmsg)
Damien Millerefb4afe2000-04-12 18:45:05 +1000434{
Damien Milleraa5b3f82012-12-03 09:50:54 +1100435 Channel *c = NULL;
Damien Miller4af51302000-04-16 11:18:38 +1000436 char *target, *originator;
Damien Miller3dc71ad2009-01-28 16:31:22 +1100437 u_short target_port, originator_port;
Damien Millerefb4afe2000-04-12 18:45:05 +1000438
Damien Miller4af51302000-04-16 11:18:38 +1000439 target = packet_get_string(NULL);
440 target_port = packet_get_int();
Damien Millerefb4afe2000-04-12 18:45:05 +1000441 originator = packet_get_string(NULL);
442 originator_port = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +1100443 packet_check_eom();
Damien Millerb1715dc2000-05-30 13:44:51 +1000444
Damien Millerbd740252008-05-19 15:37:09 +1000445 debug("server_request_direct_tcpip: originator %s port %d, target %s "
446 "port %d", originator, originator_port, target, target_port);
Damien Millerf6d9e222000-06-18 14:50:44 +1000447
Damien Milleraa5b3f82012-12-03 09:50:54 +1100448 /* XXX fine grained permissions */
449 if ((options.allow_tcp_forwarding & FORWARD_LOCAL) != 0 &&
djm@openbsd.org7844f352016-11-30 03:00:05 +0000450 !no_port_forwarding_flag && !options.disable_forwarding) {
Damien Miller7acefbb2014-07-18 14:11:24 +1000451 c = channel_connect_to_port(target, target_port,
dtucker@openbsd.org858252f2017-02-01 02:59:09 +0000452 "direct-tcpip", "direct-tcpip", reason, errmsg);
Damien Milleraa5b3f82012-12-03 09:50:54 +1100453 } else {
454 logit("refused local port forward: "
455 "originator %s port %d, target %s port %d",
456 originator, originator_port, target, target_port);
dtucker@openbsd.org858252f2017-02-01 02:59:09 +0000457 if (reason != NULL)
458 *reason = SSH2_OPEN_ADMINISTRATIVELY_PROHIBITED;
Damien Milleraa5b3f82012-12-03 09:50:54 +1100459 }
Damien Millerbd740252008-05-19 15:37:09 +1000460
Darren Tuckera627d422013-06-02 07:31:17 +1000461 free(originator);
462 free(target);
Damien Millerbd740252008-05-19 15:37:09 +1000463
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000464 return c;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100465}
466
Ben Lindstrombba81212001-06-25 05:01:22 +0000467static Channel *
Damien Miller7acefbb2014-07-18 14:11:24 +1000468server_request_direct_streamlocal(void)
469{
470 Channel *c = NULL;
471 char *target, *originator;
472 u_short originator_port;
djm@openbsd.org51045862017-01-04 05:37:40 +0000473 struct passwd *pw = the_authctxt->pw;
474
475 if (pw == NULL || !the_authctxt->valid)
476 fatal("server_input_global_request: no/invalid user");
Damien Miller7acefbb2014-07-18 14:11:24 +1000477
478 target = packet_get_string(NULL);
479 originator = packet_get_string(NULL);
480 originator_port = packet_get_int();
481 packet_check_eom();
482
483 debug("server_request_direct_streamlocal: originator %s port %d, target %s",
484 originator, originator_port, target);
485
486 /* XXX fine grained permissions */
487 if ((options.allow_streamlocal_forwarding & FORWARD_LOCAL) != 0 &&
djm@openbsd.orgb737e4d2016-12-14 00:36:34 +0000488 !no_port_forwarding_flag && !options.disable_forwarding &&
djm@openbsd.org51045862017-01-04 05:37:40 +0000489 (pw->pw_uid == 0 || use_privsep)) {
Damien Miller7acefbb2014-07-18 14:11:24 +1000490 c = channel_connect_to_path(target,
491 "direct-streamlocal@openssh.com", "direct-streamlocal");
492 } else {
493 logit("refused streamlocal port forward: "
494 "originator %s port %d, target %s",
495 originator, originator_port, target);
496 }
497
498 free(originator);
499 free(target);
500
501 return c;
502}
503
504static Channel *
Damien Millerd27b9472005-12-13 19:29:02 +1100505server_request_tun(void)
506{
507 Channel *c = NULL;
Damien Miller7b58e802005-12-13 19:33:19 +1100508 int mode, tun;
509 int sock;
Damien Millerd27b9472005-12-13 19:29:02 +1100510
Damien Miller7b58e802005-12-13 19:33:19 +1100511 mode = packet_get_int();
512 switch (mode) {
513 case SSH_TUNMODE_POINTOPOINT:
514 case SSH_TUNMODE_ETHERNET:
515 break;
516 default:
517 packet_send_debug("Unsupported tunnel device mode.");
518 return NULL;
519 }
520 if ((options.permit_tun & mode) == 0) {
521 packet_send_debug("Server has rejected tunnel device "
522 "forwarding");
Damien Millerd27b9472005-12-13 19:29:02 +1100523 return NULL;
524 }
525
526 tun = packet_get_int();
Darren Tucker0d0e8f02005-12-20 16:08:42 +1100527 if (forced_tun_device != -1) {
Damien Millerf0b15df2006-03-26 13:59:20 +1100528 if (tun != SSH_TUNID_ANY && forced_tun_device != tun)
Damien Millerd27b9472005-12-13 19:29:02 +1100529 goto done;
530 tun = forced_tun_device;
531 }
Damien Miller7b58e802005-12-13 19:33:19 +1100532 sock = tun_open(tun, mode);
Damien Millerd27b9472005-12-13 19:29:02 +1100533 if (sock < 0)
534 goto done;
535 c = channel_new("tun", SSH_CHANNEL_OPEN, sock, sock, -1,
536 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT, 0, "tun", 1);
537 c->datagram = 1;
Damien Miller598bbc22005-12-31 16:33:36 +1100538#if defined(SSH_TUN_FILTER)
539 if (mode == SSH_TUNMODE_POINTOPOINT)
540 channel_register_filter(c->self, sys_tun_infilter,
Darren Tucker1cf65ae2008-06-13 05:09:18 +1000541 sys_tun_outfilter, NULL, NULL);
Damien Miller598bbc22005-12-31 16:33:36 +1100542#endif
Damien Millerd27b9472005-12-13 19:29:02 +1100543
544 done:
545 if (c == NULL)
546 packet_send_debug("Failed to open the tunnel device.");
547 return c;
548}
549
550static Channel *
Damien Millerfb1310e2004-01-21 11:02:50 +1100551server_request_session(void)
Damien Miller0bc1bd82000-11-13 22:57:25 +1100552{
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000553 Channel *c;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100554
555 debug("input_session_request");
Damien Miller48b03fc2002-01-22 23:11:40 +1100556 packet_check_eom();
Darren Tucker8901fa92008-06-11 09:34:01 +1000557
558 if (no_more_sessions) {
559 packet_disconnect("Possible attack: attempt to open a session "
560 "after additional sessions disabled");
561 }
562
Damien Miller0bc1bd82000-11-13 22:57:25 +1100563 /*
564 * A server session has no fd to read or write until a
565 * CHANNEL_REQUEST for a shell is made, so we set the type to
566 * SSH_CHANNEL_LARVAL. Additionally, a callback for handling all
567 * CHANNEL_REQUEST messages is registered.
568 */
Damien Millerfb1310e2004-01-21 11:02:50 +1100569 c = channel_new("session", SSH_CHANNEL_LARVAL,
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000570 -1, -1, -1, /*window size*/0, CHAN_SES_PACKET_DEFAULT,
Damien Millerb1ca8bb2003-05-14 13:45:42 +1000571 0, "server-session", 1);
Darren Tucker3e33cec2003-10-02 16:12:36 +1000572 if (session_open(the_authctxt, c->self) != 1) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000573 debug("session open failed, free channel %d", c->self);
574 channel_free(c);
575 return NULL;
576 }
Damien Miller39eda6e2005-11-05 14:52:50 +1100577 channel_register_cleanup(c->self, session_close_by_channel, 0);
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000578 return c;
Damien Millerefb4afe2000-04-12 18:45:05 +1000579}
580
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +0000581static int
markus@openbsd.org2ae666a2017-05-30 14:23:52 +0000582server_input_channel_open(int type, u_int32_t seq, struct ssh *ssh)
Damien Millerefb4afe2000-04-12 18:45:05 +1000583{
584 Channel *c = NULL;
585 char *ctype;
dtucker@openbsd.org858252f2017-02-01 02:59:09 +0000586 const char *errmsg = NULL;
587 int rchan, reason = SSH2_OPEN_CONNECT_FAILED;
Ben Lindstrom4fed2be2002-06-25 23:17:36 +0000588 u_int rmaxpack, rwindow, len;
Damien Millerefb4afe2000-04-12 18:45:05 +1000589
590 ctype = packet_get_string(&len);
591 rchan = packet_get_int();
592 rwindow = packet_get_int();
593 rmaxpack = packet_get_int();
594
Damien Miller62cee002000-09-23 17:15:56 +1100595 debug("server_input_channel_open: ctype %s rchan %d win %d max %d",
Damien Millerefb4afe2000-04-12 18:45:05 +1000596 ctype, rchan, rwindow, rmaxpack);
597
598 if (strcmp(ctype, "session") == 0) {
Damien Millerfb1310e2004-01-21 11:02:50 +1100599 c = server_request_session();
Damien Millerefb4afe2000-04-12 18:45:05 +1000600 } else if (strcmp(ctype, "direct-tcpip") == 0) {
dtucker@openbsd.org858252f2017-02-01 02:59:09 +0000601 c = server_request_direct_tcpip(&reason, &errmsg);
Damien Miller7acefbb2014-07-18 14:11:24 +1000602 } else if (strcmp(ctype, "direct-streamlocal@openssh.com") == 0) {
603 c = server_request_direct_streamlocal();
Damien Millerd27b9472005-12-13 19:29:02 +1100604 } else if (strcmp(ctype, "tun@openssh.com") == 0) {
605 c = server_request_tun();
Damien Millerefb4afe2000-04-12 18:45:05 +1000606 }
607 if (c != NULL) {
Damien Miller0bc1bd82000-11-13 22:57:25 +1100608 debug("server_input_channel_open: confirm %s", ctype);
Damien Millerefb4afe2000-04-12 18:45:05 +1000609 c->remote_id = rchan;
610 c->remote_window = rwindow;
611 c->remote_maxpacket = rmaxpack;
Ben Lindstrom69128662001-05-08 20:07:39 +0000612 if (c->type != SSH_CHANNEL_CONNECTING) {
613 packet_start(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION);
614 packet_put_int(c->remote_id);
615 packet_put_int(c->self);
616 packet_put_int(c->local_window);
617 packet_put_int(c->local_maxpacket);
618 packet_send();
619 }
Damien Millerefb4afe2000-04-12 18:45:05 +1000620 } else {
Damien Miller0bc1bd82000-11-13 22:57:25 +1100621 debug("server_input_channel_open: failure %s", ctype);
Damien Millerefb4afe2000-04-12 18:45:05 +1000622 packet_start(SSH2_MSG_CHANNEL_OPEN_FAILURE);
623 packet_put_int(rchan);
dtucker@openbsd.org858252f2017-02-01 02:59:09 +0000624 packet_put_int(reason);
Ben Lindstromf3436742001-04-29 19:52:00 +0000625 if (!(datafellows & SSH_BUG_OPENFAILURE)) {
dtucker@openbsd.org858252f2017-02-01 02:59:09 +0000626 packet_put_cstring(errmsg ? errmsg : "open failed");
Ben Lindstromf3436742001-04-29 19:52:00 +0000627 packet_put_cstring("");
628 }
Damien Millerefb4afe2000-04-12 18:45:05 +1000629 packet_send();
630 }
Darren Tuckera627d422013-06-02 07:31:17 +1000631 free(ctype);
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +0000632 return 0;
Damien Millerefb4afe2000-04-12 18:45:05 +1000633}
634
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +0000635static int
djm@openbsd.org523463a2015-02-16 22:13:32 +0000636server_input_hostkeys_prove(struct sshbuf **respp)
637{
638 struct ssh *ssh = active_state; /* XXX */
639 struct sshbuf *resp = NULL;
640 struct sshbuf *sigbuf = NULL;
641 struct sshkey *key = NULL, *key_pub = NULL, *key_prv = NULL;
642 int r, ndx, success = 0;
643 const u_char *blob;
644 u_char *sig = 0;
645 size_t blen, slen;
646
647 if ((resp = sshbuf_new()) == NULL || (sigbuf = sshbuf_new()) == NULL)
648 fatal("%s: sshbuf_new", __func__);
649
650 while (ssh_packet_remaining(ssh) > 0) {
651 sshkey_free(key);
652 key = NULL;
653 if ((r = sshpkt_get_string_direct(ssh, &blob, &blen)) != 0 ||
654 (r = sshkey_from_blob(blob, blen, &key)) != 0) {
655 error("%s: couldn't parse key: %s",
656 __func__, ssh_err(r));
657 goto out;
658 }
659 /*
660 * Better check that this is actually one of our hostkeys
661 * before attempting to sign anything with it.
662 */
663 if ((ndx = ssh->kex->host_key_index(key, 1, ssh)) == -1) {
664 error("%s: unknown host %s key",
665 __func__, sshkey_type(key));
666 goto out;
667 }
668 /*
669 * XXX refactor: make kex->sign just use an index rather
670 * than passing in public and private keys
671 */
672 if ((key_prv = get_hostkey_by_index(ndx)) == NULL &&
673 (key_pub = get_hostkey_public_by_index(ndx, ssh)) == NULL) {
674 error("%s: can't retrieve hostkey %d", __func__, ndx);
675 goto out;
676 }
677 sshbuf_reset(sigbuf);
678 free(sig);
679 sig = NULL;
djm@openbsd.org44732de2015-02-20 22:17:21 +0000680 if ((r = sshbuf_put_cstring(sigbuf,
681 "hostkeys-prove-00@openssh.com")) != 0 ||
682 (r = sshbuf_put_string(sigbuf,
djm@openbsd.org523463a2015-02-16 22:13:32 +0000683 ssh->kex->session_id, ssh->kex->session_id_len)) != 0 ||
djm@openbsd.org523463a2015-02-16 22:13:32 +0000684 (r = sshkey_puts(key, sigbuf)) != 0 ||
685 (r = ssh->kex->sign(key_prv, key_pub, &sig, &slen,
markus@openbsd.org76c9fbb2015-12-04 16:41:28 +0000686 sshbuf_ptr(sigbuf), sshbuf_len(sigbuf), NULL, 0)) != 0 ||
djm@openbsd.org523463a2015-02-16 22:13:32 +0000687 (r = sshbuf_put_string(resp, sig, slen)) != 0) {
688 error("%s: couldn't prepare signature: %s",
689 __func__, ssh_err(r));
690 goto out;
691 }
692 }
693 /* Success */
694 *respp = resp;
695 resp = NULL; /* don't free it */
696 success = 1;
697 out:
698 free(sig);
699 sshbuf_free(resp);
700 sshbuf_free(sigbuf);
701 sshkey_free(key);
702 return success;
703}
704
705static int
markus@openbsd.org2ae666a2017-05-30 14:23:52 +0000706server_input_global_request(int type, u_int32_t seq, struct ssh *ssh)
Damien Miller0bc1bd82000-11-13 22:57:25 +1100707{
708 char *rtype;
709 int want_reply;
djm@openbsd.org523463a2015-02-16 22:13:32 +0000710 int r, success = 0, allocated_listen_port = 0;
711 struct sshbuf *resp = NULL;
djm@openbsd.org51045862017-01-04 05:37:40 +0000712 struct passwd *pw = the_authctxt->pw;
713
714 if (pw == NULL || !the_authctxt->valid)
715 fatal("server_input_global_request: no/invalid user");
Damien Miller0bc1bd82000-11-13 22:57:25 +1100716
717 rtype = packet_get_string(NULL);
718 want_reply = packet_get_char();
719 debug("server_input_global_request: rtype %s want_reply %d", rtype, want_reply);
Kevin Stevesef4eea92001-02-05 12:42:17 +0000720
Ben Lindstrom7bb8b492001-03-17 00:47:54 +0000721 /* -R style forwarding */
Damien Miller0bc1bd82000-11-13 22:57:25 +1100722 if (strcmp(rtype, "tcpip-forward") == 0) {
Damien Miller7acefbb2014-07-18 14:11:24 +1000723 struct Forward fwd;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100724
Damien Miller7acefbb2014-07-18 14:11:24 +1000725 memset(&fwd, 0, sizeof(fwd));
726 fwd.listen_host = packet_get_string(NULL);
727 fwd.listen_port = (u_short)packet_get_int();
Damien Miller0bc1bd82000-11-13 22:57:25 +1100728 debug("server_input_global_request: tcpip-forward listen %s port %d",
Damien Miller7acefbb2014-07-18 14:11:24 +1000729 fwd.listen_host, fwd.listen_port);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100730
731 /* check permissions */
Damien Milleraa5b3f82012-12-03 09:50:54 +1100732 if ((options.allow_tcp_forwarding & FORWARD_REMOTE) == 0 ||
djm@openbsd.org7844f352016-11-30 03:00:05 +0000733 no_port_forwarding_flag || options.disable_forwarding ||
Darren Tucker5f41f032016-04-08 21:14:13 +1000734 (!want_reply && fwd.listen_port == 0) ||
dtucker@openbsd.org1c4ef0b2016-10-23 22:04:05 +0000735 (fwd.listen_port != 0 &&
736 !bind_permitted(fwd.listen_port, pw->pw_uid))) {
Damien Miller0bc1bd82000-11-13 22:57:25 +1100737 success = 0;
738 packet_send_debug("Server has disabled port forwarding.");
739 } else {
740 /* Start listening on the port */
Damien Miller7acefbb2014-07-18 14:11:24 +1000741 success = channel_setup_remote_fwd_listener(&fwd,
742 &allocated_listen_port, &options.fwd_opts);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100743 }
Damien Miller7acefbb2014-07-18 14:11:24 +1000744 free(fwd.listen_host);
djm@openbsd.org523463a2015-02-16 22:13:32 +0000745 if ((resp = sshbuf_new()) == NULL)
746 fatal("%s: sshbuf_new", __func__);
djm@openbsd.orgb1d6b392015-11-28 06:41:03 +0000747 if (allocated_listen_port != 0 &&
748 (r = sshbuf_put_u32(resp, allocated_listen_port)) != 0)
djm@openbsd.org523463a2015-02-16 22:13:32 +0000749 fatal("%s: sshbuf_put_u32: %s", __func__, ssh_err(r));
Darren Tuckere7066df2004-05-24 10:18:05 +1000750 } else if (strcmp(rtype, "cancel-tcpip-forward") == 0) {
Damien Miller7acefbb2014-07-18 14:11:24 +1000751 struct Forward fwd;
Darren Tuckere7066df2004-05-24 10:18:05 +1000752
Damien Miller7acefbb2014-07-18 14:11:24 +1000753 memset(&fwd, 0, sizeof(fwd));
754 fwd.listen_host = packet_get_string(NULL);
755 fwd.listen_port = (u_short)packet_get_int();
Darren Tuckere7066df2004-05-24 10:18:05 +1000756 debug("%s: cancel-tcpip-forward addr %s port %d", __func__,
Damien Miller7acefbb2014-07-18 14:11:24 +1000757 fwd.listen_host, fwd.listen_port);
Darren Tuckere7066df2004-05-24 10:18:05 +1000758
Damien Miller7acefbb2014-07-18 14:11:24 +1000759 success = channel_cancel_rport_listener(&fwd);
760 free(fwd.listen_host);
761 } else if (strcmp(rtype, "streamlocal-forward@openssh.com") == 0) {
762 struct Forward fwd;
763
764 memset(&fwd, 0, sizeof(fwd));
765 fwd.listen_path = packet_get_string(NULL);
766 debug("server_input_global_request: streamlocal-forward listen path %s",
767 fwd.listen_path);
768
769 /* check permissions */
770 if ((options.allow_streamlocal_forwarding & FORWARD_REMOTE) == 0
djm@openbsd.orgb737e4d2016-12-14 00:36:34 +0000771 || no_port_forwarding_flag || options.disable_forwarding ||
djm@openbsd.org51045862017-01-04 05:37:40 +0000772 (pw->pw_uid != 0 && !use_privsep)) {
Damien Miller7acefbb2014-07-18 14:11:24 +1000773 success = 0;
djm@openbsd.org51045862017-01-04 05:37:40 +0000774 packet_send_debug("Server has disabled "
775 "streamlocal forwarding.");
Damien Miller7acefbb2014-07-18 14:11:24 +1000776 } else {
777 /* Start listening on the socket */
778 success = channel_setup_remote_fwd_listener(
779 &fwd, NULL, &options.fwd_opts);
780 }
781 free(fwd.listen_path);
782 } else if (strcmp(rtype, "cancel-streamlocal-forward@openssh.com") == 0) {
783 struct Forward fwd;
784
785 memset(&fwd, 0, sizeof(fwd));
786 fwd.listen_path = packet_get_string(NULL);
787 debug("%s: cancel-streamlocal-forward path %s", __func__,
788 fwd.listen_path);
789
790 success = channel_cancel_rport_listener(&fwd);
791 free(fwd.listen_path);
Darren Tucker8901fa92008-06-11 09:34:01 +1000792 } else if (strcmp(rtype, "no-more-sessions@openssh.com") == 0) {
793 no_more_sessions = 1;
794 success = 1;
djm@openbsd.org44732de2015-02-20 22:17:21 +0000795 } else if (strcmp(rtype, "hostkeys-prove-00@openssh.com") == 0) {
djm@openbsd.org523463a2015-02-16 22:13:32 +0000796 success = server_input_hostkeys_prove(&resp);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100797 }
798 if (want_reply) {
799 packet_start(success ?
800 SSH2_MSG_REQUEST_SUCCESS : SSH2_MSG_REQUEST_FAILURE);
djm@openbsd.org523463a2015-02-16 22:13:32 +0000801 if (success && resp != NULL)
802 ssh_packet_put_raw(active_state, sshbuf_ptr(resp),
803 sshbuf_len(resp));
Damien Miller0bc1bd82000-11-13 22:57:25 +1100804 packet_send();
805 packet_write_wait();
806 }
Darren Tuckera627d422013-06-02 07:31:17 +1000807 free(rtype);
djm@openbsd.org523463a2015-02-16 22:13:32 +0000808 sshbuf_free(resp);
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +0000809 return 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100810}
Damien Miller4f7becb2006-03-26 14:10:14 +1100811
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +0000812static int
markus@openbsd.org2ae666a2017-05-30 14:23:52 +0000813server_input_channel_req(int type, u_int32_t seq, struct ssh *ssh)
Damien Millerc7ef63d2002-02-05 12:21:42 +1100814{
815 Channel *c;
816 int id, reply, success = 0;
817 char *rtype;
818
819 id = packet_get_int();
820 rtype = packet_get_string(NULL);
821 reply = packet_get_char();
822
823 debug("server_input_channel_req: channel %d request %s reply %d",
824 id, rtype, reply);
825
826 if ((c = channel_lookup(id)) == NULL)
827 packet_disconnect("server_input_channel_req: "
828 "unknown channel %d", id);
Damien Millerbab9bd42008-05-19 16:06:47 +1000829 if (!strcmp(rtype, "eow@openssh.com")) {
830 packet_check_eom();
831 chan_rcvd_eow(c);
Darren Tucker8810dd42008-07-02 22:32:14 +1000832 } else if ((c->type == SSH_CHANNEL_LARVAL ||
833 c->type == SSH_CHANNEL_OPEN) && strcmp(c->ctype, "session") == 0)
Damien Millerc7ef63d2002-02-05 12:21:42 +1100834 success = session_input_channel_req(c, rtype);
Damien Millerc5893782014-05-15 13:48:49 +1000835 if (reply && !(c->flags & CHAN_CLOSE_SENT)) {
Damien Millerc7ef63d2002-02-05 12:21:42 +1100836 packet_start(success ?
837 SSH2_MSG_CHANNEL_SUCCESS : SSH2_MSG_CHANNEL_FAILURE);
838 packet_put_int(c->remote_id);
839 packet_send();
840 }
Darren Tuckera627d422013-06-02 07:31:17 +1000841 free(rtype);
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +0000842 return 0;
Damien Millerc7ef63d2002-02-05 12:21:42 +1100843}
Damien Miller0bc1bd82000-11-13 22:57:25 +1100844
Ben Lindstrombba81212001-06-25 05:01:22 +0000845static void
markus@openbsd.org6cb6dcf2016-08-13 17:47:40 +0000846server_init_dispatch(void)
Damien Millerefb4afe2000-04-12 18:45:05 +1000847{
markus@openbsd.org6cb6dcf2016-08-13 17:47:40 +0000848 debug("server_init_dispatch");
Damien Millerefb4afe2000-04-12 18:45:05 +1000849 dispatch_init(&dispatch_protocol_error);
850 dispatch_set(SSH2_MSG_CHANNEL_CLOSE, &channel_input_oclose);
851 dispatch_set(SSH2_MSG_CHANNEL_DATA, &channel_input_data);
852 dispatch_set(SSH2_MSG_CHANNEL_EOF, &channel_input_ieof);
853 dispatch_set(SSH2_MSG_CHANNEL_EXTENDED_DATA, &channel_input_extended_data);
854 dispatch_set(SSH2_MSG_CHANNEL_OPEN, &server_input_channel_open);
855 dispatch_set(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION, &channel_input_open_confirmation);
856 dispatch_set(SSH2_MSG_CHANNEL_OPEN_FAILURE, &channel_input_open_failure);
Damien Millerc7ef63d2002-02-05 12:21:42 +1100857 dispatch_set(SSH2_MSG_CHANNEL_REQUEST, &server_input_channel_req);
Damien Millerefb4afe2000-04-12 18:45:05 +1000858 dispatch_set(SSH2_MSG_CHANNEL_WINDOW_ADJUST, &channel_input_window_adjust);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100859 dispatch_set(SSH2_MSG_GLOBAL_REQUEST, &server_input_global_request);
Ben Lindstrom5744dc42001-04-13 23:28:01 +0000860 /* client_alive */
Damien Miller5a33ec62008-12-08 09:55:02 +1100861 dispatch_set(SSH2_MSG_CHANNEL_SUCCESS, &server_input_keep_alive);
862 dispatch_set(SSH2_MSG_CHANNEL_FAILURE, &server_input_keep_alive);
Damien Millerb5820f42003-12-17 16:27:32 +1100863 dispatch_set(SSH2_MSG_REQUEST_SUCCESS, &server_input_keep_alive);
864 dispatch_set(SSH2_MSG_REQUEST_FAILURE, &server_input_keep_alive);
Ben Lindstrom8ac91062001-04-04 17:57:54 +0000865 /* rekeying */
866 dispatch_set(SSH2_MSG_KEXINIT, &kex_input_kexinit);
Damien Millerefb4afe2000-04-12 18:45:05 +1000867}