blob: 9e87bfb9ed776e44742b6bba029330172c479826 [file] [log] [blame]
Damien Millerce986542013-07-18 16:12:44 +10001/* $OpenBSD: channels.c,v 1.324 2013/07/12 00:19:58 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>
Damien Miller95def091999-11-25 00:26:21 +11004 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
5 * All rights reserved
Damien Miller95def091999-11-25 00:26:21 +11006 * This file contains functions for generic socket connection forwarding.
7 * There is also code for initiating connection forwarding for X11 connections,
8 * arbitrary tcp/ip connections, and the authentication agent connection.
Damien Miller4af51302000-04-16 11:18:38 +10009 *
Damien Millere4340be2000-09-16 13:29:08 +110010 * As far as I am concerned, the code I have written for this software
11 * can be used freely for any purpose. Any derived versions of this
12 * software must be clearly marked as such, and if the derived work is
13 * incompatible with the protocol description in the RFC file, it must be
14 * called by a name other than "ssh" or "Secure Shell".
15 *
Damien Miller33b13562000-04-04 14:38:59 +100016 * SSH2 support added by Markus Friedl.
Damien Millera90fc082002-01-22 23:19:38 +110017 * Copyright (c) 1999, 2000, 2001, 2002 Markus Friedl. All rights reserved.
Damien Millere4340be2000-09-16 13:29:08 +110018 * Copyright (c) 1999 Dug Song. All rights reserved.
19 * Copyright (c) 1999 Theo de Raadt. All rights reserved.
20 *
21 * Redistribution and use in source and binary forms, with or without
22 * modification, are permitted provided that the following conditions
23 * are met:
24 * 1. Redistributions of source code must retain the above copyright
25 * notice, this list of conditions and the following disclaimer.
26 * 2. Redistributions in binary form must reproduce the above copyright
27 * notice, this list of conditions and the following disclaimer in the
28 * documentation and/or other materials provided with the distribution.
29 *
30 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
31 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
32 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
33 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
34 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
35 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
36 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
37 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
38 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
39 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Damien Miller95def091999-11-25 00:26:21 +110040 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100041
42#include "includes.h"
Damien Miller17e91c02006-03-15 11:28:34 +110043
Damien Miller574c41f2006-03-15 11:40:10 +110044#include <sys/types.h>
Damien Millerd7834352006-08-05 12:39:39 +100045#include <sys/ioctl.h>
Damien Miller574c41f2006-03-15 11:40:10 +110046#include <sys/un.h>
Damien Millerefc04e72006-07-10 20:26:27 +100047#include <sys/socket.h>
Damien Miller9aec9192006-08-05 10:57:45 +100048#ifdef HAVE_SYS_TIME_H
49# include <sys/time.h>
50#endif
Damien Millerefc04e72006-07-10 20:26:27 +100051
52#include <netinet/in.h>
53#include <arpa/inet.h>
Damien Miller99bd21e2006-03-15 11:11:28 +110054
Darren Tucker39972492006-07-12 22:22:46 +100055#include <errno.h>
Darren Tucker6e7fe1c2010-01-08 17:07:22 +110056#include <fcntl.h>
Damien Millerb8fe89c2006-07-24 14:51:00 +100057#include <netdb.h>
Damien Millera7a73ee2006-08-05 11:37:59 +100058#include <stdio.h>
Damien Millere7a1e5c2006-08-05 11:34:19 +100059#include <stdlib.h>
Damien Millere3476ed2006-07-24 14:13:33 +100060#include <string.h>
Damien Miller99bd21e2006-03-15 11:11:28 +110061#include <termios.h>
Damien Millere6b3b612006-07-24 14:01:23 +100062#include <unistd.h>
Damien Millerd7834352006-08-05 12:39:39 +100063#include <stdarg.h>
Damien Millerd4a8b7e1999-10-27 13:42:43 +100064
Damien Millerb84886b2008-05-19 15:05:07 +100065#include "openbsd-compat/sys-queue.h"
Damien Millerd7834352006-08-05 12:39:39 +100066#include "xmalloc.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100067#include "ssh.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000068#include "ssh1.h"
69#include "ssh2.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100070#include "packet.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000071#include "log.h"
72#include "misc.h"
Damien Millerd7834352006-08-05 12:39:39 +100073#include "buffer.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100074#include "channels.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100075#include "compat.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000076#include "canohost.h"
Damien Miller994cf142000-07-21 10:19:44 +100077#include "key.h"
78#include "authfd.h"
Damien Miller3afe3752001-12-21 12:39:51 +110079#include "pathnames.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100080
Ben Lindstrome9c99912001-06-09 00:41:05 +000081/* -- channel core */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100082
Damien Miller5428f641999-11-25 11:54:57 +110083/*
84 * Pointer to an array containing all allocated channels. The array is
85 * dynamically extended as needed.
86 */
Ben Lindstrom99c73b32001-05-05 04:09:47 +000087static Channel **channels = NULL;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100088
Damien Miller5428f641999-11-25 11:54:57 +110089/*
90 * Size of the channel array. All slots of the array must always be
Ben Lindstrom99c73b32001-05-05 04:09:47 +000091 * initialized (at least the type field); unused slots set to NULL
Damien Miller5428f641999-11-25 11:54:57 +110092 */
Darren Tuckerc7a6fc42004-08-13 21:18:00 +100093static u_int channels_alloc = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100094
Damien Miller5428f641999-11-25 11:54:57 +110095/*
96 * Maximum file descriptor value used in any of the channels. This is
Ben Lindstrom99c73b32001-05-05 04:09:47 +000097 * updated in channel_new.
Damien Miller5428f641999-11-25 11:54:57 +110098 */
Damien Miller5e953212001-01-30 09:14:00 +110099static int channel_max_fd = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000100
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000101
Ben Lindstrome9c99912001-06-09 00:41:05 +0000102/* -- tcp forwarding */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000103
Damien Miller5428f641999-11-25 11:54:57 +1100104/*
105 * Data structure for storing which hosts are permitted for forward requests.
106 * The local sides of any remote forwards are stored in this array to prevent
107 * a corrupt remote server from accessing arbitrary TCP/IP ports on our local
108 * network (which might be behind a firewall).
109 */
Damien Miller95def091999-11-25 00:26:21 +1100110typedef struct {
Damien Millerb38eff82000-04-01 11:09:21 +1000111 char *host_to_connect; /* Connect to 'host'. */
112 u_short port_to_connect; /* Connect to 'port'. */
113 u_short listen_port; /* Remote side should listen port number. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000114} ForwardPermission;
115
Damien Miller9b439df2006-07-24 14:04:00 +1000116/* List of all permitted host/port pairs to connect by the user. */
Damien Miller232cfb12010-06-26 09:50:30 +1000117static ForwardPermission *permitted_opens = NULL;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000118
Damien Miller9b439df2006-07-24 14:04:00 +1000119/* List of all permitted host/port pairs to connect by the admin. */
Damien Miller232cfb12010-06-26 09:50:30 +1000120static ForwardPermission *permitted_adm_opens = NULL;
Damien Miller9b439df2006-07-24 14:04:00 +1000121
122/* Number of permitted host/port pairs in the array permitted by the user. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000123static int num_permitted_opens = 0;
Damien Miller9b439df2006-07-24 14:04:00 +1000124
125/* Number of permitted host/port pair in the array permitted by the admin. */
126static int num_adm_permitted_opens = 0;
127
Darren Tucker1338b9e2011-10-02 18:57:35 +1100128/* special-case port number meaning allow any port */
129#define FWD_PERMIT_ANY_PORT 0
130
Damien Miller5428f641999-11-25 11:54:57 +1100131/*
132 * If this is true, all opens are permitted. This is the case on the server
133 * on which we have to trust the client anyway, and the user could do
134 * anything after logging in anyway.
135 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000136static int all_opens_permitted = 0;
137
Ben Lindstrome9c99912001-06-09 00:41:05 +0000138
139/* -- X11 forwarding */
140
141/* Maximum number of fake X11 displays to try. */
142#define MAX_DISPLAYS 1000
143
Damien Miller13390022005-07-06 09:44:19 +1000144/* Saved X11 local (client) display. */
145static char *x11_saved_display = NULL;
146
Ben Lindstrome9c99912001-06-09 00:41:05 +0000147/* Saved X11 authentication protocol name. */
148static char *x11_saved_proto = NULL;
149
150/* Saved X11 authentication data. This is the real data. */
151static char *x11_saved_data = NULL;
152static u_int x11_saved_data_len = 0;
153
154/*
155 * Fake X11 authentication data. This is what the server will be sending us;
156 * we should replace any occurrences of this by the real data.
157 */
Damien Miller4ae97f12006-03-26 14:08:10 +1100158static u_char *x11_fake_data = NULL;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000159static u_int x11_fake_data_len;
160
161
162/* -- agent forwarding */
163
164#define NUM_SOCKS 10
165
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000166/* AF_UNSPEC or AF_INET or AF_INET6 */
Ben Lindstrom908afed2001-10-03 17:34:59 +0000167static int IPv4or6 = AF_UNSPEC;
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000168
Ben Lindstrome9c99912001-06-09 00:41:05 +0000169/* helper */
Ben Lindstrombba81212001-06-25 05:01:22 +0000170static void port_open_helper(Channel *c, char *rtype);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000171
Damien Millerbd740252008-05-19 15:37:09 +1000172/* non-blocking connect helpers */
173static int connect_next(struct channel_connect *);
174static void channel_connect_ctx_free(struct channel_connect *);
175
Ben Lindstrome9c99912001-06-09 00:41:05 +0000176/* -- channel core */
Damien Millerb38eff82000-04-01 11:09:21 +1000177
178Channel *
Damien Millerd47c62a2005-12-13 19:33:57 +1100179channel_by_id(int id)
Damien Millerb38eff82000-04-01 11:09:21 +1000180{
181 Channel *c;
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000182
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000183 if (id < 0 || (u_int)id >= channels_alloc) {
Damien Millerd47c62a2005-12-13 19:33:57 +1100184 logit("channel_by_id: %d: bad id", id);
Damien Millerb38eff82000-04-01 11:09:21 +1000185 return NULL;
186 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000187 c = channels[id];
188 if (c == NULL) {
Damien Millerd47c62a2005-12-13 19:33:57 +1100189 logit("channel_by_id: %d: bad id: channel free", id);
Damien Millerb38eff82000-04-01 11:09:21 +1000190 return NULL;
191 }
192 return c;
193}
194
Damien Miller5428f641999-11-25 11:54:57 +1100195/*
Damien Millerd47c62a2005-12-13 19:33:57 +1100196 * Returns the channel if it is allowed to receive protocol messages.
197 * Private channels, like listening sockets, may not receive messages.
198 */
199Channel *
200channel_lookup(int id)
201{
202 Channel *c;
203
204 if ((c = channel_by_id(id)) == NULL)
205 return (NULL);
206
Damien Millerd62f2ca2006-03-26 13:57:41 +1100207 switch (c->type) {
Damien Millerd47c62a2005-12-13 19:33:57 +1100208 case SSH_CHANNEL_X11_OPEN:
209 case SSH_CHANNEL_LARVAL:
210 case SSH_CHANNEL_CONNECTING:
211 case SSH_CHANNEL_DYNAMIC:
212 case SSH_CHANNEL_OPENING:
213 case SSH_CHANNEL_OPEN:
214 case SSH_CHANNEL_INPUT_DRAINING:
215 case SSH_CHANNEL_OUTPUT_DRAINING:
Damien Miller36187092013-06-10 13:07:11 +1000216 case SSH_CHANNEL_ABANDONED:
Damien Millerd47c62a2005-12-13 19:33:57 +1100217 return (c);
Damien Millerd47c62a2005-12-13 19:33:57 +1100218 }
219 logit("Non-public channel %d, type %d.", id, c->type);
220 return (NULL);
221}
222
223/*
Damien Millere247cc42000-05-07 12:03:14 +1000224 * Register filedescriptors for a channel, used when allocating a channel or
Damien Miller6f83b8e2000-05-02 09:23:45 +1000225 * when the channel consumer/producer is ready, e.g. shell exec'd
Damien Miller5428f641999-11-25 11:54:57 +1100226 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000227static void
Damien Miller69b69aa2000-10-28 14:19:58 +1100228channel_register_fds(Channel *c, int rfd, int wfd, int efd,
Darren Tuckered3cdc02008-06-16 23:29:18 +1000229 int extusage, int nonblock, int is_tty)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000230{
Damien Miller95def091999-11-25 00:26:21 +1100231 /* Update the maximum file descriptor value. */
Damien Miller5e953212001-01-30 09:14:00 +1100232 channel_max_fd = MAX(channel_max_fd, rfd);
233 channel_max_fd = MAX(channel_max_fd, wfd);
234 channel_max_fd = MAX(channel_max_fd, efd);
235
Darren Tucker6e7fe1c2010-01-08 17:07:22 +1100236 if (rfd != -1)
237 fcntl(rfd, F_SETFD, FD_CLOEXEC);
238 if (wfd != -1 && wfd != rfd)
239 fcntl(wfd, F_SETFD, FD_CLOEXEC);
240 if (efd != -1 && efd != rfd && efd != wfd)
241 fcntl(efd, F_SETFD, FD_CLOEXEC);
Damien Millere247cc42000-05-07 12:03:14 +1000242
Damien Miller6f83b8e2000-05-02 09:23:45 +1000243 c->rfd = rfd;
244 c->wfd = wfd;
245 c->sock = (rfd == wfd) ? rfd : -1;
246 c->efd = efd;
247 c->extended_usage = extusage;
Damien Miller69b69aa2000-10-28 14:19:58 +1100248
Darren Tuckered3cdc02008-06-16 23:29:18 +1000249 if ((c->isatty = is_tty) != 0)
Damien Millerfbdeece2003-09-02 22:52:31 +1000250 debug2("channel %d: rfd %d isatty", c->self, c->rfd);
Darren Tucker1a48aec2008-06-16 23:35:56 +1000251 c->wfd_isatty = is_tty || isatty(c->wfd);
Damien Miller79438cc2001-02-16 12:34:57 +1100252
Damien Miller69b69aa2000-10-28 14:19:58 +1100253 /* enable nonblocking mode */
254 if (nonblock) {
255 if (rfd != -1)
256 set_nonblock(rfd);
257 if (wfd != -1)
258 set_nonblock(wfd);
259 if (efd != -1)
260 set_nonblock(efd);
261 }
Damien Miller6f83b8e2000-05-02 09:23:45 +1000262}
263
264/*
265 * Allocate a new channel object and set its type and socket. This will cause
266 * remote_name to be freed.
267 */
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000268Channel *
Damien Miller6f83b8e2000-05-02 09:23:45 +1000269channel_new(char *ctype, int type, int rfd, int wfd, int efd,
Ben Lindstrom4fed2be2002-06-25 23:17:36 +0000270 u_int window, u_int maxpack, int extusage, char *remote_name, int nonblock)
Damien Miller6f83b8e2000-05-02 09:23:45 +1000271{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000272 int found;
273 u_int i;
Damien Miller6f83b8e2000-05-02 09:23:45 +1000274 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000275
Damien Miller95def091999-11-25 00:26:21 +1100276 /* Do initial allocation if this is the first call. */
277 if (channels_alloc == 0) {
278 channels_alloc = 10;
Damien Miller07d86be2006-03-26 14:19:21 +1100279 channels = xcalloc(channels_alloc, sizeof(Channel *));
Damien Miller95def091999-11-25 00:26:21 +1100280 for (i = 0; i < channels_alloc; i++)
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000281 channels[i] = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100282 }
283 /* Try to find a free slot where to put the new channel. */
284 for (found = -1, i = 0; i < channels_alloc; i++)
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000285 if (channels[i] == NULL) {
Damien Miller95def091999-11-25 00:26:21 +1100286 /* Found a free slot. */
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000287 found = (int)i;
Damien Miller95def091999-11-25 00:26:21 +1100288 break;
289 }
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000290 if (found < 0) {
Damien Miller5428f641999-11-25 11:54:57 +1100291 /* There are no free slots. Take last+1 slot and expand the array. */
Damien Miller95def091999-11-25 00:26:21 +1100292 found = channels_alloc;
Damien Miller9403aa22002-06-26 19:14:43 +1000293 if (channels_alloc > 10000)
294 fatal("channel_new: internal error: channels_alloc %d "
295 "too big.", channels_alloc);
Damien Miller36812092006-03-26 14:22:47 +1100296 channels = xrealloc(channels, channels_alloc + 10,
297 sizeof(Channel *));
Damien Miller5efcecc2003-09-17 07:31:14 +1000298 channels_alloc += 10;
Damien Millerd3444942000-09-30 14:20:03 +1100299 debug2("channel: expanding %d", channels_alloc);
Damien Miller95def091999-11-25 00:26:21 +1100300 for (i = found; i < channels_alloc; i++)
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000301 channels[i] = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100302 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000303 /* Initialize and return new channel. */
Damien Miller07d86be2006-03-26 14:19:21 +1100304 c = channels[found] = xcalloc(1, sizeof(Channel));
Damien Miller95def091999-11-25 00:26:21 +1100305 buffer_init(&c->input);
306 buffer_init(&c->output);
Damien Millerb38eff82000-04-01 11:09:21 +1000307 buffer_init(&c->extended);
Damien Millera1c1b6c2009-01-28 16:29:49 +1100308 c->path = NULL;
Damien Millerf6dff7c2011-09-22 21:38:52 +1000309 c->listening_addr = NULL;
310 c->listening_port = 0;
Damien Miller5144df92002-01-22 23:28:45 +1100311 c->ostate = CHAN_OUTPUT_OPEN;
312 c->istate = CHAN_INPUT_OPEN;
313 c->flags = 0;
Damien Millerd310d512008-06-16 07:59:23 +1000314 channel_register_fds(c, rfd, wfd, efd, extusage, nonblock, 0);
Damien Millera6508752012-04-22 11:21:10 +1000315 c->notbefore = 0;
Damien Miller95def091999-11-25 00:26:21 +1100316 c->self = found;
317 c->type = type;
Damien Millerb38eff82000-04-01 11:09:21 +1000318 c->ctype = ctype;
Damien Millerbd483e72000-04-30 10:00:53 +1000319 c->local_window = window;
320 c->local_window_max = window;
321 c->local_consumed = 0;
322 c->local_maxpacket = maxpack;
Damien Miller95def091999-11-25 00:26:21 +1100323 c->remote_id = -1;
Damien Millerb1ca8bb2003-05-14 13:45:42 +1000324 c->remote_name = xstrdup(remote_name);
Damien Millerb38eff82000-04-01 11:09:21 +1000325 c->remote_window = 0;
326 c->remote_maxpacket = 0;
Ben Lindstrom944c4f02001-09-18 05:51:13 +0000327 c->force_drain = 0;
Damien Millere7378562001-12-21 14:58:35 +1100328 c->single_connection = 0;
Ben Lindstrom809744e2001-07-04 05:26:06 +0000329 c->detach_user = NULL;
Damien Miller39eda6e2005-11-05 14:52:50 +1100330 c->detach_close = 0;
Damien Millerb84886b2008-05-19 15:05:07 +1000331 c->open_confirm = NULL;
332 c->open_confirm_ctx = NULL;
Damien Millerad833b32000-08-23 10:46:23 +1000333 c->input_filter = NULL;
Damien Miller077b2382005-12-31 16:22:32 +1100334 c->output_filter = NULL;
Darren Tucker84c56f52008-06-13 04:55:46 +1000335 c->filter_ctx = NULL;
336 c->filter_cleanup = NULL;
Damien Millere1537f92010-01-26 13:26:22 +1100337 c->ctl_chan = -1;
338 c->mux_rcb = NULL;
339 c->mux_ctx = NULL;
Damien Millerd530f5f2010-05-21 14:57:10 +1000340 c->mux_pause = 0;
Darren Tucker876045b2010-01-08 17:08:00 +1100341 c->delayed = 1; /* prevent call to channel_post handler */
Damien Millerb84886b2008-05-19 15:05:07 +1000342 TAILQ_INIT(&c->status_confirms);
Damien Miller95def091999-11-25 00:26:21 +1100343 debug("channel %d: new [%s]", found, remote_name);
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000344 return c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000345}
Damien Miller6f83b8e2000-05-02 09:23:45 +1000346
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000347static int
348channel_find_maxfd(void)
349{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000350 u_int i;
351 int max = 0;
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000352 Channel *c;
353
354 for (i = 0; i < channels_alloc; i++) {
355 c = channels[i];
356 if (c != NULL) {
357 max = MAX(max, c->rfd);
358 max = MAX(max, c->wfd);
359 max = MAX(max, c->efd);
360 }
361 }
362 return max;
363}
364
365int
366channel_close_fd(int *fdp)
367{
368 int ret = 0, fd = *fdp;
369
370 if (fd != -1) {
371 ret = close(fd);
372 *fdp = -1;
373 if (fd == channel_max_fd)
374 channel_max_fd = channel_find_maxfd();
375 }
376 return ret;
377}
378
Damien Miller6f83b8e2000-05-02 09:23:45 +1000379/* Close all channel fd/socket. */
Ben Lindstrombba81212001-06-25 05:01:22 +0000380static void
Damien Miller6f83b8e2000-05-02 09:23:45 +1000381channel_close_fds(Channel *c)
382{
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000383 channel_close_fd(&c->sock);
384 channel_close_fd(&c->rfd);
385 channel_close_fd(&c->wfd);
386 channel_close_fd(&c->efd);
Damien Miller6f83b8e2000-05-02 09:23:45 +1000387}
388
389/* Free the channel and close its fd/socket. */
Damien Miller4af51302000-04-16 11:18:38 +1000390void
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000391channel_free(Channel *c)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000392{
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000393 char *s;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000394 u_int i, n;
Damien Millerb84886b2008-05-19 15:05:07 +1000395 struct channel_confirm *cc;
Ben Lindstromc0dee1a2001-06-05 20:52:50 +0000396
397 for (n = 0, i = 0; i < channels_alloc; i++)
398 if (channels[i])
399 n++;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000400 debug("channel %d: free: %s, nchannels %u", c->self,
Ben Lindstromc0dee1a2001-06-05 20:52:50 +0000401 c->remote_name ? c->remote_name : "???", n);
Ben Lindstrom6c3ae2b2000-12-30 03:25:14 +0000402
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000403 s = channel_open_message();
Damien Millerfbdeece2003-09-02 22:52:31 +1000404 debug3("channel %d: status: %s", c->self, s);
Darren Tuckera627d422013-06-02 07:31:17 +1000405 free(s);
Ben Lindstrom6c3ae2b2000-12-30 03:25:14 +0000406
Damien Miller6f83b8e2000-05-02 09:23:45 +1000407 if (c->sock != -1)
Damien Millerb38eff82000-04-01 11:09:21 +1000408 shutdown(c->sock, SHUT_RDWR);
Damien Miller6f83b8e2000-05-02 09:23:45 +1000409 channel_close_fds(c);
Damien Millerb38eff82000-04-01 11:09:21 +1000410 buffer_free(&c->input);
411 buffer_free(&c->output);
412 buffer_free(&c->extended);
Darren Tuckera627d422013-06-02 07:31:17 +1000413 free(c->remote_name);
414 c->remote_name = NULL;
415 free(c->path);
416 c->path = NULL;
417 free(c->listening_addr);
418 c->listening_addr = NULL;
Damien Millerb84886b2008-05-19 15:05:07 +1000419 while ((cc = TAILQ_FIRST(&c->status_confirms)) != NULL) {
420 if (cc->abandon_cb != NULL)
421 cc->abandon_cb(c, cc->ctx);
422 TAILQ_REMOVE(&c->status_confirms, cc, entry);
423 bzero(cc, sizeof(*cc));
Darren Tuckera627d422013-06-02 07:31:17 +1000424 free(cc);
Damien Millerb84886b2008-05-19 15:05:07 +1000425 }
Darren Tucker84c56f52008-06-13 04:55:46 +1000426 if (c->filter_cleanup != NULL && c->filter_ctx != NULL)
427 c->filter_cleanup(c->self, c->filter_ctx);
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000428 channels[c->self] = NULL;
Darren Tuckera627d422013-06-02 07:31:17 +1000429 free(c);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000430}
431
Ben Lindstrome9c99912001-06-09 00:41:05 +0000432void
Ben Lindstrom601e4362001-06-21 03:19:23 +0000433channel_free_all(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000434{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000435 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000436
Ben Lindstrom601e4362001-06-21 03:19:23 +0000437 for (i = 0; i < channels_alloc; i++)
438 if (channels[i] != NULL)
439 channel_free(channels[i]);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000440}
441
442/*
443 * Closes the sockets/fds of all channels. This is used to close extra file
444 * descriptors after a fork.
445 */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000446void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000447channel_close_all(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000448{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000449 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000450
451 for (i = 0; i < channels_alloc; i++)
452 if (channels[i] != NULL)
453 channel_close_fds(channels[i]);
454}
455
456/*
Ben Lindstrom809744e2001-07-04 05:26:06 +0000457 * Stop listening to channels.
458 */
Ben Lindstrom809744e2001-07-04 05:26:06 +0000459void
460channel_stop_listening(void)
461{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000462 u_int i;
Ben Lindstrom809744e2001-07-04 05:26:06 +0000463 Channel *c;
464
465 for (i = 0; i < channels_alloc; i++) {
466 c = channels[i];
467 if (c != NULL) {
468 switch (c->type) {
469 case SSH_CHANNEL_AUTH_SOCKET:
470 case SSH_CHANNEL_PORT_LISTENER:
471 case SSH_CHANNEL_RPORT_LISTENER:
472 case SSH_CHANNEL_X11_LISTENER:
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000473 channel_close_fd(&c->sock);
Ben Lindstrom809744e2001-07-04 05:26:06 +0000474 channel_free(c);
475 break;
476 }
477 }
478 }
479}
480
481/*
Ben Lindstrome9c99912001-06-09 00:41:05 +0000482 * Returns true if no channel has too much buffered data, and false if one or
483 * more channel is overfull.
484 */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000485int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000486channel_not_very_much_buffered_data(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000487{
488 u_int i;
489 Channel *c;
490
491 for (i = 0; i < channels_alloc; i++) {
492 c = channels[i];
493 if (c != NULL && c->type == SSH_CHANNEL_OPEN) {
Damien Milleraf5f2e62001-10-10 15:01:16 +1000494#if 0
495 if (!compat20 &&
496 buffer_len(&c->input) > packet_get_maxsize()) {
Damien Miller275295e2003-01-08 14:04:09 +1100497 debug2("channel %d: big input buffer %d",
Ben Lindstrome9c99912001-06-09 00:41:05 +0000498 c->self, buffer_len(&c->input));
499 return 0;
500 }
Damien Milleraf5f2e62001-10-10 15:01:16 +1000501#endif
Ben Lindstrome9c99912001-06-09 00:41:05 +0000502 if (buffer_len(&c->output) > packet_get_maxsize()) {
Darren Tucker502d3842003-06-28 12:38:01 +1000503 debug2("channel %d: big output buffer %u > %u",
Damien Milleraf5f2e62001-10-10 15:01:16 +1000504 c->self, buffer_len(&c->output),
505 packet_get_maxsize());
Ben Lindstrome9c99912001-06-09 00:41:05 +0000506 return 0;
507 }
508 }
509 }
510 return 1;
511}
512
513/* Returns true if any channel is still open. */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000514int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000515channel_still_open(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000516{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000517 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000518 Channel *c;
519
520 for (i = 0; i < channels_alloc; i++) {
521 c = channels[i];
522 if (c == NULL)
523 continue;
524 switch (c->type) {
525 case SSH_CHANNEL_X11_LISTENER:
526 case SSH_CHANNEL_PORT_LISTENER:
527 case SSH_CHANNEL_RPORT_LISTENER:
Damien Millere1537f92010-01-26 13:26:22 +1100528 case SSH_CHANNEL_MUX_LISTENER:
Ben Lindstrome9c99912001-06-09 00:41:05 +0000529 case SSH_CHANNEL_CLOSED:
530 case SSH_CHANNEL_AUTH_SOCKET:
531 case SSH_CHANNEL_DYNAMIC:
532 case SSH_CHANNEL_CONNECTING:
533 case SSH_CHANNEL_ZOMBIE:
Damien Miller36187092013-06-10 13:07:11 +1000534 case SSH_CHANNEL_ABANDONED:
Ben Lindstrome9c99912001-06-09 00:41:05 +0000535 continue;
536 case SSH_CHANNEL_LARVAL:
537 if (!compat20)
538 fatal("cannot happen: SSH_CHANNEL_LARVAL");
539 continue;
540 case SSH_CHANNEL_OPENING:
541 case SSH_CHANNEL_OPEN:
542 case SSH_CHANNEL_X11_OPEN:
Damien Millere1537f92010-01-26 13:26:22 +1100543 case SSH_CHANNEL_MUX_CLIENT:
Ben Lindstrome9c99912001-06-09 00:41:05 +0000544 return 1;
545 case SSH_CHANNEL_INPUT_DRAINING:
546 case SSH_CHANNEL_OUTPUT_DRAINING:
547 if (!compat13)
548 fatal("cannot happen: OUT_DRAIN");
549 return 1;
550 default:
551 fatal("channel_still_open: bad channel type %d", c->type);
552 /* NOTREACHED */
553 }
554 }
555 return 0;
556}
557
558/* Returns the id of an open channel suitable for keepaliving */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000559int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000560channel_find_open(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000561{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000562 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000563 Channel *c;
564
565 for (i = 0; i < channels_alloc; i++) {
566 c = channels[i];
Damien Miller3bbd8782004-06-18 22:23:22 +1000567 if (c == NULL || c->remote_id < 0)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000568 continue;
569 switch (c->type) {
570 case SSH_CHANNEL_CLOSED:
571 case SSH_CHANNEL_DYNAMIC:
572 case SSH_CHANNEL_X11_LISTENER:
573 case SSH_CHANNEL_PORT_LISTENER:
574 case SSH_CHANNEL_RPORT_LISTENER:
Damien Millere1537f92010-01-26 13:26:22 +1100575 case SSH_CHANNEL_MUX_LISTENER:
576 case SSH_CHANNEL_MUX_CLIENT:
Ben Lindstrome9c99912001-06-09 00:41:05 +0000577 case SSH_CHANNEL_OPENING:
578 case SSH_CHANNEL_CONNECTING:
579 case SSH_CHANNEL_ZOMBIE:
Damien Miller36187092013-06-10 13:07:11 +1000580 case SSH_CHANNEL_ABANDONED:
Ben Lindstrome9c99912001-06-09 00:41:05 +0000581 continue;
582 case SSH_CHANNEL_LARVAL:
583 case SSH_CHANNEL_AUTH_SOCKET:
584 case SSH_CHANNEL_OPEN:
585 case SSH_CHANNEL_X11_OPEN:
586 return i;
587 case SSH_CHANNEL_INPUT_DRAINING:
588 case SSH_CHANNEL_OUTPUT_DRAINING:
589 if (!compat13)
590 fatal("cannot happen: OUT_DRAIN");
591 return i;
592 default:
593 fatal("channel_find_open: bad channel type %d", c->type);
594 /* NOTREACHED */
595 }
596 }
597 return -1;
598}
599
600
601/*
602 * Returns a message describing the currently open forwarded connections,
603 * suitable for sending to the client. The message contains crlf pairs for
604 * newlines.
605 */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000606char *
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000607channel_open_message(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000608{
609 Buffer buffer;
610 Channel *c;
611 char buf[1024], *cp;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000612 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000613
614 buffer_init(&buffer);
615 snprintf(buf, sizeof buf, "The following connections are open:\r\n");
616 buffer_append(&buffer, buf, strlen(buf));
617 for (i = 0; i < channels_alloc; i++) {
618 c = channels[i];
619 if (c == NULL)
620 continue;
621 switch (c->type) {
622 case SSH_CHANNEL_X11_LISTENER:
623 case SSH_CHANNEL_PORT_LISTENER:
624 case SSH_CHANNEL_RPORT_LISTENER:
625 case SSH_CHANNEL_CLOSED:
626 case SSH_CHANNEL_AUTH_SOCKET:
627 case SSH_CHANNEL_ZOMBIE:
Damien Miller36187092013-06-10 13:07:11 +1000628 case SSH_CHANNEL_ABANDONED:
Damien Millere1537f92010-01-26 13:26:22 +1100629 case SSH_CHANNEL_MUX_CLIENT:
630 case SSH_CHANNEL_MUX_LISTENER:
Ben Lindstrome9c99912001-06-09 00:41:05 +0000631 continue;
632 case SSH_CHANNEL_LARVAL:
633 case SSH_CHANNEL_OPENING:
634 case SSH_CHANNEL_CONNECTING:
635 case SSH_CHANNEL_DYNAMIC:
636 case SSH_CHANNEL_OPEN:
637 case SSH_CHANNEL_X11_OPEN:
638 case SSH_CHANNEL_INPUT_DRAINING:
639 case SSH_CHANNEL_OUTPUT_DRAINING:
Damien Miller0e220db2004-06-15 10:34:08 +1000640 snprintf(buf, sizeof buf,
Damien Millere1537f92010-01-26 13:26:22 +1100641 " #%d %.300s (t%d r%d i%d/%d o%d/%d fd %d/%d cc %d)\r\n",
Ben Lindstrome9c99912001-06-09 00:41:05 +0000642 c->self, c->remote_name,
643 c->type, c->remote_id,
644 c->istate, buffer_len(&c->input),
645 c->ostate, buffer_len(&c->output),
Damien Millere1537f92010-01-26 13:26:22 +1100646 c->rfd, c->wfd, c->ctl_chan);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000647 buffer_append(&buffer, buf, strlen(buf));
648 continue;
649 default:
650 fatal("channel_open_message: bad channel type %d", c->type);
651 /* NOTREACHED */
652 }
653 }
654 buffer_append(&buffer, "\0", 1);
655 cp = xstrdup(buffer_ptr(&buffer));
656 buffer_free(&buffer);
657 return cp;
658}
659
660void
661channel_send_open(int id)
662{
663 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000664
Ben Lindstrome9c99912001-06-09 00:41:05 +0000665 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000666 logit("channel_send_open: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000667 return;
668 }
Ben Lindstrom1d568f92002-12-23 02:44:36 +0000669 debug2("channel %d: send open", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000670 packet_start(SSH2_MSG_CHANNEL_OPEN);
671 packet_put_cstring(c->ctype);
672 packet_put_int(c->self);
673 packet_put_int(c->local_window);
674 packet_put_int(c->local_maxpacket);
675 packet_send();
676}
677
678void
Ben Lindstrom1d568f92002-12-23 02:44:36 +0000679channel_request_start(int id, char *service, int wantconfirm)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000680{
Ben Lindstrom1d568f92002-12-23 02:44:36 +0000681 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000682
Ben Lindstrome9c99912001-06-09 00:41:05 +0000683 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000684 logit("channel_request_start: %d: unknown channel id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000685 return;
686 }
Damien Miller0e220db2004-06-15 10:34:08 +1000687 debug2("channel %d: request %s confirm %d", id, service, wantconfirm);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000688 packet_start(SSH2_MSG_CHANNEL_REQUEST);
689 packet_put_int(c->remote_id);
690 packet_put_cstring(service);
691 packet_put_char(wantconfirm);
692}
Damien Miller4f7becb2006-03-26 14:10:14 +1100693
Ben Lindstrome9c99912001-06-09 00:41:05 +0000694void
Damien Millerb84886b2008-05-19 15:05:07 +1000695channel_register_status_confirm(int id, channel_confirm_cb *cb,
696 channel_confirm_abandon_cb *abandon_cb, void *ctx)
697{
698 struct channel_confirm *cc;
699 Channel *c;
700
701 if ((c = channel_lookup(id)) == NULL)
702 fatal("channel_register_expect: %d: bad id", id);
703
704 cc = xmalloc(sizeof(*cc));
705 cc->cb = cb;
706 cc->abandon_cb = abandon_cb;
707 cc->ctx = ctx;
708 TAILQ_INSERT_TAIL(&c->status_confirms, cc, entry);
709}
710
711void
Damien Millerd530f5f2010-05-21 14:57:10 +1000712channel_register_open_confirm(int id, channel_open_fn *fn, void *ctx)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000713{
714 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000715
Ben Lindstrome9c99912001-06-09 00:41:05 +0000716 if (c == NULL) {
Damien Millera0094332008-11-03 19:26:35 +1100717 logit("channel_register_open_confirm: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000718 return;
719 }
Damien Millerb84886b2008-05-19 15:05:07 +1000720 c->open_confirm = fn;
721 c->open_confirm_ctx = ctx;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000722}
Damien Miller4f7becb2006-03-26 14:10:14 +1100723
Ben Lindstrome9c99912001-06-09 00:41:05 +0000724void
Damien Miller39eda6e2005-11-05 14:52:50 +1100725channel_register_cleanup(int id, channel_callback_fn *fn, int do_close)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000726{
Damien Millerd47c62a2005-12-13 19:33:57 +1100727 Channel *c = channel_by_id(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000728
Ben Lindstrome9c99912001-06-09 00:41:05 +0000729 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000730 logit("channel_register_cleanup: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000731 return;
732 }
Ben Lindstrom809744e2001-07-04 05:26:06 +0000733 c->detach_user = fn;
Damien Miller39eda6e2005-11-05 14:52:50 +1100734 c->detach_close = do_close;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000735}
Damien Miller4f7becb2006-03-26 14:10:14 +1100736
Ben Lindstrome9c99912001-06-09 00:41:05 +0000737void
738channel_cancel_cleanup(int id)
739{
Damien Millerd47c62a2005-12-13 19:33:57 +1100740 Channel *c = channel_by_id(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000741
Ben Lindstrome9c99912001-06-09 00:41:05 +0000742 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000743 logit("channel_cancel_cleanup: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000744 return;
745 }
Ben Lindstrom809744e2001-07-04 05:26:06 +0000746 c->detach_user = NULL;
Damien Miller39eda6e2005-11-05 14:52:50 +1100747 c->detach_close = 0;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000748}
Damien Miller4f7becb2006-03-26 14:10:14 +1100749
Ben Lindstrome9c99912001-06-09 00:41:05 +0000750void
Damien Miller077b2382005-12-31 16:22:32 +1100751channel_register_filter(int id, channel_infilter_fn *ifn,
Darren Tucker84c56f52008-06-13 04:55:46 +1000752 channel_outfilter_fn *ofn, channel_filter_cleanup_fn *cfn, void *ctx)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000753{
754 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000755
Ben Lindstrome9c99912001-06-09 00:41:05 +0000756 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000757 logit("channel_register_filter: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000758 return;
759 }
Damien Miller077b2382005-12-31 16:22:32 +1100760 c->input_filter = ifn;
761 c->output_filter = ofn;
Darren Tucker2fb66ca2008-06-13 04:49:33 +1000762 c->filter_ctx = ctx;
Darren Tucker84c56f52008-06-13 04:55:46 +1000763 c->filter_cleanup = cfn;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000764}
765
766void
767channel_set_fds(int id, int rfd, int wfd, int efd,
Darren Tuckered3cdc02008-06-16 23:29:18 +1000768 int extusage, int nonblock, int is_tty, u_int window_max)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000769{
770 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000771
Ben Lindstrome9c99912001-06-09 00:41:05 +0000772 if (c == NULL || c->type != SSH_CHANNEL_LARVAL)
773 fatal("channel_activate for non-larval channel %d.", id);
Darren Tuckered3cdc02008-06-16 23:29:18 +1000774 channel_register_fds(c, rfd, wfd, efd, extusage, nonblock, is_tty);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000775 c->type = SSH_CHANNEL_OPEN;
Damien Miller2aa0c192002-02-19 15:20:08 +1100776 c->local_window = c->local_window_max = window_max;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000777 packet_start(SSH2_MSG_CHANNEL_WINDOW_ADJUST);
778 packet_put_int(c->remote_id);
779 packet_put_int(c->local_window);
780 packet_send();
781}
782
Damien Miller5428f641999-11-25 11:54:57 +1100783/*
Damien Millerb38eff82000-04-01 11:09:21 +1000784 * 'channel_pre*' are called just before select() to add any bits relevant to
785 * channels in the select bitmasks.
Damien Miller5428f641999-11-25 11:54:57 +1100786 */
Damien Millerb38eff82000-04-01 11:09:21 +1000787/*
788 * 'channel_post*': perform any appropriate operations for channels which
789 * have events pending.
790 */
Damien Millerd62f2ca2006-03-26 13:57:41 +1100791typedef void chan_fn(Channel *c, fd_set *readset, fd_set *writeset);
Damien Millerb38eff82000-04-01 11:09:21 +1000792chan_fn *channel_pre[SSH_CHANNEL_MAX_TYPE];
793chan_fn *channel_post[SSH_CHANNEL_MAX_TYPE];
794
Damien Miller8473dd82006-07-24 14:08:32 +1000795/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +0000796static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100797channel_pre_listener(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000798{
799 FD_SET(c->sock, readset);
800}
801
Damien Miller8473dd82006-07-24 14:08:32 +1000802/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +0000803static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100804channel_pre_connecting(Channel *c, fd_set *readset, fd_set *writeset)
Ben Lindstrom7ad97102000-12-06 01:42:49 +0000805{
806 debug3("channel %d: waiting for connection", c->self);
807 FD_SET(c->sock, writeset);
808}
809
Ben Lindstrombba81212001-06-25 05:01:22 +0000810static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100811channel_pre_open_13(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000812{
813 if (buffer_len(&c->input) < packet_get_maxsize())
814 FD_SET(c->sock, readset);
815 if (buffer_len(&c->output) > 0)
816 FD_SET(c->sock, writeset);
817}
818
Ben Lindstrombba81212001-06-25 05:01:22 +0000819static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100820channel_pre_open(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000821{
Damien Millerde6987c2002-01-22 23:20:40 +1100822 u_int limit = compat20 ? c->remote_window : packet_get_maxsize();
Damien Millerb38eff82000-04-01 11:09:21 +1000823
Damien Miller33b13562000-04-04 14:38:59 +1000824 if (c->istate == CHAN_INPUT_OPEN &&
Damien Millerde6987c2002-01-22 23:20:40 +1100825 limit > 0 &&
Damien Miller499a0d52006-04-23 12:06:03 +1000826 buffer_len(&c->input) < limit &&
827 buffer_check_alloc(&c->input, CHAN_RBUF))
Damien Miller33b13562000-04-04 14:38:59 +1000828 FD_SET(c->rfd, readset);
829 if (c->ostate == CHAN_OUTPUT_OPEN ||
830 c->ostate == CHAN_OUTPUT_WAIT_DRAIN) {
831 if (buffer_len(&c->output) > 0) {
832 FD_SET(c->wfd, writeset);
833 } else if (c->ostate == CHAN_OUTPUT_WAIT_DRAIN) {
Ben Lindstromcf159442002-03-26 03:26:24 +0000834 if (CHANNEL_EFD_OUTPUT_ACTIVE(c))
Damien Miller0dc1bef2005-07-17 17:22:45 +1000835 debug2("channel %d: obuf_empty delayed efd %d/(%d)",
836 c->self, c->efd, buffer_len(&c->extended));
Ben Lindstromcf159442002-03-26 03:26:24 +0000837 else
838 chan_obuf_empty(c);
Damien Miller33b13562000-04-04 14:38:59 +1000839 }
840 }
841 /** XXX check close conditions, too */
Damien Millerd654dd22008-05-19 16:05:41 +1000842 if (compat20 && c->efd != -1 &&
843 !(c->istate == CHAN_INPUT_CLOSED && c->ostate == CHAN_OUTPUT_CLOSED)) {
Damien Miller33b13562000-04-04 14:38:59 +1000844 if (c->extended_usage == CHAN_EXTENDED_WRITE &&
845 buffer_len(&c->extended) > 0)
846 FD_SET(c->efd, writeset);
Damien Miller8853ca52010-06-26 10:00:14 +1000847 else if (c->efd != -1 && !(c->flags & CHAN_EOF_SENT) &&
848 (c->extended_usage == CHAN_EXTENDED_READ ||
849 c->extended_usage == CHAN_EXTENDED_IGNORE) &&
Damien Miller33b13562000-04-04 14:38:59 +1000850 buffer_len(&c->extended) < c->remote_window)
851 FD_SET(c->efd, readset);
852 }
Damien Miller0e220db2004-06-15 10:34:08 +1000853 /* XXX: What about efd? races? */
Damien Miller33b13562000-04-04 14:38:59 +1000854}
855
Damien Miller8473dd82006-07-24 14:08:32 +1000856/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +0000857static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100858channel_pre_input_draining(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000859{
860 if (buffer_len(&c->input) == 0) {
861 packet_start(SSH_MSG_CHANNEL_CLOSE);
862 packet_put_int(c->remote_id);
863 packet_send();
864 c->type = SSH_CHANNEL_CLOSED;
Damien Millerfbdeece2003-09-02 22:52:31 +1000865 debug2("channel %d: closing after input drain.", c->self);
Damien Millerb38eff82000-04-01 11:09:21 +1000866 }
867}
868
Damien Miller8473dd82006-07-24 14:08:32 +1000869/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +0000870static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100871channel_pre_output_draining(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000872{
873 if (buffer_len(&c->output) == 0)
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000874 chan_mark_dead(c);
Damien Miller4af51302000-04-16 11:18:38 +1000875 else
Damien Millerb38eff82000-04-01 11:09:21 +1000876 FD_SET(c->sock, writeset);
877}
878
879/*
880 * This is a special state for X11 authentication spoofing. An opened X11
881 * connection (when authentication spoofing is being done) remains in this
882 * state until the first packet has been completely read. The authentication
883 * data in that packet is then substituted by the real data if it matches the
884 * fake data, and the channel is put into normal mode.
Damien Millerbd483e72000-04-30 10:00:53 +1000885 * XXX All this happens at the client side.
Ben Lindstrome9c99912001-06-09 00:41:05 +0000886 * Returns: 0 = need more data, -1 = wrong cookie, 1 = ok
Damien Millerb38eff82000-04-01 11:09:21 +1000887 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000888static int
Ben Lindstrome9c99912001-06-09 00:41:05 +0000889x11_open_helper(Buffer *b)
Damien Millerb38eff82000-04-01 11:09:21 +1000890{
Ben Lindstrom46c16222000-12-22 01:43:59 +0000891 u_char *ucp;
892 u_int proto_len, data_len;
Damien Millerb38eff82000-04-01 11:09:21 +1000893
894 /* Check if the fixed size part of the packet is in buffer. */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000895 if (buffer_len(b) < 12)
Damien Millerb38eff82000-04-01 11:09:21 +1000896 return 0;
897
898 /* Parse the lengths of variable-length fields. */
Damien Miller708d21c2002-01-22 23:18:15 +1100899 ucp = buffer_ptr(b);
Damien Millerb38eff82000-04-01 11:09:21 +1000900 if (ucp[0] == 0x42) { /* Byte order MSB first. */
901 proto_len = 256 * ucp[6] + ucp[7];
902 data_len = 256 * ucp[8] + ucp[9];
903 } else if (ucp[0] == 0x6c) { /* Byte order LSB first. */
904 proto_len = ucp[6] + 256 * ucp[7];
905 data_len = ucp[8] + 256 * ucp[9];
906 } else {
Damien Millerfbdeece2003-09-02 22:52:31 +1000907 debug2("Initial X11 packet contains bad byte order byte: 0x%x",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100908 ucp[0]);
Damien Millerb38eff82000-04-01 11:09:21 +1000909 return -1;
910 }
911
912 /* Check if the whole packet is in buffer. */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000913 if (buffer_len(b) <
Damien Millerb38eff82000-04-01 11:09:21 +1000914 12 + ((proto_len + 3) & ~3) + ((data_len + 3) & ~3))
915 return 0;
916
917 /* Check if authentication protocol matches. */
918 if (proto_len != strlen(x11_saved_proto) ||
919 memcmp(ucp + 12, x11_saved_proto, proto_len) != 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +1000920 debug2("X11 connection uses different authentication protocol.");
Damien Millerb38eff82000-04-01 11:09:21 +1000921 return -1;
922 }
923 /* Check if authentication data matches our fake data. */
924 if (data_len != x11_fake_data_len ||
Damien Millerea1651c2010-07-16 13:58:37 +1000925 timingsafe_bcmp(ucp + 12 + ((proto_len + 3) & ~3),
Damien Millerb38eff82000-04-01 11:09:21 +1000926 x11_fake_data, x11_fake_data_len) != 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +1000927 debug2("X11 auth data does not match fake data.");
Damien Millerb38eff82000-04-01 11:09:21 +1000928 return -1;
929 }
930 /* Check fake data length */
931 if (x11_fake_data_len != x11_saved_data_len) {
932 error("X11 fake_data_len %d != saved_data_len %d",
933 x11_fake_data_len, x11_saved_data_len);
934 return -1;
935 }
936 /*
937 * Received authentication protocol and data match
938 * our fake data. Substitute the fake data with real
939 * data.
940 */
941 memcpy(ucp + 12 + ((proto_len + 3) & ~3),
942 x11_saved_data, x11_saved_data_len);
943 return 1;
944}
945
Ben Lindstrombba81212001-06-25 05:01:22 +0000946static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100947channel_pre_x11_open_13(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000948{
Ben Lindstrome9c99912001-06-09 00:41:05 +0000949 int ret = x11_open_helper(&c->output);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000950
Damien Millerb38eff82000-04-01 11:09:21 +1000951 if (ret == 1) {
952 /* Start normal processing for the channel. */
953 c->type = SSH_CHANNEL_OPEN;
Damien Miller78928792000-04-12 20:17:38 +1000954 channel_pre_open_13(c, readset, writeset);
Damien Millerb38eff82000-04-01 11:09:21 +1000955 } else if (ret == -1) {
956 /*
957 * We have received an X11 connection that has bad
958 * authentication information.
959 */
Damien Miller996acd22003-04-09 20:59:48 +1000960 logit("X11 connection rejected because of wrong authentication.");
Damien Millerb38eff82000-04-01 11:09:21 +1000961 buffer_clear(&c->input);
962 buffer_clear(&c->output);
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000963 channel_close_fd(&c->sock);
Damien Millerb38eff82000-04-01 11:09:21 +1000964 c->sock = -1;
965 c->type = SSH_CHANNEL_CLOSED;
966 packet_start(SSH_MSG_CHANNEL_CLOSE);
967 packet_put_int(c->remote_id);
968 packet_send();
969 }
970}
971
Ben Lindstrombba81212001-06-25 05:01:22 +0000972static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100973channel_pre_x11_open(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000974{
Ben Lindstrome9c99912001-06-09 00:41:05 +0000975 int ret = x11_open_helper(&c->output);
Ben Lindstrom944c4f02001-09-18 05:51:13 +0000976
977 /* c->force_drain = 1; */
978
Damien Millerb38eff82000-04-01 11:09:21 +1000979 if (ret == 1) {
980 c->type = SSH_CHANNEL_OPEN;
Damien Millerde6987c2002-01-22 23:20:40 +1100981 channel_pre_open(c, readset, writeset);
Damien Millerb38eff82000-04-01 11:09:21 +1000982 } else if (ret == -1) {
Damien Miller996acd22003-04-09 20:59:48 +1000983 logit("X11 connection rejected because of wrong authentication.");
Damien Millerfbdeece2003-09-02 22:52:31 +1000984 debug2("X11 rejected %d i%d/o%d", c->self, c->istate, c->ostate);
Damien Millera90fc082002-01-22 23:19:38 +1100985 chan_read_failed(c);
986 buffer_clear(&c->input);
987 chan_ibuf_empty(c);
988 buffer_clear(&c->output);
989 /* for proto v1, the peer will send an IEOF */
990 if (compat20)
991 chan_write_failed(c);
992 else
993 c->type = SSH_CHANNEL_OPEN;
Damien Millerfbdeece2003-09-02 22:52:31 +1000994 debug2("X11 closed %d i%d/o%d", c->self, c->istate, c->ostate);
Damien Millerb38eff82000-04-01 11:09:21 +1000995 }
996}
997
Damien Millere1537f92010-01-26 13:26:22 +1100998static void
999channel_pre_mux_client(Channel *c, fd_set *readset, fd_set *writeset)
1000{
Damien Millerd530f5f2010-05-21 14:57:10 +10001001 if (c->istate == CHAN_INPUT_OPEN && !c->mux_pause &&
Damien Millere1537f92010-01-26 13:26:22 +11001002 buffer_check_alloc(&c->input, CHAN_RBUF))
1003 FD_SET(c->rfd, readset);
1004 if (c->istate == CHAN_INPUT_WAIT_DRAIN) {
1005 /* clear buffer immediately (discard any partial packet) */
1006 buffer_clear(&c->input);
1007 chan_ibuf_empty(c);
1008 /* Start output drain. XXX just kill chan? */
1009 chan_rcvd_oclose(c);
1010 }
1011 if (c->ostate == CHAN_OUTPUT_OPEN ||
1012 c->ostate == CHAN_OUTPUT_WAIT_DRAIN) {
1013 if (buffer_len(&c->output) > 0)
1014 FD_SET(c->wfd, writeset);
1015 else if (c->ostate == CHAN_OUTPUT_WAIT_DRAIN)
1016 chan_obuf_empty(c);
1017 }
1018}
1019
Ben Lindstromb3921512001-04-11 15:57:50 +00001020/* try to decode a socks4 header */
Damien Miller8473dd82006-07-24 14:08:32 +10001021/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001022static int
Damien Millerd62f2ca2006-03-26 13:57:41 +11001023channel_decode_socks4(Channel *c, fd_set *readset, fd_set *writeset)
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001024{
Damien Millera10f5612002-09-12 09:49:15 +10001025 char *p, *host;
Damien Miller1781f532009-01-28 16:24:41 +11001026 u_int len, have, i, found, need;
Damien Miller9f0f5c62001-12-21 14:45:46 +11001027 char username[256];
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001028 struct {
1029 u_int8_t version;
1030 u_int8_t command;
1031 u_int16_t dest_port;
Ben Lindstromb3921512001-04-11 15:57:50 +00001032 struct in_addr dest_addr;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001033 } s4_req, s4_rsp;
1034
Ben Lindstromb3921512001-04-11 15:57:50 +00001035 debug2("channel %d: decode socks4", c->self);
Ben Lindstrom2b261b92001-04-17 18:14:34 +00001036
1037 have = buffer_len(&c->input);
1038 len = sizeof(s4_req);
1039 if (have < len)
1040 return 0;
1041 p = buffer_ptr(&c->input);
Damien Miller1781f532009-01-28 16:24:41 +11001042
1043 need = 1;
1044 /* SOCKS4A uses an invalid IP address 0.0.0.x */
1045 if (p[4] == 0 && p[5] == 0 && p[6] == 0 && p[7] != 0) {
1046 debug2("channel %d: socks4a request", c->self);
1047 /* ... and needs an extra string (the hostname) */
1048 need = 2;
1049 }
1050 /* Check for terminating NUL on the string(s) */
Ben Lindstrom2b261b92001-04-17 18:14:34 +00001051 for (found = 0, i = len; i < have; i++) {
1052 if (p[i] == '\0') {
Damien Miller1781f532009-01-28 16:24:41 +11001053 found++;
1054 if (found == need)
1055 break;
Ben Lindstrom2b261b92001-04-17 18:14:34 +00001056 }
1057 if (i > 1024) {
1058 /* the peer is probably sending garbage */
1059 debug("channel %d: decode socks4: too long",
1060 c->self);
1061 return -1;
1062 }
1063 }
Damien Miller1781f532009-01-28 16:24:41 +11001064 if (found < need)
Ben Lindstrom2b261b92001-04-17 18:14:34 +00001065 return 0;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001066 buffer_get(&c->input, (char *)&s4_req.version, 1);
1067 buffer_get(&c->input, (char *)&s4_req.command, 1);
1068 buffer_get(&c->input, (char *)&s4_req.dest_port, 2);
Ben Lindstromb3921512001-04-11 15:57:50 +00001069 buffer_get(&c->input, (char *)&s4_req.dest_addr, 4);
Ben Lindstrom2b261b92001-04-17 18:14:34 +00001070 have = buffer_len(&c->input);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001071 p = buffer_ptr(&c->input);
1072 len = strlen(p);
Ben Lindstrom6fa9d102001-04-11 23:08:17 +00001073 debug2("channel %d: decode socks4: user %s/%d", c->self, p, len);
Damien Miller1781f532009-01-28 16:24:41 +11001074 len++; /* trailing '\0' */
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001075 if (len > have)
Ben Lindstromb3921512001-04-11 15:57:50 +00001076 fatal("channel %d: decode socks4: len %d > have %d",
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001077 c->self, len, have);
1078 strlcpy(username, p, sizeof(username));
1079 buffer_consume(&c->input, len);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001080
Darren Tuckera627d422013-06-02 07:31:17 +10001081 free(c->path);
1082 c->path = NULL;
Damien Miller1781f532009-01-28 16:24:41 +11001083 if (need == 1) { /* SOCKS4: one string */
1084 host = inet_ntoa(s4_req.dest_addr);
Damien Millera1c1b6c2009-01-28 16:29:49 +11001085 c->path = xstrdup(host);
Damien Miller1781f532009-01-28 16:24:41 +11001086 } else { /* SOCKS4A: two strings */
1087 have = buffer_len(&c->input);
1088 p = buffer_ptr(&c->input);
1089 len = strlen(p);
1090 debug2("channel %d: decode socks4a: host %s/%d",
1091 c->self, p, len);
1092 len++; /* trailing '\0' */
1093 if (len > have)
1094 fatal("channel %d: decode socks4a: len %d > have %d",
1095 c->self, len, have);
Damien Millera1c1b6c2009-01-28 16:29:49 +11001096 if (len > NI_MAXHOST) {
Damien Miller1781f532009-01-28 16:24:41 +11001097 error("channel %d: hostname \"%.100s\" too long",
1098 c->self, p);
1099 return -1;
1100 }
Damien Millera1c1b6c2009-01-28 16:29:49 +11001101 c->path = xstrdup(p);
Damien Miller1781f532009-01-28 16:24:41 +11001102 buffer_consume(&c->input, len);
1103 }
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001104 c->host_port = ntohs(s4_req.dest_port);
Damien Miller9f0f5c62001-12-21 14:45:46 +11001105
Damien Millerfbdeece2003-09-02 22:52:31 +10001106 debug2("channel %d: dynamic request: socks4 host %s port %u command %u",
Damien Miller1781f532009-01-28 16:24:41 +11001107 c->self, c->path, c->host_port, s4_req.command);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001108
Ben Lindstromb3921512001-04-11 15:57:50 +00001109 if (s4_req.command != 1) {
Damien Miller1781f532009-01-28 16:24:41 +11001110 debug("channel %d: cannot handle: %s cn %d",
1111 c->self, need == 1 ? "SOCKS4" : "SOCKS4A", s4_req.command);
Ben Lindstromb3921512001-04-11 15:57:50 +00001112 return -1;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001113 }
Ben Lindstromb3921512001-04-11 15:57:50 +00001114 s4_rsp.version = 0; /* vn: 0 for reply */
1115 s4_rsp.command = 90; /* cd: req granted */
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001116 s4_rsp.dest_port = 0; /* ignored */
Ben Lindstromb3921512001-04-11 15:57:50 +00001117 s4_rsp.dest_addr.s_addr = INADDR_ANY; /* ignored */
Damien Millera0fdce92006-03-26 14:28:50 +11001118 buffer_append(&c->output, &s4_rsp, sizeof(s4_rsp));
Ben Lindstromb3921512001-04-11 15:57:50 +00001119 return 1;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001120}
1121
Darren Tucker46471c92003-07-03 13:55:19 +10001122/* try to decode a socks5 header */
1123#define SSH_SOCKS5_AUTHDONE 0x1000
1124#define SSH_SOCKS5_NOAUTH 0x00
1125#define SSH_SOCKS5_IPV4 0x01
1126#define SSH_SOCKS5_DOMAIN 0x03
1127#define SSH_SOCKS5_IPV6 0x04
1128#define SSH_SOCKS5_CONNECT 0x01
1129#define SSH_SOCKS5_SUCCESS 0x00
1130
Damien Miller8473dd82006-07-24 14:08:32 +10001131/* ARGSUSED */
Darren Tucker46471c92003-07-03 13:55:19 +10001132static int
Damien Millerd62f2ca2006-03-26 13:57:41 +11001133channel_decode_socks5(Channel *c, fd_set *readset, fd_set *writeset)
Darren Tucker46471c92003-07-03 13:55:19 +10001134{
1135 struct {
1136 u_int8_t version;
1137 u_int8_t command;
1138 u_int8_t reserved;
1139 u_int8_t atyp;
1140 } s5_req, s5_rsp;
1141 u_int16_t dest_port;
Damien Millerce986542013-07-18 16:12:44 +10001142 char dest_addr[255+1], ntop[INET6_ADDRSTRLEN];
1143 u_char *p;
Damien Miller0f077072006-07-10 22:21:02 +10001144 u_int have, need, i, found, nmethods, addrlen, af;
Darren Tucker46471c92003-07-03 13:55:19 +10001145
1146 debug2("channel %d: decode socks5", c->self);
1147 p = buffer_ptr(&c->input);
1148 if (p[0] != 0x05)
1149 return -1;
1150 have = buffer_len(&c->input);
1151 if (!(c->flags & SSH_SOCKS5_AUTHDONE)) {
1152 /* format: ver | nmethods | methods */
Damien Millera8e06ce2003-11-21 23:48:55 +11001153 if (have < 2)
Darren Tucker46471c92003-07-03 13:55:19 +10001154 return 0;
1155 nmethods = p[1];
1156 if (have < nmethods + 2)
1157 return 0;
1158 /* look for method: "NO AUTHENTICATION REQUIRED" */
Damien Miller80163902007-01-05 16:30:16 +11001159 for (found = 0, i = 2; i < nmethods + 2; i++) {
Damien Miller4dec5d72006-08-05 11:38:40 +10001160 if (p[i] == SSH_SOCKS5_NOAUTH) {
Darren Tucker46471c92003-07-03 13:55:19 +10001161 found = 1;
1162 break;
1163 }
1164 }
1165 if (!found) {
1166 debug("channel %d: method SSH_SOCKS5_NOAUTH not found",
1167 c->self);
1168 return -1;
1169 }
1170 buffer_consume(&c->input, nmethods + 2);
1171 buffer_put_char(&c->output, 0x05); /* version */
1172 buffer_put_char(&c->output, SSH_SOCKS5_NOAUTH); /* method */
1173 FD_SET(c->sock, writeset);
1174 c->flags |= SSH_SOCKS5_AUTHDONE;
1175 debug2("channel %d: socks5 auth done", c->self);
1176 return 0; /* need more */
1177 }
1178 debug2("channel %d: socks5 post auth", c->self);
1179 if (have < sizeof(s5_req)+1)
1180 return 0; /* need more */
Damien Millere3b21a52006-03-26 14:29:06 +11001181 memcpy(&s5_req, p, sizeof(s5_req));
Darren Tucker46471c92003-07-03 13:55:19 +10001182 if (s5_req.version != 0x05 ||
1183 s5_req.command != SSH_SOCKS5_CONNECT ||
1184 s5_req.reserved != 0x00) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001185 debug2("channel %d: only socks5 connect supported", c->self);
Darren Tucker46471c92003-07-03 13:55:19 +10001186 return -1;
1187 }
Darren Tucker47eede72005-03-14 23:08:12 +11001188 switch (s5_req.atyp){
Darren Tucker46471c92003-07-03 13:55:19 +10001189 case SSH_SOCKS5_IPV4:
1190 addrlen = 4;
1191 af = AF_INET;
1192 break;
1193 case SSH_SOCKS5_DOMAIN:
1194 addrlen = p[sizeof(s5_req)];
1195 af = -1;
1196 break;
1197 case SSH_SOCKS5_IPV6:
1198 addrlen = 16;
1199 af = AF_INET6;
1200 break;
1201 default:
Damien Millerfbdeece2003-09-02 22:52:31 +10001202 debug2("channel %d: bad socks5 atyp %d", c->self, s5_req.atyp);
Darren Tucker46471c92003-07-03 13:55:19 +10001203 return -1;
1204 }
Damien Miller0f077072006-07-10 22:21:02 +10001205 need = sizeof(s5_req) + addrlen + 2;
1206 if (s5_req.atyp == SSH_SOCKS5_DOMAIN)
1207 need++;
1208 if (have < need)
Darren Tucker46471c92003-07-03 13:55:19 +10001209 return 0;
1210 buffer_consume(&c->input, sizeof(s5_req));
1211 if (s5_req.atyp == SSH_SOCKS5_DOMAIN)
1212 buffer_consume(&c->input, 1); /* host string length */
Damien Millerce986542013-07-18 16:12:44 +10001213 buffer_get(&c->input, &dest_addr, addrlen);
Darren Tucker46471c92003-07-03 13:55:19 +10001214 buffer_get(&c->input, (char *)&dest_port, 2);
1215 dest_addr[addrlen] = '\0';
Darren Tuckera627d422013-06-02 07:31:17 +10001216 free(c->path);
1217 c->path = NULL;
Damien Millera1c1b6c2009-01-28 16:29:49 +11001218 if (s5_req.atyp == SSH_SOCKS5_DOMAIN) {
Damien Miller9576ac42009-01-28 16:30:33 +11001219 if (addrlen >= NI_MAXHOST) {
Damien Millera1c1b6c2009-01-28 16:29:49 +11001220 error("channel %d: dynamic request: socks5 hostname "
1221 "\"%.100s\" too long", c->self, dest_addr);
1222 return -1;
1223 }
1224 c->path = xstrdup(dest_addr);
1225 } else {
1226 if (inet_ntop(af, dest_addr, ntop, sizeof(ntop)) == NULL)
1227 return -1;
1228 c->path = xstrdup(ntop);
1229 }
Darren Tucker46471c92003-07-03 13:55:19 +10001230 c->host_port = ntohs(dest_port);
Damien Miller787b2ec2003-11-21 23:56:47 +11001231
Damien Millerfbdeece2003-09-02 22:52:31 +10001232 debug2("channel %d: dynamic request: socks5 host %s port %u command %u",
Darren Tucker46471c92003-07-03 13:55:19 +10001233 c->self, c->path, c->host_port, s5_req.command);
1234
1235 s5_rsp.version = 0x05;
1236 s5_rsp.command = SSH_SOCKS5_SUCCESS;
1237 s5_rsp.reserved = 0; /* ignored */
1238 s5_rsp.atyp = SSH_SOCKS5_IPV4;
1239 ((struct in_addr *)&dest_addr)->s_addr = INADDR_ANY;
1240 dest_port = 0; /* ignored */
1241
Damien Millera0fdce92006-03-26 14:28:50 +11001242 buffer_append(&c->output, &s5_rsp, sizeof(s5_rsp));
1243 buffer_append(&c->output, &dest_addr, sizeof(struct in_addr));
1244 buffer_append(&c->output, &dest_port, sizeof(dest_port));
Darren Tucker46471c92003-07-03 13:55:19 +10001245 return 1;
1246}
1247
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001248Channel *
Damien Millere1537f92010-01-26 13:26:22 +11001249channel_connect_stdio_fwd(const char *host_to_connect, u_short port_to_connect,
1250 int in, int out)
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001251{
1252 Channel *c;
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001253
1254 debug("channel_connect_stdio_fwd %s:%d", host_to_connect,
1255 port_to_connect);
1256
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001257 c = channel_new("stdio-forward", SSH_CHANNEL_OPENING, in, out,
1258 -1, CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT,
1259 0, "stdio-forward", /*nonblock*/0);
1260
1261 c->path = xstrdup(host_to_connect);
1262 c->host_port = port_to_connect;
1263 c->listening_port = 0;
1264 c->force_drain = 1;
1265
1266 channel_register_fds(c, in, out, -1, 0, 1, 0);
1267 port_open_helper(c, "direct-tcpip");
1268
1269 return c;
1270}
1271
Ben Lindstromb3921512001-04-11 15:57:50 +00001272/* dynamic port forwarding */
Ben Lindstrombba81212001-06-25 05:01:22 +00001273static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001274channel_pre_dynamic(Channel *c, fd_set *readset, fd_set *writeset)
Ben Lindstromb3921512001-04-11 15:57:50 +00001275{
1276 u_char *p;
Damien Millereccb9de2005-06-17 12:59:34 +10001277 u_int have;
1278 int ret;
Ben Lindstromb3921512001-04-11 15:57:50 +00001279
1280 have = buffer_len(&c->input);
Ben Lindstromb3921512001-04-11 15:57:50 +00001281 debug2("channel %d: pre_dynamic: have %d", c->self, have);
Ben Lindstromc486d882001-04-11 16:08:34 +00001282 /* buffer_dump(&c->input); */
Ben Lindstromb3921512001-04-11 15:57:50 +00001283 /* check if the fixed size part of the packet is in buffer. */
Darren Tucker46471c92003-07-03 13:55:19 +10001284 if (have < 3) {
Ben Lindstromb3921512001-04-11 15:57:50 +00001285 /* need more */
1286 FD_SET(c->sock, readset);
1287 return;
1288 }
1289 /* try to guess the protocol */
1290 p = buffer_ptr(&c->input);
1291 switch (p[0]) {
Ben Lindstrom6fa9d102001-04-11 23:08:17 +00001292 case 0x04:
1293 ret = channel_decode_socks4(c, readset, writeset);
1294 break;
Darren Tucker46471c92003-07-03 13:55:19 +10001295 case 0x05:
1296 ret = channel_decode_socks5(c, readset, writeset);
1297 break;
Ben Lindstromb3921512001-04-11 15:57:50 +00001298 default:
1299 ret = -1;
1300 break;
1301 }
1302 if (ret < 0) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001303 chan_mark_dead(c);
Ben Lindstromb3921512001-04-11 15:57:50 +00001304 } else if (ret == 0) {
1305 debug2("channel %d: pre_dynamic: need more", c->self);
1306 /* need more */
1307 FD_SET(c->sock, readset);
1308 } else {
1309 /* switch to the next state */
1310 c->type = SSH_CHANNEL_OPENING;
1311 port_open_helper(c, "direct-tcpip");
1312 }
1313}
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001314
Damien Millerb38eff82000-04-01 11:09:21 +10001315/* This is our fake X11 server socket. */
Damien Miller8473dd82006-07-24 14:08:32 +10001316/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001317static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001318channel_post_x11_listener(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001319{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001320 Channel *nc;
Damien Miller163886f2008-07-14 11:28:58 +10001321 struct sockaddr_storage addr;
Damien Miller37f1c082013-04-23 15:20:43 +10001322 int newsock, oerrno;
Damien Millerb38eff82000-04-01 11:09:21 +10001323 socklen_t addrlen;
Damien Millerd83ff352001-01-30 09:19:34 +11001324 char buf[16384], *remote_ipaddr;
Damien Millerbd483e72000-04-30 10:00:53 +10001325 int remote_port;
Damien Millerb38eff82000-04-01 11:09:21 +10001326
1327 if (FD_ISSET(c->sock, readset)) {
1328 debug("X11 connection requested.");
1329 addrlen = sizeof(addr);
Damien Miller163886f2008-07-14 11:28:58 +10001330 newsock = accept(c->sock, (struct sockaddr *)&addr, &addrlen);
Damien Millere7378562001-12-21 14:58:35 +11001331 if (c->single_connection) {
Damien Miller37f1c082013-04-23 15:20:43 +10001332 oerrno = errno;
Damien Millerfbdeece2003-09-02 22:52:31 +10001333 debug2("single_connection: closing X11 listener.");
Damien Millere7378562001-12-21 14:58:35 +11001334 channel_close_fd(&c->sock);
1335 chan_mark_dead(c);
Damien Miller37f1c082013-04-23 15:20:43 +10001336 errno = oerrno;
Damien Millere7378562001-12-21 14:58:35 +11001337 }
Damien Millerb38eff82000-04-01 11:09:21 +10001338 if (newsock < 0) {
Damien Miller37f1c082013-04-23 15:20:43 +10001339 if (errno != EINTR && errno != EWOULDBLOCK &&
1340 errno != ECONNABORTED)
1341 error("accept: %.100s", strerror(errno));
Damien Millera6508752012-04-22 11:21:10 +10001342 if (errno == EMFILE || errno == ENFILE)
Darren Tuckerb759c9c2013-06-02 07:46:16 +10001343 c->notbefore = monotime() + 1;
Damien Millerb38eff82000-04-01 11:09:21 +10001344 return;
1345 }
Damien Miller398e1cf2002-02-05 11:52:13 +11001346 set_nodelay(newsock);
Damien Millerd83ff352001-01-30 09:19:34 +11001347 remote_ipaddr = get_peer_ipaddr(newsock);
Damien Millerbd483e72000-04-30 10:00:53 +10001348 remote_port = get_peer_port(newsock);
Damien Millerb38eff82000-04-01 11:09:21 +10001349 snprintf(buf, sizeof buf, "X11 connection from %.200s port %d",
Damien Millerd83ff352001-01-30 09:19:34 +11001350 remote_ipaddr, remote_port);
Damien Millerbd483e72000-04-30 10:00:53 +10001351
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001352 nc = channel_new("accepted x11 socket",
Damien Millerbd483e72000-04-30 10:00:53 +10001353 SSH_CHANNEL_OPENING, newsock, newsock, -1,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001354 c->local_window_max, c->local_maxpacket, 0, buf, 1);
Damien Millerbd483e72000-04-30 10:00:53 +10001355 if (compat20) {
1356 packet_start(SSH2_MSG_CHANNEL_OPEN);
1357 packet_put_cstring("x11");
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001358 packet_put_int(nc->self);
Damien Millere7378562001-12-21 14:58:35 +11001359 packet_put_int(nc->local_window_max);
1360 packet_put_int(nc->local_maxpacket);
Damien Millerd83ff352001-01-30 09:19:34 +11001361 /* originator ipaddr and port */
1362 packet_put_cstring(remote_ipaddr);
Damien Miller30c3d422000-05-09 11:02:59 +10001363 if (datafellows & SSH_BUG_X11FWD) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001364 debug2("ssh2 x11 bug compat mode");
Damien Miller30c3d422000-05-09 11:02:59 +10001365 } else {
1366 packet_put_int(remote_port);
1367 }
Damien Millerbd483e72000-04-30 10:00:53 +10001368 packet_send();
1369 } else {
1370 packet_start(SSH_SMSG_X11_OPEN);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001371 packet_put_int(nc->self);
Ben Lindstrome9c99912001-06-09 00:41:05 +00001372 if (packet_get_protocol_flags() &
1373 SSH_PROTOFLAG_HOST_IN_FWD_OPEN)
Ben Lindstrom664408d2001-06-09 01:42:01 +00001374 packet_put_cstring(buf);
Damien Millerbd483e72000-04-30 10:00:53 +10001375 packet_send();
1376 }
Darren Tuckera627d422013-06-02 07:31:17 +10001377 free(remote_ipaddr);
Damien Millerb38eff82000-04-01 11:09:21 +10001378 }
1379}
1380
Ben Lindstrombba81212001-06-25 05:01:22 +00001381static void
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001382port_open_helper(Channel *c, char *rtype)
1383{
1384 int direct;
1385 char buf[1024];
1386 char *remote_ipaddr = get_peer_ipaddr(c->sock);
Damien Miller677257f2005-06-17 12:55:03 +10001387 int remote_port = get_peer_port(c->sock);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001388
Damien Millerd6369432010-02-02 17:02:07 +11001389 if (remote_port == -1) {
1390 /* Fake addr/port to appease peers that validate it (Tectia) */
Darren Tuckera627d422013-06-02 07:31:17 +10001391 free(remote_ipaddr);
Damien Millerd6369432010-02-02 17:02:07 +11001392 remote_ipaddr = xstrdup("127.0.0.1");
1393 remote_port = 65535;
1394 }
1395
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001396 direct = (strcmp(rtype, "direct-tcpip") == 0);
1397
1398 snprintf(buf, sizeof buf,
1399 "%s: listening port %d for %.100s port %d, "
1400 "connect from %.200s port %d",
1401 rtype, c->listening_port, c->path, c->host_port,
1402 remote_ipaddr, remote_port);
1403
Darren Tuckera627d422013-06-02 07:31:17 +10001404 free(c->remote_name);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001405 c->remote_name = xstrdup(buf);
1406
1407 if (compat20) {
1408 packet_start(SSH2_MSG_CHANNEL_OPEN);
1409 packet_put_cstring(rtype);
1410 packet_put_int(c->self);
1411 packet_put_int(c->local_window_max);
1412 packet_put_int(c->local_maxpacket);
1413 if (direct) {
1414 /* target host, port */
1415 packet_put_cstring(c->path);
1416 packet_put_int(c->host_port);
1417 } else {
1418 /* listen address, port */
1419 packet_put_cstring(c->path);
1420 packet_put_int(c->listening_port);
1421 }
1422 /* originator host and port */
1423 packet_put_cstring(remote_ipaddr);
Damien Miller677257f2005-06-17 12:55:03 +10001424 packet_put_int((u_int)remote_port);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001425 packet_send();
1426 } else {
1427 packet_start(SSH_MSG_PORT_OPEN);
1428 packet_put_int(c->self);
1429 packet_put_cstring(c->path);
1430 packet_put_int(c->host_port);
Ben Lindstrome9c99912001-06-09 00:41:05 +00001431 if (packet_get_protocol_flags() &
1432 SSH_PROTOFLAG_HOST_IN_FWD_OPEN)
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001433 packet_put_cstring(c->remote_name);
1434 packet_send();
1435 }
Darren Tuckera627d422013-06-02 07:31:17 +10001436 free(remote_ipaddr);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001437}
1438
Damien Miller5e7fd072005-11-05 14:53:39 +11001439static void
1440channel_set_reuseaddr(int fd)
1441{
1442 int on = 1;
1443
1444 /*
1445 * Set socket options.
1446 * Allow local port reuse in TIME_WAIT.
1447 */
1448 if (setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, &on, sizeof(on)) == -1)
1449 error("setsockopt SO_REUSEADDR fd %d: %s", fd, strerror(errno));
1450}
1451
Damien Millerb38eff82000-04-01 11:09:21 +10001452/*
1453 * This socket is listening for connections to a forwarded TCP/IP port.
1454 */
Damien Miller8473dd82006-07-24 14:08:32 +10001455/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001456static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001457channel_post_port_listener(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001458{
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001459 Channel *nc;
Damien Miller163886f2008-07-14 11:28:58 +10001460 struct sockaddr_storage addr;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001461 int newsock, nextstate;
Damien Millerb38eff82000-04-01 11:09:21 +10001462 socklen_t addrlen;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001463 char *rtype;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001464
Damien Millerb38eff82000-04-01 11:09:21 +10001465 if (FD_ISSET(c->sock, readset)) {
1466 debug("Connection to port %d forwarding "
1467 "to %.100s port %d requested.",
1468 c->listening_port, c->path, c->host_port);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001469
Damien Miller4623a752001-10-10 15:03:58 +10001470 if (c->type == SSH_CHANNEL_RPORT_LISTENER) {
1471 nextstate = SSH_CHANNEL_OPENING;
1472 rtype = "forwarded-tcpip";
1473 } else {
1474 if (c->host_port == 0) {
1475 nextstate = SSH_CHANNEL_DYNAMIC;
Damien Millerd3c04b92001-10-10 15:04:20 +10001476 rtype = "dynamic-tcpip";
Damien Miller4623a752001-10-10 15:03:58 +10001477 } else {
1478 nextstate = SSH_CHANNEL_OPENING;
1479 rtype = "direct-tcpip";
1480 }
1481 }
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001482
Damien Millerb38eff82000-04-01 11:09:21 +10001483 addrlen = sizeof(addr);
Damien Miller163886f2008-07-14 11:28:58 +10001484 newsock = accept(c->sock, (struct sockaddr *)&addr, &addrlen);
Damien Millerb38eff82000-04-01 11:09:21 +10001485 if (newsock < 0) {
Damien Miller37f1c082013-04-23 15:20:43 +10001486 if (errno != EINTR && errno != EWOULDBLOCK &&
1487 errno != ECONNABORTED)
1488 error("accept: %.100s", strerror(errno));
Damien Millera6508752012-04-22 11:21:10 +10001489 if (errno == EMFILE || errno == ENFILE)
Darren Tuckerb759c9c2013-06-02 07:46:16 +10001490 c->notbefore = monotime() + 1;
Damien Millerb38eff82000-04-01 11:09:21 +10001491 return;
1492 }
Ben Lindstrom1ebd7a52002-02-26 18:12:51 +00001493 set_nodelay(newsock);
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001494 nc = channel_new(rtype, nextstate, newsock, newsock, -1,
1495 c->local_window_max, c->local_maxpacket, 0, rtype, 1);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001496 nc->listening_port = c->listening_port;
1497 nc->host_port = c->host_port;
Damien Millera1c1b6c2009-01-28 16:29:49 +11001498 if (c->path != NULL)
1499 nc->path = xstrdup(c->path);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001500
Darren Tucker876045b2010-01-08 17:08:00 +11001501 if (nextstate != SSH_CHANNEL_DYNAMIC)
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001502 port_open_helper(nc, rtype);
Damien Millerb38eff82000-04-01 11:09:21 +10001503 }
1504}
1505
1506/*
1507 * This is the authentication agent socket listening for connections from
1508 * clients.
1509 */
Damien Miller8473dd82006-07-24 14:08:32 +10001510/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001511static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001512channel_post_auth_listener(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001513{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001514 Channel *nc;
1515 int newsock;
Damien Miller163886f2008-07-14 11:28:58 +10001516 struct sockaddr_storage addr;
Damien Millerb38eff82000-04-01 11:09:21 +10001517 socklen_t addrlen;
1518
1519 if (FD_ISSET(c->sock, readset)) {
1520 addrlen = sizeof(addr);
Damien Miller163886f2008-07-14 11:28:58 +10001521 newsock = accept(c->sock, (struct sockaddr *)&addr, &addrlen);
Damien Millerb38eff82000-04-01 11:09:21 +10001522 if (newsock < 0) {
Damien Millera6508752012-04-22 11:21:10 +10001523 error("accept from auth socket: %.100s",
1524 strerror(errno));
1525 if (errno == EMFILE || errno == ENFILE)
Darren Tuckerb759c9c2013-06-02 07:46:16 +10001526 c->notbefore = monotime() + 1;
Damien Millerb38eff82000-04-01 11:09:21 +10001527 return;
1528 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001529 nc = channel_new("accepted auth socket",
Damien Miller0bc1bd82000-11-13 22:57:25 +11001530 SSH_CHANNEL_OPENING, newsock, newsock, -1,
1531 c->local_window_max, c->local_maxpacket,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001532 0, "accepted auth socket", 1);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001533 if (compat20) {
1534 packet_start(SSH2_MSG_CHANNEL_OPEN);
1535 packet_put_cstring("auth-agent@openssh.com");
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001536 packet_put_int(nc->self);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001537 packet_put_int(c->local_window_max);
1538 packet_put_int(c->local_maxpacket);
1539 } else {
1540 packet_start(SSH_SMSG_AGENT_OPEN);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001541 packet_put_int(nc->self);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001542 }
Damien Millerb38eff82000-04-01 11:09:21 +10001543 packet_send();
1544 }
1545}
1546
Damien Miller8473dd82006-07-24 14:08:32 +10001547/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001548static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001549channel_post_connecting(Channel *c, fd_set *readset, fd_set *writeset)
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001550{
Damien Millerbd740252008-05-19 15:37:09 +10001551 int err = 0, sock;
Ben Lindstrom11180952001-07-04 05:13:35 +00001552 socklen_t sz = sizeof(err);
Ben Lindstrom69128662001-05-08 20:07:39 +00001553
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001554 if (FD_ISSET(c->sock, writeset)) {
Ben Lindstrom733a2352002-03-05 01:31:28 +00001555 if (getsockopt(c->sock, SOL_SOCKET, SO_ERROR, &err, &sz) < 0) {
Ben Lindstrom69128662001-05-08 20:07:39 +00001556 err = errno;
1557 error("getsockopt SO_ERROR failed");
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001558 }
Ben Lindstrom69128662001-05-08 20:07:39 +00001559 if (err == 0) {
Damien Millerbd740252008-05-19 15:37:09 +10001560 debug("channel %d: connected to %s port %d",
1561 c->self, c->connect_ctx.host, c->connect_ctx.port);
1562 channel_connect_ctx_free(&c->connect_ctx);
Ben Lindstrom69128662001-05-08 20:07:39 +00001563 c->type = SSH_CHANNEL_OPEN;
1564 if (compat20) {
1565 packet_start(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION);
1566 packet_put_int(c->remote_id);
1567 packet_put_int(c->self);
1568 packet_put_int(c->local_window);
1569 packet_put_int(c->local_maxpacket);
1570 } else {
1571 packet_start(SSH_MSG_CHANNEL_OPEN_CONFIRMATION);
1572 packet_put_int(c->remote_id);
1573 packet_put_int(c->self);
1574 }
1575 } else {
Damien Millerbd740252008-05-19 15:37:09 +10001576 debug("channel %d: connection failed: %s",
Ben Lindstrom69128662001-05-08 20:07:39 +00001577 c->self, strerror(err));
Damien Millerbd740252008-05-19 15:37:09 +10001578 /* Try next address, if any */
1579 if ((sock = connect_next(&c->connect_ctx)) > 0) {
1580 close(c->sock);
1581 c->sock = c->rfd = c->wfd = sock;
1582 channel_max_fd = channel_find_maxfd();
1583 return;
1584 }
1585 /* Exhausted all addresses */
1586 error("connect_to %.100s port %d: failed.",
1587 c->connect_ctx.host, c->connect_ctx.port);
1588 channel_connect_ctx_free(&c->connect_ctx);
Ben Lindstrom69128662001-05-08 20:07:39 +00001589 if (compat20) {
1590 packet_start(SSH2_MSG_CHANNEL_OPEN_FAILURE);
1591 packet_put_int(c->remote_id);
1592 packet_put_int(SSH2_OPEN_CONNECT_FAILED);
1593 if (!(datafellows & SSH_BUG_OPENFAILURE)) {
1594 packet_put_cstring(strerror(err));
1595 packet_put_cstring("");
1596 }
1597 } else {
1598 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
1599 packet_put_int(c->remote_id);
1600 }
1601 chan_mark_dead(c);
1602 }
1603 packet_send();
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001604 }
1605}
1606
Damien Miller8473dd82006-07-24 14:08:32 +10001607/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001608static int
Damien Millerd62f2ca2006-03-26 13:57:41 +11001609channel_handle_rfd(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001610{
Darren Tucker11327cc2005-03-14 23:22:25 +11001611 char buf[CHAN_RBUF];
Damien Miller835284b2007-06-11 13:03:16 +10001612 int len, force;
Damien Millerb38eff82000-04-01 11:09:21 +10001613
Damien Miller835284b2007-06-11 13:03:16 +10001614 force = c->isatty && c->detach_close && c->istate != CHAN_INPUT_CLOSED;
1615 if (c->rfd != -1 && (force || FD_ISSET(c->rfd, readset))) {
Darren Tucker9afe1152006-06-23 21:24:12 +10001616 errno = 0;
Damien Millerb38eff82000-04-01 11:09:21 +10001617 len = read(c->rfd, buf, sizeof(buf));
Damien Millerd8968ad2008-07-04 23:10:49 +10001618 if (len < 0 && (errno == EINTR ||
1619 ((errno == EAGAIN || errno == EWOULDBLOCK) && !force)))
Damien Miller6f83b8e2000-05-02 09:23:45 +10001620 return 1;
Darren Tucker9afe1152006-06-23 21:24:12 +10001621#ifndef PTY_ZEROREAD
Damien Millerb38eff82000-04-01 11:09:21 +10001622 if (len <= 0) {
Darren Tucker9afe1152006-06-23 21:24:12 +10001623#else
Darren Tucker144e8d62006-06-25 08:25:25 +10001624 if ((!c->isatty && len <= 0) ||
1625 (c->isatty && (len < 0 || (len == 0 && errno != 0)))) {
Darren Tucker9afe1152006-06-23 21:24:12 +10001626#endif
Damien Millerfbdeece2003-09-02 22:52:31 +10001627 debug2("channel %d: read<=0 rfd %d len %d",
Damien Millerb38eff82000-04-01 11:09:21 +10001628 c->self, c->rfd, len);
Ben Lindstromb3921512001-04-11 15:57:50 +00001629 if (c->type != SSH_CHANNEL_OPEN) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001630 debug2("channel %d: not open", c->self);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001631 chan_mark_dead(c);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001632 return -1;
Ben Lindstromb3921512001-04-11 15:57:50 +00001633 } else if (compat13) {
Damien Miller76765c02002-01-22 23:21:15 +11001634 buffer_clear(&c->output);
Damien Millerb38eff82000-04-01 11:09:21 +10001635 c->type = SSH_CHANNEL_INPUT_DRAINING;
Damien Millerfbdeece2003-09-02 22:52:31 +10001636 debug2("channel %d: input draining.", c->self);
Damien Millerb38eff82000-04-01 11:09:21 +10001637 } else {
1638 chan_read_failed(c);
1639 }
1640 return -1;
1641 }
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00001642 if (c->input_filter != NULL) {
Damien Millerad833b32000-08-23 10:46:23 +10001643 if (c->input_filter(c, buf, len) == -1) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001644 debug2("channel %d: filter stops", c->self);
Damien Millerad833b32000-08-23 10:46:23 +10001645 chan_read_failed(c);
1646 }
Damien Millerd27b9472005-12-13 19:29:02 +11001647 } else if (c->datagram) {
1648 buffer_put_string(&c->input, buf, len);
Damien Millerad833b32000-08-23 10:46:23 +10001649 } else {
1650 buffer_append(&c->input, buf, len);
1651 }
Damien Millerb38eff82000-04-01 11:09:21 +10001652 }
1653 return 1;
1654}
Damien Miller4f7becb2006-03-26 14:10:14 +11001655
Damien Miller8473dd82006-07-24 14:08:32 +10001656/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001657static int
Damien Millerd62f2ca2006-03-26 13:57:41 +11001658channel_handle_wfd(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001659{
Ben Lindstrome229b252001-03-05 06:28:06 +00001660 struct termios tio;
Damien Miller077b2382005-12-31 16:22:32 +11001661 u_char *data = NULL, *buf;
Damien Miller7d457182010-08-05 23:09:48 +10001662 u_int dlen, olen = 0;
Damien Millerb38eff82000-04-01 11:09:21 +10001663 int len;
1664
1665 /* Send buffered output data to the socket. */
Ben Lindstromc0dee1a2001-06-05 20:52:50 +00001666 if (c->wfd != -1 &&
Damien Millerb38eff82000-04-01 11:09:21 +10001667 FD_ISSET(c->wfd, writeset) &&
1668 buffer_len(&c->output) > 0) {
Damien Miller7d457182010-08-05 23:09:48 +10001669 olen = buffer_len(&c->output);
Damien Miller077b2382005-12-31 16:22:32 +11001670 if (c->output_filter != NULL) {
1671 if ((buf = c->output_filter(c, &data, &dlen)) == NULL) {
1672 debug2("channel %d: filter stops", c->self);
Damien Millere204f6a2006-01-31 21:47:15 +11001673 if (c->type != SSH_CHANNEL_OPEN)
1674 chan_mark_dead(c);
1675 else
1676 chan_write_failed(c);
1677 return -1;
Damien Miller077b2382005-12-31 16:22:32 +11001678 }
1679 } else if (c->datagram) {
1680 buf = data = buffer_get_string(&c->output, &dlen);
1681 } else {
1682 buf = data = buffer_ptr(&c->output);
1683 dlen = buffer_len(&c->output);
1684 }
1685
Damien Millerd27b9472005-12-13 19:29:02 +11001686 if (c->datagram) {
Damien Millerd27b9472005-12-13 19:29:02 +11001687 /* ignore truncated writes, datagrams might get lost */
Damien Miller077b2382005-12-31 16:22:32 +11001688 len = write(c->wfd, buf, dlen);
Darren Tuckera627d422013-06-02 07:31:17 +10001689 free(data);
Damien Millerd8968ad2008-07-04 23:10:49 +10001690 if (len < 0 && (errno == EINTR || errno == EAGAIN ||
1691 errno == EWOULDBLOCK))
Damien Millerd27b9472005-12-13 19:29:02 +11001692 return 1;
1693 if (len <= 0) {
1694 if (c->type != SSH_CHANNEL_OPEN)
1695 chan_mark_dead(c);
1696 else
1697 chan_write_failed(c);
1698 return -1;
1699 }
Damien Miller7d457182010-08-05 23:09:48 +10001700 goto out;
Damien Millerd27b9472005-12-13 19:29:02 +11001701 }
Ben Lindstrom92ea0ea2002-07-04 18:11:09 +00001702#ifdef _AIX
Damien Millera8e06ce2003-11-21 23:48:55 +11001703 /* XXX: Later AIX versions can't push as much data to tty */
Darren Tucker240fdfa2003-11-22 14:10:02 +11001704 if (compat20 && c->wfd_isatty)
1705 dlen = MIN(dlen, 8*1024);
Ben Lindstrom92ea0ea2002-07-04 18:11:09 +00001706#endif
Damien Miller077b2382005-12-31 16:22:32 +11001707
1708 len = write(c->wfd, buf, dlen);
Damien Millerd8968ad2008-07-04 23:10:49 +10001709 if (len < 0 &&
1710 (errno == EINTR || errno == EAGAIN || errno == EWOULDBLOCK))
Damien Miller6f83b8e2000-05-02 09:23:45 +10001711 return 1;
Damien Millerb38eff82000-04-01 11:09:21 +10001712 if (len <= 0) {
Ben Lindstromb3921512001-04-11 15:57:50 +00001713 if (c->type != SSH_CHANNEL_OPEN) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001714 debug2("channel %d: not open", c->self);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001715 chan_mark_dead(c);
Ben Lindstromb3921512001-04-11 15:57:50 +00001716 return -1;
1717 } else if (compat13) {
Damien Miller76765c02002-01-22 23:21:15 +11001718 buffer_clear(&c->output);
Damien Millerfbdeece2003-09-02 22:52:31 +10001719 debug2("channel %d: input draining.", c->self);
Damien Millerb38eff82000-04-01 11:09:21 +10001720 c->type = SSH_CHANNEL_INPUT_DRAINING;
1721 } else {
1722 chan_write_failed(c);
1723 }
1724 return -1;
1725 }
Darren Tucker3980b632009-08-28 11:02:37 +10001726#ifndef BROKEN_TCGETATTR_ICANON
Damien Miller077b2382005-12-31 16:22:32 +11001727 if (compat20 && c->isatty && dlen >= 1 && buf[0] != '\r') {
Damien Miller79438cc2001-02-16 12:34:57 +11001728 if (tcgetattr(c->wfd, &tio) == 0 &&
1729 !(tio.c_lflag & ECHO) && (tio.c_lflag & ICANON)) {
1730 /*
1731 * Simulate echo to reduce the impact of
Ben Lindstromb40204b2001-03-05 06:29:44 +00001732 * traffic analysis. We need to match the
Ben Lindstrome229b252001-03-05 06:28:06 +00001733 * size of a SSH2_MSG_CHANNEL_DATA message
Damien Miller077b2382005-12-31 16:22:32 +11001734 * (4 byte channel id + buf)
Damien Miller79438cc2001-02-16 12:34:57 +11001735 */
Ben Lindstrome229b252001-03-05 06:28:06 +00001736 packet_send_ignore(4 + len);
Damien Miller79438cc2001-02-16 12:34:57 +11001737 packet_send();
Damien Miller79438cc2001-02-16 12:34:57 +11001738 }
1739 }
Darren Tucker3980b632009-08-28 11:02:37 +10001740#endif
Damien Millerb38eff82000-04-01 11:09:21 +10001741 buffer_consume(&c->output, len);
Damien Miller33b13562000-04-04 14:38:59 +10001742 }
Damien Miller7d457182010-08-05 23:09:48 +10001743 out:
1744 if (compat20 && olen > 0)
1745 c->local_consumed += olen - buffer_len(&c->output);
Damien Miller33b13562000-04-04 14:38:59 +10001746 return 1;
1747}
Damien Miller4f7becb2006-03-26 14:10:14 +11001748
Ben Lindstrombba81212001-06-25 05:01:22 +00001749static int
Damien Millerd62f2ca2006-03-26 13:57:41 +11001750channel_handle_efd(Channel *c, fd_set *readset, fd_set *writeset)
Damien Miller33b13562000-04-04 14:38:59 +10001751{
Darren Tucker11327cc2005-03-14 23:22:25 +11001752 char buf[CHAN_RBUF];
Damien Miller33b13562000-04-04 14:38:59 +10001753 int len;
1754
Damien Miller1383bd82000-04-06 12:32:37 +10001755/** XXX handle drain efd, too */
Damien Miller33b13562000-04-04 14:38:59 +10001756 if (c->efd != -1) {
1757 if (c->extended_usage == CHAN_EXTENDED_WRITE &&
1758 FD_ISSET(c->efd, writeset) &&
1759 buffer_len(&c->extended) > 0) {
1760 len = write(c->efd, buffer_ptr(&c->extended),
1761 buffer_len(&c->extended));
Damien Millerd3444942000-09-30 14:20:03 +11001762 debug2("channel %d: written %d to efd %d",
Damien Miller33b13562000-04-04 14:38:59 +10001763 c->self, len, c->efd);
Damien Millerd8968ad2008-07-04 23:10:49 +10001764 if (len < 0 && (errno == EINTR || errno == EAGAIN ||
1765 errno == EWOULDBLOCK))
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001766 return 1;
1767 if (len <= 0) {
1768 debug2("channel %d: closing write-efd %d",
1769 c->self, c->efd);
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001770 channel_close_fd(&c->efd);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001771 } else {
Damien Miller33b13562000-04-04 14:38:59 +10001772 buffer_consume(&c->extended, len);
1773 c->local_consumed += len;
1774 }
Damien Miller8853ca52010-06-26 10:00:14 +10001775 } else if (c->efd != -1 &&
1776 (c->extended_usage == CHAN_EXTENDED_READ ||
1777 c->extended_usage == CHAN_EXTENDED_IGNORE) &&
Damien Millere42bd242007-01-29 10:16:28 +11001778 (c->detach_close || FD_ISSET(c->efd, readset))) {
Damien Miller33b13562000-04-04 14:38:59 +10001779 len = read(c->efd, buf, sizeof(buf));
Damien Millerd3444942000-09-30 14:20:03 +11001780 debug2("channel %d: read %d from efd %d",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001781 c->self, len, c->efd);
Damien Millerd8968ad2008-07-04 23:10:49 +10001782 if (len < 0 && (errno == EINTR || ((errno == EAGAIN ||
1783 errno == EWOULDBLOCK) && !c->detach_close)))
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001784 return 1;
1785 if (len <= 0) {
1786 debug2("channel %d: closing read-efd %d",
Damien Miller1383bd82000-04-06 12:32:37 +10001787 c->self, c->efd);
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001788 channel_close_fd(&c->efd);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001789 } else {
Damien Miller8853ca52010-06-26 10:00:14 +10001790 if (c->extended_usage == CHAN_EXTENDED_IGNORE) {
1791 debug3("channel %d: discard efd",
1792 c->self);
1793 } else
1794 buffer_append(&c->extended, buf, len);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001795 }
Damien Miller33b13562000-04-04 14:38:59 +10001796 }
1797 }
1798 return 1;
1799}
Damien Miller4f7becb2006-03-26 14:10:14 +11001800
Damien Miller0e220db2004-06-15 10:34:08 +10001801static int
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001802channel_check_window(Channel *c)
Damien Miller33b13562000-04-04 14:38:59 +10001803{
Ben Lindstromb3921512001-04-11 15:57:50 +00001804 if (c->type == SSH_CHANNEL_OPEN &&
1805 !(c->flags & (CHAN_CLOSE_SENT|CHAN_CLOSE_RCVD)) &&
Darren Tuckerae09cb82007-06-25 19:04:46 +10001806 ((c->local_window_max - c->local_window >
Damien Miller3191a8e2007-06-11 18:33:15 +10001807 c->local_maxpacket*3) ||
1808 c->local_window < c->local_window_max/2) &&
Damien Miller33b13562000-04-04 14:38:59 +10001809 c->local_consumed > 0) {
1810 packet_start(SSH2_MSG_CHANNEL_WINDOW_ADJUST);
1811 packet_put_int(c->remote_id);
1812 packet_put_int(c->local_consumed);
1813 packet_send();
Damien Millerd3444942000-09-30 14:20:03 +11001814 debug2("channel %d: window %d sent adjust %d",
Damien Miller33b13562000-04-04 14:38:59 +10001815 c->self, c->local_window,
1816 c->local_consumed);
1817 c->local_window += c->local_consumed;
1818 c->local_consumed = 0;
Damien Millerb38eff82000-04-01 11:09:21 +10001819 }
1820 return 1;
1821}
1822
Ben Lindstrombba81212001-06-25 05:01:22 +00001823static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001824channel_post_open(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001825{
1826 channel_handle_rfd(c, readset, writeset);
1827 channel_handle_wfd(c, readset, writeset);
Damien Millerde6987c2002-01-22 23:20:40 +11001828 if (!compat20)
Damien Miller4623a752001-10-10 15:03:58 +10001829 return;
Damien Miller33b13562000-04-04 14:38:59 +10001830 channel_handle_efd(c, readset, writeset);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001831 channel_check_window(c);
Damien Miller33b13562000-04-04 14:38:59 +10001832}
1833
Damien Millere1537f92010-01-26 13:26:22 +11001834static u_int
1835read_mux(Channel *c, u_int need)
1836{
1837 char buf[CHAN_RBUF];
1838 int len;
1839 u_int rlen;
1840
1841 if (buffer_len(&c->input) < need) {
1842 rlen = need - buffer_len(&c->input);
1843 len = read(c->rfd, buf, MIN(rlen, CHAN_RBUF));
1844 if (len <= 0) {
1845 if (errno != EINTR && errno != EAGAIN) {
1846 debug2("channel %d: ctl read<=0 rfd %d len %d",
1847 c->self, c->rfd, len);
1848 chan_read_failed(c);
1849 return 0;
1850 }
1851 } else
1852 buffer_append(&c->input, buf, len);
1853 }
1854 return buffer_len(&c->input);
1855}
1856
1857static void
1858channel_post_mux_client(Channel *c, fd_set *readset, fd_set *writeset)
1859{
1860 u_int need;
1861 ssize_t len;
1862
1863 if (!compat20)
1864 fatal("%s: entered with !compat20", __func__);
1865
Damien Millerd530f5f2010-05-21 14:57:10 +10001866 if (c->rfd != -1 && !c->mux_pause && FD_ISSET(c->rfd, readset) &&
Damien Millere1537f92010-01-26 13:26:22 +11001867 (c->istate == CHAN_INPUT_OPEN ||
1868 c->istate == CHAN_INPUT_WAIT_DRAIN)) {
1869 /*
1870 * Don't not read past the precise end of packets to
1871 * avoid disrupting fd passing.
1872 */
1873 if (read_mux(c, 4) < 4) /* read header */
1874 return;
1875 need = get_u32(buffer_ptr(&c->input));
1876#define CHANNEL_MUX_MAX_PACKET (256 * 1024)
1877 if (need > CHANNEL_MUX_MAX_PACKET) {
1878 debug2("channel %d: packet too big %u > %u",
1879 c->self, CHANNEL_MUX_MAX_PACKET, need);
1880 chan_rcvd_oclose(c);
1881 return;
1882 }
1883 if (read_mux(c, need + 4) < need + 4) /* read body */
1884 return;
1885 if (c->mux_rcb(c) != 0) {
1886 debug("channel %d: mux_rcb failed", c->self);
1887 chan_mark_dead(c);
1888 return;
1889 }
1890 }
1891
1892 if (c->wfd != -1 && FD_ISSET(c->wfd, writeset) &&
1893 buffer_len(&c->output) > 0) {
1894 len = write(c->wfd, buffer_ptr(&c->output),
1895 buffer_len(&c->output));
1896 if (len < 0 && (errno == EINTR || errno == EAGAIN))
1897 return;
1898 if (len <= 0) {
1899 chan_mark_dead(c);
1900 return;
1901 }
1902 buffer_consume(&c->output, len);
1903 }
1904}
1905
1906static void
1907channel_post_mux_listener(Channel *c, fd_set *readset, fd_set *writeset)
1908{
1909 Channel *nc;
1910 struct sockaddr_storage addr;
1911 socklen_t addrlen;
1912 int newsock;
1913 uid_t euid;
1914 gid_t egid;
1915
1916 if (!FD_ISSET(c->sock, readset))
1917 return;
1918
1919 debug("multiplexing control connection");
1920
1921 /*
1922 * Accept connection on control socket
1923 */
1924 memset(&addr, 0, sizeof(addr));
1925 addrlen = sizeof(addr);
1926 if ((newsock = accept(c->sock, (struct sockaddr*)&addr,
1927 &addrlen)) == -1) {
1928 error("%s accept: %s", __func__, strerror(errno));
Damien Millera6508752012-04-22 11:21:10 +10001929 if (errno == EMFILE || errno == ENFILE)
Darren Tuckerb759c9c2013-06-02 07:46:16 +10001930 c->notbefore = monotime() + 1;
Damien Millere1537f92010-01-26 13:26:22 +11001931 return;
1932 }
1933
1934 if (getpeereid(newsock, &euid, &egid) < 0) {
1935 error("%s getpeereid failed: %s", __func__,
1936 strerror(errno));
1937 close(newsock);
1938 return;
1939 }
1940 if ((euid != 0) && (getuid() != euid)) {
1941 error("multiplex uid mismatch: peer euid %u != uid %u",
1942 (u_int)euid, (u_int)getuid());
1943 close(newsock);
1944 return;
1945 }
1946 nc = channel_new("multiplex client", SSH_CHANNEL_MUX_CLIENT,
1947 newsock, newsock, -1, c->local_window_max,
1948 c->local_maxpacket, 0, "mux-control", 1);
1949 nc->mux_rcb = c->mux_rcb;
1950 debug3("%s: new mux channel %d fd %d", __func__,
1951 nc->self, nc->sock);
1952 /* establish state */
1953 nc->mux_rcb(nc);
1954 /* mux state transitions must not elicit protocol messages */
1955 nc->flags |= CHAN_LOCAL;
1956}
1957
Damien Miller8473dd82006-07-24 14:08:32 +10001958/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001959static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001960channel_post_output_drain_13(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001961{
1962 int len;
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00001963
Damien Millerb38eff82000-04-01 11:09:21 +10001964 /* Send buffered output data to the socket. */
1965 if (FD_ISSET(c->sock, writeset) && buffer_len(&c->output) > 0) {
1966 len = write(c->sock, buffer_ptr(&c->output),
1967 buffer_len(&c->output));
1968 if (len <= 0)
Damien Miller76765c02002-01-22 23:21:15 +11001969 buffer_clear(&c->output);
Damien Millerb38eff82000-04-01 11:09:21 +10001970 else
1971 buffer_consume(&c->output, len);
1972 }
1973}
1974
Ben Lindstrombba81212001-06-25 05:01:22 +00001975static void
Damien Miller33b13562000-04-04 14:38:59 +10001976channel_handler_init_20(void)
1977{
Damien Millerde6987c2002-01-22 23:20:40 +11001978 channel_pre[SSH_CHANNEL_OPEN] = &channel_pre_open;
Damien Millerbd483e72000-04-30 10:00:53 +10001979 channel_pre[SSH_CHANNEL_X11_OPEN] = &channel_pre_x11_open;
Damien Miller33b13562000-04-04 14:38:59 +10001980 channel_pre[SSH_CHANNEL_PORT_LISTENER] = &channel_pre_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001981 channel_pre[SSH_CHANNEL_RPORT_LISTENER] = &channel_pre_listener;
Damien Millerbd483e72000-04-30 10:00:53 +10001982 channel_pre[SSH_CHANNEL_X11_LISTENER] = &channel_pre_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001983 channel_pre[SSH_CHANNEL_AUTH_SOCKET] = &channel_pre_listener;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001984 channel_pre[SSH_CHANNEL_CONNECTING] = &channel_pre_connecting;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001985 channel_pre[SSH_CHANNEL_DYNAMIC] = &channel_pre_dynamic;
Damien Millere1537f92010-01-26 13:26:22 +11001986 channel_pre[SSH_CHANNEL_MUX_LISTENER] = &channel_pre_listener;
1987 channel_pre[SSH_CHANNEL_MUX_CLIENT] = &channel_pre_mux_client;
Damien Miller33b13562000-04-04 14:38:59 +10001988
Damien Millerde6987c2002-01-22 23:20:40 +11001989 channel_post[SSH_CHANNEL_OPEN] = &channel_post_open;
Damien Miller33b13562000-04-04 14:38:59 +10001990 channel_post[SSH_CHANNEL_PORT_LISTENER] = &channel_post_port_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001991 channel_post[SSH_CHANNEL_RPORT_LISTENER] = &channel_post_port_listener;
Damien Millerbd483e72000-04-30 10:00:53 +10001992 channel_post[SSH_CHANNEL_X11_LISTENER] = &channel_post_x11_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001993 channel_post[SSH_CHANNEL_AUTH_SOCKET] = &channel_post_auth_listener;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001994 channel_post[SSH_CHANNEL_CONNECTING] = &channel_post_connecting;
Damien Millerde6987c2002-01-22 23:20:40 +11001995 channel_post[SSH_CHANNEL_DYNAMIC] = &channel_post_open;
Damien Millere1537f92010-01-26 13:26:22 +11001996 channel_post[SSH_CHANNEL_MUX_LISTENER] = &channel_post_mux_listener;
1997 channel_post[SSH_CHANNEL_MUX_CLIENT] = &channel_post_mux_client;
Damien Miller33b13562000-04-04 14:38:59 +10001998}
1999
Ben Lindstrombba81212001-06-25 05:01:22 +00002000static void
Damien Millerb38eff82000-04-01 11:09:21 +10002001channel_handler_init_13(void)
2002{
2003 channel_pre[SSH_CHANNEL_OPEN] = &channel_pre_open_13;
2004 channel_pre[SSH_CHANNEL_X11_OPEN] = &channel_pre_x11_open_13;
2005 channel_pre[SSH_CHANNEL_X11_LISTENER] = &channel_pre_listener;
2006 channel_pre[SSH_CHANNEL_PORT_LISTENER] = &channel_pre_listener;
2007 channel_pre[SSH_CHANNEL_AUTH_SOCKET] = &channel_pre_listener;
2008 channel_pre[SSH_CHANNEL_INPUT_DRAINING] = &channel_pre_input_draining;
2009 channel_pre[SSH_CHANNEL_OUTPUT_DRAINING] = &channel_pre_output_draining;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00002010 channel_pre[SSH_CHANNEL_CONNECTING] = &channel_pre_connecting;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00002011 channel_pre[SSH_CHANNEL_DYNAMIC] = &channel_pre_dynamic;
Damien Millerb38eff82000-04-01 11:09:21 +10002012
Damien Millerde6987c2002-01-22 23:20:40 +11002013 channel_post[SSH_CHANNEL_OPEN] = &channel_post_open;
Damien Millerb38eff82000-04-01 11:09:21 +10002014 channel_post[SSH_CHANNEL_X11_LISTENER] = &channel_post_x11_listener;
2015 channel_post[SSH_CHANNEL_PORT_LISTENER] = &channel_post_port_listener;
2016 channel_post[SSH_CHANNEL_AUTH_SOCKET] = &channel_post_auth_listener;
2017 channel_post[SSH_CHANNEL_OUTPUT_DRAINING] = &channel_post_output_drain_13;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00002018 channel_post[SSH_CHANNEL_CONNECTING] = &channel_post_connecting;
Damien Millerde6987c2002-01-22 23:20:40 +11002019 channel_post[SSH_CHANNEL_DYNAMIC] = &channel_post_open;
Damien Millerb38eff82000-04-01 11:09:21 +10002020}
2021
Ben Lindstrombba81212001-06-25 05:01:22 +00002022static void
Damien Millerb38eff82000-04-01 11:09:21 +10002023channel_handler_init_15(void)
2024{
Damien Millerde6987c2002-01-22 23:20:40 +11002025 channel_pre[SSH_CHANNEL_OPEN] = &channel_pre_open;
Damien Millerbd483e72000-04-30 10:00:53 +10002026 channel_pre[SSH_CHANNEL_X11_OPEN] = &channel_pre_x11_open;
Damien Millerb38eff82000-04-01 11:09:21 +10002027 channel_pre[SSH_CHANNEL_X11_LISTENER] = &channel_pre_listener;
2028 channel_pre[SSH_CHANNEL_PORT_LISTENER] = &channel_pre_listener;
2029 channel_pre[SSH_CHANNEL_AUTH_SOCKET] = &channel_pre_listener;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00002030 channel_pre[SSH_CHANNEL_CONNECTING] = &channel_pre_connecting;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00002031 channel_pre[SSH_CHANNEL_DYNAMIC] = &channel_pre_dynamic;
Damien Millerb38eff82000-04-01 11:09:21 +10002032
2033 channel_post[SSH_CHANNEL_X11_LISTENER] = &channel_post_x11_listener;
2034 channel_post[SSH_CHANNEL_PORT_LISTENER] = &channel_post_port_listener;
2035 channel_post[SSH_CHANNEL_AUTH_SOCKET] = &channel_post_auth_listener;
Damien Millerde6987c2002-01-22 23:20:40 +11002036 channel_post[SSH_CHANNEL_OPEN] = &channel_post_open;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00002037 channel_post[SSH_CHANNEL_CONNECTING] = &channel_post_connecting;
Damien Millerde6987c2002-01-22 23:20:40 +11002038 channel_post[SSH_CHANNEL_DYNAMIC] = &channel_post_open;
Damien Millerb38eff82000-04-01 11:09:21 +10002039}
2040
Ben Lindstrombba81212001-06-25 05:01:22 +00002041static void
Damien Millerb38eff82000-04-01 11:09:21 +10002042channel_handler_init(void)
2043{
2044 int i;
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00002045
Damien Miller9f0f5c62001-12-21 14:45:46 +11002046 for (i = 0; i < SSH_CHANNEL_MAX_TYPE; i++) {
Damien Millerb38eff82000-04-01 11:09:21 +10002047 channel_pre[i] = NULL;
2048 channel_post[i] = NULL;
2049 }
Damien Miller33b13562000-04-04 14:38:59 +10002050 if (compat20)
2051 channel_handler_init_20();
2052 else if (compat13)
Damien Millerb38eff82000-04-01 11:09:21 +10002053 channel_handler_init_13();
2054 else
2055 channel_handler_init_15();
2056}
2057
Damien Miller3ec27592001-10-12 11:35:04 +10002058/* gc dead channels */
2059static void
2060channel_garbage_collect(Channel *c)
2061{
2062 if (c == NULL)
2063 return;
2064 if (c->detach_user != NULL) {
Damien Miller39eda6e2005-11-05 14:52:50 +11002065 if (!chan_is_dead(c, c->detach_close))
Damien Miller3ec27592001-10-12 11:35:04 +10002066 return;
Damien Millerfbdeece2003-09-02 22:52:31 +10002067 debug2("channel %d: gc: notify user", c->self);
Damien Miller3ec27592001-10-12 11:35:04 +10002068 c->detach_user(c->self, NULL);
2069 /* if we still have a callback */
2070 if (c->detach_user != NULL)
2071 return;
Damien Millerfbdeece2003-09-02 22:52:31 +10002072 debug2("channel %d: gc: user detached", c->self);
Damien Miller3ec27592001-10-12 11:35:04 +10002073 }
2074 if (!chan_is_dead(c, 1))
2075 return;
Damien Millerfbdeece2003-09-02 22:52:31 +10002076 debug2("channel %d: garbage collecting", c->self);
Damien Miller3ec27592001-10-12 11:35:04 +10002077 channel_free(c);
2078}
2079
Ben Lindstrombba81212001-06-25 05:01:22 +00002080static void
Damien Millera6508752012-04-22 11:21:10 +10002081channel_handler(chan_fn *ftab[], fd_set *readset, fd_set *writeset,
2082 time_t *unpause_secs)
Damien Millerb38eff82000-04-01 11:09:21 +10002083{
2084 static int did_init = 0;
Darren Tucker876045b2010-01-08 17:08:00 +11002085 u_int i, oalloc;
Damien Millerb38eff82000-04-01 11:09:21 +10002086 Channel *c;
Damien Millera6508752012-04-22 11:21:10 +10002087 time_t now;
Damien Millerb38eff82000-04-01 11:09:21 +10002088
2089 if (!did_init) {
2090 channel_handler_init();
2091 did_init = 1;
2092 }
Darren Tuckerb759c9c2013-06-02 07:46:16 +10002093 now = monotime();
Damien Millera6508752012-04-22 11:21:10 +10002094 if (unpause_secs != NULL)
2095 *unpause_secs = 0;
Darren Tucker876045b2010-01-08 17:08:00 +11002096 for (i = 0, oalloc = channels_alloc; i < oalloc; i++) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002097 c = channels[i];
2098 if (c == NULL)
Damien Millerb38eff82000-04-01 11:09:21 +10002099 continue;
Darren Tucker876045b2010-01-08 17:08:00 +11002100 if (c->delayed) {
2101 if (ftab == channel_pre)
2102 c->delayed = 0;
2103 else
2104 continue;
2105 }
Damien Millera6508752012-04-22 11:21:10 +10002106 if (ftab[c->type] != NULL) {
2107 /*
2108 * Run handlers that are not paused.
2109 */
2110 if (c->notbefore <= now)
2111 (*ftab[c->type])(c, readset, writeset);
2112 else if (unpause_secs != NULL) {
2113 /*
2114 * Collect the time that the earliest
2115 * channel comes off pause.
2116 */
2117 debug3("%s: chan %d: skip for %d more seconds",
2118 __func__, c->self,
2119 (int)(c->notbefore - now));
2120 if (*unpause_secs == 0 ||
2121 (c->notbefore - now) < *unpause_secs)
2122 *unpause_secs = c->notbefore - now;
2123 }
2124 }
Damien Miller3ec27592001-10-12 11:35:04 +10002125 channel_garbage_collect(c);
Damien Millerb38eff82000-04-01 11:09:21 +10002126 }
Damien Millera6508752012-04-22 11:21:10 +10002127 if (unpause_secs != NULL && *unpause_secs != 0)
2128 debug3("%s: first channel unpauses in %d seconds",
2129 __func__, (int)*unpause_secs);
Damien Millerb38eff82000-04-01 11:09:21 +10002130}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002131
Ben Lindstrome9c99912001-06-09 00:41:05 +00002132/*
2133 * Allocate/update select bitmasks and add any bits relevant to channels in
2134 * select bitmasks.
2135 */
Damien Miller4af51302000-04-16 11:18:38 +10002136void
Ben Lindstrombe2cc432001-04-04 23:46:07 +00002137channel_prepare_select(fd_set **readsetp, fd_set **writesetp, int *maxfdp,
Damien Millerba77e1f2012-04-23 18:21:05 +10002138 u_int *nallocp, time_t *minwait_secs, int rekeying)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002139{
Damien Miller36812092006-03-26 14:22:47 +11002140 u_int n, sz, nfdset;
Damien Miller5e953212001-01-30 09:14:00 +11002141
2142 n = MAX(*maxfdp, channel_max_fd);
2143
Damien Miller36812092006-03-26 14:22:47 +11002144 nfdset = howmany(n+1, NFDBITS);
2145 /* Explicitly test here, because xrealloc isn't always called */
2146 if (nfdset && SIZE_T_MAX / nfdset < sizeof(fd_mask))
2147 fatal("channel_prepare_select: max_fd (%d) is too large", n);
2148 sz = nfdset * sizeof(fd_mask);
2149
Ben Lindstrom16d29d52001-07-18 16:01:46 +00002150 /* perhaps check sz < nalloc/2 and shrink? */
2151 if (*readsetp == NULL || sz > *nallocp) {
Damien Miller36812092006-03-26 14:22:47 +11002152 *readsetp = xrealloc(*readsetp, nfdset, sizeof(fd_mask));
2153 *writesetp = xrealloc(*writesetp, nfdset, sizeof(fd_mask));
Ben Lindstrom16d29d52001-07-18 16:01:46 +00002154 *nallocp = sz;
Damien Miller5e953212001-01-30 09:14:00 +11002155 }
Ben Lindstrom16d29d52001-07-18 16:01:46 +00002156 *maxfdp = n;
Damien Miller5e953212001-01-30 09:14:00 +11002157 memset(*readsetp, 0, sz);
2158 memset(*writesetp, 0, sz);
2159
Ben Lindstrombe2cc432001-04-04 23:46:07 +00002160 if (!rekeying)
Damien Millera6508752012-04-22 11:21:10 +10002161 channel_handler(channel_pre, *readsetp, *writesetp,
2162 minwait_secs);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002163}
2164
Ben Lindstrome9c99912001-06-09 00:41:05 +00002165/*
2166 * After select, perform any appropriate operations for channels which have
2167 * events pending.
2168 */
Damien Miller4af51302000-04-16 11:18:38 +10002169void
Damien Millerd62f2ca2006-03-26 13:57:41 +11002170channel_after_select(fd_set *readset, fd_set *writeset)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002171{
Damien Millera6508752012-04-22 11:21:10 +10002172 channel_handler(channel_post, readset, writeset, NULL);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002173}
2174
Ben Lindstrome9c99912001-06-09 00:41:05 +00002175
Damien Miller5e953212001-01-30 09:14:00 +11002176/* If there is data to send to the connection, enqueue some of it now. */
Damien Miller4af51302000-04-16 11:18:38 +10002177void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00002178channel_output_poll(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002179{
Damien Millerb38eff82000-04-01 11:09:21 +10002180 Channel *c;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10002181 u_int i, len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002182
Damien Miller95def091999-11-25 00:26:21 +11002183 for (i = 0; i < channels_alloc; i++) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002184 c = channels[i];
2185 if (c == NULL)
2186 continue;
Damien Miller34132e52000-01-14 15:45:46 +11002187
Ben Lindstrome9c99912001-06-09 00:41:05 +00002188 /*
2189 * We are only interested in channels that can have buffered
2190 * incoming data.
2191 */
Damien Miller34132e52000-01-14 15:45:46 +11002192 if (compat13) {
Damien Millerb38eff82000-04-01 11:09:21 +10002193 if (c->type != SSH_CHANNEL_OPEN &&
2194 c->type != SSH_CHANNEL_INPUT_DRAINING)
Damien Miller34132e52000-01-14 15:45:46 +11002195 continue;
2196 } else {
Damien Millerb38eff82000-04-01 11:09:21 +10002197 if (c->type != SSH_CHANNEL_OPEN)
Damien Miller34132e52000-01-14 15:45:46 +11002198 continue;
Damien Miller34132e52000-01-14 15:45:46 +11002199 }
Damien Millerefb4afe2000-04-12 18:45:05 +10002200 if (compat20 &&
2201 (c->flags & (CHAN_CLOSE_SENT|CHAN_CLOSE_RCVD))) {
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00002202 /* XXX is this true? */
Damien Miller3ec27592001-10-12 11:35:04 +10002203 debug3("channel %d: will not send data after close", c->self);
Damien Miller33b13562000-04-04 14:38:59 +10002204 continue;
2205 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002206
Damien Miller95def091999-11-25 00:26:21 +11002207 /* Get the amount of buffered data for this channel. */
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00002208 if ((c->istate == CHAN_INPUT_OPEN ||
2209 c->istate == CHAN_INPUT_WAIT_DRAIN) &&
2210 (len = buffer_len(&c->input)) > 0) {
Damien Millerd27b9472005-12-13 19:29:02 +11002211 if (c->datagram) {
2212 if (len > 0) {
2213 u_char *data;
2214 u_int dlen;
2215
2216 data = buffer_get_string(&c->input,
2217 &dlen);
Damien Miller7d457182010-08-05 23:09:48 +10002218 if (dlen > c->remote_window ||
2219 dlen > c->remote_maxpacket) {
2220 debug("channel %d: datagram "
2221 "too big for channel",
2222 c->self);
Darren Tuckera627d422013-06-02 07:31:17 +10002223 free(data);
Damien Miller7d457182010-08-05 23:09:48 +10002224 continue;
2225 }
Damien Millerd27b9472005-12-13 19:29:02 +11002226 packet_start(SSH2_MSG_CHANNEL_DATA);
2227 packet_put_int(c->remote_id);
2228 packet_put_string(data, dlen);
2229 packet_send();
2230 c->remote_window -= dlen + 4;
Darren Tuckera627d422013-06-02 07:31:17 +10002231 free(data);
Damien Millerd27b9472005-12-13 19:29:02 +11002232 }
2233 continue;
2234 }
Ben Lindstrome9c99912001-06-09 00:41:05 +00002235 /*
2236 * Send some data for the other side over the secure
2237 * connection.
2238 */
Damien Miller33b13562000-04-04 14:38:59 +10002239 if (compat20) {
2240 if (len > c->remote_window)
2241 len = c->remote_window;
2242 if (len > c->remote_maxpacket)
2243 len = c->remote_maxpacket;
Damien Miller95def091999-11-25 00:26:21 +11002244 } else {
Damien Miller33b13562000-04-04 14:38:59 +10002245 if (packet_is_interactive()) {
2246 if (len > 1024)
2247 len = 512;
2248 } else {
2249 /* Keep the packets at reasonable size. */
2250 if (len > packet_get_maxsize()/2)
2251 len = packet_get_maxsize()/2;
2252 }
Damien Miller95def091999-11-25 00:26:21 +11002253 }
Damien Millerb38eff82000-04-01 11:09:21 +10002254 if (len > 0) {
Damien Miller33b13562000-04-04 14:38:59 +10002255 packet_start(compat20 ?
2256 SSH2_MSG_CHANNEL_DATA : SSH_MSG_CHANNEL_DATA);
Damien Millerb38eff82000-04-01 11:09:21 +10002257 packet_put_int(c->remote_id);
2258 packet_put_string(buffer_ptr(&c->input), len);
2259 packet_send();
2260 buffer_consume(&c->input, len);
2261 c->remote_window -= len;
Damien Millerb38eff82000-04-01 11:09:21 +10002262 }
2263 } else if (c->istate == CHAN_INPUT_WAIT_DRAIN) {
Damien Miller95def091999-11-25 00:26:21 +11002264 if (compat13)
2265 fatal("cannot happen: istate == INPUT_WAIT_DRAIN for proto 1.3");
Damien Miller5428f641999-11-25 11:54:57 +11002266 /*
2267 * input-buffer is empty and read-socket shutdown:
Ben Lindstromcf159442002-03-26 03:26:24 +00002268 * tell peer, that we will not send more data: send IEOF.
2269 * hack for extended data: delay EOF if EFD still in use.
Damien Miller5428f641999-11-25 11:54:57 +11002270 */
Ben Lindstromcf159442002-03-26 03:26:24 +00002271 if (CHANNEL_EFD_INPUT_ACTIVE(c))
Damien Miller0dc1bef2005-07-17 17:22:45 +10002272 debug2("channel %d: ibuf_empty delayed efd %d/(%d)",
2273 c->self, c->efd, buffer_len(&c->extended));
Ben Lindstromcf159442002-03-26 03:26:24 +00002274 else
2275 chan_ibuf_empty(c);
Damien Miller95def091999-11-25 00:26:21 +11002276 }
Damien Miller33b13562000-04-04 14:38:59 +10002277 /* Send extended data, i.e. stderr */
2278 if (compat20 &&
Ben Lindstromcf159442002-03-26 03:26:24 +00002279 !(c->flags & CHAN_EOF_SENT) &&
Damien Miller33b13562000-04-04 14:38:59 +10002280 c->remote_window > 0 &&
2281 (len = buffer_len(&c->extended)) > 0 &&
2282 c->extended_usage == CHAN_EXTENDED_READ) {
Ben Lindstrom4fed2be2002-06-25 23:17:36 +00002283 debug2("channel %d: rwin %u elen %u euse %d",
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00002284 c->self, c->remote_window, buffer_len(&c->extended),
2285 c->extended_usage);
Damien Miller33b13562000-04-04 14:38:59 +10002286 if (len > c->remote_window)
2287 len = c->remote_window;
2288 if (len > c->remote_maxpacket)
2289 len = c->remote_maxpacket;
2290 packet_start(SSH2_MSG_CHANNEL_EXTENDED_DATA);
2291 packet_put_int(c->remote_id);
2292 packet_put_int(SSH2_EXTENDED_DATA_STDERR);
2293 packet_put_string(buffer_ptr(&c->extended), len);
2294 packet_send();
2295 buffer_consume(&c->extended, len);
2296 c->remote_window -= len;
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00002297 debug2("channel %d: sent ext data %d", c->self, len);
Damien Miller33b13562000-04-04 14:38:59 +10002298 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002299 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002300}
2301
Ben Lindstrome9c99912001-06-09 00:41:05 +00002302
2303/* -- protocol input */
Damien Millerd79b4242006-03-31 23:11:44 +11002304
2305/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002306void
Damien Miller630d6f42002-01-22 23:17:30 +11002307channel_input_data(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002308{
Damien Miller34132e52000-01-14 15:45:46 +11002309 int id;
Damien Miller95def091999-11-25 00:26:21 +11002310 char *data;
Damien Miller7d457182010-08-05 23:09:48 +10002311 u_int data_len, win_len;
Damien Millerb38eff82000-04-01 11:09:21 +10002312 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002313
Damien Miller95def091999-11-25 00:26:21 +11002314 /* Get the channel number and verify it. */
Damien Miller34132e52000-01-14 15:45:46 +11002315 id = packet_get_int();
Damien Millerb38eff82000-04-01 11:09:21 +10002316 c = channel_lookup(id);
2317 if (c == NULL)
Damien Miller34132e52000-01-14 15:45:46 +11002318 packet_disconnect("Received data for nonexistent channel %d.", id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002319
Damien Miller95def091999-11-25 00:26:21 +11002320 /* Ignore any data for non-open channels (might happen on close) */
Damien Millerb38eff82000-04-01 11:09:21 +10002321 if (c->type != SSH_CHANNEL_OPEN &&
2322 c->type != SSH_CHANNEL_X11_OPEN)
Damien Miller34132e52000-01-14 15:45:46 +11002323 return;
2324
Damien Miller95def091999-11-25 00:26:21 +11002325 /* Get the data. */
Damien Millerdb255ca2008-05-19 14:59:37 +10002326 data = packet_get_string_ptr(&data_len);
Damien Miller7d457182010-08-05 23:09:48 +10002327 win_len = data_len;
2328 if (c->datagram)
2329 win_len += 4; /* string length header */
Damien Millerb38eff82000-04-01 11:09:21 +10002330
Damien Millera04ad492004-01-21 11:02:09 +11002331 /*
2332 * Ignore data for protocol > 1.3 if output end is no longer open.
2333 * For protocol 2 the sending side is reducing its window as it sends
2334 * data, so we must 'fake' consumption of the data in order to ensure
2335 * that window updates are sent back. Otherwise the connection might
2336 * deadlock.
2337 */
2338 if (!compat13 && c->ostate != CHAN_OUTPUT_OPEN) {
2339 if (compat20) {
Damien Miller7d457182010-08-05 23:09:48 +10002340 c->local_window -= win_len;
2341 c->local_consumed += win_len;
Damien Millera04ad492004-01-21 11:02:09 +11002342 }
Damien Millera04ad492004-01-21 11:02:09 +11002343 return;
2344 }
2345
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00002346 if (compat20) {
Damien Miller7d457182010-08-05 23:09:48 +10002347 if (win_len > c->local_maxpacket) {
Damien Miller996acd22003-04-09 20:59:48 +10002348 logit("channel %d: rcvd big packet %d, maxpack %d",
Damien Miller7d457182010-08-05 23:09:48 +10002349 c->self, win_len, c->local_maxpacket);
Damien Miller33b13562000-04-04 14:38:59 +10002350 }
Damien Miller7d457182010-08-05 23:09:48 +10002351 if (win_len > c->local_window) {
Damien Miller996acd22003-04-09 20:59:48 +10002352 logit("channel %d: rcvd too much data %d, win %d",
Damien Miller7d457182010-08-05 23:09:48 +10002353 c->self, win_len, c->local_window);
Damien Miller33b13562000-04-04 14:38:59 +10002354 return;
2355 }
Damien Miller7d457182010-08-05 23:09:48 +10002356 c->local_window -= win_len;
Damien Miller33b13562000-04-04 14:38:59 +10002357 }
Damien Millerd27b9472005-12-13 19:29:02 +11002358 if (c->datagram)
2359 buffer_put_string(&c->output, data, data_len);
2360 else
2361 buffer_append(&c->output, data, data_len);
Damien Millerdb255ca2008-05-19 14:59:37 +10002362 packet_check_eom();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002363}
Ben Lindstrome9c99912001-06-09 00:41:05 +00002364
Damien Millerd79b4242006-03-31 23:11:44 +11002365/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002366void
Damien Miller630d6f42002-01-22 23:17:30 +11002367channel_input_extended_data(int type, u_int32_t seq, void *ctxt)
Damien Miller33b13562000-04-04 14:38:59 +10002368{
2369 int id;
Damien Miller33b13562000-04-04 14:38:59 +10002370 char *data;
Ben Lindstromdaa21792002-06-25 23:15:30 +00002371 u_int data_len, tcode;
Damien Miller33b13562000-04-04 14:38:59 +10002372 Channel *c;
2373
2374 /* Get the channel number and verify it. */
2375 id = packet_get_int();
2376 c = channel_lookup(id);
2377
2378 if (c == NULL)
2379 packet_disconnect("Received extended_data for bad channel %d.", id);
2380 if (c->type != SSH_CHANNEL_OPEN) {
Damien Miller996acd22003-04-09 20:59:48 +10002381 logit("channel %d: ext data for non open", id);
Damien Miller33b13562000-04-04 14:38:59 +10002382 return;
2383 }
Ben Lindstromcf159442002-03-26 03:26:24 +00002384 if (c->flags & CHAN_EOF_RCVD) {
2385 if (datafellows & SSH_BUG_EXTEOF)
2386 debug("channel %d: accepting ext data after eof", id);
2387 else
2388 packet_disconnect("Received extended_data after EOF "
2389 "on channel %d.", id);
2390 }
Damien Miller33b13562000-04-04 14:38:59 +10002391 tcode = packet_get_int();
2392 if (c->efd == -1 ||
2393 c->extended_usage != CHAN_EXTENDED_WRITE ||
2394 tcode != SSH2_EXTENDED_DATA_STDERR) {
Damien Miller996acd22003-04-09 20:59:48 +10002395 logit("channel %d: bad ext data", c->self);
Damien Miller33b13562000-04-04 14:38:59 +10002396 return;
2397 }
2398 data = packet_get_string(&data_len);
Damien Miller48b03fc2002-01-22 23:11:40 +11002399 packet_check_eom();
Damien Miller33b13562000-04-04 14:38:59 +10002400 if (data_len > c->local_window) {
Damien Miller996acd22003-04-09 20:59:48 +10002401 logit("channel %d: rcvd too much extended_data %d, win %d",
Damien Miller33b13562000-04-04 14:38:59 +10002402 c->self, data_len, c->local_window);
Darren Tuckera627d422013-06-02 07:31:17 +10002403 free(data);
Damien Miller33b13562000-04-04 14:38:59 +10002404 return;
2405 }
Damien Millerd3444942000-09-30 14:20:03 +11002406 debug2("channel %d: rcvd ext data %d", c->self, data_len);
Damien Miller33b13562000-04-04 14:38:59 +10002407 c->local_window -= data_len;
2408 buffer_append(&c->extended, data, data_len);
Darren Tuckera627d422013-06-02 07:31:17 +10002409 free(data);
Damien Miller33b13562000-04-04 14:38:59 +10002410}
2411
Damien Millerd79b4242006-03-31 23:11:44 +11002412/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002413void
Damien Miller630d6f42002-01-22 23:17:30 +11002414channel_input_ieof(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10002415{
2416 int id;
2417 Channel *c;
2418
Damien Millerb38eff82000-04-01 11:09:21 +10002419 id = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11002420 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10002421 c = channel_lookup(id);
2422 if (c == NULL)
2423 packet_disconnect("Received ieof for nonexistent channel %d.", id);
2424 chan_rcvd_ieof(c);
Ben Lindstrom944c4f02001-09-18 05:51:13 +00002425
2426 /* XXX force input close */
Damien Millera90fc082002-01-22 23:19:38 +11002427 if (c->force_drain && c->istate == CHAN_INPUT_OPEN) {
Ben Lindstrom944c4f02001-09-18 05:51:13 +00002428 debug("channel %d: FORCE input drain", c->self);
2429 c->istate = CHAN_INPUT_WAIT_DRAIN;
Damien Miller73f10742002-01-22 23:34:52 +11002430 if (buffer_len(&c->input) == 0)
2431 chan_ibuf_empty(c);
Ben Lindstrom944c4f02001-09-18 05:51:13 +00002432 }
2433
Damien Millerb38eff82000-04-01 11:09:21 +10002434}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002435
Damien Millerd79b4242006-03-31 23:11:44 +11002436/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002437void
Damien Miller630d6f42002-01-22 23:17:30 +11002438channel_input_close(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002439{
Damien Millerb38eff82000-04-01 11:09:21 +10002440 int id;
2441 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002442
Damien Millerb38eff82000-04-01 11:09:21 +10002443 id = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11002444 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10002445 c = channel_lookup(id);
2446 if (c == NULL)
2447 packet_disconnect("Received close for nonexistent channel %d.", id);
Damien Miller5428f641999-11-25 11:54:57 +11002448
2449 /*
2450 * Send a confirmation that we have closed the channel and no more
2451 * data is coming for it.
2452 */
Damien Miller95def091999-11-25 00:26:21 +11002453 packet_start(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION);
Damien Millerb38eff82000-04-01 11:09:21 +10002454 packet_put_int(c->remote_id);
Damien Miller95def091999-11-25 00:26:21 +11002455 packet_send();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002456
Damien Miller5428f641999-11-25 11:54:57 +11002457 /*
2458 * If the channel is in closed state, we have sent a close request,
2459 * and the other side will eventually respond with a confirmation.
2460 * Thus, we cannot free the channel here, because then there would be
2461 * no-one to receive the confirmation. The channel gets freed when
2462 * the confirmation arrives.
2463 */
Damien Millerb38eff82000-04-01 11:09:21 +10002464 if (c->type != SSH_CHANNEL_CLOSED) {
Damien Miller5428f641999-11-25 11:54:57 +11002465 /*
2466 * Not a closed channel - mark it as draining, which will
2467 * cause it to be freed later.
2468 */
Damien Miller76765c02002-01-22 23:21:15 +11002469 buffer_clear(&c->input);
Damien Millerb38eff82000-04-01 11:09:21 +10002470 c->type = SSH_CHANNEL_OUTPUT_DRAINING;
Damien Miller95def091999-11-25 00:26:21 +11002471 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002472}
2473
Damien Millerb38eff82000-04-01 11:09:21 +10002474/* proto version 1.5 overloads CLOSE_CONFIRMATION with OCLOSE */
Damien Millerd79b4242006-03-31 23:11:44 +11002475/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002476void
Damien Miller630d6f42002-01-22 23:17:30 +11002477channel_input_oclose(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002478{
Damien Millerb38eff82000-04-01 11:09:21 +10002479 int id = packet_get_int();
2480 Channel *c = channel_lookup(id);
Damien Miller66823cd2002-01-22 23:11:38 +11002481
Damien Miller48b03fc2002-01-22 23:11:40 +11002482 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10002483 if (c == NULL)
2484 packet_disconnect("Received oclose for nonexistent channel %d.", id);
2485 chan_rcvd_oclose(c);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002486}
2487
Damien Millerd79b4242006-03-31 23:11:44 +11002488/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002489void
Damien Miller630d6f42002-01-22 23:17:30 +11002490channel_input_close_confirmation(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10002491{
2492 int id = packet_get_int();
2493 Channel *c = channel_lookup(id);
2494
Damien Miller48b03fc2002-01-22 23:11:40 +11002495 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10002496 if (c == NULL)
2497 packet_disconnect("Received close confirmation for "
2498 "out-of-range channel %d.", id);
Damien Miller36187092013-06-10 13:07:11 +10002499 if (c->type != SSH_CHANNEL_CLOSED && c->type != SSH_CHANNEL_ABANDONED)
Damien Millerb38eff82000-04-01 11:09:21 +10002500 packet_disconnect("Received close confirmation for "
2501 "non-closed channel %d (type %d).", id, c->type);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002502 channel_free(c);
Damien Millerb38eff82000-04-01 11:09:21 +10002503}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002504
Damien Millerd79b4242006-03-31 23:11:44 +11002505/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002506void
Damien Miller630d6f42002-01-22 23:17:30 +11002507channel_input_open_confirmation(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002508{
Damien Millerb38eff82000-04-01 11:09:21 +10002509 int id, remote_id;
2510 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002511
Damien Millerb38eff82000-04-01 11:09:21 +10002512 id = packet_get_int();
2513 c = channel_lookup(id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002514
Damien Millerb38eff82000-04-01 11:09:21 +10002515 if (c==NULL || c->type != SSH_CHANNEL_OPENING)
2516 packet_disconnect("Received open confirmation for "
2517 "non-opening channel %d.", id);
2518 remote_id = packet_get_int();
Damien Miller5428f641999-11-25 11:54:57 +11002519 /* Record the remote channel number and mark that the channel is now open. */
Damien Millerb38eff82000-04-01 11:09:21 +10002520 c->remote_id = remote_id;
2521 c->type = SSH_CHANNEL_OPEN;
Damien Miller33b13562000-04-04 14:38:59 +10002522
2523 if (compat20) {
2524 c->remote_window = packet_get_int();
2525 c->remote_maxpacket = packet_get_int();
Damien Millerb84886b2008-05-19 15:05:07 +10002526 if (c->open_confirm) {
Damien Millerd3444942000-09-30 14:20:03 +11002527 debug2("callback start");
Damien Millerd530f5f2010-05-21 14:57:10 +10002528 c->open_confirm(c->self, 1, c->open_confirm_ctx);
Damien Millerd3444942000-09-30 14:20:03 +11002529 debug2("callback done");
Damien Miller33b13562000-04-04 14:38:59 +10002530 }
Damien Millerfbdeece2003-09-02 22:52:31 +10002531 debug2("channel %d: open confirm rwindow %u rmax %u", c->self,
Damien Miller33b13562000-04-04 14:38:59 +10002532 c->remote_window, c->remote_maxpacket);
2533 }
Damien Miller48b03fc2002-01-22 23:11:40 +11002534 packet_check_eom();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002535}
2536
Ben Lindstrombba81212001-06-25 05:01:22 +00002537static char *
Ben Lindstrom69128662001-05-08 20:07:39 +00002538reason2txt(int reason)
2539{
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00002540 switch (reason) {
Ben Lindstrom69128662001-05-08 20:07:39 +00002541 case SSH2_OPEN_ADMINISTRATIVELY_PROHIBITED:
2542 return "administratively prohibited";
2543 case SSH2_OPEN_CONNECT_FAILED:
2544 return "connect failed";
2545 case SSH2_OPEN_UNKNOWN_CHANNEL_TYPE:
2546 return "unknown channel type";
2547 case SSH2_OPEN_RESOURCE_SHORTAGE:
2548 return "resource shortage";
2549 }
Ben Lindstrome2595442001-06-05 20:01:39 +00002550 return "unknown reason";
Ben Lindstrom69128662001-05-08 20:07:39 +00002551}
2552
Damien Millerd79b4242006-03-31 23:11:44 +11002553/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002554void
Damien Miller630d6f42002-01-22 23:17:30 +11002555channel_input_open_failure(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002556{
Kevin Steves12057502001-02-05 14:54:34 +00002557 int id, reason;
2558 char *msg = NULL, *lang = NULL;
Damien Millerb38eff82000-04-01 11:09:21 +10002559 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002560
Damien Millerb38eff82000-04-01 11:09:21 +10002561 id = packet_get_int();
2562 c = channel_lookup(id);
2563
2564 if (c==NULL || c->type != SSH_CHANNEL_OPENING)
2565 packet_disconnect("Received open failure for "
2566 "non-opening channel %d.", id);
Damien Miller33b13562000-04-04 14:38:59 +10002567 if (compat20) {
Kevin Steves12057502001-02-05 14:54:34 +00002568 reason = packet_get_int();
Ben Lindstromf3436742001-04-29 19:52:00 +00002569 if (!(datafellows & SSH_BUG_OPENFAILURE)) {
Kevin Steves12057502001-02-05 14:54:34 +00002570 msg = packet_get_string(NULL);
2571 lang = packet_get_string(NULL);
2572 }
Damien Miller996acd22003-04-09 20:59:48 +10002573 logit("channel %d: open failed: %s%s%s", id,
Ben Lindstrom69128662001-05-08 20:07:39 +00002574 reason2txt(reason), msg ? ": ": "", msg ? msg : "");
Darren Tuckera627d422013-06-02 07:31:17 +10002575 free(msg);
2576 free(lang);
Damien Millerd530f5f2010-05-21 14:57:10 +10002577 if (c->open_confirm) {
2578 debug2("callback start");
2579 c->open_confirm(c->self, 0, c->open_confirm_ctx);
2580 debug2("callback done");
2581 }
Damien Miller33b13562000-04-04 14:38:59 +10002582 }
Damien Miller48b03fc2002-01-22 23:11:40 +11002583 packet_check_eom();
Damien Miller7a606212009-01-28 16:22:34 +11002584 /* Schedule the channel for cleanup/deletion. */
2585 chan_mark_dead(c);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002586}
2587
Damien Millerd79b4242006-03-31 23:11:44 +11002588/* ARGSUSED */
Damien Miller33b13562000-04-04 14:38:59 +10002589void
Damien Miller630d6f42002-01-22 23:17:30 +11002590channel_input_window_adjust(int type, u_int32_t seq, void *ctxt)
Damien Miller33b13562000-04-04 14:38:59 +10002591{
2592 Channel *c;
Ben Lindstrom4fed2be2002-06-25 23:17:36 +00002593 int id;
2594 u_int adjust;
Damien Miller33b13562000-04-04 14:38:59 +10002595
2596 if (!compat20)
2597 return;
2598
2599 /* Get the channel number and verify it. */
2600 id = packet_get_int();
2601 c = channel_lookup(id);
2602
Damien Millerd47c62a2005-12-13 19:33:57 +11002603 if (c == NULL) {
2604 logit("Received window adjust for non-open channel %d.", id);
Damien Miller33b13562000-04-04 14:38:59 +10002605 return;
2606 }
2607 adjust = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11002608 packet_check_eom();
Ben Lindstrom4fed2be2002-06-25 23:17:36 +00002609 debug2("channel %d: rcvd adjust %u", id, adjust);
Damien Miller33b13562000-04-04 14:38:59 +10002610 c->remote_window += adjust;
2611}
2612
Damien Millerd79b4242006-03-31 23:11:44 +11002613/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002614void
Damien Miller630d6f42002-01-22 23:17:30 +11002615channel_input_port_open(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002616{
Ben Lindstrome9c99912001-06-09 00:41:05 +00002617 Channel *c = NULL;
2618 u_short host_port;
2619 char *host, *originator_string;
Damien Millerbd740252008-05-19 15:37:09 +10002620 int remote_id;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002621
Ben Lindstrome9c99912001-06-09 00:41:05 +00002622 remote_id = packet_get_int();
2623 host = packet_get_string(NULL);
2624 host_port = packet_get_int();
2625
2626 if (packet_get_protocol_flags() & SSH_PROTOFLAG_HOST_IN_FWD_OPEN) {
2627 originator_string = packet_get_string(NULL);
2628 } else {
2629 originator_string = xstrdup("unknown (remote did not supply name)");
2630 }
Damien Miller48b03fc2002-01-22 23:11:40 +11002631 packet_check_eom();
Damien Millerbd740252008-05-19 15:37:09 +10002632 c = channel_connect_to(host, host_port,
2633 "connected socket", originator_string);
Darren Tuckera627d422013-06-02 07:31:17 +10002634 free(originator_string);
2635 free(host);
Ben Lindstrome9c99912001-06-09 00:41:05 +00002636 if (c == NULL) {
2637 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
2638 packet_put_int(remote_id);
2639 packet_send();
Damien Millerbd740252008-05-19 15:37:09 +10002640 } else
2641 c->remote_id = remote_id;
Ben Lindstrom5744dc42001-04-13 23:28:01 +00002642}
2643
Damien Millerb84886b2008-05-19 15:05:07 +10002644/* ARGSUSED */
2645void
2646channel_input_status_confirm(int type, u_int32_t seq, void *ctxt)
2647{
2648 Channel *c;
2649 struct channel_confirm *cc;
Damien Miller16a73072008-12-08 09:55:25 +11002650 int id;
Damien Millerb84886b2008-05-19 15:05:07 +10002651
2652 /* Reset keepalive timeout */
Darren Tuckerf7288d72009-06-21 18:12:20 +10002653 packet_set_alive_timeouts(0);
Damien Millerb84886b2008-05-19 15:05:07 +10002654
Damien Miller16a73072008-12-08 09:55:25 +11002655 id = packet_get_int();
Damien Millerb84886b2008-05-19 15:05:07 +10002656 packet_check_eom();
2657
Damien Miller16a73072008-12-08 09:55:25 +11002658 debug2("channel_input_status_confirm: type %d id %d", type, id);
Damien Millerb84886b2008-05-19 15:05:07 +10002659
Damien Miller16a73072008-12-08 09:55:25 +11002660 if ((c = channel_lookup(id)) == NULL) {
2661 logit("channel_input_status_confirm: %d: unknown", id);
Damien Millerb84886b2008-05-19 15:05:07 +10002662 return;
2663 }
2664 ;
2665 if ((cc = TAILQ_FIRST(&c->status_confirms)) == NULL)
2666 return;
2667 cc->cb(type, c, cc->ctx);
2668 TAILQ_REMOVE(&c->status_confirms, cc, entry);
2669 bzero(cc, sizeof(*cc));
Darren Tuckera627d422013-06-02 07:31:17 +10002670 free(cc);
Damien Millerb84886b2008-05-19 15:05:07 +10002671}
Ben Lindstrom5744dc42001-04-13 23:28:01 +00002672
Ben Lindstrome9c99912001-06-09 00:41:05 +00002673/* -- tcp forwarding */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002674
Ben Lindstrom908afed2001-10-03 17:34:59 +00002675void
2676channel_set_af(int af)
2677{
2678 IPv4or6 = af;
2679}
2680
Damien Millerf6dff7c2011-09-22 21:38:52 +10002681
2682/*
2683 * Determine whether or not a port forward listens to loopback, the
2684 * specified address or wildcard. On the client, a specified bind
2685 * address will always override gateway_ports. On the server, a
2686 * gateway_ports of 1 (``yes'') will override the client's specification
2687 * and force a wildcard bind, whereas a value of 2 (``clientspecified'')
2688 * will bind to whatever address the client asked for.
2689 *
2690 * Special-case listen_addrs are:
2691 *
2692 * "0.0.0.0" -> wildcard v4/v6 if SSH_OLD_FORWARD_ADDR
2693 * "" (empty string), "*" -> wildcard v4/v6
2694 * "localhost" -> loopback v4/v6
2695 */
2696static const char *
2697channel_fwd_bind_addr(const char *listen_addr, int *wildcardp,
2698 int is_client, int gateway_ports)
2699{
2700 const char *addr = NULL;
2701 int wildcard = 0;
2702
2703 if (listen_addr == NULL) {
2704 /* No address specified: default to gateway_ports setting */
2705 if (gateway_ports)
2706 wildcard = 1;
2707 } else if (gateway_ports || is_client) {
2708 if (((datafellows & SSH_OLD_FORWARD_ADDR) &&
2709 strcmp(listen_addr, "0.0.0.0") == 0 && is_client == 0) ||
2710 *listen_addr == '\0' || strcmp(listen_addr, "*") == 0 ||
2711 (!is_client && gateway_ports == 1))
2712 wildcard = 1;
2713 else if (strcmp(listen_addr, "localhost") != 0)
2714 addr = listen_addr;
2715 }
2716 if (wildcardp != NULL)
2717 *wildcardp = wildcard;
2718 return addr;
2719}
2720
Damien Millerb16461c2002-01-22 23:29:22 +11002721static int
Damien Miller4bf648f2009-02-14 16:28:21 +11002722channel_setup_fwd_listener(int type, const char *listen_addr,
2723 u_short listen_port, int *allocated_listen_port,
Damien Millerb16461c2002-01-22 23:29:22 +11002724 const char *host_to_connect, u_short port_to_connect, int gateway_ports)
Damien Miller0bc1bd82000-11-13 22:57:25 +11002725{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002726 Channel *c;
Damien Miller5e7fd072005-11-05 14:53:39 +11002727 int sock, r, success = 0, wildcard = 0, is_client;
Damien Miller34132e52000-01-14 15:45:46 +11002728 struct addrinfo hints, *ai, *aitop;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002729 const char *host, *addr;
Damien Millerb16461c2002-01-22 23:29:22 +11002730 char ntop[NI_MAXHOST], strport[NI_MAXSERV];
Damien Miller4bf648f2009-02-14 16:28:21 +11002731 in_port_t *lport_p;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002732
Damien Millerb16461c2002-01-22 23:29:22 +11002733 host = (type == SSH_CHANNEL_RPORT_LISTENER) ?
2734 listen_addr : host_to_connect;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002735 is_client = (type == SSH_CHANNEL_PORT_LISTENER);
Kevin Steves12057502001-02-05 14:54:34 +00002736
Damien Millerb16461c2002-01-22 23:29:22 +11002737 if (host == NULL) {
2738 error("No forward host name.");
Damien Millera7270302005-07-06 09:36:05 +10002739 return 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002740 }
Damien Miller9576ac42009-01-28 16:30:33 +11002741 if (strlen(host) >= NI_MAXHOST) {
Kevin Steves12057502001-02-05 14:54:34 +00002742 error("Forward host name too long.");
Damien Millera7270302005-07-06 09:36:05 +10002743 return 0;
Kevin Steves12057502001-02-05 14:54:34 +00002744 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002745
Damien Millerf6dff7c2011-09-22 21:38:52 +10002746 /* Determine the bind address, cf. channel_fwd_bind_addr() comment */
2747 addr = channel_fwd_bind_addr(listen_addr, &wildcard,
2748 is_client, gateway_ports);
Damien Millerf91ee4c2005-03-01 21:24:33 +11002749 debug3("channel_setup_fwd_listener: type %d wildcard %d addr %s",
2750 type, wildcard, (addr == NULL) ? "NULL" : addr);
2751
2752 /*
Damien Miller34132e52000-01-14 15:45:46 +11002753 * getaddrinfo returns a loopback address if the hostname is
2754 * set to NULL and hints.ai_flags is not AI_PASSIVE
Damien Miller5428f641999-11-25 11:54:57 +11002755 */
Damien Miller34132e52000-01-14 15:45:46 +11002756 memset(&hints, 0, sizeof(hints));
2757 hints.ai_family = IPv4or6;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002758 hints.ai_flags = wildcard ? AI_PASSIVE : 0;
Damien Miller34132e52000-01-14 15:45:46 +11002759 hints.ai_socktype = SOCK_STREAM;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002760 snprintf(strport, sizeof strport, "%d", listen_port);
Damien Millerf91ee4c2005-03-01 21:24:33 +11002761 if ((r = getaddrinfo(addr, strport, &hints, &aitop)) != 0) {
2762 if (addr == NULL) {
2763 /* This really shouldn't happen */
2764 packet_disconnect("getaddrinfo: fatal error: %s",
Darren Tucker4abde772007-12-29 02:43:51 +11002765 ssh_gai_strerror(r));
Damien Millerf91ee4c2005-03-01 21:24:33 +11002766 } else {
Damien Millera7270302005-07-06 09:36:05 +10002767 error("channel_setup_fwd_listener: "
Darren Tucker4abde772007-12-29 02:43:51 +11002768 "getaddrinfo(%.64s): %s", addr,
2769 ssh_gai_strerror(r));
Damien Millerf91ee4c2005-03-01 21:24:33 +11002770 }
Damien Millera7270302005-07-06 09:36:05 +10002771 return 0;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002772 }
Damien Miller4bf648f2009-02-14 16:28:21 +11002773 if (allocated_listen_port != NULL)
2774 *allocated_listen_port = 0;
Damien Miller34132e52000-01-14 15:45:46 +11002775 for (ai = aitop; ai; ai = ai->ai_next) {
Damien Miller4bf648f2009-02-14 16:28:21 +11002776 switch (ai->ai_family) {
2777 case AF_INET:
2778 lport_p = &((struct sockaddr_in *)ai->ai_addr)->
2779 sin_port;
2780 break;
2781 case AF_INET6:
2782 lport_p = &((struct sockaddr_in6 *)ai->ai_addr)->
2783 sin6_port;
2784 break;
2785 default:
Damien Miller34132e52000-01-14 15:45:46 +11002786 continue;
Damien Miller4bf648f2009-02-14 16:28:21 +11002787 }
2788 /*
2789 * If allocating a port for -R forwards, then use the
2790 * same port for all address families.
2791 */
2792 if (type == SSH_CHANNEL_RPORT_LISTENER && listen_port == 0 &&
2793 allocated_listen_port != NULL && *allocated_listen_port > 0)
2794 *lport_p = htons(*allocated_listen_port);
2795
Damien Miller34132e52000-01-14 15:45:46 +11002796 if (getnameinfo(ai->ai_addr, ai->ai_addrlen, ntop, sizeof(ntop),
2797 strport, sizeof(strport), NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
Damien Millerb16461c2002-01-22 23:29:22 +11002798 error("channel_setup_fwd_listener: getnameinfo failed");
Damien Miller34132e52000-01-14 15:45:46 +11002799 continue;
2800 }
2801 /* Create a port to listen for the host. */
Darren Tucker7bd98e72010-01-10 10:31:12 +11002802 sock = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
Damien Miller34132e52000-01-14 15:45:46 +11002803 if (sock < 0) {
2804 /* this is no error since kernel may not support ipv6 */
2805 verbose("socket: %.100s", strerror(errno));
2806 continue;
2807 }
Damien Miller5e7fd072005-11-05 14:53:39 +11002808
2809 channel_set_reuseaddr(sock);
Damien Miller04ee0f82009-11-18 17:48:30 +11002810 if (ai->ai_family == AF_INET6)
2811 sock_set_v6only(sock);
Damien Millere1383ce2002-09-19 11:49:37 +10002812
Damien Miller4bf648f2009-02-14 16:28:21 +11002813 debug("Local forwarding listening on %s port %s.",
2814 ntop, strport);
Damien Miller95def091999-11-25 00:26:21 +11002815
Damien Miller34132e52000-01-14 15:45:46 +11002816 /* Bind the socket to the address. */
2817 if (bind(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
2818 /* address can be in use ipv6 address is already bound */
Damien Miller3c7eeb22000-03-03 22:35:33 +11002819 if (!ai->ai_next)
2820 error("bind: %.100s", strerror(errno));
2821 else
2822 verbose("bind: %.100s", strerror(errno));
Kevin Stevesef4eea92001-02-05 12:42:17 +00002823
Damien Miller34132e52000-01-14 15:45:46 +11002824 close(sock);
2825 continue;
2826 }
2827 /* Start listening for connections on the socket. */
Darren Tucker3175eb92003-12-09 19:15:11 +11002828 if (listen(sock, SSH_LISTEN_BACKLOG) < 0) {
Damien Miller34132e52000-01-14 15:45:46 +11002829 error("listen: %.100s", strerror(errno));
2830 close(sock);
2831 continue;
2832 }
Damien Miller4bf648f2009-02-14 16:28:21 +11002833
2834 /*
2835 * listen_port == 0 requests a dynamically allocated port -
2836 * record what we got.
2837 */
2838 if (type == SSH_CHANNEL_RPORT_LISTENER && listen_port == 0 &&
2839 allocated_listen_port != NULL &&
2840 *allocated_listen_port == 0) {
2841 *allocated_listen_port = get_sock_port(sock, 1);
2842 debug("Allocated listen port %d",
2843 *allocated_listen_port);
2844 }
2845
Damien Miller34132e52000-01-14 15:45:46 +11002846 /* Allocate a channel number for the socket. */
Ben Lindstrome9c99912001-06-09 00:41:05 +00002847 c = channel_new("port listener", type, sock, sock, -1,
Damien Millerbd483e72000-04-30 10:00:53 +10002848 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10002849 0, "port listener", 1);
Damien Millera1c1b6c2009-01-28 16:29:49 +11002850 c->path = xstrdup(host);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002851 c->host_port = port_to_connect;
Damien Millerf6dff7c2011-09-22 21:38:52 +10002852 c->listening_addr = addr == NULL ? NULL : xstrdup(addr);
Darren Tucker68afb8c2011-10-02 18:59:03 +11002853 if (listen_port == 0 && allocated_listen_port != NULL &&
2854 !(datafellows & SSH_BUG_DYNAMIC_RPORT))
2855 c->listening_port = *allocated_listen_port;
2856 else
2857 c->listening_port = listen_port;
Damien Miller34132e52000-01-14 15:45:46 +11002858 success = 1;
2859 }
2860 if (success == 0)
Damien Millerb16461c2002-01-22 23:29:22 +11002861 error("channel_setup_fwd_listener: cannot listen to port: %d",
Kevin Steves12057502001-02-05 14:54:34 +00002862 listen_port);
Damien Miller34132e52000-01-14 15:45:46 +11002863 freeaddrinfo(aitop);
Kevin Steves12057502001-02-05 14:54:34 +00002864 return success;
Damien Miller95def091999-11-25 00:26:21 +11002865}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002866
Darren Tuckere7066df2004-05-24 10:18:05 +10002867int
2868channel_cancel_rport_listener(const char *host, u_short port)
2869{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10002870 u_int i;
2871 int found = 0;
Darren Tuckere7066df2004-05-24 10:18:05 +10002872
Darren Tucker47eede72005-03-14 23:08:12 +11002873 for (i = 0; i < channels_alloc; i++) {
Darren Tuckere7066df2004-05-24 10:18:05 +10002874 Channel *c = channels[i];
Damien Millerf6dff7c2011-09-22 21:38:52 +10002875 if (c == NULL || c->type != SSH_CHANNEL_RPORT_LISTENER)
2876 continue;
2877 if (strcmp(c->path, host) == 0 && c->listening_port == port) {
2878 debug2("%s: close channel %d", __func__, i);
2879 channel_free(c);
2880 found = 1;
2881 }
2882 }
Darren Tuckere7066df2004-05-24 10:18:05 +10002883
Damien Millerf6dff7c2011-09-22 21:38:52 +10002884 return (found);
2885}
2886
2887int
2888channel_cancel_lport_listener(const char *lhost, u_short lport,
Damien Millerff773642011-09-22 21:39:48 +10002889 int cport, int gateway_ports)
Damien Millerf6dff7c2011-09-22 21:38:52 +10002890{
2891 u_int i;
2892 int found = 0;
2893 const char *addr = channel_fwd_bind_addr(lhost, NULL, 1, gateway_ports);
2894
2895 for (i = 0; i < channels_alloc; i++) {
2896 Channel *c = channels[i];
2897 if (c == NULL || c->type != SSH_CHANNEL_PORT_LISTENER)
2898 continue;
Damien Millerff773642011-09-22 21:39:48 +10002899 if (c->listening_port != lport)
Damien Millerf6dff7c2011-09-22 21:38:52 +10002900 continue;
Damien Millerff773642011-09-22 21:39:48 +10002901 if (cport == CHANNEL_CANCEL_PORT_STATIC) {
2902 /* skip dynamic forwardings */
2903 if (c->host_port == 0)
2904 continue;
2905 } else {
2906 if (c->host_port != cport)
2907 continue;
2908 }
Damien Millerf6dff7c2011-09-22 21:38:52 +10002909 if ((c->listening_addr == NULL && addr != NULL) ||
2910 (c->listening_addr != NULL && addr == NULL))
2911 continue;
2912 if (addr == NULL || strcmp(c->listening_addr, addr) == 0) {
Darren Tuckere6ed8392004-08-29 16:29:44 +10002913 debug2("%s: close channel %d", __func__, i);
Darren Tuckere7066df2004-05-24 10:18:05 +10002914 channel_free(c);
2915 found = 1;
2916 }
2917 }
2918
2919 return (found);
2920}
2921
Damien Millerb16461c2002-01-22 23:29:22 +11002922/* protocol local port fwd, used by ssh (and sshd in v1) */
2923int
Damien Millerf91ee4c2005-03-01 21:24:33 +11002924channel_setup_local_fwd_listener(const char *listen_host, u_short listen_port,
Damien Millerb16461c2002-01-22 23:29:22 +11002925 const char *host_to_connect, u_short port_to_connect, int gateway_ports)
2926{
2927 return channel_setup_fwd_listener(SSH_CHANNEL_PORT_LISTENER,
Damien Miller4bf648f2009-02-14 16:28:21 +11002928 listen_host, listen_port, NULL, host_to_connect, port_to_connect,
Damien Millerf91ee4c2005-03-01 21:24:33 +11002929 gateway_ports);
Damien Millerb16461c2002-01-22 23:29:22 +11002930}
2931
2932/* protocol v2 remote port fwd, used by sshd */
2933int
2934channel_setup_remote_fwd_listener(const char *listen_address,
Damien Miller4bf648f2009-02-14 16:28:21 +11002935 u_short listen_port, int *allocated_listen_port, int gateway_ports)
Damien Millerb16461c2002-01-22 23:29:22 +11002936{
2937 return channel_setup_fwd_listener(SSH_CHANNEL_RPORT_LISTENER,
Damien Miller4bf648f2009-02-14 16:28:21 +11002938 listen_address, listen_port, allocated_listen_port,
2939 NULL, 0, gateway_ports);
Damien Millerb16461c2002-01-22 23:29:22 +11002940}
2941
Damien Miller5428f641999-11-25 11:54:57 +11002942/*
Damien Millerf6dff7c2011-09-22 21:38:52 +10002943 * Translate the requested rfwd listen host to something usable for
2944 * this server.
2945 */
2946static const char *
2947channel_rfwd_bind_host(const char *listen_host)
2948{
2949 if (listen_host == NULL) {
2950 if (datafellows & SSH_BUG_RFWD_ADDR)
2951 return "127.0.0.1";
2952 else
2953 return "localhost";
2954 } else if (*listen_host == '\0' || strcmp(listen_host, "*") == 0) {
2955 if (datafellows & SSH_BUG_RFWD_ADDR)
2956 return "0.0.0.0";
2957 else
2958 return "";
2959 } else
2960 return listen_host;
2961}
2962
2963/*
Damien Miller5428f641999-11-25 11:54:57 +11002964 * Initiate forwarding of connections to port "port" on remote host through
2965 * the secure channel to host:port from local side.
Darren Tucker68afb8c2011-10-02 18:59:03 +11002966 * Returns handle (index) for updating the dynamic listen port with
2967 * channel_update_permitted_opens().
Damien Miller5428f641999-11-25 11:54:57 +11002968 */
Darren Tuckere7d4b192006-07-12 22:17:10 +10002969int
Damien Millerf91ee4c2005-03-01 21:24:33 +11002970channel_request_remote_forwarding(const char *listen_host, u_short listen_port,
Damien Miller0bc1bd82000-11-13 22:57:25 +11002971 const char *host_to_connect, u_short port_to_connect)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002972{
Darren Tucker68afb8c2011-10-02 18:59:03 +11002973 int type, success = 0, idx = -1;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002974
Damien Miller95def091999-11-25 00:26:21 +11002975 /* Send the forward request to the remote side. */
Damien Miller33b13562000-04-04 14:38:59 +10002976 if (compat20) {
Damien Miller33b13562000-04-04 14:38:59 +10002977 packet_start(SSH2_MSG_GLOBAL_REQUEST);
2978 packet_put_cstring("tcpip-forward");
Damien Millerf6dff7c2011-09-22 21:38:52 +10002979 packet_put_char(1); /* boolean: want reply */
2980 packet_put_cstring(channel_rfwd_bind_host(listen_host));
Damien Miller33b13562000-04-04 14:38:59 +10002981 packet_put_int(listen_port);
Damien Miller0bc1bd82000-11-13 22:57:25 +11002982 packet_send();
2983 packet_write_wait();
2984 /* Assume that server accepts the request */
2985 success = 1;
Damien Miller33b13562000-04-04 14:38:59 +10002986 } else {
2987 packet_start(SSH_CMSG_PORT_FORWARD_REQUEST);
Damien Miller33b13562000-04-04 14:38:59 +10002988 packet_put_int(listen_port);
Damien Miller8bb73be2000-04-19 16:26:12 +10002989 packet_put_cstring(host_to_connect);
2990 packet_put_int(port_to_connect);
Damien Miller33b13562000-04-04 14:38:59 +10002991 packet_send();
2992 packet_write_wait();
Damien Miller0bc1bd82000-11-13 22:57:25 +11002993
2994 /* Wait for response from the remote side. */
Damien Millerdff50992002-01-22 23:16:32 +11002995 type = packet_read();
Damien Miller0bc1bd82000-11-13 22:57:25 +11002996 switch (type) {
2997 case SSH_SMSG_SUCCESS:
2998 success = 1;
2999 break;
3000 case SSH_SMSG_FAILURE:
Damien Miller0bc1bd82000-11-13 22:57:25 +11003001 break;
3002 default:
3003 /* Unknown packet */
3004 packet_disconnect("Protocol error for port forward request:"
3005 "received packet type %d.", type);
3006 }
3007 }
3008 if (success) {
Damien Miller232cfb12010-06-26 09:50:30 +10003009 /* Record that connection to this host/port is permitted. */
3010 permitted_opens = xrealloc(permitted_opens,
3011 num_permitted_opens + 1, sizeof(*permitted_opens));
Darren Tucker68afb8c2011-10-02 18:59:03 +11003012 idx = num_permitted_opens++;
3013 permitted_opens[idx].host_to_connect = xstrdup(host_to_connect);
3014 permitted_opens[idx].port_to_connect = port_to_connect;
3015 permitted_opens[idx].listen_port = listen_port;
Damien Miller33b13562000-04-04 14:38:59 +10003016 }
Darren Tucker68afb8c2011-10-02 18:59:03 +11003017 return (idx);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003018}
3019
Damien Miller5428f641999-11-25 11:54:57 +11003020/*
Darren Tuckerfc959702004-07-17 16:12:08 +10003021 * Request cancellation of remote forwarding of connection host:port from
Darren Tuckere7066df2004-05-24 10:18:05 +10003022 * local side.
3023 */
Damien Millerf6dff7c2011-09-22 21:38:52 +10003024int
Damien Millerf91ee4c2005-03-01 21:24:33 +11003025channel_request_rforward_cancel(const char *host, u_short port)
Darren Tuckere7066df2004-05-24 10:18:05 +10003026{
3027 int i;
Darren Tuckere7066df2004-05-24 10:18:05 +10003028
3029 if (!compat20)
Damien Millerf6dff7c2011-09-22 21:38:52 +10003030 return -1;
Darren Tuckere7066df2004-05-24 10:18:05 +10003031
3032 for (i = 0; i < num_permitted_opens; i++) {
Darren Tuckerfc959702004-07-17 16:12:08 +10003033 if (permitted_opens[i].host_to_connect != NULL &&
Darren Tuckere7066df2004-05-24 10:18:05 +10003034 permitted_opens[i].listen_port == port)
3035 break;
3036 }
3037 if (i >= num_permitted_opens) {
3038 debug("%s: requested forward not found", __func__);
Damien Millerf6dff7c2011-09-22 21:38:52 +10003039 return -1;
Darren Tuckere7066df2004-05-24 10:18:05 +10003040 }
3041 packet_start(SSH2_MSG_GLOBAL_REQUEST);
3042 packet_put_cstring("cancel-tcpip-forward");
3043 packet_put_char(0);
Damien Millerf6dff7c2011-09-22 21:38:52 +10003044 packet_put_cstring(channel_rfwd_bind_host(host));
Darren Tuckere7066df2004-05-24 10:18:05 +10003045 packet_put_int(port);
3046 packet_send();
3047
3048 permitted_opens[i].listen_port = 0;
3049 permitted_opens[i].port_to_connect = 0;
Darren Tuckera627d422013-06-02 07:31:17 +10003050 free(permitted_opens[i].host_to_connect);
Darren Tuckere7066df2004-05-24 10:18:05 +10003051 permitted_opens[i].host_to_connect = NULL;
Damien Millerf6dff7c2011-09-22 21:38:52 +10003052
3053 return 0;
Darren Tuckere7066df2004-05-24 10:18:05 +10003054}
3055
3056/*
Damien Miller5428f641999-11-25 11:54:57 +11003057 * This is called after receiving CHANNEL_FORWARDING_REQUEST. This initates
3058 * listening for the port, and sends back a success reply (or disconnect
Darren Tuckere7d4b192006-07-12 22:17:10 +10003059 * message if there was an error).
Damien Miller5428f641999-11-25 11:54:57 +11003060 */
Darren Tuckere7d4b192006-07-12 22:17:10 +10003061int
Damien Millere247cc42000-05-07 12:03:14 +10003062channel_input_port_forward_request(int is_root, int gateway_ports)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003063{
Damien Milleraae6c611999-12-06 11:47:28 +11003064 u_short port, host_port;
Darren Tuckere7d4b192006-07-12 22:17:10 +10003065 int success = 0;
Damien Miller95def091999-11-25 00:26:21 +11003066 char *hostname;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003067
Damien Miller95def091999-11-25 00:26:21 +11003068 /* Get arguments from the packet. */
3069 port = packet_get_int();
3070 hostname = packet_get_string(NULL);
3071 host_port = packet_get_int();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003072
Damien Millerbac2d8a2000-09-05 16:13:06 +11003073#ifndef HAVE_CYGWIN
Damien Miller5428f641999-11-25 11:54:57 +11003074 /*
3075 * Check that an unprivileged user is not trying to forward a
3076 * privileged port.
3077 */
Damien Miller95def091999-11-25 00:26:21 +11003078 if (port < IPPORT_RESERVED && !is_root)
Darren Tucker9189ff82003-07-03 13:52:04 +10003079 packet_disconnect(
3080 "Requested forwarding of port %d but user is not root.",
3081 port);
3082 if (host_port == 0)
3083 packet_disconnect("Dynamic forwarding denied.");
Damien Millerbac2d8a2000-09-05 16:13:06 +11003084#endif
Darren Tucker9189ff82003-07-03 13:52:04 +10003085
Damien Miller0bc1bd82000-11-13 22:57:25 +11003086 /* Initiate forwarding */
Darren Tuckere7d4b192006-07-12 22:17:10 +10003087 success = channel_setup_local_fwd_listener(NULL, port, hostname,
Damien Millerf91ee4c2005-03-01 21:24:33 +11003088 host_port, gateway_ports);
Damien Miller95def091999-11-25 00:26:21 +11003089
3090 /* Free the argument string. */
Darren Tuckera627d422013-06-02 07:31:17 +10003091 free(hostname);
Darren Tuckere7d4b192006-07-12 22:17:10 +10003092
3093 return (success ? 0 : -1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003094}
3095
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003096/*
3097 * Permits opening to any host/port if permitted_opens[] is empty. This is
3098 * usually called by the server, because the user could connect to any port
3099 * anyway, and the server has no way to know but to trust the client anyway.
3100 */
3101void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00003102channel_permit_all_opens(void)
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003103{
3104 if (num_permitted_opens == 0)
3105 all_opens_permitted = 1;
3106}
3107
Ben Lindstroma3700052001-04-05 23:26:32 +00003108void
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003109channel_add_permitted_opens(char *host, int port)
3110{
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003111 debug("allow port forwarding to host %s port %d", host, port);
3112
Damien Miller232cfb12010-06-26 09:50:30 +10003113 permitted_opens = xrealloc(permitted_opens,
3114 num_permitted_opens + 1, sizeof(*permitted_opens));
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003115 permitted_opens[num_permitted_opens].host_to_connect = xstrdup(host);
3116 permitted_opens[num_permitted_opens].port_to_connect = port;
3117 num_permitted_opens++;
3118
3119 all_opens_permitted = 0;
3120}
3121
Darren Tucker68afb8c2011-10-02 18:59:03 +11003122/*
3123 * Update the listen port for a dynamic remote forward, after
3124 * the actual 'newport' has been allocated. If 'newport' < 0 is
3125 * passed then they entry will be invalidated.
3126 */
3127void
3128channel_update_permitted_opens(int idx, int newport)
3129{
3130 if (idx < 0 || idx >= num_permitted_opens) {
3131 debug("channel_update_permitted_opens: index out of range:"
3132 " %d num_permitted_opens %d", idx, num_permitted_opens);
3133 return;
3134 }
3135 debug("%s allowed port %d for forwarding to host %s port %d",
3136 newport > 0 ? "Updating" : "Removing",
3137 newport,
3138 permitted_opens[idx].host_to_connect,
3139 permitted_opens[idx].port_to_connect);
3140 if (newport >= 0) {
3141 permitted_opens[idx].listen_port =
3142 (datafellows & SSH_BUG_DYNAMIC_RPORT) ? 0 : newport;
3143 } else {
3144 permitted_opens[idx].listen_port = 0;
3145 permitted_opens[idx].port_to_connect = 0;
Darren Tuckera627d422013-06-02 07:31:17 +10003146 free(permitted_opens[idx].host_to_connect);
Darren Tucker68afb8c2011-10-02 18:59:03 +11003147 permitted_opens[idx].host_to_connect = NULL;
3148 }
3149}
3150
Damien Millera765cf42006-07-24 14:08:13 +10003151int
Damien Miller9b439df2006-07-24 14:04:00 +10003152channel_add_adm_permitted_opens(char *host, int port)
3153{
Damien Millera765cf42006-07-24 14:08:13 +10003154 debug("config allows port forwarding to host %s port %d", host, port);
Damien Miller9b439df2006-07-24 14:04:00 +10003155
Damien Miller232cfb12010-06-26 09:50:30 +10003156 permitted_adm_opens = xrealloc(permitted_adm_opens,
3157 num_adm_permitted_opens + 1, sizeof(*permitted_adm_opens));
Damien Miller9b439df2006-07-24 14:04:00 +10003158 permitted_adm_opens[num_adm_permitted_opens].host_to_connect
3159 = xstrdup(host);
3160 permitted_adm_opens[num_adm_permitted_opens].port_to_connect = port;
Damien Millera765cf42006-07-24 14:08:13 +10003161 return ++num_adm_permitted_opens;
Damien Miller9b439df2006-07-24 14:04:00 +10003162}
3163
3164void
Damien Millerc6081482012-04-22 11:18:53 +10003165channel_disable_adm_local_opens(void)
3166{
Damien Milleraa5b3f82012-12-03 09:50:54 +11003167 channel_clear_adm_permitted_opens();
3168 permitted_adm_opens = xmalloc(sizeof(*permitted_adm_opens));
3169 permitted_adm_opens[num_adm_permitted_opens].host_to_connect = NULL;
3170 num_adm_permitted_opens = 1;
Damien Millerc6081482012-04-22 11:18:53 +10003171}
3172
3173void
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003174channel_clear_permitted_opens(void)
3175{
3176 int i;
3177
3178 for (i = 0; i < num_permitted_opens; i++)
Darren Tuckera627d422013-06-02 07:31:17 +10003179 free(permitted_opens[i].host_to_connect);
3180 free(permitted_opens);
3181 permitted_opens = NULL;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003182 num_permitted_opens = 0;
Damien Miller9b439df2006-07-24 14:04:00 +10003183}
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003184
Damien Miller9b439df2006-07-24 14:04:00 +10003185void
3186channel_clear_adm_permitted_opens(void)
3187{
3188 int i;
3189
3190 for (i = 0; i < num_adm_permitted_opens; i++)
Darren Tuckera627d422013-06-02 07:31:17 +10003191 free(permitted_adm_opens[i].host_to_connect);
3192 free(permitted_adm_opens);
3193 permitted_adm_opens = NULL;
Damien Miller9b439df2006-07-24 14:04:00 +10003194 num_adm_permitted_opens = 0;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003195}
3196
Darren Tuckere7140f22008-06-10 23:01:51 +10003197void
3198channel_print_adm_permitted_opens(void)
3199{
Damien Miller6ef17492008-07-16 22:42:06 +10003200 int i;
Darren Tuckere7140f22008-06-10 23:01:51 +10003201
Damien Millerb53d8a12009-01-28 16:13:04 +11003202 printf("permitopen");
Darren Tucker22662e82008-11-11 16:40:22 +11003203 if (num_adm_permitted_opens == 0) {
Damien Millerb53d8a12009-01-28 16:13:04 +11003204 printf(" any\n");
Darren Tucker22662e82008-11-11 16:40:22 +11003205 return;
3206 }
Darren Tuckere7140f22008-06-10 23:01:51 +10003207 for (i = 0; i < num_adm_permitted_opens; i++)
Damien Millerc6081482012-04-22 11:18:53 +10003208 if (permitted_adm_opens[i].host_to_connect == NULL)
3209 printf(" none");
3210 else
Darren Tuckere7140f22008-06-10 23:01:51 +10003211 printf(" %s:%d", permitted_adm_opens[i].host_to_connect,
3212 permitted_adm_opens[i].port_to_connect);
Damien Millerb53d8a12009-01-28 16:13:04 +11003213 printf("\n");
Darren Tuckere7140f22008-06-10 23:01:51 +10003214}
3215
Darren Tucker1338b9e2011-10-02 18:57:35 +11003216/* returns port number, FWD_PERMIT_ANY_PORT or -1 on error */
3217int
3218permitopen_port(const char *p)
3219{
3220 int port;
3221
3222 if (strcmp(p, "*") == 0)
3223 return FWD_PERMIT_ANY_PORT;
3224 if ((port = a2port(p)) > 0)
3225 return port;
3226 return -1;
3227}
3228
3229static int
3230port_match(u_short allowedport, u_short requestedport)
3231{
3232 if (allowedport == FWD_PERMIT_ANY_PORT ||
3233 allowedport == requestedport)
3234 return 1;
3235 return 0;
3236}
3237
Damien Millerbd740252008-05-19 15:37:09 +10003238/* Try to start non-blocking connect to next host in cctx list */
Ben Lindstrombba81212001-06-25 05:01:22 +00003239static int
Damien Millerbd740252008-05-19 15:37:09 +10003240connect_next(struct channel_connect *cctx)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003241{
Damien Millerbd740252008-05-19 15:37:09 +10003242 int sock, saved_errno;
Damien Miller34132e52000-01-14 15:45:46 +11003243 char ntop[NI_MAXHOST], strport[NI_MAXSERV];
Damien Miller95def091999-11-25 00:26:21 +11003244
Damien Millerbd740252008-05-19 15:37:09 +10003245 for (; cctx->ai; cctx->ai = cctx->ai->ai_next) {
3246 if (cctx->ai->ai_family != AF_INET &&
3247 cctx->ai->ai_family != AF_INET6)
Damien Miller34132e52000-01-14 15:45:46 +11003248 continue;
Damien Millerbd740252008-05-19 15:37:09 +10003249 if (getnameinfo(cctx->ai->ai_addr, cctx->ai->ai_addrlen,
3250 ntop, sizeof(ntop), strport, sizeof(strport),
3251 NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
3252 error("connect_next: getnameinfo failed");
Damien Miller34132e52000-01-14 15:45:46 +11003253 continue;
3254 }
Darren Tucker7bd98e72010-01-10 10:31:12 +11003255 if ((sock = socket(cctx->ai->ai_family, cctx->ai->ai_socktype,
3256 cctx->ai->ai_protocol)) == -1) {
Damien Millerbd740252008-05-19 15:37:09 +10003257 if (cctx->ai->ai_next == NULL)
Damien Millerb46b9f32003-01-10 21:45:12 +11003258 error("socket: %.100s", strerror(errno));
3259 else
3260 verbose("socket: %.100s", strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11003261 continue;
3262 }
Damien Miller232711f2004-06-15 10:35:30 +10003263 if (set_nonblock(sock) == -1)
3264 fatal("%s: set_nonblock(%d)", __func__, sock);
Damien Millerbd740252008-05-19 15:37:09 +10003265 if (connect(sock, cctx->ai->ai_addr,
3266 cctx->ai->ai_addrlen) == -1 && errno != EINPROGRESS) {
3267 debug("connect_next: host %.100s ([%.100s]:%s): "
3268 "%.100s", cctx->host, ntop, strport,
Damien Miller34132e52000-01-14 15:45:46 +11003269 strerror(errno));
Damien Millerbd740252008-05-19 15:37:09 +10003270 saved_errno = errno;
Damien Miller34132e52000-01-14 15:45:46 +11003271 close(sock);
Damien Millerbd740252008-05-19 15:37:09 +10003272 errno = saved_errno;
Kevin Stevesef4eea92001-02-05 12:42:17 +00003273 continue; /* fail -- try next */
Damien Miller34132e52000-01-14 15:45:46 +11003274 }
Damien Millerbd740252008-05-19 15:37:09 +10003275 debug("connect_next: host %.100s ([%.100s]:%s) "
3276 "in progress, fd=%d", cctx->host, ntop, strport, sock);
3277 cctx->ai = cctx->ai->ai_next;
3278 set_nodelay(sock);
3279 return sock;
Damien Miller34132e52000-01-14 15:45:46 +11003280 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11003281 return -1;
3282}
Damien Millerb38eff82000-04-01 11:09:21 +10003283
Damien Millerbd740252008-05-19 15:37:09 +10003284static void
3285channel_connect_ctx_free(struct channel_connect *cctx)
3286{
Darren Tuckera627d422013-06-02 07:31:17 +10003287 free(cctx->host);
Damien Millerbd740252008-05-19 15:37:09 +10003288 if (cctx->aitop)
3289 freeaddrinfo(cctx->aitop);
3290 bzero(cctx, sizeof(*cctx));
3291 cctx->host = NULL;
3292 cctx->ai = cctx->aitop = NULL;
3293}
3294
3295/* Return CONNECTING channel to remote host, port */
3296static Channel *
3297connect_to(const char *host, u_short port, char *ctype, char *rname)
3298{
3299 struct addrinfo hints;
3300 int gaierr;
3301 int sock = -1;
3302 char strport[NI_MAXSERV];
3303 struct channel_connect cctx;
3304 Channel *c;
3305
Damien Miller2bcb8662008-07-12 17:12:29 +10003306 memset(&cctx, 0, sizeof(cctx));
Damien Millerbd740252008-05-19 15:37:09 +10003307 memset(&hints, 0, sizeof(hints));
3308 hints.ai_family = IPv4or6;
3309 hints.ai_socktype = SOCK_STREAM;
3310 snprintf(strport, sizeof strport, "%d", port);
3311 if ((gaierr = getaddrinfo(host, strport, &hints, &cctx.aitop)) != 0) {
3312 error("connect_to %.100s: unknown host (%s)", host,
3313 ssh_gai_strerror(gaierr));
3314 return NULL;
3315 }
3316
3317 cctx.host = xstrdup(host);
3318 cctx.port = port;
3319 cctx.ai = cctx.aitop;
3320
3321 if ((sock = connect_next(&cctx)) == -1) {
3322 error("connect to %.100s port %d failed: %s",
3323 host, port, strerror(errno));
3324 channel_connect_ctx_free(&cctx);
3325 return NULL;
3326 }
3327 c = channel_new(ctype, SSH_CHANNEL_CONNECTING, sock, sock, -1,
3328 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT, 0, rname, 1);
3329 c->connect_ctx = cctx;
3330 return c;
3331}
3332
3333Channel *
3334channel_connect_by_listen_address(u_short listen_port, char *ctype, char *rname)
3335{
3336 int i;
3337
3338 for (i = 0; i < num_permitted_opens; i++) {
3339 if (permitted_opens[i].host_to_connect != NULL &&
Darren Tucker1338b9e2011-10-02 18:57:35 +11003340 port_match(permitted_opens[i].listen_port, listen_port)) {
Damien Millerbd740252008-05-19 15:37:09 +10003341 return connect_to(
3342 permitted_opens[i].host_to_connect,
3343 permitted_opens[i].port_to_connect, ctype, rname);
3344 }
3345 }
3346 error("WARNING: Server requests forwarding for unknown listen_port %d",
3347 listen_port);
3348 return NULL;
3349}
3350
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003351/* Check if connecting to that port is permitted and connect. */
Damien Millerbd740252008-05-19 15:37:09 +10003352Channel *
3353channel_connect_to(const char *host, u_short port, char *ctype, char *rname)
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003354{
Damien Miller9b439df2006-07-24 14:04:00 +10003355 int i, permit, permit_adm = 1;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003356
3357 permit = all_opens_permitted;
3358 if (!permit) {
3359 for (i = 0; i < num_permitted_opens; i++)
Darren Tuckere7066df2004-05-24 10:18:05 +10003360 if (permitted_opens[i].host_to_connect != NULL &&
Darren Tucker1338b9e2011-10-02 18:57:35 +11003361 port_match(permitted_opens[i].port_to_connect, port) &&
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003362 strcmp(permitted_opens[i].host_to_connect, host) == 0)
3363 permit = 1;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003364 }
Damien Miller9b439df2006-07-24 14:04:00 +10003365
3366 if (num_adm_permitted_opens > 0) {
3367 permit_adm = 0;
3368 for (i = 0; i < num_adm_permitted_opens; i++)
3369 if (permitted_adm_opens[i].host_to_connect != NULL &&
Darren Tucker1338b9e2011-10-02 18:57:35 +11003370 port_match(permitted_adm_opens[i].port_to_connect, port) &&
Damien Miller9b439df2006-07-24 14:04:00 +10003371 strcmp(permitted_adm_opens[i].host_to_connect, host)
3372 == 0)
3373 permit_adm = 1;
3374 }
3375
3376 if (!permit || !permit_adm) {
Damien Miller996acd22003-04-09 20:59:48 +10003377 logit("Received request to connect to host %.100s port %d, "
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003378 "but the request was denied.", host, port);
Damien Millerbd740252008-05-19 15:37:09 +10003379 return NULL;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003380 }
Damien Millerbd740252008-05-19 15:37:09 +10003381 return connect_to(host, port, ctype, rname);
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003382}
3383
Damien Miller0e220db2004-06-15 10:34:08 +10003384void
3385channel_send_window_changes(void)
3386{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10003387 u_int i;
Damien Miller0e220db2004-06-15 10:34:08 +10003388 struct winsize ws;
3389
3390 for (i = 0; i < channels_alloc; i++) {
Darren Tucker47eede72005-03-14 23:08:12 +11003391 if (channels[i] == NULL || !channels[i]->client_tty ||
Damien Miller0e220db2004-06-15 10:34:08 +10003392 channels[i]->type != SSH_CHANNEL_OPEN)
3393 continue;
3394 if (ioctl(channels[i]->rfd, TIOCGWINSZ, &ws) < 0)
3395 continue;
3396 channel_request_start(i, "window-change", 0);
Damien Miller71a73672006-03-26 14:04:36 +11003397 packet_put_int((u_int)ws.ws_col);
3398 packet_put_int((u_int)ws.ws_row);
3399 packet_put_int((u_int)ws.ws_xpixel);
3400 packet_put_int((u_int)ws.ws_ypixel);
Damien Miller0e220db2004-06-15 10:34:08 +10003401 packet_send();
3402 }
3403}
3404
Ben Lindstrome9c99912001-06-09 00:41:05 +00003405/* -- X11 forwarding */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003406
Damien Miller5428f641999-11-25 11:54:57 +11003407/*
3408 * Creates an internet domain socket for listening for X11 connections.
Ben Lindstroma9d2c892002-06-23 21:48:28 +00003409 * Returns 0 and a suitable display number for the DISPLAY variable
3410 * stored in display_numberp , or -1 if an error occurs.
Damien Miller5428f641999-11-25 11:54:57 +11003411 */
Kevin Steves366298c2001-12-19 17:58:01 +00003412int
Damien Miller95c249f2002-02-05 12:11:34 +11003413x11_create_display_inet(int x11_display_offset, int x11_use_localhost,
Damien Miller2b9b0452005-07-17 17:19:24 +10003414 int single_connection, u_int *display_numberp, int **chanids)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003415{
Damien Millere7378562001-12-21 14:58:35 +11003416 Channel *nc = NULL;
Damien Milleraae6c611999-12-06 11:47:28 +11003417 int display_number, sock;
3418 u_short port;
Damien Miller34132e52000-01-14 15:45:46 +11003419 struct addrinfo hints, *ai, *aitop;
3420 char strport[NI_MAXSERV];
3421 int gaierr, n, num_socks = 0, socks[NUM_SOCKS];
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003422
Darren Tuckerd3d0fa12005-10-03 18:03:05 +10003423 if (chanids == NULL)
3424 return -1;
3425
Damien Millera34a28b1999-12-14 10:47:15 +11003426 for (display_number = x11_display_offset;
Damien Miller9f0f5c62001-12-21 14:45:46 +11003427 display_number < MAX_DISPLAYS;
3428 display_number++) {
Damien Miller95def091999-11-25 00:26:21 +11003429 port = 6000 + display_number;
Damien Miller34132e52000-01-14 15:45:46 +11003430 memset(&hints, 0, sizeof(hints));
3431 hints.ai_family = IPv4or6;
Damien Miller95c249f2002-02-05 12:11:34 +11003432 hints.ai_flags = x11_use_localhost ? 0: AI_PASSIVE;
Damien Miller34132e52000-01-14 15:45:46 +11003433 hints.ai_socktype = SOCK_STREAM;
3434 snprintf(strport, sizeof strport, "%d", port);
3435 if ((gaierr = getaddrinfo(NULL, strport, &hints, &aitop)) != 0) {
Darren Tucker4abde772007-12-29 02:43:51 +11003436 error("getaddrinfo: %.100s", ssh_gai_strerror(gaierr));
Kevin Steves366298c2001-12-19 17:58:01 +00003437 return -1;
Damien Miller95def091999-11-25 00:26:21 +11003438 }
Damien Miller34132e52000-01-14 15:45:46 +11003439 for (ai = aitop; ai; ai = ai->ai_next) {
3440 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
3441 continue;
Darren Tucker7bd98e72010-01-10 10:31:12 +11003442 sock = socket(ai->ai_family, ai->ai_socktype,
3443 ai->ai_protocol);
Damien Miller34132e52000-01-14 15:45:46 +11003444 if (sock < 0) {
Damien Miller6480c632010-03-26 11:09:44 +11003445 if ((errno != EINVAL) && (errno != EAFNOSUPPORT)
3446#ifdef EPFNOSUPPORT
3447 && (errno != EPFNOSUPPORT)
3448#endif
3449 ) {
Damien Millere2192732000-01-17 13:22:55 +11003450 error("socket: %.100s", strerror(errno));
Damien Miller3e4dffb2004-06-15 10:27:15 +10003451 freeaddrinfo(aitop);
Kevin Steves366298c2001-12-19 17:58:01 +00003452 return -1;
Damien Millere2192732000-01-17 13:22:55 +11003453 } else {
Damien Millercb5e44a2000-09-29 12:12:36 +11003454 debug("x11_create_display_inet: Socket family %d not supported",
3455 ai->ai_family);
Damien Millere2192732000-01-17 13:22:55 +11003456 continue;
3457 }
Damien Miller34132e52000-01-14 15:45:46 +11003458 }
Damien Miller04ee0f82009-11-18 17:48:30 +11003459 if (ai->ai_family == AF_INET6)
3460 sock_set_v6only(sock);
Damien Miller4401e452008-06-12 06:05:12 +10003461 if (x11_use_localhost)
3462 channel_set_reuseaddr(sock);
Damien Miller34132e52000-01-14 15:45:46 +11003463 if (bind(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +10003464 debug2("bind port %d: %.100s", port, strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11003465 close(sock);
Damien Miller3c7eeb22000-03-03 22:35:33 +11003466
Damien Miller34132e52000-01-14 15:45:46 +11003467 for (n = 0; n < num_socks; n++) {
Damien Miller34132e52000-01-14 15:45:46 +11003468 close(socks[n]);
3469 }
3470 num_socks = 0;
3471 break;
3472 }
3473 socks[num_socks++] = sock;
3474 if (num_socks == NUM_SOCKS)
3475 break;
Damien Miller95def091999-11-25 00:26:21 +11003476 }
Ben Lindstrom87b147f2001-01-25 00:41:12 +00003477 freeaddrinfo(aitop);
Damien Miller34132e52000-01-14 15:45:46 +11003478 if (num_socks > 0)
3479 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003480 }
Damien Miller95def091999-11-25 00:26:21 +11003481 if (display_number >= MAX_DISPLAYS) {
3482 error("Failed to allocate internet-domain X11 display socket.");
Kevin Steves366298c2001-12-19 17:58:01 +00003483 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003484 }
Damien Miller95def091999-11-25 00:26:21 +11003485 /* Start listening for connections on the socket. */
Damien Miller34132e52000-01-14 15:45:46 +11003486 for (n = 0; n < num_socks; n++) {
3487 sock = socks[n];
Darren Tucker3175eb92003-12-09 19:15:11 +11003488 if (listen(sock, SSH_LISTEN_BACKLOG) < 0) {
Damien Miller34132e52000-01-14 15:45:46 +11003489 error("listen: %.100s", strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11003490 close(sock);
Kevin Steves366298c2001-12-19 17:58:01 +00003491 return -1;
Damien Miller34132e52000-01-14 15:45:46 +11003492 }
Damien Miller95def091999-11-25 00:26:21 +11003493 }
Damien Miller34132e52000-01-14 15:45:46 +11003494
Damien Miller34132e52000-01-14 15:45:46 +11003495 /* Allocate a channel for each socket. */
Damien Miller07d86be2006-03-26 14:19:21 +11003496 *chanids = xcalloc(num_socks + 1, sizeof(**chanids));
Damien Miller34132e52000-01-14 15:45:46 +11003497 for (n = 0; n < num_socks; n++) {
3498 sock = socks[n];
Damien Millere7378562001-12-21 14:58:35 +11003499 nc = channel_new("x11 listener",
Damien Millerbd483e72000-04-30 10:00:53 +10003500 SSH_CHANNEL_X11_LISTENER, sock, sock, -1,
3501 CHAN_X11_WINDOW_DEFAULT, CHAN_X11_PACKET_DEFAULT,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10003502 0, "X11 inet listener", 1);
Damien Miller699d0032002-02-08 22:07:16 +11003503 nc->single_connection = single_connection;
Darren Tuckerd3d0fa12005-10-03 18:03:05 +10003504 (*chanids)[n] = nc->self;
Damien Miller34132e52000-01-14 15:45:46 +11003505 }
Darren Tuckerd3d0fa12005-10-03 18:03:05 +10003506 (*chanids)[n] = -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003507
Kevin Steves366298c2001-12-19 17:58:01 +00003508 /* Return the display number for the DISPLAY environment variable. */
Ben Lindstroma9d2c892002-06-23 21:48:28 +00003509 *display_numberp = display_number;
3510 return (0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003511}
3512
Ben Lindstrombba81212001-06-25 05:01:22 +00003513static int
Damien Miller819dbb62009-01-21 16:46:26 +11003514connect_local_xsocket_path(const char *pathname)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003515{
Damien Miller95def091999-11-25 00:26:21 +11003516 int sock;
3517 struct sockaddr_un addr;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003518
Damien Miller3afe3752001-12-21 12:39:51 +11003519 sock = socket(AF_UNIX, SOCK_STREAM, 0);
3520 if (sock < 0)
3521 error("socket: %.100s", strerror(errno));
3522 memset(&addr, 0, sizeof(addr));
3523 addr.sun_family = AF_UNIX;
Damien Miller819dbb62009-01-21 16:46:26 +11003524 strlcpy(addr.sun_path, pathname, sizeof addr.sun_path);
Damien Miller90967402006-03-26 14:07:26 +11003525 if (connect(sock, (struct sockaddr *)&addr, sizeof(addr)) == 0)
Damien Miller3afe3752001-12-21 12:39:51 +11003526 return sock;
3527 close(sock);
Damien Miller95def091999-11-25 00:26:21 +11003528 error("connect %.100s: %.100s", addr.sun_path, strerror(errno));
3529 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003530}
3531
Damien Miller819dbb62009-01-21 16:46:26 +11003532static int
3533connect_local_xsocket(u_int dnr)
3534{
3535 char buf[1024];
3536 snprintf(buf, sizeof buf, _PATH_UNIX_X, dnr);
3537 return connect_local_xsocket_path(buf);
3538}
3539
Damien Millerbd483e72000-04-30 10:00:53 +10003540int
3541x11_connect_display(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003542{
Damien Miller57c4e872006-03-31 23:11:07 +11003543 u_int display_number;
Damien Miller95def091999-11-25 00:26:21 +11003544 const char *display;
Damien Millerbd483e72000-04-30 10:00:53 +10003545 char buf[1024], *cp;
Damien Miller34132e52000-01-14 15:45:46 +11003546 struct addrinfo hints, *ai, *aitop;
3547 char strport[NI_MAXSERV];
Damien Miller57c4e872006-03-31 23:11:07 +11003548 int gaierr, sock = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003549
Damien Miller95def091999-11-25 00:26:21 +11003550 /* Try to open a socket for the local X server. */
3551 display = getenv("DISPLAY");
3552 if (!display) {
3553 error("DISPLAY not set.");
Damien Millerbd483e72000-04-30 10:00:53 +10003554 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003555 }
Damien Miller5428f641999-11-25 11:54:57 +11003556 /*
3557 * Now we decode the value of the DISPLAY variable and make a
3558 * connection to the real X server.
3559 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003560
Damien Miller819dbb62009-01-21 16:46:26 +11003561 /* Check if the display is from launchd. */
3562#ifdef __APPLE__
3563 if (strncmp(display, "/tmp/launch", 11) == 0) {
3564 sock = connect_local_xsocket_path(display);
3565 if (sock < 0)
3566 return -1;
3567
3568 /* OK, we now have a connection to the display. */
3569 return sock;
3570 }
3571#endif
Damien Miller5428f641999-11-25 11:54:57 +11003572 /*
3573 * Check if it is a unix domain socket. Unix domain displays are in
3574 * one of the following formats: unix:d[.s], :d[.s], ::d[.s]
3575 */
Damien Miller95def091999-11-25 00:26:21 +11003576 if (strncmp(display, "unix:", 5) == 0 ||
3577 display[0] == ':') {
3578 /* Connect to the unix domain socket. */
Damien Miller57c4e872006-03-31 23:11:07 +11003579 if (sscanf(strrchr(display, ':') + 1, "%u", &display_number) != 1) {
Damien Miller95def091999-11-25 00:26:21 +11003580 error("Could not parse display number from DISPLAY: %.100s",
Damien Miller9f0f5c62001-12-21 14:45:46 +11003581 display);
Damien Millerbd483e72000-04-30 10:00:53 +10003582 return -1;
Damien Miller95def091999-11-25 00:26:21 +11003583 }
3584 /* Create a socket. */
3585 sock = connect_local_xsocket(display_number);
3586 if (sock < 0)
Damien Millerbd483e72000-04-30 10:00:53 +10003587 return -1;
Damien Miller95def091999-11-25 00:26:21 +11003588
3589 /* OK, we now have a connection to the display. */
Damien Millerbd483e72000-04-30 10:00:53 +10003590 return sock;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003591 }
Damien Miller5428f641999-11-25 11:54:57 +11003592 /*
3593 * Connect to an inet socket. The DISPLAY value is supposedly
3594 * hostname:d[.s], where hostname may also be numeric IP address.
3595 */
Ben Lindstromccd8d072001-12-07 17:26:48 +00003596 strlcpy(buf, display, sizeof(buf));
Damien Miller95def091999-11-25 00:26:21 +11003597 cp = strchr(buf, ':');
3598 if (!cp) {
3599 error("Could not find ':' in DISPLAY: %.100s", display);
Damien Millerbd483e72000-04-30 10:00:53 +10003600 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003601 }
Damien Miller95def091999-11-25 00:26:21 +11003602 *cp = 0;
Damien Miller5428f641999-11-25 11:54:57 +11003603 /* buf now contains the host name. But first we parse the display number. */
Damien Miller57c4e872006-03-31 23:11:07 +11003604 if (sscanf(cp + 1, "%u", &display_number) != 1) {
Damien Miller95def091999-11-25 00:26:21 +11003605 error("Could not parse display number from DISPLAY: %.100s",
Damien Miller9f0f5c62001-12-21 14:45:46 +11003606 display);
Damien Millerbd483e72000-04-30 10:00:53 +10003607 return -1;
Damien Miller95def091999-11-25 00:26:21 +11003608 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003609
Damien Miller34132e52000-01-14 15:45:46 +11003610 /* Look up the host address */
3611 memset(&hints, 0, sizeof(hints));
3612 hints.ai_family = IPv4or6;
3613 hints.ai_socktype = SOCK_STREAM;
Damien Miller57c4e872006-03-31 23:11:07 +11003614 snprintf(strport, sizeof strport, "%u", 6000 + display_number);
Damien Miller34132e52000-01-14 15:45:46 +11003615 if ((gaierr = getaddrinfo(buf, strport, &hints, &aitop)) != 0) {
Darren Tucker4abde772007-12-29 02:43:51 +11003616 error("%.100s: unknown host. (%s)", buf,
3617 ssh_gai_strerror(gaierr));
Damien Millerbd483e72000-04-30 10:00:53 +10003618 return -1;
Damien Miller95def091999-11-25 00:26:21 +11003619 }
Damien Miller34132e52000-01-14 15:45:46 +11003620 for (ai = aitop; ai; ai = ai->ai_next) {
3621 /* Create a socket. */
Darren Tucker7bd98e72010-01-10 10:31:12 +11003622 sock = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
Damien Miller34132e52000-01-14 15:45:46 +11003623 if (sock < 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +10003624 debug2("socket: %.100s", strerror(errno));
Damien Millerb38eff82000-04-01 11:09:21 +10003625 continue;
3626 }
3627 /* Connect it to the display. */
3628 if (connect(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
Damien Miller57c4e872006-03-31 23:11:07 +11003629 debug2("connect %.100s port %u: %.100s", buf,
Damien Millerb38eff82000-04-01 11:09:21 +10003630 6000 + display_number, strerror(errno));
3631 close(sock);
3632 continue;
3633 }
3634 /* Success */
3635 break;
Damien Miller34132e52000-01-14 15:45:46 +11003636 }
Damien Miller34132e52000-01-14 15:45:46 +11003637 freeaddrinfo(aitop);
3638 if (!ai) {
Damien Miller57c4e872006-03-31 23:11:07 +11003639 error("connect %.100s port %u: %.100s", buf, 6000 + display_number,
Damien Miller34132e52000-01-14 15:45:46 +11003640 strerror(errno));
Damien Millerbd483e72000-04-30 10:00:53 +10003641 return -1;
Damien Miller95def091999-11-25 00:26:21 +11003642 }
Damien Miller398e1cf2002-02-05 11:52:13 +11003643 set_nodelay(sock);
Damien Millerbd483e72000-04-30 10:00:53 +10003644 return sock;
3645}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003646
Damien Millerbd483e72000-04-30 10:00:53 +10003647/*
3648 * This is called when SSH_SMSG_X11_OPEN is received. The packet contains
3649 * the remote channel number. We should do whatever we want, and respond
3650 * with either SSH_MSG_OPEN_CONFIRMATION or SSH_MSG_OPEN_FAILURE.
3651 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003652
Damien Miller8473dd82006-07-24 14:08:32 +10003653/* ARGSUSED */
Damien Millerbd483e72000-04-30 10:00:53 +10003654void
Damien Miller630d6f42002-01-22 23:17:30 +11003655x11_input_open(int type, u_int32_t seq, void *ctxt)
Damien Millerbd483e72000-04-30 10:00:53 +10003656{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003657 Channel *c = NULL;
3658 int remote_id, sock = 0;
Damien Millerbd483e72000-04-30 10:00:53 +10003659 char *remote_host;
Damien Millerbd483e72000-04-30 10:00:53 +10003660
3661 debug("Received X11 open request.");
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003662
3663 remote_id = packet_get_int();
Ben Lindstrome9c99912001-06-09 00:41:05 +00003664
3665 if (packet_get_protocol_flags() & SSH_PROTOFLAG_HOST_IN_FWD_OPEN) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003666 remote_host = packet_get_string(NULL);
3667 } else {
3668 remote_host = xstrdup("unknown (remote did not supply name)");
3669 }
Damien Miller48b03fc2002-01-22 23:11:40 +11003670 packet_check_eom();
Damien Millerbd483e72000-04-30 10:00:53 +10003671
3672 /* Obtain a connection to the real X display. */
3673 sock = x11_connect_display();
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003674 if (sock != -1) {
3675 /* Allocate a channel for this connection. */
3676 c = channel_new("connected x11 socket",
3677 SSH_CHANNEL_X11_OPEN, sock, sock, -1, 0, 0, 0,
3678 remote_host, 1);
Damien Miller699d0032002-02-08 22:07:16 +11003679 c->remote_id = remote_id;
3680 c->force_drain = 1;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003681 }
Darren Tuckera627d422013-06-02 07:31:17 +10003682 free(remote_host);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003683 if (c == NULL) {
Damien Millerbd483e72000-04-30 10:00:53 +10003684 /* Send refusal to the remote host. */
3685 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003686 packet_put_int(remote_id);
Damien Millerbd483e72000-04-30 10:00:53 +10003687 } else {
Damien Millerbd483e72000-04-30 10:00:53 +10003688 /* Send a confirmation to the remote host. */
3689 packet_start(SSH_MSG_CHANNEL_OPEN_CONFIRMATION);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003690 packet_put_int(remote_id);
3691 packet_put_int(c->self);
Damien Millerbd483e72000-04-30 10:00:53 +10003692 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003693 packet_send();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003694}
3695
Damien Miller69b69aa2000-10-28 14:19:58 +11003696/* dummy protocol handler that denies SSH-1 requests (agent/x11) */
Damien Miller8473dd82006-07-24 14:08:32 +10003697/* ARGSUSED */
Damien Miller69b69aa2000-10-28 14:19:58 +11003698void
Damien Miller630d6f42002-01-22 23:17:30 +11003699deny_input_open(int type, u_int32_t seq, void *ctxt)
Damien Miller69b69aa2000-10-28 14:19:58 +11003700{
3701 int rchan = packet_get_int();
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00003702
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00003703 switch (type) {
Damien Miller69b69aa2000-10-28 14:19:58 +11003704 case SSH_SMSG_AGENT_OPEN:
3705 error("Warning: ssh server tried agent forwarding.");
3706 break;
3707 case SSH_SMSG_X11_OPEN:
3708 error("Warning: ssh server tried X11 forwarding.");
3709 break;
3710 default:
Damien Miller630d6f42002-01-22 23:17:30 +11003711 error("deny_input_open: type %d", type);
Damien Miller69b69aa2000-10-28 14:19:58 +11003712 break;
3713 }
Damien Miller5eb137c2005-12-31 16:19:53 +11003714 error("Warning: this is probably a break-in attempt by a malicious server.");
Damien Miller69b69aa2000-10-28 14:19:58 +11003715 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
3716 packet_put_int(rchan);
3717 packet_send();
3718}
3719
Damien Miller5428f641999-11-25 11:54:57 +11003720/*
3721 * Requests forwarding of X11 connections, generates fake authentication
3722 * data, and enables authentication spoofing.
Ben Lindstrome9c99912001-06-09 00:41:05 +00003723 * This should be called in the client only.
Damien Miller5428f641999-11-25 11:54:57 +11003724 */
Damien Miller4af51302000-04-16 11:18:38 +10003725void
Damien Miller17e7ed02005-06-17 12:54:33 +10003726x11_request_forwarding_with_spoofing(int client_session_id, const char *disp,
Damien Miller6d7b4372011-06-23 08:31:57 +10003727 const char *proto, const char *data, int want_reply)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003728{
Ben Lindstrom46c16222000-12-22 01:43:59 +00003729 u_int data_len = (u_int) strlen(data) / 2;
Damien Miller13390022005-07-06 09:44:19 +10003730 u_int i, value;
Damien Miller95def091999-11-25 00:26:21 +11003731 char *new_data;
3732 int screen_number;
3733 const char *cp;
Darren Tucker3f9fdc72004-06-22 12:56:01 +10003734 u_int32_t rnd = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003735
Damien Millerf92c0792005-07-06 09:45:26 +10003736 if (x11_saved_display == NULL)
3737 x11_saved_display = xstrdup(disp);
3738 else if (strcmp(disp, x11_saved_display) != 0) {
Damien Miller13390022005-07-06 09:44:19 +10003739 error("x11_request_forwarding_with_spoofing: different "
3740 "$DISPLAY already forwarded");
3741 return;
3742 }
3743
Damien Millerd5fe0ba2006-08-30 11:07:39 +10003744 cp = strchr(disp, ':');
Damien Miller95def091999-11-25 00:26:21 +11003745 if (cp)
3746 cp = strchr(cp, '.');
3747 if (cp)
Damien Miller08d61502006-03-26 14:28:32 +11003748 screen_number = (u_int)strtonum(cp + 1, 0, 400, NULL);
Damien Miller95def091999-11-25 00:26:21 +11003749 else
3750 screen_number = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003751
Damien Miller13390022005-07-06 09:44:19 +10003752 if (x11_saved_proto == NULL) {
3753 /* Save protocol name. */
3754 x11_saved_proto = xstrdup(proto);
3755 /*
Damien Miller46d38de2005-07-17 17:02:09 +10003756 * Extract real authentication data and generate fake data
Damien Miller13390022005-07-06 09:44:19 +10003757 * of the same length.
3758 */
3759 x11_saved_data = xmalloc(data_len);
3760 x11_fake_data = xmalloc(data_len);
3761 for (i = 0; i < data_len; i++) {
3762 if (sscanf(data + 2 * i, "%2x", &value) != 1)
3763 fatal("x11_request_forwarding: bad "
3764 "authentication data: %.100s", data);
3765 if (i % 4 == 0)
3766 rnd = arc4random();
3767 x11_saved_data[i] = value;
3768 x11_fake_data[i] = rnd & 0xff;
3769 rnd >>= 8;
3770 }
3771 x11_saved_data_len = data_len;
3772 x11_fake_data_len = data_len;
Damien Miller95def091999-11-25 00:26:21 +11003773 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003774
Damien Miller95def091999-11-25 00:26:21 +11003775 /* Convert the fake data into hex. */
Damien Miller13390022005-07-06 09:44:19 +10003776 new_data = tohex(x11_fake_data, data_len);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003777
Damien Miller95def091999-11-25 00:26:21 +11003778 /* Send the request packet. */
Damien Millerbd483e72000-04-30 10:00:53 +10003779 if (compat20) {
Damien Miller6d7b4372011-06-23 08:31:57 +10003780 channel_request_start(client_session_id, "x11-req", want_reply);
Damien Millerbd483e72000-04-30 10:00:53 +10003781 packet_put_char(0); /* XXX bool single connection */
3782 } else {
3783 packet_start(SSH_CMSG_X11_REQUEST_FORWARDING);
3784 }
3785 packet_put_cstring(proto);
3786 packet_put_cstring(new_data);
Damien Miller95def091999-11-25 00:26:21 +11003787 packet_put_int(screen_number);
3788 packet_send();
3789 packet_write_wait();
Darren Tuckera627d422013-06-02 07:31:17 +10003790 free(new_data);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003791}
3792
Ben Lindstrome9c99912001-06-09 00:41:05 +00003793
3794/* -- agent forwarding */
3795
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003796/* Sends a message to the server to request authentication fd forwarding. */
3797
Damien Miller4af51302000-04-16 11:18:38 +10003798void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00003799auth_request_forwarding(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003800{
Damien Miller95def091999-11-25 00:26:21 +11003801 packet_start(SSH_CMSG_AGENT_REQUEST_FORWARDING);
3802 packet_send();
3803 packet_write_wait();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003804}