blob: 340b19a5a48af028c6c06c14cbb5ae0aa9bdf68d [file] [log] [blame]
djm@openbsd.orgafeb6a92020-01-30 07:21:38 +00001/* $OpenBSD: serverloop.c,v 1.222 2020/01/30 07:21:38 djm 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>
djm@openbsd.org7ec5cb42019-01-19 21:40:48 +000052#include <limits.h>
Damien Miller6ff3cad2006-03-15 11:52:09 +110053#include <signal.h>
Damien Millere3476ed2006-07-24 14:13:33 +100054#include <string.h>
Damien Miller99bd21e2006-03-15 11:11:28 +110055#include <termios.h>
Damien Miller1cdde6f2006-07-24 14:07:35 +100056#include <unistd.h>
Damien Millerd7834352006-08-05 12:39:39 +100057#include <stdarg.h>
Damien Miller69b69aa2000-10-28 14:19:58 +110058
Damien Millerb84886b2008-05-19 15:05:07 +100059#include "openbsd-compat/sys-queue.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100060#include "xmalloc.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100061#include "packet.h"
markus@openbsd.orgc3cb7792018-07-09 21:29:36 +000062#include "sshbuf.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000063#include "log.h"
Damien Miller7acefbb2014-07-18 14:11:24 +100064#include "misc.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100065#include "servconf.h"
Damien Miller16aed052002-09-22 01:26:27 +100066#include "canohost.h"
Ben Lindstromd95c09c2001-02-18 19:13:33 +000067#include "sshpty.h"
Ben Lindstromc7637672001-06-09 00:36:26 +000068#include "channels.h"
Damien Millerb38eff82000-04-01 11:09:21 +100069#include "compat.h"
Damien Millerefb4afe2000-04-12 18:45:05 +100070#include "ssh2.h"
markus@openbsd.org5467fbc2018-07-11 18:53:29 +000071#include "sshkey.h"
Damien Millerd7834352006-08-05 12:39:39 +100072#include "cipher.h"
73#include "kex.h"
74#include "hostfile.h"
Ben Lindstromdb65e8f2001-01-19 04:26:52 +000075#include "auth.h"
Damien Millerefb4afe2000-04-12 18:45:05 +100076#include "session.h"
Damien Millerb38eff82000-04-01 11:09:21 +100077#include "dispatch.h"
Damien Millerf6d9e222000-06-18 14:50:44 +100078#include "auth-options.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000079#include "serverloop.h"
djm@openbsd.org523463a2015-02-16 22:13:32 +000080#include "ssherr.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100081
Damien Miller50a41ed2000-10-16 12:14:42 +110082extern ServerOptions options;
83
Ben Lindstrom8ac91062001-04-04 17:57:54 +000084/* XXX */
Darren Tucker3e33cec2003-10-02 16:12:36 +100085extern Authctxt *the_authctxt;
djm@openbsd.org7c856852018-03-03 03:15:51 +000086extern struct sshauthopt *auth_opts;
Damien Miller24ecf612005-11-05 15:16:52 +110087extern int use_privsep;
Ben Lindstrom8ac91062001-04-04 17:57:54 +000088
Darren Tucker8901fa92008-06-11 09:34:01 +100089static int no_more_sessions = 0; /* Disallow further sessions. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100090
Damien Miller5428f641999-11-25 11:54:57 +110091/*
92 * This SIGCHLD kludge is used to detect when the child exits. The server
93 * will exit after that, as soon as forwarded connections have terminated.
94 */
Ben Lindstrombba81212001-06-25 05:01:22 +000095
Ben Lindstrom5e71c542001-12-06 16:48:14 +000096static volatile sig_atomic_t child_terminated = 0; /* The child has terminated. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100097
Damien Miller24ecf612005-11-05 15:16:52 +110098/* Cleanup on signals (!use_privsep case only) */
99static volatile sig_atomic_t received_sigterm = 0;
100
Ben Lindstrombba81212001-06-25 05:01:22 +0000101/* prototypes */
djm@openbsd.org7ec5cb42019-01-19 21:40:48 +0000102static void server_init_dispatch(struct ssh *);
Damien Millerb38eff82000-04-01 11:09:21 +1000103
djm@openbsd.orgb7548b12017-10-23 05:08:00 +0000104/* requested tunnel forwarding interface(s), shared with session.c */
105char *tun_fwd_ifnames = NULL;
106
dtucker@openbsd.org73ddb252018-07-27 05:13:02 +0000107/* returns 1 if bind to specified port by specified user is permitted */
108static int
109bind_permitted(int port, uid_t uid)
110{
111 if (use_privsep)
112 return 1; /* allow system to decide */
113 if (port < IPPORT_RESERVED && uid != 0)
114 return 0;
115 return 1;
116}
117
Damien Millerf6681a32001-12-21 14:53:11 +1100118/*
119 * we write to this pipe if a SIGCHLD is caught in order to avoid
120 * the race between select() and child_terminated
121 */
122static int notify_pipe[2];
123static void
124notify_setup(void)
125{
deraadt@openbsd.org4d28fa72019-06-28 13:35:04 +0000126 if (pipe(notify_pipe) == -1) {
Damien Millerf6681a32001-12-21 14:53:11 +1100127 error("pipe(notify_pipe) failed %s", strerror(errno));
Damien Miller814ace02011-05-20 19:02:47 +1000128 } else if ((fcntl(notify_pipe[0], F_SETFD, FD_CLOEXEC) == -1) ||
129 (fcntl(notify_pipe[1], F_SETFD, FD_CLOEXEC) == -1)) {
Damien Millerf6681a32001-12-21 14:53:11 +1100130 error("fcntl(notify_pipe, F_SETFD) failed %s", strerror(errno));
131 close(notify_pipe[0]);
132 close(notify_pipe[1]);
133 } else {
134 set_nonblock(notify_pipe[0]);
135 set_nonblock(notify_pipe[1]);
136 return;
137 }
138 notify_pipe[0] = -1; /* read end */
139 notify_pipe[1] = -1; /* write end */
140}
141static void
142notify_parent(void)
143{
144 if (notify_pipe[1] != -1)
Darren Tuckerdbee3082013-05-16 20:32:29 +1000145 (void)write(notify_pipe[1], "", 1);
Damien Millerf6681a32001-12-21 14:53:11 +1100146}
147static void
148notify_prepare(fd_set *readset)
149{
150 if (notify_pipe[0] != -1)
151 FD_SET(notify_pipe[0], readset);
152}
153static void
154notify_done(fd_set *readset)
155{
156 char c;
157
158 if (notify_pipe[0] != -1 && FD_ISSET(notify_pipe[0], readset))
159 while (read(notify_pipe[0], &c, 1) != -1)
djm@openbsd.org027607f2018-06-08 01:55:40 +0000160 debug2("%s: reading", __func__);
Damien Millerf6681a32001-12-21 14:53:11 +1100161}
162
Damien Millerf0b15df2006-03-26 13:59:20 +1100163/*ARGSUSED*/
Ben Lindstrombba81212001-06-25 05:01:22 +0000164static void
Damien Miller95def091999-11-25 00:26:21 +1100165sigchld_handler(int sig)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000166{
Damien Miller95def091999-11-25 00:26:21 +1100167 int save_errno = errno;
Damien Millerefb4afe2000-04-12 18:45:05 +1000168 child_terminated = 1;
Damien Millerf6681a32001-12-21 14:53:11 +1100169 notify_parent();
Damien Millerefb4afe2000-04-12 18:45:05 +1000170 errno = save_errno;
171}
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000172
Damien Millerf0b15df2006-03-26 13:59:20 +1100173/*ARGSUSED*/
Damien Miller24ecf612005-11-05 15:16:52 +1100174static void
175sigterm_handler(int sig)
176{
177 received_sigterm = sig;
178}
179
Damien Miller8c3902a2001-10-10 15:01:40 +1000180static void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000181client_alive_check(struct ssh *ssh)
Damien Miller8c3902a2001-10-10 15:01:40 +1000182{
dtucker@openbsd.org48c23a32017-12-10 05:55:29 +0000183 char remote_id[512];
djm@openbsd.org7ec5cb42019-01-19 21:40:48 +0000184 int r, channel_id;
Damien Miller056cf732002-01-22 23:21:39 +1100185
Damien Miller8c3902a2001-10-10 15:01:40 +1000186 /* timeout, check to see how many we have had */
djm@openbsd.org69334992020-01-25 22:41:01 +0000187 if (options.client_alive_count_max > 0 &&
188 ssh_packet_inc_alive_timeouts(ssh) >
djm@openbsd.org7ec5cb42019-01-19 21:40:48 +0000189 options.client_alive_count_max) {
dtucker@openbsd.org48c23a32017-12-10 05:55:29 +0000190 sshpkt_fmt_connection_id(ssh, remote_id, sizeof(remote_id));
191 logit("Timeout, client not responding from %s", remote_id);
Damien Miller985a4482006-10-24 03:02:41 +1000192 cleanup_exit(255);
193 }
Damien Miller8c3902a2001-10-10 15:01:40 +1000194
Damien Miller8c3902a2001-10-10 15:01:40 +1000195 /*
Damien Millerb5820f42003-12-17 16:27:32 +1100196 * send a bogus global/channel request with "wantreply",
Damien Miller8c3902a2001-10-10 15:01:40 +1000197 * we should get back a failure
198 */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000199 if ((channel_id = channel_find_open(ssh)) == -1) {
djm@openbsd.org7ec5cb42019-01-19 21:40:48 +0000200 if ((r = sshpkt_start(ssh, SSH2_MSG_GLOBAL_REQUEST)) != 0 ||
201 (r = sshpkt_put_cstring(ssh, "keepalive@openssh.com"))
202 != 0 ||
203 (r = sshpkt_put_u8(ssh, 1)) != 0) /* boolean: want reply */
204 fatal("%s: %s", __func__, ssh_err(r));
Damien Millerb5820f42003-12-17 16:27:32 +1100205 } else {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000206 channel_request_start(ssh, channel_id,
207 "keepalive@openssh.com", 1);
Damien Millerb5820f42003-12-17 16:27:32 +1100208 }
djm@openbsd.org7ec5cb42019-01-19 21:40:48 +0000209 if ((r = sshpkt_send(ssh)) != 0)
210 fatal("%s: %s", __func__, ssh_err(r));
Damien Miller8c3902a2001-10-10 15:01:40 +1000211}
212
Damien Miller95def091999-11-25 00:26:21 +1100213/*
214 * Sleep in select() until we can do something. This will initialize the
215 * select masks. Upon return, the masks will indicate which descriptors
216 * have data or can accept data. Optionally, a maximum time can be specified
217 * for the duration of the wait (0 = infinite).
218 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000219static void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000220wait_until_can_do_something(struct ssh *ssh,
221 int connection_in, int connection_out,
markus@openbsd.org6cb6dcf2016-08-13 17:47:40 +0000222 fd_set **readsetp, fd_set **writesetp, int *maxfdp,
djm@openbsd.org988e4292016-03-04 03:35:44 +0000223 u_int *nallocp, u_int64_t max_time_ms)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000224{
Damien Miller95def091999-11-25 00:26:21 +1100225 struct timeval tv, *tvp;
226 int ret;
Damien Miller6c6da332012-06-20 22:31:26 +1000227 time_t minwait_secs = 0;
Ben Lindstrom5744dc42001-04-13 23:28:01 +0000228 int client_alive_scheduled = 0;
dtucker@openbsd.orgab5fee82019-03-06 21:06:59 +0000229 /* time we last heard from the client OR sent a keepalive */
dtucker@openbsd.orgb60ff202017-08-11 03:58:36 +0000230 static time_t last_client_time;
Ben Lindstrom5744dc42001-04-13 23:28:01 +0000231
Damien Millera6508752012-04-22 11:21:10 +1000232 /* Allocate and update select() masks for channel descriptors. */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000233 channel_prepare_select(ssh, readsetp, writesetp, maxfdp,
djm@openbsd.org71e5a532017-08-30 03:59:08 +0000234 nallocp, &minwait_secs);
Damien Millera6508752012-04-22 11:21:10 +1000235
djm@openbsd.org988e4292016-03-04 03:35:44 +0000236 /* XXX need proper deadline system for rekey/client alive */
Damien Millera6508752012-04-22 11:21:10 +1000237 if (minwait_secs != 0)
deraadt@openbsd.org9136ec12016-09-12 01:22:38 +0000238 max_time_ms = MINIMUM(max_time_ms, (u_int)minwait_secs * 1000);
Damien Millera6508752012-04-22 11:21:10 +1000239
Ben Lindstrom5744dc42001-04-13 23:28:01 +0000240 /*
Damien Miller9f0f5c62001-12-21 14:45:46 +1100241 * if using client_alive, set the max timeout accordingly,
Ben Lindstrom5744dc42001-04-13 23:28:01 +0000242 * and indicate that this particular timeout was for client
243 * alive by setting the client_alive_scheduled flag.
244 *
245 * this could be randomized somewhat to make traffic
Damien Miller9f0f5c62001-12-21 14:45:46 +1100246 * analysis more difficult, but we're not doing it yet.
Ben Lindstrom5744dc42001-04-13 23:28:01 +0000247 */
markus@openbsd.org6cb6dcf2016-08-13 17:47:40 +0000248 if (options.client_alive_interval) {
djm@openbsd.org988e4292016-03-04 03:35:44 +0000249 uint64_t keepalive_ms =
250 (uint64_t)options.client_alive_interval * 1000;
251
djm@openbsd.org21da87f2019-03-27 09:29:14 +0000252 if (max_time_ms == 0 || max_time_ms > keepalive_ms) {
djm@openbsd.org988e4292016-03-04 03:35:44 +0000253 max_time_ms = keepalive_ms;
djm@openbsd.org21da87f2019-03-27 09:29:14 +0000254 client_alive_scheduled = 1;
255 }
Ben Lindstrom36857f62001-07-18 15:48:57 +0000256 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000257
Damien Milleraf5f2e62001-10-10 15:01:16 +1000258#if 0
markus@openbsd.org6cb6dcf2016-08-13 17:47:40 +0000259 /* wrong: bad condition XXX */
260 if (channel_not_very_much_buffered_data())
Damien Milleraf5f2e62001-10-10 15:01:16 +1000261#endif
markus@openbsd.org6cb6dcf2016-08-13 17:47:40 +0000262 FD_SET(connection_in, *readsetp);
Damien Millerf6681a32001-12-21 14:53:11 +1100263 notify_prepare(*readsetp);
Damien Miller95def091999-11-25 00:26:21 +1100264
Damien Miller5428f641999-11-25 11:54:57 +1100265 /*
266 * If we have buffered packet data going to the client, mark that
267 * descriptor.
268 */
djm@openbsd.org7ec5cb42019-01-19 21:40:48 +0000269 if (ssh_packet_have_data_to_write(ssh))
Damien Miller5e953212001-01-30 09:14:00 +1100270 FD_SET(connection_out, *writesetp);
Damien Miller95def091999-11-25 00:26:21 +1100271
Damien Miller5428f641999-11-25 11:54:57 +1100272 /*
273 * If child has terminated and there is enough buffer space to read
274 * from it, then read as much as is available and exit.
275 */
djm@openbsd.org7ec5cb42019-01-19 21:40:48 +0000276 if (child_terminated && ssh_packet_not_very_much_data_to_write(ssh))
djm@openbsd.org988e4292016-03-04 03:35:44 +0000277 if (max_time_ms == 0 || client_alive_scheduled)
278 max_time_ms = 100;
Damien Miller95def091999-11-25 00:26:21 +1100279
djm@openbsd.org988e4292016-03-04 03:35:44 +0000280 if (max_time_ms == 0)
Damien Miller95def091999-11-25 00:26:21 +1100281 tvp = NULL;
282 else {
djm@openbsd.org988e4292016-03-04 03:35:44 +0000283 tv.tv_sec = max_time_ms / 1000;
284 tv.tv_usec = 1000 * (max_time_ms % 1000);
Damien Miller95def091999-11-25 00:26:21 +1100285 tvp = &tv;
286 }
287
288 /* Wait for something to happen, or the timeout to expire. */
Damien Miller5e953212001-01-30 09:14:00 +1100289 ret = select((*maxfdp)+1, *readsetp, *writesetp, NULL, tvp);
Damien Miller95def091999-11-25 00:26:21 +1100290
Ben Lindstrom5744dc42001-04-13 23:28:01 +0000291 if (ret == -1) {
Damien Miller79faeff2001-11-12 11:06:32 +1100292 memset(*readsetp, 0, *nallocp);
293 memset(*writesetp, 0, *nallocp);
Damien Miller95def091999-11-25 00:26:21 +1100294 if (errno != EINTR)
295 error("select: %.100s", strerror(errno));
dtucker@openbsd.orgb60ff202017-08-11 03:58:36 +0000296 } else if (client_alive_scheduled) {
297 time_t now = monotime();
298
dtucker@openbsd.orgab5fee82019-03-06 21:06:59 +0000299 /*
300 * If the select timed out, or returned for some other reason
301 * but we haven't heard from the client in time, send keepalive.
302 */
303 if (ret == 0 || (last_client_time != 0 && last_client_time +
304 options.client_alive_interval <= now)) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000305 client_alive_check(ssh);
dtucker@openbsd.orgb60ff202017-08-11 03:58:36 +0000306 last_client_time = now;
dtucker@openbsd.orgab5fee82019-03-06 21:06:59 +0000307 } else if (FD_ISSET(connection_in, *readsetp)) {
dtucker@openbsd.orgb60ff202017-08-11 03:58:36 +0000308 last_client_time = now;
309 }
310 }
Damien Millerf6681a32001-12-21 14:53:11 +1100311
312 notify_done(*readsetp);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000313}
314
Damien Miller95def091999-11-25 00:26:21 +1100315/*
316 * Processes input from the client and the program. Input data is stored
317 * in buffers and processed later.
318 */
markus@openbsd.org6cb6dcf2016-08-13 17:47:40 +0000319static int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000320process_input(struct ssh *ssh, fd_set *readset, int connection_in)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000321{
djm@openbsd.org7ec5cb42019-01-19 21:40:48 +0000322 int r, len;
Damien Miller95def091999-11-25 00:26:21 +1100323 char buf[16384];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000324
Damien Miller95def091999-11-25 00:26:21 +1100325 /* Read and buffer any input data from the client. */
326 if (FD_ISSET(connection_in, readset)) {
markus@openbsd.orga3068632016-01-14 16:17:39 +0000327 len = read(connection_in, buf, sizeof(buf));
Damien Miller95def091999-11-25 00:26:21 +1100328 if (len == 0) {
djm@openbsd.org95767262016-03-07 19:02:43 +0000329 verbose("Connection closed by %.100s port %d",
330 ssh_remote_ipaddr(ssh), ssh_remote_port(ssh));
markus@openbsd.org6cb6dcf2016-08-13 17:47:40 +0000331 return -1;
deraadt@openbsd.org4d28fa72019-06-28 13:35:04 +0000332 } else if (len == -1) {
Damien Millerd8968ad2008-07-04 23:10:49 +1000333 if (errno != EINTR && errno != EAGAIN &&
334 errno != EWOULDBLOCK) {
Damien Miller16aed052002-09-22 01:26:27 +1000335 verbose("Read error from remote host "
djm@openbsd.org95767262016-03-07 19:02:43 +0000336 "%.100s port %d: %.100s",
337 ssh_remote_ipaddr(ssh),
338 ssh_remote_port(ssh), strerror(errno));
Darren Tucker3e33cec2003-10-02 16:12:36 +1000339 cleanup_exit(255);
Damien Millerdcb6ecd2000-05-17 22:34:22 +1000340 }
341 } else {
342 /* Buffer any received data. */
djm@openbsd.org7ec5cb42019-01-19 21:40:48 +0000343 if ((r = ssh_packet_process_incoming(ssh, buf, len))
344 != 0)
345 fatal("%s: ssh_packet_process_incoming: %s",
346 __func__, ssh_err(r));
Damien Miller95def091999-11-25 00:26:21 +1100347 }
Damien Miller95def091999-11-25 00:26:21 +1100348 }
markus@openbsd.org6cb6dcf2016-08-13 17:47:40 +0000349 return 0;
Damien Miller95def091999-11-25 00:26:21 +1100350}
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000351
Damien Miller95def091999-11-25 00:26:21 +1100352/*
353 * Sends data from internal buffers to client program stdin.
354 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000355static void
djm@openbsd.org7ec5cb42019-01-19 21:40:48 +0000356process_output(struct ssh *ssh, fd_set *writeset, int connection_out)
Damien Miller95def091999-11-25 00:26:21 +1100357{
djm@openbsd.org7ec5cb42019-01-19 21:40:48 +0000358 int r;
359
Damien Miller95def091999-11-25 00:26:21 +1100360 /* Send any buffered packet data to the client. */
djm@openbsd.org7ec5cb42019-01-19 21:40:48 +0000361 if (FD_ISSET(connection_out, writeset)) {
djm@openbsd.orgafeb6a92020-01-30 07:21:38 +0000362 if ((r = ssh_packet_write_poll(ssh)) != 0) {
363 sshpkt_fatal(ssh, r, "%s: ssh_packet_write_poll",
364 __func__);
365 }
djm@openbsd.org7ec5cb42019-01-19 21:40:48 +0000366 }
Damien Miller95def091999-11-25 00:26:21 +1100367}
368
Ben Lindstrombba81212001-06-25 05:01:22 +0000369static void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000370process_buffered_input_packets(struct ssh *ssh)
Damien Millerb38eff82000-04-01 11:09:21 +1000371{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000372 ssh_dispatch_run_fatal(ssh, DISPATCH_NONBLOCK, NULL);
Damien Millerb38eff82000-04-01 11:09:21 +1000373}
374
Damien Miller3ec27592001-10-12 11:35:04 +1000375static void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000376collect_children(struct ssh *ssh)
Damien Miller3ec27592001-10-12 11:35:04 +1000377{
378 pid_t pid;
379 sigset_t oset, nset;
380 int status;
381
382 /* block SIGCHLD while we check for dead children */
383 sigemptyset(&nset);
384 sigaddset(&nset, SIGCHLD);
385 sigprocmask(SIG_BLOCK, &nset, &oset);
386 if (child_terminated) {
Damien Millerec04f362006-03-15 12:01:34 +1100387 debug("Received SIGCHLD.");
Ben Lindstrom47fd8112002-04-02 20:48:19 +0000388 while ((pid = waitpid(-1, &status, WNOHANG)) > 0 ||
deraadt@openbsd.org4d28fa72019-06-28 13:35:04 +0000389 (pid == -1 && errno == EINTR))
Ben Lindstrom47fd8112002-04-02 20:48:19 +0000390 if (pid > 0)
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000391 session_close_by_pid(ssh, pid, status);
Damien Miller3ec27592001-10-12 11:35:04 +1000392 child_terminated = 0;
393 }
394 sigprocmask(SIG_SETMASK, &oset, NULL);
395}
396
Damien Miller4af51302000-04-16 11:18:38 +1000397void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000398server_loop2(struct ssh *ssh, Authctxt *authctxt)
Damien Millerefb4afe2000-04-12 18:45:05 +1000399{
Damien Miller5e953212001-01-30 09:14:00 +1100400 fd_set *readset = NULL, *writeset = NULL;
djm@openbsd.org19bcf2e2016-02-08 10:57:07 +0000401 int max_fd;
markus@openbsd.org6cb6dcf2016-08-13 17:47:40 +0000402 u_int nalloc = 0, connection_in, connection_out;
Darren Tucker5f96f3b2013-05-16 20:29:28 +1000403 u_int64_t rekey_timeout_ms = 0;
Damien Millerefb4afe2000-04-12 18:45:05 +1000404
405 debug("Entering interactive session for SSH2.");
406
dtucker@openbsd.org3bf2a6a2020-01-23 07:10:22 +0000407 ssh_signal(SIGCHLD, sigchld_handler);
Damien Millerefb4afe2000-04-12 18:45:05 +1000408 child_terminated = 0;
djm@openbsd.org7ec5cb42019-01-19 21:40:48 +0000409 connection_in = ssh_packet_get_connection_in(ssh);
410 connection_out = ssh_packet_get_connection_out(ssh);
Damien Miller5e953212001-01-30 09:14:00 +1100411
Damien Miller24ecf612005-11-05 15:16:52 +1100412 if (!use_privsep) {
dtucker@openbsd.org3bf2a6a2020-01-23 07:10:22 +0000413 ssh_signal(SIGTERM, sigterm_handler);
414 ssh_signal(SIGINT, sigterm_handler);
415 ssh_signal(SIGQUIT, sigterm_handler);
Damien Miller24ecf612005-11-05 15:16:52 +1100416 }
417
Damien Millerf6681a32001-12-21 14:53:11 +1100418 notify_setup();
419
deraadt@openbsd.org9136ec12016-09-12 01:22:38 +0000420 max_fd = MAXIMUM(connection_in, connection_out);
421 max_fd = MAXIMUM(max_fd, notify_pipe[0]);
Damien Millerf6681a32001-12-21 14:53:11 +1100422
djm@openbsd.org7ec5cb42019-01-19 21:40:48 +0000423 server_init_dispatch(ssh);
Damien Millerefb4afe2000-04-12 18:45:05 +1000424
425 for (;;) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000426 process_buffered_input_packets(ssh);
Ben Lindstrom8e312f32001-04-04 23:50:21 +0000427
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000428 if (!ssh_packet_is_rekeying(ssh) &&
djm@openbsd.org7ec5cb42019-01-19 21:40:48 +0000429 ssh_packet_not_very_much_data_to_write(ssh))
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000430 channel_output_poll(ssh);
djm@openbsd.org7ec5cb42019-01-19 21:40:48 +0000431 if (options.rekey_interval > 0 &&
432 !ssh_packet_is_rekeying(ssh)) {
433 rekey_timeout_ms = ssh_packet_get_rekey_timeout(ssh) *
434 1000;
435 } else {
Darren Tucker5f96f3b2013-05-16 20:29:28 +1000436 rekey_timeout_ms = 0;
djm@openbsd.org7ec5cb42019-01-19 21:40:48 +0000437 }
Darren Tucker5f96f3b2013-05-16 20:29:28 +1000438
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000439 wait_until_can_do_something(ssh, connection_in, connection_out,
markus@openbsd.org6cb6dcf2016-08-13 17:47:40 +0000440 &readset, &writeset, &max_fd, &nalloc, rekey_timeout_ms);
Damien Miller52b77be2001-10-10 15:14:37 +1000441
Damien Miller24ecf612005-11-05 15:16:52 +1100442 if (received_sigterm) {
Darren Tucker3e1027c2012-12-07 13:07:46 +1100443 logit("Exiting on signal %d", (int)received_sigterm);
Damien Miller24ecf612005-11-05 15:16:52 +1100444 /* Clean up sessions, utmp, etc. */
445 cleanup_exit(255);
446 }
447
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000448 collect_children(ssh);
449 if (!ssh_packet_is_rekeying(ssh))
450 channel_after_select(ssh, readset, writeset);
451 if (process_input(ssh, readset, connection_in) < 0)
Ben Lindstrome34ab4c2001-04-07 01:12:11 +0000452 break;
djm@openbsd.org7ec5cb42019-01-19 21:40:48 +0000453 process_output(ssh, writeset, connection_out);
Damien Millerefb4afe2000-04-12 18:45:05 +1000454 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000455 collect_children(ssh);
Damien Miller3ec27592001-10-12 11:35:04 +1000456
Darren Tuckera627d422013-06-02 07:31:17 +1000457 free(readset);
458 free(writeset);
Damien Miller5e953212001-01-30 09:14:00 +1100459
Damien Miller52b77be2001-10-10 15:14:37 +1000460 /* free all channels, no more reads and writes */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000461 channel_free_all(ssh);
Ben Lindstrom4983d5e2001-07-04 05:17:40 +0000462
Damien Miller3ec27592001-10-12 11:35:04 +1000463 /* free remaining sessions, e.g. remove wtmp entries */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000464 session_destroy_all(ssh, NULL);
Damien Millerefb4afe2000-04-12 18:45:05 +1000465}
466
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +0000467static int
markus@openbsd.org2ae666a2017-05-30 14:23:52 +0000468server_input_keep_alive(int type, u_int32_t seq, struct ssh *ssh)
Ben Lindstrom5744dc42001-04-13 23:28:01 +0000469{
Damien Millerb5820f42003-12-17 16:27:32 +1100470 debug("Got %d/%u for keepalive", type, seq);
Damien Miller9f0f5c62001-12-21 14:45:46 +1100471 /*
Ben Lindstrom2f0304c2001-04-29 19:49:14 +0000472 * reset timeout, since we got a sane answer from the client.
Ben Lindstrom5744dc42001-04-13 23:28:01 +0000473 * even if this was generated by something other than
474 * the bogus CHANNEL_REQUEST we send for keepalives.
475 */
djm@openbsd.org7ec5cb42019-01-19 21:40:48 +0000476 ssh_packet_set_alive_timeouts(ssh, 0);
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +0000477 return 0;
Ben Lindstrom5744dc42001-04-13 23:28:01 +0000478}
479
Ben Lindstrombba81212001-06-25 05:01:22 +0000480static Channel *
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000481server_request_direct_tcpip(struct ssh *ssh, int *reason, const char **errmsg)
Damien Millerefb4afe2000-04-12 18:45:05 +1000482{
Damien Milleraa5b3f82012-12-03 09:50:54 +1100483 Channel *c = NULL;
djm@openbsd.org7ec5cb42019-01-19 21:40:48 +0000484 char *target = NULL, *originator = NULL;
485 u_int target_port = 0, originator_port = 0;
486 int r;
Damien Millerefb4afe2000-04-12 18:45:05 +1000487
djm@openbsd.org7ec5cb42019-01-19 21:40:48 +0000488 if ((r = sshpkt_get_cstring(ssh, &target, NULL)) != 0 ||
489 (r = sshpkt_get_u32(ssh, &target_port)) != 0 ||
490 (r = sshpkt_get_cstring(ssh, &originator, NULL)) != 0 ||
491 (r = sshpkt_get_u32(ssh, &originator_port)) != 0 ||
492 (r = sshpkt_get_end(ssh)) != 0)
493 sshpkt_fatal(ssh, r, "%s: parse packet", __func__);
494 if (target_port > 0xFFFF) {
495 error("%s: invalid target port", __func__);
496 *reason = SSH2_OPEN_ADMINISTRATIVELY_PROHIBITED;
497 goto out;
498 }
499 if (originator_port > 0xFFFF) {
500 error("%s: invalid originator port", __func__);
501 *reason = SSH2_OPEN_ADMINISTRATIVELY_PROHIBITED;
502 goto out;
503 }
Damien Millerb1715dc2000-05-30 13:44:51 +1000504
djm@openbsd.org7ec5cb42019-01-19 21:40:48 +0000505 debug("%s: originator %s port %u, target %s port %u", __func__,
djm@openbsd.org7c856852018-03-03 03:15:51 +0000506 originator, originator_port, target, target_port);
Damien Millerf6d9e222000-06-18 14:50:44 +1000507
Damien Milleraa5b3f82012-12-03 09:50:54 +1100508 /* XXX fine grained permissions */
509 if ((options.allow_tcp_forwarding & FORWARD_LOCAL) != 0 &&
djm@openbsd.org7c856852018-03-03 03:15:51 +0000510 auth_opts->permit_port_forwarding_flag &&
511 !options.disable_forwarding) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000512 c = channel_connect_to_port(ssh, target, target_port,
dtucker@openbsd.org858252f2017-02-01 02:59:09 +0000513 "direct-tcpip", "direct-tcpip", reason, errmsg);
Damien Milleraa5b3f82012-12-03 09:50:54 +1100514 } else {
515 logit("refused local port forward: "
516 "originator %s port %d, target %s port %d",
517 originator, originator_port, target, target_port);
dtucker@openbsd.org858252f2017-02-01 02:59:09 +0000518 if (reason != NULL)
519 *reason = SSH2_OPEN_ADMINISTRATIVELY_PROHIBITED;
Damien Milleraa5b3f82012-12-03 09:50:54 +1100520 }
Damien Millerbd740252008-05-19 15:37:09 +1000521
djm@openbsd.org7ec5cb42019-01-19 21:40:48 +0000522 out:
Darren Tuckera627d422013-06-02 07:31:17 +1000523 free(originator);
524 free(target);
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000525 return c;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100526}
527
Ben Lindstrombba81212001-06-25 05:01:22 +0000528static Channel *
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000529server_request_direct_streamlocal(struct ssh *ssh)
Damien Miller7acefbb2014-07-18 14:11:24 +1000530{
531 Channel *c = NULL;
djm@openbsd.org7ec5cb42019-01-19 21:40:48 +0000532 char *target = NULL, *originator = NULL;
533 u_int originator_port = 0;
djm@openbsd.org51045862017-01-04 05:37:40 +0000534 struct passwd *pw = the_authctxt->pw;
djm@openbsd.org7ec5cb42019-01-19 21:40:48 +0000535 int r;
djm@openbsd.org51045862017-01-04 05:37:40 +0000536
537 if (pw == NULL || !the_authctxt->valid)
djm@openbsd.org7c856852018-03-03 03:15:51 +0000538 fatal("%s: no/invalid user", __func__);
Damien Miller7acefbb2014-07-18 14:11:24 +1000539
djm@openbsd.org7ec5cb42019-01-19 21:40:48 +0000540 if ((r = sshpkt_get_cstring(ssh, &target, NULL)) != 0 ||
541 (r = sshpkt_get_cstring(ssh, &originator, NULL)) != 0 ||
542 (r = sshpkt_get_u32(ssh, &originator_port)) != 0 ||
543 (r = sshpkt_get_end(ssh)) != 0)
544 sshpkt_fatal(ssh, r, "%s: parse packet", __func__);
545 if (originator_port > 0xFFFF) {
546 error("%s: invalid originator port", __func__);
547 goto out;
548 }
Damien Miller7acefbb2014-07-18 14:11:24 +1000549
djm@openbsd.org7c856852018-03-03 03:15:51 +0000550 debug("%s: originator %s port %d, target %s", __func__,
Damien Miller7acefbb2014-07-18 14:11:24 +1000551 originator, originator_port, target);
552
553 /* XXX fine grained permissions */
554 if ((options.allow_streamlocal_forwarding & FORWARD_LOCAL) != 0 &&
djm@openbsd.org7c856852018-03-03 03:15:51 +0000555 auth_opts->permit_port_forwarding_flag &&
556 !options.disable_forwarding && (pw->pw_uid == 0 || use_privsep)) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000557 c = channel_connect_to_path(ssh, target,
Damien Miller7acefbb2014-07-18 14:11:24 +1000558 "direct-streamlocal@openssh.com", "direct-streamlocal");
559 } else {
560 logit("refused streamlocal port forward: "
561 "originator %s port %d, target %s",
562 originator, originator_port, target);
563 }
564
djm@openbsd.org7ec5cb42019-01-19 21:40:48 +0000565out:
Damien Miller7acefbb2014-07-18 14:11:24 +1000566 free(originator);
567 free(target);
Damien Miller7acefbb2014-07-18 14:11:24 +1000568 return c;
569}
570
571static Channel *
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000572server_request_tun(struct ssh *ssh)
Damien Millerd27b9472005-12-13 19:29:02 +1100573{
574 Channel *c = NULL;
djm@openbsd.org7ec5cb42019-01-19 21:40:48 +0000575 u_int mode, tun;
576 int r, sock;
djm@openbsd.orgb7548b12017-10-23 05:08:00 +0000577 char *tmp, *ifname = NULL;
Damien Millerd27b9472005-12-13 19:29:02 +1100578
djm@openbsd.org7ec5cb42019-01-19 21:40:48 +0000579 if ((r = sshpkt_get_u32(ssh, &mode)) != 0)
580 sshpkt_fatal(ssh, r, "%s: parse mode", __func__);
Damien Miller7b58e802005-12-13 19:33:19 +1100581 switch (mode) {
582 case SSH_TUNMODE_POINTOPOINT:
583 case SSH_TUNMODE_ETHERNET:
584 break;
585 default:
djm@openbsd.org7ec5cb42019-01-19 21:40:48 +0000586 ssh_packet_send_debug(ssh, "Unsupported tunnel device mode.");
Damien Miller7b58e802005-12-13 19:33:19 +1100587 return NULL;
588 }
589 if ((options.permit_tun & mode) == 0) {
djm@openbsd.org7ec5cb42019-01-19 21:40:48 +0000590 ssh_packet_send_debug(ssh, "Server has rejected tunnel device "
Damien Miller7b58e802005-12-13 19:33:19 +1100591 "forwarding");
Damien Millerd27b9472005-12-13 19:29:02 +1100592 return NULL;
593 }
594
djm@openbsd.org7ec5cb42019-01-19 21:40:48 +0000595 if ((r = sshpkt_get_u32(ssh, &tun)) != 0)
596 sshpkt_fatal(ssh, r, "%s: parse device", __func__);
597 if (tun > INT_MAX) {
598 debug("%s: invalid tun", __func__);
599 goto done;
600 }
djm@openbsd.org7c856852018-03-03 03:15:51 +0000601 if (auth_opts->force_tun_device != -1) {
djm@openbsd.org7ec5cb42019-01-19 21:40:48 +0000602 if (tun != SSH_TUNID_ANY &&
603 auth_opts->force_tun_device != (int)tun)
Damien Millerd27b9472005-12-13 19:29:02 +1100604 goto done;
djm@openbsd.org7c856852018-03-03 03:15:51 +0000605 tun = auth_opts->force_tun_device;
Damien Millerd27b9472005-12-13 19:29:02 +1100606 }
djm@openbsd.orgb7548b12017-10-23 05:08:00 +0000607 sock = tun_open(tun, mode, &ifname);
Damien Millerd27b9472005-12-13 19:29:02 +1100608 if (sock < 0)
609 goto done;
djm@openbsd.orgb7548b12017-10-23 05:08:00 +0000610 debug("Tunnel forwarding using interface %s", ifname);
Darren Tucker3c511432018-02-13 09:07:29 +1100611
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000612 c = channel_new(ssh, "tun", SSH_CHANNEL_OPEN, sock, sock, -1,
Damien Millerd27b9472005-12-13 19:29:02 +1100613 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT, 0, "tun", 1);
614 c->datagram = 1;
Damien Miller598bbc22005-12-31 16:33:36 +1100615#if defined(SSH_TUN_FILTER)
616 if (mode == SSH_TUNMODE_POINTOPOINT)
Damien Miller871f1e42017-09-12 18:01:35 +1000617 channel_register_filter(ssh, c->self, sys_tun_infilter,
Darren Tucker1cf65ae2008-06-13 05:09:18 +1000618 sys_tun_outfilter, NULL, NULL);
Damien Miller598bbc22005-12-31 16:33:36 +1100619#endif
Damien Millerd27b9472005-12-13 19:29:02 +1100620
djm@openbsd.orgb7548b12017-10-23 05:08:00 +0000621 /*
622 * Update the list of names exposed to the session
623 * XXX remove these if the tunnels are closed (won't matter
624 * much if they are already in the environment though)
625 */
626 tmp = tun_fwd_ifnames;
627 xasprintf(&tun_fwd_ifnames, "%s%s%s",
628 tun_fwd_ifnames == NULL ? "" : tun_fwd_ifnames,
629 tun_fwd_ifnames == NULL ? "" : ",",
630 ifname);
631 free(tmp);
632 free(ifname);
633
Damien Millerd27b9472005-12-13 19:29:02 +1100634 done:
635 if (c == NULL)
djm@openbsd.org7ec5cb42019-01-19 21:40:48 +0000636 ssh_packet_send_debug(ssh, "Failed to open the tunnel device.");
Damien Millerd27b9472005-12-13 19:29:02 +1100637 return c;
638}
639
640static Channel *
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000641server_request_session(struct ssh *ssh)
Damien Miller0bc1bd82000-11-13 22:57:25 +1100642{
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000643 Channel *c;
djm@openbsd.org7ec5cb42019-01-19 21:40:48 +0000644 int r;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100645
646 debug("input_session_request");
djm@openbsd.org7ec5cb42019-01-19 21:40:48 +0000647 if ((r = sshpkt_get_end(ssh)) != 0)
648 sshpkt_fatal(ssh, r, "%s: parse packet", __func__);
Darren Tucker8901fa92008-06-11 09:34:01 +1000649
650 if (no_more_sessions) {
djm@openbsd.org135e3022019-01-19 22:30:52 +0000651 ssh_packet_disconnect(ssh, "Possible attack: attempt to open a "
djm@openbsd.org7ec5cb42019-01-19 21:40:48 +0000652 "session after additional sessions disabled");
Darren Tucker8901fa92008-06-11 09:34:01 +1000653 }
654
Damien Miller0bc1bd82000-11-13 22:57:25 +1100655 /*
656 * A server session has no fd to read or write until a
657 * CHANNEL_REQUEST for a shell is made, so we set the type to
658 * SSH_CHANNEL_LARVAL. Additionally, a callback for handling all
659 * CHANNEL_REQUEST messages is registered.
660 */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000661 c = channel_new(ssh, "session", SSH_CHANNEL_LARVAL,
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000662 -1, -1, -1, /*window size*/0, CHAN_SES_PACKET_DEFAULT,
Damien Millerb1ca8bb2003-05-14 13:45:42 +1000663 0, "server-session", 1);
Darren Tucker3e33cec2003-10-02 16:12:36 +1000664 if (session_open(the_authctxt, c->self) != 1) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000665 debug("session open failed, free channel %d", c->self);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000666 channel_free(ssh, c);
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000667 return NULL;
668 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000669 channel_register_cleanup(ssh, c->self, session_close_by_channel, 0);
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000670 return c;
Damien Millerefb4afe2000-04-12 18:45:05 +1000671}
672
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +0000673static int
markus@openbsd.org2ae666a2017-05-30 14:23:52 +0000674server_input_channel_open(int type, u_int32_t seq, struct ssh *ssh)
Damien Millerefb4afe2000-04-12 18:45:05 +1000675{
676 Channel *c = NULL;
djm@openbsd.org7ec5cb42019-01-19 21:40:48 +0000677 char *ctype = NULL;
dtucker@openbsd.org858252f2017-02-01 02:59:09 +0000678 const char *errmsg = NULL;
djm@openbsd.org7ec5cb42019-01-19 21:40:48 +0000679 int r, reason = SSH2_OPEN_CONNECT_FAILED;
dtucker@openbsd.org6e1d1bb2019-11-27 05:38:43 +0000680 u_int rchan = 0, rmaxpack = 0, rwindow = 0;
Damien Millerefb4afe2000-04-12 18:45:05 +1000681
djm@openbsd.org7ec5cb42019-01-19 21:40:48 +0000682 if ((r = sshpkt_get_cstring(ssh, &ctype, NULL)) != 0 ||
683 (r = sshpkt_get_u32(ssh, &rchan)) != 0 ||
684 (r = sshpkt_get_u32(ssh, &rwindow)) != 0 ||
685 (r = sshpkt_get_u32(ssh, &rmaxpack)) != 0)
686 sshpkt_fatal(ssh, r, "%s: parse packet", __func__);
687 debug("%s: ctype %s rchan %u win %u max %u", __func__,
dtucker@openbsd.org6e1d1bb2019-11-27 05:38:43 +0000688 ctype, rchan, rwindow, rmaxpack);
Damien Millerefb4afe2000-04-12 18:45:05 +1000689
djm@openbsd.org0ecd20b2020-01-25 04:48:26 +0000690 if (strcmp(ctype, "session") == 0) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000691 c = server_request_session(ssh);
Damien Millerefb4afe2000-04-12 18:45:05 +1000692 } else if (strcmp(ctype, "direct-tcpip") == 0) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000693 c = server_request_direct_tcpip(ssh, &reason, &errmsg);
Damien Miller7acefbb2014-07-18 14:11:24 +1000694 } else if (strcmp(ctype, "direct-streamlocal@openssh.com") == 0) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000695 c = server_request_direct_streamlocal(ssh);
Damien Millerd27b9472005-12-13 19:29:02 +1100696 } else if (strcmp(ctype, "tun@openssh.com") == 0) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000697 c = server_request_tun(ssh);
Damien Millerefb4afe2000-04-12 18:45:05 +1000698 }
699 if (c != NULL) {
djm@openbsd.org027607f2018-06-08 01:55:40 +0000700 debug("%s: confirm %s", __func__, ctype);
djm@openbsd.org0ecd20b2020-01-25 04:48:26 +0000701 c->remote_id = rchan;
djm@openbsd.org9f532292017-09-12 06:35:31 +0000702 c->have_remote_id = 1;
Damien Millerefb4afe2000-04-12 18:45:05 +1000703 c->remote_window = rwindow;
704 c->remote_maxpacket = rmaxpack;
Ben Lindstrom69128662001-05-08 20:07:39 +0000705 if (c->type != SSH_CHANNEL_CONNECTING) {
djm@openbsd.org7ec5cb42019-01-19 21:40:48 +0000706 if ((r = sshpkt_start(ssh, SSH2_MSG_CHANNEL_OPEN_CONFIRMATION)) != 0 ||
707 (r = sshpkt_put_u32(ssh, c->remote_id)) != 0 ||
708 (r = sshpkt_put_u32(ssh, c->self)) != 0 ||
709 (r = sshpkt_put_u32(ssh, c->local_window)) != 0 ||
710 (r = sshpkt_put_u32(ssh, c->local_maxpacket)) != 0 ||
711 (r = sshpkt_send(ssh)) != 0) {
712 sshpkt_fatal(ssh, r,
713 "%s: send open confirm", __func__);
714 }
Ben Lindstrom69128662001-05-08 20:07:39 +0000715 }
Damien Millerefb4afe2000-04-12 18:45:05 +1000716 } else {
djm@openbsd.org027607f2018-06-08 01:55:40 +0000717 debug("%s: failure %s", __func__, ctype);
djm@openbsd.org7ec5cb42019-01-19 21:40:48 +0000718 if ((r = sshpkt_start(ssh, SSH2_MSG_CHANNEL_OPEN_FAILURE)) != 0 ||
719 (r = sshpkt_put_u32(ssh, rchan)) != 0 ||
720 (r = sshpkt_put_u32(ssh, reason)) != 0 ||
721 (r = sshpkt_put_cstring(ssh, errmsg ? errmsg : "open failed")) != 0 ||
722 (r = sshpkt_put_cstring(ssh, "")) != 0 ||
723 (r = sshpkt_send(ssh)) != 0) {
724 sshpkt_fatal(ssh, r,
725 "%s: send open failure", __func__);
726 }
Damien Millerefb4afe2000-04-12 18:45:05 +1000727 }
Darren Tuckera627d422013-06-02 07:31:17 +1000728 free(ctype);
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +0000729 return 0;
Damien Millerefb4afe2000-04-12 18:45:05 +1000730}
731
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +0000732static int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000733server_input_hostkeys_prove(struct ssh *ssh, struct sshbuf **respp)
djm@openbsd.org523463a2015-02-16 22:13:32 +0000734{
djm@openbsd.org523463a2015-02-16 22:13:32 +0000735 struct sshbuf *resp = NULL;
736 struct sshbuf *sigbuf = NULL;
737 struct sshkey *key = NULL, *key_pub = NULL, *key_prv = NULL;
djm@openbsd.org78607312017-12-18 23:16:23 +0000738 int r, ndx, kexsigtype, use_kexsigtype, success = 0;
djm@openbsd.org523463a2015-02-16 22:13:32 +0000739 const u_char *blob;
740 u_char *sig = 0;
741 size_t blen, slen;
742
743 if ((resp = sshbuf_new()) == NULL || (sigbuf = sshbuf_new()) == NULL)
744 fatal("%s: sshbuf_new", __func__);
745
djm@openbsd.org78607312017-12-18 23:16:23 +0000746 kexsigtype = sshkey_type_plain(
747 sshkey_type_from_name(ssh->kex->hostkey_alg));
djm@openbsd.org523463a2015-02-16 22:13:32 +0000748 while (ssh_packet_remaining(ssh) > 0) {
749 sshkey_free(key);
750 key = NULL;
751 if ((r = sshpkt_get_string_direct(ssh, &blob, &blen)) != 0 ||
752 (r = sshkey_from_blob(blob, blen, &key)) != 0) {
753 error("%s: couldn't parse key: %s",
754 __func__, ssh_err(r));
755 goto out;
756 }
757 /*
758 * Better check that this is actually one of our hostkeys
759 * before attempting to sign anything with it.
760 */
761 if ((ndx = ssh->kex->host_key_index(key, 1, ssh)) == -1) {
762 error("%s: unknown host %s key",
763 __func__, sshkey_type(key));
764 goto out;
765 }
766 /*
767 * XXX refactor: make kex->sign just use an index rather
768 * than passing in public and private keys
769 */
770 if ((key_prv = get_hostkey_by_index(ndx)) == NULL &&
771 (key_pub = get_hostkey_public_by_index(ndx, ssh)) == NULL) {
772 error("%s: can't retrieve hostkey %d", __func__, ndx);
773 goto out;
774 }
775 sshbuf_reset(sigbuf);
776 free(sig);
777 sig = NULL;
djm@openbsd.org78607312017-12-18 23:16:23 +0000778 /*
779 * For RSA keys, prefer to use the signature type negotiated
780 * during KEX to the default (SHA1).
781 */
782 use_kexsigtype = kexsigtype == KEY_RSA &&
783 sshkey_type_plain(key->type) == KEY_RSA;
djm@openbsd.org44732de2015-02-20 22:17:21 +0000784 if ((r = sshbuf_put_cstring(sigbuf,
785 "hostkeys-prove-00@openssh.com")) != 0 ||
786 (r = sshbuf_put_string(sigbuf,
djm@openbsd.org523463a2015-02-16 22:13:32 +0000787 ssh->kex->session_id, ssh->kex->session_id_len)) != 0 ||
djm@openbsd.org523463a2015-02-16 22:13:32 +0000788 (r = sshkey_puts(key, sigbuf)) != 0 ||
djm@openbsd.org04c091f2019-01-19 21:43:56 +0000789 (r = ssh->kex->sign(ssh, key_prv, key_pub, &sig, &slen,
djm@openbsd.org04c7e282017-12-18 02:25:15 +0000790 sshbuf_ptr(sigbuf), sshbuf_len(sigbuf),
djm@openbsd.org04c091f2019-01-19 21:43:56 +0000791 use_kexsigtype ? ssh->kex->hostkey_alg : NULL)) != 0 ||
djm@openbsd.org523463a2015-02-16 22:13:32 +0000792 (r = sshbuf_put_string(resp, sig, slen)) != 0) {
793 error("%s: couldn't prepare signature: %s",
794 __func__, ssh_err(r));
795 goto out;
796 }
797 }
798 /* Success */
799 *respp = resp;
800 resp = NULL; /* don't free it */
801 success = 1;
802 out:
803 free(sig);
804 sshbuf_free(resp);
805 sshbuf_free(sigbuf);
806 sshkey_free(key);
807 return success;
808}
809
810static int
markus@openbsd.org2ae666a2017-05-30 14:23:52 +0000811server_input_global_request(int type, u_int32_t seq, struct ssh *ssh)
Damien Miller0bc1bd82000-11-13 22:57:25 +1100812{
djm@openbsd.org7ec5cb42019-01-19 21:40:48 +0000813 char *rtype = NULL;
814 u_char want_reply = 0;
djm@openbsd.org523463a2015-02-16 22:13:32 +0000815 int r, success = 0, allocated_listen_port = 0;
djm@openbsd.org7ec5cb42019-01-19 21:40:48 +0000816 u_int port = 0;
djm@openbsd.org523463a2015-02-16 22:13:32 +0000817 struct sshbuf *resp = NULL;
djm@openbsd.org51045862017-01-04 05:37:40 +0000818 struct passwd *pw = the_authctxt->pw;
djm@openbsd.org7ec5cb42019-01-19 21:40:48 +0000819 struct Forward fwd;
djm@openbsd.org51045862017-01-04 05:37:40 +0000820
djm@openbsd.org7ec5cb42019-01-19 21:40:48 +0000821 memset(&fwd, 0, sizeof(fwd));
djm@openbsd.org51045862017-01-04 05:37:40 +0000822 if (pw == NULL || !the_authctxt->valid)
djm@openbsd.org027607f2018-06-08 01:55:40 +0000823 fatal("%s: no/invalid user", __func__);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100824
djm@openbsd.org7ec5cb42019-01-19 21:40:48 +0000825 if ((r = sshpkt_get_cstring(ssh, &rtype, NULL)) != 0 ||
826 (r = sshpkt_get_u8(ssh, &want_reply)) != 0)
827 sshpkt_fatal(ssh, r, "%s: parse packet", __func__);
djm@openbsd.org027607f2018-06-08 01:55:40 +0000828 debug("%s: rtype %s want_reply %d", __func__, rtype, want_reply);
Kevin Stevesef4eea92001-02-05 12:42:17 +0000829
Ben Lindstrom7bb8b492001-03-17 00:47:54 +0000830 /* -R style forwarding */
Damien Miller0bc1bd82000-11-13 22:57:25 +1100831 if (strcmp(rtype, "tcpip-forward") == 0) {
djm@openbsd.org7ec5cb42019-01-19 21:40:48 +0000832 if ((r = sshpkt_get_cstring(ssh, &fwd.listen_host, NULL)) != 0 ||
833 (r = sshpkt_get_u32(ssh, &port)) != 0)
834 sshpkt_fatal(ssh, r, "%s: parse tcpip-forward", __func__);
835 debug("%s: tcpip-forward listen %s port %u", __func__,
836 fwd.listen_host, port);
837 if (port <= INT_MAX)
838 fwd.listen_port = (int)port;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100839 /* check permissions */
djm@openbsd.org7ec5cb42019-01-19 21:40:48 +0000840 if (port > INT_MAX ||
841 (options.allow_tcp_forwarding & FORWARD_REMOTE) == 0 ||
djm@openbsd.org7c856852018-03-03 03:15:51 +0000842 !auth_opts->permit_port_forwarding_flag ||
843 options.disable_forwarding ||
Darren Tucker5f41f032016-04-08 21:14:13 +1000844 (!want_reply && fwd.listen_port == 0) ||
dtucker@openbsd.org1c4ef0b2016-10-23 22:04:05 +0000845 (fwd.listen_port != 0 &&
846 !bind_permitted(fwd.listen_port, pw->pw_uid))) {
Damien Miller0bc1bd82000-11-13 22:57:25 +1100847 success = 0;
djm@openbsd.org7ec5cb42019-01-19 21:40:48 +0000848 ssh_packet_send_debug(ssh, "Server has disabled port forwarding.");
Damien Miller0bc1bd82000-11-13 22:57:25 +1100849 } else {
850 /* Start listening on the port */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000851 success = channel_setup_remote_fwd_listener(ssh, &fwd,
Damien Miller7acefbb2014-07-18 14:11:24 +1000852 &allocated_listen_port, &options.fwd_opts);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100853 }
djm@openbsd.org523463a2015-02-16 22:13:32 +0000854 if ((resp = sshbuf_new()) == NULL)
855 fatal("%s: sshbuf_new", __func__);
djm@openbsd.orgb1d6b392015-11-28 06:41:03 +0000856 if (allocated_listen_port != 0 &&
857 (r = sshbuf_put_u32(resp, allocated_listen_port)) != 0)
djm@openbsd.org523463a2015-02-16 22:13:32 +0000858 fatal("%s: sshbuf_put_u32: %s", __func__, ssh_err(r));
Darren Tuckere7066df2004-05-24 10:18:05 +1000859 } else if (strcmp(rtype, "cancel-tcpip-forward") == 0) {
djm@openbsd.org7ec5cb42019-01-19 21:40:48 +0000860 if ((r = sshpkt_get_cstring(ssh, &fwd.listen_host, NULL)) != 0 ||
861 (r = sshpkt_get_u32(ssh, &port)) != 0)
862 sshpkt_fatal(ssh, r, "%s: parse cancel-tcpip-forward", __func__);
Darren Tuckere7066df2004-05-24 10:18:05 +1000863
Darren Tuckere7066df2004-05-24 10:18:05 +1000864 debug("%s: cancel-tcpip-forward addr %s port %d", __func__,
djm@openbsd.org7ec5cb42019-01-19 21:40:48 +0000865 fwd.listen_host, port);
866 if (port <= INT_MAX) {
867 fwd.listen_port = (int)port;
868 success = channel_cancel_rport_listener(ssh, &fwd);
869 }
Damien Miller7acefbb2014-07-18 14:11:24 +1000870 } else if (strcmp(rtype, "streamlocal-forward@openssh.com") == 0) {
djm@openbsd.org7ec5cb42019-01-19 21:40:48 +0000871 if ((r = sshpkt_get_cstring(ssh, &fwd.listen_path, NULL)) != 0)
872 sshpkt_fatal(ssh, r, "%s: parse streamlocal-forward@openssh.com", __func__);
djm@openbsd.org027607f2018-06-08 01:55:40 +0000873 debug("%s: streamlocal-forward listen path %s", __func__,
Damien Miller7acefbb2014-07-18 14:11:24 +1000874 fwd.listen_path);
875
876 /* check permissions */
877 if ((options.allow_streamlocal_forwarding & FORWARD_REMOTE) == 0
djm@openbsd.org7c856852018-03-03 03:15:51 +0000878 || !auth_opts->permit_port_forwarding_flag ||
879 options.disable_forwarding ||
djm@openbsd.org51045862017-01-04 05:37:40 +0000880 (pw->pw_uid != 0 && !use_privsep)) {
Damien Miller7acefbb2014-07-18 14:11:24 +1000881 success = 0;
djm@openbsd.org7ec5cb42019-01-19 21:40:48 +0000882 ssh_packet_send_debug(ssh, "Server has disabled "
djm@openbsd.org51045862017-01-04 05:37:40 +0000883 "streamlocal forwarding.");
Damien Miller7acefbb2014-07-18 14:11:24 +1000884 } else {
885 /* Start listening on the socket */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000886 success = channel_setup_remote_fwd_listener(ssh,
Damien Miller7acefbb2014-07-18 14:11:24 +1000887 &fwd, NULL, &options.fwd_opts);
888 }
Damien Miller7acefbb2014-07-18 14:11:24 +1000889 } else if (strcmp(rtype, "cancel-streamlocal-forward@openssh.com") == 0) {
djm@openbsd.org7ec5cb42019-01-19 21:40:48 +0000890 if ((r = sshpkt_get_cstring(ssh, &fwd.listen_path, NULL)) != 0)
891 sshpkt_fatal(ssh, r, "%s: parse cancel-streamlocal-forward@openssh.com", __func__);
Damien Miller7acefbb2014-07-18 14:11:24 +1000892 debug("%s: cancel-streamlocal-forward path %s", __func__,
893 fwd.listen_path);
894
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000895 success = channel_cancel_rport_listener(ssh, &fwd);
Darren Tucker8901fa92008-06-11 09:34:01 +1000896 } else if (strcmp(rtype, "no-more-sessions@openssh.com") == 0) {
897 no_more_sessions = 1;
898 success = 1;
djm@openbsd.org44732de2015-02-20 22:17:21 +0000899 } else if (strcmp(rtype, "hostkeys-prove-00@openssh.com") == 0) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000900 success = server_input_hostkeys_prove(ssh, &resp);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100901 }
djm@openbsd.org7ec5cb42019-01-19 21:40:48 +0000902 /* XXX sshpkt_get_end() */
Damien Miller0bc1bd82000-11-13 22:57:25 +1100903 if (want_reply) {
djm@openbsd.org7ec5cb42019-01-19 21:40:48 +0000904 if ((r = sshpkt_start(ssh, success ?
905 SSH2_MSG_REQUEST_SUCCESS : SSH2_MSG_REQUEST_FAILURE)) != 0 ||
906 (success && resp != NULL && (r = sshpkt_putb(ssh, resp)) != 0) ||
907 (r = sshpkt_send(ssh)) != 0 ||
908 (r = ssh_packet_write_wait(ssh)) != 0)
909 sshpkt_fatal(ssh, r, "%s: send reply", __func__);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100910 }
djm@openbsd.org7ec5cb42019-01-19 21:40:48 +0000911 free(fwd.listen_host);
912 free(fwd.listen_path);
Darren Tuckera627d422013-06-02 07:31:17 +1000913 free(rtype);
djm@openbsd.org523463a2015-02-16 22:13:32 +0000914 sshbuf_free(resp);
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +0000915 return 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100916}
Damien Miller4f7becb2006-03-26 14:10:14 +1100917
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +0000918static int
markus@openbsd.org2ae666a2017-05-30 14:23:52 +0000919server_input_channel_req(int type, u_int32_t seq, struct ssh *ssh)
Damien Millerc7ef63d2002-02-05 12:21:42 +1100920{
921 Channel *c;
djm@openbsd.org7ec5cb42019-01-19 21:40:48 +0000922 int r, success = 0;
923 char *rtype = NULL;
924 u_char want_reply = 0;
925 u_int id = 0;
Damien Millerc7ef63d2002-02-05 12:21:42 +1100926
djm@openbsd.org7ec5cb42019-01-19 21:40:48 +0000927 if ((r = sshpkt_get_u32(ssh, &id)) != 0 ||
928 (r = sshpkt_get_cstring(ssh, &rtype, NULL)) != 0 ||
929 (r = sshpkt_get_u8(ssh, &want_reply)) != 0)
930 sshpkt_fatal(ssh, r, "%s: parse packet", __func__);
Damien Millerc7ef63d2002-02-05 12:21:42 +1100931
djm@openbsd.org7ec5cb42019-01-19 21:40:48 +0000932 debug("server_input_channel_req: channel %u request %s reply %d",
933 id, rtype, want_reply);
Damien Millerc7ef63d2002-02-05 12:21:42 +1100934
djm@openbsd.org135e3022019-01-19 22:30:52 +0000935 if (id >= INT_MAX || (c = channel_lookup(ssh, (int)id)) == NULL) {
936 ssh_packet_disconnect(ssh, "%s: unknown channel %d",
937 __func__, id);
938 }
Damien Millerbab9bd42008-05-19 16:06:47 +1000939 if (!strcmp(rtype, "eow@openssh.com")) {
djm@openbsd.org7ec5cb42019-01-19 21:40:48 +0000940 if ((r = sshpkt_get_end(ssh)) != 0)
941 sshpkt_fatal(ssh, r, "%s: parse packet", __func__);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000942 chan_rcvd_eow(ssh, c);
Darren Tucker8810dd42008-07-02 22:32:14 +1000943 } else if ((c->type == SSH_CHANNEL_LARVAL ||
944 c->type == SSH_CHANNEL_OPEN) && strcmp(c->ctype, "session") == 0)
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000945 success = session_input_channel_req(ssh, c, rtype);
djm@openbsd.org7ec5cb42019-01-19 21:40:48 +0000946 if (want_reply && !(c->flags & CHAN_CLOSE_SENT)) {
djm@openbsd.org9f532292017-09-12 06:35:31 +0000947 if (!c->have_remote_id)
948 fatal("%s: channel %d: no remote_id",
949 __func__, c->self);
djm@openbsd.org7ec5cb42019-01-19 21:40:48 +0000950 if ((r = sshpkt_start(ssh, success ?
951 SSH2_MSG_CHANNEL_SUCCESS : SSH2_MSG_CHANNEL_FAILURE)) != 0 ||
952 (r = sshpkt_put_u32(ssh, c->remote_id)) != 0 ||
953 (r = sshpkt_send(ssh)) != 0)
954 sshpkt_fatal(ssh, r, "%s: send reply", __func__);
Damien Millerc7ef63d2002-02-05 12:21:42 +1100955 }
Darren Tuckera627d422013-06-02 07:31:17 +1000956 free(rtype);
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +0000957 return 0;
Damien Millerc7ef63d2002-02-05 12:21:42 +1100958}
Damien Miller0bc1bd82000-11-13 22:57:25 +1100959
Ben Lindstrombba81212001-06-25 05:01:22 +0000960static void
djm@openbsd.org7ec5cb42019-01-19 21:40:48 +0000961server_init_dispatch(struct ssh *ssh)
Damien Millerefb4afe2000-04-12 18:45:05 +1000962{
markus@openbsd.org6cb6dcf2016-08-13 17:47:40 +0000963 debug("server_init_dispatch");
djm@openbsd.org7ec5cb42019-01-19 21:40:48 +0000964 ssh_dispatch_init(ssh, &dispatch_protocol_error);
965 ssh_dispatch_set(ssh, SSH2_MSG_CHANNEL_CLOSE, &channel_input_oclose);
966 ssh_dispatch_set(ssh, SSH2_MSG_CHANNEL_DATA, &channel_input_data);
967 ssh_dispatch_set(ssh, SSH2_MSG_CHANNEL_EOF, &channel_input_ieof);
968 ssh_dispatch_set(ssh, SSH2_MSG_CHANNEL_EXTENDED_DATA, &channel_input_extended_data);
969 ssh_dispatch_set(ssh, SSH2_MSG_CHANNEL_OPEN, &server_input_channel_open);
970 ssh_dispatch_set(ssh, SSH2_MSG_CHANNEL_OPEN_CONFIRMATION, &channel_input_open_confirmation);
971 ssh_dispatch_set(ssh, SSH2_MSG_CHANNEL_OPEN_FAILURE, &channel_input_open_failure);
972 ssh_dispatch_set(ssh, SSH2_MSG_CHANNEL_REQUEST, &server_input_channel_req);
973 ssh_dispatch_set(ssh, SSH2_MSG_CHANNEL_WINDOW_ADJUST, &channel_input_window_adjust);
974 ssh_dispatch_set(ssh, SSH2_MSG_GLOBAL_REQUEST, &server_input_global_request);
Ben Lindstrom5744dc42001-04-13 23:28:01 +0000975 /* client_alive */
djm@openbsd.org7ec5cb42019-01-19 21:40:48 +0000976 ssh_dispatch_set(ssh, SSH2_MSG_CHANNEL_SUCCESS, &server_input_keep_alive);
977 ssh_dispatch_set(ssh, SSH2_MSG_CHANNEL_FAILURE, &server_input_keep_alive);
978 ssh_dispatch_set(ssh, SSH2_MSG_REQUEST_SUCCESS, &server_input_keep_alive);
979 ssh_dispatch_set(ssh, SSH2_MSG_REQUEST_FAILURE, &server_input_keep_alive);
Ben Lindstrom8ac91062001-04-04 17:57:54 +0000980 /* rekeying */
djm@openbsd.org7ec5cb42019-01-19 21:40:48 +0000981 ssh_dispatch_set(ssh, SSH2_MSG_KEXINIT, &kex_input_kexinit);
Damien Millerefb4afe2000-04-12 18:45:05 +1000982}