2019-11-27 06:38:43 +01:00
|
|
|
/* $OpenBSD: serverloop.c,v 1.218 2019/11/27 05:38:43 dtucker Exp $ */
|
1999-10-27 05:42:43 +02:00
|
|
|
/*
|
1999-11-24 14:26:21 +01:00
|
|
|
* Author: Tatu Ylonen <ylo@cs.hut.fi>
|
|
|
|
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
|
|
|
|
* All rights reserved
|
|
|
|
* Server main loop for handling the interactive session.
|
2000-09-16 04:29:08 +02:00
|
|
|
*
|
|
|
|
* As far as I am concerned, the code I have written for this software
|
|
|
|
* can be used freely for any purpose. Any derived versions of this
|
|
|
|
* software must be clearly marked as such, and if the derived work is
|
|
|
|
* incompatible with the protocol description in the RFC file, it must be
|
|
|
|
* called by a name other than "ssh" or "Secure Shell".
|
|
|
|
*
|
2000-04-12 10:45:05 +02:00
|
|
|
* SSH2 support by Markus Friedl.
|
2001-07-04 05:32:30 +02:00
|
|
|
* Copyright (c) 2000, 2001 Markus Friedl. All rights reserved.
|
2000-09-16 04:29:08 +02:00
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
|
|
|
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|
|
|
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|
|
|
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|
|
|
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|
|
|
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
2000-04-12 10:45:05 +02:00
|
|
|
*/
|
1999-10-27 05:42:43 +02:00
|
|
|
|
|
|
|
#include "includes.h"
|
2006-03-15 01:29:24 +01:00
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/wait.h>
|
2006-07-10 12:35:38 +02:00
|
|
|
#include <sys/socket.h>
|
2006-08-05 02:57:45 +02:00
|
|
|
#ifdef HAVE_SYS_TIME_H
|
|
|
|
# include <sys/time.h>
|
|
|
|
#endif
|
2006-07-10 12:35:38 +02:00
|
|
|
|
|
|
|
#include <netinet/in.h>
|
2006-03-15 01:11:28 +01:00
|
|
|
|
2006-07-12 14:22:46 +02:00
|
|
|
#include <errno.h>
|
2006-07-10 13:13:46 +02:00
|
|
|
#include <fcntl.h>
|
2006-07-10 12:53:08 +02:00
|
|
|
#include <pwd.h>
|
2019-01-19 22:40:48 +01:00
|
|
|
#include <limits.h>
|
2006-03-15 01:52:09 +01:00
|
|
|
#include <signal.h>
|
2006-07-24 06:13:33 +02:00
|
|
|
#include <string.h>
|
2006-03-15 01:11:28 +01:00
|
|
|
#include <termios.h>
|
2006-07-24 06:07:35 +02:00
|
|
|
#include <unistd.h>
|
2006-08-05 04:39:39 +02:00
|
|
|
#include <stdarg.h>
|
2000-10-28 05:19:58 +02:00
|
|
|
|
2008-05-19 07:05:07 +02:00
|
|
|
#include "openbsd-compat/sys-queue.h"
|
1999-10-27 05:42:43 +02:00
|
|
|
#include "xmalloc.h"
|
|
|
|
#include "packet.h"
|
2018-07-09 23:29:36 +02:00
|
|
|
#include "sshbuf.h"
|
2001-01-22 06:34:40 +01:00
|
|
|
#include "log.h"
|
2014-07-18 06:11:24 +02:00
|
|
|
#include "misc.h"
|
1999-10-27 05:42:43 +02:00
|
|
|
#include "servconf.h"
|
2002-09-21 17:26:27 +02:00
|
|
|
#include "canohost.h"
|
2001-02-18 20:13:33 +01:00
|
|
|
#include "sshpty.h"
|
2001-06-09 02:36:26 +02:00
|
|
|
#include "channels.h"
|
2000-04-01 03:09:21 +02:00
|
|
|
#include "compat.h"
|
2000-04-12 10:45:05 +02:00
|
|
|
#include "ssh2.h"
|
2018-07-11 20:53:29 +02:00
|
|
|
#include "sshkey.h"
|
2006-08-05 04:39:39 +02:00
|
|
|
#include "cipher.h"
|
|
|
|
#include "kex.h"
|
|
|
|
#include "hostfile.h"
|
2001-01-19 05:26:52 +01:00
|
|
|
#include "auth.h"
|
2000-04-12 10:45:05 +02:00
|
|
|
#include "session.h"
|
2000-04-01 03:09:21 +02:00
|
|
|
#include "dispatch.h"
|
2000-06-18 06:50:44 +02:00
|
|
|
#include "auth-options.h"
|
2001-01-22 06:34:40 +01:00
|
|
|
#include "serverloop.h"
|
2015-02-16 23:13:32 +01:00
|
|
|
#include "ssherr.h"
|
1999-10-27 05:42:43 +02:00
|
|
|
|
2000-10-16 03:14:42 +02:00
|
|
|
extern ServerOptions options;
|
|
|
|
|
2001-04-04 19:57:54 +02:00
|
|
|
/* XXX */
|
2003-10-02 08:12:36 +02:00
|
|
|
extern Authctxt *the_authctxt;
|
2018-03-03 04:15:51 +01:00
|
|
|
extern struct sshauthopt *auth_opts;
|
2005-11-05 05:16:52 +01:00
|
|
|
extern int use_privsep;
|
2001-04-04 19:57:54 +02:00
|
|
|
|
2008-06-11 01:34:01 +02:00
|
|
|
static int no_more_sessions = 0; /* Disallow further sessions. */
|
1999-10-27 05:42:43 +02:00
|
|
|
|
1999-11-25 01:54:57 +01:00
|
|
|
/*
|
|
|
|
* This SIGCHLD kludge is used to detect when the child exits. The server
|
|
|
|
* will exit after that, as soon as forwarded connections have terminated.
|
|
|
|
*/
|
2001-06-25 07:01:22 +02:00
|
|
|
|
2001-12-06 17:48:14 +01:00
|
|
|
static volatile sig_atomic_t child_terminated = 0; /* The child has terminated. */
|
1999-10-27 05:42:43 +02:00
|
|
|
|
2005-11-05 05:16:52 +01:00
|
|
|
/* Cleanup on signals (!use_privsep case only) */
|
|
|
|
static volatile sig_atomic_t received_sigterm = 0;
|
|
|
|
|
2001-06-25 07:01:22 +02:00
|
|
|
/* prototypes */
|
2019-01-19 22:40:48 +01:00
|
|
|
static void server_init_dispatch(struct ssh *);
|
2000-04-01 03:09:21 +02:00
|
|
|
|
2017-10-23 07:08:00 +02:00
|
|
|
/* requested tunnel forwarding interface(s), shared with session.c */
|
|
|
|
char *tun_fwd_ifnames = NULL;
|
|
|
|
|
2018-07-27 07:13:02 +02:00
|
|
|
/* returns 1 if bind to specified port by specified user is permitted */
|
|
|
|
static int
|
|
|
|
bind_permitted(int port, uid_t uid)
|
|
|
|
{
|
|
|
|
if (use_privsep)
|
|
|
|
return 1; /* allow system to decide */
|
|
|
|
if (port < IPPORT_RESERVED && uid != 0)
|
|
|
|
return 0;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2001-12-21 04:53:11 +01:00
|
|
|
/*
|
|
|
|
* we write to this pipe if a SIGCHLD is caught in order to avoid
|
|
|
|
* the race between select() and child_terminated
|
|
|
|
*/
|
|
|
|
static int notify_pipe[2];
|
|
|
|
static void
|
|
|
|
notify_setup(void)
|
|
|
|
{
|
2019-06-28 15:35:04 +02:00
|
|
|
if (pipe(notify_pipe) == -1) {
|
2001-12-21 04:53:11 +01:00
|
|
|
error("pipe(notify_pipe) failed %s", strerror(errno));
|
2011-05-20 11:02:47 +02:00
|
|
|
} else if ((fcntl(notify_pipe[0], F_SETFD, FD_CLOEXEC) == -1) ||
|
|
|
|
(fcntl(notify_pipe[1], F_SETFD, FD_CLOEXEC) == -1)) {
|
2001-12-21 04:53:11 +01:00
|
|
|
error("fcntl(notify_pipe, F_SETFD) failed %s", strerror(errno));
|
|
|
|
close(notify_pipe[0]);
|
|
|
|
close(notify_pipe[1]);
|
|
|
|
} else {
|
|
|
|
set_nonblock(notify_pipe[0]);
|
|
|
|
set_nonblock(notify_pipe[1]);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
notify_pipe[0] = -1; /* read end */
|
|
|
|
notify_pipe[1] = -1; /* write end */
|
|
|
|
}
|
|
|
|
static void
|
|
|
|
notify_parent(void)
|
|
|
|
{
|
|
|
|
if (notify_pipe[1] != -1)
|
2013-05-16 12:32:29 +02:00
|
|
|
(void)write(notify_pipe[1], "", 1);
|
2001-12-21 04:53:11 +01:00
|
|
|
}
|
|
|
|
static void
|
|
|
|
notify_prepare(fd_set *readset)
|
|
|
|
{
|
|
|
|
if (notify_pipe[0] != -1)
|
|
|
|
FD_SET(notify_pipe[0], readset);
|
|
|
|
}
|
|
|
|
static void
|
|
|
|
notify_done(fd_set *readset)
|
|
|
|
{
|
|
|
|
char c;
|
|
|
|
|
|
|
|
if (notify_pipe[0] != -1 && FD_ISSET(notify_pipe[0], readset))
|
|
|
|
while (read(notify_pipe[0], &c, 1) != -1)
|
2018-06-08 03:55:40 +02:00
|
|
|
debug2("%s: reading", __func__);
|
2001-12-21 04:53:11 +01:00
|
|
|
}
|
|
|
|
|
2006-03-26 04:59:20 +02:00
|
|
|
/*ARGSUSED*/
|
2001-06-25 07:01:22 +02:00
|
|
|
static void
|
1999-11-24 14:26:21 +01:00
|
|
|
sigchld_handler(int sig)
|
2000-04-12 10:45:05 +02:00
|
|
|
{
|
|
|
|
int save_errno = errno;
|
|
|
|
child_terminated = 1;
|
2001-12-21 04:53:11 +01:00
|
|
|
notify_parent();
|
2000-04-12 10:45:05 +02:00
|
|
|
errno = save_errno;
|
|
|
|
}
|
1999-10-27 05:42:43 +02:00
|
|
|
|
2006-03-26 04:59:20 +02:00
|
|
|
/*ARGSUSED*/
|
2005-11-05 05:16:52 +01:00
|
|
|
static void
|
|
|
|
sigterm_handler(int sig)
|
|
|
|
{
|
|
|
|
received_sigterm = sig;
|
|
|
|
}
|
|
|
|
|
2001-10-10 07:01:40 +02:00
|
|
|
static void
|
2017-09-12 08:32:07 +02:00
|
|
|
client_alive_check(struct ssh *ssh)
|
2001-10-10 07:01:40 +02:00
|
|
|
{
|
2017-12-10 06:55:29 +01:00
|
|
|
char remote_id[512];
|
2019-01-19 22:40:48 +01:00
|
|
|
int r, channel_id;
|
2002-01-22 13:21:39 +01:00
|
|
|
|
2001-10-10 07:01:40 +02:00
|
|
|
/* timeout, check to see how many we have had */
|
2019-01-19 22:40:48 +01:00
|
|
|
if (ssh_packet_inc_alive_timeouts(ssh) >
|
|
|
|
options.client_alive_count_max) {
|
2017-12-10 06:55:29 +01:00
|
|
|
sshpkt_fmt_connection_id(ssh, remote_id, sizeof(remote_id));
|
|
|
|
logit("Timeout, client not responding from %s", remote_id);
|
2006-10-23 19:02:41 +02:00
|
|
|
cleanup_exit(255);
|
|
|
|
}
|
2001-10-10 07:01:40 +02:00
|
|
|
|
|
|
|
/*
|
2003-12-17 06:27:32 +01:00
|
|
|
* send a bogus global/channel request with "wantreply",
|
2001-10-10 07:01:40 +02:00
|
|
|
* we should get back a failure
|
|
|
|
*/
|
2017-09-12 08:32:07 +02:00
|
|
|
if ((channel_id = channel_find_open(ssh)) == -1) {
|
2019-01-19 22:40:48 +01:00
|
|
|
if ((r = sshpkt_start(ssh, SSH2_MSG_GLOBAL_REQUEST)) != 0 ||
|
|
|
|
(r = sshpkt_put_cstring(ssh, "keepalive@openssh.com"))
|
|
|
|
!= 0 ||
|
|
|
|
(r = sshpkt_put_u8(ssh, 1)) != 0) /* boolean: want reply */
|
|
|
|
fatal("%s: %s", __func__, ssh_err(r));
|
2003-12-17 06:27:32 +01:00
|
|
|
} else {
|
2017-09-12 08:32:07 +02:00
|
|
|
channel_request_start(ssh, channel_id,
|
|
|
|
"keepalive@openssh.com", 1);
|
2003-12-17 06:27:32 +01:00
|
|
|
}
|
2019-01-19 22:40:48 +01:00
|
|
|
if ((r = sshpkt_send(ssh)) != 0)
|
|
|
|
fatal("%s: %s", __func__, ssh_err(r));
|
2001-10-10 07:01:40 +02:00
|
|
|
}
|
|
|
|
|
1999-11-24 14:26:21 +01:00
|
|
|
/*
|
|
|
|
* Sleep in select() until we can do something. This will initialize the
|
|
|
|
* select masks. Upon return, the masks will indicate which descriptors
|
|
|
|
* have data or can accept data. Optionally, a maximum time can be specified
|
|
|
|
* for the duration of the wait (0 = infinite).
|
|
|
|
*/
|
2001-06-25 07:01:22 +02:00
|
|
|
static void
|
2017-09-12 08:32:07 +02:00
|
|
|
wait_until_can_do_something(struct ssh *ssh,
|
|
|
|
int connection_in, int connection_out,
|
2016-08-13 19:47:40 +02:00
|
|
|
fd_set **readsetp, fd_set **writesetp, int *maxfdp,
|
2016-03-04 04:35:44 +01:00
|
|
|
u_int *nallocp, u_int64_t max_time_ms)
|
1999-10-27 05:42:43 +02:00
|
|
|
{
|
1999-11-24 14:26:21 +01:00
|
|
|
struct timeval tv, *tvp;
|
|
|
|
int ret;
|
2012-06-20 14:31:26 +02:00
|
|
|
time_t minwait_secs = 0;
|
2001-04-14 01:28:01 +02:00
|
|
|
int client_alive_scheduled = 0;
|
2019-03-06 22:06:59 +01:00
|
|
|
/* time we last heard from the client OR sent a keepalive */
|
2017-08-11 05:58:36 +02:00
|
|
|
static time_t last_client_time;
|
2001-04-14 01:28:01 +02:00
|
|
|
|
2012-04-22 03:21:10 +02:00
|
|
|
/* Allocate and update select() masks for channel descriptors. */
|
2017-09-12 08:32:07 +02:00
|
|
|
channel_prepare_select(ssh, readsetp, writesetp, maxfdp,
|
2017-08-30 05:59:08 +02:00
|
|
|
nallocp, &minwait_secs);
|
2012-04-22 03:21:10 +02:00
|
|
|
|
2016-03-04 04:35:44 +01:00
|
|
|
/* XXX need proper deadline system for rekey/client alive */
|
2012-04-22 03:21:10 +02:00
|
|
|
if (minwait_secs != 0)
|
2016-09-12 03:22:38 +02:00
|
|
|
max_time_ms = MINIMUM(max_time_ms, (u_int)minwait_secs * 1000);
|
2012-04-22 03:21:10 +02:00
|
|
|
|
2001-04-14 01:28:01 +02:00
|
|
|
/*
|
2001-12-21 04:45:46 +01:00
|
|
|
* if using client_alive, set the max timeout accordingly,
|
2001-04-14 01:28:01 +02:00
|
|
|
* and indicate that this particular timeout was for client
|
|
|
|
* alive by setting the client_alive_scheduled flag.
|
|
|
|
*
|
|
|
|
* this could be randomized somewhat to make traffic
|
2001-12-21 04:45:46 +01:00
|
|
|
* analysis more difficult, but we're not doing it yet.
|
2001-04-14 01:28:01 +02:00
|
|
|
*/
|
2016-08-13 19:47:40 +02:00
|
|
|
if (options.client_alive_interval) {
|
2016-03-04 04:35:44 +01:00
|
|
|
uint64_t keepalive_ms =
|
|
|
|
(uint64_t)options.client_alive_interval * 1000;
|
|
|
|
|
2019-03-27 10:29:14 +01:00
|
|
|
if (max_time_ms == 0 || max_time_ms > keepalive_ms) {
|
2016-03-04 04:35:44 +01:00
|
|
|
max_time_ms = keepalive_ms;
|
2019-03-27 10:29:14 +01:00
|
|
|
client_alive_scheduled = 1;
|
|
|
|
}
|
2001-07-18 17:48:57 +02:00
|
|
|
}
|
1999-10-27 05:42:43 +02:00
|
|
|
|
2001-10-10 07:01:16 +02:00
|
|
|
#if 0
|
2016-08-13 19:47:40 +02:00
|
|
|
/* wrong: bad condition XXX */
|
|
|
|
if (channel_not_very_much_buffered_data())
|
2001-10-10 07:01:16 +02:00
|
|
|
#endif
|
2016-08-13 19:47:40 +02:00
|
|
|
FD_SET(connection_in, *readsetp);
|
2001-12-21 04:53:11 +01:00
|
|
|
notify_prepare(*readsetp);
|
1999-11-24 14:26:21 +01:00
|
|
|
|
1999-11-25 01:54:57 +01:00
|
|
|
/*
|
|
|
|
* If we have buffered packet data going to the client, mark that
|
|
|
|
* descriptor.
|
|
|
|
*/
|
2019-01-19 22:40:48 +01:00
|
|
|
if (ssh_packet_have_data_to_write(ssh))
|
2001-01-29 23:14:00 +01:00
|
|
|
FD_SET(connection_out, *writesetp);
|
1999-11-24 14:26:21 +01:00
|
|
|
|
1999-11-25 01:54:57 +01:00
|
|
|
/*
|
|
|
|
* If child has terminated and there is enough buffer space to read
|
|
|
|
* from it, then read as much as is available and exit.
|
|
|
|
*/
|
2019-01-19 22:40:48 +01:00
|
|
|
if (child_terminated && ssh_packet_not_very_much_data_to_write(ssh))
|
2016-03-04 04:35:44 +01:00
|
|
|
if (max_time_ms == 0 || client_alive_scheduled)
|
|
|
|
max_time_ms = 100;
|
1999-11-24 14:26:21 +01:00
|
|
|
|
2016-03-04 04:35:44 +01:00
|
|
|
if (max_time_ms == 0)
|
1999-11-24 14:26:21 +01:00
|
|
|
tvp = NULL;
|
|
|
|
else {
|
2016-03-04 04:35:44 +01:00
|
|
|
tv.tv_sec = max_time_ms / 1000;
|
|
|
|
tv.tv_usec = 1000 * (max_time_ms % 1000);
|
1999-11-24 14:26:21 +01:00
|
|
|
tvp = &tv;
|
|
|
|
}
|
1999-10-27 05:42:43 +02:00
|
|
|
|
1999-11-24 14:26:21 +01:00
|
|
|
/* Wait for something to happen, or the timeout to expire. */
|
2001-01-29 23:14:00 +01:00
|
|
|
ret = select((*maxfdp)+1, *readsetp, *writesetp, NULL, tvp);
|
1999-10-27 05:42:43 +02:00
|
|
|
|
2001-04-14 01:28:01 +02:00
|
|
|
if (ret == -1) {
|
2001-11-12 01:06:32 +01:00
|
|
|
memset(*readsetp, 0, *nallocp);
|
|
|
|
memset(*writesetp, 0, *nallocp);
|
1999-11-24 14:26:21 +01:00
|
|
|
if (errno != EINTR)
|
|
|
|
error("select: %.100s", strerror(errno));
|
2017-08-11 05:58:36 +02:00
|
|
|
} else if (client_alive_scheduled) {
|
|
|
|
time_t now = monotime();
|
|
|
|
|
2019-03-06 22:06:59 +01:00
|
|
|
/*
|
|
|
|
* If the select timed out, or returned for some other reason
|
|
|
|
* but we haven't heard from the client in time, send keepalive.
|
|
|
|
*/
|
|
|
|
if (ret == 0 || (last_client_time != 0 && last_client_time +
|
|
|
|
options.client_alive_interval <= now)) {
|
2017-09-12 08:32:07 +02:00
|
|
|
client_alive_check(ssh);
|
2017-08-11 05:58:36 +02:00
|
|
|
last_client_time = now;
|
2019-03-06 22:06:59 +01:00
|
|
|
} else if (FD_ISSET(connection_in, *readsetp)) {
|
2017-08-11 05:58:36 +02:00
|
|
|
last_client_time = now;
|
|
|
|
}
|
|
|
|
}
|
2001-12-21 04:53:11 +01:00
|
|
|
|
|
|
|
notify_done(*readsetp);
|
1999-10-27 05:42:43 +02:00
|
|
|
}
|
|
|
|
|
1999-11-24 14:26:21 +01:00
|
|
|
/*
|
|
|
|
* Processes input from the client and the program. Input data is stored
|
|
|
|
* in buffers and processed later.
|
|
|
|
*/
|
2016-08-13 19:47:40 +02:00
|
|
|
static int
|
2017-09-12 08:32:07 +02:00
|
|
|
process_input(struct ssh *ssh, fd_set *readset, int connection_in)
|
1999-11-24 14:26:21 +01:00
|
|
|
{
|
2019-01-19 22:40:48 +01:00
|
|
|
int r, len;
|
1999-11-24 14:26:21 +01:00
|
|
|
char buf[16384];
|
|
|
|
|
|
|
|
/* Read and buffer any input data from the client. */
|
|
|
|
if (FD_ISSET(connection_in, readset)) {
|
2016-01-14 17:17:39 +01:00
|
|
|
len = read(connection_in, buf, sizeof(buf));
|
1999-11-24 14:26:21 +01:00
|
|
|
if (len == 0) {
|
2016-03-07 20:02:43 +01:00
|
|
|
verbose("Connection closed by %.100s port %d",
|
|
|
|
ssh_remote_ipaddr(ssh), ssh_remote_port(ssh));
|
2016-08-13 19:47:40 +02:00
|
|
|
return -1;
|
2019-06-28 15:35:04 +02:00
|
|
|
} else if (len == -1) {
|
2008-07-04 15:10:49 +02:00
|
|
|
if (errno != EINTR && errno != EAGAIN &&
|
|
|
|
errno != EWOULDBLOCK) {
|
2002-09-21 17:26:27 +02:00
|
|
|
verbose("Read error from remote host "
|
2016-03-07 20:02:43 +01:00
|
|
|
"%.100s port %d: %.100s",
|
|
|
|
ssh_remote_ipaddr(ssh),
|
|
|
|
ssh_remote_port(ssh), strerror(errno));
|
2003-10-02 08:12:36 +02:00
|
|
|
cleanup_exit(255);
|
2000-05-17 14:34:22 +02:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
/* Buffer any received data. */
|
2019-01-19 22:40:48 +01:00
|
|
|
if ((r = ssh_packet_process_incoming(ssh, buf, len))
|
|
|
|
!= 0)
|
|
|
|
fatal("%s: ssh_packet_process_incoming: %s",
|
|
|
|
__func__, ssh_err(r));
|
1999-11-24 14:26:21 +01:00
|
|
|
}
|
|
|
|
}
|
2016-08-13 19:47:40 +02:00
|
|
|
return 0;
|
1999-11-24 14:26:21 +01:00
|
|
|
}
|
1999-10-27 05:42:43 +02:00
|
|
|
|
1999-11-24 14:26:21 +01:00
|
|
|
/*
|
|
|
|
* Sends data from internal buffers to client program stdin.
|
|
|
|
*/
|
2001-06-25 07:01:22 +02:00
|
|
|
static void
|
2019-01-19 22:40:48 +01:00
|
|
|
process_output(struct ssh *ssh, fd_set *writeset, int connection_out)
|
1999-10-27 05:42:43 +02:00
|
|
|
{
|
2019-01-19 22:40:48 +01:00
|
|
|
int r;
|
|
|
|
|
1999-11-24 14:26:21 +01:00
|
|
|
/* Send any buffered packet data to the client. */
|
2019-01-19 22:40:48 +01:00
|
|
|
if (FD_ISSET(connection_out, writeset)) {
|
|
|
|
if ((r = ssh_packet_write_poll(ssh)) != 0)
|
|
|
|
fatal("%s: ssh_packet_write_poll: %s",
|
|
|
|
__func__, ssh_err(r));
|
|
|
|
}
|
1999-10-27 05:42:43 +02:00
|
|
|
}
|
|
|
|
|
2001-06-25 07:01:22 +02:00
|
|
|
static void
|
2017-09-12 08:32:07 +02:00
|
|
|
process_buffered_input_packets(struct ssh *ssh)
|
2000-04-01 03:09:21 +02:00
|
|
|
{
|
2017-09-12 08:32:07 +02:00
|
|
|
ssh_dispatch_run_fatal(ssh, DISPATCH_NONBLOCK, NULL);
|
2000-04-01 03:09:21 +02:00
|
|
|
}
|
|
|
|
|
2001-10-12 03:35:04 +02:00
|
|
|
static void
|
2017-09-12 08:32:07 +02:00
|
|
|
collect_children(struct ssh *ssh)
|
2001-10-12 03:35:04 +02:00
|
|
|
{
|
|
|
|
pid_t pid;
|
|
|
|
sigset_t oset, nset;
|
|
|
|
int status;
|
|
|
|
|
|
|
|
/* block SIGCHLD while we check for dead children */
|
|
|
|
sigemptyset(&nset);
|
|
|
|
sigaddset(&nset, SIGCHLD);
|
|
|
|
sigprocmask(SIG_BLOCK, &nset, &oset);
|
|
|
|
if (child_terminated) {
|
2006-03-15 02:01:34 +01:00
|
|
|
debug("Received SIGCHLD.");
|
2002-04-02 22:48:19 +02:00
|
|
|
while ((pid = waitpid(-1, &status, WNOHANG)) > 0 ||
|
2019-06-28 15:35:04 +02:00
|
|
|
(pid == -1 && errno == EINTR))
|
2002-04-02 22:48:19 +02:00
|
|
|
if (pid > 0)
|
2017-09-12 08:32:07 +02:00
|
|
|
session_close_by_pid(ssh, pid, status);
|
2001-10-12 03:35:04 +02:00
|
|
|
child_terminated = 0;
|
|
|
|
}
|
|
|
|
sigprocmask(SIG_SETMASK, &oset, NULL);
|
|
|
|
}
|
|
|
|
|
2000-04-16 03:18:38 +02:00
|
|
|
void
|
2017-09-12 08:32:07 +02:00
|
|
|
server_loop2(struct ssh *ssh, Authctxt *authctxt)
|
2000-04-12 10:45:05 +02:00
|
|
|
{
|
2001-01-29 23:14:00 +01:00
|
|
|
fd_set *readset = NULL, *writeset = NULL;
|
2016-02-08 11:57:07 +01:00
|
|
|
int max_fd;
|
2016-08-13 19:47:40 +02:00
|
|
|
u_int nalloc = 0, connection_in, connection_out;
|
2013-05-16 12:29:28 +02:00
|
|
|
u_int64_t rekey_timeout_ms = 0;
|
2000-04-12 10:45:05 +02:00
|
|
|
|
|
|
|
debug("Entering interactive session for SSH2.");
|
|
|
|
|
2018-02-15 11:43:01 +01:00
|
|
|
signal(SIGCHLD, sigchld_handler);
|
2000-04-12 10:45:05 +02:00
|
|
|
child_terminated = 0;
|
2019-01-19 22:40:48 +01:00
|
|
|
connection_in = ssh_packet_get_connection_in(ssh);
|
|
|
|
connection_out = ssh_packet_get_connection_out(ssh);
|
2001-01-29 23:14:00 +01:00
|
|
|
|
2005-11-05 05:16:52 +01:00
|
|
|
if (!use_privsep) {
|
|
|
|
signal(SIGTERM, sigterm_handler);
|
|
|
|
signal(SIGINT, sigterm_handler);
|
|
|
|
signal(SIGQUIT, sigterm_handler);
|
|
|
|
}
|
|
|
|
|
2001-12-21 04:53:11 +01:00
|
|
|
notify_setup();
|
|
|
|
|
2016-09-12 03:22:38 +02:00
|
|
|
max_fd = MAXIMUM(connection_in, connection_out);
|
|
|
|
max_fd = MAXIMUM(max_fd, notify_pipe[0]);
|
2001-12-21 04:53:11 +01:00
|
|
|
|
2019-01-19 22:40:48 +01:00
|
|
|
server_init_dispatch(ssh);
|
2000-04-12 10:45:05 +02:00
|
|
|
|
|
|
|
for (;;) {
|
2017-09-12 08:32:07 +02:00
|
|
|
process_buffered_input_packets(ssh);
|
2001-04-05 01:50:21 +02:00
|
|
|
|
2017-09-12 08:32:07 +02:00
|
|
|
if (!ssh_packet_is_rekeying(ssh) &&
|
2019-01-19 22:40:48 +01:00
|
|
|
ssh_packet_not_very_much_data_to_write(ssh))
|
2017-09-12 08:32:07 +02:00
|
|
|
channel_output_poll(ssh);
|
2019-01-19 22:40:48 +01:00
|
|
|
if (options.rekey_interval > 0 &&
|
|
|
|
!ssh_packet_is_rekeying(ssh)) {
|
|
|
|
rekey_timeout_ms = ssh_packet_get_rekey_timeout(ssh) *
|
|
|
|
1000;
|
|
|
|
} else {
|
2013-05-16 12:29:28 +02:00
|
|
|
rekey_timeout_ms = 0;
|
2019-01-19 22:40:48 +01:00
|
|
|
}
|
2013-05-16 12:29:28 +02:00
|
|
|
|
2017-09-12 08:32:07 +02:00
|
|
|
wait_until_can_do_something(ssh, connection_in, connection_out,
|
2016-08-13 19:47:40 +02:00
|
|
|
&readset, &writeset, &max_fd, &nalloc, rekey_timeout_ms);
|
2001-10-10 07:14:37 +02:00
|
|
|
|
2005-11-05 05:16:52 +01:00
|
|
|
if (received_sigterm) {
|
2012-12-07 03:07:46 +01:00
|
|
|
logit("Exiting on signal %d", (int)received_sigterm);
|
2005-11-05 05:16:52 +01:00
|
|
|
/* Clean up sessions, utmp, etc. */
|
|
|
|
cleanup_exit(255);
|
|
|
|
}
|
|
|
|
|
2017-09-12 08:32:07 +02:00
|
|
|
collect_children(ssh);
|
|
|
|
if (!ssh_packet_is_rekeying(ssh))
|
|
|
|
channel_after_select(ssh, readset, writeset);
|
|
|
|
if (process_input(ssh, readset, connection_in) < 0)
|
2001-04-07 03:12:11 +02:00
|
|
|
break;
|
2019-01-19 22:40:48 +01:00
|
|
|
process_output(ssh, writeset, connection_out);
|
2000-04-12 10:45:05 +02:00
|
|
|
}
|
2017-09-12 08:32:07 +02:00
|
|
|
collect_children(ssh);
|
2001-10-12 03:35:04 +02:00
|
|
|
|
2013-06-01 23:31:17 +02:00
|
|
|
free(readset);
|
|
|
|
free(writeset);
|
2001-01-29 23:14:00 +01:00
|
|
|
|
2001-10-10 07:14:37 +02:00
|
|
|
/* free all channels, no more reads and writes */
|
2017-09-12 08:32:07 +02:00
|
|
|
channel_free_all(ssh);
|
2001-07-04 07:17:40 +02:00
|
|
|
|
2001-10-12 03:35:04 +02:00
|
|
|
/* free remaining sessions, e.g. remove wtmp entries */
|
2017-09-12 08:32:07 +02:00
|
|
|
session_destroy_all(ssh, NULL);
|
2000-04-12 10:45:05 +02:00
|
|
|
}
|
|
|
|
|
2015-01-19 21:07:45 +01:00
|
|
|
static int
|
2017-05-30 16:23:52 +02:00
|
|
|
server_input_keep_alive(int type, u_int32_t seq, struct ssh *ssh)
|
2001-04-14 01:28:01 +02:00
|
|
|
{
|
2003-12-17 06:27:32 +01:00
|
|
|
debug("Got %d/%u for keepalive", type, seq);
|
2001-12-21 04:45:46 +01:00
|
|
|
/*
|
2001-04-29 21:49:14 +02:00
|
|
|
* reset timeout, since we got a sane answer from the client.
|
2001-04-14 01:28:01 +02:00
|
|
|
* even if this was generated by something other than
|
|
|
|
* the bogus CHANNEL_REQUEST we send for keepalives.
|
|
|
|
*/
|
2019-01-19 22:40:48 +01:00
|
|
|
ssh_packet_set_alive_timeouts(ssh, 0);
|
2015-01-19 21:07:45 +01:00
|
|
|
return 0;
|
2001-04-14 01:28:01 +02:00
|
|
|
}
|
|
|
|
|
2001-06-25 07:01:22 +02:00
|
|
|
static Channel *
|
2017-09-12 08:32:07 +02:00
|
|
|
server_request_direct_tcpip(struct ssh *ssh, int *reason, const char **errmsg)
|
2000-04-12 10:45:05 +02:00
|
|
|
{
|
2012-12-02 23:50:54 +01:00
|
|
|
Channel *c = NULL;
|
2019-01-19 22:40:48 +01:00
|
|
|
char *target = NULL, *originator = NULL;
|
|
|
|
u_int target_port = 0, originator_port = 0;
|
|
|
|
int r;
|
|
|
|
|
|
|
|
if ((r = sshpkt_get_cstring(ssh, &target, NULL)) != 0 ||
|
|
|
|
(r = sshpkt_get_u32(ssh, &target_port)) != 0 ||
|
|
|
|
(r = sshpkt_get_cstring(ssh, &originator, NULL)) != 0 ||
|
|
|
|
(r = sshpkt_get_u32(ssh, &originator_port)) != 0 ||
|
|
|
|
(r = sshpkt_get_end(ssh)) != 0)
|
|
|
|
sshpkt_fatal(ssh, r, "%s: parse packet", __func__);
|
|
|
|
if (target_port > 0xFFFF) {
|
|
|
|
error("%s: invalid target port", __func__);
|
|
|
|
*reason = SSH2_OPEN_ADMINISTRATIVELY_PROHIBITED;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
if (originator_port > 0xFFFF) {
|
|
|
|
error("%s: invalid originator port", __func__);
|
|
|
|
*reason = SSH2_OPEN_ADMINISTRATIVELY_PROHIBITED;
|
|
|
|
goto out;
|
|
|
|
}
|
2000-05-30 05:44:51 +02:00
|
|
|
|
2019-01-19 22:40:48 +01:00
|
|
|
debug("%s: originator %s port %u, target %s port %u", __func__,
|
2018-03-03 04:15:51 +01:00
|
|
|
originator, originator_port, target, target_port);
|
2000-06-18 06:50:44 +02:00
|
|
|
|
2012-12-02 23:50:54 +01:00
|
|
|
/* XXX fine grained permissions */
|
|
|
|
if ((options.allow_tcp_forwarding & FORWARD_LOCAL) != 0 &&
|
2018-03-03 04:15:51 +01:00
|
|
|
auth_opts->permit_port_forwarding_flag &&
|
|
|
|
!options.disable_forwarding) {
|
2017-09-12 08:32:07 +02:00
|
|
|
c = channel_connect_to_port(ssh, target, target_port,
|
2017-02-01 03:59:09 +01:00
|
|
|
"direct-tcpip", "direct-tcpip", reason, errmsg);
|
2012-12-02 23:50:54 +01:00
|
|
|
} else {
|
|
|
|
logit("refused local port forward: "
|
|
|
|
"originator %s port %d, target %s port %d",
|
|
|
|
originator, originator_port, target, target_port);
|
2017-02-01 03:59:09 +01:00
|
|
|
if (reason != NULL)
|
|
|
|
*reason = SSH2_OPEN_ADMINISTRATIVELY_PROHIBITED;
|
2012-12-02 23:50:54 +01:00
|
|
|
}
|
2008-05-19 07:37:09 +02:00
|
|
|
|
2019-01-19 22:40:48 +01:00
|
|
|
out:
|
2013-06-01 23:31:17 +02:00
|
|
|
free(originator);
|
|
|
|
free(target);
|
2001-05-05 06:09:47 +02:00
|
|
|
return c;
|
2000-11-13 12:57:25 +01:00
|
|
|
}
|
|
|
|
|
2014-07-18 06:11:24 +02:00
|
|
|
static Channel *
|
2017-09-12 08:32:07 +02:00
|
|
|
server_request_direct_streamlocal(struct ssh *ssh)
|
2014-07-18 06:11:24 +02:00
|
|
|
{
|
|
|
|
Channel *c = NULL;
|
2019-01-19 22:40:48 +01:00
|
|
|
char *target = NULL, *originator = NULL;
|
|
|
|
u_int originator_port = 0;
|
2017-01-04 06:37:40 +01:00
|
|
|
struct passwd *pw = the_authctxt->pw;
|
2019-01-19 22:40:48 +01:00
|
|
|
int r;
|
2017-01-04 06:37:40 +01:00
|
|
|
|
|
|
|
if (pw == NULL || !the_authctxt->valid)
|
2018-03-03 04:15:51 +01:00
|
|
|
fatal("%s: no/invalid user", __func__);
|
2014-07-18 06:11:24 +02:00
|
|
|
|
2019-01-19 22:40:48 +01:00
|
|
|
if ((r = sshpkt_get_cstring(ssh, &target, NULL)) != 0 ||
|
|
|
|
(r = sshpkt_get_cstring(ssh, &originator, NULL)) != 0 ||
|
|
|
|
(r = sshpkt_get_u32(ssh, &originator_port)) != 0 ||
|
|
|
|
(r = sshpkt_get_end(ssh)) != 0)
|
|
|
|
sshpkt_fatal(ssh, r, "%s: parse packet", __func__);
|
|
|
|
if (originator_port > 0xFFFF) {
|
|
|
|
error("%s: invalid originator port", __func__);
|
|
|
|
goto out;
|
|
|
|
}
|
2014-07-18 06:11:24 +02:00
|
|
|
|
2018-03-03 04:15:51 +01:00
|
|
|
debug("%s: originator %s port %d, target %s", __func__,
|
2014-07-18 06:11:24 +02:00
|
|
|
originator, originator_port, target);
|
|
|
|
|
|
|
|
/* XXX fine grained permissions */
|
|
|
|
if ((options.allow_streamlocal_forwarding & FORWARD_LOCAL) != 0 &&
|
2018-03-03 04:15:51 +01:00
|
|
|
auth_opts->permit_port_forwarding_flag &&
|
|
|
|
!options.disable_forwarding && (pw->pw_uid == 0 || use_privsep)) {
|
2017-09-12 08:32:07 +02:00
|
|
|
c = channel_connect_to_path(ssh, target,
|
2014-07-18 06:11:24 +02:00
|
|
|
"direct-streamlocal@openssh.com", "direct-streamlocal");
|
|
|
|
} else {
|
|
|
|
logit("refused streamlocal port forward: "
|
|
|
|
"originator %s port %d, target %s",
|
|
|
|
originator, originator_port, target);
|
|
|
|
}
|
|
|
|
|
2019-01-19 22:40:48 +01:00
|
|
|
out:
|
2014-07-18 06:11:24 +02:00
|
|
|
free(originator);
|
|
|
|
free(target);
|
|
|
|
return c;
|
|
|
|
}
|
|
|
|
|
2005-12-13 09:29:02 +01:00
|
|
|
static Channel *
|
2017-09-12 08:32:07 +02:00
|
|
|
server_request_tun(struct ssh *ssh)
|
2005-12-13 09:29:02 +01:00
|
|
|
{
|
|
|
|
Channel *c = NULL;
|
2019-01-19 22:40:48 +01:00
|
|
|
u_int mode, tun;
|
|
|
|
int r, sock;
|
2017-10-23 07:08:00 +02:00
|
|
|
char *tmp, *ifname = NULL;
|
2005-12-13 09:29:02 +01:00
|
|
|
|
2019-01-19 22:40:48 +01:00
|
|
|
if ((r = sshpkt_get_u32(ssh, &mode)) != 0)
|
|
|
|
sshpkt_fatal(ssh, r, "%s: parse mode", __func__);
|
2005-12-13 09:33:19 +01:00
|
|
|
switch (mode) {
|
|
|
|
case SSH_TUNMODE_POINTOPOINT:
|
|
|
|
case SSH_TUNMODE_ETHERNET:
|
|
|
|
break;
|
|
|
|
default:
|
2019-01-19 22:40:48 +01:00
|
|
|
ssh_packet_send_debug(ssh, "Unsupported tunnel device mode.");
|
2005-12-13 09:33:19 +01:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
if ((options.permit_tun & mode) == 0) {
|
2019-01-19 22:40:48 +01:00
|
|
|
ssh_packet_send_debug(ssh, "Server has rejected tunnel device "
|
2005-12-13 09:33:19 +01:00
|
|
|
"forwarding");
|
2005-12-13 09:29:02 +01:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2019-01-19 22:40:48 +01:00
|
|
|
if ((r = sshpkt_get_u32(ssh, &tun)) != 0)
|
|
|
|
sshpkt_fatal(ssh, r, "%s: parse device", __func__);
|
|
|
|
if (tun > INT_MAX) {
|
|
|
|
debug("%s: invalid tun", __func__);
|
|
|
|
goto done;
|
|
|
|
}
|
2018-03-03 04:15:51 +01:00
|
|
|
if (auth_opts->force_tun_device != -1) {
|
2019-01-19 22:40:48 +01:00
|
|
|
if (tun != SSH_TUNID_ANY &&
|
|
|
|
auth_opts->force_tun_device != (int)tun)
|
2005-12-13 09:29:02 +01:00
|
|
|
goto done;
|
2018-03-03 04:15:51 +01:00
|
|
|
tun = auth_opts->force_tun_device;
|
2005-12-13 09:29:02 +01:00
|
|
|
}
|
2017-10-23 07:08:00 +02:00
|
|
|
sock = tun_open(tun, mode, &ifname);
|
2005-12-13 09:29:02 +01:00
|
|
|
if (sock < 0)
|
|
|
|
goto done;
|
2017-10-23 07:08:00 +02:00
|
|
|
debug("Tunnel forwarding using interface %s", ifname);
|
2018-02-12 23:07:29 +01:00
|
|
|
|
2017-09-12 08:32:07 +02:00
|
|
|
c = channel_new(ssh, "tun", SSH_CHANNEL_OPEN, sock, sock, -1,
|
2005-12-13 09:29:02 +01:00
|
|
|
CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT, 0, "tun", 1);
|
|
|
|
c->datagram = 1;
|
2005-12-31 06:33:36 +01:00
|
|
|
#if defined(SSH_TUN_FILTER)
|
|
|
|
if (mode == SSH_TUNMODE_POINTOPOINT)
|
2017-09-12 10:01:35 +02:00
|
|
|
channel_register_filter(ssh, c->self, sys_tun_infilter,
|
2008-06-12 21:09:18 +02:00
|
|
|
sys_tun_outfilter, NULL, NULL);
|
2005-12-31 06:33:36 +01:00
|
|
|
#endif
|
2005-12-13 09:29:02 +01:00
|
|
|
|
2017-10-23 07:08:00 +02:00
|
|
|
/*
|
|
|
|
* Update the list of names exposed to the session
|
|
|
|
* XXX remove these if the tunnels are closed (won't matter
|
|
|
|
* much if they are already in the environment though)
|
|
|
|
*/
|
|
|
|
tmp = tun_fwd_ifnames;
|
|
|
|
xasprintf(&tun_fwd_ifnames, "%s%s%s",
|
|
|
|
tun_fwd_ifnames == NULL ? "" : tun_fwd_ifnames,
|
|
|
|
tun_fwd_ifnames == NULL ? "" : ",",
|
|
|
|
ifname);
|
|
|
|
free(tmp);
|
|
|
|
free(ifname);
|
|
|
|
|
2005-12-13 09:29:02 +01:00
|
|
|
done:
|
|
|
|
if (c == NULL)
|
2019-01-19 22:40:48 +01:00
|
|
|
ssh_packet_send_debug(ssh, "Failed to open the tunnel device.");
|
2005-12-13 09:29:02 +01:00
|
|
|
return c;
|
|
|
|
}
|
|
|
|
|
2001-06-25 07:01:22 +02:00
|
|
|
static Channel *
|
2017-09-12 08:32:07 +02:00
|
|
|
server_request_session(struct ssh *ssh)
|
2000-11-13 12:57:25 +01:00
|
|
|
{
|
2001-05-05 06:09:47 +02:00
|
|
|
Channel *c;
|
2019-01-19 22:40:48 +01:00
|
|
|
int r;
|
2000-11-13 12:57:25 +01:00
|
|
|
|
|
|
|
debug("input_session_request");
|
2019-01-19 22:40:48 +01:00
|
|
|
if ((r = sshpkt_get_end(ssh)) != 0)
|
|
|
|
sshpkt_fatal(ssh, r, "%s: parse packet", __func__);
|
2008-06-11 01:34:01 +02:00
|
|
|
|
|
|
|
if (no_more_sessions) {
|
2019-01-19 23:30:52 +01:00
|
|
|
ssh_packet_disconnect(ssh, "Possible attack: attempt to open a "
|
2019-01-19 22:40:48 +01:00
|
|
|
"session after additional sessions disabled");
|
2008-06-11 01:34:01 +02:00
|
|
|
}
|
|
|
|
|
2000-11-13 12:57:25 +01:00
|
|
|
/*
|
|
|
|
* A server session has no fd to read or write until a
|
|
|
|
* CHANNEL_REQUEST for a shell is made, so we set the type to
|
|
|
|
* SSH_CHANNEL_LARVAL. Additionally, a callback for handling all
|
|
|
|
* CHANNEL_REQUEST messages is registered.
|
|
|
|
*/
|
2017-09-12 08:32:07 +02:00
|
|
|
c = channel_new(ssh, "session", SSH_CHANNEL_LARVAL,
|
2001-05-05 06:09:47 +02:00
|
|
|
-1, -1, -1, /*window size*/0, CHAN_SES_PACKET_DEFAULT,
|
2003-05-14 05:45:42 +02:00
|
|
|
0, "server-session", 1);
|
2003-10-02 08:12:36 +02:00
|
|
|
if (session_open(the_authctxt, c->self) != 1) {
|
2001-05-05 06:09:47 +02:00
|
|
|
debug("session open failed, free channel %d", c->self);
|
2017-09-12 08:32:07 +02:00
|
|
|
channel_free(ssh, c);
|
2001-05-05 06:09:47 +02:00
|
|
|
return NULL;
|
2000-11-13 12:57:25 +01:00
|
|
|
}
|
2017-09-12 08:32:07 +02:00
|
|
|
channel_register_cleanup(ssh, c->self, session_close_by_channel, 0);
|
2001-05-05 06:09:47 +02:00
|
|
|
return c;
|
2000-04-12 10:45:05 +02:00
|
|
|
}
|
|
|
|
|
2015-01-19 21:07:45 +01:00
|
|
|
static int
|
2017-05-30 16:23:52 +02:00
|
|
|
server_input_channel_open(int type, u_int32_t seq, struct ssh *ssh)
|
2000-04-12 10:45:05 +02:00
|
|
|
{
|
|
|
|
Channel *c = NULL;
|
2019-01-19 22:40:48 +01:00
|
|
|
char *ctype = NULL;
|
2017-02-01 03:59:09 +01:00
|
|
|
const char *errmsg = NULL;
|
2019-01-19 22:40:48 +01:00
|
|
|
int r, reason = SSH2_OPEN_CONNECT_FAILED;
|
2019-11-27 06:38:43 +01:00
|
|
|
u_int rchan = 0, rmaxpack = 0, rwindow = 0;
|
2019-01-19 22:40:48 +01:00
|
|
|
|
|
|
|
if ((r = sshpkt_get_cstring(ssh, &ctype, NULL)) != 0 ||
|
|
|
|
(r = sshpkt_get_u32(ssh, &rchan)) != 0 ||
|
|
|
|
(r = sshpkt_get_u32(ssh, &rwindow)) != 0 ||
|
|
|
|
(r = sshpkt_get_u32(ssh, &rmaxpack)) != 0)
|
|
|
|
sshpkt_fatal(ssh, r, "%s: parse packet", __func__);
|
|
|
|
debug("%s: ctype %s rchan %u win %u max %u", __func__,
|
2019-11-27 06:38:43 +01:00
|
|
|
ctype, rchan, rwindow, rmaxpack);
|
2000-04-12 10:45:05 +02:00
|
|
|
|
2019-11-27 06:38:43 +01:00
|
|
|
if (rchan > INT_MAX) {
|
|
|
|
error("%s: invalid remote channel ID", __func__);
|
|
|
|
} else if (strcmp(ctype, "session") == 0) {
|
2017-09-12 08:32:07 +02:00
|
|
|
c = server_request_session(ssh);
|
2000-04-12 10:45:05 +02:00
|
|
|
} else if (strcmp(ctype, "direct-tcpip") == 0) {
|
2017-09-12 08:32:07 +02:00
|
|
|
c = server_request_direct_tcpip(ssh, &reason, &errmsg);
|
2014-07-18 06:11:24 +02:00
|
|
|
} else if (strcmp(ctype, "direct-streamlocal@openssh.com") == 0) {
|
2017-09-12 08:32:07 +02:00
|
|
|
c = server_request_direct_streamlocal(ssh);
|
2005-12-13 09:29:02 +01:00
|
|
|
} else if (strcmp(ctype, "tun@openssh.com") == 0) {
|
2017-09-12 08:32:07 +02:00
|
|
|
c = server_request_tun(ssh);
|
2000-04-12 10:45:05 +02:00
|
|
|
}
|
|
|
|
if (c != NULL) {
|
2018-06-08 03:55:40 +02:00
|
|
|
debug("%s: confirm %s", __func__, ctype);
|
2019-11-27 06:38:43 +01:00
|
|
|
c->remote_id = (int)rchan;
|
2017-09-12 08:35:31 +02:00
|
|
|
c->have_remote_id = 1;
|
2000-04-12 10:45:05 +02:00
|
|
|
c->remote_window = rwindow;
|
|
|
|
c->remote_maxpacket = rmaxpack;
|
2001-05-08 22:07:39 +02:00
|
|
|
if (c->type != SSH_CHANNEL_CONNECTING) {
|
2019-01-19 22:40:48 +01:00
|
|
|
if ((r = sshpkt_start(ssh, SSH2_MSG_CHANNEL_OPEN_CONFIRMATION)) != 0 ||
|
|
|
|
(r = sshpkt_put_u32(ssh, c->remote_id)) != 0 ||
|
|
|
|
(r = sshpkt_put_u32(ssh, c->self)) != 0 ||
|
|
|
|
(r = sshpkt_put_u32(ssh, c->local_window)) != 0 ||
|
|
|
|
(r = sshpkt_put_u32(ssh, c->local_maxpacket)) != 0 ||
|
|
|
|
(r = sshpkt_send(ssh)) != 0) {
|
|
|
|
sshpkt_fatal(ssh, r,
|
|
|
|
"%s: send open confirm", __func__);
|
|
|
|
}
|
2001-05-08 22:07:39 +02:00
|
|
|
}
|
2000-04-12 10:45:05 +02:00
|
|
|
} else {
|
2018-06-08 03:55:40 +02:00
|
|
|
debug("%s: failure %s", __func__, ctype);
|
2019-01-19 22:40:48 +01:00
|
|
|
if ((r = sshpkt_start(ssh, SSH2_MSG_CHANNEL_OPEN_FAILURE)) != 0 ||
|
|
|
|
(r = sshpkt_put_u32(ssh, rchan)) != 0 ||
|
|
|
|
(r = sshpkt_put_u32(ssh, reason)) != 0 ||
|
|
|
|
(r = sshpkt_put_cstring(ssh, errmsg ? errmsg : "open failed")) != 0 ||
|
|
|
|
(r = sshpkt_put_cstring(ssh, "")) != 0 ||
|
|
|
|
(r = sshpkt_send(ssh)) != 0) {
|
|
|
|
sshpkt_fatal(ssh, r,
|
|
|
|
"%s: send open failure", __func__);
|
|
|
|
}
|
2000-04-12 10:45:05 +02:00
|
|
|
}
|
2013-06-01 23:31:17 +02:00
|
|
|
free(ctype);
|
2015-01-19 21:07:45 +01:00
|
|
|
return 0;
|
2000-04-12 10:45:05 +02:00
|
|
|
}
|
|
|
|
|
2015-02-16 23:13:32 +01:00
|
|
|
static int
|
2017-09-12 08:32:07 +02:00
|
|
|
server_input_hostkeys_prove(struct ssh *ssh, struct sshbuf **respp)
|
2015-02-16 23:13:32 +01:00
|
|
|
{
|
|
|
|
struct sshbuf *resp = NULL;
|
|
|
|
struct sshbuf *sigbuf = NULL;
|
|
|
|
struct sshkey *key = NULL, *key_pub = NULL, *key_prv = NULL;
|
2017-12-19 00:16:23 +01:00
|
|
|
int r, ndx, kexsigtype, use_kexsigtype, success = 0;
|
2015-02-16 23:13:32 +01:00
|
|
|
const u_char *blob;
|
|
|
|
u_char *sig = 0;
|
|
|
|
size_t blen, slen;
|
|
|
|
|
|
|
|
if ((resp = sshbuf_new()) == NULL || (sigbuf = sshbuf_new()) == NULL)
|
|
|
|
fatal("%s: sshbuf_new", __func__);
|
|
|
|
|
2017-12-19 00:16:23 +01:00
|
|
|
kexsigtype = sshkey_type_plain(
|
|
|
|
sshkey_type_from_name(ssh->kex->hostkey_alg));
|
2015-02-16 23:13:32 +01:00
|
|
|
while (ssh_packet_remaining(ssh) > 0) {
|
|
|
|
sshkey_free(key);
|
|
|
|
key = NULL;
|
|
|
|
if ((r = sshpkt_get_string_direct(ssh, &blob, &blen)) != 0 ||
|
|
|
|
(r = sshkey_from_blob(blob, blen, &key)) != 0) {
|
|
|
|
error("%s: couldn't parse key: %s",
|
|
|
|
__func__, ssh_err(r));
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
* Better check that this is actually one of our hostkeys
|
|
|
|
* before attempting to sign anything with it.
|
|
|
|
*/
|
|
|
|
if ((ndx = ssh->kex->host_key_index(key, 1, ssh)) == -1) {
|
|
|
|
error("%s: unknown host %s key",
|
|
|
|
__func__, sshkey_type(key));
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
* XXX refactor: make kex->sign just use an index rather
|
|
|
|
* than passing in public and private keys
|
|
|
|
*/
|
|
|
|
if ((key_prv = get_hostkey_by_index(ndx)) == NULL &&
|
|
|
|
(key_pub = get_hostkey_public_by_index(ndx, ssh)) == NULL) {
|
|
|
|
error("%s: can't retrieve hostkey %d", __func__, ndx);
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
sshbuf_reset(sigbuf);
|
|
|
|
free(sig);
|
|
|
|
sig = NULL;
|
2017-12-19 00:16:23 +01:00
|
|
|
/*
|
|
|
|
* For RSA keys, prefer to use the signature type negotiated
|
|
|
|
* during KEX to the default (SHA1).
|
|
|
|
*/
|
|
|
|
use_kexsigtype = kexsigtype == KEY_RSA &&
|
|
|
|
sshkey_type_plain(key->type) == KEY_RSA;
|
2015-02-20 23:17:21 +01:00
|
|
|
if ((r = sshbuf_put_cstring(sigbuf,
|
|
|
|
"hostkeys-prove-00@openssh.com")) != 0 ||
|
|
|
|
(r = sshbuf_put_string(sigbuf,
|
2015-02-16 23:13:32 +01:00
|
|
|
ssh->kex->session_id, ssh->kex->session_id_len)) != 0 ||
|
|
|
|
(r = sshkey_puts(key, sigbuf)) != 0 ||
|
2019-01-19 22:43:56 +01:00
|
|
|
(r = ssh->kex->sign(ssh, key_prv, key_pub, &sig, &slen,
|
2017-12-18 03:25:15 +01:00
|
|
|
sshbuf_ptr(sigbuf), sshbuf_len(sigbuf),
|
2019-01-19 22:43:56 +01:00
|
|
|
use_kexsigtype ? ssh->kex->hostkey_alg : NULL)) != 0 ||
|
2015-02-16 23:13:32 +01:00
|
|
|
(r = sshbuf_put_string(resp, sig, slen)) != 0) {
|
|
|
|
error("%s: couldn't prepare signature: %s",
|
|
|
|
__func__, ssh_err(r));
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* Success */
|
|
|
|
*respp = resp;
|
|
|
|
resp = NULL; /* don't free it */
|
|
|
|
success = 1;
|
|
|
|
out:
|
|
|
|
free(sig);
|
|
|
|
sshbuf_free(resp);
|
|
|
|
sshbuf_free(sigbuf);
|
|
|
|
sshkey_free(key);
|
|
|
|
return success;
|
|
|
|
}
|
|
|
|
|
2015-01-19 21:07:45 +01:00
|
|
|
static int
|
2017-05-30 16:23:52 +02:00
|
|
|
server_input_global_request(int type, u_int32_t seq, struct ssh *ssh)
|
2000-11-13 12:57:25 +01:00
|
|
|
{
|
2019-01-19 22:40:48 +01:00
|
|
|
char *rtype = NULL;
|
|
|
|
u_char want_reply = 0;
|
2015-02-16 23:13:32 +01:00
|
|
|
int r, success = 0, allocated_listen_port = 0;
|
2019-01-19 22:40:48 +01:00
|
|
|
u_int port = 0;
|
2015-02-16 23:13:32 +01:00
|
|
|
struct sshbuf *resp = NULL;
|
2017-01-04 06:37:40 +01:00
|
|
|
struct passwd *pw = the_authctxt->pw;
|
2019-01-19 22:40:48 +01:00
|
|
|
struct Forward fwd;
|
2017-01-04 06:37:40 +01:00
|
|
|
|
2019-01-19 22:40:48 +01:00
|
|
|
memset(&fwd, 0, sizeof(fwd));
|
2017-01-04 06:37:40 +01:00
|
|
|
if (pw == NULL || !the_authctxt->valid)
|
2018-06-08 03:55:40 +02:00
|
|
|
fatal("%s: no/invalid user", __func__);
|
2000-11-13 12:57:25 +01:00
|
|
|
|
2019-01-19 22:40:48 +01:00
|
|
|
if ((r = sshpkt_get_cstring(ssh, &rtype, NULL)) != 0 ||
|
|
|
|
(r = sshpkt_get_u8(ssh, &want_reply)) != 0)
|
|
|
|
sshpkt_fatal(ssh, r, "%s: parse packet", __func__);
|
2018-06-08 03:55:40 +02:00
|
|
|
debug("%s: rtype %s want_reply %d", __func__, rtype, want_reply);
|
2001-02-05 13:42:17 +01:00
|
|
|
|
2001-03-17 01:47:54 +01:00
|
|
|
/* -R style forwarding */
|
2000-11-13 12:57:25 +01:00
|
|
|
if (strcmp(rtype, "tcpip-forward") == 0) {
|
2019-01-19 22:40:48 +01:00
|
|
|
if ((r = sshpkt_get_cstring(ssh, &fwd.listen_host, NULL)) != 0 ||
|
|
|
|
(r = sshpkt_get_u32(ssh, &port)) != 0)
|
|
|
|
sshpkt_fatal(ssh, r, "%s: parse tcpip-forward", __func__);
|
|
|
|
debug("%s: tcpip-forward listen %s port %u", __func__,
|
|
|
|
fwd.listen_host, port);
|
|
|
|
if (port <= INT_MAX)
|
|
|
|
fwd.listen_port = (int)port;
|
2000-11-13 12:57:25 +01:00
|
|
|
/* check permissions */
|
2019-01-19 22:40:48 +01:00
|
|
|
if (port > INT_MAX ||
|
|
|
|
(options.allow_tcp_forwarding & FORWARD_REMOTE) == 0 ||
|
2018-03-03 04:15:51 +01:00
|
|
|
!auth_opts->permit_port_forwarding_flag ||
|
|
|
|
options.disable_forwarding ||
|
2016-04-08 13:14:13 +02:00
|
|
|
(!want_reply && fwd.listen_port == 0) ||
|
2016-10-24 00:04:05 +02:00
|
|
|
(fwd.listen_port != 0 &&
|
|
|
|
!bind_permitted(fwd.listen_port, pw->pw_uid))) {
|
2000-11-13 12:57:25 +01:00
|
|
|
success = 0;
|
2019-01-19 22:40:48 +01:00
|
|
|
ssh_packet_send_debug(ssh, "Server has disabled port forwarding.");
|
2000-11-13 12:57:25 +01:00
|
|
|
} else {
|
|
|
|
/* Start listening on the port */
|
2017-09-12 08:32:07 +02:00
|
|
|
success = channel_setup_remote_fwd_listener(ssh, &fwd,
|
2014-07-18 06:11:24 +02:00
|
|
|
&allocated_listen_port, &options.fwd_opts);
|
2000-11-13 12:57:25 +01:00
|
|
|
}
|
2015-02-16 23:13:32 +01:00
|
|
|
if ((resp = sshbuf_new()) == NULL)
|
|
|
|
fatal("%s: sshbuf_new", __func__);
|
2015-11-28 07:41:03 +01:00
|
|
|
if (allocated_listen_port != 0 &&
|
|
|
|
(r = sshbuf_put_u32(resp, allocated_listen_port)) != 0)
|
2015-02-16 23:13:32 +01:00
|
|
|
fatal("%s: sshbuf_put_u32: %s", __func__, ssh_err(r));
|
2004-05-24 02:18:05 +02:00
|
|
|
} else if (strcmp(rtype, "cancel-tcpip-forward") == 0) {
|
2019-01-19 22:40:48 +01:00
|
|
|
if ((r = sshpkt_get_cstring(ssh, &fwd.listen_host, NULL)) != 0 ||
|
|
|
|
(r = sshpkt_get_u32(ssh, &port)) != 0)
|
|
|
|
sshpkt_fatal(ssh, r, "%s: parse cancel-tcpip-forward", __func__);
|
2004-05-24 02:18:05 +02:00
|
|
|
|
|
|
|
debug("%s: cancel-tcpip-forward addr %s port %d", __func__,
|
2019-01-19 22:40:48 +01:00
|
|
|
fwd.listen_host, port);
|
|
|
|
if (port <= INT_MAX) {
|
|
|
|
fwd.listen_port = (int)port;
|
|
|
|
success = channel_cancel_rport_listener(ssh, &fwd);
|
|
|
|
}
|
2014-07-18 06:11:24 +02:00
|
|
|
} else if (strcmp(rtype, "streamlocal-forward@openssh.com") == 0) {
|
2019-01-19 22:40:48 +01:00
|
|
|
if ((r = sshpkt_get_cstring(ssh, &fwd.listen_path, NULL)) != 0)
|
|
|
|
sshpkt_fatal(ssh, r, "%s: parse streamlocal-forward@openssh.com", __func__);
|
2018-06-08 03:55:40 +02:00
|
|
|
debug("%s: streamlocal-forward listen path %s", __func__,
|
2014-07-18 06:11:24 +02:00
|
|
|
fwd.listen_path);
|
|
|
|
|
|
|
|
/* check permissions */
|
|
|
|
if ((options.allow_streamlocal_forwarding & FORWARD_REMOTE) == 0
|
2018-03-03 04:15:51 +01:00
|
|
|
|| !auth_opts->permit_port_forwarding_flag ||
|
|
|
|
options.disable_forwarding ||
|
2017-01-04 06:37:40 +01:00
|
|
|
(pw->pw_uid != 0 && !use_privsep)) {
|
2014-07-18 06:11:24 +02:00
|
|
|
success = 0;
|
2019-01-19 22:40:48 +01:00
|
|
|
ssh_packet_send_debug(ssh, "Server has disabled "
|
2017-01-04 06:37:40 +01:00
|
|
|
"streamlocal forwarding.");
|
2014-07-18 06:11:24 +02:00
|
|
|
} else {
|
|
|
|
/* Start listening on the socket */
|
2017-09-12 08:32:07 +02:00
|
|
|
success = channel_setup_remote_fwd_listener(ssh,
|
2014-07-18 06:11:24 +02:00
|
|
|
&fwd, NULL, &options.fwd_opts);
|
|
|
|
}
|
|
|
|
} else if (strcmp(rtype, "cancel-streamlocal-forward@openssh.com") == 0) {
|
2019-01-19 22:40:48 +01:00
|
|
|
if ((r = sshpkt_get_cstring(ssh, &fwd.listen_path, NULL)) != 0)
|
|
|
|
sshpkt_fatal(ssh, r, "%s: parse cancel-streamlocal-forward@openssh.com", __func__);
|
2014-07-18 06:11:24 +02:00
|
|
|
debug("%s: cancel-streamlocal-forward path %s", __func__,
|
|
|
|
fwd.listen_path);
|
2004-05-24 02:18:05 +02:00
|
|
|
|
2017-09-12 08:32:07 +02:00
|
|
|
success = channel_cancel_rport_listener(ssh, &fwd);
|
2008-06-11 01:34:01 +02:00
|
|
|
} else if (strcmp(rtype, "no-more-sessions@openssh.com") == 0) {
|
|
|
|
no_more_sessions = 1;
|
|
|
|
success = 1;
|
2015-02-20 23:17:21 +01:00
|
|
|
} else if (strcmp(rtype, "hostkeys-prove-00@openssh.com") == 0) {
|
2017-09-12 08:32:07 +02:00
|
|
|
success = server_input_hostkeys_prove(ssh, &resp);
|
2000-11-13 12:57:25 +01:00
|
|
|
}
|
2019-01-19 22:40:48 +01:00
|
|
|
/* XXX sshpkt_get_end() */
|
2000-11-13 12:57:25 +01:00
|
|
|
if (want_reply) {
|
2019-01-19 22:40:48 +01:00
|
|
|
if ((r = sshpkt_start(ssh, success ?
|
|
|
|
SSH2_MSG_REQUEST_SUCCESS : SSH2_MSG_REQUEST_FAILURE)) != 0 ||
|
|
|
|
(success && resp != NULL && (r = sshpkt_putb(ssh, resp)) != 0) ||
|
|
|
|
(r = sshpkt_send(ssh)) != 0 ||
|
|
|
|
(r = ssh_packet_write_wait(ssh)) != 0)
|
|
|
|
sshpkt_fatal(ssh, r, "%s: send reply", __func__);
|
2000-11-13 12:57:25 +01:00
|
|
|
}
|
2019-01-19 22:40:48 +01:00
|
|
|
free(fwd.listen_host);
|
|
|
|
free(fwd.listen_path);
|
2013-06-01 23:31:17 +02:00
|
|
|
free(rtype);
|
2015-02-16 23:13:32 +01:00
|
|
|
sshbuf_free(resp);
|
2015-01-19 21:07:45 +01:00
|
|
|
return 0;
|
2000-11-13 12:57:25 +01:00
|
|
|
}
|
2006-03-26 05:10:14 +02:00
|
|
|
|
2015-01-19 21:07:45 +01:00
|
|
|
static int
|
2017-05-30 16:23:52 +02:00
|
|
|
server_input_channel_req(int type, u_int32_t seq, struct ssh *ssh)
|
2002-02-05 02:21:42 +01:00
|
|
|
{
|
|
|
|
Channel *c;
|
2019-01-19 22:40:48 +01:00
|
|
|
int r, success = 0;
|
|
|
|
char *rtype = NULL;
|
|
|
|
u_char want_reply = 0;
|
|
|
|
u_int id = 0;
|
2002-02-05 02:21:42 +01:00
|
|
|
|
2019-01-19 22:40:48 +01:00
|
|
|
if ((r = sshpkt_get_u32(ssh, &id)) != 0 ||
|
|
|
|
(r = sshpkt_get_cstring(ssh, &rtype, NULL)) != 0 ||
|
|
|
|
(r = sshpkt_get_u8(ssh, &want_reply)) != 0)
|
|
|
|
sshpkt_fatal(ssh, r, "%s: parse packet", __func__);
|
2002-02-05 02:21:42 +01:00
|
|
|
|
2019-01-19 22:40:48 +01:00
|
|
|
debug("server_input_channel_req: channel %u request %s reply %d",
|
|
|
|
id, rtype, want_reply);
|
2002-02-05 02:21:42 +01:00
|
|
|
|
2019-01-19 23:30:52 +01:00
|
|
|
if (id >= INT_MAX || (c = channel_lookup(ssh, (int)id)) == NULL) {
|
|
|
|
ssh_packet_disconnect(ssh, "%s: unknown channel %d",
|
|
|
|
__func__, id);
|
|
|
|
}
|
2008-05-19 08:06:47 +02:00
|
|
|
if (!strcmp(rtype, "eow@openssh.com")) {
|
2019-01-19 22:40:48 +01:00
|
|
|
if ((r = sshpkt_get_end(ssh)) != 0)
|
|
|
|
sshpkt_fatal(ssh, r, "%s: parse packet", __func__);
|
2017-09-12 08:32:07 +02:00
|
|
|
chan_rcvd_eow(ssh, c);
|
2008-07-02 14:32:14 +02:00
|
|
|
} else if ((c->type == SSH_CHANNEL_LARVAL ||
|
|
|
|
c->type == SSH_CHANNEL_OPEN) && strcmp(c->ctype, "session") == 0)
|
2017-09-12 08:32:07 +02:00
|
|
|
success = session_input_channel_req(ssh, c, rtype);
|
2019-01-19 22:40:48 +01:00
|
|
|
if (want_reply && !(c->flags & CHAN_CLOSE_SENT)) {
|
2017-09-12 08:35:31 +02:00
|
|
|
if (!c->have_remote_id)
|
|
|
|
fatal("%s: channel %d: no remote_id",
|
|
|
|
__func__, c->self);
|
2019-01-19 22:40:48 +01:00
|
|
|
if ((r = sshpkt_start(ssh, success ?
|
|
|
|
SSH2_MSG_CHANNEL_SUCCESS : SSH2_MSG_CHANNEL_FAILURE)) != 0 ||
|
|
|
|
(r = sshpkt_put_u32(ssh, c->remote_id)) != 0 ||
|
|
|
|
(r = sshpkt_send(ssh)) != 0)
|
|
|
|
sshpkt_fatal(ssh, r, "%s: send reply", __func__);
|
2002-02-05 02:21:42 +01:00
|
|
|
}
|
2013-06-01 23:31:17 +02:00
|
|
|
free(rtype);
|
2015-01-19 21:07:45 +01:00
|
|
|
return 0;
|
2002-02-05 02:21:42 +01:00
|
|
|
}
|
2000-11-13 12:57:25 +01:00
|
|
|
|
2001-06-25 07:01:22 +02:00
|
|
|
static void
|
2019-01-19 22:40:48 +01:00
|
|
|
server_init_dispatch(struct ssh *ssh)
|
2000-04-12 10:45:05 +02:00
|
|
|
{
|
2016-08-13 19:47:40 +02:00
|
|
|
debug("server_init_dispatch");
|
2019-01-19 22:40:48 +01:00
|
|
|
ssh_dispatch_init(ssh, &dispatch_protocol_error);
|
|
|
|
ssh_dispatch_set(ssh, SSH2_MSG_CHANNEL_CLOSE, &channel_input_oclose);
|
|
|
|
ssh_dispatch_set(ssh, SSH2_MSG_CHANNEL_DATA, &channel_input_data);
|
|
|
|
ssh_dispatch_set(ssh, SSH2_MSG_CHANNEL_EOF, &channel_input_ieof);
|
|
|
|
ssh_dispatch_set(ssh, SSH2_MSG_CHANNEL_EXTENDED_DATA, &channel_input_extended_data);
|
|
|
|
ssh_dispatch_set(ssh, SSH2_MSG_CHANNEL_OPEN, &server_input_channel_open);
|
|
|
|
ssh_dispatch_set(ssh, SSH2_MSG_CHANNEL_OPEN_CONFIRMATION, &channel_input_open_confirmation);
|
|
|
|
ssh_dispatch_set(ssh, SSH2_MSG_CHANNEL_OPEN_FAILURE, &channel_input_open_failure);
|
|
|
|
ssh_dispatch_set(ssh, SSH2_MSG_CHANNEL_REQUEST, &server_input_channel_req);
|
|
|
|
ssh_dispatch_set(ssh, SSH2_MSG_CHANNEL_WINDOW_ADJUST, &channel_input_window_adjust);
|
|
|
|
ssh_dispatch_set(ssh, SSH2_MSG_GLOBAL_REQUEST, &server_input_global_request);
|
2001-04-14 01:28:01 +02:00
|
|
|
/* client_alive */
|
2019-01-19 22:40:48 +01:00
|
|
|
ssh_dispatch_set(ssh, SSH2_MSG_CHANNEL_SUCCESS, &server_input_keep_alive);
|
|
|
|
ssh_dispatch_set(ssh, SSH2_MSG_CHANNEL_FAILURE, &server_input_keep_alive);
|
|
|
|
ssh_dispatch_set(ssh, SSH2_MSG_REQUEST_SUCCESS, &server_input_keep_alive);
|
|
|
|
ssh_dispatch_set(ssh, SSH2_MSG_REQUEST_FAILURE, &server_input_keep_alive);
|
2001-04-04 19:57:54 +02:00
|
|
|
/* rekeying */
|
2019-01-19 22:40:48 +01:00
|
|
|
ssh_dispatch_set(ssh, SSH2_MSG_KEXINIT, &kex_input_kexinit);
|
2000-04-12 10:45:05 +02:00
|
|
|
}
|