blob: 615921c38fc9d9fb46904241e123e976ea9ee4fa [file] [log] [blame]
djm@openbsd.org78607312017-12-18 23:16:23 +00001/* $OpenBSD: serverloop.c,v 1.202 2017/12/18 23:16:24 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>
Damien Miller6ff3cad2006-03-15 11:52:09 +110052#include <signal.h>
Damien Millere3476ed2006-07-24 14:13:33 +100053#include <string.h>
Damien Miller99bd21e2006-03-15 11:11:28 +110054#include <termios.h>
Damien Miller1cdde6f2006-07-24 14:07:35 +100055#include <unistd.h>
Damien Millerd7834352006-08-05 12:39:39 +100056#include <stdarg.h>
Damien Miller69b69aa2000-10-28 14:19:58 +110057
Damien Millerb84886b2008-05-19 15:05:07 +100058#include "openbsd-compat/sys-queue.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100059#include "xmalloc.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100060#include "packet.h"
61#include "buffer.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000062#include "log.h"
Damien Miller7acefbb2014-07-18 14:11:24 +100063#include "misc.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100064#include "servconf.h"
Damien Miller16aed052002-09-22 01:26:27 +100065#include "canohost.h"
Ben Lindstromd95c09c2001-02-18 19:13:33 +000066#include "sshpty.h"
Ben Lindstromc7637672001-06-09 00:36:26 +000067#include "channels.h"
Damien Millerb38eff82000-04-01 11:09:21 +100068#include "compat.h"
Damien Millerefb4afe2000-04-12 18:45:05 +100069#include "ssh2.h"
Damien Millerd7834352006-08-05 12:39:39 +100070#include "key.h"
71#include "cipher.h"
72#include "kex.h"
73#include "hostfile.h"
Ben Lindstromdb65e8f2001-01-19 04:26:52 +000074#include "auth.h"
Damien Millerefb4afe2000-04-12 18:45:05 +100075#include "session.h"
Damien Millerb38eff82000-04-01 11:09:21 +100076#include "dispatch.h"
Damien Millerf6d9e222000-06-18 14:50:44 +100077#include "auth-options.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000078#include "serverloop.h"
djm@openbsd.org523463a2015-02-16 22:13:32 +000079#include "ssherr.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100080
Damien Miller50a41ed2000-10-16 12:14:42 +110081extern ServerOptions options;
82
Ben Lindstrom8ac91062001-04-04 17:57:54 +000083/* XXX */
Darren Tucker3e33cec2003-10-02 16:12:36 +100084extern Authctxt *the_authctxt;
Damien Miller24ecf612005-11-05 15:16:52 +110085extern int use_privsep;
Ben Lindstrom8ac91062001-04-04 17:57:54 +000086
Darren Tucker8901fa92008-06-11 09:34:01 +100087static int no_more_sessions = 0; /* Disallow further sessions. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100088
Damien Miller5428f641999-11-25 11:54:57 +110089/*
90 * This SIGCHLD kludge is used to detect when the child exits. The server
91 * will exit after that, as soon as forwarded connections have terminated.
92 */
Ben Lindstrombba81212001-06-25 05:01:22 +000093
Ben Lindstrom5e71c542001-12-06 16:48:14 +000094static volatile sig_atomic_t child_terminated = 0; /* The child has terminated. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100095
Damien Miller24ecf612005-11-05 15:16:52 +110096/* Cleanup on signals (!use_privsep case only) */
97static volatile sig_atomic_t received_sigterm = 0;
98
Ben Lindstrombba81212001-06-25 05:01:22 +000099/* prototypes */
100static void server_init_dispatch(void);
Damien Millerb38eff82000-04-01 11:09:21 +1000101
djm@openbsd.orgb7548b12017-10-23 05:08:00 +0000102/* requested tunnel forwarding interface(s), shared with session.c */
103char *tun_fwd_ifnames = NULL;
104
Damien Millerf6681a32001-12-21 14:53:11 +1100105/*
106 * we write to this pipe if a SIGCHLD is caught in order to avoid
107 * the race between select() and child_terminated
108 */
109static int notify_pipe[2];
110static void
111notify_setup(void)
112{
113 if (pipe(notify_pipe) < 0) {
114 error("pipe(notify_pipe) failed %s", strerror(errno));
Damien Miller814ace02011-05-20 19:02:47 +1000115 } else if ((fcntl(notify_pipe[0], F_SETFD, FD_CLOEXEC) == -1) ||
116 (fcntl(notify_pipe[1], F_SETFD, FD_CLOEXEC) == -1)) {
Damien Millerf6681a32001-12-21 14:53:11 +1100117 error("fcntl(notify_pipe, F_SETFD) failed %s", strerror(errno));
118 close(notify_pipe[0]);
119 close(notify_pipe[1]);
120 } else {
121 set_nonblock(notify_pipe[0]);
122 set_nonblock(notify_pipe[1]);
123 return;
124 }
125 notify_pipe[0] = -1; /* read end */
126 notify_pipe[1] = -1; /* write end */
127}
128static void
129notify_parent(void)
130{
131 if (notify_pipe[1] != -1)
Darren Tuckerdbee3082013-05-16 20:32:29 +1000132 (void)write(notify_pipe[1], "", 1);
Damien Millerf6681a32001-12-21 14:53:11 +1100133}
134static void
135notify_prepare(fd_set *readset)
136{
137 if (notify_pipe[0] != -1)
138 FD_SET(notify_pipe[0], readset);
139}
140static void
141notify_done(fd_set *readset)
142{
143 char c;
144
145 if (notify_pipe[0] != -1 && FD_ISSET(notify_pipe[0], readset))
146 while (read(notify_pipe[0], &c, 1) != -1)
147 debug2("notify_done: reading");
148}
149
Damien Millerf0b15df2006-03-26 13:59:20 +1100150/*ARGSUSED*/
Ben Lindstrombba81212001-06-25 05:01:22 +0000151static void
Damien Miller95def091999-11-25 00:26:21 +1100152sigchld_handler(int sig)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000153{
Damien Miller95def091999-11-25 00:26:21 +1100154 int save_errno = errno;
Damien Millerefb4afe2000-04-12 18:45:05 +1000155 child_terminated = 1;
Tim Rice81ed5182002-09-25 17:38:46 -0700156#ifndef _UNICOS
Ben Lindstromec46e0b2001-06-09 01:27:31 +0000157 mysignal(SIGCHLD, sigchld_handler);
Tim Rice81ed5182002-09-25 17:38:46 -0700158#endif
Damien Millerf6681a32001-12-21 14:53:11 +1100159 notify_parent();
Damien Millerefb4afe2000-04-12 18:45:05 +1000160 errno = save_errno;
161}
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000162
Damien Millerf0b15df2006-03-26 13:59:20 +1100163/*ARGSUSED*/
Damien Miller24ecf612005-11-05 15:16:52 +1100164static void
165sigterm_handler(int sig)
166{
167 received_sigterm = sig;
168}
169
Damien Miller8c3902a2001-10-10 15:01:40 +1000170static void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000171client_alive_check(struct ssh *ssh)
Damien Miller8c3902a2001-10-10 15:01:40 +1000172{
Damien Millerb5820f42003-12-17 16:27:32 +1100173 int channel_id;
dtucker@openbsd.org48c23a32017-12-10 05:55:29 +0000174 char remote_id[512];
Damien Miller056cf732002-01-22 23:21:39 +1100175
Damien Miller8c3902a2001-10-10 15:01:40 +1000176 /* timeout, check to see how many we have had */
Darren Tuckerf7288d72009-06-21 18:12:20 +1000177 if (packet_inc_alive_timeouts() > options.client_alive_count_max) {
dtucker@openbsd.org48c23a32017-12-10 05:55:29 +0000178 sshpkt_fmt_connection_id(ssh, remote_id, sizeof(remote_id));
179 logit("Timeout, client not responding from %s", remote_id);
Damien Miller985a4482006-10-24 03:02:41 +1000180 cleanup_exit(255);
181 }
Damien Miller8c3902a2001-10-10 15:01:40 +1000182
Damien Miller8c3902a2001-10-10 15:01:40 +1000183 /*
Damien Millerb5820f42003-12-17 16:27:32 +1100184 * send a bogus global/channel request with "wantreply",
Damien Miller8c3902a2001-10-10 15:01:40 +1000185 * we should get back a failure
186 */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000187 if ((channel_id = channel_find_open(ssh)) == -1) {
Damien Millerb5820f42003-12-17 16:27:32 +1100188 packet_start(SSH2_MSG_GLOBAL_REQUEST);
189 packet_put_cstring("keepalive@openssh.com");
190 packet_put_char(1); /* boolean: want reply */
191 } else {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000192 channel_request_start(ssh, channel_id,
193 "keepalive@openssh.com", 1);
Damien Millerb5820f42003-12-17 16:27:32 +1100194 }
Damien Miller8c3902a2001-10-10 15:01:40 +1000195 packet_send();
196}
197
Damien Miller95def091999-11-25 00:26:21 +1100198/*
199 * Sleep in select() until we can do something. This will initialize the
200 * select masks. Upon return, the masks will indicate which descriptors
201 * have data or can accept data. Optionally, a maximum time can be specified
202 * for the duration of the wait (0 = infinite).
203 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000204static void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000205wait_until_can_do_something(struct ssh *ssh,
206 int connection_in, int connection_out,
markus@openbsd.org6cb6dcf2016-08-13 17:47:40 +0000207 fd_set **readsetp, fd_set **writesetp, int *maxfdp,
djm@openbsd.org988e4292016-03-04 03:35:44 +0000208 u_int *nallocp, u_int64_t max_time_ms)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000209{
Damien Miller95def091999-11-25 00:26:21 +1100210 struct timeval tv, *tvp;
211 int ret;
Damien Miller6c6da332012-06-20 22:31:26 +1000212 time_t minwait_secs = 0;
Ben Lindstrom5744dc42001-04-13 23:28:01 +0000213 int client_alive_scheduled = 0;
dtucker@openbsd.orgb60ff202017-08-11 03:58:36 +0000214 static time_t last_client_time;
Ben Lindstrom5744dc42001-04-13 23:28:01 +0000215
Damien Millera6508752012-04-22 11:21:10 +1000216 /* Allocate and update select() masks for channel descriptors. */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000217 channel_prepare_select(ssh, readsetp, writesetp, maxfdp,
djm@openbsd.org71e5a532017-08-30 03:59:08 +0000218 nallocp, &minwait_secs);
Damien Millera6508752012-04-22 11:21:10 +1000219
djm@openbsd.org988e4292016-03-04 03:35:44 +0000220 /* XXX need proper deadline system for rekey/client alive */
Damien Millera6508752012-04-22 11:21:10 +1000221 if (minwait_secs != 0)
deraadt@openbsd.org9136ec12016-09-12 01:22:38 +0000222 max_time_ms = MINIMUM(max_time_ms, (u_int)minwait_secs * 1000);
Damien Millera6508752012-04-22 11:21:10 +1000223
Ben Lindstrom5744dc42001-04-13 23:28:01 +0000224 /*
Damien Miller9f0f5c62001-12-21 14:45:46 +1100225 * if using client_alive, set the max timeout accordingly,
Ben Lindstrom5744dc42001-04-13 23:28:01 +0000226 * and indicate that this particular timeout was for client
227 * alive by setting the client_alive_scheduled flag.
228 *
229 * this could be randomized somewhat to make traffic
Damien Miller9f0f5c62001-12-21 14:45:46 +1100230 * analysis more difficult, but we're not doing it yet.
Ben Lindstrom5744dc42001-04-13 23:28:01 +0000231 */
markus@openbsd.org6cb6dcf2016-08-13 17:47:40 +0000232 if (options.client_alive_interval) {
djm@openbsd.org988e4292016-03-04 03:35:44 +0000233 uint64_t keepalive_ms =
234 (uint64_t)options.client_alive_interval * 1000;
235
Ben Lindstrom2f0304c2001-04-29 19:49:14 +0000236 client_alive_scheduled = 1;
djm@openbsd.org988e4292016-03-04 03:35:44 +0000237 if (max_time_ms == 0 || max_time_ms > keepalive_ms)
238 max_time_ms = keepalive_ms;
Ben Lindstrom36857f62001-07-18 15:48:57 +0000239 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000240
Damien Milleraf5f2e62001-10-10 15:01:16 +1000241#if 0
markus@openbsd.org6cb6dcf2016-08-13 17:47:40 +0000242 /* wrong: bad condition XXX */
243 if (channel_not_very_much_buffered_data())
Damien Milleraf5f2e62001-10-10 15:01:16 +1000244#endif
markus@openbsd.org6cb6dcf2016-08-13 17:47:40 +0000245 FD_SET(connection_in, *readsetp);
Damien Millerf6681a32001-12-21 14:53:11 +1100246 notify_prepare(*readsetp);
Damien Miller95def091999-11-25 00:26:21 +1100247
Damien Miller5428f641999-11-25 11:54:57 +1100248 /*
249 * If we have buffered packet data going to the client, mark that
250 * descriptor.
251 */
Damien Miller95def091999-11-25 00:26:21 +1100252 if (packet_have_data_to_write())
Damien Miller5e953212001-01-30 09:14:00 +1100253 FD_SET(connection_out, *writesetp);
Damien Miller95def091999-11-25 00:26:21 +1100254
Damien Miller5428f641999-11-25 11:54:57 +1100255 /*
256 * If child has terminated and there is enough buffer space to read
257 * from it, then read as much as is available and exit.
258 */
Damien Miller95def091999-11-25 00:26:21 +1100259 if (child_terminated && packet_not_very_much_data_to_write())
djm@openbsd.org988e4292016-03-04 03:35:44 +0000260 if (max_time_ms == 0 || client_alive_scheduled)
261 max_time_ms = 100;
Damien Miller95def091999-11-25 00:26:21 +1100262
djm@openbsd.org988e4292016-03-04 03:35:44 +0000263 if (max_time_ms == 0)
Damien Miller95def091999-11-25 00:26:21 +1100264 tvp = NULL;
265 else {
djm@openbsd.org988e4292016-03-04 03:35:44 +0000266 tv.tv_sec = max_time_ms / 1000;
267 tv.tv_usec = 1000 * (max_time_ms % 1000);
Damien Miller95def091999-11-25 00:26:21 +1100268 tvp = &tv;
269 }
270
271 /* Wait for something to happen, or the timeout to expire. */
Damien Miller5e953212001-01-30 09:14:00 +1100272 ret = select((*maxfdp)+1, *readsetp, *writesetp, NULL, tvp);
Damien Miller95def091999-11-25 00:26:21 +1100273
Ben Lindstrom5744dc42001-04-13 23:28:01 +0000274 if (ret == -1) {
Damien Miller79faeff2001-11-12 11:06:32 +1100275 memset(*readsetp, 0, *nallocp);
276 memset(*writesetp, 0, *nallocp);
Damien Miller95def091999-11-25 00:26:21 +1100277 if (errno != EINTR)
278 error("select: %.100s", strerror(errno));
dtucker@openbsd.orgb60ff202017-08-11 03:58:36 +0000279 } else if (client_alive_scheduled) {
280 time_t now = monotime();
281
282 if (ret == 0) { /* timeout */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000283 client_alive_check(ssh);
dtucker@openbsd.orgb60ff202017-08-11 03:58:36 +0000284 } else if (FD_ISSET(connection_in, *readsetp)) {
285 last_client_time = now;
286 } else if (last_client_time != 0 && last_client_time +
dtucker@openbsd.org42a8f8b2017-08-11 04:16:35 +0000287 options.client_alive_interval <= now) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000288 client_alive_check(ssh);
dtucker@openbsd.orgb60ff202017-08-11 03:58:36 +0000289 last_client_time = now;
290 }
291 }
Damien Millerf6681a32001-12-21 14:53:11 +1100292
293 notify_done(*readsetp);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000294}
295
Damien Miller95def091999-11-25 00:26:21 +1100296/*
297 * Processes input from the client and the program. Input data is stored
298 * in buffers and processed later.
299 */
markus@openbsd.org6cb6dcf2016-08-13 17:47:40 +0000300static int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000301process_input(struct ssh *ssh, fd_set *readset, int connection_in)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000302{
Damien Miller95def091999-11-25 00:26:21 +1100303 int len;
304 char buf[16384];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000305
Damien Miller95def091999-11-25 00:26:21 +1100306 /* Read and buffer any input data from the client. */
307 if (FD_ISSET(connection_in, readset)) {
markus@openbsd.orga3068632016-01-14 16:17:39 +0000308 len = read(connection_in, buf, sizeof(buf));
Damien Miller95def091999-11-25 00:26:21 +1100309 if (len == 0) {
djm@openbsd.org95767262016-03-07 19:02:43 +0000310 verbose("Connection closed by %.100s port %d",
311 ssh_remote_ipaddr(ssh), ssh_remote_port(ssh));
markus@openbsd.org6cb6dcf2016-08-13 17:47:40 +0000312 return -1;
Damien Millerdcb6ecd2000-05-17 22:34:22 +1000313 } else if (len < 0) {
Damien Millerd8968ad2008-07-04 23:10:49 +1000314 if (errno != EINTR && errno != EAGAIN &&
315 errno != EWOULDBLOCK) {
Damien Miller16aed052002-09-22 01:26:27 +1000316 verbose("Read error from remote host "
djm@openbsd.org95767262016-03-07 19:02:43 +0000317 "%.100s port %d: %.100s",
318 ssh_remote_ipaddr(ssh),
319 ssh_remote_port(ssh), strerror(errno));
Darren Tucker3e33cec2003-10-02 16:12:36 +1000320 cleanup_exit(255);
Damien Millerdcb6ecd2000-05-17 22:34:22 +1000321 }
322 } else {
323 /* Buffer any received data. */
324 packet_process_incoming(buf, len);
Damien Miller95def091999-11-25 00:26:21 +1100325 }
Damien Miller95def091999-11-25 00:26:21 +1100326 }
markus@openbsd.org6cb6dcf2016-08-13 17:47:40 +0000327 return 0;
Damien Miller95def091999-11-25 00:26:21 +1100328}
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000329
Damien Miller95def091999-11-25 00:26:21 +1100330/*
331 * Sends data from internal buffers to client program stdin.
332 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000333static void
markus@openbsd.org6cb6dcf2016-08-13 17:47:40 +0000334process_output(fd_set *writeset, int connection_out)
Damien Miller95def091999-11-25 00:26:21 +1100335{
Damien Miller95def091999-11-25 00:26:21 +1100336 /* Send any buffered packet data to the client. */
337 if (FD_ISSET(connection_out, writeset))
338 packet_write_poll();
339}
340
Ben Lindstrombba81212001-06-25 05:01:22 +0000341static void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000342process_buffered_input_packets(struct ssh *ssh)
Damien Millerb38eff82000-04-01 11:09:21 +1000343{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000344 ssh_dispatch_run_fatal(ssh, DISPATCH_NONBLOCK, NULL);
Damien Millerb38eff82000-04-01 11:09:21 +1000345}
346
Damien Miller3ec27592001-10-12 11:35:04 +1000347static void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000348collect_children(struct ssh *ssh)
Damien Miller3ec27592001-10-12 11:35:04 +1000349{
350 pid_t pid;
351 sigset_t oset, nset;
352 int status;
353
354 /* block SIGCHLD while we check for dead children */
355 sigemptyset(&nset);
356 sigaddset(&nset, SIGCHLD);
357 sigprocmask(SIG_BLOCK, &nset, &oset);
358 if (child_terminated) {
Damien Millerec04f362006-03-15 12:01:34 +1100359 debug("Received SIGCHLD.");
Ben Lindstrom47fd8112002-04-02 20:48:19 +0000360 while ((pid = waitpid(-1, &status, WNOHANG)) > 0 ||
361 (pid < 0 && errno == EINTR))
362 if (pid > 0)
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000363 session_close_by_pid(ssh, pid, status);
Damien Miller3ec27592001-10-12 11:35:04 +1000364 child_terminated = 0;
365 }
366 sigprocmask(SIG_SETMASK, &oset, NULL);
367}
368
Damien Miller4af51302000-04-16 11:18:38 +1000369void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000370server_loop2(struct ssh *ssh, Authctxt *authctxt)
Damien Millerefb4afe2000-04-12 18:45:05 +1000371{
Damien Miller5e953212001-01-30 09:14:00 +1100372 fd_set *readset = NULL, *writeset = NULL;
djm@openbsd.org19bcf2e2016-02-08 10:57:07 +0000373 int max_fd;
markus@openbsd.org6cb6dcf2016-08-13 17:47:40 +0000374 u_int nalloc = 0, connection_in, connection_out;
Darren Tucker5f96f3b2013-05-16 20:29:28 +1000375 u_int64_t rekey_timeout_ms = 0;
Damien Millerefb4afe2000-04-12 18:45:05 +1000376
377 debug("Entering interactive session for SSH2.");
378
Ben Lindstromec46e0b2001-06-09 01:27:31 +0000379 mysignal(SIGCHLD, sigchld_handler);
Damien Millerefb4afe2000-04-12 18:45:05 +1000380 child_terminated = 0;
381 connection_in = packet_get_connection_in();
382 connection_out = packet_get_connection_out();
Damien Miller5e953212001-01-30 09:14:00 +1100383
Damien Miller24ecf612005-11-05 15:16:52 +1100384 if (!use_privsep) {
385 signal(SIGTERM, sigterm_handler);
386 signal(SIGINT, sigterm_handler);
387 signal(SIGQUIT, sigterm_handler);
388 }
389
Damien Millerf6681a32001-12-21 14:53:11 +1100390 notify_setup();
391
deraadt@openbsd.org9136ec12016-09-12 01:22:38 +0000392 max_fd = MAXIMUM(connection_in, connection_out);
393 max_fd = MAXIMUM(max_fd, notify_pipe[0]);
Damien Millerf6681a32001-12-21 14:53:11 +1100394
Damien Millerefb4afe2000-04-12 18:45:05 +1000395 server_init_dispatch();
396
397 for (;;) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000398 process_buffered_input_packets(ssh);
Ben Lindstrom8e312f32001-04-04 23:50:21 +0000399
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000400 if (!ssh_packet_is_rekeying(ssh) &&
djm@openbsd.org19bcf2e2016-02-08 10:57:07 +0000401 packet_not_very_much_data_to_write())
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000402 channel_output_poll(ssh);
403 if (options.rekey_interval > 0 && !ssh_packet_is_rekeying(ssh))
Darren Tucker5f96f3b2013-05-16 20:29:28 +1000404 rekey_timeout_ms = packet_get_rekey_timeout() * 1000;
405 else
406 rekey_timeout_ms = 0;
407
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000408 wait_until_can_do_something(ssh, connection_in, connection_out,
markus@openbsd.org6cb6dcf2016-08-13 17:47:40 +0000409 &readset, &writeset, &max_fd, &nalloc, rekey_timeout_ms);
Damien Miller52b77be2001-10-10 15:14:37 +1000410
Damien Miller24ecf612005-11-05 15:16:52 +1100411 if (received_sigterm) {
Darren Tucker3e1027c2012-12-07 13:07:46 +1100412 logit("Exiting on signal %d", (int)received_sigterm);
Damien Miller24ecf612005-11-05 15:16:52 +1100413 /* Clean up sessions, utmp, etc. */
414 cleanup_exit(255);
415 }
416
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000417 collect_children(ssh);
418 if (!ssh_packet_is_rekeying(ssh))
419 channel_after_select(ssh, readset, writeset);
420 if (process_input(ssh, readset, connection_in) < 0)
Ben Lindstrome34ab4c2001-04-07 01:12:11 +0000421 break;
markus@openbsd.org6cb6dcf2016-08-13 17:47:40 +0000422 process_output(writeset, connection_out);
Damien Millerefb4afe2000-04-12 18:45:05 +1000423 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000424 collect_children(ssh);
Damien Miller3ec27592001-10-12 11:35:04 +1000425
Darren Tuckera627d422013-06-02 07:31:17 +1000426 free(readset);
427 free(writeset);
Damien Miller5e953212001-01-30 09:14:00 +1100428
Damien Miller52b77be2001-10-10 15:14:37 +1000429 /* free all channels, no more reads and writes */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000430 channel_free_all(ssh);
Ben Lindstrom4983d5e2001-07-04 05:17:40 +0000431
Damien Miller3ec27592001-10-12 11:35:04 +1000432 /* free remaining sessions, e.g. remove wtmp entries */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000433 session_destroy_all(ssh, NULL);
Damien Millerefb4afe2000-04-12 18:45:05 +1000434}
435
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +0000436static int
markus@openbsd.org2ae666a2017-05-30 14:23:52 +0000437server_input_keep_alive(int type, u_int32_t seq, struct ssh *ssh)
Ben Lindstrom5744dc42001-04-13 23:28:01 +0000438{
Damien Millerb5820f42003-12-17 16:27:32 +1100439 debug("Got %d/%u for keepalive", type, seq);
Damien Miller9f0f5c62001-12-21 14:45:46 +1100440 /*
Ben Lindstrom2f0304c2001-04-29 19:49:14 +0000441 * reset timeout, since we got a sane answer from the client.
Ben Lindstrom5744dc42001-04-13 23:28:01 +0000442 * even if this was generated by something other than
443 * the bogus CHANNEL_REQUEST we send for keepalives.
444 */
Darren Tuckerf7288d72009-06-21 18:12:20 +1000445 packet_set_alive_timeouts(0);
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +0000446 return 0;
Ben Lindstrom5744dc42001-04-13 23:28:01 +0000447}
448
Ben Lindstrombba81212001-06-25 05:01:22 +0000449static Channel *
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000450server_request_direct_tcpip(struct ssh *ssh, int *reason, const char **errmsg)
Damien Millerefb4afe2000-04-12 18:45:05 +1000451{
Damien Milleraa5b3f82012-12-03 09:50:54 +1100452 Channel *c = NULL;
Damien Miller4af51302000-04-16 11:18:38 +1000453 char *target, *originator;
Damien Miller3dc71ad2009-01-28 16:31:22 +1100454 u_short target_port, originator_port;
Damien Millerefb4afe2000-04-12 18:45:05 +1000455
Damien Miller4af51302000-04-16 11:18:38 +1000456 target = packet_get_string(NULL);
457 target_port = packet_get_int();
Damien Millerefb4afe2000-04-12 18:45:05 +1000458 originator = packet_get_string(NULL);
459 originator_port = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +1100460 packet_check_eom();
Damien Millerb1715dc2000-05-30 13:44:51 +1000461
Damien Millerbd740252008-05-19 15:37:09 +1000462 debug("server_request_direct_tcpip: originator %s port %d, target %s "
463 "port %d", originator, originator_port, target, target_port);
Damien Millerf6d9e222000-06-18 14:50:44 +1000464
Damien Milleraa5b3f82012-12-03 09:50:54 +1100465 /* XXX fine grained permissions */
466 if ((options.allow_tcp_forwarding & FORWARD_LOCAL) != 0 &&
djm@openbsd.org7844f352016-11-30 03:00:05 +0000467 !no_port_forwarding_flag && !options.disable_forwarding) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000468 c = channel_connect_to_port(ssh, target, target_port,
dtucker@openbsd.org858252f2017-02-01 02:59:09 +0000469 "direct-tcpip", "direct-tcpip", reason, errmsg);
Damien Milleraa5b3f82012-12-03 09:50:54 +1100470 } else {
471 logit("refused local port forward: "
472 "originator %s port %d, target %s port %d",
473 originator, originator_port, target, target_port);
dtucker@openbsd.org858252f2017-02-01 02:59:09 +0000474 if (reason != NULL)
475 *reason = SSH2_OPEN_ADMINISTRATIVELY_PROHIBITED;
Damien Milleraa5b3f82012-12-03 09:50:54 +1100476 }
Damien Millerbd740252008-05-19 15:37:09 +1000477
Darren Tuckera627d422013-06-02 07:31:17 +1000478 free(originator);
479 free(target);
Damien Millerbd740252008-05-19 15:37:09 +1000480
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000481 return c;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100482}
483
Ben Lindstrombba81212001-06-25 05:01:22 +0000484static Channel *
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000485server_request_direct_streamlocal(struct ssh *ssh)
Damien Miller7acefbb2014-07-18 14:11:24 +1000486{
487 Channel *c = NULL;
488 char *target, *originator;
489 u_short originator_port;
djm@openbsd.org51045862017-01-04 05:37:40 +0000490 struct passwd *pw = the_authctxt->pw;
491
492 if (pw == NULL || !the_authctxt->valid)
493 fatal("server_input_global_request: no/invalid user");
Damien Miller7acefbb2014-07-18 14:11:24 +1000494
495 target = packet_get_string(NULL);
496 originator = packet_get_string(NULL);
497 originator_port = packet_get_int();
498 packet_check_eom();
499
500 debug("server_request_direct_streamlocal: originator %s port %d, target %s",
501 originator, originator_port, target);
502
503 /* XXX fine grained permissions */
504 if ((options.allow_streamlocal_forwarding & FORWARD_LOCAL) != 0 &&
djm@openbsd.orgb737e4d2016-12-14 00:36:34 +0000505 !no_port_forwarding_flag && !options.disable_forwarding &&
djm@openbsd.org51045862017-01-04 05:37:40 +0000506 (pw->pw_uid == 0 || use_privsep)) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000507 c = channel_connect_to_path(ssh, target,
Damien Miller7acefbb2014-07-18 14:11:24 +1000508 "direct-streamlocal@openssh.com", "direct-streamlocal");
509 } else {
510 logit("refused streamlocal port forward: "
511 "originator %s port %d, target %s",
512 originator, originator_port, target);
513 }
514
515 free(originator);
516 free(target);
517
518 return c;
519}
520
521static Channel *
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000522server_request_tun(struct ssh *ssh)
Damien Millerd27b9472005-12-13 19:29:02 +1100523{
524 Channel *c = NULL;
Damien Miller7b58e802005-12-13 19:33:19 +1100525 int mode, tun;
526 int sock;
djm@openbsd.orgb7548b12017-10-23 05:08:00 +0000527 char *tmp, *ifname = NULL;
Damien Millerd27b9472005-12-13 19:29:02 +1100528
Damien Miller7b58e802005-12-13 19:33:19 +1100529 mode = packet_get_int();
530 switch (mode) {
531 case SSH_TUNMODE_POINTOPOINT:
532 case SSH_TUNMODE_ETHERNET:
533 break;
534 default:
535 packet_send_debug("Unsupported tunnel device mode.");
536 return NULL;
537 }
538 if ((options.permit_tun & mode) == 0) {
539 packet_send_debug("Server has rejected tunnel device "
540 "forwarding");
Damien Millerd27b9472005-12-13 19:29:02 +1100541 return NULL;
542 }
543
544 tun = packet_get_int();
Darren Tucker0d0e8f02005-12-20 16:08:42 +1100545 if (forced_tun_device != -1) {
Damien Millerf0b15df2006-03-26 13:59:20 +1100546 if (tun != SSH_TUNID_ANY && forced_tun_device != tun)
Damien Millerd27b9472005-12-13 19:29:02 +1100547 goto done;
548 tun = forced_tun_device;
549 }
djm@openbsd.orgb7548b12017-10-23 05:08:00 +0000550 sock = tun_open(tun, mode, &ifname);
Damien Millerd27b9472005-12-13 19:29:02 +1100551 if (sock < 0)
552 goto done;
djm@openbsd.orgb7548b12017-10-23 05:08:00 +0000553 debug("Tunnel forwarding using interface %s", ifname);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000554 c = channel_new(ssh, "tun", SSH_CHANNEL_OPEN, sock, sock, -1,
Damien Millerd27b9472005-12-13 19:29:02 +1100555 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT, 0, "tun", 1);
556 c->datagram = 1;
Damien Miller598bbc22005-12-31 16:33:36 +1100557#if defined(SSH_TUN_FILTER)
558 if (mode == SSH_TUNMODE_POINTOPOINT)
Damien Miller871f1e42017-09-12 18:01:35 +1000559 channel_register_filter(ssh, c->self, sys_tun_infilter,
Darren Tucker1cf65ae2008-06-13 05:09:18 +1000560 sys_tun_outfilter, NULL, NULL);
Damien Miller598bbc22005-12-31 16:33:36 +1100561#endif
Damien Millerd27b9472005-12-13 19:29:02 +1100562
djm@openbsd.orgb7548b12017-10-23 05:08:00 +0000563 /*
564 * Update the list of names exposed to the session
565 * XXX remove these if the tunnels are closed (won't matter
566 * much if they are already in the environment though)
567 */
568 tmp = tun_fwd_ifnames;
569 xasprintf(&tun_fwd_ifnames, "%s%s%s",
570 tun_fwd_ifnames == NULL ? "" : tun_fwd_ifnames,
571 tun_fwd_ifnames == NULL ? "" : ",",
572 ifname);
573 free(tmp);
574 free(ifname);
575
Damien Millerd27b9472005-12-13 19:29:02 +1100576 done:
577 if (c == NULL)
578 packet_send_debug("Failed to open the tunnel device.");
579 return c;
580}
581
582static Channel *
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000583server_request_session(struct ssh *ssh)
Damien Miller0bc1bd82000-11-13 22:57:25 +1100584{
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000585 Channel *c;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100586
587 debug("input_session_request");
Damien Miller48b03fc2002-01-22 23:11:40 +1100588 packet_check_eom();
Darren Tucker8901fa92008-06-11 09:34:01 +1000589
590 if (no_more_sessions) {
591 packet_disconnect("Possible attack: attempt to open a session "
592 "after additional sessions disabled");
593 }
594
Damien Miller0bc1bd82000-11-13 22:57:25 +1100595 /*
596 * A server session has no fd to read or write until a
597 * CHANNEL_REQUEST for a shell is made, so we set the type to
598 * SSH_CHANNEL_LARVAL. Additionally, a callback for handling all
599 * CHANNEL_REQUEST messages is registered.
600 */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000601 c = channel_new(ssh, "session", SSH_CHANNEL_LARVAL,
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000602 -1, -1, -1, /*window size*/0, CHAN_SES_PACKET_DEFAULT,
Damien Millerb1ca8bb2003-05-14 13:45:42 +1000603 0, "server-session", 1);
Darren Tucker3e33cec2003-10-02 16:12:36 +1000604 if (session_open(the_authctxt, c->self) != 1) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000605 debug("session open failed, free channel %d", c->self);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000606 channel_free(ssh, c);
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000607 return NULL;
608 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000609 channel_register_cleanup(ssh, c->self, session_close_by_channel, 0);
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000610 return c;
Damien Millerefb4afe2000-04-12 18:45:05 +1000611}
612
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +0000613static int
markus@openbsd.org2ae666a2017-05-30 14:23:52 +0000614server_input_channel_open(int type, u_int32_t seq, struct ssh *ssh)
Damien Millerefb4afe2000-04-12 18:45:05 +1000615{
616 Channel *c = NULL;
617 char *ctype;
dtucker@openbsd.org858252f2017-02-01 02:59:09 +0000618 const char *errmsg = NULL;
619 int rchan, reason = SSH2_OPEN_CONNECT_FAILED;
Ben Lindstrom4fed2be2002-06-25 23:17:36 +0000620 u_int rmaxpack, rwindow, len;
Damien Millerefb4afe2000-04-12 18:45:05 +1000621
622 ctype = packet_get_string(&len);
623 rchan = packet_get_int();
624 rwindow = packet_get_int();
625 rmaxpack = packet_get_int();
626
Damien Miller62cee002000-09-23 17:15:56 +1100627 debug("server_input_channel_open: ctype %s rchan %d win %d max %d",
Damien Millerefb4afe2000-04-12 18:45:05 +1000628 ctype, rchan, rwindow, rmaxpack);
629
630 if (strcmp(ctype, "session") == 0) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000631 c = server_request_session(ssh);
Damien Millerefb4afe2000-04-12 18:45:05 +1000632 } else if (strcmp(ctype, "direct-tcpip") == 0) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000633 c = server_request_direct_tcpip(ssh, &reason, &errmsg);
Damien Miller7acefbb2014-07-18 14:11:24 +1000634 } else if (strcmp(ctype, "direct-streamlocal@openssh.com") == 0) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000635 c = server_request_direct_streamlocal(ssh);
Damien Millerd27b9472005-12-13 19:29:02 +1100636 } else if (strcmp(ctype, "tun@openssh.com") == 0) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000637 c = server_request_tun(ssh);
Damien Millerefb4afe2000-04-12 18:45:05 +1000638 }
639 if (c != NULL) {
Damien Miller0bc1bd82000-11-13 22:57:25 +1100640 debug("server_input_channel_open: confirm %s", ctype);
Damien Millerefb4afe2000-04-12 18:45:05 +1000641 c->remote_id = rchan;
djm@openbsd.org9f532292017-09-12 06:35:31 +0000642 c->have_remote_id = 1;
Damien Millerefb4afe2000-04-12 18:45:05 +1000643 c->remote_window = rwindow;
644 c->remote_maxpacket = rmaxpack;
Ben Lindstrom69128662001-05-08 20:07:39 +0000645 if (c->type != SSH_CHANNEL_CONNECTING) {
646 packet_start(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION);
647 packet_put_int(c->remote_id);
648 packet_put_int(c->self);
649 packet_put_int(c->local_window);
650 packet_put_int(c->local_maxpacket);
651 packet_send();
652 }
Damien Millerefb4afe2000-04-12 18:45:05 +1000653 } else {
Damien Miller0bc1bd82000-11-13 22:57:25 +1100654 debug("server_input_channel_open: failure %s", ctype);
Damien Millerefb4afe2000-04-12 18:45:05 +1000655 packet_start(SSH2_MSG_CHANNEL_OPEN_FAILURE);
656 packet_put_int(rchan);
dtucker@openbsd.org858252f2017-02-01 02:59:09 +0000657 packet_put_int(reason);
Ben Lindstromf3436742001-04-29 19:52:00 +0000658 if (!(datafellows & SSH_BUG_OPENFAILURE)) {
dtucker@openbsd.org858252f2017-02-01 02:59:09 +0000659 packet_put_cstring(errmsg ? errmsg : "open failed");
Ben Lindstromf3436742001-04-29 19:52:00 +0000660 packet_put_cstring("");
661 }
Damien Millerefb4afe2000-04-12 18:45:05 +1000662 packet_send();
663 }
Darren Tuckera627d422013-06-02 07:31:17 +1000664 free(ctype);
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +0000665 return 0;
Damien Millerefb4afe2000-04-12 18:45:05 +1000666}
667
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +0000668static int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000669server_input_hostkeys_prove(struct ssh *ssh, struct sshbuf **respp)
djm@openbsd.org523463a2015-02-16 22:13:32 +0000670{
djm@openbsd.org523463a2015-02-16 22:13:32 +0000671 struct sshbuf *resp = NULL;
672 struct sshbuf *sigbuf = NULL;
673 struct sshkey *key = NULL, *key_pub = NULL, *key_prv = NULL;
djm@openbsd.org78607312017-12-18 23:16:23 +0000674 int r, ndx, kexsigtype, use_kexsigtype, success = 0;
djm@openbsd.org523463a2015-02-16 22:13:32 +0000675 const u_char *blob;
676 u_char *sig = 0;
677 size_t blen, slen;
678
679 if ((resp = sshbuf_new()) == NULL || (sigbuf = sshbuf_new()) == NULL)
680 fatal("%s: sshbuf_new", __func__);
681
djm@openbsd.org78607312017-12-18 23:16:23 +0000682 kexsigtype = sshkey_type_plain(
683 sshkey_type_from_name(ssh->kex->hostkey_alg));
djm@openbsd.org523463a2015-02-16 22:13:32 +0000684 while (ssh_packet_remaining(ssh) > 0) {
685 sshkey_free(key);
686 key = NULL;
687 if ((r = sshpkt_get_string_direct(ssh, &blob, &blen)) != 0 ||
688 (r = sshkey_from_blob(blob, blen, &key)) != 0) {
689 error("%s: couldn't parse key: %s",
690 __func__, ssh_err(r));
691 goto out;
692 }
693 /*
694 * Better check that this is actually one of our hostkeys
695 * before attempting to sign anything with it.
696 */
697 if ((ndx = ssh->kex->host_key_index(key, 1, ssh)) == -1) {
698 error("%s: unknown host %s key",
699 __func__, sshkey_type(key));
700 goto out;
701 }
702 /*
703 * XXX refactor: make kex->sign just use an index rather
704 * than passing in public and private keys
705 */
706 if ((key_prv = get_hostkey_by_index(ndx)) == NULL &&
707 (key_pub = get_hostkey_public_by_index(ndx, ssh)) == NULL) {
708 error("%s: can't retrieve hostkey %d", __func__, ndx);
709 goto out;
710 }
711 sshbuf_reset(sigbuf);
712 free(sig);
713 sig = NULL;
djm@openbsd.org78607312017-12-18 23:16:23 +0000714 /*
715 * For RSA keys, prefer to use the signature type negotiated
716 * during KEX to the default (SHA1).
717 */
718 use_kexsigtype = kexsigtype == KEY_RSA &&
719 sshkey_type_plain(key->type) == KEY_RSA;
djm@openbsd.org44732de2015-02-20 22:17:21 +0000720 if ((r = sshbuf_put_cstring(sigbuf,
721 "hostkeys-prove-00@openssh.com")) != 0 ||
722 (r = sshbuf_put_string(sigbuf,
djm@openbsd.org523463a2015-02-16 22:13:32 +0000723 ssh->kex->session_id, ssh->kex->session_id_len)) != 0 ||
djm@openbsd.org523463a2015-02-16 22:13:32 +0000724 (r = sshkey_puts(key, sigbuf)) != 0 ||
725 (r = ssh->kex->sign(key_prv, key_pub, &sig, &slen,
djm@openbsd.org04c7e282017-12-18 02:25:15 +0000726 sshbuf_ptr(sigbuf), sshbuf_len(sigbuf),
djm@openbsd.org78607312017-12-18 23:16:23 +0000727 use_kexsigtype ? ssh->kex->hostkey_alg : NULL, 0)) != 0 ||
djm@openbsd.org523463a2015-02-16 22:13:32 +0000728 (r = sshbuf_put_string(resp, sig, slen)) != 0) {
729 error("%s: couldn't prepare signature: %s",
730 __func__, ssh_err(r));
731 goto out;
732 }
733 }
734 /* Success */
735 *respp = resp;
736 resp = NULL; /* don't free it */
737 success = 1;
738 out:
739 free(sig);
740 sshbuf_free(resp);
741 sshbuf_free(sigbuf);
742 sshkey_free(key);
743 return success;
744}
745
746static int
markus@openbsd.org2ae666a2017-05-30 14:23:52 +0000747server_input_global_request(int type, u_int32_t seq, struct ssh *ssh)
Damien Miller0bc1bd82000-11-13 22:57:25 +1100748{
749 char *rtype;
750 int want_reply;
djm@openbsd.org523463a2015-02-16 22:13:32 +0000751 int r, success = 0, allocated_listen_port = 0;
752 struct sshbuf *resp = NULL;
djm@openbsd.org51045862017-01-04 05:37:40 +0000753 struct passwd *pw = the_authctxt->pw;
754
755 if (pw == NULL || !the_authctxt->valid)
756 fatal("server_input_global_request: no/invalid user");
Damien Miller0bc1bd82000-11-13 22:57:25 +1100757
758 rtype = packet_get_string(NULL);
759 want_reply = packet_get_char();
760 debug("server_input_global_request: rtype %s want_reply %d", rtype, want_reply);
Kevin Stevesef4eea92001-02-05 12:42:17 +0000761
Ben Lindstrom7bb8b492001-03-17 00:47:54 +0000762 /* -R style forwarding */
Damien Miller0bc1bd82000-11-13 22:57:25 +1100763 if (strcmp(rtype, "tcpip-forward") == 0) {
Damien Miller7acefbb2014-07-18 14:11:24 +1000764 struct Forward fwd;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100765
Damien Miller7acefbb2014-07-18 14:11:24 +1000766 memset(&fwd, 0, sizeof(fwd));
767 fwd.listen_host = packet_get_string(NULL);
768 fwd.listen_port = (u_short)packet_get_int();
Damien Miller0bc1bd82000-11-13 22:57:25 +1100769 debug("server_input_global_request: tcpip-forward listen %s port %d",
Damien Miller7acefbb2014-07-18 14:11:24 +1000770 fwd.listen_host, fwd.listen_port);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100771
772 /* check permissions */
Damien Milleraa5b3f82012-12-03 09:50:54 +1100773 if ((options.allow_tcp_forwarding & FORWARD_REMOTE) == 0 ||
djm@openbsd.org7844f352016-11-30 03:00:05 +0000774 no_port_forwarding_flag || options.disable_forwarding ||
Darren Tucker5f41f032016-04-08 21:14:13 +1000775 (!want_reply && fwd.listen_port == 0) ||
dtucker@openbsd.org1c4ef0b2016-10-23 22:04:05 +0000776 (fwd.listen_port != 0 &&
777 !bind_permitted(fwd.listen_port, pw->pw_uid))) {
Damien Miller0bc1bd82000-11-13 22:57:25 +1100778 success = 0;
779 packet_send_debug("Server has disabled port forwarding.");
780 } else {
781 /* Start listening on the port */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000782 success = channel_setup_remote_fwd_listener(ssh, &fwd,
Damien Miller7acefbb2014-07-18 14:11:24 +1000783 &allocated_listen_port, &options.fwd_opts);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100784 }
Damien Miller7acefbb2014-07-18 14:11:24 +1000785 free(fwd.listen_host);
djm@openbsd.org523463a2015-02-16 22:13:32 +0000786 if ((resp = sshbuf_new()) == NULL)
787 fatal("%s: sshbuf_new", __func__);
djm@openbsd.orgb1d6b392015-11-28 06:41:03 +0000788 if (allocated_listen_port != 0 &&
789 (r = sshbuf_put_u32(resp, allocated_listen_port)) != 0)
djm@openbsd.org523463a2015-02-16 22:13:32 +0000790 fatal("%s: sshbuf_put_u32: %s", __func__, ssh_err(r));
Darren Tuckere7066df2004-05-24 10:18:05 +1000791 } else if (strcmp(rtype, "cancel-tcpip-forward") == 0) {
Damien Miller7acefbb2014-07-18 14:11:24 +1000792 struct Forward fwd;
Darren Tuckere7066df2004-05-24 10:18:05 +1000793
Damien Miller7acefbb2014-07-18 14:11:24 +1000794 memset(&fwd, 0, sizeof(fwd));
795 fwd.listen_host = packet_get_string(NULL);
796 fwd.listen_port = (u_short)packet_get_int();
Darren Tuckere7066df2004-05-24 10:18:05 +1000797 debug("%s: cancel-tcpip-forward addr %s port %d", __func__,
Damien Miller7acefbb2014-07-18 14:11:24 +1000798 fwd.listen_host, fwd.listen_port);
Darren Tuckere7066df2004-05-24 10:18:05 +1000799
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000800 success = channel_cancel_rport_listener(ssh, &fwd);
Damien Miller7acefbb2014-07-18 14:11:24 +1000801 free(fwd.listen_host);
802 } else if (strcmp(rtype, "streamlocal-forward@openssh.com") == 0) {
803 struct Forward fwd;
804
805 memset(&fwd, 0, sizeof(fwd));
806 fwd.listen_path = packet_get_string(NULL);
807 debug("server_input_global_request: streamlocal-forward listen path %s",
808 fwd.listen_path);
809
810 /* check permissions */
811 if ((options.allow_streamlocal_forwarding & FORWARD_REMOTE) == 0
djm@openbsd.orgb737e4d2016-12-14 00:36:34 +0000812 || no_port_forwarding_flag || options.disable_forwarding ||
djm@openbsd.org51045862017-01-04 05:37:40 +0000813 (pw->pw_uid != 0 && !use_privsep)) {
Damien Miller7acefbb2014-07-18 14:11:24 +1000814 success = 0;
djm@openbsd.org51045862017-01-04 05:37:40 +0000815 packet_send_debug("Server has disabled "
816 "streamlocal forwarding.");
Damien Miller7acefbb2014-07-18 14:11:24 +1000817 } else {
818 /* Start listening on the socket */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000819 success = channel_setup_remote_fwd_listener(ssh,
Damien Miller7acefbb2014-07-18 14:11:24 +1000820 &fwd, NULL, &options.fwd_opts);
821 }
822 free(fwd.listen_path);
823 } else if (strcmp(rtype, "cancel-streamlocal-forward@openssh.com") == 0) {
824 struct Forward fwd;
825
826 memset(&fwd, 0, sizeof(fwd));
827 fwd.listen_path = packet_get_string(NULL);
828 debug("%s: cancel-streamlocal-forward path %s", __func__,
829 fwd.listen_path);
830
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000831 success = channel_cancel_rport_listener(ssh, &fwd);
Damien Miller7acefbb2014-07-18 14:11:24 +1000832 free(fwd.listen_path);
Darren Tucker8901fa92008-06-11 09:34:01 +1000833 } else if (strcmp(rtype, "no-more-sessions@openssh.com") == 0) {
834 no_more_sessions = 1;
835 success = 1;
djm@openbsd.org44732de2015-02-20 22:17:21 +0000836 } else if (strcmp(rtype, "hostkeys-prove-00@openssh.com") == 0) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000837 success = server_input_hostkeys_prove(ssh, &resp);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100838 }
839 if (want_reply) {
840 packet_start(success ?
841 SSH2_MSG_REQUEST_SUCCESS : SSH2_MSG_REQUEST_FAILURE);
djm@openbsd.org523463a2015-02-16 22:13:32 +0000842 if (success && resp != NULL)
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000843 ssh_packet_put_raw(ssh, sshbuf_ptr(resp),
djm@openbsd.org523463a2015-02-16 22:13:32 +0000844 sshbuf_len(resp));
Damien Miller0bc1bd82000-11-13 22:57:25 +1100845 packet_send();
846 packet_write_wait();
847 }
Darren Tuckera627d422013-06-02 07:31:17 +1000848 free(rtype);
djm@openbsd.org523463a2015-02-16 22:13:32 +0000849 sshbuf_free(resp);
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +0000850 return 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100851}
Damien Miller4f7becb2006-03-26 14:10:14 +1100852
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +0000853static int
markus@openbsd.org2ae666a2017-05-30 14:23:52 +0000854server_input_channel_req(int type, u_int32_t seq, struct ssh *ssh)
Damien Millerc7ef63d2002-02-05 12:21:42 +1100855{
856 Channel *c;
857 int id, reply, success = 0;
858 char *rtype;
859
860 id = packet_get_int();
861 rtype = packet_get_string(NULL);
862 reply = packet_get_char();
863
864 debug("server_input_channel_req: channel %d request %s reply %d",
865 id, rtype, reply);
866
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000867 if ((c = channel_lookup(ssh, id)) == NULL)
Damien Millerc7ef63d2002-02-05 12:21:42 +1100868 packet_disconnect("server_input_channel_req: "
869 "unknown channel %d", id);
Damien Millerbab9bd42008-05-19 16:06:47 +1000870 if (!strcmp(rtype, "eow@openssh.com")) {
871 packet_check_eom();
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000872 chan_rcvd_eow(ssh, c);
Darren Tucker8810dd42008-07-02 22:32:14 +1000873 } else if ((c->type == SSH_CHANNEL_LARVAL ||
874 c->type == SSH_CHANNEL_OPEN) && strcmp(c->ctype, "session") == 0)
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000875 success = session_input_channel_req(ssh, c, rtype);
Damien Millerc5893782014-05-15 13:48:49 +1000876 if (reply && !(c->flags & CHAN_CLOSE_SENT)) {
djm@openbsd.org9f532292017-09-12 06:35:31 +0000877 if (!c->have_remote_id)
878 fatal("%s: channel %d: no remote_id",
879 __func__, c->self);
Damien Millerc7ef63d2002-02-05 12:21:42 +1100880 packet_start(success ?
881 SSH2_MSG_CHANNEL_SUCCESS : SSH2_MSG_CHANNEL_FAILURE);
882 packet_put_int(c->remote_id);
883 packet_send();
884 }
Darren Tuckera627d422013-06-02 07:31:17 +1000885 free(rtype);
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +0000886 return 0;
Damien Millerc7ef63d2002-02-05 12:21:42 +1100887}
Damien Miller0bc1bd82000-11-13 22:57:25 +1100888
Ben Lindstrombba81212001-06-25 05:01:22 +0000889static void
markus@openbsd.org6cb6dcf2016-08-13 17:47:40 +0000890server_init_dispatch(void)
Damien Millerefb4afe2000-04-12 18:45:05 +1000891{
markus@openbsd.org6cb6dcf2016-08-13 17:47:40 +0000892 debug("server_init_dispatch");
Damien Millerefb4afe2000-04-12 18:45:05 +1000893 dispatch_init(&dispatch_protocol_error);
894 dispatch_set(SSH2_MSG_CHANNEL_CLOSE, &channel_input_oclose);
895 dispatch_set(SSH2_MSG_CHANNEL_DATA, &channel_input_data);
896 dispatch_set(SSH2_MSG_CHANNEL_EOF, &channel_input_ieof);
897 dispatch_set(SSH2_MSG_CHANNEL_EXTENDED_DATA, &channel_input_extended_data);
898 dispatch_set(SSH2_MSG_CHANNEL_OPEN, &server_input_channel_open);
899 dispatch_set(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION, &channel_input_open_confirmation);
900 dispatch_set(SSH2_MSG_CHANNEL_OPEN_FAILURE, &channel_input_open_failure);
Damien Millerc7ef63d2002-02-05 12:21:42 +1100901 dispatch_set(SSH2_MSG_CHANNEL_REQUEST, &server_input_channel_req);
Damien Millerefb4afe2000-04-12 18:45:05 +1000902 dispatch_set(SSH2_MSG_CHANNEL_WINDOW_ADJUST, &channel_input_window_adjust);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100903 dispatch_set(SSH2_MSG_GLOBAL_REQUEST, &server_input_global_request);
Ben Lindstrom5744dc42001-04-13 23:28:01 +0000904 /* client_alive */
Damien Miller5a33ec62008-12-08 09:55:02 +1100905 dispatch_set(SSH2_MSG_CHANNEL_SUCCESS, &server_input_keep_alive);
906 dispatch_set(SSH2_MSG_CHANNEL_FAILURE, &server_input_keep_alive);
Damien Millerb5820f42003-12-17 16:27:32 +1100907 dispatch_set(SSH2_MSG_REQUEST_SUCCESS, &server_input_keep_alive);
908 dispatch_set(SSH2_MSG_REQUEST_FAILURE, &server_input_keep_alive);
Ben Lindstrom8ac91062001-04-04 17:57:54 +0000909 /* rekeying */
910 dispatch_set(SSH2_MSG_KEXINIT, &kex_input_kexinit);
Damien Millerefb4afe2000-04-12 18:45:05 +1000911}