blob: 1babc7a51a8c86763aae5ac141b5393bb89a2f8d [file] [log] [blame]
dtucker@openbsd.org3bf2a6a2020-01-23 07:10:22 +00001/* $OpenBSD: serverloop.c,v 1.219 2020/01/23 07:10:22 dtucker 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.org7ec5cb42019-01-19 21:40:48 +0000187 if (ssh_packet_inc_alive_timeouts(ssh) >
188 options.client_alive_count_max) {
dtucker@openbsd.org48c23a32017-12-10 05:55:29 +0000189 sshpkt_fmt_connection_id(ssh, remote_id, sizeof(remote_id));
190 logit("Timeout, client not responding from %s", remote_id);
Damien Miller985a4482006-10-24 03:02:41 +1000191 cleanup_exit(255);
192 }
Damien Miller8c3902a2001-10-10 15:01:40 +1000193
Damien Miller8c3902a2001-10-10 15:01:40 +1000194 /*
Damien Millerb5820f42003-12-17 16:27:32 +1100195 * send a bogus global/channel request with "wantreply",
Damien Miller8c3902a2001-10-10 15:01:40 +1000196 * we should get back a failure
197 */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000198 if ((channel_id = channel_find_open(ssh)) == -1) {
djm@openbsd.org7ec5cb42019-01-19 21:40:48 +0000199 if ((r = sshpkt_start(ssh, SSH2_MSG_GLOBAL_REQUEST)) != 0 ||
200 (r = sshpkt_put_cstring(ssh, "keepalive@openssh.com"))
201 != 0 ||
202 (r = sshpkt_put_u8(ssh, 1)) != 0) /* boolean: want reply */
203 fatal("%s: %s", __func__, ssh_err(r));
Damien Millerb5820f42003-12-17 16:27:32 +1100204 } else {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000205 channel_request_start(ssh, channel_id,
206 "keepalive@openssh.com", 1);
Damien Millerb5820f42003-12-17 16:27:32 +1100207 }
djm@openbsd.org7ec5cb42019-01-19 21:40:48 +0000208 if ((r = sshpkt_send(ssh)) != 0)
209 fatal("%s: %s", __func__, ssh_err(r));
Damien Miller8c3902a2001-10-10 15:01:40 +1000210}
211
Damien Miller95def091999-11-25 00:26:21 +1100212/*
213 * Sleep in select() until we can do something. This will initialize the
214 * select masks. Upon return, the masks will indicate which descriptors
215 * have data or can accept data. Optionally, a maximum time can be specified
216 * for the duration of the wait (0 = infinite).
217 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000218static void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000219wait_until_can_do_something(struct ssh *ssh,
220 int connection_in, int connection_out,
markus@openbsd.org6cb6dcf2016-08-13 17:47:40 +0000221 fd_set **readsetp, fd_set **writesetp, int *maxfdp,
djm@openbsd.org988e4292016-03-04 03:35:44 +0000222 u_int *nallocp, u_int64_t max_time_ms)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000223{
Damien Miller95def091999-11-25 00:26:21 +1100224 struct timeval tv, *tvp;
225 int ret;
Damien Miller6c6da332012-06-20 22:31:26 +1000226 time_t minwait_secs = 0;
Ben Lindstrom5744dc42001-04-13 23:28:01 +0000227 int client_alive_scheduled = 0;
dtucker@openbsd.orgab5fee82019-03-06 21:06:59 +0000228 /* time we last heard from the client OR sent a keepalive */
dtucker@openbsd.orgb60ff202017-08-11 03:58:36 +0000229 static time_t last_client_time;
Ben Lindstrom5744dc42001-04-13 23:28:01 +0000230
Damien Millera6508752012-04-22 11:21:10 +1000231 /* Allocate and update select() masks for channel descriptors. */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000232 channel_prepare_select(ssh, readsetp, writesetp, maxfdp,
djm@openbsd.org71e5a532017-08-30 03:59:08 +0000233 nallocp, &minwait_secs);
Damien Millera6508752012-04-22 11:21:10 +1000234
djm@openbsd.org988e4292016-03-04 03:35:44 +0000235 /* XXX need proper deadline system for rekey/client alive */
Damien Millera6508752012-04-22 11:21:10 +1000236 if (minwait_secs != 0)
deraadt@openbsd.org9136ec12016-09-12 01:22:38 +0000237 max_time_ms = MINIMUM(max_time_ms, (u_int)minwait_secs * 1000);
Damien Millera6508752012-04-22 11:21:10 +1000238
Ben Lindstrom5744dc42001-04-13 23:28:01 +0000239 /*
Damien Miller9f0f5c62001-12-21 14:45:46 +1100240 * if using client_alive, set the max timeout accordingly,
Ben Lindstrom5744dc42001-04-13 23:28:01 +0000241 * and indicate that this particular timeout was for client
242 * alive by setting the client_alive_scheduled flag.
243 *
244 * this could be randomized somewhat to make traffic
Damien Miller9f0f5c62001-12-21 14:45:46 +1100245 * analysis more difficult, but we're not doing it yet.
Ben Lindstrom5744dc42001-04-13 23:28:01 +0000246 */
markus@openbsd.org6cb6dcf2016-08-13 17:47:40 +0000247 if (options.client_alive_interval) {
djm@openbsd.org988e4292016-03-04 03:35:44 +0000248 uint64_t keepalive_ms =
249 (uint64_t)options.client_alive_interval * 1000;
250
djm@openbsd.org21da87f2019-03-27 09:29:14 +0000251 if (max_time_ms == 0 || max_time_ms > keepalive_ms) {
djm@openbsd.org988e4292016-03-04 03:35:44 +0000252 max_time_ms = keepalive_ms;
djm@openbsd.org21da87f2019-03-27 09:29:14 +0000253 client_alive_scheduled = 1;
254 }
Ben Lindstrom36857f62001-07-18 15:48:57 +0000255 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000256
Damien Milleraf5f2e62001-10-10 15:01:16 +1000257#if 0
markus@openbsd.org6cb6dcf2016-08-13 17:47:40 +0000258 /* wrong: bad condition XXX */
259 if (channel_not_very_much_buffered_data())
Damien Milleraf5f2e62001-10-10 15:01:16 +1000260#endif
markus@openbsd.org6cb6dcf2016-08-13 17:47:40 +0000261 FD_SET(connection_in, *readsetp);
Damien Millerf6681a32001-12-21 14:53:11 +1100262 notify_prepare(*readsetp);
Damien Miller95def091999-11-25 00:26:21 +1100263
Damien Miller5428f641999-11-25 11:54:57 +1100264 /*
265 * If we have buffered packet data going to the client, mark that
266 * descriptor.
267 */
djm@openbsd.org7ec5cb42019-01-19 21:40:48 +0000268 if (ssh_packet_have_data_to_write(ssh))
Damien Miller5e953212001-01-30 09:14:00 +1100269 FD_SET(connection_out, *writesetp);
Damien Miller95def091999-11-25 00:26:21 +1100270
Damien Miller5428f641999-11-25 11:54:57 +1100271 /*
272 * If child has terminated and there is enough buffer space to read
273 * from it, then read as much as is available and exit.
274 */
djm@openbsd.org7ec5cb42019-01-19 21:40:48 +0000275 if (child_terminated && ssh_packet_not_very_much_data_to_write(ssh))
djm@openbsd.org988e4292016-03-04 03:35:44 +0000276 if (max_time_ms == 0 || client_alive_scheduled)
277 max_time_ms = 100;
Damien Miller95def091999-11-25 00:26:21 +1100278
djm@openbsd.org988e4292016-03-04 03:35:44 +0000279 if (max_time_ms == 0)
Damien Miller95def091999-11-25 00:26:21 +1100280 tvp = NULL;
281 else {
djm@openbsd.org988e4292016-03-04 03:35:44 +0000282 tv.tv_sec = max_time_ms / 1000;
283 tv.tv_usec = 1000 * (max_time_ms % 1000);
Damien Miller95def091999-11-25 00:26:21 +1100284 tvp = &tv;
285 }
286
287 /* Wait for something to happen, or the timeout to expire. */
Damien Miller5e953212001-01-30 09:14:00 +1100288 ret = select((*maxfdp)+1, *readsetp, *writesetp, NULL, tvp);
Damien Miller95def091999-11-25 00:26:21 +1100289
Ben Lindstrom5744dc42001-04-13 23:28:01 +0000290 if (ret == -1) {
Damien Miller79faeff2001-11-12 11:06:32 +1100291 memset(*readsetp, 0, *nallocp);
292 memset(*writesetp, 0, *nallocp);
Damien Miller95def091999-11-25 00:26:21 +1100293 if (errno != EINTR)
294 error("select: %.100s", strerror(errno));
dtucker@openbsd.orgb60ff202017-08-11 03:58:36 +0000295 } else if (client_alive_scheduled) {
296 time_t now = monotime();
297
dtucker@openbsd.orgab5fee82019-03-06 21:06:59 +0000298 /*
299 * If the select timed out, or returned for some other reason
300 * but we haven't heard from the client in time, send keepalive.
301 */
302 if (ret == 0 || (last_client_time != 0 && last_client_time +
303 options.client_alive_interval <= now)) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000304 client_alive_check(ssh);
dtucker@openbsd.orgb60ff202017-08-11 03:58:36 +0000305 last_client_time = now;
dtucker@openbsd.orgab5fee82019-03-06 21:06:59 +0000306 } else if (FD_ISSET(connection_in, *readsetp)) {
dtucker@openbsd.orgb60ff202017-08-11 03:58:36 +0000307 last_client_time = now;
308 }
309 }
Damien Millerf6681a32001-12-21 14:53:11 +1100310
311 notify_done(*readsetp);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000312}
313
Damien Miller95def091999-11-25 00:26:21 +1100314/*
315 * Processes input from the client and the program. Input data is stored
316 * in buffers and processed later.
317 */
markus@openbsd.org6cb6dcf2016-08-13 17:47:40 +0000318static int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000319process_input(struct ssh *ssh, fd_set *readset, int connection_in)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000320{
djm@openbsd.org7ec5cb42019-01-19 21:40:48 +0000321 int r, len;
Damien Miller95def091999-11-25 00:26:21 +1100322 char buf[16384];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000323
Damien Miller95def091999-11-25 00:26:21 +1100324 /* Read and buffer any input data from the client. */
325 if (FD_ISSET(connection_in, readset)) {
markus@openbsd.orga3068632016-01-14 16:17:39 +0000326 len = read(connection_in, buf, sizeof(buf));
Damien Miller95def091999-11-25 00:26:21 +1100327 if (len == 0) {
djm@openbsd.org95767262016-03-07 19:02:43 +0000328 verbose("Connection closed by %.100s port %d",
329 ssh_remote_ipaddr(ssh), ssh_remote_port(ssh));
markus@openbsd.org6cb6dcf2016-08-13 17:47:40 +0000330 return -1;
deraadt@openbsd.org4d28fa72019-06-28 13:35:04 +0000331 } else if (len == -1) {
Damien Millerd8968ad2008-07-04 23:10:49 +1000332 if (errno != EINTR && errno != EAGAIN &&
333 errno != EWOULDBLOCK) {
Damien Miller16aed052002-09-22 01:26:27 +1000334 verbose("Read error from remote host "
djm@openbsd.org95767262016-03-07 19:02:43 +0000335 "%.100s port %d: %.100s",
336 ssh_remote_ipaddr(ssh),
337 ssh_remote_port(ssh), strerror(errno));
Darren Tucker3e33cec2003-10-02 16:12:36 +1000338 cleanup_exit(255);
Damien Millerdcb6ecd2000-05-17 22:34:22 +1000339 }
340 } else {
341 /* Buffer any received data. */
djm@openbsd.org7ec5cb42019-01-19 21:40:48 +0000342 if ((r = ssh_packet_process_incoming(ssh, buf, len))
343 != 0)
344 fatal("%s: ssh_packet_process_incoming: %s",
345 __func__, ssh_err(r));
Damien Miller95def091999-11-25 00:26:21 +1100346 }
Damien Miller95def091999-11-25 00:26:21 +1100347 }
markus@openbsd.org6cb6dcf2016-08-13 17:47:40 +0000348 return 0;
Damien Miller95def091999-11-25 00:26:21 +1100349}
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000350
Damien Miller95def091999-11-25 00:26:21 +1100351/*
352 * Sends data from internal buffers to client program stdin.
353 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000354static void
djm@openbsd.org7ec5cb42019-01-19 21:40:48 +0000355process_output(struct ssh *ssh, fd_set *writeset, int connection_out)
Damien Miller95def091999-11-25 00:26:21 +1100356{
djm@openbsd.org7ec5cb42019-01-19 21:40:48 +0000357 int r;
358
Damien Miller95def091999-11-25 00:26:21 +1100359 /* Send any buffered packet data to the client. */
djm@openbsd.org7ec5cb42019-01-19 21:40:48 +0000360 if (FD_ISSET(connection_out, writeset)) {
361 if ((r = ssh_packet_write_poll(ssh)) != 0)
362 fatal("%s: ssh_packet_write_poll: %s",
363 __func__, ssh_err(r));
364 }
Damien Miller95def091999-11-25 00:26:21 +1100365}
366
Ben Lindstrombba81212001-06-25 05:01:22 +0000367static void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000368process_buffered_input_packets(struct ssh *ssh)
Damien Millerb38eff82000-04-01 11:09:21 +1000369{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000370 ssh_dispatch_run_fatal(ssh, DISPATCH_NONBLOCK, NULL);
Damien Millerb38eff82000-04-01 11:09:21 +1000371}
372
Damien Miller3ec27592001-10-12 11:35:04 +1000373static void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000374collect_children(struct ssh *ssh)
Damien Miller3ec27592001-10-12 11:35:04 +1000375{
376 pid_t pid;
377 sigset_t oset, nset;
378 int status;
379
380 /* block SIGCHLD while we check for dead children */
381 sigemptyset(&nset);
382 sigaddset(&nset, SIGCHLD);
383 sigprocmask(SIG_BLOCK, &nset, &oset);
384 if (child_terminated) {
Damien Millerec04f362006-03-15 12:01:34 +1100385 debug("Received SIGCHLD.");
Ben Lindstrom47fd8112002-04-02 20:48:19 +0000386 while ((pid = waitpid(-1, &status, WNOHANG)) > 0 ||
deraadt@openbsd.org4d28fa72019-06-28 13:35:04 +0000387 (pid == -1 && errno == EINTR))
Ben Lindstrom47fd8112002-04-02 20:48:19 +0000388 if (pid > 0)
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000389 session_close_by_pid(ssh, pid, status);
Damien Miller3ec27592001-10-12 11:35:04 +1000390 child_terminated = 0;
391 }
392 sigprocmask(SIG_SETMASK, &oset, NULL);
393}
394
Damien Miller4af51302000-04-16 11:18:38 +1000395void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000396server_loop2(struct ssh *ssh, Authctxt *authctxt)
Damien Millerefb4afe2000-04-12 18:45:05 +1000397{
Damien Miller5e953212001-01-30 09:14:00 +1100398 fd_set *readset = NULL, *writeset = NULL;
djm@openbsd.org19bcf2e2016-02-08 10:57:07 +0000399 int max_fd;
markus@openbsd.org6cb6dcf2016-08-13 17:47:40 +0000400 u_int nalloc = 0, connection_in, connection_out;
Darren Tucker5f96f3b2013-05-16 20:29:28 +1000401 u_int64_t rekey_timeout_ms = 0;
Damien Millerefb4afe2000-04-12 18:45:05 +1000402
403 debug("Entering interactive session for SSH2.");
404
dtucker@openbsd.org3bf2a6a2020-01-23 07:10:22 +0000405 ssh_signal(SIGCHLD, sigchld_handler);
Damien Millerefb4afe2000-04-12 18:45:05 +1000406 child_terminated = 0;
djm@openbsd.org7ec5cb42019-01-19 21:40:48 +0000407 connection_in = ssh_packet_get_connection_in(ssh);
408 connection_out = ssh_packet_get_connection_out(ssh);
Damien Miller5e953212001-01-30 09:14:00 +1100409
Damien Miller24ecf612005-11-05 15:16:52 +1100410 if (!use_privsep) {
dtucker@openbsd.org3bf2a6a2020-01-23 07:10:22 +0000411 ssh_signal(SIGTERM, sigterm_handler);
412 ssh_signal(SIGINT, sigterm_handler);
413 ssh_signal(SIGQUIT, sigterm_handler);
Damien Miller24ecf612005-11-05 15:16:52 +1100414 }
415
Damien Millerf6681a32001-12-21 14:53:11 +1100416 notify_setup();
417
deraadt@openbsd.org9136ec12016-09-12 01:22:38 +0000418 max_fd = MAXIMUM(connection_in, connection_out);
419 max_fd = MAXIMUM(max_fd, notify_pipe[0]);
Damien Millerf6681a32001-12-21 14:53:11 +1100420
djm@openbsd.org7ec5cb42019-01-19 21:40:48 +0000421 server_init_dispatch(ssh);
Damien Millerefb4afe2000-04-12 18:45:05 +1000422
423 for (;;) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000424 process_buffered_input_packets(ssh);
Ben Lindstrom8e312f32001-04-04 23:50:21 +0000425
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000426 if (!ssh_packet_is_rekeying(ssh) &&
djm@openbsd.org7ec5cb42019-01-19 21:40:48 +0000427 ssh_packet_not_very_much_data_to_write(ssh))
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000428 channel_output_poll(ssh);
djm@openbsd.org7ec5cb42019-01-19 21:40:48 +0000429 if (options.rekey_interval > 0 &&
430 !ssh_packet_is_rekeying(ssh)) {
431 rekey_timeout_ms = ssh_packet_get_rekey_timeout(ssh) *
432 1000;
433 } else {
Darren Tucker5f96f3b2013-05-16 20:29:28 +1000434 rekey_timeout_ms = 0;
djm@openbsd.org7ec5cb42019-01-19 21:40:48 +0000435 }
Darren Tucker5f96f3b2013-05-16 20:29:28 +1000436
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000437 wait_until_can_do_something(ssh, connection_in, connection_out,
markus@openbsd.org6cb6dcf2016-08-13 17:47:40 +0000438 &readset, &writeset, &max_fd, &nalloc, rekey_timeout_ms);
Damien Miller52b77be2001-10-10 15:14:37 +1000439
Damien Miller24ecf612005-11-05 15:16:52 +1100440 if (received_sigterm) {
Darren Tucker3e1027c2012-12-07 13:07:46 +1100441 logit("Exiting on signal %d", (int)received_sigterm);
Damien Miller24ecf612005-11-05 15:16:52 +1100442 /* Clean up sessions, utmp, etc. */
443 cleanup_exit(255);
444 }
445
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000446 collect_children(ssh);
447 if (!ssh_packet_is_rekeying(ssh))
448 channel_after_select(ssh, readset, writeset);
449 if (process_input(ssh, readset, connection_in) < 0)
Ben Lindstrome34ab4c2001-04-07 01:12:11 +0000450 break;
djm@openbsd.org7ec5cb42019-01-19 21:40:48 +0000451 process_output(ssh, writeset, connection_out);
Damien Millerefb4afe2000-04-12 18:45:05 +1000452 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000453 collect_children(ssh);
Damien Miller3ec27592001-10-12 11:35:04 +1000454
Darren Tuckera627d422013-06-02 07:31:17 +1000455 free(readset);
456 free(writeset);
Damien Miller5e953212001-01-30 09:14:00 +1100457
Damien Miller52b77be2001-10-10 15:14:37 +1000458 /* free all channels, no more reads and writes */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000459 channel_free_all(ssh);
Ben Lindstrom4983d5e2001-07-04 05:17:40 +0000460
Damien Miller3ec27592001-10-12 11:35:04 +1000461 /* free remaining sessions, e.g. remove wtmp entries */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000462 session_destroy_all(ssh, NULL);
Damien Millerefb4afe2000-04-12 18:45:05 +1000463}
464
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +0000465static int
markus@openbsd.org2ae666a2017-05-30 14:23:52 +0000466server_input_keep_alive(int type, u_int32_t seq, struct ssh *ssh)
Ben Lindstrom5744dc42001-04-13 23:28:01 +0000467{
Damien Millerb5820f42003-12-17 16:27:32 +1100468 debug("Got %d/%u for keepalive", type, seq);
Damien Miller9f0f5c62001-12-21 14:45:46 +1100469 /*
Ben Lindstrom2f0304c2001-04-29 19:49:14 +0000470 * reset timeout, since we got a sane answer from the client.
Ben Lindstrom5744dc42001-04-13 23:28:01 +0000471 * even if this was generated by something other than
472 * the bogus CHANNEL_REQUEST we send for keepalives.
473 */
djm@openbsd.org7ec5cb42019-01-19 21:40:48 +0000474 ssh_packet_set_alive_timeouts(ssh, 0);
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +0000475 return 0;
Ben Lindstrom5744dc42001-04-13 23:28:01 +0000476}
477
Ben Lindstrombba81212001-06-25 05:01:22 +0000478static Channel *
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000479server_request_direct_tcpip(struct ssh *ssh, int *reason, const char **errmsg)
Damien Millerefb4afe2000-04-12 18:45:05 +1000480{
Damien Milleraa5b3f82012-12-03 09:50:54 +1100481 Channel *c = NULL;
djm@openbsd.org7ec5cb42019-01-19 21:40:48 +0000482 char *target = NULL, *originator = NULL;
483 u_int target_port = 0, originator_port = 0;
484 int r;
Damien Millerefb4afe2000-04-12 18:45:05 +1000485
djm@openbsd.org7ec5cb42019-01-19 21:40:48 +0000486 if ((r = sshpkt_get_cstring(ssh, &target, NULL)) != 0 ||
487 (r = sshpkt_get_u32(ssh, &target_port)) != 0 ||
488 (r = sshpkt_get_cstring(ssh, &originator, NULL)) != 0 ||
489 (r = sshpkt_get_u32(ssh, &originator_port)) != 0 ||
490 (r = sshpkt_get_end(ssh)) != 0)
491 sshpkt_fatal(ssh, r, "%s: parse packet", __func__);
492 if (target_port > 0xFFFF) {
493 error("%s: invalid target port", __func__);
494 *reason = SSH2_OPEN_ADMINISTRATIVELY_PROHIBITED;
495 goto out;
496 }
497 if (originator_port > 0xFFFF) {
498 error("%s: invalid originator port", __func__);
499 *reason = SSH2_OPEN_ADMINISTRATIVELY_PROHIBITED;
500 goto out;
501 }
Damien Millerb1715dc2000-05-30 13:44:51 +1000502
djm@openbsd.org7ec5cb42019-01-19 21:40:48 +0000503 debug("%s: originator %s port %u, target %s port %u", __func__,
djm@openbsd.org7c856852018-03-03 03:15:51 +0000504 originator, originator_port, target, target_port);
Damien Millerf6d9e222000-06-18 14:50:44 +1000505
Damien Milleraa5b3f82012-12-03 09:50:54 +1100506 /* XXX fine grained permissions */
507 if ((options.allow_tcp_forwarding & FORWARD_LOCAL) != 0 &&
djm@openbsd.org7c856852018-03-03 03:15:51 +0000508 auth_opts->permit_port_forwarding_flag &&
509 !options.disable_forwarding) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000510 c = channel_connect_to_port(ssh, target, target_port,
dtucker@openbsd.org858252f2017-02-01 02:59:09 +0000511 "direct-tcpip", "direct-tcpip", reason, errmsg);
Damien Milleraa5b3f82012-12-03 09:50:54 +1100512 } else {
513 logit("refused local port forward: "
514 "originator %s port %d, target %s port %d",
515 originator, originator_port, target, target_port);
dtucker@openbsd.org858252f2017-02-01 02:59:09 +0000516 if (reason != NULL)
517 *reason = SSH2_OPEN_ADMINISTRATIVELY_PROHIBITED;
Damien Milleraa5b3f82012-12-03 09:50:54 +1100518 }
Damien Millerbd740252008-05-19 15:37:09 +1000519
djm@openbsd.org7ec5cb42019-01-19 21:40:48 +0000520 out:
Darren Tuckera627d422013-06-02 07:31:17 +1000521 free(originator);
522 free(target);
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000523 return c;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100524}
525
Ben Lindstrombba81212001-06-25 05:01:22 +0000526static Channel *
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000527server_request_direct_streamlocal(struct ssh *ssh)
Damien Miller7acefbb2014-07-18 14:11:24 +1000528{
529 Channel *c = NULL;
djm@openbsd.org7ec5cb42019-01-19 21:40:48 +0000530 char *target = NULL, *originator = NULL;
531 u_int originator_port = 0;
djm@openbsd.org51045862017-01-04 05:37:40 +0000532 struct passwd *pw = the_authctxt->pw;
djm@openbsd.org7ec5cb42019-01-19 21:40:48 +0000533 int r;
djm@openbsd.org51045862017-01-04 05:37:40 +0000534
535 if (pw == NULL || !the_authctxt->valid)
djm@openbsd.org7c856852018-03-03 03:15:51 +0000536 fatal("%s: no/invalid user", __func__);
Damien Miller7acefbb2014-07-18 14:11:24 +1000537
djm@openbsd.org7ec5cb42019-01-19 21:40:48 +0000538 if ((r = sshpkt_get_cstring(ssh, &target, NULL)) != 0 ||
539 (r = sshpkt_get_cstring(ssh, &originator, NULL)) != 0 ||
540 (r = sshpkt_get_u32(ssh, &originator_port)) != 0 ||
541 (r = sshpkt_get_end(ssh)) != 0)
542 sshpkt_fatal(ssh, r, "%s: parse packet", __func__);
543 if (originator_port > 0xFFFF) {
544 error("%s: invalid originator port", __func__);
545 goto out;
546 }
Damien Miller7acefbb2014-07-18 14:11:24 +1000547
djm@openbsd.org7c856852018-03-03 03:15:51 +0000548 debug("%s: originator %s port %d, target %s", __func__,
Damien Miller7acefbb2014-07-18 14:11:24 +1000549 originator, originator_port, target);
550
551 /* XXX fine grained permissions */
552 if ((options.allow_streamlocal_forwarding & FORWARD_LOCAL) != 0 &&
djm@openbsd.org7c856852018-03-03 03:15:51 +0000553 auth_opts->permit_port_forwarding_flag &&
554 !options.disable_forwarding && (pw->pw_uid == 0 || use_privsep)) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000555 c = channel_connect_to_path(ssh, target,
Damien Miller7acefbb2014-07-18 14:11:24 +1000556 "direct-streamlocal@openssh.com", "direct-streamlocal");
557 } else {
558 logit("refused streamlocal port forward: "
559 "originator %s port %d, target %s",
560 originator, originator_port, target);
561 }
562
djm@openbsd.org7ec5cb42019-01-19 21:40:48 +0000563out:
Damien Miller7acefbb2014-07-18 14:11:24 +1000564 free(originator);
565 free(target);
Damien Miller7acefbb2014-07-18 14:11:24 +1000566 return c;
567}
568
569static Channel *
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000570server_request_tun(struct ssh *ssh)
Damien Millerd27b9472005-12-13 19:29:02 +1100571{
572 Channel *c = NULL;
djm@openbsd.org7ec5cb42019-01-19 21:40:48 +0000573 u_int mode, tun;
574 int r, sock;
djm@openbsd.orgb7548b12017-10-23 05:08:00 +0000575 char *tmp, *ifname = NULL;
Damien Millerd27b9472005-12-13 19:29:02 +1100576
djm@openbsd.org7ec5cb42019-01-19 21:40:48 +0000577 if ((r = sshpkt_get_u32(ssh, &mode)) != 0)
578 sshpkt_fatal(ssh, r, "%s: parse mode", __func__);
Damien Miller7b58e802005-12-13 19:33:19 +1100579 switch (mode) {
580 case SSH_TUNMODE_POINTOPOINT:
581 case SSH_TUNMODE_ETHERNET:
582 break;
583 default:
djm@openbsd.org7ec5cb42019-01-19 21:40:48 +0000584 ssh_packet_send_debug(ssh, "Unsupported tunnel device mode.");
Damien Miller7b58e802005-12-13 19:33:19 +1100585 return NULL;
586 }
587 if ((options.permit_tun & mode) == 0) {
djm@openbsd.org7ec5cb42019-01-19 21:40:48 +0000588 ssh_packet_send_debug(ssh, "Server has rejected tunnel device "
Damien Miller7b58e802005-12-13 19:33:19 +1100589 "forwarding");
Damien Millerd27b9472005-12-13 19:29:02 +1100590 return NULL;
591 }
592
djm@openbsd.org7ec5cb42019-01-19 21:40:48 +0000593 if ((r = sshpkt_get_u32(ssh, &tun)) != 0)
594 sshpkt_fatal(ssh, r, "%s: parse device", __func__);
595 if (tun > INT_MAX) {
596 debug("%s: invalid tun", __func__);
597 goto done;
598 }
djm@openbsd.org7c856852018-03-03 03:15:51 +0000599 if (auth_opts->force_tun_device != -1) {
djm@openbsd.org7ec5cb42019-01-19 21:40:48 +0000600 if (tun != SSH_TUNID_ANY &&
601 auth_opts->force_tun_device != (int)tun)
Damien Millerd27b9472005-12-13 19:29:02 +1100602 goto done;
djm@openbsd.org7c856852018-03-03 03:15:51 +0000603 tun = auth_opts->force_tun_device;
Damien Millerd27b9472005-12-13 19:29:02 +1100604 }
djm@openbsd.orgb7548b12017-10-23 05:08:00 +0000605 sock = tun_open(tun, mode, &ifname);
Damien Millerd27b9472005-12-13 19:29:02 +1100606 if (sock < 0)
607 goto done;
djm@openbsd.orgb7548b12017-10-23 05:08:00 +0000608 debug("Tunnel forwarding using interface %s", ifname);
Darren Tucker3c511432018-02-13 09:07:29 +1100609
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000610 c = channel_new(ssh, "tun", SSH_CHANNEL_OPEN, sock, sock, -1,
Damien Millerd27b9472005-12-13 19:29:02 +1100611 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT, 0, "tun", 1);
612 c->datagram = 1;
Damien Miller598bbc22005-12-31 16:33:36 +1100613#if defined(SSH_TUN_FILTER)
614 if (mode == SSH_TUNMODE_POINTOPOINT)
Damien Miller871f1e42017-09-12 18:01:35 +1000615 channel_register_filter(ssh, c->self, sys_tun_infilter,
Darren Tucker1cf65ae2008-06-13 05:09:18 +1000616 sys_tun_outfilter, NULL, NULL);
Damien Miller598bbc22005-12-31 16:33:36 +1100617#endif
Damien Millerd27b9472005-12-13 19:29:02 +1100618
djm@openbsd.orgb7548b12017-10-23 05:08:00 +0000619 /*
620 * Update the list of names exposed to the session
621 * XXX remove these if the tunnels are closed (won't matter
622 * much if they are already in the environment though)
623 */
624 tmp = tun_fwd_ifnames;
625 xasprintf(&tun_fwd_ifnames, "%s%s%s",
626 tun_fwd_ifnames == NULL ? "" : tun_fwd_ifnames,
627 tun_fwd_ifnames == NULL ? "" : ",",
628 ifname);
629 free(tmp);
630 free(ifname);
631
Damien Millerd27b9472005-12-13 19:29:02 +1100632 done:
633 if (c == NULL)
djm@openbsd.org7ec5cb42019-01-19 21:40:48 +0000634 ssh_packet_send_debug(ssh, "Failed to open the tunnel device.");
Damien Millerd27b9472005-12-13 19:29:02 +1100635 return c;
636}
637
638static Channel *
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000639server_request_session(struct ssh *ssh)
Damien Miller0bc1bd82000-11-13 22:57:25 +1100640{
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000641 Channel *c;
djm@openbsd.org7ec5cb42019-01-19 21:40:48 +0000642 int r;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100643
644 debug("input_session_request");
djm@openbsd.org7ec5cb42019-01-19 21:40:48 +0000645 if ((r = sshpkt_get_end(ssh)) != 0)
646 sshpkt_fatal(ssh, r, "%s: parse packet", __func__);
Darren Tucker8901fa92008-06-11 09:34:01 +1000647
648 if (no_more_sessions) {
djm@openbsd.org135e3022019-01-19 22:30:52 +0000649 ssh_packet_disconnect(ssh, "Possible attack: attempt to open a "
djm@openbsd.org7ec5cb42019-01-19 21:40:48 +0000650 "session after additional sessions disabled");
Darren Tucker8901fa92008-06-11 09:34:01 +1000651 }
652
Damien Miller0bc1bd82000-11-13 22:57:25 +1100653 /*
654 * A server session has no fd to read or write until a
655 * CHANNEL_REQUEST for a shell is made, so we set the type to
656 * SSH_CHANNEL_LARVAL. Additionally, a callback for handling all
657 * CHANNEL_REQUEST messages is registered.
658 */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000659 c = channel_new(ssh, "session", SSH_CHANNEL_LARVAL,
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000660 -1, -1, -1, /*window size*/0, CHAN_SES_PACKET_DEFAULT,
Damien Millerb1ca8bb2003-05-14 13:45:42 +1000661 0, "server-session", 1);
Darren Tucker3e33cec2003-10-02 16:12:36 +1000662 if (session_open(the_authctxt, c->self) != 1) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000663 debug("session open failed, free channel %d", c->self);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000664 channel_free(ssh, c);
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000665 return NULL;
666 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000667 channel_register_cleanup(ssh, c->self, session_close_by_channel, 0);
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000668 return c;
Damien Millerefb4afe2000-04-12 18:45:05 +1000669}
670
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +0000671static int
markus@openbsd.org2ae666a2017-05-30 14:23:52 +0000672server_input_channel_open(int type, u_int32_t seq, struct ssh *ssh)
Damien Millerefb4afe2000-04-12 18:45:05 +1000673{
674 Channel *c = NULL;
djm@openbsd.org7ec5cb42019-01-19 21:40:48 +0000675 char *ctype = NULL;
dtucker@openbsd.org858252f2017-02-01 02:59:09 +0000676 const char *errmsg = NULL;
djm@openbsd.org7ec5cb42019-01-19 21:40:48 +0000677 int r, reason = SSH2_OPEN_CONNECT_FAILED;
dtucker@openbsd.org6e1d1bb2019-11-27 05:38:43 +0000678 u_int rchan = 0, rmaxpack = 0, rwindow = 0;
Damien Millerefb4afe2000-04-12 18:45:05 +1000679
djm@openbsd.org7ec5cb42019-01-19 21:40:48 +0000680 if ((r = sshpkt_get_cstring(ssh, &ctype, NULL)) != 0 ||
681 (r = sshpkt_get_u32(ssh, &rchan)) != 0 ||
682 (r = sshpkt_get_u32(ssh, &rwindow)) != 0 ||
683 (r = sshpkt_get_u32(ssh, &rmaxpack)) != 0)
684 sshpkt_fatal(ssh, r, "%s: parse packet", __func__);
685 debug("%s: ctype %s rchan %u win %u max %u", __func__,
dtucker@openbsd.org6e1d1bb2019-11-27 05:38:43 +0000686 ctype, rchan, rwindow, rmaxpack);
Damien Millerefb4afe2000-04-12 18:45:05 +1000687
dtucker@openbsd.org6e1d1bb2019-11-27 05:38:43 +0000688 if (rchan > INT_MAX) {
689 error("%s: invalid remote channel ID", __func__);
690 } else 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);
dtucker@openbsd.org6e1d1bb2019-11-27 05:38:43 +0000701 c->remote_id = (int)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}