blob: 281df380209d087a0a9d3f4082ffbf83f2869540 [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);
Damien Millerc192a4c2013-08-01 14:29:20 +1000251#ifdef _AIX
252 /* XXX: Later AIX versions can't push as much data to tty */
Darren Tucker1a48aec2008-06-16 23:35:56 +1000253 c->wfd_isatty = is_tty || isatty(c->wfd);
Damien Millerc192a4c2013-08-01 14:29:20 +1000254#endif
Damien Miller79438cc2001-02-16 12:34:57 +1100255
Damien Miller69b69aa2000-10-28 14:19:58 +1100256 /* enable nonblocking mode */
257 if (nonblock) {
258 if (rfd != -1)
259 set_nonblock(rfd);
260 if (wfd != -1)
261 set_nonblock(wfd);
262 if (efd != -1)
263 set_nonblock(efd);
264 }
Damien Miller6f83b8e2000-05-02 09:23:45 +1000265}
266
267/*
268 * Allocate a new channel object and set its type and socket. This will cause
269 * remote_name to be freed.
270 */
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000271Channel *
Damien Miller6f83b8e2000-05-02 09:23:45 +1000272channel_new(char *ctype, int type, int rfd, int wfd, int efd,
Ben Lindstrom4fed2be2002-06-25 23:17:36 +0000273 u_int window, u_int maxpack, int extusage, char *remote_name, int nonblock)
Damien Miller6f83b8e2000-05-02 09:23:45 +1000274{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000275 int found;
276 u_int i;
Damien Miller6f83b8e2000-05-02 09:23:45 +1000277 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000278
Damien Miller95def091999-11-25 00:26:21 +1100279 /* Do initial allocation if this is the first call. */
280 if (channels_alloc == 0) {
281 channels_alloc = 10;
Damien Miller07d86be2006-03-26 14:19:21 +1100282 channels = xcalloc(channels_alloc, sizeof(Channel *));
Damien Miller95def091999-11-25 00:26:21 +1100283 for (i = 0; i < channels_alloc; i++)
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000284 channels[i] = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100285 }
286 /* Try to find a free slot where to put the new channel. */
287 for (found = -1, i = 0; i < channels_alloc; i++)
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000288 if (channels[i] == NULL) {
Damien Miller95def091999-11-25 00:26:21 +1100289 /* Found a free slot. */
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000290 found = (int)i;
Damien Miller95def091999-11-25 00:26:21 +1100291 break;
292 }
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000293 if (found < 0) {
Damien Miller5428f641999-11-25 11:54:57 +1100294 /* There are no free slots. Take last+1 slot and expand the array. */
Damien Miller95def091999-11-25 00:26:21 +1100295 found = channels_alloc;
Damien Miller9403aa22002-06-26 19:14:43 +1000296 if (channels_alloc > 10000)
297 fatal("channel_new: internal error: channels_alloc %d "
298 "too big.", channels_alloc);
Damien Miller36812092006-03-26 14:22:47 +1100299 channels = xrealloc(channels, channels_alloc + 10,
300 sizeof(Channel *));
Damien Miller5efcecc2003-09-17 07:31:14 +1000301 channels_alloc += 10;
Damien Millerd3444942000-09-30 14:20:03 +1100302 debug2("channel: expanding %d", channels_alloc);
Damien Miller95def091999-11-25 00:26:21 +1100303 for (i = found; i < channels_alloc; i++)
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000304 channels[i] = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100305 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000306 /* Initialize and return new channel. */
Damien Miller07d86be2006-03-26 14:19:21 +1100307 c = channels[found] = xcalloc(1, sizeof(Channel));
Damien Miller95def091999-11-25 00:26:21 +1100308 buffer_init(&c->input);
309 buffer_init(&c->output);
Damien Millerb38eff82000-04-01 11:09:21 +1000310 buffer_init(&c->extended);
Damien Millera1c1b6c2009-01-28 16:29:49 +1100311 c->path = NULL;
Damien Millerf6dff7c2011-09-22 21:38:52 +1000312 c->listening_addr = NULL;
313 c->listening_port = 0;
Damien Miller5144df92002-01-22 23:28:45 +1100314 c->ostate = CHAN_OUTPUT_OPEN;
315 c->istate = CHAN_INPUT_OPEN;
316 c->flags = 0;
Damien Millerd310d512008-06-16 07:59:23 +1000317 channel_register_fds(c, rfd, wfd, efd, extusage, nonblock, 0);
Damien Millera6508752012-04-22 11:21:10 +1000318 c->notbefore = 0;
Damien Miller95def091999-11-25 00:26:21 +1100319 c->self = found;
320 c->type = type;
Damien Millerb38eff82000-04-01 11:09:21 +1000321 c->ctype = ctype;
Damien Millerbd483e72000-04-30 10:00:53 +1000322 c->local_window = window;
323 c->local_window_max = window;
324 c->local_consumed = 0;
325 c->local_maxpacket = maxpack;
Damien Miller95def091999-11-25 00:26:21 +1100326 c->remote_id = -1;
Damien Millerb1ca8bb2003-05-14 13:45:42 +1000327 c->remote_name = xstrdup(remote_name);
Damien Millerb38eff82000-04-01 11:09:21 +1000328 c->remote_window = 0;
329 c->remote_maxpacket = 0;
Ben Lindstrom944c4f02001-09-18 05:51:13 +0000330 c->force_drain = 0;
Damien Millere7378562001-12-21 14:58:35 +1100331 c->single_connection = 0;
Ben Lindstrom809744e2001-07-04 05:26:06 +0000332 c->detach_user = NULL;
Damien Miller39eda6e2005-11-05 14:52:50 +1100333 c->detach_close = 0;
Damien Millerb84886b2008-05-19 15:05:07 +1000334 c->open_confirm = NULL;
335 c->open_confirm_ctx = NULL;
Damien Millerad833b32000-08-23 10:46:23 +1000336 c->input_filter = NULL;
Damien Miller077b2382005-12-31 16:22:32 +1100337 c->output_filter = NULL;
Darren Tucker84c56f52008-06-13 04:55:46 +1000338 c->filter_ctx = NULL;
339 c->filter_cleanup = NULL;
Damien Millere1537f92010-01-26 13:26:22 +1100340 c->ctl_chan = -1;
341 c->mux_rcb = NULL;
342 c->mux_ctx = NULL;
Damien Millerd530f5f2010-05-21 14:57:10 +1000343 c->mux_pause = 0;
Darren Tucker876045b2010-01-08 17:08:00 +1100344 c->delayed = 1; /* prevent call to channel_post handler */
Damien Millerb84886b2008-05-19 15:05:07 +1000345 TAILQ_INIT(&c->status_confirms);
Damien Miller95def091999-11-25 00:26:21 +1100346 debug("channel %d: new [%s]", found, remote_name);
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000347 return c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000348}
Damien Miller6f83b8e2000-05-02 09:23:45 +1000349
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000350static int
351channel_find_maxfd(void)
352{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000353 u_int i;
354 int max = 0;
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000355 Channel *c;
356
357 for (i = 0; i < channels_alloc; i++) {
358 c = channels[i];
359 if (c != NULL) {
360 max = MAX(max, c->rfd);
361 max = MAX(max, c->wfd);
362 max = MAX(max, c->efd);
363 }
364 }
365 return max;
366}
367
368int
369channel_close_fd(int *fdp)
370{
371 int ret = 0, fd = *fdp;
372
373 if (fd != -1) {
374 ret = close(fd);
375 *fdp = -1;
376 if (fd == channel_max_fd)
377 channel_max_fd = channel_find_maxfd();
378 }
379 return ret;
380}
381
Damien Miller6f83b8e2000-05-02 09:23:45 +1000382/* Close all channel fd/socket. */
Ben Lindstrombba81212001-06-25 05:01:22 +0000383static void
Damien Miller6f83b8e2000-05-02 09:23:45 +1000384channel_close_fds(Channel *c)
385{
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000386 channel_close_fd(&c->sock);
387 channel_close_fd(&c->rfd);
388 channel_close_fd(&c->wfd);
389 channel_close_fd(&c->efd);
Damien Miller6f83b8e2000-05-02 09:23:45 +1000390}
391
392/* Free the channel and close its fd/socket. */
Damien Miller4af51302000-04-16 11:18:38 +1000393void
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000394channel_free(Channel *c)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000395{
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000396 char *s;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000397 u_int i, n;
Damien Millerb84886b2008-05-19 15:05:07 +1000398 struct channel_confirm *cc;
Ben Lindstromc0dee1a2001-06-05 20:52:50 +0000399
400 for (n = 0, i = 0; i < channels_alloc; i++)
401 if (channels[i])
402 n++;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000403 debug("channel %d: free: %s, nchannels %u", c->self,
Ben Lindstromc0dee1a2001-06-05 20:52:50 +0000404 c->remote_name ? c->remote_name : "???", n);
Ben Lindstrom6c3ae2b2000-12-30 03:25:14 +0000405
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000406 s = channel_open_message();
Damien Millerfbdeece2003-09-02 22:52:31 +1000407 debug3("channel %d: status: %s", c->self, s);
Darren Tuckera627d422013-06-02 07:31:17 +1000408 free(s);
Ben Lindstrom6c3ae2b2000-12-30 03:25:14 +0000409
Damien Miller6f83b8e2000-05-02 09:23:45 +1000410 if (c->sock != -1)
Damien Millerb38eff82000-04-01 11:09:21 +1000411 shutdown(c->sock, SHUT_RDWR);
Damien Miller6f83b8e2000-05-02 09:23:45 +1000412 channel_close_fds(c);
Damien Millerb38eff82000-04-01 11:09:21 +1000413 buffer_free(&c->input);
414 buffer_free(&c->output);
415 buffer_free(&c->extended);
Darren Tuckera627d422013-06-02 07:31:17 +1000416 free(c->remote_name);
417 c->remote_name = NULL;
418 free(c->path);
419 c->path = NULL;
420 free(c->listening_addr);
421 c->listening_addr = NULL;
Damien Millerb84886b2008-05-19 15:05:07 +1000422 while ((cc = TAILQ_FIRST(&c->status_confirms)) != NULL) {
423 if (cc->abandon_cb != NULL)
424 cc->abandon_cb(c, cc->ctx);
425 TAILQ_REMOVE(&c->status_confirms, cc, entry);
426 bzero(cc, sizeof(*cc));
Darren Tuckera627d422013-06-02 07:31:17 +1000427 free(cc);
Damien Millerb84886b2008-05-19 15:05:07 +1000428 }
Darren Tucker84c56f52008-06-13 04:55:46 +1000429 if (c->filter_cleanup != NULL && c->filter_ctx != NULL)
430 c->filter_cleanup(c->self, c->filter_ctx);
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000431 channels[c->self] = NULL;
Darren Tuckera627d422013-06-02 07:31:17 +1000432 free(c);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000433}
434
Ben Lindstrome9c99912001-06-09 00:41:05 +0000435void
Ben Lindstrom601e4362001-06-21 03:19:23 +0000436channel_free_all(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000437{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000438 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000439
Ben Lindstrom601e4362001-06-21 03:19:23 +0000440 for (i = 0; i < channels_alloc; i++)
441 if (channels[i] != NULL)
442 channel_free(channels[i]);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000443}
444
445/*
446 * Closes the sockets/fds of all channels. This is used to close extra file
447 * descriptors after a fork.
448 */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000449void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000450channel_close_all(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000451{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000452 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000453
454 for (i = 0; i < channels_alloc; i++)
455 if (channels[i] != NULL)
456 channel_close_fds(channels[i]);
457}
458
459/*
Ben Lindstrom809744e2001-07-04 05:26:06 +0000460 * Stop listening to channels.
461 */
Ben Lindstrom809744e2001-07-04 05:26:06 +0000462void
463channel_stop_listening(void)
464{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000465 u_int i;
Ben Lindstrom809744e2001-07-04 05:26:06 +0000466 Channel *c;
467
468 for (i = 0; i < channels_alloc; i++) {
469 c = channels[i];
470 if (c != NULL) {
471 switch (c->type) {
472 case SSH_CHANNEL_AUTH_SOCKET:
473 case SSH_CHANNEL_PORT_LISTENER:
474 case SSH_CHANNEL_RPORT_LISTENER:
475 case SSH_CHANNEL_X11_LISTENER:
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000476 channel_close_fd(&c->sock);
Ben Lindstrom809744e2001-07-04 05:26:06 +0000477 channel_free(c);
478 break;
479 }
480 }
481 }
482}
483
484/*
Ben Lindstrome9c99912001-06-09 00:41:05 +0000485 * Returns true if no channel has too much buffered data, and false if one or
486 * more channel is overfull.
487 */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000488int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000489channel_not_very_much_buffered_data(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000490{
491 u_int i;
492 Channel *c;
493
494 for (i = 0; i < channels_alloc; i++) {
495 c = channels[i];
496 if (c != NULL && c->type == SSH_CHANNEL_OPEN) {
Damien Milleraf5f2e62001-10-10 15:01:16 +1000497#if 0
498 if (!compat20 &&
499 buffer_len(&c->input) > packet_get_maxsize()) {
Damien Miller275295e2003-01-08 14:04:09 +1100500 debug2("channel %d: big input buffer %d",
Ben Lindstrome9c99912001-06-09 00:41:05 +0000501 c->self, buffer_len(&c->input));
502 return 0;
503 }
Damien Milleraf5f2e62001-10-10 15:01:16 +1000504#endif
Ben Lindstrome9c99912001-06-09 00:41:05 +0000505 if (buffer_len(&c->output) > packet_get_maxsize()) {
Darren Tucker502d3842003-06-28 12:38:01 +1000506 debug2("channel %d: big output buffer %u > %u",
Damien Milleraf5f2e62001-10-10 15:01:16 +1000507 c->self, buffer_len(&c->output),
508 packet_get_maxsize());
Ben Lindstrome9c99912001-06-09 00:41:05 +0000509 return 0;
510 }
511 }
512 }
513 return 1;
514}
515
516/* Returns true if any channel is still open. */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000517int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000518channel_still_open(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000519{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000520 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000521 Channel *c;
522
523 for (i = 0; i < channels_alloc; i++) {
524 c = channels[i];
525 if (c == NULL)
526 continue;
527 switch (c->type) {
528 case SSH_CHANNEL_X11_LISTENER:
529 case SSH_CHANNEL_PORT_LISTENER:
530 case SSH_CHANNEL_RPORT_LISTENER:
Damien Millere1537f92010-01-26 13:26:22 +1100531 case SSH_CHANNEL_MUX_LISTENER:
Ben Lindstrome9c99912001-06-09 00:41:05 +0000532 case SSH_CHANNEL_CLOSED:
533 case SSH_CHANNEL_AUTH_SOCKET:
534 case SSH_CHANNEL_DYNAMIC:
535 case SSH_CHANNEL_CONNECTING:
536 case SSH_CHANNEL_ZOMBIE:
Damien Miller36187092013-06-10 13:07:11 +1000537 case SSH_CHANNEL_ABANDONED:
Ben Lindstrome9c99912001-06-09 00:41:05 +0000538 continue;
539 case SSH_CHANNEL_LARVAL:
540 if (!compat20)
541 fatal("cannot happen: SSH_CHANNEL_LARVAL");
542 continue;
543 case SSH_CHANNEL_OPENING:
544 case SSH_CHANNEL_OPEN:
545 case SSH_CHANNEL_X11_OPEN:
Damien Millere1537f92010-01-26 13:26:22 +1100546 case SSH_CHANNEL_MUX_CLIENT:
Ben Lindstrome9c99912001-06-09 00:41:05 +0000547 return 1;
548 case SSH_CHANNEL_INPUT_DRAINING:
549 case SSH_CHANNEL_OUTPUT_DRAINING:
550 if (!compat13)
551 fatal("cannot happen: OUT_DRAIN");
552 return 1;
553 default:
554 fatal("channel_still_open: bad channel type %d", c->type);
555 /* NOTREACHED */
556 }
557 }
558 return 0;
559}
560
561/* Returns the id of an open channel suitable for keepaliving */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000562int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000563channel_find_open(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000564{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000565 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000566 Channel *c;
567
568 for (i = 0; i < channels_alloc; i++) {
569 c = channels[i];
Damien Miller3bbd8782004-06-18 22:23:22 +1000570 if (c == NULL || c->remote_id < 0)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000571 continue;
572 switch (c->type) {
573 case SSH_CHANNEL_CLOSED:
574 case SSH_CHANNEL_DYNAMIC:
575 case SSH_CHANNEL_X11_LISTENER:
576 case SSH_CHANNEL_PORT_LISTENER:
577 case SSH_CHANNEL_RPORT_LISTENER:
Damien Millere1537f92010-01-26 13:26:22 +1100578 case SSH_CHANNEL_MUX_LISTENER:
579 case SSH_CHANNEL_MUX_CLIENT:
Ben Lindstrome9c99912001-06-09 00:41:05 +0000580 case SSH_CHANNEL_OPENING:
581 case SSH_CHANNEL_CONNECTING:
582 case SSH_CHANNEL_ZOMBIE:
Damien Miller36187092013-06-10 13:07:11 +1000583 case SSH_CHANNEL_ABANDONED:
Ben Lindstrome9c99912001-06-09 00:41:05 +0000584 continue;
585 case SSH_CHANNEL_LARVAL:
586 case SSH_CHANNEL_AUTH_SOCKET:
587 case SSH_CHANNEL_OPEN:
588 case SSH_CHANNEL_X11_OPEN:
589 return i;
590 case SSH_CHANNEL_INPUT_DRAINING:
591 case SSH_CHANNEL_OUTPUT_DRAINING:
592 if (!compat13)
593 fatal("cannot happen: OUT_DRAIN");
594 return i;
595 default:
596 fatal("channel_find_open: bad channel type %d", c->type);
597 /* NOTREACHED */
598 }
599 }
600 return -1;
601}
602
603
604/*
605 * Returns a message describing the currently open forwarded connections,
606 * suitable for sending to the client. The message contains crlf pairs for
607 * newlines.
608 */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000609char *
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000610channel_open_message(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000611{
612 Buffer buffer;
613 Channel *c;
614 char buf[1024], *cp;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000615 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000616
617 buffer_init(&buffer);
618 snprintf(buf, sizeof buf, "The following connections are open:\r\n");
619 buffer_append(&buffer, buf, strlen(buf));
620 for (i = 0; i < channels_alloc; i++) {
621 c = channels[i];
622 if (c == NULL)
623 continue;
624 switch (c->type) {
625 case SSH_CHANNEL_X11_LISTENER:
626 case SSH_CHANNEL_PORT_LISTENER:
627 case SSH_CHANNEL_RPORT_LISTENER:
628 case SSH_CHANNEL_CLOSED:
629 case SSH_CHANNEL_AUTH_SOCKET:
630 case SSH_CHANNEL_ZOMBIE:
Damien Miller36187092013-06-10 13:07:11 +1000631 case SSH_CHANNEL_ABANDONED:
Damien Millere1537f92010-01-26 13:26:22 +1100632 case SSH_CHANNEL_MUX_CLIENT:
633 case SSH_CHANNEL_MUX_LISTENER:
Ben Lindstrome9c99912001-06-09 00:41:05 +0000634 continue;
635 case SSH_CHANNEL_LARVAL:
636 case SSH_CHANNEL_OPENING:
637 case SSH_CHANNEL_CONNECTING:
638 case SSH_CHANNEL_DYNAMIC:
639 case SSH_CHANNEL_OPEN:
640 case SSH_CHANNEL_X11_OPEN:
641 case SSH_CHANNEL_INPUT_DRAINING:
642 case SSH_CHANNEL_OUTPUT_DRAINING:
Damien Miller0e220db2004-06-15 10:34:08 +1000643 snprintf(buf, sizeof buf,
Damien Millere1537f92010-01-26 13:26:22 +1100644 " #%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 +0000645 c->self, c->remote_name,
646 c->type, c->remote_id,
647 c->istate, buffer_len(&c->input),
648 c->ostate, buffer_len(&c->output),
Damien Millere1537f92010-01-26 13:26:22 +1100649 c->rfd, c->wfd, c->ctl_chan);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000650 buffer_append(&buffer, buf, strlen(buf));
651 continue;
652 default:
653 fatal("channel_open_message: bad channel type %d", c->type);
654 /* NOTREACHED */
655 }
656 }
657 buffer_append(&buffer, "\0", 1);
658 cp = xstrdup(buffer_ptr(&buffer));
659 buffer_free(&buffer);
660 return cp;
661}
662
663void
664channel_send_open(int id)
665{
666 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000667
Ben Lindstrome9c99912001-06-09 00:41:05 +0000668 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000669 logit("channel_send_open: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000670 return;
671 }
Ben Lindstrom1d568f92002-12-23 02:44:36 +0000672 debug2("channel %d: send open", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000673 packet_start(SSH2_MSG_CHANNEL_OPEN);
674 packet_put_cstring(c->ctype);
675 packet_put_int(c->self);
676 packet_put_int(c->local_window);
677 packet_put_int(c->local_maxpacket);
678 packet_send();
679}
680
681void
Ben Lindstrom1d568f92002-12-23 02:44:36 +0000682channel_request_start(int id, char *service, int wantconfirm)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000683{
Ben Lindstrom1d568f92002-12-23 02:44:36 +0000684 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000685
Ben Lindstrome9c99912001-06-09 00:41:05 +0000686 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000687 logit("channel_request_start: %d: unknown channel id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000688 return;
689 }
Damien Miller0e220db2004-06-15 10:34:08 +1000690 debug2("channel %d: request %s confirm %d", id, service, wantconfirm);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000691 packet_start(SSH2_MSG_CHANNEL_REQUEST);
692 packet_put_int(c->remote_id);
693 packet_put_cstring(service);
694 packet_put_char(wantconfirm);
695}
Damien Miller4f7becb2006-03-26 14:10:14 +1100696
Ben Lindstrome9c99912001-06-09 00:41:05 +0000697void
Damien Millerb84886b2008-05-19 15:05:07 +1000698channel_register_status_confirm(int id, channel_confirm_cb *cb,
699 channel_confirm_abandon_cb *abandon_cb, void *ctx)
700{
701 struct channel_confirm *cc;
702 Channel *c;
703
704 if ((c = channel_lookup(id)) == NULL)
705 fatal("channel_register_expect: %d: bad id", id);
706
707 cc = xmalloc(sizeof(*cc));
708 cc->cb = cb;
709 cc->abandon_cb = abandon_cb;
710 cc->ctx = ctx;
711 TAILQ_INSERT_TAIL(&c->status_confirms, cc, entry);
712}
713
714void
Damien Millerd530f5f2010-05-21 14:57:10 +1000715channel_register_open_confirm(int id, channel_open_fn *fn, void *ctx)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000716{
717 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000718
Ben Lindstrome9c99912001-06-09 00:41:05 +0000719 if (c == NULL) {
Damien Millera0094332008-11-03 19:26:35 +1100720 logit("channel_register_open_confirm: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000721 return;
722 }
Damien Millerb84886b2008-05-19 15:05:07 +1000723 c->open_confirm = fn;
724 c->open_confirm_ctx = ctx;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000725}
Damien Miller4f7becb2006-03-26 14:10:14 +1100726
Ben Lindstrome9c99912001-06-09 00:41:05 +0000727void
Damien Miller39eda6e2005-11-05 14:52:50 +1100728channel_register_cleanup(int id, channel_callback_fn *fn, int do_close)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000729{
Damien Millerd47c62a2005-12-13 19:33:57 +1100730 Channel *c = channel_by_id(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000731
Ben Lindstrome9c99912001-06-09 00:41:05 +0000732 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000733 logit("channel_register_cleanup: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000734 return;
735 }
Ben Lindstrom809744e2001-07-04 05:26:06 +0000736 c->detach_user = fn;
Damien Miller39eda6e2005-11-05 14:52:50 +1100737 c->detach_close = do_close;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000738}
Damien Miller4f7becb2006-03-26 14:10:14 +1100739
Ben Lindstrome9c99912001-06-09 00:41:05 +0000740void
741channel_cancel_cleanup(int id)
742{
Damien Millerd47c62a2005-12-13 19:33:57 +1100743 Channel *c = channel_by_id(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000744
Ben Lindstrome9c99912001-06-09 00:41:05 +0000745 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000746 logit("channel_cancel_cleanup: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000747 return;
748 }
Ben Lindstrom809744e2001-07-04 05:26:06 +0000749 c->detach_user = NULL;
Damien Miller39eda6e2005-11-05 14:52:50 +1100750 c->detach_close = 0;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000751}
Damien Miller4f7becb2006-03-26 14:10:14 +1100752
Ben Lindstrome9c99912001-06-09 00:41:05 +0000753void
Damien Miller077b2382005-12-31 16:22:32 +1100754channel_register_filter(int id, channel_infilter_fn *ifn,
Darren Tucker84c56f52008-06-13 04:55:46 +1000755 channel_outfilter_fn *ofn, channel_filter_cleanup_fn *cfn, void *ctx)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000756{
757 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000758
Ben Lindstrome9c99912001-06-09 00:41:05 +0000759 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000760 logit("channel_register_filter: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000761 return;
762 }
Damien Miller077b2382005-12-31 16:22:32 +1100763 c->input_filter = ifn;
764 c->output_filter = ofn;
Darren Tucker2fb66ca2008-06-13 04:49:33 +1000765 c->filter_ctx = ctx;
Darren Tucker84c56f52008-06-13 04:55:46 +1000766 c->filter_cleanup = cfn;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000767}
768
769void
770channel_set_fds(int id, int rfd, int wfd, int efd,
Darren Tuckered3cdc02008-06-16 23:29:18 +1000771 int extusage, int nonblock, int is_tty, u_int window_max)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000772{
773 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000774
Ben Lindstrome9c99912001-06-09 00:41:05 +0000775 if (c == NULL || c->type != SSH_CHANNEL_LARVAL)
776 fatal("channel_activate for non-larval channel %d.", id);
Darren Tuckered3cdc02008-06-16 23:29:18 +1000777 channel_register_fds(c, rfd, wfd, efd, extusage, nonblock, is_tty);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000778 c->type = SSH_CHANNEL_OPEN;
Damien Miller2aa0c192002-02-19 15:20:08 +1100779 c->local_window = c->local_window_max = window_max;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000780 packet_start(SSH2_MSG_CHANNEL_WINDOW_ADJUST);
781 packet_put_int(c->remote_id);
782 packet_put_int(c->local_window);
783 packet_send();
784}
785
Damien Miller5428f641999-11-25 11:54:57 +1100786/*
Damien Millerb38eff82000-04-01 11:09:21 +1000787 * 'channel_pre*' are called just before select() to add any bits relevant to
788 * channels in the select bitmasks.
Damien Miller5428f641999-11-25 11:54:57 +1100789 */
Damien Millerb38eff82000-04-01 11:09:21 +1000790/*
791 * 'channel_post*': perform any appropriate operations for channels which
792 * have events pending.
793 */
Damien Millerd62f2ca2006-03-26 13:57:41 +1100794typedef void chan_fn(Channel *c, fd_set *readset, fd_set *writeset);
Damien Millerb38eff82000-04-01 11:09:21 +1000795chan_fn *channel_pre[SSH_CHANNEL_MAX_TYPE];
796chan_fn *channel_post[SSH_CHANNEL_MAX_TYPE];
797
Damien Miller8473dd82006-07-24 14:08:32 +1000798/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +0000799static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100800channel_pre_listener(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000801{
802 FD_SET(c->sock, readset);
803}
804
Damien Miller8473dd82006-07-24 14:08:32 +1000805/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +0000806static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100807channel_pre_connecting(Channel *c, fd_set *readset, fd_set *writeset)
Ben Lindstrom7ad97102000-12-06 01:42:49 +0000808{
809 debug3("channel %d: waiting for connection", c->self);
810 FD_SET(c->sock, writeset);
811}
812
Ben Lindstrombba81212001-06-25 05:01:22 +0000813static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100814channel_pre_open_13(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000815{
816 if (buffer_len(&c->input) < packet_get_maxsize())
817 FD_SET(c->sock, readset);
818 if (buffer_len(&c->output) > 0)
819 FD_SET(c->sock, writeset);
820}
821
Ben Lindstrombba81212001-06-25 05:01:22 +0000822static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100823channel_pre_open(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000824{
Damien Millerde6987c2002-01-22 23:20:40 +1100825 u_int limit = compat20 ? c->remote_window : packet_get_maxsize();
Damien Millerb38eff82000-04-01 11:09:21 +1000826
Damien Miller33b13562000-04-04 14:38:59 +1000827 if (c->istate == CHAN_INPUT_OPEN &&
Damien Millerde6987c2002-01-22 23:20:40 +1100828 limit > 0 &&
Damien Miller499a0d52006-04-23 12:06:03 +1000829 buffer_len(&c->input) < limit &&
830 buffer_check_alloc(&c->input, CHAN_RBUF))
Damien Miller33b13562000-04-04 14:38:59 +1000831 FD_SET(c->rfd, readset);
832 if (c->ostate == CHAN_OUTPUT_OPEN ||
833 c->ostate == CHAN_OUTPUT_WAIT_DRAIN) {
834 if (buffer_len(&c->output) > 0) {
835 FD_SET(c->wfd, writeset);
836 } else if (c->ostate == CHAN_OUTPUT_WAIT_DRAIN) {
Ben Lindstromcf159442002-03-26 03:26:24 +0000837 if (CHANNEL_EFD_OUTPUT_ACTIVE(c))
Damien Miller0dc1bef2005-07-17 17:22:45 +1000838 debug2("channel %d: obuf_empty delayed efd %d/(%d)",
839 c->self, c->efd, buffer_len(&c->extended));
Ben Lindstromcf159442002-03-26 03:26:24 +0000840 else
841 chan_obuf_empty(c);
Damien Miller33b13562000-04-04 14:38:59 +1000842 }
843 }
844 /** XXX check close conditions, too */
Damien Millerd654dd22008-05-19 16:05:41 +1000845 if (compat20 && c->efd != -1 &&
846 !(c->istate == CHAN_INPUT_CLOSED && c->ostate == CHAN_OUTPUT_CLOSED)) {
Damien Miller33b13562000-04-04 14:38:59 +1000847 if (c->extended_usage == CHAN_EXTENDED_WRITE &&
848 buffer_len(&c->extended) > 0)
849 FD_SET(c->efd, writeset);
Damien Miller8853ca52010-06-26 10:00:14 +1000850 else if (c->efd != -1 && !(c->flags & CHAN_EOF_SENT) &&
851 (c->extended_usage == CHAN_EXTENDED_READ ||
852 c->extended_usage == CHAN_EXTENDED_IGNORE) &&
Damien Miller33b13562000-04-04 14:38:59 +1000853 buffer_len(&c->extended) < c->remote_window)
854 FD_SET(c->efd, readset);
855 }
Damien Miller0e220db2004-06-15 10:34:08 +1000856 /* XXX: What about efd? races? */
Damien Miller33b13562000-04-04 14:38:59 +1000857}
858
Damien Miller8473dd82006-07-24 14:08:32 +1000859/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +0000860static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100861channel_pre_input_draining(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000862{
863 if (buffer_len(&c->input) == 0) {
864 packet_start(SSH_MSG_CHANNEL_CLOSE);
865 packet_put_int(c->remote_id);
866 packet_send();
867 c->type = SSH_CHANNEL_CLOSED;
Damien Millerfbdeece2003-09-02 22:52:31 +1000868 debug2("channel %d: closing after input drain.", c->self);
Damien Millerb38eff82000-04-01 11:09:21 +1000869 }
870}
871
Damien Miller8473dd82006-07-24 14:08:32 +1000872/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +0000873static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100874channel_pre_output_draining(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000875{
876 if (buffer_len(&c->output) == 0)
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000877 chan_mark_dead(c);
Damien Miller4af51302000-04-16 11:18:38 +1000878 else
Damien Millerb38eff82000-04-01 11:09:21 +1000879 FD_SET(c->sock, writeset);
880}
881
882/*
883 * This is a special state for X11 authentication spoofing. An opened X11
884 * connection (when authentication spoofing is being done) remains in this
885 * state until the first packet has been completely read. The authentication
886 * data in that packet is then substituted by the real data if it matches the
887 * fake data, and the channel is put into normal mode.
Damien Millerbd483e72000-04-30 10:00:53 +1000888 * XXX All this happens at the client side.
Ben Lindstrome9c99912001-06-09 00:41:05 +0000889 * Returns: 0 = need more data, -1 = wrong cookie, 1 = ok
Damien Millerb38eff82000-04-01 11:09:21 +1000890 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000891static int
Ben Lindstrome9c99912001-06-09 00:41:05 +0000892x11_open_helper(Buffer *b)
Damien Millerb38eff82000-04-01 11:09:21 +1000893{
Ben Lindstrom46c16222000-12-22 01:43:59 +0000894 u_char *ucp;
895 u_int proto_len, data_len;
Damien Millerb38eff82000-04-01 11:09:21 +1000896
897 /* Check if the fixed size part of the packet is in buffer. */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000898 if (buffer_len(b) < 12)
Damien Millerb38eff82000-04-01 11:09:21 +1000899 return 0;
900
901 /* Parse the lengths of variable-length fields. */
Damien Miller708d21c2002-01-22 23:18:15 +1100902 ucp = buffer_ptr(b);
Damien Millerb38eff82000-04-01 11:09:21 +1000903 if (ucp[0] == 0x42) { /* Byte order MSB first. */
904 proto_len = 256 * ucp[6] + ucp[7];
905 data_len = 256 * ucp[8] + ucp[9];
906 } else if (ucp[0] == 0x6c) { /* Byte order LSB first. */
907 proto_len = ucp[6] + 256 * ucp[7];
908 data_len = ucp[8] + 256 * ucp[9];
909 } else {
Damien Millerfbdeece2003-09-02 22:52:31 +1000910 debug2("Initial X11 packet contains bad byte order byte: 0x%x",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100911 ucp[0]);
Damien Millerb38eff82000-04-01 11:09:21 +1000912 return -1;
913 }
914
915 /* Check if the whole packet is in buffer. */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000916 if (buffer_len(b) <
Damien Millerb38eff82000-04-01 11:09:21 +1000917 12 + ((proto_len + 3) & ~3) + ((data_len + 3) & ~3))
918 return 0;
919
920 /* Check if authentication protocol matches. */
921 if (proto_len != strlen(x11_saved_proto) ||
922 memcmp(ucp + 12, x11_saved_proto, proto_len) != 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +1000923 debug2("X11 connection uses different authentication protocol.");
Damien Millerb38eff82000-04-01 11:09:21 +1000924 return -1;
925 }
926 /* Check if authentication data matches our fake data. */
927 if (data_len != x11_fake_data_len ||
Damien Millerea1651c2010-07-16 13:58:37 +1000928 timingsafe_bcmp(ucp + 12 + ((proto_len + 3) & ~3),
Damien Millerb38eff82000-04-01 11:09:21 +1000929 x11_fake_data, x11_fake_data_len) != 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +1000930 debug2("X11 auth data does not match fake data.");
Damien Millerb38eff82000-04-01 11:09:21 +1000931 return -1;
932 }
933 /* Check fake data length */
934 if (x11_fake_data_len != x11_saved_data_len) {
935 error("X11 fake_data_len %d != saved_data_len %d",
936 x11_fake_data_len, x11_saved_data_len);
937 return -1;
938 }
939 /*
940 * Received authentication protocol and data match
941 * our fake data. Substitute the fake data with real
942 * data.
943 */
944 memcpy(ucp + 12 + ((proto_len + 3) & ~3),
945 x11_saved_data, x11_saved_data_len);
946 return 1;
947}
948
Ben Lindstrombba81212001-06-25 05:01:22 +0000949static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100950channel_pre_x11_open_13(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000951{
Ben Lindstrome9c99912001-06-09 00:41:05 +0000952 int ret = x11_open_helper(&c->output);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000953
Damien Millerb38eff82000-04-01 11:09:21 +1000954 if (ret == 1) {
955 /* Start normal processing for the channel. */
956 c->type = SSH_CHANNEL_OPEN;
Damien Miller78928792000-04-12 20:17:38 +1000957 channel_pre_open_13(c, readset, writeset);
Damien Millerb38eff82000-04-01 11:09:21 +1000958 } else if (ret == -1) {
959 /*
960 * We have received an X11 connection that has bad
961 * authentication information.
962 */
Damien Miller996acd22003-04-09 20:59:48 +1000963 logit("X11 connection rejected because of wrong authentication.");
Damien Millerb38eff82000-04-01 11:09:21 +1000964 buffer_clear(&c->input);
965 buffer_clear(&c->output);
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000966 channel_close_fd(&c->sock);
Damien Millerb38eff82000-04-01 11:09:21 +1000967 c->sock = -1;
968 c->type = SSH_CHANNEL_CLOSED;
969 packet_start(SSH_MSG_CHANNEL_CLOSE);
970 packet_put_int(c->remote_id);
971 packet_send();
972 }
973}
974
Ben Lindstrombba81212001-06-25 05:01:22 +0000975static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100976channel_pre_x11_open(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000977{
Ben Lindstrome9c99912001-06-09 00:41:05 +0000978 int ret = x11_open_helper(&c->output);
Ben Lindstrom944c4f02001-09-18 05:51:13 +0000979
980 /* c->force_drain = 1; */
981
Damien Millerb38eff82000-04-01 11:09:21 +1000982 if (ret == 1) {
983 c->type = SSH_CHANNEL_OPEN;
Damien Millerde6987c2002-01-22 23:20:40 +1100984 channel_pre_open(c, readset, writeset);
Damien Millerb38eff82000-04-01 11:09:21 +1000985 } else if (ret == -1) {
Damien Miller996acd22003-04-09 20:59:48 +1000986 logit("X11 connection rejected because of wrong authentication.");
Damien Millerfbdeece2003-09-02 22:52:31 +1000987 debug2("X11 rejected %d i%d/o%d", c->self, c->istate, c->ostate);
Damien Millera90fc082002-01-22 23:19:38 +1100988 chan_read_failed(c);
989 buffer_clear(&c->input);
990 chan_ibuf_empty(c);
991 buffer_clear(&c->output);
992 /* for proto v1, the peer will send an IEOF */
993 if (compat20)
994 chan_write_failed(c);
995 else
996 c->type = SSH_CHANNEL_OPEN;
Damien Millerfbdeece2003-09-02 22:52:31 +1000997 debug2("X11 closed %d i%d/o%d", c->self, c->istate, c->ostate);
Damien Millerb38eff82000-04-01 11:09:21 +1000998 }
999}
1000
Damien Millere1537f92010-01-26 13:26:22 +11001001static void
1002channel_pre_mux_client(Channel *c, fd_set *readset, fd_set *writeset)
1003{
Damien Millerd530f5f2010-05-21 14:57:10 +10001004 if (c->istate == CHAN_INPUT_OPEN && !c->mux_pause &&
Damien Millere1537f92010-01-26 13:26:22 +11001005 buffer_check_alloc(&c->input, CHAN_RBUF))
1006 FD_SET(c->rfd, readset);
1007 if (c->istate == CHAN_INPUT_WAIT_DRAIN) {
1008 /* clear buffer immediately (discard any partial packet) */
1009 buffer_clear(&c->input);
1010 chan_ibuf_empty(c);
1011 /* Start output drain. XXX just kill chan? */
1012 chan_rcvd_oclose(c);
1013 }
1014 if (c->ostate == CHAN_OUTPUT_OPEN ||
1015 c->ostate == CHAN_OUTPUT_WAIT_DRAIN) {
1016 if (buffer_len(&c->output) > 0)
1017 FD_SET(c->wfd, writeset);
1018 else if (c->ostate == CHAN_OUTPUT_WAIT_DRAIN)
1019 chan_obuf_empty(c);
1020 }
1021}
1022
Ben Lindstromb3921512001-04-11 15:57:50 +00001023/* try to decode a socks4 header */
Damien Miller8473dd82006-07-24 14:08:32 +10001024/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001025static int
Damien Millerd62f2ca2006-03-26 13:57:41 +11001026channel_decode_socks4(Channel *c, fd_set *readset, fd_set *writeset)
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001027{
Damien Millera10f5612002-09-12 09:49:15 +10001028 char *p, *host;
Damien Miller1781f532009-01-28 16:24:41 +11001029 u_int len, have, i, found, need;
Damien Miller9f0f5c62001-12-21 14:45:46 +11001030 char username[256];
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001031 struct {
1032 u_int8_t version;
1033 u_int8_t command;
1034 u_int16_t dest_port;
Ben Lindstromb3921512001-04-11 15:57:50 +00001035 struct in_addr dest_addr;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001036 } s4_req, s4_rsp;
1037
Ben Lindstromb3921512001-04-11 15:57:50 +00001038 debug2("channel %d: decode socks4", c->self);
Ben Lindstrom2b261b92001-04-17 18:14:34 +00001039
1040 have = buffer_len(&c->input);
1041 len = sizeof(s4_req);
1042 if (have < len)
1043 return 0;
1044 p = buffer_ptr(&c->input);
Damien Miller1781f532009-01-28 16:24:41 +11001045
1046 need = 1;
1047 /* SOCKS4A uses an invalid IP address 0.0.0.x */
1048 if (p[4] == 0 && p[5] == 0 && p[6] == 0 && p[7] != 0) {
1049 debug2("channel %d: socks4a request", c->self);
1050 /* ... and needs an extra string (the hostname) */
1051 need = 2;
1052 }
1053 /* Check for terminating NUL on the string(s) */
Ben Lindstrom2b261b92001-04-17 18:14:34 +00001054 for (found = 0, i = len; i < have; i++) {
1055 if (p[i] == '\0') {
Damien Miller1781f532009-01-28 16:24:41 +11001056 found++;
1057 if (found == need)
1058 break;
Ben Lindstrom2b261b92001-04-17 18:14:34 +00001059 }
1060 if (i > 1024) {
1061 /* the peer is probably sending garbage */
1062 debug("channel %d: decode socks4: too long",
1063 c->self);
1064 return -1;
1065 }
1066 }
Damien Miller1781f532009-01-28 16:24:41 +11001067 if (found < need)
Ben Lindstrom2b261b92001-04-17 18:14:34 +00001068 return 0;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001069 buffer_get(&c->input, (char *)&s4_req.version, 1);
1070 buffer_get(&c->input, (char *)&s4_req.command, 1);
1071 buffer_get(&c->input, (char *)&s4_req.dest_port, 2);
Ben Lindstromb3921512001-04-11 15:57:50 +00001072 buffer_get(&c->input, (char *)&s4_req.dest_addr, 4);
Ben Lindstrom2b261b92001-04-17 18:14:34 +00001073 have = buffer_len(&c->input);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001074 p = buffer_ptr(&c->input);
1075 len = strlen(p);
Ben Lindstrom6fa9d102001-04-11 23:08:17 +00001076 debug2("channel %d: decode socks4: user %s/%d", c->self, p, len);
Damien Miller1781f532009-01-28 16:24:41 +11001077 len++; /* trailing '\0' */
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001078 if (len > have)
Ben Lindstromb3921512001-04-11 15:57:50 +00001079 fatal("channel %d: decode socks4: len %d > have %d",
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001080 c->self, len, have);
1081 strlcpy(username, p, sizeof(username));
1082 buffer_consume(&c->input, len);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001083
Darren Tuckera627d422013-06-02 07:31:17 +10001084 free(c->path);
1085 c->path = NULL;
Damien Miller1781f532009-01-28 16:24:41 +11001086 if (need == 1) { /* SOCKS4: one string */
1087 host = inet_ntoa(s4_req.dest_addr);
Damien Millera1c1b6c2009-01-28 16:29:49 +11001088 c->path = xstrdup(host);
Damien Miller1781f532009-01-28 16:24:41 +11001089 } else { /* SOCKS4A: two strings */
1090 have = buffer_len(&c->input);
1091 p = buffer_ptr(&c->input);
1092 len = strlen(p);
1093 debug2("channel %d: decode socks4a: host %s/%d",
1094 c->self, p, len);
1095 len++; /* trailing '\0' */
1096 if (len > have)
1097 fatal("channel %d: decode socks4a: len %d > have %d",
1098 c->self, len, have);
Damien Millera1c1b6c2009-01-28 16:29:49 +11001099 if (len > NI_MAXHOST) {
Damien Miller1781f532009-01-28 16:24:41 +11001100 error("channel %d: hostname \"%.100s\" too long",
1101 c->self, p);
1102 return -1;
1103 }
Damien Millera1c1b6c2009-01-28 16:29:49 +11001104 c->path = xstrdup(p);
Damien Miller1781f532009-01-28 16:24:41 +11001105 buffer_consume(&c->input, len);
1106 }
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001107 c->host_port = ntohs(s4_req.dest_port);
Damien Miller9f0f5c62001-12-21 14:45:46 +11001108
Damien Millerfbdeece2003-09-02 22:52:31 +10001109 debug2("channel %d: dynamic request: socks4 host %s port %u command %u",
Damien Miller1781f532009-01-28 16:24:41 +11001110 c->self, c->path, c->host_port, s4_req.command);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001111
Ben Lindstromb3921512001-04-11 15:57:50 +00001112 if (s4_req.command != 1) {
Damien Miller1781f532009-01-28 16:24:41 +11001113 debug("channel %d: cannot handle: %s cn %d",
1114 c->self, need == 1 ? "SOCKS4" : "SOCKS4A", s4_req.command);
Ben Lindstromb3921512001-04-11 15:57:50 +00001115 return -1;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001116 }
Ben Lindstromb3921512001-04-11 15:57:50 +00001117 s4_rsp.version = 0; /* vn: 0 for reply */
1118 s4_rsp.command = 90; /* cd: req granted */
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001119 s4_rsp.dest_port = 0; /* ignored */
Ben Lindstromb3921512001-04-11 15:57:50 +00001120 s4_rsp.dest_addr.s_addr = INADDR_ANY; /* ignored */
Damien Millera0fdce92006-03-26 14:28:50 +11001121 buffer_append(&c->output, &s4_rsp, sizeof(s4_rsp));
Ben Lindstromb3921512001-04-11 15:57:50 +00001122 return 1;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001123}
1124
Darren Tucker46471c92003-07-03 13:55:19 +10001125/* try to decode a socks5 header */
1126#define SSH_SOCKS5_AUTHDONE 0x1000
1127#define SSH_SOCKS5_NOAUTH 0x00
1128#define SSH_SOCKS5_IPV4 0x01
1129#define SSH_SOCKS5_DOMAIN 0x03
1130#define SSH_SOCKS5_IPV6 0x04
1131#define SSH_SOCKS5_CONNECT 0x01
1132#define SSH_SOCKS5_SUCCESS 0x00
1133
Damien Miller8473dd82006-07-24 14:08:32 +10001134/* ARGSUSED */
Darren Tucker46471c92003-07-03 13:55:19 +10001135static int
Damien Millerd62f2ca2006-03-26 13:57:41 +11001136channel_decode_socks5(Channel *c, fd_set *readset, fd_set *writeset)
Darren Tucker46471c92003-07-03 13:55:19 +10001137{
1138 struct {
1139 u_int8_t version;
1140 u_int8_t command;
1141 u_int8_t reserved;
1142 u_int8_t atyp;
1143 } s5_req, s5_rsp;
1144 u_int16_t dest_port;
Damien Millerce986542013-07-18 16:12:44 +10001145 char dest_addr[255+1], ntop[INET6_ADDRSTRLEN];
1146 u_char *p;
Damien Miller0f077072006-07-10 22:21:02 +10001147 u_int have, need, i, found, nmethods, addrlen, af;
Darren Tucker46471c92003-07-03 13:55:19 +10001148
1149 debug2("channel %d: decode socks5", c->self);
1150 p = buffer_ptr(&c->input);
1151 if (p[0] != 0x05)
1152 return -1;
1153 have = buffer_len(&c->input);
1154 if (!(c->flags & SSH_SOCKS5_AUTHDONE)) {
1155 /* format: ver | nmethods | methods */
Damien Millera8e06ce2003-11-21 23:48:55 +11001156 if (have < 2)
Darren Tucker46471c92003-07-03 13:55:19 +10001157 return 0;
1158 nmethods = p[1];
1159 if (have < nmethods + 2)
1160 return 0;
1161 /* look for method: "NO AUTHENTICATION REQUIRED" */
Damien Miller80163902007-01-05 16:30:16 +11001162 for (found = 0, i = 2; i < nmethods + 2; i++) {
Damien Miller4dec5d72006-08-05 11:38:40 +10001163 if (p[i] == SSH_SOCKS5_NOAUTH) {
Darren Tucker46471c92003-07-03 13:55:19 +10001164 found = 1;
1165 break;
1166 }
1167 }
1168 if (!found) {
1169 debug("channel %d: method SSH_SOCKS5_NOAUTH not found",
1170 c->self);
1171 return -1;
1172 }
1173 buffer_consume(&c->input, nmethods + 2);
1174 buffer_put_char(&c->output, 0x05); /* version */
1175 buffer_put_char(&c->output, SSH_SOCKS5_NOAUTH); /* method */
1176 FD_SET(c->sock, writeset);
1177 c->flags |= SSH_SOCKS5_AUTHDONE;
1178 debug2("channel %d: socks5 auth done", c->self);
1179 return 0; /* need more */
1180 }
1181 debug2("channel %d: socks5 post auth", c->self);
1182 if (have < sizeof(s5_req)+1)
1183 return 0; /* need more */
Damien Millere3b21a52006-03-26 14:29:06 +11001184 memcpy(&s5_req, p, sizeof(s5_req));
Darren Tucker46471c92003-07-03 13:55:19 +10001185 if (s5_req.version != 0x05 ||
1186 s5_req.command != SSH_SOCKS5_CONNECT ||
1187 s5_req.reserved != 0x00) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001188 debug2("channel %d: only socks5 connect supported", c->self);
Darren Tucker46471c92003-07-03 13:55:19 +10001189 return -1;
1190 }
Darren Tucker47eede72005-03-14 23:08:12 +11001191 switch (s5_req.atyp){
Darren Tucker46471c92003-07-03 13:55:19 +10001192 case SSH_SOCKS5_IPV4:
1193 addrlen = 4;
1194 af = AF_INET;
1195 break;
1196 case SSH_SOCKS5_DOMAIN:
1197 addrlen = p[sizeof(s5_req)];
1198 af = -1;
1199 break;
1200 case SSH_SOCKS5_IPV6:
1201 addrlen = 16;
1202 af = AF_INET6;
1203 break;
1204 default:
Damien Millerfbdeece2003-09-02 22:52:31 +10001205 debug2("channel %d: bad socks5 atyp %d", c->self, s5_req.atyp);
Darren Tucker46471c92003-07-03 13:55:19 +10001206 return -1;
1207 }
Damien Miller0f077072006-07-10 22:21:02 +10001208 need = sizeof(s5_req) + addrlen + 2;
1209 if (s5_req.atyp == SSH_SOCKS5_DOMAIN)
1210 need++;
1211 if (have < need)
Darren Tucker46471c92003-07-03 13:55:19 +10001212 return 0;
1213 buffer_consume(&c->input, sizeof(s5_req));
1214 if (s5_req.atyp == SSH_SOCKS5_DOMAIN)
1215 buffer_consume(&c->input, 1); /* host string length */
Damien Millerce986542013-07-18 16:12:44 +10001216 buffer_get(&c->input, &dest_addr, addrlen);
Darren Tucker46471c92003-07-03 13:55:19 +10001217 buffer_get(&c->input, (char *)&dest_port, 2);
1218 dest_addr[addrlen] = '\0';
Darren Tuckera627d422013-06-02 07:31:17 +10001219 free(c->path);
1220 c->path = NULL;
Damien Millera1c1b6c2009-01-28 16:29:49 +11001221 if (s5_req.atyp == SSH_SOCKS5_DOMAIN) {
Damien Miller9576ac42009-01-28 16:30:33 +11001222 if (addrlen >= NI_MAXHOST) {
Damien Millera1c1b6c2009-01-28 16:29:49 +11001223 error("channel %d: dynamic request: socks5 hostname "
1224 "\"%.100s\" too long", c->self, dest_addr);
1225 return -1;
1226 }
1227 c->path = xstrdup(dest_addr);
1228 } else {
1229 if (inet_ntop(af, dest_addr, ntop, sizeof(ntop)) == NULL)
1230 return -1;
1231 c->path = xstrdup(ntop);
1232 }
Darren Tucker46471c92003-07-03 13:55:19 +10001233 c->host_port = ntohs(dest_port);
Damien Miller787b2ec2003-11-21 23:56:47 +11001234
Damien Millerfbdeece2003-09-02 22:52:31 +10001235 debug2("channel %d: dynamic request: socks5 host %s port %u command %u",
Darren Tucker46471c92003-07-03 13:55:19 +10001236 c->self, c->path, c->host_port, s5_req.command);
1237
1238 s5_rsp.version = 0x05;
1239 s5_rsp.command = SSH_SOCKS5_SUCCESS;
1240 s5_rsp.reserved = 0; /* ignored */
1241 s5_rsp.atyp = SSH_SOCKS5_IPV4;
1242 ((struct in_addr *)&dest_addr)->s_addr = INADDR_ANY;
1243 dest_port = 0; /* ignored */
1244
Damien Millera0fdce92006-03-26 14:28:50 +11001245 buffer_append(&c->output, &s5_rsp, sizeof(s5_rsp));
1246 buffer_append(&c->output, &dest_addr, sizeof(struct in_addr));
1247 buffer_append(&c->output, &dest_port, sizeof(dest_port));
Darren Tucker46471c92003-07-03 13:55:19 +10001248 return 1;
1249}
1250
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001251Channel *
Damien Millere1537f92010-01-26 13:26:22 +11001252channel_connect_stdio_fwd(const char *host_to_connect, u_short port_to_connect,
1253 int in, int out)
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001254{
1255 Channel *c;
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001256
1257 debug("channel_connect_stdio_fwd %s:%d", host_to_connect,
1258 port_to_connect);
1259
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001260 c = channel_new("stdio-forward", SSH_CHANNEL_OPENING, in, out,
1261 -1, CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT,
1262 0, "stdio-forward", /*nonblock*/0);
1263
1264 c->path = xstrdup(host_to_connect);
1265 c->host_port = port_to_connect;
1266 c->listening_port = 0;
1267 c->force_drain = 1;
1268
1269 channel_register_fds(c, in, out, -1, 0, 1, 0);
1270 port_open_helper(c, "direct-tcpip");
1271
1272 return c;
1273}
1274
Ben Lindstromb3921512001-04-11 15:57:50 +00001275/* dynamic port forwarding */
Ben Lindstrombba81212001-06-25 05:01:22 +00001276static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001277channel_pre_dynamic(Channel *c, fd_set *readset, fd_set *writeset)
Ben Lindstromb3921512001-04-11 15:57:50 +00001278{
1279 u_char *p;
Damien Millereccb9de2005-06-17 12:59:34 +10001280 u_int have;
1281 int ret;
Ben Lindstromb3921512001-04-11 15:57:50 +00001282
1283 have = buffer_len(&c->input);
Ben Lindstromb3921512001-04-11 15:57:50 +00001284 debug2("channel %d: pre_dynamic: have %d", c->self, have);
Ben Lindstromc486d882001-04-11 16:08:34 +00001285 /* buffer_dump(&c->input); */
Ben Lindstromb3921512001-04-11 15:57:50 +00001286 /* check if the fixed size part of the packet is in buffer. */
Darren Tucker46471c92003-07-03 13:55:19 +10001287 if (have < 3) {
Ben Lindstromb3921512001-04-11 15:57:50 +00001288 /* need more */
1289 FD_SET(c->sock, readset);
1290 return;
1291 }
1292 /* try to guess the protocol */
1293 p = buffer_ptr(&c->input);
1294 switch (p[0]) {
Ben Lindstrom6fa9d102001-04-11 23:08:17 +00001295 case 0x04:
1296 ret = channel_decode_socks4(c, readset, writeset);
1297 break;
Darren Tucker46471c92003-07-03 13:55:19 +10001298 case 0x05:
1299 ret = channel_decode_socks5(c, readset, writeset);
1300 break;
Ben Lindstromb3921512001-04-11 15:57:50 +00001301 default:
1302 ret = -1;
1303 break;
1304 }
1305 if (ret < 0) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001306 chan_mark_dead(c);
Ben Lindstromb3921512001-04-11 15:57:50 +00001307 } else if (ret == 0) {
1308 debug2("channel %d: pre_dynamic: need more", c->self);
1309 /* need more */
1310 FD_SET(c->sock, readset);
1311 } else {
1312 /* switch to the next state */
1313 c->type = SSH_CHANNEL_OPENING;
1314 port_open_helper(c, "direct-tcpip");
1315 }
1316}
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001317
Damien Millerb38eff82000-04-01 11:09:21 +10001318/* This is our fake X11 server socket. */
Damien Miller8473dd82006-07-24 14:08:32 +10001319/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001320static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001321channel_post_x11_listener(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001322{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001323 Channel *nc;
Damien Miller163886f2008-07-14 11:28:58 +10001324 struct sockaddr_storage addr;
Damien Miller37f1c082013-04-23 15:20:43 +10001325 int newsock, oerrno;
Damien Millerb38eff82000-04-01 11:09:21 +10001326 socklen_t addrlen;
Damien Millerd83ff352001-01-30 09:19:34 +11001327 char buf[16384], *remote_ipaddr;
Damien Millerbd483e72000-04-30 10:00:53 +10001328 int remote_port;
Damien Millerb38eff82000-04-01 11:09:21 +10001329
1330 if (FD_ISSET(c->sock, readset)) {
1331 debug("X11 connection requested.");
1332 addrlen = sizeof(addr);
Damien Miller163886f2008-07-14 11:28:58 +10001333 newsock = accept(c->sock, (struct sockaddr *)&addr, &addrlen);
Damien Millere7378562001-12-21 14:58:35 +11001334 if (c->single_connection) {
Damien Miller37f1c082013-04-23 15:20:43 +10001335 oerrno = errno;
Damien Millerfbdeece2003-09-02 22:52:31 +10001336 debug2("single_connection: closing X11 listener.");
Damien Millere7378562001-12-21 14:58:35 +11001337 channel_close_fd(&c->sock);
1338 chan_mark_dead(c);
Damien Miller37f1c082013-04-23 15:20:43 +10001339 errno = oerrno;
Damien Millere7378562001-12-21 14:58:35 +11001340 }
Damien Millerb38eff82000-04-01 11:09:21 +10001341 if (newsock < 0) {
Damien Miller37f1c082013-04-23 15:20:43 +10001342 if (errno != EINTR && errno != EWOULDBLOCK &&
1343 errno != ECONNABORTED)
1344 error("accept: %.100s", strerror(errno));
Damien Millera6508752012-04-22 11:21:10 +10001345 if (errno == EMFILE || errno == ENFILE)
Darren Tuckerb759c9c2013-06-02 07:46:16 +10001346 c->notbefore = monotime() + 1;
Damien Millerb38eff82000-04-01 11:09:21 +10001347 return;
1348 }
Damien Miller398e1cf2002-02-05 11:52:13 +11001349 set_nodelay(newsock);
Damien Millerd83ff352001-01-30 09:19:34 +11001350 remote_ipaddr = get_peer_ipaddr(newsock);
Damien Millerbd483e72000-04-30 10:00:53 +10001351 remote_port = get_peer_port(newsock);
Damien Millerb38eff82000-04-01 11:09:21 +10001352 snprintf(buf, sizeof buf, "X11 connection from %.200s port %d",
Damien Millerd83ff352001-01-30 09:19:34 +11001353 remote_ipaddr, remote_port);
Damien Millerbd483e72000-04-30 10:00:53 +10001354
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001355 nc = channel_new("accepted x11 socket",
Damien Millerbd483e72000-04-30 10:00:53 +10001356 SSH_CHANNEL_OPENING, newsock, newsock, -1,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001357 c->local_window_max, c->local_maxpacket, 0, buf, 1);
Damien Millerbd483e72000-04-30 10:00:53 +10001358 if (compat20) {
1359 packet_start(SSH2_MSG_CHANNEL_OPEN);
1360 packet_put_cstring("x11");
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001361 packet_put_int(nc->self);
Damien Millere7378562001-12-21 14:58:35 +11001362 packet_put_int(nc->local_window_max);
1363 packet_put_int(nc->local_maxpacket);
Damien Millerd83ff352001-01-30 09:19:34 +11001364 /* originator ipaddr and port */
1365 packet_put_cstring(remote_ipaddr);
Damien Miller30c3d422000-05-09 11:02:59 +10001366 if (datafellows & SSH_BUG_X11FWD) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001367 debug2("ssh2 x11 bug compat mode");
Damien Miller30c3d422000-05-09 11:02:59 +10001368 } else {
1369 packet_put_int(remote_port);
1370 }
Damien Millerbd483e72000-04-30 10:00:53 +10001371 packet_send();
1372 } else {
1373 packet_start(SSH_SMSG_X11_OPEN);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001374 packet_put_int(nc->self);
Ben Lindstrome9c99912001-06-09 00:41:05 +00001375 if (packet_get_protocol_flags() &
1376 SSH_PROTOFLAG_HOST_IN_FWD_OPEN)
Ben Lindstrom664408d2001-06-09 01:42:01 +00001377 packet_put_cstring(buf);
Damien Millerbd483e72000-04-30 10:00:53 +10001378 packet_send();
1379 }
Darren Tuckera627d422013-06-02 07:31:17 +10001380 free(remote_ipaddr);
Damien Millerb38eff82000-04-01 11:09:21 +10001381 }
1382}
1383
Ben Lindstrombba81212001-06-25 05:01:22 +00001384static void
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001385port_open_helper(Channel *c, char *rtype)
1386{
1387 int direct;
1388 char buf[1024];
1389 char *remote_ipaddr = get_peer_ipaddr(c->sock);
Damien Miller677257f2005-06-17 12:55:03 +10001390 int remote_port = get_peer_port(c->sock);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001391
Damien Millerd6369432010-02-02 17:02:07 +11001392 if (remote_port == -1) {
1393 /* Fake addr/port to appease peers that validate it (Tectia) */
Darren Tuckera627d422013-06-02 07:31:17 +10001394 free(remote_ipaddr);
Damien Millerd6369432010-02-02 17:02:07 +11001395 remote_ipaddr = xstrdup("127.0.0.1");
1396 remote_port = 65535;
1397 }
1398
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001399 direct = (strcmp(rtype, "direct-tcpip") == 0);
1400
1401 snprintf(buf, sizeof buf,
1402 "%s: listening port %d for %.100s port %d, "
1403 "connect from %.200s port %d",
1404 rtype, c->listening_port, c->path, c->host_port,
1405 remote_ipaddr, remote_port);
1406
Darren Tuckera627d422013-06-02 07:31:17 +10001407 free(c->remote_name);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001408 c->remote_name = xstrdup(buf);
1409
1410 if (compat20) {
1411 packet_start(SSH2_MSG_CHANNEL_OPEN);
1412 packet_put_cstring(rtype);
1413 packet_put_int(c->self);
1414 packet_put_int(c->local_window_max);
1415 packet_put_int(c->local_maxpacket);
1416 if (direct) {
1417 /* target host, port */
1418 packet_put_cstring(c->path);
1419 packet_put_int(c->host_port);
1420 } else {
1421 /* listen address, port */
1422 packet_put_cstring(c->path);
1423 packet_put_int(c->listening_port);
1424 }
1425 /* originator host and port */
1426 packet_put_cstring(remote_ipaddr);
Damien Miller677257f2005-06-17 12:55:03 +10001427 packet_put_int((u_int)remote_port);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001428 packet_send();
1429 } else {
1430 packet_start(SSH_MSG_PORT_OPEN);
1431 packet_put_int(c->self);
1432 packet_put_cstring(c->path);
1433 packet_put_int(c->host_port);
Ben Lindstrome9c99912001-06-09 00:41:05 +00001434 if (packet_get_protocol_flags() &
1435 SSH_PROTOFLAG_HOST_IN_FWD_OPEN)
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001436 packet_put_cstring(c->remote_name);
1437 packet_send();
1438 }
Darren Tuckera627d422013-06-02 07:31:17 +10001439 free(remote_ipaddr);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001440}
1441
Damien Miller5e7fd072005-11-05 14:53:39 +11001442static void
1443channel_set_reuseaddr(int fd)
1444{
1445 int on = 1;
1446
1447 /*
1448 * Set socket options.
1449 * Allow local port reuse in TIME_WAIT.
1450 */
1451 if (setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, &on, sizeof(on)) == -1)
1452 error("setsockopt SO_REUSEADDR fd %d: %s", fd, strerror(errno));
1453}
1454
Damien Millerb38eff82000-04-01 11:09:21 +10001455/*
1456 * This socket is listening for connections to a forwarded TCP/IP port.
1457 */
Damien Miller8473dd82006-07-24 14:08:32 +10001458/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001459static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001460channel_post_port_listener(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001461{
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001462 Channel *nc;
Damien Miller163886f2008-07-14 11:28:58 +10001463 struct sockaddr_storage addr;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001464 int newsock, nextstate;
Damien Millerb38eff82000-04-01 11:09:21 +10001465 socklen_t addrlen;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001466 char *rtype;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001467
Damien Millerb38eff82000-04-01 11:09:21 +10001468 if (FD_ISSET(c->sock, readset)) {
1469 debug("Connection to port %d forwarding "
1470 "to %.100s port %d requested.",
1471 c->listening_port, c->path, c->host_port);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001472
Damien Miller4623a752001-10-10 15:03:58 +10001473 if (c->type == SSH_CHANNEL_RPORT_LISTENER) {
1474 nextstate = SSH_CHANNEL_OPENING;
1475 rtype = "forwarded-tcpip";
1476 } else {
1477 if (c->host_port == 0) {
1478 nextstate = SSH_CHANNEL_DYNAMIC;
Damien Millerd3c04b92001-10-10 15:04:20 +10001479 rtype = "dynamic-tcpip";
Damien Miller4623a752001-10-10 15:03:58 +10001480 } else {
1481 nextstate = SSH_CHANNEL_OPENING;
1482 rtype = "direct-tcpip";
1483 }
1484 }
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001485
Damien Millerb38eff82000-04-01 11:09:21 +10001486 addrlen = sizeof(addr);
Damien Miller163886f2008-07-14 11:28:58 +10001487 newsock = accept(c->sock, (struct sockaddr *)&addr, &addrlen);
Damien Millerb38eff82000-04-01 11:09:21 +10001488 if (newsock < 0) {
Damien Miller37f1c082013-04-23 15:20:43 +10001489 if (errno != EINTR && errno != EWOULDBLOCK &&
1490 errno != ECONNABORTED)
1491 error("accept: %.100s", strerror(errno));
Damien Millera6508752012-04-22 11:21:10 +10001492 if (errno == EMFILE || errno == ENFILE)
Darren Tuckerb759c9c2013-06-02 07:46:16 +10001493 c->notbefore = monotime() + 1;
Damien Millerb38eff82000-04-01 11:09:21 +10001494 return;
1495 }
Ben Lindstrom1ebd7a52002-02-26 18:12:51 +00001496 set_nodelay(newsock);
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001497 nc = channel_new(rtype, nextstate, newsock, newsock, -1,
1498 c->local_window_max, c->local_maxpacket, 0, rtype, 1);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001499 nc->listening_port = c->listening_port;
1500 nc->host_port = c->host_port;
Damien Millera1c1b6c2009-01-28 16:29:49 +11001501 if (c->path != NULL)
1502 nc->path = xstrdup(c->path);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001503
Darren Tucker876045b2010-01-08 17:08:00 +11001504 if (nextstate != SSH_CHANNEL_DYNAMIC)
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001505 port_open_helper(nc, rtype);
Damien Millerb38eff82000-04-01 11:09:21 +10001506 }
1507}
1508
1509/*
1510 * This is the authentication agent socket listening for connections from
1511 * clients.
1512 */
Damien Miller8473dd82006-07-24 14:08:32 +10001513/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001514static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001515channel_post_auth_listener(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001516{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001517 Channel *nc;
1518 int newsock;
Damien Miller163886f2008-07-14 11:28:58 +10001519 struct sockaddr_storage addr;
Damien Millerb38eff82000-04-01 11:09:21 +10001520 socklen_t addrlen;
1521
1522 if (FD_ISSET(c->sock, readset)) {
1523 addrlen = sizeof(addr);
Damien Miller163886f2008-07-14 11:28:58 +10001524 newsock = accept(c->sock, (struct sockaddr *)&addr, &addrlen);
Damien Millerb38eff82000-04-01 11:09:21 +10001525 if (newsock < 0) {
Damien Millera6508752012-04-22 11:21:10 +10001526 error("accept from auth socket: %.100s",
1527 strerror(errno));
1528 if (errno == EMFILE || errno == ENFILE)
Darren Tuckerb759c9c2013-06-02 07:46:16 +10001529 c->notbefore = monotime() + 1;
Damien Millerb38eff82000-04-01 11:09:21 +10001530 return;
1531 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001532 nc = channel_new("accepted auth socket",
Damien Miller0bc1bd82000-11-13 22:57:25 +11001533 SSH_CHANNEL_OPENING, newsock, newsock, -1,
1534 c->local_window_max, c->local_maxpacket,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001535 0, "accepted auth socket", 1);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001536 if (compat20) {
1537 packet_start(SSH2_MSG_CHANNEL_OPEN);
1538 packet_put_cstring("auth-agent@openssh.com");
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001539 packet_put_int(nc->self);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001540 packet_put_int(c->local_window_max);
1541 packet_put_int(c->local_maxpacket);
1542 } else {
1543 packet_start(SSH_SMSG_AGENT_OPEN);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001544 packet_put_int(nc->self);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001545 }
Damien Millerb38eff82000-04-01 11:09:21 +10001546 packet_send();
1547 }
1548}
1549
Damien Miller8473dd82006-07-24 14:08:32 +10001550/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001551static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001552channel_post_connecting(Channel *c, fd_set *readset, fd_set *writeset)
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001553{
Damien Millerbd740252008-05-19 15:37:09 +10001554 int err = 0, sock;
Ben Lindstrom11180952001-07-04 05:13:35 +00001555 socklen_t sz = sizeof(err);
Ben Lindstrom69128662001-05-08 20:07:39 +00001556
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001557 if (FD_ISSET(c->sock, writeset)) {
Ben Lindstrom733a2352002-03-05 01:31:28 +00001558 if (getsockopt(c->sock, SOL_SOCKET, SO_ERROR, &err, &sz) < 0) {
Ben Lindstrom69128662001-05-08 20:07:39 +00001559 err = errno;
1560 error("getsockopt SO_ERROR failed");
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001561 }
Ben Lindstrom69128662001-05-08 20:07:39 +00001562 if (err == 0) {
Damien Millerbd740252008-05-19 15:37:09 +10001563 debug("channel %d: connected to %s port %d",
1564 c->self, c->connect_ctx.host, c->connect_ctx.port);
1565 channel_connect_ctx_free(&c->connect_ctx);
Ben Lindstrom69128662001-05-08 20:07:39 +00001566 c->type = SSH_CHANNEL_OPEN;
1567 if (compat20) {
1568 packet_start(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION);
1569 packet_put_int(c->remote_id);
1570 packet_put_int(c->self);
1571 packet_put_int(c->local_window);
1572 packet_put_int(c->local_maxpacket);
1573 } else {
1574 packet_start(SSH_MSG_CHANNEL_OPEN_CONFIRMATION);
1575 packet_put_int(c->remote_id);
1576 packet_put_int(c->self);
1577 }
1578 } else {
Damien Millerbd740252008-05-19 15:37:09 +10001579 debug("channel %d: connection failed: %s",
Ben Lindstrom69128662001-05-08 20:07:39 +00001580 c->self, strerror(err));
Damien Millerbd740252008-05-19 15:37:09 +10001581 /* Try next address, if any */
1582 if ((sock = connect_next(&c->connect_ctx)) > 0) {
1583 close(c->sock);
1584 c->sock = c->rfd = c->wfd = sock;
1585 channel_max_fd = channel_find_maxfd();
1586 return;
1587 }
1588 /* Exhausted all addresses */
1589 error("connect_to %.100s port %d: failed.",
1590 c->connect_ctx.host, c->connect_ctx.port);
1591 channel_connect_ctx_free(&c->connect_ctx);
Ben Lindstrom69128662001-05-08 20:07:39 +00001592 if (compat20) {
1593 packet_start(SSH2_MSG_CHANNEL_OPEN_FAILURE);
1594 packet_put_int(c->remote_id);
1595 packet_put_int(SSH2_OPEN_CONNECT_FAILED);
1596 if (!(datafellows & SSH_BUG_OPENFAILURE)) {
1597 packet_put_cstring(strerror(err));
1598 packet_put_cstring("");
1599 }
1600 } else {
1601 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
1602 packet_put_int(c->remote_id);
1603 }
1604 chan_mark_dead(c);
1605 }
1606 packet_send();
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001607 }
1608}
1609
Damien Miller8473dd82006-07-24 14:08:32 +10001610/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001611static int
Damien Millerd62f2ca2006-03-26 13:57:41 +11001612channel_handle_rfd(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001613{
Darren Tucker11327cc2005-03-14 23:22:25 +11001614 char buf[CHAN_RBUF];
Damien Miller835284b2007-06-11 13:03:16 +10001615 int len, force;
Damien Millerb38eff82000-04-01 11:09:21 +10001616
Damien Miller835284b2007-06-11 13:03:16 +10001617 force = c->isatty && c->detach_close && c->istate != CHAN_INPUT_CLOSED;
1618 if (c->rfd != -1 && (force || FD_ISSET(c->rfd, readset))) {
Darren Tucker9afe1152006-06-23 21:24:12 +10001619 errno = 0;
Damien Millerb38eff82000-04-01 11:09:21 +10001620 len = read(c->rfd, buf, sizeof(buf));
Damien Millerd8968ad2008-07-04 23:10:49 +10001621 if (len < 0 && (errno == EINTR ||
1622 ((errno == EAGAIN || errno == EWOULDBLOCK) && !force)))
Damien Miller6f83b8e2000-05-02 09:23:45 +10001623 return 1;
Darren Tucker9afe1152006-06-23 21:24:12 +10001624#ifndef PTY_ZEROREAD
Damien Millerb38eff82000-04-01 11:09:21 +10001625 if (len <= 0) {
Darren Tucker9afe1152006-06-23 21:24:12 +10001626#else
Darren Tucker144e8d62006-06-25 08:25:25 +10001627 if ((!c->isatty && len <= 0) ||
1628 (c->isatty && (len < 0 || (len == 0 && errno != 0)))) {
Darren Tucker9afe1152006-06-23 21:24:12 +10001629#endif
Damien Millerfbdeece2003-09-02 22:52:31 +10001630 debug2("channel %d: read<=0 rfd %d len %d",
Damien Millerb38eff82000-04-01 11:09:21 +10001631 c->self, c->rfd, len);
Ben Lindstromb3921512001-04-11 15:57:50 +00001632 if (c->type != SSH_CHANNEL_OPEN) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001633 debug2("channel %d: not open", c->self);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001634 chan_mark_dead(c);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001635 return -1;
Ben Lindstromb3921512001-04-11 15:57:50 +00001636 } else if (compat13) {
Damien Miller76765c02002-01-22 23:21:15 +11001637 buffer_clear(&c->output);
Damien Millerb38eff82000-04-01 11:09:21 +10001638 c->type = SSH_CHANNEL_INPUT_DRAINING;
Damien Millerfbdeece2003-09-02 22:52:31 +10001639 debug2("channel %d: input draining.", c->self);
Damien Millerb38eff82000-04-01 11:09:21 +10001640 } else {
1641 chan_read_failed(c);
1642 }
1643 return -1;
1644 }
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00001645 if (c->input_filter != NULL) {
Damien Millerad833b32000-08-23 10:46:23 +10001646 if (c->input_filter(c, buf, len) == -1) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001647 debug2("channel %d: filter stops", c->self);
Damien Millerad833b32000-08-23 10:46:23 +10001648 chan_read_failed(c);
1649 }
Damien Millerd27b9472005-12-13 19:29:02 +11001650 } else if (c->datagram) {
1651 buffer_put_string(&c->input, buf, len);
Damien Millerad833b32000-08-23 10:46:23 +10001652 } else {
1653 buffer_append(&c->input, buf, len);
1654 }
Damien Millerb38eff82000-04-01 11:09:21 +10001655 }
1656 return 1;
1657}
Damien Miller4f7becb2006-03-26 14:10:14 +11001658
Damien Miller8473dd82006-07-24 14:08:32 +10001659/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001660static int
Damien Millerd62f2ca2006-03-26 13:57:41 +11001661channel_handle_wfd(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001662{
Ben Lindstrome229b252001-03-05 06:28:06 +00001663 struct termios tio;
Damien Miller077b2382005-12-31 16:22:32 +11001664 u_char *data = NULL, *buf;
Damien Miller7d457182010-08-05 23:09:48 +10001665 u_int dlen, olen = 0;
Damien Millerb38eff82000-04-01 11:09:21 +10001666 int len;
1667
1668 /* Send buffered output data to the socket. */
Ben Lindstromc0dee1a2001-06-05 20:52:50 +00001669 if (c->wfd != -1 &&
Damien Millerb38eff82000-04-01 11:09:21 +10001670 FD_ISSET(c->wfd, writeset) &&
1671 buffer_len(&c->output) > 0) {
Damien Miller7d457182010-08-05 23:09:48 +10001672 olen = buffer_len(&c->output);
Damien Miller077b2382005-12-31 16:22:32 +11001673 if (c->output_filter != NULL) {
1674 if ((buf = c->output_filter(c, &data, &dlen)) == NULL) {
1675 debug2("channel %d: filter stops", c->self);
Damien Millere204f6a2006-01-31 21:47:15 +11001676 if (c->type != SSH_CHANNEL_OPEN)
1677 chan_mark_dead(c);
1678 else
1679 chan_write_failed(c);
1680 return -1;
Damien Miller077b2382005-12-31 16:22:32 +11001681 }
1682 } else if (c->datagram) {
1683 buf = data = buffer_get_string(&c->output, &dlen);
1684 } else {
1685 buf = data = buffer_ptr(&c->output);
1686 dlen = buffer_len(&c->output);
1687 }
1688
Damien Millerd27b9472005-12-13 19:29:02 +11001689 if (c->datagram) {
Damien Millerd27b9472005-12-13 19:29:02 +11001690 /* ignore truncated writes, datagrams might get lost */
Damien Miller077b2382005-12-31 16:22:32 +11001691 len = write(c->wfd, buf, dlen);
Darren Tuckera627d422013-06-02 07:31:17 +10001692 free(data);
Damien Millerd8968ad2008-07-04 23:10:49 +10001693 if (len < 0 && (errno == EINTR || errno == EAGAIN ||
1694 errno == EWOULDBLOCK))
Damien Millerd27b9472005-12-13 19:29:02 +11001695 return 1;
1696 if (len <= 0) {
1697 if (c->type != SSH_CHANNEL_OPEN)
1698 chan_mark_dead(c);
1699 else
1700 chan_write_failed(c);
1701 return -1;
1702 }
Damien Miller7d457182010-08-05 23:09:48 +10001703 goto out;
Damien Millerd27b9472005-12-13 19:29:02 +11001704 }
Ben Lindstrom92ea0ea2002-07-04 18:11:09 +00001705#ifdef _AIX
Damien Millera8e06ce2003-11-21 23:48:55 +11001706 /* XXX: Later AIX versions can't push as much data to tty */
Darren Tucker240fdfa2003-11-22 14:10:02 +11001707 if (compat20 && c->wfd_isatty)
1708 dlen = MIN(dlen, 8*1024);
Ben Lindstrom92ea0ea2002-07-04 18:11:09 +00001709#endif
Damien Miller077b2382005-12-31 16:22:32 +11001710
1711 len = write(c->wfd, buf, dlen);
Damien Millerd8968ad2008-07-04 23:10:49 +10001712 if (len < 0 &&
1713 (errno == EINTR || errno == EAGAIN || errno == EWOULDBLOCK))
Damien Miller6f83b8e2000-05-02 09:23:45 +10001714 return 1;
Damien Millerb38eff82000-04-01 11:09:21 +10001715 if (len <= 0) {
Ben Lindstromb3921512001-04-11 15:57:50 +00001716 if (c->type != SSH_CHANNEL_OPEN) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001717 debug2("channel %d: not open", c->self);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001718 chan_mark_dead(c);
Ben Lindstromb3921512001-04-11 15:57:50 +00001719 return -1;
1720 } else if (compat13) {
Damien Miller76765c02002-01-22 23:21:15 +11001721 buffer_clear(&c->output);
Damien Millerfbdeece2003-09-02 22:52:31 +10001722 debug2("channel %d: input draining.", c->self);
Damien Millerb38eff82000-04-01 11:09:21 +10001723 c->type = SSH_CHANNEL_INPUT_DRAINING;
1724 } else {
1725 chan_write_failed(c);
1726 }
1727 return -1;
1728 }
Darren Tucker3980b632009-08-28 11:02:37 +10001729#ifndef BROKEN_TCGETATTR_ICANON
Damien Miller077b2382005-12-31 16:22:32 +11001730 if (compat20 && c->isatty && dlen >= 1 && buf[0] != '\r') {
Damien Miller79438cc2001-02-16 12:34:57 +11001731 if (tcgetattr(c->wfd, &tio) == 0 &&
1732 !(tio.c_lflag & ECHO) && (tio.c_lflag & ICANON)) {
1733 /*
1734 * Simulate echo to reduce the impact of
Ben Lindstromb40204b2001-03-05 06:29:44 +00001735 * traffic analysis. We need to match the
Ben Lindstrome229b252001-03-05 06:28:06 +00001736 * size of a SSH2_MSG_CHANNEL_DATA message
Damien Miller077b2382005-12-31 16:22:32 +11001737 * (4 byte channel id + buf)
Damien Miller79438cc2001-02-16 12:34:57 +11001738 */
Ben Lindstrome229b252001-03-05 06:28:06 +00001739 packet_send_ignore(4 + len);
Damien Miller79438cc2001-02-16 12:34:57 +11001740 packet_send();
Damien Miller79438cc2001-02-16 12:34:57 +11001741 }
1742 }
Darren Tucker3980b632009-08-28 11:02:37 +10001743#endif
Damien Millerb38eff82000-04-01 11:09:21 +10001744 buffer_consume(&c->output, len);
Damien Miller33b13562000-04-04 14:38:59 +10001745 }
Damien Miller7d457182010-08-05 23:09:48 +10001746 out:
1747 if (compat20 && olen > 0)
1748 c->local_consumed += olen - buffer_len(&c->output);
Damien Miller33b13562000-04-04 14:38:59 +10001749 return 1;
1750}
Damien Miller4f7becb2006-03-26 14:10:14 +11001751
Ben Lindstrombba81212001-06-25 05:01:22 +00001752static int
Damien Millerd62f2ca2006-03-26 13:57:41 +11001753channel_handle_efd(Channel *c, fd_set *readset, fd_set *writeset)
Damien Miller33b13562000-04-04 14:38:59 +10001754{
Darren Tucker11327cc2005-03-14 23:22:25 +11001755 char buf[CHAN_RBUF];
Damien Miller33b13562000-04-04 14:38:59 +10001756 int len;
1757
Damien Miller1383bd82000-04-06 12:32:37 +10001758/** XXX handle drain efd, too */
Damien Miller33b13562000-04-04 14:38:59 +10001759 if (c->efd != -1) {
1760 if (c->extended_usage == CHAN_EXTENDED_WRITE &&
1761 FD_ISSET(c->efd, writeset) &&
1762 buffer_len(&c->extended) > 0) {
1763 len = write(c->efd, buffer_ptr(&c->extended),
1764 buffer_len(&c->extended));
Damien Millerd3444942000-09-30 14:20:03 +11001765 debug2("channel %d: written %d to efd %d",
Damien Miller33b13562000-04-04 14:38:59 +10001766 c->self, len, c->efd);
Damien Millerd8968ad2008-07-04 23:10:49 +10001767 if (len < 0 && (errno == EINTR || errno == EAGAIN ||
1768 errno == EWOULDBLOCK))
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001769 return 1;
1770 if (len <= 0) {
1771 debug2("channel %d: closing write-efd %d",
1772 c->self, c->efd);
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001773 channel_close_fd(&c->efd);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001774 } else {
Damien Miller33b13562000-04-04 14:38:59 +10001775 buffer_consume(&c->extended, len);
1776 c->local_consumed += len;
1777 }
Damien Miller8853ca52010-06-26 10:00:14 +10001778 } else if (c->efd != -1 &&
1779 (c->extended_usage == CHAN_EXTENDED_READ ||
1780 c->extended_usage == CHAN_EXTENDED_IGNORE) &&
Damien Millere42bd242007-01-29 10:16:28 +11001781 (c->detach_close || FD_ISSET(c->efd, readset))) {
Damien Miller33b13562000-04-04 14:38:59 +10001782 len = read(c->efd, buf, sizeof(buf));
Damien Millerd3444942000-09-30 14:20:03 +11001783 debug2("channel %d: read %d from efd %d",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001784 c->self, len, c->efd);
Damien Millerd8968ad2008-07-04 23:10:49 +10001785 if (len < 0 && (errno == EINTR || ((errno == EAGAIN ||
1786 errno == EWOULDBLOCK) && !c->detach_close)))
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001787 return 1;
1788 if (len <= 0) {
1789 debug2("channel %d: closing read-efd %d",
Damien Miller1383bd82000-04-06 12:32:37 +10001790 c->self, c->efd);
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001791 channel_close_fd(&c->efd);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001792 } else {
Damien Miller8853ca52010-06-26 10:00:14 +10001793 if (c->extended_usage == CHAN_EXTENDED_IGNORE) {
1794 debug3("channel %d: discard efd",
1795 c->self);
1796 } else
1797 buffer_append(&c->extended, buf, len);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001798 }
Damien Miller33b13562000-04-04 14:38:59 +10001799 }
1800 }
1801 return 1;
1802}
Damien Miller4f7becb2006-03-26 14:10:14 +11001803
Damien Miller0e220db2004-06-15 10:34:08 +10001804static int
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001805channel_check_window(Channel *c)
Damien Miller33b13562000-04-04 14:38:59 +10001806{
Ben Lindstromb3921512001-04-11 15:57:50 +00001807 if (c->type == SSH_CHANNEL_OPEN &&
1808 !(c->flags & (CHAN_CLOSE_SENT|CHAN_CLOSE_RCVD)) &&
Darren Tuckerae09cb82007-06-25 19:04:46 +10001809 ((c->local_window_max - c->local_window >
Damien Miller3191a8e2007-06-11 18:33:15 +10001810 c->local_maxpacket*3) ||
1811 c->local_window < c->local_window_max/2) &&
Damien Miller33b13562000-04-04 14:38:59 +10001812 c->local_consumed > 0) {
1813 packet_start(SSH2_MSG_CHANNEL_WINDOW_ADJUST);
1814 packet_put_int(c->remote_id);
1815 packet_put_int(c->local_consumed);
1816 packet_send();
Damien Millerd3444942000-09-30 14:20:03 +11001817 debug2("channel %d: window %d sent adjust %d",
Damien Miller33b13562000-04-04 14:38:59 +10001818 c->self, c->local_window,
1819 c->local_consumed);
1820 c->local_window += c->local_consumed;
1821 c->local_consumed = 0;
Damien Millerb38eff82000-04-01 11:09:21 +10001822 }
1823 return 1;
1824}
1825
Ben Lindstrombba81212001-06-25 05:01:22 +00001826static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001827channel_post_open(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001828{
1829 channel_handle_rfd(c, readset, writeset);
1830 channel_handle_wfd(c, readset, writeset);
Damien Millerde6987c2002-01-22 23:20:40 +11001831 if (!compat20)
Damien Miller4623a752001-10-10 15:03:58 +10001832 return;
Damien Miller33b13562000-04-04 14:38:59 +10001833 channel_handle_efd(c, readset, writeset);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001834 channel_check_window(c);
Damien Miller33b13562000-04-04 14:38:59 +10001835}
1836
Damien Millere1537f92010-01-26 13:26:22 +11001837static u_int
1838read_mux(Channel *c, u_int need)
1839{
1840 char buf[CHAN_RBUF];
1841 int len;
1842 u_int rlen;
1843
1844 if (buffer_len(&c->input) < need) {
1845 rlen = need - buffer_len(&c->input);
1846 len = read(c->rfd, buf, MIN(rlen, CHAN_RBUF));
1847 if (len <= 0) {
1848 if (errno != EINTR && errno != EAGAIN) {
1849 debug2("channel %d: ctl read<=0 rfd %d len %d",
1850 c->self, c->rfd, len);
1851 chan_read_failed(c);
1852 return 0;
1853 }
1854 } else
1855 buffer_append(&c->input, buf, len);
1856 }
1857 return buffer_len(&c->input);
1858}
1859
1860static void
1861channel_post_mux_client(Channel *c, fd_set *readset, fd_set *writeset)
1862{
1863 u_int need;
1864 ssize_t len;
1865
1866 if (!compat20)
1867 fatal("%s: entered with !compat20", __func__);
1868
Damien Millerd530f5f2010-05-21 14:57:10 +10001869 if (c->rfd != -1 && !c->mux_pause && FD_ISSET(c->rfd, readset) &&
Damien Millere1537f92010-01-26 13:26:22 +11001870 (c->istate == CHAN_INPUT_OPEN ||
1871 c->istate == CHAN_INPUT_WAIT_DRAIN)) {
1872 /*
1873 * Don't not read past the precise end of packets to
1874 * avoid disrupting fd passing.
1875 */
1876 if (read_mux(c, 4) < 4) /* read header */
1877 return;
1878 need = get_u32(buffer_ptr(&c->input));
1879#define CHANNEL_MUX_MAX_PACKET (256 * 1024)
1880 if (need > CHANNEL_MUX_MAX_PACKET) {
1881 debug2("channel %d: packet too big %u > %u",
1882 c->self, CHANNEL_MUX_MAX_PACKET, need);
1883 chan_rcvd_oclose(c);
1884 return;
1885 }
1886 if (read_mux(c, need + 4) < need + 4) /* read body */
1887 return;
1888 if (c->mux_rcb(c) != 0) {
1889 debug("channel %d: mux_rcb failed", c->self);
1890 chan_mark_dead(c);
1891 return;
1892 }
1893 }
1894
1895 if (c->wfd != -1 && FD_ISSET(c->wfd, writeset) &&
1896 buffer_len(&c->output) > 0) {
1897 len = write(c->wfd, buffer_ptr(&c->output),
1898 buffer_len(&c->output));
1899 if (len < 0 && (errno == EINTR || errno == EAGAIN))
1900 return;
1901 if (len <= 0) {
1902 chan_mark_dead(c);
1903 return;
1904 }
1905 buffer_consume(&c->output, len);
1906 }
1907}
1908
1909static void
1910channel_post_mux_listener(Channel *c, fd_set *readset, fd_set *writeset)
1911{
1912 Channel *nc;
1913 struct sockaddr_storage addr;
1914 socklen_t addrlen;
1915 int newsock;
1916 uid_t euid;
1917 gid_t egid;
1918
1919 if (!FD_ISSET(c->sock, readset))
1920 return;
1921
1922 debug("multiplexing control connection");
1923
1924 /*
1925 * Accept connection on control socket
1926 */
1927 memset(&addr, 0, sizeof(addr));
1928 addrlen = sizeof(addr);
1929 if ((newsock = accept(c->sock, (struct sockaddr*)&addr,
1930 &addrlen)) == -1) {
1931 error("%s accept: %s", __func__, strerror(errno));
Damien Millera6508752012-04-22 11:21:10 +10001932 if (errno == EMFILE || errno == ENFILE)
Darren Tuckerb759c9c2013-06-02 07:46:16 +10001933 c->notbefore = monotime() + 1;
Damien Millere1537f92010-01-26 13:26:22 +11001934 return;
1935 }
1936
1937 if (getpeereid(newsock, &euid, &egid) < 0) {
1938 error("%s getpeereid failed: %s", __func__,
1939 strerror(errno));
1940 close(newsock);
1941 return;
1942 }
1943 if ((euid != 0) && (getuid() != euid)) {
1944 error("multiplex uid mismatch: peer euid %u != uid %u",
1945 (u_int)euid, (u_int)getuid());
1946 close(newsock);
1947 return;
1948 }
1949 nc = channel_new("multiplex client", SSH_CHANNEL_MUX_CLIENT,
1950 newsock, newsock, -1, c->local_window_max,
1951 c->local_maxpacket, 0, "mux-control", 1);
1952 nc->mux_rcb = c->mux_rcb;
1953 debug3("%s: new mux channel %d fd %d", __func__,
1954 nc->self, nc->sock);
1955 /* establish state */
1956 nc->mux_rcb(nc);
1957 /* mux state transitions must not elicit protocol messages */
1958 nc->flags |= CHAN_LOCAL;
1959}
1960
Damien Miller8473dd82006-07-24 14:08:32 +10001961/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001962static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001963channel_post_output_drain_13(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001964{
1965 int len;
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00001966
Damien Millerb38eff82000-04-01 11:09:21 +10001967 /* Send buffered output data to the socket. */
1968 if (FD_ISSET(c->sock, writeset) && buffer_len(&c->output) > 0) {
1969 len = write(c->sock, buffer_ptr(&c->output),
1970 buffer_len(&c->output));
1971 if (len <= 0)
Damien Miller76765c02002-01-22 23:21:15 +11001972 buffer_clear(&c->output);
Damien Millerb38eff82000-04-01 11:09:21 +10001973 else
1974 buffer_consume(&c->output, len);
1975 }
1976}
1977
Ben Lindstrombba81212001-06-25 05:01:22 +00001978static void
Damien Miller33b13562000-04-04 14:38:59 +10001979channel_handler_init_20(void)
1980{
Damien Millerde6987c2002-01-22 23:20:40 +11001981 channel_pre[SSH_CHANNEL_OPEN] = &channel_pre_open;
Damien Millerbd483e72000-04-30 10:00:53 +10001982 channel_pre[SSH_CHANNEL_X11_OPEN] = &channel_pre_x11_open;
Damien Miller33b13562000-04-04 14:38:59 +10001983 channel_pre[SSH_CHANNEL_PORT_LISTENER] = &channel_pre_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001984 channel_pre[SSH_CHANNEL_RPORT_LISTENER] = &channel_pre_listener;
Damien Millerbd483e72000-04-30 10:00:53 +10001985 channel_pre[SSH_CHANNEL_X11_LISTENER] = &channel_pre_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001986 channel_pre[SSH_CHANNEL_AUTH_SOCKET] = &channel_pre_listener;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001987 channel_pre[SSH_CHANNEL_CONNECTING] = &channel_pre_connecting;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001988 channel_pre[SSH_CHANNEL_DYNAMIC] = &channel_pre_dynamic;
Damien Millere1537f92010-01-26 13:26:22 +11001989 channel_pre[SSH_CHANNEL_MUX_LISTENER] = &channel_pre_listener;
1990 channel_pre[SSH_CHANNEL_MUX_CLIENT] = &channel_pre_mux_client;
Damien Miller33b13562000-04-04 14:38:59 +10001991
Damien Millerde6987c2002-01-22 23:20:40 +11001992 channel_post[SSH_CHANNEL_OPEN] = &channel_post_open;
Damien Miller33b13562000-04-04 14:38:59 +10001993 channel_post[SSH_CHANNEL_PORT_LISTENER] = &channel_post_port_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001994 channel_post[SSH_CHANNEL_RPORT_LISTENER] = &channel_post_port_listener;
Damien Millerbd483e72000-04-30 10:00:53 +10001995 channel_post[SSH_CHANNEL_X11_LISTENER] = &channel_post_x11_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001996 channel_post[SSH_CHANNEL_AUTH_SOCKET] = &channel_post_auth_listener;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001997 channel_post[SSH_CHANNEL_CONNECTING] = &channel_post_connecting;
Damien Millerde6987c2002-01-22 23:20:40 +11001998 channel_post[SSH_CHANNEL_DYNAMIC] = &channel_post_open;
Damien Millere1537f92010-01-26 13:26:22 +11001999 channel_post[SSH_CHANNEL_MUX_LISTENER] = &channel_post_mux_listener;
2000 channel_post[SSH_CHANNEL_MUX_CLIENT] = &channel_post_mux_client;
Damien Miller33b13562000-04-04 14:38:59 +10002001}
2002
Ben Lindstrombba81212001-06-25 05:01:22 +00002003static void
Damien Millerb38eff82000-04-01 11:09:21 +10002004channel_handler_init_13(void)
2005{
2006 channel_pre[SSH_CHANNEL_OPEN] = &channel_pre_open_13;
2007 channel_pre[SSH_CHANNEL_X11_OPEN] = &channel_pre_x11_open_13;
2008 channel_pre[SSH_CHANNEL_X11_LISTENER] = &channel_pre_listener;
2009 channel_pre[SSH_CHANNEL_PORT_LISTENER] = &channel_pre_listener;
2010 channel_pre[SSH_CHANNEL_AUTH_SOCKET] = &channel_pre_listener;
2011 channel_pre[SSH_CHANNEL_INPUT_DRAINING] = &channel_pre_input_draining;
2012 channel_pre[SSH_CHANNEL_OUTPUT_DRAINING] = &channel_pre_output_draining;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00002013 channel_pre[SSH_CHANNEL_CONNECTING] = &channel_pre_connecting;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00002014 channel_pre[SSH_CHANNEL_DYNAMIC] = &channel_pre_dynamic;
Damien Millerb38eff82000-04-01 11:09:21 +10002015
Damien Millerde6987c2002-01-22 23:20:40 +11002016 channel_post[SSH_CHANNEL_OPEN] = &channel_post_open;
Damien Millerb38eff82000-04-01 11:09:21 +10002017 channel_post[SSH_CHANNEL_X11_LISTENER] = &channel_post_x11_listener;
2018 channel_post[SSH_CHANNEL_PORT_LISTENER] = &channel_post_port_listener;
2019 channel_post[SSH_CHANNEL_AUTH_SOCKET] = &channel_post_auth_listener;
2020 channel_post[SSH_CHANNEL_OUTPUT_DRAINING] = &channel_post_output_drain_13;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00002021 channel_post[SSH_CHANNEL_CONNECTING] = &channel_post_connecting;
Damien Millerde6987c2002-01-22 23:20:40 +11002022 channel_post[SSH_CHANNEL_DYNAMIC] = &channel_post_open;
Damien Millerb38eff82000-04-01 11:09:21 +10002023}
2024
Ben Lindstrombba81212001-06-25 05:01:22 +00002025static void
Damien Millerb38eff82000-04-01 11:09:21 +10002026channel_handler_init_15(void)
2027{
Damien Millerde6987c2002-01-22 23:20:40 +11002028 channel_pre[SSH_CHANNEL_OPEN] = &channel_pre_open;
Damien Millerbd483e72000-04-30 10:00:53 +10002029 channel_pre[SSH_CHANNEL_X11_OPEN] = &channel_pre_x11_open;
Damien Millerb38eff82000-04-01 11:09:21 +10002030 channel_pre[SSH_CHANNEL_X11_LISTENER] = &channel_pre_listener;
2031 channel_pre[SSH_CHANNEL_PORT_LISTENER] = &channel_pre_listener;
2032 channel_pre[SSH_CHANNEL_AUTH_SOCKET] = &channel_pre_listener;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00002033 channel_pre[SSH_CHANNEL_CONNECTING] = &channel_pre_connecting;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00002034 channel_pre[SSH_CHANNEL_DYNAMIC] = &channel_pre_dynamic;
Damien Millerb38eff82000-04-01 11:09:21 +10002035
2036 channel_post[SSH_CHANNEL_X11_LISTENER] = &channel_post_x11_listener;
2037 channel_post[SSH_CHANNEL_PORT_LISTENER] = &channel_post_port_listener;
2038 channel_post[SSH_CHANNEL_AUTH_SOCKET] = &channel_post_auth_listener;
Damien Millerde6987c2002-01-22 23:20:40 +11002039 channel_post[SSH_CHANNEL_OPEN] = &channel_post_open;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00002040 channel_post[SSH_CHANNEL_CONNECTING] = &channel_post_connecting;
Damien Millerde6987c2002-01-22 23:20:40 +11002041 channel_post[SSH_CHANNEL_DYNAMIC] = &channel_post_open;
Damien Millerb38eff82000-04-01 11:09:21 +10002042}
2043
Ben Lindstrombba81212001-06-25 05:01:22 +00002044static void
Damien Millerb38eff82000-04-01 11:09:21 +10002045channel_handler_init(void)
2046{
2047 int i;
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00002048
Damien Miller9f0f5c62001-12-21 14:45:46 +11002049 for (i = 0; i < SSH_CHANNEL_MAX_TYPE; i++) {
Damien Millerb38eff82000-04-01 11:09:21 +10002050 channel_pre[i] = NULL;
2051 channel_post[i] = NULL;
2052 }
Damien Miller33b13562000-04-04 14:38:59 +10002053 if (compat20)
2054 channel_handler_init_20();
2055 else if (compat13)
Damien Millerb38eff82000-04-01 11:09:21 +10002056 channel_handler_init_13();
2057 else
2058 channel_handler_init_15();
2059}
2060
Damien Miller3ec27592001-10-12 11:35:04 +10002061/* gc dead channels */
2062static void
2063channel_garbage_collect(Channel *c)
2064{
2065 if (c == NULL)
2066 return;
2067 if (c->detach_user != NULL) {
Damien Miller39eda6e2005-11-05 14:52:50 +11002068 if (!chan_is_dead(c, c->detach_close))
Damien Miller3ec27592001-10-12 11:35:04 +10002069 return;
Damien Millerfbdeece2003-09-02 22:52:31 +10002070 debug2("channel %d: gc: notify user", c->self);
Damien Miller3ec27592001-10-12 11:35:04 +10002071 c->detach_user(c->self, NULL);
2072 /* if we still have a callback */
2073 if (c->detach_user != NULL)
2074 return;
Damien Millerfbdeece2003-09-02 22:52:31 +10002075 debug2("channel %d: gc: user detached", c->self);
Damien Miller3ec27592001-10-12 11:35:04 +10002076 }
2077 if (!chan_is_dead(c, 1))
2078 return;
Damien Millerfbdeece2003-09-02 22:52:31 +10002079 debug2("channel %d: garbage collecting", c->self);
Damien Miller3ec27592001-10-12 11:35:04 +10002080 channel_free(c);
2081}
2082
Ben Lindstrombba81212001-06-25 05:01:22 +00002083static void
Damien Millera6508752012-04-22 11:21:10 +10002084channel_handler(chan_fn *ftab[], fd_set *readset, fd_set *writeset,
2085 time_t *unpause_secs)
Damien Millerb38eff82000-04-01 11:09:21 +10002086{
2087 static int did_init = 0;
Darren Tucker876045b2010-01-08 17:08:00 +11002088 u_int i, oalloc;
Damien Millerb38eff82000-04-01 11:09:21 +10002089 Channel *c;
Damien Millera6508752012-04-22 11:21:10 +10002090 time_t now;
Damien Millerb38eff82000-04-01 11:09:21 +10002091
2092 if (!did_init) {
2093 channel_handler_init();
2094 did_init = 1;
2095 }
Darren Tuckerb759c9c2013-06-02 07:46:16 +10002096 now = monotime();
Damien Millera6508752012-04-22 11:21:10 +10002097 if (unpause_secs != NULL)
2098 *unpause_secs = 0;
Darren Tucker876045b2010-01-08 17:08:00 +11002099 for (i = 0, oalloc = channels_alloc; i < oalloc; i++) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002100 c = channels[i];
2101 if (c == NULL)
Damien Millerb38eff82000-04-01 11:09:21 +10002102 continue;
Darren Tucker876045b2010-01-08 17:08:00 +11002103 if (c->delayed) {
2104 if (ftab == channel_pre)
2105 c->delayed = 0;
2106 else
2107 continue;
2108 }
Damien Millera6508752012-04-22 11:21:10 +10002109 if (ftab[c->type] != NULL) {
2110 /*
2111 * Run handlers that are not paused.
2112 */
2113 if (c->notbefore <= now)
2114 (*ftab[c->type])(c, readset, writeset);
2115 else if (unpause_secs != NULL) {
2116 /*
2117 * Collect the time that the earliest
2118 * channel comes off pause.
2119 */
2120 debug3("%s: chan %d: skip for %d more seconds",
2121 __func__, c->self,
2122 (int)(c->notbefore - now));
2123 if (*unpause_secs == 0 ||
2124 (c->notbefore - now) < *unpause_secs)
2125 *unpause_secs = c->notbefore - now;
2126 }
2127 }
Damien Miller3ec27592001-10-12 11:35:04 +10002128 channel_garbage_collect(c);
Damien Millerb38eff82000-04-01 11:09:21 +10002129 }
Damien Millera6508752012-04-22 11:21:10 +10002130 if (unpause_secs != NULL && *unpause_secs != 0)
2131 debug3("%s: first channel unpauses in %d seconds",
2132 __func__, (int)*unpause_secs);
Damien Millerb38eff82000-04-01 11:09:21 +10002133}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002134
Ben Lindstrome9c99912001-06-09 00:41:05 +00002135/*
2136 * Allocate/update select bitmasks and add any bits relevant to channels in
2137 * select bitmasks.
2138 */
Damien Miller4af51302000-04-16 11:18:38 +10002139void
Ben Lindstrombe2cc432001-04-04 23:46:07 +00002140channel_prepare_select(fd_set **readsetp, fd_set **writesetp, int *maxfdp,
Damien Millerba77e1f2012-04-23 18:21:05 +10002141 u_int *nallocp, time_t *minwait_secs, int rekeying)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002142{
Damien Miller36812092006-03-26 14:22:47 +11002143 u_int n, sz, nfdset;
Damien Miller5e953212001-01-30 09:14:00 +11002144
2145 n = MAX(*maxfdp, channel_max_fd);
2146
Damien Miller36812092006-03-26 14:22:47 +11002147 nfdset = howmany(n+1, NFDBITS);
2148 /* Explicitly test here, because xrealloc isn't always called */
2149 if (nfdset && SIZE_T_MAX / nfdset < sizeof(fd_mask))
2150 fatal("channel_prepare_select: max_fd (%d) is too large", n);
2151 sz = nfdset * sizeof(fd_mask);
2152
Ben Lindstrom16d29d52001-07-18 16:01:46 +00002153 /* perhaps check sz < nalloc/2 and shrink? */
2154 if (*readsetp == NULL || sz > *nallocp) {
Damien Miller36812092006-03-26 14:22:47 +11002155 *readsetp = xrealloc(*readsetp, nfdset, sizeof(fd_mask));
2156 *writesetp = xrealloc(*writesetp, nfdset, sizeof(fd_mask));
Ben Lindstrom16d29d52001-07-18 16:01:46 +00002157 *nallocp = sz;
Damien Miller5e953212001-01-30 09:14:00 +11002158 }
Ben Lindstrom16d29d52001-07-18 16:01:46 +00002159 *maxfdp = n;
Damien Miller5e953212001-01-30 09:14:00 +11002160 memset(*readsetp, 0, sz);
2161 memset(*writesetp, 0, sz);
2162
Ben Lindstrombe2cc432001-04-04 23:46:07 +00002163 if (!rekeying)
Damien Millera6508752012-04-22 11:21:10 +10002164 channel_handler(channel_pre, *readsetp, *writesetp,
2165 minwait_secs);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002166}
2167
Ben Lindstrome9c99912001-06-09 00:41:05 +00002168/*
2169 * After select, perform any appropriate operations for channels which have
2170 * events pending.
2171 */
Damien Miller4af51302000-04-16 11:18:38 +10002172void
Damien Millerd62f2ca2006-03-26 13:57:41 +11002173channel_after_select(fd_set *readset, fd_set *writeset)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002174{
Damien Millera6508752012-04-22 11:21:10 +10002175 channel_handler(channel_post, readset, writeset, NULL);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002176}
2177
Ben Lindstrome9c99912001-06-09 00:41:05 +00002178
Damien Miller5e953212001-01-30 09:14:00 +11002179/* If there is data to send to the connection, enqueue some of it now. */
Damien Miller4af51302000-04-16 11:18:38 +10002180void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00002181channel_output_poll(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002182{
Damien Millerb38eff82000-04-01 11:09:21 +10002183 Channel *c;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10002184 u_int i, len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002185
Damien Miller95def091999-11-25 00:26:21 +11002186 for (i = 0; i < channels_alloc; i++) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002187 c = channels[i];
2188 if (c == NULL)
2189 continue;
Damien Miller34132e52000-01-14 15:45:46 +11002190
Ben Lindstrome9c99912001-06-09 00:41:05 +00002191 /*
2192 * We are only interested in channels that can have buffered
2193 * incoming data.
2194 */
Damien Miller34132e52000-01-14 15:45:46 +11002195 if (compat13) {
Damien Millerb38eff82000-04-01 11:09:21 +10002196 if (c->type != SSH_CHANNEL_OPEN &&
2197 c->type != SSH_CHANNEL_INPUT_DRAINING)
Damien Miller34132e52000-01-14 15:45:46 +11002198 continue;
2199 } else {
Damien Millerb38eff82000-04-01 11:09:21 +10002200 if (c->type != SSH_CHANNEL_OPEN)
Damien Miller34132e52000-01-14 15:45:46 +11002201 continue;
Damien Miller34132e52000-01-14 15:45:46 +11002202 }
Damien Millerefb4afe2000-04-12 18:45:05 +10002203 if (compat20 &&
2204 (c->flags & (CHAN_CLOSE_SENT|CHAN_CLOSE_RCVD))) {
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00002205 /* XXX is this true? */
Damien Miller3ec27592001-10-12 11:35:04 +10002206 debug3("channel %d: will not send data after close", c->self);
Damien Miller33b13562000-04-04 14:38:59 +10002207 continue;
2208 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002209
Damien Miller95def091999-11-25 00:26:21 +11002210 /* Get the amount of buffered data for this channel. */
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00002211 if ((c->istate == CHAN_INPUT_OPEN ||
2212 c->istate == CHAN_INPUT_WAIT_DRAIN) &&
2213 (len = buffer_len(&c->input)) > 0) {
Damien Millerd27b9472005-12-13 19:29:02 +11002214 if (c->datagram) {
2215 if (len > 0) {
2216 u_char *data;
2217 u_int dlen;
2218
2219 data = buffer_get_string(&c->input,
2220 &dlen);
Damien Miller7d457182010-08-05 23:09:48 +10002221 if (dlen > c->remote_window ||
2222 dlen > c->remote_maxpacket) {
2223 debug("channel %d: datagram "
2224 "too big for channel",
2225 c->self);
Darren Tuckera627d422013-06-02 07:31:17 +10002226 free(data);
Damien Miller7d457182010-08-05 23:09:48 +10002227 continue;
2228 }
Damien Millerd27b9472005-12-13 19:29:02 +11002229 packet_start(SSH2_MSG_CHANNEL_DATA);
2230 packet_put_int(c->remote_id);
2231 packet_put_string(data, dlen);
2232 packet_send();
2233 c->remote_window -= dlen + 4;
Darren Tuckera627d422013-06-02 07:31:17 +10002234 free(data);
Damien Millerd27b9472005-12-13 19:29:02 +11002235 }
2236 continue;
2237 }
Ben Lindstrome9c99912001-06-09 00:41:05 +00002238 /*
2239 * Send some data for the other side over the secure
2240 * connection.
2241 */
Damien Miller33b13562000-04-04 14:38:59 +10002242 if (compat20) {
2243 if (len > c->remote_window)
2244 len = c->remote_window;
2245 if (len > c->remote_maxpacket)
2246 len = c->remote_maxpacket;
Damien Miller95def091999-11-25 00:26:21 +11002247 } else {
Damien Miller33b13562000-04-04 14:38:59 +10002248 if (packet_is_interactive()) {
2249 if (len > 1024)
2250 len = 512;
2251 } else {
2252 /* Keep the packets at reasonable size. */
2253 if (len > packet_get_maxsize()/2)
2254 len = packet_get_maxsize()/2;
2255 }
Damien Miller95def091999-11-25 00:26:21 +11002256 }
Damien Millerb38eff82000-04-01 11:09:21 +10002257 if (len > 0) {
Damien Miller33b13562000-04-04 14:38:59 +10002258 packet_start(compat20 ?
2259 SSH2_MSG_CHANNEL_DATA : SSH_MSG_CHANNEL_DATA);
Damien Millerb38eff82000-04-01 11:09:21 +10002260 packet_put_int(c->remote_id);
2261 packet_put_string(buffer_ptr(&c->input), len);
2262 packet_send();
2263 buffer_consume(&c->input, len);
2264 c->remote_window -= len;
Damien Millerb38eff82000-04-01 11:09:21 +10002265 }
2266 } else if (c->istate == CHAN_INPUT_WAIT_DRAIN) {
Damien Miller95def091999-11-25 00:26:21 +11002267 if (compat13)
2268 fatal("cannot happen: istate == INPUT_WAIT_DRAIN for proto 1.3");
Damien Miller5428f641999-11-25 11:54:57 +11002269 /*
2270 * input-buffer is empty and read-socket shutdown:
Ben Lindstromcf159442002-03-26 03:26:24 +00002271 * tell peer, that we will not send more data: send IEOF.
2272 * hack for extended data: delay EOF if EFD still in use.
Damien Miller5428f641999-11-25 11:54:57 +11002273 */
Ben Lindstromcf159442002-03-26 03:26:24 +00002274 if (CHANNEL_EFD_INPUT_ACTIVE(c))
Damien Miller0dc1bef2005-07-17 17:22:45 +10002275 debug2("channel %d: ibuf_empty delayed efd %d/(%d)",
2276 c->self, c->efd, buffer_len(&c->extended));
Ben Lindstromcf159442002-03-26 03:26:24 +00002277 else
2278 chan_ibuf_empty(c);
Damien Miller95def091999-11-25 00:26:21 +11002279 }
Damien Miller33b13562000-04-04 14:38:59 +10002280 /* Send extended data, i.e. stderr */
2281 if (compat20 &&
Ben Lindstromcf159442002-03-26 03:26:24 +00002282 !(c->flags & CHAN_EOF_SENT) &&
Damien Miller33b13562000-04-04 14:38:59 +10002283 c->remote_window > 0 &&
2284 (len = buffer_len(&c->extended)) > 0 &&
2285 c->extended_usage == CHAN_EXTENDED_READ) {
Ben Lindstrom4fed2be2002-06-25 23:17:36 +00002286 debug2("channel %d: rwin %u elen %u euse %d",
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00002287 c->self, c->remote_window, buffer_len(&c->extended),
2288 c->extended_usage);
Damien Miller33b13562000-04-04 14:38:59 +10002289 if (len > c->remote_window)
2290 len = c->remote_window;
2291 if (len > c->remote_maxpacket)
2292 len = c->remote_maxpacket;
2293 packet_start(SSH2_MSG_CHANNEL_EXTENDED_DATA);
2294 packet_put_int(c->remote_id);
2295 packet_put_int(SSH2_EXTENDED_DATA_STDERR);
2296 packet_put_string(buffer_ptr(&c->extended), len);
2297 packet_send();
2298 buffer_consume(&c->extended, len);
2299 c->remote_window -= len;
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00002300 debug2("channel %d: sent ext data %d", c->self, len);
Damien Miller33b13562000-04-04 14:38:59 +10002301 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002302 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002303}
2304
Ben Lindstrome9c99912001-06-09 00:41:05 +00002305
2306/* -- protocol input */
Damien Millerd79b4242006-03-31 23:11:44 +11002307
2308/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002309void
Damien Miller630d6f42002-01-22 23:17:30 +11002310channel_input_data(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002311{
Damien Miller34132e52000-01-14 15:45:46 +11002312 int id;
Damien Miller95def091999-11-25 00:26:21 +11002313 char *data;
Damien Miller7d457182010-08-05 23:09:48 +10002314 u_int data_len, win_len;
Damien Millerb38eff82000-04-01 11:09:21 +10002315 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002316
Damien Miller95def091999-11-25 00:26:21 +11002317 /* Get the channel number and verify it. */
Damien Miller34132e52000-01-14 15:45:46 +11002318 id = packet_get_int();
Damien Millerb38eff82000-04-01 11:09:21 +10002319 c = channel_lookup(id);
2320 if (c == NULL)
Damien Miller34132e52000-01-14 15:45:46 +11002321 packet_disconnect("Received data for nonexistent channel %d.", id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002322
Damien Miller95def091999-11-25 00:26:21 +11002323 /* Ignore any data for non-open channels (might happen on close) */
Damien Millerb38eff82000-04-01 11:09:21 +10002324 if (c->type != SSH_CHANNEL_OPEN &&
2325 c->type != SSH_CHANNEL_X11_OPEN)
Damien Miller34132e52000-01-14 15:45:46 +11002326 return;
2327
Damien Miller95def091999-11-25 00:26:21 +11002328 /* Get the data. */
Damien Millerdb255ca2008-05-19 14:59:37 +10002329 data = packet_get_string_ptr(&data_len);
Damien Miller7d457182010-08-05 23:09:48 +10002330 win_len = data_len;
2331 if (c->datagram)
2332 win_len += 4; /* string length header */
Damien Millerb38eff82000-04-01 11:09:21 +10002333
Damien Millera04ad492004-01-21 11:02:09 +11002334 /*
2335 * Ignore data for protocol > 1.3 if output end is no longer open.
2336 * For protocol 2 the sending side is reducing its window as it sends
2337 * data, so we must 'fake' consumption of the data in order to ensure
2338 * that window updates are sent back. Otherwise the connection might
2339 * deadlock.
2340 */
2341 if (!compat13 && c->ostate != CHAN_OUTPUT_OPEN) {
2342 if (compat20) {
Damien Miller7d457182010-08-05 23:09:48 +10002343 c->local_window -= win_len;
2344 c->local_consumed += win_len;
Damien Millera04ad492004-01-21 11:02:09 +11002345 }
Damien Millera04ad492004-01-21 11:02:09 +11002346 return;
2347 }
2348
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00002349 if (compat20) {
Damien Miller7d457182010-08-05 23:09:48 +10002350 if (win_len > c->local_maxpacket) {
Damien Miller996acd22003-04-09 20:59:48 +10002351 logit("channel %d: rcvd big packet %d, maxpack %d",
Damien Miller7d457182010-08-05 23:09:48 +10002352 c->self, win_len, c->local_maxpacket);
Damien Miller33b13562000-04-04 14:38:59 +10002353 }
Damien Miller7d457182010-08-05 23:09:48 +10002354 if (win_len > c->local_window) {
Damien Miller996acd22003-04-09 20:59:48 +10002355 logit("channel %d: rcvd too much data %d, win %d",
Damien Miller7d457182010-08-05 23:09:48 +10002356 c->self, win_len, c->local_window);
Damien Miller33b13562000-04-04 14:38:59 +10002357 return;
2358 }
Damien Miller7d457182010-08-05 23:09:48 +10002359 c->local_window -= win_len;
Damien Miller33b13562000-04-04 14:38:59 +10002360 }
Damien Millerd27b9472005-12-13 19:29:02 +11002361 if (c->datagram)
2362 buffer_put_string(&c->output, data, data_len);
2363 else
2364 buffer_append(&c->output, data, data_len);
Damien Millerdb255ca2008-05-19 14:59:37 +10002365 packet_check_eom();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002366}
Ben Lindstrome9c99912001-06-09 00:41:05 +00002367
Damien Millerd79b4242006-03-31 23:11:44 +11002368/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002369void
Damien Miller630d6f42002-01-22 23:17:30 +11002370channel_input_extended_data(int type, u_int32_t seq, void *ctxt)
Damien Miller33b13562000-04-04 14:38:59 +10002371{
2372 int id;
Damien Miller33b13562000-04-04 14:38:59 +10002373 char *data;
Ben Lindstromdaa21792002-06-25 23:15:30 +00002374 u_int data_len, tcode;
Damien Miller33b13562000-04-04 14:38:59 +10002375 Channel *c;
2376
2377 /* Get the channel number and verify it. */
2378 id = packet_get_int();
2379 c = channel_lookup(id);
2380
2381 if (c == NULL)
2382 packet_disconnect("Received extended_data for bad channel %d.", id);
2383 if (c->type != SSH_CHANNEL_OPEN) {
Damien Miller996acd22003-04-09 20:59:48 +10002384 logit("channel %d: ext data for non open", id);
Damien Miller33b13562000-04-04 14:38:59 +10002385 return;
2386 }
Ben Lindstromcf159442002-03-26 03:26:24 +00002387 if (c->flags & CHAN_EOF_RCVD) {
2388 if (datafellows & SSH_BUG_EXTEOF)
2389 debug("channel %d: accepting ext data after eof", id);
2390 else
2391 packet_disconnect("Received extended_data after EOF "
2392 "on channel %d.", id);
2393 }
Damien Miller33b13562000-04-04 14:38:59 +10002394 tcode = packet_get_int();
2395 if (c->efd == -1 ||
2396 c->extended_usage != CHAN_EXTENDED_WRITE ||
2397 tcode != SSH2_EXTENDED_DATA_STDERR) {
Damien Miller996acd22003-04-09 20:59:48 +10002398 logit("channel %d: bad ext data", c->self);
Damien Miller33b13562000-04-04 14:38:59 +10002399 return;
2400 }
2401 data = packet_get_string(&data_len);
Damien Miller48b03fc2002-01-22 23:11:40 +11002402 packet_check_eom();
Damien Miller33b13562000-04-04 14:38:59 +10002403 if (data_len > c->local_window) {
Damien Miller996acd22003-04-09 20:59:48 +10002404 logit("channel %d: rcvd too much extended_data %d, win %d",
Damien Miller33b13562000-04-04 14:38:59 +10002405 c->self, data_len, c->local_window);
Darren Tuckera627d422013-06-02 07:31:17 +10002406 free(data);
Damien Miller33b13562000-04-04 14:38:59 +10002407 return;
2408 }
Damien Millerd3444942000-09-30 14:20:03 +11002409 debug2("channel %d: rcvd ext data %d", c->self, data_len);
Damien Miller33b13562000-04-04 14:38:59 +10002410 c->local_window -= data_len;
2411 buffer_append(&c->extended, data, data_len);
Darren Tuckera627d422013-06-02 07:31:17 +10002412 free(data);
Damien Miller33b13562000-04-04 14:38:59 +10002413}
2414
Damien Millerd79b4242006-03-31 23:11:44 +11002415/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002416void
Damien Miller630d6f42002-01-22 23:17:30 +11002417channel_input_ieof(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10002418{
2419 int id;
2420 Channel *c;
2421
Damien Millerb38eff82000-04-01 11:09:21 +10002422 id = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11002423 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10002424 c = channel_lookup(id);
2425 if (c == NULL)
2426 packet_disconnect("Received ieof for nonexistent channel %d.", id);
2427 chan_rcvd_ieof(c);
Ben Lindstrom944c4f02001-09-18 05:51:13 +00002428
2429 /* XXX force input close */
Damien Millera90fc082002-01-22 23:19:38 +11002430 if (c->force_drain && c->istate == CHAN_INPUT_OPEN) {
Ben Lindstrom944c4f02001-09-18 05:51:13 +00002431 debug("channel %d: FORCE input drain", c->self);
2432 c->istate = CHAN_INPUT_WAIT_DRAIN;
Damien Miller73f10742002-01-22 23:34:52 +11002433 if (buffer_len(&c->input) == 0)
2434 chan_ibuf_empty(c);
Ben Lindstrom944c4f02001-09-18 05:51:13 +00002435 }
2436
Damien Millerb38eff82000-04-01 11:09:21 +10002437}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002438
Damien Millerd79b4242006-03-31 23:11:44 +11002439/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002440void
Damien Miller630d6f42002-01-22 23:17:30 +11002441channel_input_close(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002442{
Damien Millerb38eff82000-04-01 11:09:21 +10002443 int id;
2444 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002445
Damien Millerb38eff82000-04-01 11:09:21 +10002446 id = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11002447 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10002448 c = channel_lookup(id);
2449 if (c == NULL)
2450 packet_disconnect("Received close for nonexistent channel %d.", id);
Damien Miller5428f641999-11-25 11:54:57 +11002451
2452 /*
2453 * Send a confirmation that we have closed the channel and no more
2454 * data is coming for it.
2455 */
Damien Miller95def091999-11-25 00:26:21 +11002456 packet_start(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION);
Damien Millerb38eff82000-04-01 11:09:21 +10002457 packet_put_int(c->remote_id);
Damien Miller95def091999-11-25 00:26:21 +11002458 packet_send();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002459
Damien Miller5428f641999-11-25 11:54:57 +11002460 /*
2461 * If the channel is in closed state, we have sent a close request,
2462 * and the other side will eventually respond with a confirmation.
2463 * Thus, we cannot free the channel here, because then there would be
2464 * no-one to receive the confirmation. The channel gets freed when
2465 * the confirmation arrives.
2466 */
Damien Millerb38eff82000-04-01 11:09:21 +10002467 if (c->type != SSH_CHANNEL_CLOSED) {
Damien Miller5428f641999-11-25 11:54:57 +11002468 /*
2469 * Not a closed channel - mark it as draining, which will
2470 * cause it to be freed later.
2471 */
Damien Miller76765c02002-01-22 23:21:15 +11002472 buffer_clear(&c->input);
Damien Millerb38eff82000-04-01 11:09:21 +10002473 c->type = SSH_CHANNEL_OUTPUT_DRAINING;
Damien Miller95def091999-11-25 00:26:21 +11002474 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002475}
2476
Damien Millerb38eff82000-04-01 11:09:21 +10002477/* proto version 1.5 overloads CLOSE_CONFIRMATION with OCLOSE */
Damien Millerd79b4242006-03-31 23:11:44 +11002478/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002479void
Damien Miller630d6f42002-01-22 23:17:30 +11002480channel_input_oclose(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002481{
Damien Millerb38eff82000-04-01 11:09:21 +10002482 int id = packet_get_int();
2483 Channel *c = channel_lookup(id);
Damien Miller66823cd2002-01-22 23:11:38 +11002484
Damien Miller48b03fc2002-01-22 23:11:40 +11002485 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10002486 if (c == NULL)
2487 packet_disconnect("Received oclose for nonexistent channel %d.", id);
2488 chan_rcvd_oclose(c);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002489}
2490
Damien Millerd79b4242006-03-31 23:11:44 +11002491/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002492void
Damien Miller630d6f42002-01-22 23:17:30 +11002493channel_input_close_confirmation(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10002494{
2495 int id = packet_get_int();
2496 Channel *c = channel_lookup(id);
2497
Damien Miller48b03fc2002-01-22 23:11:40 +11002498 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10002499 if (c == NULL)
2500 packet_disconnect("Received close confirmation for "
2501 "out-of-range channel %d.", id);
Damien Miller36187092013-06-10 13:07:11 +10002502 if (c->type != SSH_CHANNEL_CLOSED && c->type != SSH_CHANNEL_ABANDONED)
Damien Millerb38eff82000-04-01 11:09:21 +10002503 packet_disconnect("Received close confirmation for "
2504 "non-closed channel %d (type %d).", id, c->type);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002505 channel_free(c);
Damien Millerb38eff82000-04-01 11:09:21 +10002506}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002507
Damien Millerd79b4242006-03-31 23:11:44 +11002508/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002509void
Damien Miller630d6f42002-01-22 23:17:30 +11002510channel_input_open_confirmation(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002511{
Damien Millerb38eff82000-04-01 11:09:21 +10002512 int id, remote_id;
2513 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002514
Damien Millerb38eff82000-04-01 11:09:21 +10002515 id = packet_get_int();
2516 c = channel_lookup(id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002517
Damien Millerb38eff82000-04-01 11:09:21 +10002518 if (c==NULL || c->type != SSH_CHANNEL_OPENING)
2519 packet_disconnect("Received open confirmation for "
2520 "non-opening channel %d.", id);
2521 remote_id = packet_get_int();
Damien Miller5428f641999-11-25 11:54:57 +11002522 /* Record the remote channel number and mark that the channel is now open. */
Damien Millerb38eff82000-04-01 11:09:21 +10002523 c->remote_id = remote_id;
2524 c->type = SSH_CHANNEL_OPEN;
Damien Miller33b13562000-04-04 14:38:59 +10002525
2526 if (compat20) {
2527 c->remote_window = packet_get_int();
2528 c->remote_maxpacket = packet_get_int();
Damien Millerb84886b2008-05-19 15:05:07 +10002529 if (c->open_confirm) {
Damien Millerd3444942000-09-30 14:20:03 +11002530 debug2("callback start");
Damien Millerd530f5f2010-05-21 14:57:10 +10002531 c->open_confirm(c->self, 1, c->open_confirm_ctx);
Damien Millerd3444942000-09-30 14:20:03 +11002532 debug2("callback done");
Damien Miller33b13562000-04-04 14:38:59 +10002533 }
Damien Millerfbdeece2003-09-02 22:52:31 +10002534 debug2("channel %d: open confirm rwindow %u rmax %u", c->self,
Damien Miller33b13562000-04-04 14:38:59 +10002535 c->remote_window, c->remote_maxpacket);
2536 }
Damien Miller48b03fc2002-01-22 23:11:40 +11002537 packet_check_eom();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002538}
2539
Ben Lindstrombba81212001-06-25 05:01:22 +00002540static char *
Ben Lindstrom69128662001-05-08 20:07:39 +00002541reason2txt(int reason)
2542{
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00002543 switch (reason) {
Ben Lindstrom69128662001-05-08 20:07:39 +00002544 case SSH2_OPEN_ADMINISTRATIVELY_PROHIBITED:
2545 return "administratively prohibited";
2546 case SSH2_OPEN_CONNECT_FAILED:
2547 return "connect failed";
2548 case SSH2_OPEN_UNKNOWN_CHANNEL_TYPE:
2549 return "unknown channel type";
2550 case SSH2_OPEN_RESOURCE_SHORTAGE:
2551 return "resource shortage";
2552 }
Ben Lindstrome2595442001-06-05 20:01:39 +00002553 return "unknown reason";
Ben Lindstrom69128662001-05-08 20:07:39 +00002554}
2555
Damien Millerd79b4242006-03-31 23:11:44 +11002556/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002557void
Damien Miller630d6f42002-01-22 23:17:30 +11002558channel_input_open_failure(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002559{
Kevin Steves12057502001-02-05 14:54:34 +00002560 int id, reason;
2561 char *msg = NULL, *lang = NULL;
Damien Millerb38eff82000-04-01 11:09:21 +10002562 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002563
Damien Millerb38eff82000-04-01 11:09:21 +10002564 id = packet_get_int();
2565 c = channel_lookup(id);
2566
2567 if (c==NULL || c->type != SSH_CHANNEL_OPENING)
2568 packet_disconnect("Received open failure for "
2569 "non-opening channel %d.", id);
Damien Miller33b13562000-04-04 14:38:59 +10002570 if (compat20) {
Kevin Steves12057502001-02-05 14:54:34 +00002571 reason = packet_get_int();
Ben Lindstromf3436742001-04-29 19:52:00 +00002572 if (!(datafellows & SSH_BUG_OPENFAILURE)) {
Kevin Steves12057502001-02-05 14:54:34 +00002573 msg = packet_get_string(NULL);
2574 lang = packet_get_string(NULL);
2575 }
Damien Miller996acd22003-04-09 20:59:48 +10002576 logit("channel %d: open failed: %s%s%s", id,
Ben Lindstrom69128662001-05-08 20:07:39 +00002577 reason2txt(reason), msg ? ": ": "", msg ? msg : "");
Darren Tuckera627d422013-06-02 07:31:17 +10002578 free(msg);
2579 free(lang);
Damien Millerd530f5f2010-05-21 14:57:10 +10002580 if (c->open_confirm) {
2581 debug2("callback start");
2582 c->open_confirm(c->self, 0, c->open_confirm_ctx);
2583 debug2("callback done");
2584 }
Damien Miller33b13562000-04-04 14:38:59 +10002585 }
Damien Miller48b03fc2002-01-22 23:11:40 +11002586 packet_check_eom();
Damien Miller7a606212009-01-28 16:22:34 +11002587 /* Schedule the channel for cleanup/deletion. */
2588 chan_mark_dead(c);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002589}
2590
Damien Millerd79b4242006-03-31 23:11:44 +11002591/* ARGSUSED */
Damien Miller33b13562000-04-04 14:38:59 +10002592void
Damien Miller630d6f42002-01-22 23:17:30 +11002593channel_input_window_adjust(int type, u_int32_t seq, void *ctxt)
Damien Miller33b13562000-04-04 14:38:59 +10002594{
2595 Channel *c;
Ben Lindstrom4fed2be2002-06-25 23:17:36 +00002596 int id;
2597 u_int adjust;
Damien Miller33b13562000-04-04 14:38:59 +10002598
2599 if (!compat20)
2600 return;
2601
2602 /* Get the channel number and verify it. */
2603 id = packet_get_int();
2604 c = channel_lookup(id);
2605
Damien Millerd47c62a2005-12-13 19:33:57 +11002606 if (c == NULL) {
2607 logit("Received window adjust for non-open channel %d.", id);
Damien Miller33b13562000-04-04 14:38:59 +10002608 return;
2609 }
2610 adjust = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11002611 packet_check_eom();
Ben Lindstrom4fed2be2002-06-25 23:17:36 +00002612 debug2("channel %d: rcvd adjust %u", id, adjust);
Damien Miller33b13562000-04-04 14:38:59 +10002613 c->remote_window += adjust;
2614}
2615
Damien Millerd79b4242006-03-31 23:11:44 +11002616/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002617void
Damien Miller630d6f42002-01-22 23:17:30 +11002618channel_input_port_open(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002619{
Ben Lindstrome9c99912001-06-09 00:41:05 +00002620 Channel *c = NULL;
2621 u_short host_port;
2622 char *host, *originator_string;
Damien Millerbd740252008-05-19 15:37:09 +10002623 int remote_id;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002624
Ben Lindstrome9c99912001-06-09 00:41:05 +00002625 remote_id = packet_get_int();
2626 host = packet_get_string(NULL);
2627 host_port = packet_get_int();
2628
2629 if (packet_get_protocol_flags() & SSH_PROTOFLAG_HOST_IN_FWD_OPEN) {
2630 originator_string = packet_get_string(NULL);
2631 } else {
2632 originator_string = xstrdup("unknown (remote did not supply name)");
2633 }
Damien Miller48b03fc2002-01-22 23:11:40 +11002634 packet_check_eom();
Damien Millerbd740252008-05-19 15:37:09 +10002635 c = channel_connect_to(host, host_port,
2636 "connected socket", originator_string);
Darren Tuckera627d422013-06-02 07:31:17 +10002637 free(originator_string);
2638 free(host);
Ben Lindstrome9c99912001-06-09 00:41:05 +00002639 if (c == NULL) {
2640 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
2641 packet_put_int(remote_id);
2642 packet_send();
Damien Millerbd740252008-05-19 15:37:09 +10002643 } else
2644 c->remote_id = remote_id;
Ben Lindstrom5744dc42001-04-13 23:28:01 +00002645}
2646
Damien Millerb84886b2008-05-19 15:05:07 +10002647/* ARGSUSED */
2648void
2649channel_input_status_confirm(int type, u_int32_t seq, void *ctxt)
2650{
2651 Channel *c;
2652 struct channel_confirm *cc;
Damien Miller16a73072008-12-08 09:55:25 +11002653 int id;
Damien Millerb84886b2008-05-19 15:05:07 +10002654
2655 /* Reset keepalive timeout */
Darren Tuckerf7288d72009-06-21 18:12:20 +10002656 packet_set_alive_timeouts(0);
Damien Millerb84886b2008-05-19 15:05:07 +10002657
Damien Miller16a73072008-12-08 09:55:25 +11002658 id = packet_get_int();
Damien Millerb84886b2008-05-19 15:05:07 +10002659 packet_check_eom();
2660
Damien Miller16a73072008-12-08 09:55:25 +11002661 debug2("channel_input_status_confirm: type %d id %d", type, id);
Damien Millerb84886b2008-05-19 15:05:07 +10002662
Damien Miller16a73072008-12-08 09:55:25 +11002663 if ((c = channel_lookup(id)) == NULL) {
2664 logit("channel_input_status_confirm: %d: unknown", id);
Damien Millerb84886b2008-05-19 15:05:07 +10002665 return;
2666 }
2667 ;
2668 if ((cc = TAILQ_FIRST(&c->status_confirms)) == NULL)
2669 return;
2670 cc->cb(type, c, cc->ctx);
2671 TAILQ_REMOVE(&c->status_confirms, cc, entry);
2672 bzero(cc, sizeof(*cc));
Darren Tuckera627d422013-06-02 07:31:17 +10002673 free(cc);
Damien Millerb84886b2008-05-19 15:05:07 +10002674}
Ben Lindstrom5744dc42001-04-13 23:28:01 +00002675
Ben Lindstrome9c99912001-06-09 00:41:05 +00002676/* -- tcp forwarding */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002677
Ben Lindstrom908afed2001-10-03 17:34:59 +00002678void
2679channel_set_af(int af)
2680{
2681 IPv4or6 = af;
2682}
2683
Damien Millerf6dff7c2011-09-22 21:38:52 +10002684
2685/*
2686 * Determine whether or not a port forward listens to loopback, the
2687 * specified address or wildcard. On the client, a specified bind
2688 * address will always override gateway_ports. On the server, a
2689 * gateway_ports of 1 (``yes'') will override the client's specification
2690 * and force a wildcard bind, whereas a value of 2 (``clientspecified'')
2691 * will bind to whatever address the client asked for.
2692 *
2693 * Special-case listen_addrs are:
2694 *
2695 * "0.0.0.0" -> wildcard v4/v6 if SSH_OLD_FORWARD_ADDR
2696 * "" (empty string), "*" -> wildcard v4/v6
2697 * "localhost" -> loopback v4/v6
2698 */
2699static const char *
2700channel_fwd_bind_addr(const char *listen_addr, int *wildcardp,
2701 int is_client, int gateway_ports)
2702{
2703 const char *addr = NULL;
2704 int wildcard = 0;
2705
2706 if (listen_addr == NULL) {
2707 /* No address specified: default to gateway_ports setting */
2708 if (gateway_ports)
2709 wildcard = 1;
2710 } else if (gateway_ports || is_client) {
2711 if (((datafellows & SSH_OLD_FORWARD_ADDR) &&
2712 strcmp(listen_addr, "0.0.0.0") == 0 && is_client == 0) ||
2713 *listen_addr == '\0' || strcmp(listen_addr, "*") == 0 ||
2714 (!is_client && gateway_ports == 1))
2715 wildcard = 1;
2716 else if (strcmp(listen_addr, "localhost") != 0)
2717 addr = listen_addr;
2718 }
2719 if (wildcardp != NULL)
2720 *wildcardp = wildcard;
2721 return addr;
2722}
2723
Damien Millerb16461c2002-01-22 23:29:22 +11002724static int
Damien Miller4bf648f2009-02-14 16:28:21 +11002725channel_setup_fwd_listener(int type, const char *listen_addr,
2726 u_short listen_port, int *allocated_listen_port,
Damien Millerb16461c2002-01-22 23:29:22 +11002727 const char *host_to_connect, u_short port_to_connect, int gateway_ports)
Damien Miller0bc1bd82000-11-13 22:57:25 +11002728{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002729 Channel *c;
Damien Miller5e7fd072005-11-05 14:53:39 +11002730 int sock, r, success = 0, wildcard = 0, is_client;
Damien Miller34132e52000-01-14 15:45:46 +11002731 struct addrinfo hints, *ai, *aitop;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002732 const char *host, *addr;
Damien Millerb16461c2002-01-22 23:29:22 +11002733 char ntop[NI_MAXHOST], strport[NI_MAXSERV];
Damien Miller4bf648f2009-02-14 16:28:21 +11002734 in_port_t *lport_p;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002735
Damien Millerb16461c2002-01-22 23:29:22 +11002736 host = (type == SSH_CHANNEL_RPORT_LISTENER) ?
2737 listen_addr : host_to_connect;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002738 is_client = (type == SSH_CHANNEL_PORT_LISTENER);
Kevin Steves12057502001-02-05 14:54:34 +00002739
Damien Millerb16461c2002-01-22 23:29:22 +11002740 if (host == NULL) {
2741 error("No forward host name.");
Damien Millera7270302005-07-06 09:36:05 +10002742 return 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002743 }
Damien Miller9576ac42009-01-28 16:30:33 +11002744 if (strlen(host) >= NI_MAXHOST) {
Kevin Steves12057502001-02-05 14:54:34 +00002745 error("Forward host name too long.");
Damien Millera7270302005-07-06 09:36:05 +10002746 return 0;
Kevin Steves12057502001-02-05 14:54:34 +00002747 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002748
Damien Millerf6dff7c2011-09-22 21:38:52 +10002749 /* Determine the bind address, cf. channel_fwd_bind_addr() comment */
2750 addr = channel_fwd_bind_addr(listen_addr, &wildcard,
2751 is_client, gateway_ports);
Damien Millerf91ee4c2005-03-01 21:24:33 +11002752 debug3("channel_setup_fwd_listener: type %d wildcard %d addr %s",
2753 type, wildcard, (addr == NULL) ? "NULL" : addr);
2754
2755 /*
Damien Miller34132e52000-01-14 15:45:46 +11002756 * getaddrinfo returns a loopback address if the hostname is
2757 * set to NULL and hints.ai_flags is not AI_PASSIVE
Damien Miller5428f641999-11-25 11:54:57 +11002758 */
Damien Miller34132e52000-01-14 15:45:46 +11002759 memset(&hints, 0, sizeof(hints));
2760 hints.ai_family = IPv4or6;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002761 hints.ai_flags = wildcard ? AI_PASSIVE : 0;
Damien Miller34132e52000-01-14 15:45:46 +11002762 hints.ai_socktype = SOCK_STREAM;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002763 snprintf(strport, sizeof strport, "%d", listen_port);
Damien Millerf91ee4c2005-03-01 21:24:33 +11002764 if ((r = getaddrinfo(addr, strport, &hints, &aitop)) != 0) {
2765 if (addr == NULL) {
2766 /* This really shouldn't happen */
2767 packet_disconnect("getaddrinfo: fatal error: %s",
Darren Tucker4abde772007-12-29 02:43:51 +11002768 ssh_gai_strerror(r));
Damien Millerf91ee4c2005-03-01 21:24:33 +11002769 } else {
Damien Millera7270302005-07-06 09:36:05 +10002770 error("channel_setup_fwd_listener: "
Darren Tucker4abde772007-12-29 02:43:51 +11002771 "getaddrinfo(%.64s): %s", addr,
2772 ssh_gai_strerror(r));
Damien Millerf91ee4c2005-03-01 21:24:33 +11002773 }
Damien Millera7270302005-07-06 09:36:05 +10002774 return 0;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002775 }
Damien Miller4bf648f2009-02-14 16:28:21 +11002776 if (allocated_listen_port != NULL)
2777 *allocated_listen_port = 0;
Damien Miller34132e52000-01-14 15:45:46 +11002778 for (ai = aitop; ai; ai = ai->ai_next) {
Damien Miller4bf648f2009-02-14 16:28:21 +11002779 switch (ai->ai_family) {
2780 case AF_INET:
2781 lport_p = &((struct sockaddr_in *)ai->ai_addr)->
2782 sin_port;
2783 break;
2784 case AF_INET6:
2785 lport_p = &((struct sockaddr_in6 *)ai->ai_addr)->
2786 sin6_port;
2787 break;
2788 default:
Damien Miller34132e52000-01-14 15:45:46 +11002789 continue;
Damien Miller4bf648f2009-02-14 16:28:21 +11002790 }
2791 /*
2792 * If allocating a port for -R forwards, then use the
2793 * same port for all address families.
2794 */
2795 if (type == SSH_CHANNEL_RPORT_LISTENER && listen_port == 0 &&
2796 allocated_listen_port != NULL && *allocated_listen_port > 0)
2797 *lport_p = htons(*allocated_listen_port);
2798
Damien Miller34132e52000-01-14 15:45:46 +11002799 if (getnameinfo(ai->ai_addr, ai->ai_addrlen, ntop, sizeof(ntop),
2800 strport, sizeof(strport), NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
Damien Millerb16461c2002-01-22 23:29:22 +11002801 error("channel_setup_fwd_listener: getnameinfo failed");
Damien Miller34132e52000-01-14 15:45:46 +11002802 continue;
2803 }
2804 /* Create a port to listen for the host. */
Darren Tucker7bd98e72010-01-10 10:31:12 +11002805 sock = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
Damien Miller34132e52000-01-14 15:45:46 +11002806 if (sock < 0) {
2807 /* this is no error since kernel may not support ipv6 */
2808 verbose("socket: %.100s", strerror(errno));
2809 continue;
2810 }
Damien Miller5e7fd072005-11-05 14:53:39 +11002811
2812 channel_set_reuseaddr(sock);
Damien Miller04ee0f82009-11-18 17:48:30 +11002813 if (ai->ai_family == AF_INET6)
2814 sock_set_v6only(sock);
Damien Millere1383ce2002-09-19 11:49:37 +10002815
Damien Miller4bf648f2009-02-14 16:28:21 +11002816 debug("Local forwarding listening on %s port %s.",
2817 ntop, strport);
Damien Miller95def091999-11-25 00:26:21 +11002818
Damien Miller34132e52000-01-14 15:45:46 +11002819 /* Bind the socket to the address. */
2820 if (bind(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
2821 /* address can be in use ipv6 address is already bound */
Damien Miller3c7eeb22000-03-03 22:35:33 +11002822 if (!ai->ai_next)
2823 error("bind: %.100s", strerror(errno));
2824 else
2825 verbose("bind: %.100s", strerror(errno));
Kevin Stevesef4eea92001-02-05 12:42:17 +00002826
Damien Miller34132e52000-01-14 15:45:46 +11002827 close(sock);
2828 continue;
2829 }
2830 /* Start listening for connections on the socket. */
Darren Tucker3175eb92003-12-09 19:15:11 +11002831 if (listen(sock, SSH_LISTEN_BACKLOG) < 0) {
Damien Miller34132e52000-01-14 15:45:46 +11002832 error("listen: %.100s", strerror(errno));
2833 close(sock);
2834 continue;
2835 }
Damien Miller4bf648f2009-02-14 16:28:21 +11002836
2837 /*
2838 * listen_port == 0 requests a dynamically allocated port -
2839 * record what we got.
2840 */
2841 if (type == SSH_CHANNEL_RPORT_LISTENER && listen_port == 0 &&
2842 allocated_listen_port != NULL &&
2843 *allocated_listen_port == 0) {
2844 *allocated_listen_port = get_sock_port(sock, 1);
2845 debug("Allocated listen port %d",
2846 *allocated_listen_port);
2847 }
2848
Damien Miller34132e52000-01-14 15:45:46 +11002849 /* Allocate a channel number for the socket. */
Ben Lindstrome9c99912001-06-09 00:41:05 +00002850 c = channel_new("port listener", type, sock, sock, -1,
Damien Millerbd483e72000-04-30 10:00:53 +10002851 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10002852 0, "port listener", 1);
Damien Millera1c1b6c2009-01-28 16:29:49 +11002853 c->path = xstrdup(host);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002854 c->host_port = port_to_connect;
Damien Millerf6dff7c2011-09-22 21:38:52 +10002855 c->listening_addr = addr == NULL ? NULL : xstrdup(addr);
Darren Tucker68afb8c2011-10-02 18:59:03 +11002856 if (listen_port == 0 && allocated_listen_port != NULL &&
2857 !(datafellows & SSH_BUG_DYNAMIC_RPORT))
2858 c->listening_port = *allocated_listen_port;
2859 else
2860 c->listening_port = listen_port;
Damien Miller34132e52000-01-14 15:45:46 +11002861 success = 1;
2862 }
2863 if (success == 0)
Damien Millerb16461c2002-01-22 23:29:22 +11002864 error("channel_setup_fwd_listener: cannot listen to port: %d",
Kevin Steves12057502001-02-05 14:54:34 +00002865 listen_port);
Damien Miller34132e52000-01-14 15:45:46 +11002866 freeaddrinfo(aitop);
Kevin Steves12057502001-02-05 14:54:34 +00002867 return success;
Damien Miller95def091999-11-25 00:26:21 +11002868}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002869
Darren Tuckere7066df2004-05-24 10:18:05 +10002870int
2871channel_cancel_rport_listener(const char *host, u_short port)
2872{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10002873 u_int i;
2874 int found = 0;
Darren Tuckere7066df2004-05-24 10:18:05 +10002875
Darren Tucker47eede72005-03-14 23:08:12 +11002876 for (i = 0; i < channels_alloc; i++) {
Darren Tuckere7066df2004-05-24 10:18:05 +10002877 Channel *c = channels[i];
Damien Millerf6dff7c2011-09-22 21:38:52 +10002878 if (c == NULL || c->type != SSH_CHANNEL_RPORT_LISTENER)
2879 continue;
2880 if (strcmp(c->path, host) == 0 && c->listening_port == port) {
2881 debug2("%s: close channel %d", __func__, i);
2882 channel_free(c);
2883 found = 1;
2884 }
2885 }
Darren Tuckere7066df2004-05-24 10:18:05 +10002886
Damien Millerf6dff7c2011-09-22 21:38:52 +10002887 return (found);
2888}
2889
2890int
2891channel_cancel_lport_listener(const char *lhost, u_short lport,
Damien Millerff773642011-09-22 21:39:48 +10002892 int cport, int gateway_ports)
Damien Millerf6dff7c2011-09-22 21:38:52 +10002893{
2894 u_int i;
2895 int found = 0;
2896 const char *addr = channel_fwd_bind_addr(lhost, NULL, 1, gateway_ports);
2897
2898 for (i = 0; i < channels_alloc; i++) {
2899 Channel *c = channels[i];
2900 if (c == NULL || c->type != SSH_CHANNEL_PORT_LISTENER)
2901 continue;
Damien Millerff773642011-09-22 21:39:48 +10002902 if (c->listening_port != lport)
Damien Millerf6dff7c2011-09-22 21:38:52 +10002903 continue;
Damien Millerff773642011-09-22 21:39:48 +10002904 if (cport == CHANNEL_CANCEL_PORT_STATIC) {
2905 /* skip dynamic forwardings */
2906 if (c->host_port == 0)
2907 continue;
2908 } else {
2909 if (c->host_port != cport)
2910 continue;
2911 }
Damien Millerf6dff7c2011-09-22 21:38:52 +10002912 if ((c->listening_addr == NULL && addr != NULL) ||
2913 (c->listening_addr != NULL && addr == NULL))
2914 continue;
2915 if (addr == NULL || strcmp(c->listening_addr, addr) == 0) {
Darren Tuckere6ed8392004-08-29 16:29:44 +10002916 debug2("%s: close channel %d", __func__, i);
Darren Tuckere7066df2004-05-24 10:18:05 +10002917 channel_free(c);
2918 found = 1;
2919 }
2920 }
2921
2922 return (found);
2923}
2924
Damien Millerb16461c2002-01-22 23:29:22 +11002925/* protocol local port fwd, used by ssh (and sshd in v1) */
2926int
Damien Millerf91ee4c2005-03-01 21:24:33 +11002927channel_setup_local_fwd_listener(const char *listen_host, u_short listen_port,
Damien Millerb16461c2002-01-22 23:29:22 +11002928 const char *host_to_connect, u_short port_to_connect, int gateway_ports)
2929{
2930 return channel_setup_fwd_listener(SSH_CHANNEL_PORT_LISTENER,
Damien Miller4bf648f2009-02-14 16:28:21 +11002931 listen_host, listen_port, NULL, host_to_connect, port_to_connect,
Damien Millerf91ee4c2005-03-01 21:24:33 +11002932 gateway_ports);
Damien Millerb16461c2002-01-22 23:29:22 +11002933}
2934
2935/* protocol v2 remote port fwd, used by sshd */
2936int
2937channel_setup_remote_fwd_listener(const char *listen_address,
Damien Miller4bf648f2009-02-14 16:28:21 +11002938 u_short listen_port, int *allocated_listen_port, int gateway_ports)
Damien Millerb16461c2002-01-22 23:29:22 +11002939{
2940 return channel_setup_fwd_listener(SSH_CHANNEL_RPORT_LISTENER,
Damien Miller4bf648f2009-02-14 16:28:21 +11002941 listen_address, listen_port, allocated_listen_port,
2942 NULL, 0, gateway_ports);
Damien Millerb16461c2002-01-22 23:29:22 +11002943}
2944
Damien Miller5428f641999-11-25 11:54:57 +11002945/*
Damien Millerf6dff7c2011-09-22 21:38:52 +10002946 * Translate the requested rfwd listen host to something usable for
2947 * this server.
2948 */
2949static const char *
2950channel_rfwd_bind_host(const char *listen_host)
2951{
2952 if (listen_host == NULL) {
2953 if (datafellows & SSH_BUG_RFWD_ADDR)
2954 return "127.0.0.1";
2955 else
2956 return "localhost";
2957 } else if (*listen_host == '\0' || strcmp(listen_host, "*") == 0) {
2958 if (datafellows & SSH_BUG_RFWD_ADDR)
2959 return "0.0.0.0";
2960 else
2961 return "";
2962 } else
2963 return listen_host;
2964}
2965
2966/*
Damien Miller5428f641999-11-25 11:54:57 +11002967 * Initiate forwarding of connections to port "port" on remote host through
2968 * the secure channel to host:port from local side.
Darren Tucker68afb8c2011-10-02 18:59:03 +11002969 * Returns handle (index) for updating the dynamic listen port with
2970 * channel_update_permitted_opens().
Damien Miller5428f641999-11-25 11:54:57 +11002971 */
Darren Tuckere7d4b192006-07-12 22:17:10 +10002972int
Damien Millerf91ee4c2005-03-01 21:24:33 +11002973channel_request_remote_forwarding(const char *listen_host, u_short listen_port,
Damien Miller0bc1bd82000-11-13 22:57:25 +11002974 const char *host_to_connect, u_short port_to_connect)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002975{
Darren Tucker68afb8c2011-10-02 18:59:03 +11002976 int type, success = 0, idx = -1;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002977
Damien Miller95def091999-11-25 00:26:21 +11002978 /* Send the forward request to the remote side. */
Damien Miller33b13562000-04-04 14:38:59 +10002979 if (compat20) {
Damien Miller33b13562000-04-04 14:38:59 +10002980 packet_start(SSH2_MSG_GLOBAL_REQUEST);
2981 packet_put_cstring("tcpip-forward");
Damien Millerf6dff7c2011-09-22 21:38:52 +10002982 packet_put_char(1); /* boolean: want reply */
2983 packet_put_cstring(channel_rfwd_bind_host(listen_host));
Damien Miller33b13562000-04-04 14:38:59 +10002984 packet_put_int(listen_port);
Damien Miller0bc1bd82000-11-13 22:57:25 +11002985 packet_send();
2986 packet_write_wait();
2987 /* Assume that server accepts the request */
2988 success = 1;
Damien Miller33b13562000-04-04 14:38:59 +10002989 } else {
2990 packet_start(SSH_CMSG_PORT_FORWARD_REQUEST);
Damien Miller33b13562000-04-04 14:38:59 +10002991 packet_put_int(listen_port);
Damien Miller8bb73be2000-04-19 16:26:12 +10002992 packet_put_cstring(host_to_connect);
2993 packet_put_int(port_to_connect);
Damien Miller33b13562000-04-04 14:38:59 +10002994 packet_send();
2995 packet_write_wait();
Damien Miller0bc1bd82000-11-13 22:57:25 +11002996
2997 /* Wait for response from the remote side. */
Damien Millerdff50992002-01-22 23:16:32 +11002998 type = packet_read();
Damien Miller0bc1bd82000-11-13 22:57:25 +11002999 switch (type) {
3000 case SSH_SMSG_SUCCESS:
3001 success = 1;
3002 break;
3003 case SSH_SMSG_FAILURE:
Damien Miller0bc1bd82000-11-13 22:57:25 +11003004 break;
3005 default:
3006 /* Unknown packet */
3007 packet_disconnect("Protocol error for port forward request:"
3008 "received packet type %d.", type);
3009 }
3010 }
3011 if (success) {
Damien Miller232cfb12010-06-26 09:50:30 +10003012 /* Record that connection to this host/port is permitted. */
3013 permitted_opens = xrealloc(permitted_opens,
3014 num_permitted_opens + 1, sizeof(*permitted_opens));
Darren Tucker68afb8c2011-10-02 18:59:03 +11003015 idx = num_permitted_opens++;
3016 permitted_opens[idx].host_to_connect = xstrdup(host_to_connect);
3017 permitted_opens[idx].port_to_connect = port_to_connect;
3018 permitted_opens[idx].listen_port = listen_port;
Damien Miller33b13562000-04-04 14:38:59 +10003019 }
Darren Tucker68afb8c2011-10-02 18:59:03 +11003020 return (idx);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003021}
3022
Damien Miller5428f641999-11-25 11:54:57 +11003023/*
Darren Tuckerfc959702004-07-17 16:12:08 +10003024 * Request cancellation of remote forwarding of connection host:port from
Darren Tuckere7066df2004-05-24 10:18:05 +10003025 * local side.
3026 */
Damien Millerf6dff7c2011-09-22 21:38:52 +10003027int
Damien Millerf91ee4c2005-03-01 21:24:33 +11003028channel_request_rforward_cancel(const char *host, u_short port)
Darren Tuckere7066df2004-05-24 10:18:05 +10003029{
3030 int i;
Darren Tuckere7066df2004-05-24 10:18:05 +10003031
3032 if (!compat20)
Damien Millerf6dff7c2011-09-22 21:38:52 +10003033 return -1;
Darren Tuckere7066df2004-05-24 10:18:05 +10003034
3035 for (i = 0; i < num_permitted_opens; i++) {
Darren Tuckerfc959702004-07-17 16:12:08 +10003036 if (permitted_opens[i].host_to_connect != NULL &&
Darren Tuckere7066df2004-05-24 10:18:05 +10003037 permitted_opens[i].listen_port == port)
3038 break;
3039 }
3040 if (i >= num_permitted_opens) {
3041 debug("%s: requested forward not found", __func__);
Damien Millerf6dff7c2011-09-22 21:38:52 +10003042 return -1;
Darren Tuckere7066df2004-05-24 10:18:05 +10003043 }
3044 packet_start(SSH2_MSG_GLOBAL_REQUEST);
3045 packet_put_cstring("cancel-tcpip-forward");
3046 packet_put_char(0);
Damien Millerf6dff7c2011-09-22 21:38:52 +10003047 packet_put_cstring(channel_rfwd_bind_host(host));
Darren Tuckere7066df2004-05-24 10:18:05 +10003048 packet_put_int(port);
3049 packet_send();
3050
3051 permitted_opens[i].listen_port = 0;
3052 permitted_opens[i].port_to_connect = 0;
Darren Tuckera627d422013-06-02 07:31:17 +10003053 free(permitted_opens[i].host_to_connect);
Darren Tuckere7066df2004-05-24 10:18:05 +10003054 permitted_opens[i].host_to_connect = NULL;
Damien Millerf6dff7c2011-09-22 21:38:52 +10003055
3056 return 0;
Darren Tuckere7066df2004-05-24 10:18:05 +10003057}
3058
3059/*
Damien Miller5428f641999-11-25 11:54:57 +11003060 * This is called after receiving CHANNEL_FORWARDING_REQUEST. This initates
3061 * listening for the port, and sends back a success reply (or disconnect
Darren Tuckere7d4b192006-07-12 22:17:10 +10003062 * message if there was an error).
Damien Miller5428f641999-11-25 11:54:57 +11003063 */
Darren Tuckere7d4b192006-07-12 22:17:10 +10003064int
Damien Millere247cc42000-05-07 12:03:14 +10003065channel_input_port_forward_request(int is_root, int gateway_ports)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003066{
Damien Milleraae6c611999-12-06 11:47:28 +11003067 u_short port, host_port;
Darren Tuckere7d4b192006-07-12 22:17:10 +10003068 int success = 0;
Damien Miller95def091999-11-25 00:26:21 +11003069 char *hostname;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003070
Damien Miller95def091999-11-25 00:26:21 +11003071 /* Get arguments from the packet. */
3072 port = packet_get_int();
3073 hostname = packet_get_string(NULL);
3074 host_port = packet_get_int();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003075
Damien Millerbac2d8a2000-09-05 16:13:06 +11003076#ifndef HAVE_CYGWIN
Damien Miller5428f641999-11-25 11:54:57 +11003077 /*
3078 * Check that an unprivileged user is not trying to forward a
3079 * privileged port.
3080 */
Damien Miller95def091999-11-25 00:26:21 +11003081 if (port < IPPORT_RESERVED && !is_root)
Darren Tucker9189ff82003-07-03 13:52:04 +10003082 packet_disconnect(
3083 "Requested forwarding of port %d but user is not root.",
3084 port);
3085 if (host_port == 0)
3086 packet_disconnect("Dynamic forwarding denied.");
Damien Millerbac2d8a2000-09-05 16:13:06 +11003087#endif
Darren Tucker9189ff82003-07-03 13:52:04 +10003088
Damien Miller0bc1bd82000-11-13 22:57:25 +11003089 /* Initiate forwarding */
Darren Tuckere7d4b192006-07-12 22:17:10 +10003090 success = channel_setup_local_fwd_listener(NULL, port, hostname,
Damien Millerf91ee4c2005-03-01 21:24:33 +11003091 host_port, gateway_ports);
Damien Miller95def091999-11-25 00:26:21 +11003092
3093 /* Free the argument string. */
Darren Tuckera627d422013-06-02 07:31:17 +10003094 free(hostname);
Darren Tuckere7d4b192006-07-12 22:17:10 +10003095
3096 return (success ? 0 : -1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003097}
3098
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003099/*
3100 * Permits opening to any host/port if permitted_opens[] is empty. This is
3101 * usually called by the server, because the user could connect to any port
3102 * anyway, and the server has no way to know but to trust the client anyway.
3103 */
3104void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00003105channel_permit_all_opens(void)
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003106{
3107 if (num_permitted_opens == 0)
3108 all_opens_permitted = 1;
3109}
3110
Ben Lindstroma3700052001-04-05 23:26:32 +00003111void
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003112channel_add_permitted_opens(char *host, int port)
3113{
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003114 debug("allow port forwarding to host %s port %d", host, port);
3115
Damien Miller232cfb12010-06-26 09:50:30 +10003116 permitted_opens = xrealloc(permitted_opens,
3117 num_permitted_opens + 1, sizeof(*permitted_opens));
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003118 permitted_opens[num_permitted_opens].host_to_connect = xstrdup(host);
3119 permitted_opens[num_permitted_opens].port_to_connect = port;
3120 num_permitted_opens++;
3121
3122 all_opens_permitted = 0;
3123}
3124
Darren Tucker68afb8c2011-10-02 18:59:03 +11003125/*
3126 * Update the listen port for a dynamic remote forward, after
3127 * the actual 'newport' has been allocated. If 'newport' < 0 is
3128 * passed then they entry will be invalidated.
3129 */
3130void
3131channel_update_permitted_opens(int idx, int newport)
3132{
3133 if (idx < 0 || idx >= num_permitted_opens) {
3134 debug("channel_update_permitted_opens: index out of range:"
3135 " %d num_permitted_opens %d", idx, num_permitted_opens);
3136 return;
3137 }
3138 debug("%s allowed port %d for forwarding to host %s port %d",
3139 newport > 0 ? "Updating" : "Removing",
3140 newport,
3141 permitted_opens[idx].host_to_connect,
3142 permitted_opens[idx].port_to_connect);
3143 if (newport >= 0) {
3144 permitted_opens[idx].listen_port =
3145 (datafellows & SSH_BUG_DYNAMIC_RPORT) ? 0 : newport;
3146 } else {
3147 permitted_opens[idx].listen_port = 0;
3148 permitted_opens[idx].port_to_connect = 0;
Darren Tuckera627d422013-06-02 07:31:17 +10003149 free(permitted_opens[idx].host_to_connect);
Darren Tucker68afb8c2011-10-02 18:59:03 +11003150 permitted_opens[idx].host_to_connect = NULL;
3151 }
3152}
3153
Damien Millera765cf42006-07-24 14:08:13 +10003154int
Damien Miller9b439df2006-07-24 14:04:00 +10003155channel_add_adm_permitted_opens(char *host, int port)
3156{
Damien Millera765cf42006-07-24 14:08:13 +10003157 debug("config allows port forwarding to host %s port %d", host, port);
Damien Miller9b439df2006-07-24 14:04:00 +10003158
Damien Miller232cfb12010-06-26 09:50:30 +10003159 permitted_adm_opens = xrealloc(permitted_adm_opens,
3160 num_adm_permitted_opens + 1, sizeof(*permitted_adm_opens));
Damien Miller9b439df2006-07-24 14:04:00 +10003161 permitted_adm_opens[num_adm_permitted_opens].host_to_connect
3162 = xstrdup(host);
3163 permitted_adm_opens[num_adm_permitted_opens].port_to_connect = port;
Damien Millera765cf42006-07-24 14:08:13 +10003164 return ++num_adm_permitted_opens;
Damien Miller9b439df2006-07-24 14:04:00 +10003165}
3166
3167void
Damien Millerc6081482012-04-22 11:18:53 +10003168channel_disable_adm_local_opens(void)
3169{
Damien Milleraa5b3f82012-12-03 09:50:54 +11003170 channel_clear_adm_permitted_opens();
3171 permitted_adm_opens = xmalloc(sizeof(*permitted_adm_opens));
3172 permitted_adm_opens[num_adm_permitted_opens].host_to_connect = NULL;
3173 num_adm_permitted_opens = 1;
Damien Millerc6081482012-04-22 11:18:53 +10003174}
3175
3176void
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003177channel_clear_permitted_opens(void)
3178{
3179 int i;
3180
3181 for (i = 0; i < num_permitted_opens; i++)
Darren Tuckera627d422013-06-02 07:31:17 +10003182 free(permitted_opens[i].host_to_connect);
3183 free(permitted_opens);
3184 permitted_opens = NULL;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003185 num_permitted_opens = 0;
Damien Miller9b439df2006-07-24 14:04:00 +10003186}
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003187
Damien Miller9b439df2006-07-24 14:04:00 +10003188void
3189channel_clear_adm_permitted_opens(void)
3190{
3191 int i;
3192
3193 for (i = 0; i < num_adm_permitted_opens; i++)
Darren Tuckera627d422013-06-02 07:31:17 +10003194 free(permitted_adm_opens[i].host_to_connect);
3195 free(permitted_adm_opens);
3196 permitted_adm_opens = NULL;
Damien Miller9b439df2006-07-24 14:04:00 +10003197 num_adm_permitted_opens = 0;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003198}
3199
Darren Tuckere7140f22008-06-10 23:01:51 +10003200void
3201channel_print_adm_permitted_opens(void)
3202{
Damien Miller6ef17492008-07-16 22:42:06 +10003203 int i;
Darren Tuckere7140f22008-06-10 23:01:51 +10003204
Damien Millerb53d8a12009-01-28 16:13:04 +11003205 printf("permitopen");
Darren Tucker22662e82008-11-11 16:40:22 +11003206 if (num_adm_permitted_opens == 0) {
Damien Millerb53d8a12009-01-28 16:13:04 +11003207 printf(" any\n");
Darren Tucker22662e82008-11-11 16:40:22 +11003208 return;
3209 }
Darren Tuckere7140f22008-06-10 23:01:51 +10003210 for (i = 0; i < num_adm_permitted_opens; i++)
Damien Millerc6081482012-04-22 11:18:53 +10003211 if (permitted_adm_opens[i].host_to_connect == NULL)
3212 printf(" none");
3213 else
Darren Tuckere7140f22008-06-10 23:01:51 +10003214 printf(" %s:%d", permitted_adm_opens[i].host_to_connect,
3215 permitted_adm_opens[i].port_to_connect);
Damien Millerb53d8a12009-01-28 16:13:04 +11003216 printf("\n");
Darren Tuckere7140f22008-06-10 23:01:51 +10003217}
3218
Darren Tucker1338b9e2011-10-02 18:57:35 +11003219/* returns port number, FWD_PERMIT_ANY_PORT or -1 on error */
3220int
3221permitopen_port(const char *p)
3222{
3223 int port;
3224
3225 if (strcmp(p, "*") == 0)
3226 return FWD_PERMIT_ANY_PORT;
3227 if ((port = a2port(p)) > 0)
3228 return port;
3229 return -1;
3230}
3231
3232static int
3233port_match(u_short allowedport, u_short requestedport)
3234{
3235 if (allowedport == FWD_PERMIT_ANY_PORT ||
3236 allowedport == requestedport)
3237 return 1;
3238 return 0;
3239}
3240
Damien Millerbd740252008-05-19 15:37:09 +10003241/* Try to start non-blocking connect to next host in cctx list */
Ben Lindstrombba81212001-06-25 05:01:22 +00003242static int
Damien Millerbd740252008-05-19 15:37:09 +10003243connect_next(struct channel_connect *cctx)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003244{
Damien Millerbd740252008-05-19 15:37:09 +10003245 int sock, saved_errno;
Damien Miller34132e52000-01-14 15:45:46 +11003246 char ntop[NI_MAXHOST], strport[NI_MAXSERV];
Damien Miller95def091999-11-25 00:26:21 +11003247
Damien Millerbd740252008-05-19 15:37:09 +10003248 for (; cctx->ai; cctx->ai = cctx->ai->ai_next) {
3249 if (cctx->ai->ai_family != AF_INET &&
3250 cctx->ai->ai_family != AF_INET6)
Damien Miller34132e52000-01-14 15:45:46 +11003251 continue;
Damien Millerbd740252008-05-19 15:37:09 +10003252 if (getnameinfo(cctx->ai->ai_addr, cctx->ai->ai_addrlen,
3253 ntop, sizeof(ntop), strport, sizeof(strport),
3254 NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
3255 error("connect_next: getnameinfo failed");
Damien Miller34132e52000-01-14 15:45:46 +11003256 continue;
3257 }
Darren Tucker7bd98e72010-01-10 10:31:12 +11003258 if ((sock = socket(cctx->ai->ai_family, cctx->ai->ai_socktype,
3259 cctx->ai->ai_protocol)) == -1) {
Damien Millerbd740252008-05-19 15:37:09 +10003260 if (cctx->ai->ai_next == NULL)
Damien Millerb46b9f32003-01-10 21:45:12 +11003261 error("socket: %.100s", strerror(errno));
3262 else
3263 verbose("socket: %.100s", strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11003264 continue;
3265 }
Damien Miller232711f2004-06-15 10:35:30 +10003266 if (set_nonblock(sock) == -1)
3267 fatal("%s: set_nonblock(%d)", __func__, sock);
Damien Millerbd740252008-05-19 15:37:09 +10003268 if (connect(sock, cctx->ai->ai_addr,
3269 cctx->ai->ai_addrlen) == -1 && errno != EINPROGRESS) {
3270 debug("connect_next: host %.100s ([%.100s]:%s): "
3271 "%.100s", cctx->host, ntop, strport,
Damien Miller34132e52000-01-14 15:45:46 +11003272 strerror(errno));
Damien Millerbd740252008-05-19 15:37:09 +10003273 saved_errno = errno;
Damien Miller34132e52000-01-14 15:45:46 +11003274 close(sock);
Damien Millerbd740252008-05-19 15:37:09 +10003275 errno = saved_errno;
Kevin Stevesef4eea92001-02-05 12:42:17 +00003276 continue; /* fail -- try next */
Damien Miller34132e52000-01-14 15:45:46 +11003277 }
Damien Millerbd740252008-05-19 15:37:09 +10003278 debug("connect_next: host %.100s ([%.100s]:%s) "
3279 "in progress, fd=%d", cctx->host, ntop, strport, sock);
3280 cctx->ai = cctx->ai->ai_next;
3281 set_nodelay(sock);
3282 return sock;
Damien Miller34132e52000-01-14 15:45:46 +11003283 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11003284 return -1;
3285}
Damien Millerb38eff82000-04-01 11:09:21 +10003286
Damien Millerbd740252008-05-19 15:37:09 +10003287static void
3288channel_connect_ctx_free(struct channel_connect *cctx)
3289{
Darren Tuckera627d422013-06-02 07:31:17 +10003290 free(cctx->host);
Damien Millerbd740252008-05-19 15:37:09 +10003291 if (cctx->aitop)
3292 freeaddrinfo(cctx->aitop);
3293 bzero(cctx, sizeof(*cctx));
3294 cctx->host = NULL;
3295 cctx->ai = cctx->aitop = NULL;
3296}
3297
3298/* Return CONNECTING channel to remote host, port */
3299static Channel *
3300connect_to(const char *host, u_short port, char *ctype, char *rname)
3301{
3302 struct addrinfo hints;
3303 int gaierr;
3304 int sock = -1;
3305 char strport[NI_MAXSERV];
3306 struct channel_connect cctx;
3307 Channel *c;
3308
Damien Miller2bcb8662008-07-12 17:12:29 +10003309 memset(&cctx, 0, sizeof(cctx));
Damien Millerbd740252008-05-19 15:37:09 +10003310 memset(&hints, 0, sizeof(hints));
3311 hints.ai_family = IPv4or6;
3312 hints.ai_socktype = SOCK_STREAM;
3313 snprintf(strport, sizeof strport, "%d", port);
3314 if ((gaierr = getaddrinfo(host, strport, &hints, &cctx.aitop)) != 0) {
3315 error("connect_to %.100s: unknown host (%s)", host,
3316 ssh_gai_strerror(gaierr));
3317 return NULL;
3318 }
3319
3320 cctx.host = xstrdup(host);
3321 cctx.port = port;
3322 cctx.ai = cctx.aitop;
3323
3324 if ((sock = connect_next(&cctx)) == -1) {
3325 error("connect to %.100s port %d failed: %s",
3326 host, port, strerror(errno));
3327 channel_connect_ctx_free(&cctx);
3328 return NULL;
3329 }
3330 c = channel_new(ctype, SSH_CHANNEL_CONNECTING, sock, sock, -1,
3331 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT, 0, rname, 1);
3332 c->connect_ctx = cctx;
3333 return c;
3334}
3335
3336Channel *
3337channel_connect_by_listen_address(u_short listen_port, char *ctype, char *rname)
3338{
3339 int i;
3340
3341 for (i = 0; i < num_permitted_opens; i++) {
3342 if (permitted_opens[i].host_to_connect != NULL &&
Darren Tucker1338b9e2011-10-02 18:57:35 +11003343 port_match(permitted_opens[i].listen_port, listen_port)) {
Damien Millerbd740252008-05-19 15:37:09 +10003344 return connect_to(
3345 permitted_opens[i].host_to_connect,
3346 permitted_opens[i].port_to_connect, ctype, rname);
3347 }
3348 }
3349 error("WARNING: Server requests forwarding for unknown listen_port %d",
3350 listen_port);
3351 return NULL;
3352}
3353
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003354/* Check if connecting to that port is permitted and connect. */
Damien Millerbd740252008-05-19 15:37:09 +10003355Channel *
3356channel_connect_to(const char *host, u_short port, char *ctype, char *rname)
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003357{
Damien Miller9b439df2006-07-24 14:04:00 +10003358 int i, permit, permit_adm = 1;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003359
3360 permit = all_opens_permitted;
3361 if (!permit) {
3362 for (i = 0; i < num_permitted_opens; i++)
Darren Tuckere7066df2004-05-24 10:18:05 +10003363 if (permitted_opens[i].host_to_connect != NULL &&
Darren Tucker1338b9e2011-10-02 18:57:35 +11003364 port_match(permitted_opens[i].port_to_connect, port) &&
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003365 strcmp(permitted_opens[i].host_to_connect, host) == 0)
3366 permit = 1;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003367 }
Damien Miller9b439df2006-07-24 14:04:00 +10003368
3369 if (num_adm_permitted_opens > 0) {
3370 permit_adm = 0;
3371 for (i = 0; i < num_adm_permitted_opens; i++)
3372 if (permitted_adm_opens[i].host_to_connect != NULL &&
Darren Tucker1338b9e2011-10-02 18:57:35 +11003373 port_match(permitted_adm_opens[i].port_to_connect, port) &&
Damien Miller9b439df2006-07-24 14:04:00 +10003374 strcmp(permitted_adm_opens[i].host_to_connect, host)
3375 == 0)
3376 permit_adm = 1;
3377 }
3378
3379 if (!permit || !permit_adm) {
Damien Miller996acd22003-04-09 20:59:48 +10003380 logit("Received request to connect to host %.100s port %d, "
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003381 "but the request was denied.", host, port);
Damien Millerbd740252008-05-19 15:37:09 +10003382 return NULL;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003383 }
Damien Millerbd740252008-05-19 15:37:09 +10003384 return connect_to(host, port, ctype, rname);
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003385}
3386
Damien Miller0e220db2004-06-15 10:34:08 +10003387void
3388channel_send_window_changes(void)
3389{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10003390 u_int i;
Damien Miller0e220db2004-06-15 10:34:08 +10003391 struct winsize ws;
3392
3393 for (i = 0; i < channels_alloc; i++) {
Darren Tucker47eede72005-03-14 23:08:12 +11003394 if (channels[i] == NULL || !channels[i]->client_tty ||
Damien Miller0e220db2004-06-15 10:34:08 +10003395 channels[i]->type != SSH_CHANNEL_OPEN)
3396 continue;
3397 if (ioctl(channels[i]->rfd, TIOCGWINSZ, &ws) < 0)
3398 continue;
3399 channel_request_start(i, "window-change", 0);
Damien Miller71a73672006-03-26 14:04:36 +11003400 packet_put_int((u_int)ws.ws_col);
3401 packet_put_int((u_int)ws.ws_row);
3402 packet_put_int((u_int)ws.ws_xpixel);
3403 packet_put_int((u_int)ws.ws_ypixel);
Damien Miller0e220db2004-06-15 10:34:08 +10003404 packet_send();
3405 }
3406}
3407
Ben Lindstrome9c99912001-06-09 00:41:05 +00003408/* -- X11 forwarding */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003409
Damien Miller5428f641999-11-25 11:54:57 +11003410/*
3411 * Creates an internet domain socket for listening for X11 connections.
Ben Lindstroma9d2c892002-06-23 21:48:28 +00003412 * Returns 0 and a suitable display number for the DISPLAY variable
3413 * stored in display_numberp , or -1 if an error occurs.
Damien Miller5428f641999-11-25 11:54:57 +11003414 */
Kevin Steves366298c2001-12-19 17:58:01 +00003415int
Damien Miller95c249f2002-02-05 12:11:34 +11003416x11_create_display_inet(int x11_display_offset, int x11_use_localhost,
Damien Miller2b9b0452005-07-17 17:19:24 +10003417 int single_connection, u_int *display_numberp, int **chanids)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003418{
Damien Millere7378562001-12-21 14:58:35 +11003419 Channel *nc = NULL;
Damien Milleraae6c611999-12-06 11:47:28 +11003420 int display_number, sock;
3421 u_short port;
Damien Miller34132e52000-01-14 15:45:46 +11003422 struct addrinfo hints, *ai, *aitop;
3423 char strport[NI_MAXSERV];
3424 int gaierr, n, num_socks = 0, socks[NUM_SOCKS];
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003425
Darren Tuckerd3d0fa12005-10-03 18:03:05 +10003426 if (chanids == NULL)
3427 return -1;
3428
Damien Millera34a28b1999-12-14 10:47:15 +11003429 for (display_number = x11_display_offset;
Damien Miller9f0f5c62001-12-21 14:45:46 +11003430 display_number < MAX_DISPLAYS;
3431 display_number++) {
Damien Miller95def091999-11-25 00:26:21 +11003432 port = 6000 + display_number;
Damien Miller34132e52000-01-14 15:45:46 +11003433 memset(&hints, 0, sizeof(hints));
3434 hints.ai_family = IPv4or6;
Damien Miller95c249f2002-02-05 12:11:34 +11003435 hints.ai_flags = x11_use_localhost ? 0: AI_PASSIVE;
Damien Miller34132e52000-01-14 15:45:46 +11003436 hints.ai_socktype = SOCK_STREAM;
3437 snprintf(strport, sizeof strport, "%d", port);
3438 if ((gaierr = getaddrinfo(NULL, strport, &hints, &aitop)) != 0) {
Darren Tucker4abde772007-12-29 02:43:51 +11003439 error("getaddrinfo: %.100s", ssh_gai_strerror(gaierr));
Kevin Steves366298c2001-12-19 17:58:01 +00003440 return -1;
Damien Miller95def091999-11-25 00:26:21 +11003441 }
Damien Miller34132e52000-01-14 15:45:46 +11003442 for (ai = aitop; ai; ai = ai->ai_next) {
3443 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
3444 continue;
Darren Tucker7bd98e72010-01-10 10:31:12 +11003445 sock = socket(ai->ai_family, ai->ai_socktype,
3446 ai->ai_protocol);
Damien Miller34132e52000-01-14 15:45:46 +11003447 if (sock < 0) {
Damien Miller6480c632010-03-26 11:09:44 +11003448 if ((errno != EINVAL) && (errno != EAFNOSUPPORT)
3449#ifdef EPFNOSUPPORT
3450 && (errno != EPFNOSUPPORT)
3451#endif
3452 ) {
Damien Millere2192732000-01-17 13:22:55 +11003453 error("socket: %.100s", strerror(errno));
Damien Miller3e4dffb2004-06-15 10:27:15 +10003454 freeaddrinfo(aitop);
Kevin Steves366298c2001-12-19 17:58:01 +00003455 return -1;
Damien Millere2192732000-01-17 13:22:55 +11003456 } else {
Damien Millercb5e44a2000-09-29 12:12:36 +11003457 debug("x11_create_display_inet: Socket family %d not supported",
3458 ai->ai_family);
Damien Millere2192732000-01-17 13:22:55 +11003459 continue;
3460 }
Damien Miller34132e52000-01-14 15:45:46 +11003461 }
Damien Miller04ee0f82009-11-18 17:48:30 +11003462 if (ai->ai_family == AF_INET6)
3463 sock_set_v6only(sock);
Damien Miller4401e452008-06-12 06:05:12 +10003464 if (x11_use_localhost)
3465 channel_set_reuseaddr(sock);
Damien Miller34132e52000-01-14 15:45:46 +11003466 if (bind(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +10003467 debug2("bind port %d: %.100s", port, strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11003468 close(sock);
Damien Miller3c7eeb22000-03-03 22:35:33 +11003469
Damien Miller34132e52000-01-14 15:45:46 +11003470 for (n = 0; n < num_socks; n++) {
Damien Miller34132e52000-01-14 15:45:46 +11003471 close(socks[n]);
3472 }
3473 num_socks = 0;
3474 break;
3475 }
3476 socks[num_socks++] = sock;
3477 if (num_socks == NUM_SOCKS)
3478 break;
Damien Miller95def091999-11-25 00:26:21 +11003479 }
Ben Lindstrom87b147f2001-01-25 00:41:12 +00003480 freeaddrinfo(aitop);
Damien Miller34132e52000-01-14 15:45:46 +11003481 if (num_socks > 0)
3482 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003483 }
Damien Miller95def091999-11-25 00:26:21 +11003484 if (display_number >= MAX_DISPLAYS) {
3485 error("Failed to allocate internet-domain X11 display socket.");
Kevin Steves366298c2001-12-19 17:58:01 +00003486 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003487 }
Damien Miller95def091999-11-25 00:26:21 +11003488 /* Start listening for connections on the socket. */
Damien Miller34132e52000-01-14 15:45:46 +11003489 for (n = 0; n < num_socks; n++) {
3490 sock = socks[n];
Darren Tucker3175eb92003-12-09 19:15:11 +11003491 if (listen(sock, SSH_LISTEN_BACKLOG) < 0) {
Damien Miller34132e52000-01-14 15:45:46 +11003492 error("listen: %.100s", strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11003493 close(sock);
Kevin Steves366298c2001-12-19 17:58:01 +00003494 return -1;
Damien Miller34132e52000-01-14 15:45:46 +11003495 }
Damien Miller95def091999-11-25 00:26:21 +11003496 }
Damien Miller34132e52000-01-14 15:45:46 +11003497
Damien Miller34132e52000-01-14 15:45:46 +11003498 /* Allocate a channel for each socket. */
Damien Miller07d86be2006-03-26 14:19:21 +11003499 *chanids = xcalloc(num_socks + 1, sizeof(**chanids));
Damien Miller34132e52000-01-14 15:45:46 +11003500 for (n = 0; n < num_socks; n++) {
3501 sock = socks[n];
Damien Millere7378562001-12-21 14:58:35 +11003502 nc = channel_new("x11 listener",
Damien Millerbd483e72000-04-30 10:00:53 +10003503 SSH_CHANNEL_X11_LISTENER, sock, sock, -1,
3504 CHAN_X11_WINDOW_DEFAULT, CHAN_X11_PACKET_DEFAULT,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10003505 0, "X11 inet listener", 1);
Damien Miller699d0032002-02-08 22:07:16 +11003506 nc->single_connection = single_connection;
Darren Tuckerd3d0fa12005-10-03 18:03:05 +10003507 (*chanids)[n] = nc->self;
Damien Miller34132e52000-01-14 15:45:46 +11003508 }
Darren Tuckerd3d0fa12005-10-03 18:03:05 +10003509 (*chanids)[n] = -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003510
Kevin Steves366298c2001-12-19 17:58:01 +00003511 /* Return the display number for the DISPLAY environment variable. */
Ben Lindstroma9d2c892002-06-23 21:48:28 +00003512 *display_numberp = display_number;
3513 return (0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003514}
3515
Ben Lindstrombba81212001-06-25 05:01:22 +00003516static int
Damien Miller819dbb62009-01-21 16:46:26 +11003517connect_local_xsocket_path(const char *pathname)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003518{
Damien Miller95def091999-11-25 00:26:21 +11003519 int sock;
3520 struct sockaddr_un addr;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003521
Damien Miller3afe3752001-12-21 12:39:51 +11003522 sock = socket(AF_UNIX, SOCK_STREAM, 0);
3523 if (sock < 0)
3524 error("socket: %.100s", strerror(errno));
3525 memset(&addr, 0, sizeof(addr));
3526 addr.sun_family = AF_UNIX;
Damien Miller819dbb62009-01-21 16:46:26 +11003527 strlcpy(addr.sun_path, pathname, sizeof addr.sun_path);
Damien Miller90967402006-03-26 14:07:26 +11003528 if (connect(sock, (struct sockaddr *)&addr, sizeof(addr)) == 0)
Damien Miller3afe3752001-12-21 12:39:51 +11003529 return sock;
3530 close(sock);
Damien Miller95def091999-11-25 00:26:21 +11003531 error("connect %.100s: %.100s", addr.sun_path, strerror(errno));
3532 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003533}
3534
Damien Miller819dbb62009-01-21 16:46:26 +11003535static int
3536connect_local_xsocket(u_int dnr)
3537{
3538 char buf[1024];
3539 snprintf(buf, sizeof buf, _PATH_UNIX_X, dnr);
3540 return connect_local_xsocket_path(buf);
3541}
3542
Damien Millerbd483e72000-04-30 10:00:53 +10003543int
3544x11_connect_display(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003545{
Damien Miller57c4e872006-03-31 23:11:07 +11003546 u_int display_number;
Damien Miller95def091999-11-25 00:26:21 +11003547 const char *display;
Damien Millerbd483e72000-04-30 10:00:53 +10003548 char buf[1024], *cp;
Damien Miller34132e52000-01-14 15:45:46 +11003549 struct addrinfo hints, *ai, *aitop;
3550 char strport[NI_MAXSERV];
Damien Miller57c4e872006-03-31 23:11:07 +11003551 int gaierr, sock = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003552
Damien Miller95def091999-11-25 00:26:21 +11003553 /* Try to open a socket for the local X server. */
3554 display = getenv("DISPLAY");
3555 if (!display) {
3556 error("DISPLAY not set.");
Damien Millerbd483e72000-04-30 10:00:53 +10003557 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003558 }
Damien Miller5428f641999-11-25 11:54:57 +11003559 /*
3560 * Now we decode the value of the DISPLAY variable and make a
3561 * connection to the real X server.
3562 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003563
Damien Miller819dbb62009-01-21 16:46:26 +11003564 /* Check if the display is from launchd. */
3565#ifdef __APPLE__
3566 if (strncmp(display, "/tmp/launch", 11) == 0) {
3567 sock = connect_local_xsocket_path(display);
3568 if (sock < 0)
3569 return -1;
3570
3571 /* OK, we now have a connection to the display. */
3572 return sock;
3573 }
3574#endif
Damien Miller5428f641999-11-25 11:54:57 +11003575 /*
3576 * Check if it is a unix domain socket. Unix domain displays are in
3577 * one of the following formats: unix:d[.s], :d[.s], ::d[.s]
3578 */
Damien Miller95def091999-11-25 00:26:21 +11003579 if (strncmp(display, "unix:", 5) == 0 ||
3580 display[0] == ':') {
3581 /* Connect to the unix domain socket. */
Damien Miller57c4e872006-03-31 23:11:07 +11003582 if (sscanf(strrchr(display, ':') + 1, "%u", &display_number) != 1) {
Damien Miller95def091999-11-25 00:26:21 +11003583 error("Could not parse display number from DISPLAY: %.100s",
Damien Miller9f0f5c62001-12-21 14:45:46 +11003584 display);
Damien Millerbd483e72000-04-30 10:00:53 +10003585 return -1;
Damien Miller95def091999-11-25 00:26:21 +11003586 }
3587 /* Create a socket. */
3588 sock = connect_local_xsocket(display_number);
3589 if (sock < 0)
Damien Millerbd483e72000-04-30 10:00:53 +10003590 return -1;
Damien Miller95def091999-11-25 00:26:21 +11003591
3592 /* OK, we now have a connection to the display. */
Damien Millerbd483e72000-04-30 10:00:53 +10003593 return sock;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003594 }
Damien Miller5428f641999-11-25 11:54:57 +11003595 /*
3596 * Connect to an inet socket. The DISPLAY value is supposedly
3597 * hostname:d[.s], where hostname may also be numeric IP address.
3598 */
Ben Lindstromccd8d072001-12-07 17:26:48 +00003599 strlcpy(buf, display, sizeof(buf));
Damien Miller95def091999-11-25 00:26:21 +11003600 cp = strchr(buf, ':');
3601 if (!cp) {
3602 error("Could not find ':' in DISPLAY: %.100s", display);
Damien Millerbd483e72000-04-30 10:00:53 +10003603 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003604 }
Damien Miller95def091999-11-25 00:26:21 +11003605 *cp = 0;
Damien Miller5428f641999-11-25 11:54:57 +11003606 /* buf now contains the host name. But first we parse the display number. */
Damien Miller57c4e872006-03-31 23:11:07 +11003607 if (sscanf(cp + 1, "%u", &display_number) != 1) {
Damien Miller95def091999-11-25 00:26:21 +11003608 error("Could not parse display number from DISPLAY: %.100s",
Damien Miller9f0f5c62001-12-21 14:45:46 +11003609 display);
Damien Millerbd483e72000-04-30 10:00:53 +10003610 return -1;
Damien Miller95def091999-11-25 00:26:21 +11003611 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003612
Damien Miller34132e52000-01-14 15:45:46 +11003613 /* Look up the host address */
3614 memset(&hints, 0, sizeof(hints));
3615 hints.ai_family = IPv4or6;
3616 hints.ai_socktype = SOCK_STREAM;
Damien Miller57c4e872006-03-31 23:11:07 +11003617 snprintf(strport, sizeof strport, "%u", 6000 + display_number);
Damien Miller34132e52000-01-14 15:45:46 +11003618 if ((gaierr = getaddrinfo(buf, strport, &hints, &aitop)) != 0) {
Darren Tucker4abde772007-12-29 02:43:51 +11003619 error("%.100s: unknown host. (%s)", buf,
3620 ssh_gai_strerror(gaierr));
Damien Millerbd483e72000-04-30 10:00:53 +10003621 return -1;
Damien Miller95def091999-11-25 00:26:21 +11003622 }
Damien Miller34132e52000-01-14 15:45:46 +11003623 for (ai = aitop; ai; ai = ai->ai_next) {
3624 /* Create a socket. */
Darren Tucker7bd98e72010-01-10 10:31:12 +11003625 sock = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
Damien Miller34132e52000-01-14 15:45:46 +11003626 if (sock < 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +10003627 debug2("socket: %.100s", strerror(errno));
Damien Millerb38eff82000-04-01 11:09:21 +10003628 continue;
3629 }
3630 /* Connect it to the display. */
3631 if (connect(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
Damien Miller57c4e872006-03-31 23:11:07 +11003632 debug2("connect %.100s port %u: %.100s", buf,
Damien Millerb38eff82000-04-01 11:09:21 +10003633 6000 + display_number, strerror(errno));
3634 close(sock);
3635 continue;
3636 }
3637 /* Success */
3638 break;
Damien Miller34132e52000-01-14 15:45:46 +11003639 }
Damien Miller34132e52000-01-14 15:45:46 +11003640 freeaddrinfo(aitop);
3641 if (!ai) {
Damien Miller57c4e872006-03-31 23:11:07 +11003642 error("connect %.100s port %u: %.100s", buf, 6000 + display_number,
Damien Miller34132e52000-01-14 15:45:46 +11003643 strerror(errno));
Damien Millerbd483e72000-04-30 10:00:53 +10003644 return -1;
Damien Miller95def091999-11-25 00:26:21 +11003645 }
Damien Miller398e1cf2002-02-05 11:52:13 +11003646 set_nodelay(sock);
Damien Millerbd483e72000-04-30 10:00:53 +10003647 return sock;
3648}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003649
Damien Millerbd483e72000-04-30 10:00:53 +10003650/*
3651 * This is called when SSH_SMSG_X11_OPEN is received. The packet contains
3652 * the remote channel number. We should do whatever we want, and respond
3653 * with either SSH_MSG_OPEN_CONFIRMATION or SSH_MSG_OPEN_FAILURE.
3654 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003655
Damien Miller8473dd82006-07-24 14:08:32 +10003656/* ARGSUSED */
Damien Millerbd483e72000-04-30 10:00:53 +10003657void
Damien Miller630d6f42002-01-22 23:17:30 +11003658x11_input_open(int type, u_int32_t seq, void *ctxt)
Damien Millerbd483e72000-04-30 10:00:53 +10003659{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003660 Channel *c = NULL;
3661 int remote_id, sock = 0;
Damien Millerbd483e72000-04-30 10:00:53 +10003662 char *remote_host;
Damien Millerbd483e72000-04-30 10:00:53 +10003663
3664 debug("Received X11 open request.");
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003665
3666 remote_id = packet_get_int();
Ben Lindstrome9c99912001-06-09 00:41:05 +00003667
3668 if (packet_get_protocol_flags() & SSH_PROTOFLAG_HOST_IN_FWD_OPEN) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003669 remote_host = packet_get_string(NULL);
3670 } else {
3671 remote_host = xstrdup("unknown (remote did not supply name)");
3672 }
Damien Miller48b03fc2002-01-22 23:11:40 +11003673 packet_check_eom();
Damien Millerbd483e72000-04-30 10:00:53 +10003674
3675 /* Obtain a connection to the real X display. */
3676 sock = x11_connect_display();
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003677 if (sock != -1) {
3678 /* Allocate a channel for this connection. */
3679 c = channel_new("connected x11 socket",
3680 SSH_CHANNEL_X11_OPEN, sock, sock, -1, 0, 0, 0,
3681 remote_host, 1);
Damien Miller699d0032002-02-08 22:07:16 +11003682 c->remote_id = remote_id;
3683 c->force_drain = 1;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003684 }
Darren Tuckera627d422013-06-02 07:31:17 +10003685 free(remote_host);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003686 if (c == NULL) {
Damien Millerbd483e72000-04-30 10:00:53 +10003687 /* Send refusal to the remote host. */
3688 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003689 packet_put_int(remote_id);
Damien Millerbd483e72000-04-30 10:00:53 +10003690 } else {
Damien Millerbd483e72000-04-30 10:00:53 +10003691 /* Send a confirmation to the remote host. */
3692 packet_start(SSH_MSG_CHANNEL_OPEN_CONFIRMATION);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003693 packet_put_int(remote_id);
3694 packet_put_int(c->self);
Damien Millerbd483e72000-04-30 10:00:53 +10003695 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003696 packet_send();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003697}
3698
Damien Miller69b69aa2000-10-28 14:19:58 +11003699/* dummy protocol handler that denies SSH-1 requests (agent/x11) */
Damien Miller8473dd82006-07-24 14:08:32 +10003700/* ARGSUSED */
Damien Miller69b69aa2000-10-28 14:19:58 +11003701void
Damien Miller630d6f42002-01-22 23:17:30 +11003702deny_input_open(int type, u_int32_t seq, void *ctxt)
Damien Miller69b69aa2000-10-28 14:19:58 +11003703{
3704 int rchan = packet_get_int();
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00003705
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00003706 switch (type) {
Damien Miller69b69aa2000-10-28 14:19:58 +11003707 case SSH_SMSG_AGENT_OPEN:
3708 error("Warning: ssh server tried agent forwarding.");
3709 break;
3710 case SSH_SMSG_X11_OPEN:
3711 error("Warning: ssh server tried X11 forwarding.");
3712 break;
3713 default:
Damien Miller630d6f42002-01-22 23:17:30 +11003714 error("deny_input_open: type %d", type);
Damien Miller69b69aa2000-10-28 14:19:58 +11003715 break;
3716 }
Damien Miller5eb137c2005-12-31 16:19:53 +11003717 error("Warning: this is probably a break-in attempt by a malicious server.");
Damien Miller69b69aa2000-10-28 14:19:58 +11003718 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
3719 packet_put_int(rchan);
3720 packet_send();
3721}
3722
Damien Miller5428f641999-11-25 11:54:57 +11003723/*
3724 * Requests forwarding of X11 connections, generates fake authentication
3725 * data, and enables authentication spoofing.
Ben Lindstrome9c99912001-06-09 00:41:05 +00003726 * This should be called in the client only.
Damien Miller5428f641999-11-25 11:54:57 +11003727 */
Damien Miller4af51302000-04-16 11:18:38 +10003728void
Damien Miller17e7ed02005-06-17 12:54:33 +10003729x11_request_forwarding_with_spoofing(int client_session_id, const char *disp,
Damien Miller6d7b4372011-06-23 08:31:57 +10003730 const char *proto, const char *data, int want_reply)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003731{
Ben Lindstrom46c16222000-12-22 01:43:59 +00003732 u_int data_len = (u_int) strlen(data) / 2;
Damien Miller13390022005-07-06 09:44:19 +10003733 u_int i, value;
Damien Miller95def091999-11-25 00:26:21 +11003734 char *new_data;
3735 int screen_number;
3736 const char *cp;
Darren Tucker3f9fdc72004-06-22 12:56:01 +10003737 u_int32_t rnd = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003738
Damien Millerf92c0792005-07-06 09:45:26 +10003739 if (x11_saved_display == NULL)
3740 x11_saved_display = xstrdup(disp);
3741 else if (strcmp(disp, x11_saved_display) != 0) {
Damien Miller13390022005-07-06 09:44:19 +10003742 error("x11_request_forwarding_with_spoofing: different "
3743 "$DISPLAY already forwarded");
3744 return;
3745 }
3746
Damien Millerd5fe0ba2006-08-30 11:07:39 +10003747 cp = strchr(disp, ':');
Damien Miller95def091999-11-25 00:26:21 +11003748 if (cp)
3749 cp = strchr(cp, '.');
3750 if (cp)
Damien Miller08d61502006-03-26 14:28:32 +11003751 screen_number = (u_int)strtonum(cp + 1, 0, 400, NULL);
Damien Miller95def091999-11-25 00:26:21 +11003752 else
3753 screen_number = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003754
Damien Miller13390022005-07-06 09:44:19 +10003755 if (x11_saved_proto == NULL) {
3756 /* Save protocol name. */
3757 x11_saved_proto = xstrdup(proto);
3758 /*
Damien Miller46d38de2005-07-17 17:02:09 +10003759 * Extract real authentication data and generate fake data
Damien Miller13390022005-07-06 09:44:19 +10003760 * of the same length.
3761 */
3762 x11_saved_data = xmalloc(data_len);
3763 x11_fake_data = xmalloc(data_len);
3764 for (i = 0; i < data_len; i++) {
3765 if (sscanf(data + 2 * i, "%2x", &value) != 1)
3766 fatal("x11_request_forwarding: bad "
3767 "authentication data: %.100s", data);
3768 if (i % 4 == 0)
3769 rnd = arc4random();
3770 x11_saved_data[i] = value;
3771 x11_fake_data[i] = rnd & 0xff;
3772 rnd >>= 8;
3773 }
3774 x11_saved_data_len = data_len;
3775 x11_fake_data_len = data_len;
Damien Miller95def091999-11-25 00:26:21 +11003776 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003777
Damien Miller95def091999-11-25 00:26:21 +11003778 /* Convert the fake data into hex. */
Damien Miller13390022005-07-06 09:44:19 +10003779 new_data = tohex(x11_fake_data, data_len);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003780
Damien Miller95def091999-11-25 00:26:21 +11003781 /* Send the request packet. */
Damien Millerbd483e72000-04-30 10:00:53 +10003782 if (compat20) {
Damien Miller6d7b4372011-06-23 08:31:57 +10003783 channel_request_start(client_session_id, "x11-req", want_reply);
Damien Millerbd483e72000-04-30 10:00:53 +10003784 packet_put_char(0); /* XXX bool single connection */
3785 } else {
3786 packet_start(SSH_CMSG_X11_REQUEST_FORWARDING);
3787 }
3788 packet_put_cstring(proto);
3789 packet_put_cstring(new_data);
Damien Miller95def091999-11-25 00:26:21 +11003790 packet_put_int(screen_number);
3791 packet_send();
3792 packet_write_wait();
Darren Tuckera627d422013-06-02 07:31:17 +10003793 free(new_data);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003794}
3795
Ben Lindstrome9c99912001-06-09 00:41:05 +00003796
3797/* -- agent forwarding */
3798
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003799/* Sends a message to the server to request authentication fd forwarding. */
3800
Damien Miller4af51302000-04-16 11:18:38 +10003801void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00003802auth_request_forwarding(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003803{
Damien Miller95def091999-11-25 00:26:21 +11003804 packet_start(SSH_CMSG_AGENT_REQUEST_FORWARDING);
3805 packet_send();
3806 packet_write_wait();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003807}