blob: 2319afd4b949254eccfefd8ab2796cd22d6ce24e [file] [log] [blame]
Damien Miller1781f532009-01-28 16:24:41 +11001/* $OpenBSD: channels.c,v 1.292 2009/01/14 01:38:06 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>
Damien Millerb8fe89c2006-07-24 14:51:00 +100056#include <netdb.h>
Damien Millera7a73ee2006-08-05 11:37:59 +100057#include <stdio.h>
Damien Millere7a1e5c2006-08-05 11:34:19 +100058#include <stdlib.h>
Damien Millere3476ed2006-07-24 14:13:33 +100059#include <string.h>
Damien Miller99bd21e2006-03-15 11:11:28 +110060#include <termios.h>
Damien Millere6b3b612006-07-24 14:01:23 +100061#include <unistd.h>
Damien Millerd7834352006-08-05 12:39:39 +100062#include <stdarg.h>
Damien Millerd4a8b7e1999-10-27 13:42:43 +100063
Damien Millerb84886b2008-05-19 15:05:07 +100064#include "openbsd-compat/sys-queue.h"
Damien Millerd7834352006-08-05 12:39:39 +100065#include "xmalloc.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100066#include "ssh.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000067#include "ssh1.h"
68#include "ssh2.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100069#include "packet.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000070#include "log.h"
71#include "misc.h"
Damien Millerd7834352006-08-05 12:39:39 +100072#include "buffer.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100073#include "channels.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100074#include "compat.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000075#include "canohost.h"
Damien Miller994cf142000-07-21 10:19:44 +100076#include "key.h"
77#include "authfd.h"
Damien Miller3afe3752001-12-21 12:39:51 +110078#include "pathnames.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100079
Ben Lindstrome9c99912001-06-09 00:41:05 +000080/* -- channel core */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100081
Damien Miller5428f641999-11-25 11:54:57 +110082/*
83 * Pointer to an array containing all allocated channels. The array is
84 * dynamically extended as needed.
85 */
Ben Lindstrom99c73b32001-05-05 04:09:47 +000086static Channel **channels = NULL;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100087
Damien Miller5428f641999-11-25 11:54:57 +110088/*
89 * Size of the channel array. All slots of the array must always be
Ben Lindstrom99c73b32001-05-05 04:09:47 +000090 * initialized (at least the type field); unused slots set to NULL
Damien Miller5428f641999-11-25 11:54:57 +110091 */
Darren Tuckerc7a6fc42004-08-13 21:18:00 +100092static u_int channels_alloc = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100093
Damien Miller5428f641999-11-25 11:54:57 +110094/*
95 * Maximum file descriptor value used in any of the channels. This is
Ben Lindstrom99c73b32001-05-05 04:09:47 +000096 * updated in channel_new.
Damien Miller5428f641999-11-25 11:54:57 +110097 */
Damien Miller5e953212001-01-30 09:14:00 +110098static int channel_max_fd = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100099
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000100
Ben Lindstrome9c99912001-06-09 00:41:05 +0000101/* -- tcp forwarding */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000102
Damien Miller5428f641999-11-25 11:54:57 +1100103/*
104 * Data structure for storing which hosts are permitted for forward requests.
105 * The local sides of any remote forwards are stored in this array to prevent
106 * a corrupt remote server from accessing arbitrary TCP/IP ports on our local
107 * network (which might be behind a firewall).
108 */
Damien Miller95def091999-11-25 00:26:21 +1100109typedef struct {
Damien Millerb38eff82000-04-01 11:09:21 +1000110 char *host_to_connect; /* Connect to 'host'. */
111 u_short port_to_connect; /* Connect to 'port'. */
112 u_short listen_port; /* Remote side should listen port number. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000113} ForwardPermission;
114
Damien Miller9b439df2006-07-24 14:04:00 +1000115/* List of all permitted host/port pairs to connect by the user. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000116static ForwardPermission permitted_opens[SSH_MAX_FORWARDS_PER_DIRECTION];
Ben Lindstrome9c99912001-06-09 00:41:05 +0000117
Damien Miller9b439df2006-07-24 14:04:00 +1000118/* List of all permitted host/port pairs to connect by the admin. */
119static ForwardPermission permitted_adm_opens[SSH_MAX_FORWARDS_PER_DIRECTION];
120
121/* Number of permitted host/port pairs in the array permitted by the user. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000122static int num_permitted_opens = 0;
Damien Miller9b439df2006-07-24 14:04:00 +1000123
124/* Number of permitted host/port pair in the array permitted by the admin. */
125static int num_adm_permitted_opens = 0;
126
Damien Miller5428f641999-11-25 11:54:57 +1100127/*
128 * If this is true, all opens are permitted. This is the case on the server
129 * on which we have to trust the client anyway, and the user could do
130 * anything after logging in anyway.
131 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000132static int all_opens_permitted = 0;
133
Ben Lindstrome9c99912001-06-09 00:41:05 +0000134
135/* -- X11 forwarding */
136
137/* Maximum number of fake X11 displays to try. */
138#define MAX_DISPLAYS 1000
139
Damien Miller13390022005-07-06 09:44:19 +1000140/* Saved X11 local (client) display. */
141static char *x11_saved_display = NULL;
142
Ben Lindstrome9c99912001-06-09 00:41:05 +0000143/* Saved X11 authentication protocol name. */
144static char *x11_saved_proto = NULL;
145
146/* Saved X11 authentication data. This is the real data. */
147static char *x11_saved_data = NULL;
148static u_int x11_saved_data_len = 0;
149
150/*
151 * Fake X11 authentication data. This is what the server will be sending us;
152 * we should replace any occurrences of this by the real data.
153 */
Damien Miller4ae97f12006-03-26 14:08:10 +1100154static u_char *x11_fake_data = NULL;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000155static u_int x11_fake_data_len;
156
157
158/* -- agent forwarding */
159
160#define NUM_SOCKS 10
161
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000162/* AF_UNSPEC or AF_INET or AF_INET6 */
Ben Lindstrom908afed2001-10-03 17:34:59 +0000163static int IPv4or6 = AF_UNSPEC;
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000164
Ben Lindstrome9c99912001-06-09 00:41:05 +0000165/* helper */
Ben Lindstrombba81212001-06-25 05:01:22 +0000166static void port_open_helper(Channel *c, char *rtype);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000167
Damien Millerbd740252008-05-19 15:37:09 +1000168/* non-blocking connect helpers */
169static int connect_next(struct channel_connect *);
170static void channel_connect_ctx_free(struct channel_connect *);
171
Ben Lindstrome9c99912001-06-09 00:41:05 +0000172/* -- channel core */
Damien Millerb38eff82000-04-01 11:09:21 +1000173
174Channel *
Damien Millerd47c62a2005-12-13 19:33:57 +1100175channel_by_id(int id)
Damien Millerb38eff82000-04-01 11:09:21 +1000176{
177 Channel *c;
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000178
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000179 if (id < 0 || (u_int)id >= channels_alloc) {
Damien Millerd47c62a2005-12-13 19:33:57 +1100180 logit("channel_by_id: %d: bad id", id);
Damien Millerb38eff82000-04-01 11:09:21 +1000181 return NULL;
182 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000183 c = channels[id];
184 if (c == NULL) {
Damien Millerd47c62a2005-12-13 19:33:57 +1100185 logit("channel_by_id: %d: bad id: channel free", id);
Damien Millerb38eff82000-04-01 11:09:21 +1000186 return NULL;
187 }
188 return c;
189}
190
Damien Miller5428f641999-11-25 11:54:57 +1100191/*
Damien Millerd47c62a2005-12-13 19:33:57 +1100192 * Returns the channel if it is allowed to receive protocol messages.
193 * Private channels, like listening sockets, may not receive messages.
194 */
195Channel *
196channel_lookup(int id)
197{
198 Channel *c;
199
200 if ((c = channel_by_id(id)) == NULL)
201 return (NULL);
202
Damien Millerd62f2ca2006-03-26 13:57:41 +1100203 switch (c->type) {
Damien Millerd47c62a2005-12-13 19:33:57 +1100204 case SSH_CHANNEL_X11_OPEN:
205 case SSH_CHANNEL_LARVAL:
206 case SSH_CHANNEL_CONNECTING:
207 case SSH_CHANNEL_DYNAMIC:
208 case SSH_CHANNEL_OPENING:
209 case SSH_CHANNEL_OPEN:
210 case SSH_CHANNEL_INPUT_DRAINING:
211 case SSH_CHANNEL_OUTPUT_DRAINING:
212 return (c);
Damien Millerd47c62a2005-12-13 19:33:57 +1100213 }
214 logit("Non-public channel %d, type %d.", id, c->type);
215 return (NULL);
216}
217
218/*
Damien Millere247cc42000-05-07 12:03:14 +1000219 * Register filedescriptors for a channel, used when allocating a channel or
Damien Miller6f83b8e2000-05-02 09:23:45 +1000220 * when the channel consumer/producer is ready, e.g. shell exec'd
Damien Miller5428f641999-11-25 11:54:57 +1100221 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000222static void
Damien Miller69b69aa2000-10-28 14:19:58 +1100223channel_register_fds(Channel *c, int rfd, int wfd, int efd,
Darren Tuckered3cdc02008-06-16 23:29:18 +1000224 int extusage, int nonblock, int is_tty)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000225{
Damien Miller95def091999-11-25 00:26:21 +1100226 /* Update the maximum file descriptor value. */
Damien Miller5e953212001-01-30 09:14:00 +1100227 channel_max_fd = MAX(channel_max_fd, rfd);
228 channel_max_fd = MAX(channel_max_fd, wfd);
229 channel_max_fd = MAX(channel_max_fd, efd);
230
Damien Miller5428f641999-11-25 11:54:57 +1100231 /* XXX set close-on-exec -markus */
Damien Millere247cc42000-05-07 12:03:14 +1000232
Damien Miller6f83b8e2000-05-02 09:23:45 +1000233 c->rfd = rfd;
234 c->wfd = wfd;
235 c->sock = (rfd == wfd) ? rfd : -1;
Damien Miller0e220db2004-06-15 10:34:08 +1000236 c->ctl_fd = -1; /* XXX: set elsewhere */
Damien Miller6f83b8e2000-05-02 09:23:45 +1000237 c->efd = efd;
238 c->extended_usage = extusage;
Damien Miller69b69aa2000-10-28 14:19:58 +1100239
Darren Tuckered3cdc02008-06-16 23:29:18 +1000240 if ((c->isatty = is_tty) != 0)
Damien Millerfbdeece2003-09-02 22:52:31 +1000241 debug2("channel %d: rfd %d isatty", c->self, c->rfd);
Darren Tucker1a48aec2008-06-16 23:35:56 +1000242 c->wfd_isatty = is_tty || isatty(c->wfd);
Damien Miller79438cc2001-02-16 12:34:57 +1100243
Damien Miller69b69aa2000-10-28 14:19:58 +1100244 /* enable nonblocking mode */
245 if (nonblock) {
246 if (rfd != -1)
247 set_nonblock(rfd);
248 if (wfd != -1)
249 set_nonblock(wfd);
250 if (efd != -1)
251 set_nonblock(efd);
252 }
Damien Miller6f83b8e2000-05-02 09:23:45 +1000253}
254
255/*
256 * Allocate a new channel object and set its type and socket. This will cause
257 * remote_name to be freed.
258 */
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000259Channel *
Damien Miller6f83b8e2000-05-02 09:23:45 +1000260channel_new(char *ctype, int type, int rfd, int wfd, int efd,
Ben Lindstrom4fed2be2002-06-25 23:17:36 +0000261 u_int window, u_int maxpack, int extusage, char *remote_name, int nonblock)
Damien Miller6f83b8e2000-05-02 09:23:45 +1000262{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000263 int found;
264 u_int i;
Damien Miller6f83b8e2000-05-02 09:23:45 +1000265 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000266
Damien Miller95def091999-11-25 00:26:21 +1100267 /* Do initial allocation if this is the first call. */
268 if (channels_alloc == 0) {
269 channels_alloc = 10;
Damien Miller07d86be2006-03-26 14:19:21 +1100270 channels = xcalloc(channels_alloc, sizeof(Channel *));
Damien Miller95def091999-11-25 00:26:21 +1100271 for (i = 0; i < channels_alloc; i++)
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000272 channels[i] = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100273 }
274 /* Try to find a free slot where to put the new channel. */
275 for (found = -1, i = 0; i < channels_alloc; i++)
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000276 if (channels[i] == NULL) {
Damien Miller95def091999-11-25 00:26:21 +1100277 /* Found a free slot. */
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000278 found = (int)i;
Damien Miller95def091999-11-25 00:26:21 +1100279 break;
280 }
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000281 if (found < 0) {
Damien Miller5428f641999-11-25 11:54:57 +1100282 /* There are no free slots. Take last+1 slot and expand the array. */
Damien Miller95def091999-11-25 00:26:21 +1100283 found = channels_alloc;
Damien Miller9403aa22002-06-26 19:14:43 +1000284 if (channels_alloc > 10000)
285 fatal("channel_new: internal error: channels_alloc %d "
286 "too big.", channels_alloc);
Damien Miller36812092006-03-26 14:22:47 +1100287 channels = xrealloc(channels, channels_alloc + 10,
288 sizeof(Channel *));
Damien Miller5efcecc2003-09-17 07:31:14 +1000289 channels_alloc += 10;
Damien Millerd3444942000-09-30 14:20:03 +1100290 debug2("channel: expanding %d", channels_alloc);
Damien Miller95def091999-11-25 00:26:21 +1100291 for (i = found; i < channels_alloc; i++)
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000292 channels[i] = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100293 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000294 /* Initialize and return new channel. */
Damien Miller07d86be2006-03-26 14:19:21 +1100295 c = channels[found] = xcalloc(1, sizeof(Channel));
Damien Miller95def091999-11-25 00:26:21 +1100296 buffer_init(&c->input);
297 buffer_init(&c->output);
Damien Millerb38eff82000-04-01 11:09:21 +1000298 buffer_init(&c->extended);
Damien Miller5144df92002-01-22 23:28:45 +1100299 c->ostate = CHAN_OUTPUT_OPEN;
300 c->istate = CHAN_INPUT_OPEN;
301 c->flags = 0;
Damien Millerd310d512008-06-16 07:59:23 +1000302 channel_register_fds(c, rfd, wfd, efd, extusage, nonblock, 0);
Damien Miller95def091999-11-25 00:26:21 +1100303 c->self = found;
304 c->type = type;
Damien Millerb38eff82000-04-01 11:09:21 +1000305 c->ctype = ctype;
Damien Millerbd483e72000-04-30 10:00:53 +1000306 c->local_window = window;
307 c->local_window_max = window;
308 c->local_consumed = 0;
309 c->local_maxpacket = maxpack;
Damien Miller95def091999-11-25 00:26:21 +1100310 c->remote_id = -1;
Damien Millerb1ca8bb2003-05-14 13:45:42 +1000311 c->remote_name = xstrdup(remote_name);
Damien Millerb38eff82000-04-01 11:09:21 +1000312 c->remote_window = 0;
313 c->remote_maxpacket = 0;
Ben Lindstrom944c4f02001-09-18 05:51:13 +0000314 c->force_drain = 0;
Damien Millere7378562001-12-21 14:58:35 +1100315 c->single_connection = 0;
Ben Lindstrom809744e2001-07-04 05:26:06 +0000316 c->detach_user = NULL;
Damien Miller39eda6e2005-11-05 14:52:50 +1100317 c->detach_close = 0;
Damien Millerb84886b2008-05-19 15:05:07 +1000318 c->open_confirm = NULL;
319 c->open_confirm_ctx = NULL;
Damien Millerad833b32000-08-23 10:46:23 +1000320 c->input_filter = NULL;
Damien Miller077b2382005-12-31 16:22:32 +1100321 c->output_filter = NULL;
Darren Tucker84c56f52008-06-13 04:55:46 +1000322 c->filter_ctx = NULL;
323 c->filter_cleanup = NULL;
Damien Millerb84886b2008-05-19 15:05:07 +1000324 TAILQ_INIT(&c->status_confirms);
Damien Miller95def091999-11-25 00:26:21 +1100325 debug("channel %d: new [%s]", found, remote_name);
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000326 return c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000327}
Damien Miller6f83b8e2000-05-02 09:23:45 +1000328
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000329static int
330channel_find_maxfd(void)
331{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000332 u_int i;
333 int max = 0;
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000334 Channel *c;
335
336 for (i = 0; i < channels_alloc; i++) {
337 c = channels[i];
338 if (c != NULL) {
339 max = MAX(max, c->rfd);
340 max = MAX(max, c->wfd);
341 max = MAX(max, c->efd);
342 }
343 }
344 return max;
345}
346
347int
348channel_close_fd(int *fdp)
349{
350 int ret = 0, fd = *fdp;
351
352 if (fd != -1) {
353 ret = close(fd);
354 *fdp = -1;
355 if (fd == channel_max_fd)
356 channel_max_fd = channel_find_maxfd();
357 }
358 return ret;
359}
360
Damien Miller6f83b8e2000-05-02 09:23:45 +1000361/* Close all channel fd/socket. */
Ben Lindstrombba81212001-06-25 05:01:22 +0000362static void
Damien Miller6f83b8e2000-05-02 09:23:45 +1000363channel_close_fds(Channel *c)
364{
Damien Miller0e220db2004-06-15 10:34:08 +1000365 debug3("channel %d: close_fds r %d w %d e %d c %d",
366 c->self, c->rfd, c->wfd, c->efd, c->ctl_fd);
Ben Lindstromc0dee1a2001-06-05 20:52:50 +0000367
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000368 channel_close_fd(&c->sock);
Damien Miller0e220db2004-06-15 10:34:08 +1000369 channel_close_fd(&c->ctl_fd);
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000370 channel_close_fd(&c->rfd);
371 channel_close_fd(&c->wfd);
372 channel_close_fd(&c->efd);
Damien Miller6f83b8e2000-05-02 09:23:45 +1000373}
374
375/* Free the channel and close its fd/socket. */
Damien Miller4af51302000-04-16 11:18:38 +1000376void
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000377channel_free(Channel *c)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000378{
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000379 char *s;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000380 u_int i, n;
Damien Millerb84886b2008-05-19 15:05:07 +1000381 struct channel_confirm *cc;
Ben Lindstromc0dee1a2001-06-05 20:52:50 +0000382
383 for (n = 0, i = 0; i < channels_alloc; i++)
384 if (channels[i])
385 n++;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000386 debug("channel %d: free: %s, nchannels %u", c->self,
Ben Lindstromc0dee1a2001-06-05 20:52:50 +0000387 c->remote_name ? c->remote_name : "???", n);
Ben Lindstrom6c3ae2b2000-12-30 03:25:14 +0000388
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000389 s = channel_open_message();
Damien Millerfbdeece2003-09-02 22:52:31 +1000390 debug3("channel %d: status: %s", c->self, s);
Ben Lindstrom6c3ae2b2000-12-30 03:25:14 +0000391 xfree(s);
392
Damien Miller6f83b8e2000-05-02 09:23:45 +1000393 if (c->sock != -1)
Damien Millerb38eff82000-04-01 11:09:21 +1000394 shutdown(c->sock, SHUT_RDWR);
Damien Miller0e220db2004-06-15 10:34:08 +1000395 if (c->ctl_fd != -1)
396 shutdown(c->ctl_fd, SHUT_RDWR);
Damien Miller6f83b8e2000-05-02 09:23:45 +1000397 channel_close_fds(c);
Damien Millerb38eff82000-04-01 11:09:21 +1000398 buffer_free(&c->input);
399 buffer_free(&c->output);
400 buffer_free(&c->extended);
Damien Millerb38eff82000-04-01 11:09:21 +1000401 if (c->remote_name) {
402 xfree(c->remote_name);
403 c->remote_name = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100404 }
Damien Millerb84886b2008-05-19 15:05:07 +1000405 while ((cc = TAILQ_FIRST(&c->status_confirms)) != NULL) {
406 if (cc->abandon_cb != NULL)
407 cc->abandon_cb(c, cc->ctx);
408 TAILQ_REMOVE(&c->status_confirms, cc, entry);
409 bzero(cc, sizeof(*cc));
410 xfree(cc);
411 }
Darren Tucker84c56f52008-06-13 04:55:46 +1000412 if (c->filter_cleanup != NULL && c->filter_ctx != NULL)
413 c->filter_cleanup(c->self, c->filter_ctx);
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000414 channels[c->self] = NULL;
415 xfree(c);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000416}
417
Ben Lindstrome9c99912001-06-09 00:41:05 +0000418void
Ben Lindstrom601e4362001-06-21 03:19:23 +0000419channel_free_all(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000420{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000421 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000422
Ben Lindstrom601e4362001-06-21 03:19:23 +0000423 for (i = 0; i < channels_alloc; i++)
424 if (channels[i] != NULL)
425 channel_free(channels[i]);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000426}
427
428/*
429 * Closes the sockets/fds of all channels. This is used to close extra file
430 * descriptors after a fork.
431 */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000432void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000433channel_close_all(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000434{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000435 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000436
437 for (i = 0; i < channels_alloc; i++)
438 if (channels[i] != NULL)
439 channel_close_fds(channels[i]);
440}
441
442/*
Ben Lindstrom809744e2001-07-04 05:26:06 +0000443 * Stop listening to channels.
444 */
Ben Lindstrom809744e2001-07-04 05:26:06 +0000445void
446channel_stop_listening(void)
447{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000448 u_int i;
Ben Lindstrom809744e2001-07-04 05:26:06 +0000449 Channel *c;
450
451 for (i = 0; i < channels_alloc; i++) {
452 c = channels[i];
453 if (c != NULL) {
454 switch (c->type) {
455 case SSH_CHANNEL_AUTH_SOCKET:
456 case SSH_CHANNEL_PORT_LISTENER:
457 case SSH_CHANNEL_RPORT_LISTENER:
458 case SSH_CHANNEL_X11_LISTENER:
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000459 channel_close_fd(&c->sock);
Ben Lindstrom809744e2001-07-04 05:26:06 +0000460 channel_free(c);
461 break;
462 }
463 }
464 }
465}
466
467/*
Ben Lindstrome9c99912001-06-09 00:41:05 +0000468 * Returns true if no channel has too much buffered data, and false if one or
469 * more channel is overfull.
470 */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000471int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000472channel_not_very_much_buffered_data(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000473{
474 u_int i;
475 Channel *c;
476
477 for (i = 0; i < channels_alloc; i++) {
478 c = channels[i];
479 if (c != NULL && c->type == SSH_CHANNEL_OPEN) {
Damien Milleraf5f2e62001-10-10 15:01:16 +1000480#if 0
481 if (!compat20 &&
482 buffer_len(&c->input) > packet_get_maxsize()) {
Damien Miller275295e2003-01-08 14:04:09 +1100483 debug2("channel %d: big input buffer %d",
Ben Lindstrome9c99912001-06-09 00:41:05 +0000484 c->self, buffer_len(&c->input));
485 return 0;
486 }
Damien Milleraf5f2e62001-10-10 15:01:16 +1000487#endif
Ben Lindstrome9c99912001-06-09 00:41:05 +0000488 if (buffer_len(&c->output) > packet_get_maxsize()) {
Darren Tucker502d3842003-06-28 12:38:01 +1000489 debug2("channel %d: big output buffer %u > %u",
Damien Milleraf5f2e62001-10-10 15:01:16 +1000490 c->self, buffer_len(&c->output),
491 packet_get_maxsize());
Ben Lindstrome9c99912001-06-09 00:41:05 +0000492 return 0;
493 }
494 }
495 }
496 return 1;
497}
498
499/* Returns true if any channel is still open. */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000500int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000501channel_still_open(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000502{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000503 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000504 Channel *c;
505
506 for (i = 0; i < channels_alloc; i++) {
507 c = channels[i];
508 if (c == NULL)
509 continue;
510 switch (c->type) {
511 case SSH_CHANNEL_X11_LISTENER:
512 case SSH_CHANNEL_PORT_LISTENER:
513 case SSH_CHANNEL_RPORT_LISTENER:
514 case SSH_CHANNEL_CLOSED:
515 case SSH_CHANNEL_AUTH_SOCKET:
516 case SSH_CHANNEL_DYNAMIC:
517 case SSH_CHANNEL_CONNECTING:
518 case SSH_CHANNEL_ZOMBIE:
519 continue;
520 case SSH_CHANNEL_LARVAL:
521 if (!compat20)
522 fatal("cannot happen: SSH_CHANNEL_LARVAL");
523 continue;
524 case SSH_CHANNEL_OPENING:
525 case SSH_CHANNEL_OPEN:
526 case SSH_CHANNEL_X11_OPEN:
527 return 1;
528 case SSH_CHANNEL_INPUT_DRAINING:
529 case SSH_CHANNEL_OUTPUT_DRAINING:
530 if (!compat13)
531 fatal("cannot happen: OUT_DRAIN");
532 return 1;
533 default:
534 fatal("channel_still_open: bad channel type %d", c->type);
535 /* NOTREACHED */
536 }
537 }
538 return 0;
539}
540
541/* Returns the id of an open channel suitable for keepaliving */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000542int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000543channel_find_open(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000544{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000545 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000546 Channel *c;
547
548 for (i = 0; i < channels_alloc; i++) {
549 c = channels[i];
Damien Miller3bbd8782004-06-18 22:23:22 +1000550 if (c == NULL || c->remote_id < 0)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000551 continue;
552 switch (c->type) {
553 case SSH_CHANNEL_CLOSED:
554 case SSH_CHANNEL_DYNAMIC:
555 case SSH_CHANNEL_X11_LISTENER:
556 case SSH_CHANNEL_PORT_LISTENER:
557 case SSH_CHANNEL_RPORT_LISTENER:
558 case SSH_CHANNEL_OPENING:
559 case SSH_CHANNEL_CONNECTING:
560 case SSH_CHANNEL_ZOMBIE:
561 continue;
562 case SSH_CHANNEL_LARVAL:
563 case SSH_CHANNEL_AUTH_SOCKET:
564 case SSH_CHANNEL_OPEN:
565 case SSH_CHANNEL_X11_OPEN:
566 return i;
567 case SSH_CHANNEL_INPUT_DRAINING:
568 case SSH_CHANNEL_OUTPUT_DRAINING:
569 if (!compat13)
570 fatal("cannot happen: OUT_DRAIN");
571 return i;
572 default:
573 fatal("channel_find_open: bad channel type %d", c->type);
574 /* NOTREACHED */
575 }
576 }
577 return -1;
578}
579
580
581/*
582 * Returns a message describing the currently open forwarded connections,
583 * suitable for sending to the client. The message contains crlf pairs for
584 * newlines.
585 */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000586char *
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000587channel_open_message(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000588{
589 Buffer buffer;
590 Channel *c;
591 char buf[1024], *cp;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000592 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000593
594 buffer_init(&buffer);
595 snprintf(buf, sizeof buf, "The following connections are open:\r\n");
596 buffer_append(&buffer, buf, strlen(buf));
597 for (i = 0; i < channels_alloc; i++) {
598 c = channels[i];
599 if (c == NULL)
600 continue;
601 switch (c->type) {
602 case SSH_CHANNEL_X11_LISTENER:
603 case SSH_CHANNEL_PORT_LISTENER:
604 case SSH_CHANNEL_RPORT_LISTENER:
605 case SSH_CHANNEL_CLOSED:
606 case SSH_CHANNEL_AUTH_SOCKET:
607 case SSH_CHANNEL_ZOMBIE:
608 continue;
609 case SSH_CHANNEL_LARVAL:
610 case SSH_CHANNEL_OPENING:
611 case SSH_CHANNEL_CONNECTING:
612 case SSH_CHANNEL_DYNAMIC:
613 case SSH_CHANNEL_OPEN:
614 case SSH_CHANNEL_X11_OPEN:
615 case SSH_CHANNEL_INPUT_DRAINING:
616 case SSH_CHANNEL_OUTPUT_DRAINING:
Damien Miller0e220db2004-06-15 10:34:08 +1000617 snprintf(buf, sizeof buf,
618 " #%d %.300s (t%d r%d i%d/%d o%d/%d fd %d/%d cfd %d)\r\n",
Ben Lindstrome9c99912001-06-09 00:41:05 +0000619 c->self, c->remote_name,
620 c->type, c->remote_id,
621 c->istate, buffer_len(&c->input),
622 c->ostate, buffer_len(&c->output),
Damien Miller0e220db2004-06-15 10:34:08 +1000623 c->rfd, c->wfd, c->ctl_fd);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000624 buffer_append(&buffer, buf, strlen(buf));
625 continue;
626 default:
627 fatal("channel_open_message: bad channel type %d", c->type);
628 /* NOTREACHED */
629 }
630 }
631 buffer_append(&buffer, "\0", 1);
632 cp = xstrdup(buffer_ptr(&buffer));
633 buffer_free(&buffer);
634 return cp;
635}
636
637void
638channel_send_open(int id)
639{
640 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000641
Ben Lindstrome9c99912001-06-09 00:41:05 +0000642 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000643 logit("channel_send_open: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000644 return;
645 }
Ben Lindstrom1d568f92002-12-23 02:44:36 +0000646 debug2("channel %d: send open", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000647 packet_start(SSH2_MSG_CHANNEL_OPEN);
648 packet_put_cstring(c->ctype);
649 packet_put_int(c->self);
650 packet_put_int(c->local_window);
651 packet_put_int(c->local_maxpacket);
652 packet_send();
653}
654
655void
Ben Lindstrom1d568f92002-12-23 02:44:36 +0000656channel_request_start(int id, char *service, int wantconfirm)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000657{
Ben Lindstrom1d568f92002-12-23 02:44:36 +0000658 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000659
Ben Lindstrome9c99912001-06-09 00:41:05 +0000660 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000661 logit("channel_request_start: %d: unknown channel id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000662 return;
663 }
Damien Miller0e220db2004-06-15 10:34:08 +1000664 debug2("channel %d: request %s confirm %d", id, service, wantconfirm);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000665 packet_start(SSH2_MSG_CHANNEL_REQUEST);
666 packet_put_int(c->remote_id);
667 packet_put_cstring(service);
668 packet_put_char(wantconfirm);
669}
Damien Miller4f7becb2006-03-26 14:10:14 +1100670
Ben Lindstrome9c99912001-06-09 00:41:05 +0000671void
Damien Millerb84886b2008-05-19 15:05:07 +1000672channel_register_status_confirm(int id, channel_confirm_cb *cb,
673 channel_confirm_abandon_cb *abandon_cb, void *ctx)
674{
675 struct channel_confirm *cc;
676 Channel *c;
677
678 if ((c = channel_lookup(id)) == NULL)
679 fatal("channel_register_expect: %d: bad id", id);
680
681 cc = xmalloc(sizeof(*cc));
682 cc->cb = cb;
683 cc->abandon_cb = abandon_cb;
684 cc->ctx = ctx;
685 TAILQ_INSERT_TAIL(&c->status_confirms, cc, entry);
686}
687
688void
689channel_register_open_confirm(int id, channel_callback_fn *fn, void *ctx)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000690{
691 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000692
Ben Lindstrome9c99912001-06-09 00:41:05 +0000693 if (c == NULL) {
Damien Millera0094332008-11-03 19:26:35 +1100694 logit("channel_register_open_confirm: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000695 return;
696 }
Damien Millerb84886b2008-05-19 15:05:07 +1000697 c->open_confirm = fn;
698 c->open_confirm_ctx = ctx;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000699}
Damien Miller4f7becb2006-03-26 14:10:14 +1100700
Ben Lindstrome9c99912001-06-09 00:41:05 +0000701void
Damien Miller39eda6e2005-11-05 14:52:50 +1100702channel_register_cleanup(int id, channel_callback_fn *fn, int do_close)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000703{
Damien Millerd47c62a2005-12-13 19:33:57 +1100704 Channel *c = channel_by_id(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000705
Ben Lindstrome9c99912001-06-09 00:41:05 +0000706 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000707 logit("channel_register_cleanup: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000708 return;
709 }
Ben Lindstrom809744e2001-07-04 05:26:06 +0000710 c->detach_user = fn;
Damien Miller39eda6e2005-11-05 14:52:50 +1100711 c->detach_close = do_close;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000712}
Damien Miller4f7becb2006-03-26 14:10:14 +1100713
Ben Lindstrome9c99912001-06-09 00:41:05 +0000714void
715channel_cancel_cleanup(int id)
716{
Damien Millerd47c62a2005-12-13 19:33:57 +1100717 Channel *c = channel_by_id(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000718
Ben Lindstrome9c99912001-06-09 00:41:05 +0000719 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000720 logit("channel_cancel_cleanup: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000721 return;
722 }
Ben Lindstrom809744e2001-07-04 05:26:06 +0000723 c->detach_user = NULL;
Damien Miller39eda6e2005-11-05 14:52:50 +1100724 c->detach_close = 0;
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 Miller077b2382005-12-31 16:22:32 +1100728channel_register_filter(int id, channel_infilter_fn *ifn,
Darren Tucker84c56f52008-06-13 04:55:46 +1000729 channel_outfilter_fn *ofn, channel_filter_cleanup_fn *cfn, void *ctx)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000730{
731 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000732
Ben Lindstrome9c99912001-06-09 00:41:05 +0000733 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000734 logit("channel_register_filter: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000735 return;
736 }
Damien Miller077b2382005-12-31 16:22:32 +1100737 c->input_filter = ifn;
738 c->output_filter = ofn;
Darren Tucker2fb66ca2008-06-13 04:49:33 +1000739 c->filter_ctx = ctx;
Darren Tucker84c56f52008-06-13 04:55:46 +1000740 c->filter_cleanup = cfn;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000741}
742
743void
744channel_set_fds(int id, int rfd, int wfd, int efd,
Darren Tuckered3cdc02008-06-16 23:29:18 +1000745 int extusage, int nonblock, int is_tty, u_int window_max)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000746{
747 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000748
Ben Lindstrome9c99912001-06-09 00:41:05 +0000749 if (c == NULL || c->type != SSH_CHANNEL_LARVAL)
750 fatal("channel_activate for non-larval channel %d.", id);
Darren Tuckered3cdc02008-06-16 23:29:18 +1000751 channel_register_fds(c, rfd, wfd, efd, extusage, nonblock, is_tty);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000752 c->type = SSH_CHANNEL_OPEN;
Damien Miller2aa0c192002-02-19 15:20:08 +1100753 c->local_window = c->local_window_max = window_max;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000754 packet_start(SSH2_MSG_CHANNEL_WINDOW_ADJUST);
755 packet_put_int(c->remote_id);
756 packet_put_int(c->local_window);
757 packet_send();
758}
759
Damien Miller5428f641999-11-25 11:54:57 +1100760/*
Damien Millerb38eff82000-04-01 11:09:21 +1000761 * 'channel_pre*' are called just before select() to add any bits relevant to
762 * channels in the select bitmasks.
Damien Miller5428f641999-11-25 11:54:57 +1100763 */
Damien Millerb38eff82000-04-01 11:09:21 +1000764/*
765 * 'channel_post*': perform any appropriate operations for channels which
766 * have events pending.
767 */
Damien Millerd62f2ca2006-03-26 13:57:41 +1100768typedef void chan_fn(Channel *c, fd_set *readset, fd_set *writeset);
Damien Millerb38eff82000-04-01 11:09:21 +1000769chan_fn *channel_pre[SSH_CHANNEL_MAX_TYPE];
770chan_fn *channel_post[SSH_CHANNEL_MAX_TYPE];
771
Damien Miller8473dd82006-07-24 14:08:32 +1000772/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +0000773static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100774channel_pre_listener(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000775{
776 FD_SET(c->sock, readset);
777}
778
Damien Miller8473dd82006-07-24 14:08:32 +1000779/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +0000780static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100781channel_pre_connecting(Channel *c, fd_set *readset, fd_set *writeset)
Ben Lindstrom7ad97102000-12-06 01:42:49 +0000782{
783 debug3("channel %d: waiting for connection", c->self);
784 FD_SET(c->sock, writeset);
785}
786
Ben Lindstrombba81212001-06-25 05:01:22 +0000787static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100788channel_pre_open_13(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000789{
790 if (buffer_len(&c->input) < packet_get_maxsize())
791 FD_SET(c->sock, readset);
792 if (buffer_len(&c->output) > 0)
793 FD_SET(c->sock, writeset);
794}
795
Ben Lindstrombba81212001-06-25 05:01:22 +0000796static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100797channel_pre_open(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000798{
Damien Millerde6987c2002-01-22 23:20:40 +1100799 u_int limit = compat20 ? c->remote_window : packet_get_maxsize();
Damien Millerb38eff82000-04-01 11:09:21 +1000800
Damien Miller33b13562000-04-04 14:38:59 +1000801 if (c->istate == CHAN_INPUT_OPEN &&
Damien Millerde6987c2002-01-22 23:20:40 +1100802 limit > 0 &&
Damien Miller499a0d52006-04-23 12:06:03 +1000803 buffer_len(&c->input) < limit &&
804 buffer_check_alloc(&c->input, CHAN_RBUF))
Damien Miller33b13562000-04-04 14:38:59 +1000805 FD_SET(c->rfd, readset);
806 if (c->ostate == CHAN_OUTPUT_OPEN ||
807 c->ostate == CHAN_OUTPUT_WAIT_DRAIN) {
808 if (buffer_len(&c->output) > 0) {
809 FD_SET(c->wfd, writeset);
810 } else if (c->ostate == CHAN_OUTPUT_WAIT_DRAIN) {
Ben Lindstromcf159442002-03-26 03:26:24 +0000811 if (CHANNEL_EFD_OUTPUT_ACTIVE(c))
Damien Miller0dc1bef2005-07-17 17:22:45 +1000812 debug2("channel %d: obuf_empty delayed efd %d/(%d)",
813 c->self, c->efd, buffer_len(&c->extended));
Ben Lindstromcf159442002-03-26 03:26:24 +0000814 else
815 chan_obuf_empty(c);
Damien Miller33b13562000-04-04 14:38:59 +1000816 }
817 }
818 /** XXX check close conditions, too */
Damien Millerd654dd22008-05-19 16:05:41 +1000819 if (compat20 && c->efd != -1 &&
820 !(c->istate == CHAN_INPUT_CLOSED && c->ostate == CHAN_OUTPUT_CLOSED)) {
Damien Miller33b13562000-04-04 14:38:59 +1000821 if (c->extended_usage == CHAN_EXTENDED_WRITE &&
822 buffer_len(&c->extended) > 0)
823 FD_SET(c->efd, writeset);
Ben Lindstromcf159442002-03-26 03:26:24 +0000824 else if (!(c->flags & CHAN_EOF_SENT) &&
825 c->extended_usage == CHAN_EXTENDED_READ &&
Damien Miller33b13562000-04-04 14:38:59 +1000826 buffer_len(&c->extended) < c->remote_window)
827 FD_SET(c->efd, readset);
828 }
Damien Miller0e220db2004-06-15 10:34:08 +1000829 /* XXX: What about efd? races? */
Darren Tuckerfc959702004-07-17 16:12:08 +1000830 if (compat20 && c->ctl_fd != -1 &&
Damien Miller0e220db2004-06-15 10:34:08 +1000831 c->istate == CHAN_INPUT_OPEN && c->ostate == CHAN_OUTPUT_OPEN)
832 FD_SET(c->ctl_fd, readset);
Damien Miller33b13562000-04-04 14:38:59 +1000833}
834
Damien Miller8473dd82006-07-24 14:08:32 +1000835/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +0000836static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100837channel_pre_input_draining(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000838{
839 if (buffer_len(&c->input) == 0) {
840 packet_start(SSH_MSG_CHANNEL_CLOSE);
841 packet_put_int(c->remote_id);
842 packet_send();
843 c->type = SSH_CHANNEL_CLOSED;
Damien Millerfbdeece2003-09-02 22:52:31 +1000844 debug2("channel %d: closing after input drain.", c->self);
Damien Millerb38eff82000-04-01 11:09:21 +1000845 }
846}
847
Damien Miller8473dd82006-07-24 14:08:32 +1000848/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +0000849static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100850channel_pre_output_draining(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000851{
852 if (buffer_len(&c->output) == 0)
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000853 chan_mark_dead(c);
Damien Miller4af51302000-04-16 11:18:38 +1000854 else
Damien Millerb38eff82000-04-01 11:09:21 +1000855 FD_SET(c->sock, writeset);
856}
857
858/*
859 * This is a special state for X11 authentication spoofing. An opened X11
860 * connection (when authentication spoofing is being done) remains in this
861 * state until the first packet has been completely read. The authentication
862 * data in that packet is then substituted by the real data if it matches the
863 * fake data, and the channel is put into normal mode.
Damien Millerbd483e72000-04-30 10:00:53 +1000864 * XXX All this happens at the client side.
Ben Lindstrome9c99912001-06-09 00:41:05 +0000865 * Returns: 0 = need more data, -1 = wrong cookie, 1 = ok
Damien Millerb38eff82000-04-01 11:09:21 +1000866 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000867static int
Ben Lindstrome9c99912001-06-09 00:41:05 +0000868x11_open_helper(Buffer *b)
Damien Millerb38eff82000-04-01 11:09:21 +1000869{
Ben Lindstrom46c16222000-12-22 01:43:59 +0000870 u_char *ucp;
871 u_int proto_len, data_len;
Damien Millerb38eff82000-04-01 11:09:21 +1000872
873 /* Check if the fixed size part of the packet is in buffer. */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000874 if (buffer_len(b) < 12)
Damien Millerb38eff82000-04-01 11:09:21 +1000875 return 0;
876
877 /* Parse the lengths of variable-length fields. */
Damien Miller708d21c2002-01-22 23:18:15 +1100878 ucp = buffer_ptr(b);
Damien Millerb38eff82000-04-01 11:09:21 +1000879 if (ucp[0] == 0x42) { /* Byte order MSB first. */
880 proto_len = 256 * ucp[6] + ucp[7];
881 data_len = 256 * ucp[8] + ucp[9];
882 } else if (ucp[0] == 0x6c) { /* Byte order LSB first. */
883 proto_len = ucp[6] + 256 * ucp[7];
884 data_len = ucp[8] + 256 * ucp[9];
885 } else {
Damien Millerfbdeece2003-09-02 22:52:31 +1000886 debug2("Initial X11 packet contains bad byte order byte: 0x%x",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100887 ucp[0]);
Damien Millerb38eff82000-04-01 11:09:21 +1000888 return -1;
889 }
890
891 /* Check if the whole packet is in buffer. */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000892 if (buffer_len(b) <
Damien Millerb38eff82000-04-01 11:09:21 +1000893 12 + ((proto_len + 3) & ~3) + ((data_len + 3) & ~3))
894 return 0;
895
896 /* Check if authentication protocol matches. */
897 if (proto_len != strlen(x11_saved_proto) ||
898 memcmp(ucp + 12, x11_saved_proto, proto_len) != 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +1000899 debug2("X11 connection uses different authentication protocol.");
Damien Millerb38eff82000-04-01 11:09:21 +1000900 return -1;
901 }
902 /* Check if authentication data matches our fake data. */
903 if (data_len != x11_fake_data_len ||
904 memcmp(ucp + 12 + ((proto_len + 3) & ~3),
905 x11_fake_data, x11_fake_data_len) != 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +1000906 debug2("X11 auth data does not match fake data.");
Damien Millerb38eff82000-04-01 11:09:21 +1000907 return -1;
908 }
909 /* Check fake data length */
910 if (x11_fake_data_len != x11_saved_data_len) {
911 error("X11 fake_data_len %d != saved_data_len %d",
912 x11_fake_data_len, x11_saved_data_len);
913 return -1;
914 }
915 /*
916 * Received authentication protocol and data match
917 * our fake data. Substitute the fake data with real
918 * data.
919 */
920 memcpy(ucp + 12 + ((proto_len + 3) & ~3),
921 x11_saved_data, x11_saved_data_len);
922 return 1;
923}
924
Ben Lindstrombba81212001-06-25 05:01:22 +0000925static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100926channel_pre_x11_open_13(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000927{
Ben Lindstrome9c99912001-06-09 00:41:05 +0000928 int ret = x11_open_helper(&c->output);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000929
Damien Millerb38eff82000-04-01 11:09:21 +1000930 if (ret == 1) {
931 /* Start normal processing for the channel. */
932 c->type = SSH_CHANNEL_OPEN;
Damien Miller78928792000-04-12 20:17:38 +1000933 channel_pre_open_13(c, readset, writeset);
Damien Millerb38eff82000-04-01 11:09:21 +1000934 } else if (ret == -1) {
935 /*
936 * We have received an X11 connection that has bad
937 * authentication information.
938 */
Damien Miller996acd22003-04-09 20:59:48 +1000939 logit("X11 connection rejected because of wrong authentication.");
Damien Millerb38eff82000-04-01 11:09:21 +1000940 buffer_clear(&c->input);
941 buffer_clear(&c->output);
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000942 channel_close_fd(&c->sock);
Damien Millerb38eff82000-04-01 11:09:21 +1000943 c->sock = -1;
944 c->type = SSH_CHANNEL_CLOSED;
945 packet_start(SSH_MSG_CHANNEL_CLOSE);
946 packet_put_int(c->remote_id);
947 packet_send();
948 }
949}
950
Ben Lindstrombba81212001-06-25 05:01:22 +0000951static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100952channel_pre_x11_open(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000953{
Ben Lindstrome9c99912001-06-09 00:41:05 +0000954 int ret = x11_open_helper(&c->output);
Ben Lindstrom944c4f02001-09-18 05:51:13 +0000955
956 /* c->force_drain = 1; */
957
Damien Millerb38eff82000-04-01 11:09:21 +1000958 if (ret == 1) {
959 c->type = SSH_CHANNEL_OPEN;
Damien Millerde6987c2002-01-22 23:20:40 +1100960 channel_pre_open(c, readset, writeset);
Damien Millerb38eff82000-04-01 11:09:21 +1000961 } else if (ret == -1) {
Damien Miller996acd22003-04-09 20:59:48 +1000962 logit("X11 connection rejected because of wrong authentication.");
Damien Millerfbdeece2003-09-02 22:52:31 +1000963 debug2("X11 rejected %d i%d/o%d", c->self, c->istate, c->ostate);
Damien Millera90fc082002-01-22 23:19:38 +1100964 chan_read_failed(c);
965 buffer_clear(&c->input);
966 chan_ibuf_empty(c);
967 buffer_clear(&c->output);
968 /* for proto v1, the peer will send an IEOF */
969 if (compat20)
970 chan_write_failed(c);
971 else
972 c->type = SSH_CHANNEL_OPEN;
Damien Millerfbdeece2003-09-02 22:52:31 +1000973 debug2("X11 closed %d i%d/o%d", c->self, c->istate, c->ostate);
Damien Millerb38eff82000-04-01 11:09:21 +1000974 }
975}
976
Ben Lindstromb3921512001-04-11 15:57:50 +0000977/* try to decode a socks4 header */
Damien Miller8473dd82006-07-24 14:08:32 +1000978/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +0000979static int
Damien Millerd62f2ca2006-03-26 13:57:41 +1100980channel_decode_socks4(Channel *c, fd_set *readset, fd_set *writeset)
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000981{
Damien Millera10f5612002-09-12 09:49:15 +1000982 char *p, *host;
Damien Miller1781f532009-01-28 16:24:41 +1100983 u_int len, have, i, found, need;
Damien Miller9f0f5c62001-12-21 14:45:46 +1100984 char username[256];
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000985 struct {
986 u_int8_t version;
987 u_int8_t command;
988 u_int16_t dest_port;
Ben Lindstromb3921512001-04-11 15:57:50 +0000989 struct in_addr dest_addr;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000990 } s4_req, s4_rsp;
991
Ben Lindstromb3921512001-04-11 15:57:50 +0000992 debug2("channel %d: decode socks4", c->self);
Ben Lindstrom2b261b92001-04-17 18:14:34 +0000993
994 have = buffer_len(&c->input);
995 len = sizeof(s4_req);
996 if (have < len)
997 return 0;
998 p = buffer_ptr(&c->input);
Damien Miller1781f532009-01-28 16:24:41 +1100999
1000 need = 1;
1001 /* SOCKS4A uses an invalid IP address 0.0.0.x */
1002 if (p[4] == 0 && p[5] == 0 && p[6] == 0 && p[7] != 0) {
1003 debug2("channel %d: socks4a request", c->self);
1004 /* ... and needs an extra string (the hostname) */
1005 need = 2;
1006 }
1007 /* Check for terminating NUL on the string(s) */
Ben Lindstrom2b261b92001-04-17 18:14:34 +00001008 for (found = 0, i = len; i < have; i++) {
1009 if (p[i] == '\0') {
Damien Miller1781f532009-01-28 16:24:41 +11001010 found++;
1011 if (found == need)
1012 break;
Ben Lindstrom2b261b92001-04-17 18:14:34 +00001013 }
1014 if (i > 1024) {
1015 /* the peer is probably sending garbage */
1016 debug("channel %d: decode socks4: too long",
1017 c->self);
1018 return -1;
1019 }
1020 }
Damien Miller1781f532009-01-28 16:24:41 +11001021 if (found < need)
Ben Lindstrom2b261b92001-04-17 18:14:34 +00001022 return 0;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001023 buffer_get(&c->input, (char *)&s4_req.version, 1);
1024 buffer_get(&c->input, (char *)&s4_req.command, 1);
1025 buffer_get(&c->input, (char *)&s4_req.dest_port, 2);
Ben Lindstromb3921512001-04-11 15:57:50 +00001026 buffer_get(&c->input, (char *)&s4_req.dest_addr, 4);
Ben Lindstrom2b261b92001-04-17 18:14:34 +00001027 have = buffer_len(&c->input);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001028 p = buffer_ptr(&c->input);
1029 len = strlen(p);
Ben Lindstrom6fa9d102001-04-11 23:08:17 +00001030 debug2("channel %d: decode socks4: user %s/%d", c->self, p, len);
Damien Miller1781f532009-01-28 16:24:41 +11001031 len++; /* trailing '\0' */
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001032 if (len > have)
Ben Lindstromb3921512001-04-11 15:57:50 +00001033 fatal("channel %d: decode socks4: len %d > have %d",
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001034 c->self, len, have);
1035 strlcpy(username, p, sizeof(username));
1036 buffer_consume(&c->input, len);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001037
Damien Miller1781f532009-01-28 16:24:41 +11001038 if (need == 1) { /* SOCKS4: one string */
1039 host = inet_ntoa(s4_req.dest_addr);
1040 strlcpy(c->path, host, sizeof(c->path));
1041 } else { /* SOCKS4A: two strings */
1042 have = buffer_len(&c->input);
1043 p = buffer_ptr(&c->input);
1044 len = strlen(p);
1045 debug2("channel %d: decode socks4a: host %s/%d",
1046 c->self, p, len);
1047 len++; /* trailing '\0' */
1048 if (len > have)
1049 fatal("channel %d: decode socks4a: len %d > have %d",
1050 c->self, len, have);
1051 if (strlcpy(c->path, p, sizeof(c->path)) >= sizeof(c->path)) {
1052 error("channel %d: hostname \"%.100s\" too long",
1053 c->self, p);
1054 return -1;
1055 }
1056 buffer_consume(&c->input, len);
1057 }
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001058 c->host_port = ntohs(s4_req.dest_port);
Damien Miller9f0f5c62001-12-21 14:45:46 +11001059
Damien Millerfbdeece2003-09-02 22:52:31 +10001060 debug2("channel %d: dynamic request: socks4 host %s port %u command %u",
Damien Miller1781f532009-01-28 16:24:41 +11001061 c->self, c->path, c->host_port, s4_req.command);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001062
Ben Lindstromb3921512001-04-11 15:57:50 +00001063 if (s4_req.command != 1) {
Damien Miller1781f532009-01-28 16:24:41 +11001064 debug("channel %d: cannot handle: %s cn %d",
1065 c->self, need == 1 ? "SOCKS4" : "SOCKS4A", s4_req.command);
Ben Lindstromb3921512001-04-11 15:57:50 +00001066 return -1;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001067 }
Ben Lindstromb3921512001-04-11 15:57:50 +00001068 s4_rsp.version = 0; /* vn: 0 for reply */
1069 s4_rsp.command = 90; /* cd: req granted */
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001070 s4_rsp.dest_port = 0; /* ignored */
Ben Lindstromb3921512001-04-11 15:57:50 +00001071 s4_rsp.dest_addr.s_addr = INADDR_ANY; /* ignored */
Damien Millera0fdce92006-03-26 14:28:50 +11001072 buffer_append(&c->output, &s4_rsp, sizeof(s4_rsp));
Ben Lindstromb3921512001-04-11 15:57:50 +00001073 return 1;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001074}
1075
Darren Tucker46471c92003-07-03 13:55:19 +10001076/* try to decode a socks5 header */
1077#define SSH_SOCKS5_AUTHDONE 0x1000
1078#define SSH_SOCKS5_NOAUTH 0x00
1079#define SSH_SOCKS5_IPV4 0x01
1080#define SSH_SOCKS5_DOMAIN 0x03
1081#define SSH_SOCKS5_IPV6 0x04
1082#define SSH_SOCKS5_CONNECT 0x01
1083#define SSH_SOCKS5_SUCCESS 0x00
1084
Damien Miller8473dd82006-07-24 14:08:32 +10001085/* ARGSUSED */
Darren Tucker46471c92003-07-03 13:55:19 +10001086static int
Damien Millerd62f2ca2006-03-26 13:57:41 +11001087channel_decode_socks5(Channel *c, fd_set *readset, fd_set *writeset)
Darren Tucker46471c92003-07-03 13:55:19 +10001088{
1089 struct {
1090 u_int8_t version;
1091 u_int8_t command;
1092 u_int8_t reserved;
1093 u_int8_t atyp;
1094 } s5_req, s5_rsp;
1095 u_int16_t dest_port;
1096 u_char *p, dest_addr[255+1];
Damien Miller0f077072006-07-10 22:21:02 +10001097 u_int have, need, i, found, nmethods, addrlen, af;
Darren Tucker46471c92003-07-03 13:55:19 +10001098
1099 debug2("channel %d: decode socks5", c->self);
1100 p = buffer_ptr(&c->input);
1101 if (p[0] != 0x05)
1102 return -1;
1103 have = buffer_len(&c->input);
1104 if (!(c->flags & SSH_SOCKS5_AUTHDONE)) {
1105 /* format: ver | nmethods | methods */
Damien Millera8e06ce2003-11-21 23:48:55 +11001106 if (have < 2)
Darren Tucker46471c92003-07-03 13:55:19 +10001107 return 0;
1108 nmethods = p[1];
1109 if (have < nmethods + 2)
1110 return 0;
1111 /* look for method: "NO AUTHENTICATION REQUIRED" */
Damien Miller80163902007-01-05 16:30:16 +11001112 for (found = 0, i = 2; i < nmethods + 2; i++) {
Damien Miller4dec5d72006-08-05 11:38:40 +10001113 if (p[i] == SSH_SOCKS5_NOAUTH) {
Darren Tucker46471c92003-07-03 13:55:19 +10001114 found = 1;
1115 break;
1116 }
1117 }
1118 if (!found) {
1119 debug("channel %d: method SSH_SOCKS5_NOAUTH not found",
1120 c->self);
1121 return -1;
1122 }
1123 buffer_consume(&c->input, nmethods + 2);
1124 buffer_put_char(&c->output, 0x05); /* version */
1125 buffer_put_char(&c->output, SSH_SOCKS5_NOAUTH); /* method */
1126 FD_SET(c->sock, writeset);
1127 c->flags |= SSH_SOCKS5_AUTHDONE;
1128 debug2("channel %d: socks5 auth done", c->self);
1129 return 0; /* need more */
1130 }
1131 debug2("channel %d: socks5 post auth", c->self);
1132 if (have < sizeof(s5_req)+1)
1133 return 0; /* need more */
Damien Millere3b21a52006-03-26 14:29:06 +11001134 memcpy(&s5_req, p, sizeof(s5_req));
Darren Tucker46471c92003-07-03 13:55:19 +10001135 if (s5_req.version != 0x05 ||
1136 s5_req.command != SSH_SOCKS5_CONNECT ||
1137 s5_req.reserved != 0x00) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001138 debug2("channel %d: only socks5 connect supported", c->self);
Darren Tucker46471c92003-07-03 13:55:19 +10001139 return -1;
1140 }
Darren Tucker47eede72005-03-14 23:08:12 +11001141 switch (s5_req.atyp){
Darren Tucker46471c92003-07-03 13:55:19 +10001142 case SSH_SOCKS5_IPV4:
1143 addrlen = 4;
1144 af = AF_INET;
1145 break;
1146 case SSH_SOCKS5_DOMAIN:
1147 addrlen = p[sizeof(s5_req)];
1148 af = -1;
1149 break;
1150 case SSH_SOCKS5_IPV6:
1151 addrlen = 16;
1152 af = AF_INET6;
1153 break;
1154 default:
Damien Millerfbdeece2003-09-02 22:52:31 +10001155 debug2("channel %d: bad socks5 atyp %d", c->self, s5_req.atyp);
Darren Tucker46471c92003-07-03 13:55:19 +10001156 return -1;
1157 }
Damien Miller0f077072006-07-10 22:21:02 +10001158 need = sizeof(s5_req) + addrlen + 2;
1159 if (s5_req.atyp == SSH_SOCKS5_DOMAIN)
1160 need++;
1161 if (have < need)
Darren Tucker46471c92003-07-03 13:55:19 +10001162 return 0;
1163 buffer_consume(&c->input, sizeof(s5_req));
1164 if (s5_req.atyp == SSH_SOCKS5_DOMAIN)
1165 buffer_consume(&c->input, 1); /* host string length */
1166 buffer_get(&c->input, (char *)&dest_addr, addrlen);
1167 buffer_get(&c->input, (char *)&dest_port, 2);
1168 dest_addr[addrlen] = '\0';
1169 if (s5_req.atyp == SSH_SOCKS5_DOMAIN)
Darren Tucker1f8311c2004-05-13 16:39:33 +10001170 strlcpy(c->path, (char *)dest_addr, sizeof(c->path));
Darren Tucker46471c92003-07-03 13:55:19 +10001171 else if (inet_ntop(af, dest_addr, c->path, sizeof(c->path)) == NULL)
1172 return -1;
1173 c->host_port = ntohs(dest_port);
Damien Miller787b2ec2003-11-21 23:56:47 +11001174
Damien Millerfbdeece2003-09-02 22:52:31 +10001175 debug2("channel %d: dynamic request: socks5 host %s port %u command %u",
Darren Tucker46471c92003-07-03 13:55:19 +10001176 c->self, c->path, c->host_port, s5_req.command);
1177
1178 s5_rsp.version = 0x05;
1179 s5_rsp.command = SSH_SOCKS5_SUCCESS;
1180 s5_rsp.reserved = 0; /* ignored */
1181 s5_rsp.atyp = SSH_SOCKS5_IPV4;
1182 ((struct in_addr *)&dest_addr)->s_addr = INADDR_ANY;
1183 dest_port = 0; /* ignored */
1184
Damien Millera0fdce92006-03-26 14:28:50 +11001185 buffer_append(&c->output, &s5_rsp, sizeof(s5_rsp));
1186 buffer_append(&c->output, &dest_addr, sizeof(struct in_addr));
1187 buffer_append(&c->output, &dest_port, sizeof(dest_port));
Darren Tucker46471c92003-07-03 13:55:19 +10001188 return 1;
1189}
1190
Ben Lindstromb3921512001-04-11 15:57:50 +00001191/* dynamic port forwarding */
Ben Lindstrombba81212001-06-25 05:01:22 +00001192static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001193channel_pre_dynamic(Channel *c, fd_set *readset, fd_set *writeset)
Ben Lindstromb3921512001-04-11 15:57:50 +00001194{
1195 u_char *p;
Damien Millereccb9de2005-06-17 12:59:34 +10001196 u_int have;
1197 int ret;
Ben Lindstromb3921512001-04-11 15:57:50 +00001198
1199 have = buffer_len(&c->input);
Damien Miller4623a752001-10-10 15:03:58 +10001200 c->delayed = 0;
Ben Lindstromb3921512001-04-11 15:57:50 +00001201 debug2("channel %d: pre_dynamic: have %d", c->self, have);
Ben Lindstromc486d882001-04-11 16:08:34 +00001202 /* buffer_dump(&c->input); */
Ben Lindstromb3921512001-04-11 15:57:50 +00001203 /* check if the fixed size part of the packet is in buffer. */
Darren Tucker46471c92003-07-03 13:55:19 +10001204 if (have < 3) {
Ben Lindstromb3921512001-04-11 15:57:50 +00001205 /* need more */
1206 FD_SET(c->sock, readset);
1207 return;
1208 }
1209 /* try to guess the protocol */
1210 p = buffer_ptr(&c->input);
1211 switch (p[0]) {
Ben Lindstrom6fa9d102001-04-11 23:08:17 +00001212 case 0x04:
1213 ret = channel_decode_socks4(c, readset, writeset);
1214 break;
Darren Tucker46471c92003-07-03 13:55:19 +10001215 case 0x05:
1216 ret = channel_decode_socks5(c, readset, writeset);
1217 break;
Ben Lindstromb3921512001-04-11 15:57:50 +00001218 default:
1219 ret = -1;
1220 break;
1221 }
1222 if (ret < 0) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001223 chan_mark_dead(c);
Ben Lindstromb3921512001-04-11 15:57:50 +00001224 } else if (ret == 0) {
1225 debug2("channel %d: pre_dynamic: need more", c->self);
1226 /* need more */
1227 FD_SET(c->sock, readset);
1228 } else {
1229 /* switch to the next state */
1230 c->type = SSH_CHANNEL_OPENING;
1231 port_open_helper(c, "direct-tcpip");
1232 }
1233}
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001234
Damien Millerb38eff82000-04-01 11:09:21 +10001235/* This is our fake X11 server socket. */
Damien Miller8473dd82006-07-24 14:08:32 +10001236/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001237static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001238channel_post_x11_listener(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001239{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001240 Channel *nc;
Damien Miller163886f2008-07-14 11:28:58 +10001241 struct sockaddr_storage addr;
Damien Miller398e1cf2002-02-05 11:52:13 +11001242 int newsock;
Damien Millerb38eff82000-04-01 11:09:21 +10001243 socklen_t addrlen;
Damien Millerd83ff352001-01-30 09:19:34 +11001244 char buf[16384], *remote_ipaddr;
Damien Millerbd483e72000-04-30 10:00:53 +10001245 int remote_port;
Damien Millerb38eff82000-04-01 11:09:21 +10001246
1247 if (FD_ISSET(c->sock, readset)) {
1248 debug("X11 connection requested.");
1249 addrlen = sizeof(addr);
Damien Miller163886f2008-07-14 11:28:58 +10001250 newsock = accept(c->sock, (struct sockaddr *)&addr, &addrlen);
Damien Millere7378562001-12-21 14:58:35 +11001251 if (c->single_connection) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001252 debug2("single_connection: closing X11 listener.");
Damien Millere7378562001-12-21 14:58:35 +11001253 channel_close_fd(&c->sock);
1254 chan_mark_dead(c);
1255 }
Damien Millerb38eff82000-04-01 11:09:21 +10001256 if (newsock < 0) {
1257 error("accept: %.100s", strerror(errno));
1258 return;
1259 }
Damien Miller398e1cf2002-02-05 11:52:13 +11001260 set_nodelay(newsock);
Damien Millerd83ff352001-01-30 09:19:34 +11001261 remote_ipaddr = get_peer_ipaddr(newsock);
Damien Millerbd483e72000-04-30 10:00:53 +10001262 remote_port = get_peer_port(newsock);
Damien Millerb38eff82000-04-01 11:09:21 +10001263 snprintf(buf, sizeof buf, "X11 connection from %.200s port %d",
Damien Millerd83ff352001-01-30 09:19:34 +11001264 remote_ipaddr, remote_port);
Damien Millerbd483e72000-04-30 10:00:53 +10001265
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001266 nc = channel_new("accepted x11 socket",
Damien Millerbd483e72000-04-30 10:00:53 +10001267 SSH_CHANNEL_OPENING, newsock, newsock, -1,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001268 c->local_window_max, c->local_maxpacket, 0, buf, 1);
Damien Millerbd483e72000-04-30 10:00:53 +10001269 if (compat20) {
1270 packet_start(SSH2_MSG_CHANNEL_OPEN);
1271 packet_put_cstring("x11");
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001272 packet_put_int(nc->self);
Damien Millere7378562001-12-21 14:58:35 +11001273 packet_put_int(nc->local_window_max);
1274 packet_put_int(nc->local_maxpacket);
Damien Millerd83ff352001-01-30 09:19:34 +11001275 /* originator ipaddr and port */
1276 packet_put_cstring(remote_ipaddr);
Damien Miller30c3d422000-05-09 11:02:59 +10001277 if (datafellows & SSH_BUG_X11FWD) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001278 debug2("ssh2 x11 bug compat mode");
Damien Miller30c3d422000-05-09 11:02:59 +10001279 } else {
1280 packet_put_int(remote_port);
1281 }
Damien Millerbd483e72000-04-30 10:00:53 +10001282 packet_send();
1283 } else {
1284 packet_start(SSH_SMSG_X11_OPEN);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001285 packet_put_int(nc->self);
Ben Lindstrome9c99912001-06-09 00:41:05 +00001286 if (packet_get_protocol_flags() &
1287 SSH_PROTOFLAG_HOST_IN_FWD_OPEN)
Ben Lindstrom664408d2001-06-09 01:42:01 +00001288 packet_put_cstring(buf);
Damien Millerbd483e72000-04-30 10:00:53 +10001289 packet_send();
1290 }
Damien Millerd83ff352001-01-30 09:19:34 +11001291 xfree(remote_ipaddr);
Damien Millerb38eff82000-04-01 11:09:21 +10001292 }
1293}
1294
Ben Lindstrombba81212001-06-25 05:01:22 +00001295static void
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001296port_open_helper(Channel *c, char *rtype)
1297{
1298 int direct;
1299 char buf[1024];
1300 char *remote_ipaddr = get_peer_ipaddr(c->sock);
Damien Miller677257f2005-06-17 12:55:03 +10001301 int remote_port = get_peer_port(c->sock);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001302
1303 direct = (strcmp(rtype, "direct-tcpip") == 0);
1304
1305 snprintf(buf, sizeof buf,
1306 "%s: listening port %d for %.100s port %d, "
1307 "connect from %.200s port %d",
1308 rtype, c->listening_port, c->path, c->host_port,
1309 remote_ipaddr, remote_port);
1310
1311 xfree(c->remote_name);
1312 c->remote_name = xstrdup(buf);
1313
1314 if (compat20) {
1315 packet_start(SSH2_MSG_CHANNEL_OPEN);
1316 packet_put_cstring(rtype);
1317 packet_put_int(c->self);
1318 packet_put_int(c->local_window_max);
1319 packet_put_int(c->local_maxpacket);
1320 if (direct) {
1321 /* target host, port */
1322 packet_put_cstring(c->path);
1323 packet_put_int(c->host_port);
1324 } else {
1325 /* listen address, port */
1326 packet_put_cstring(c->path);
1327 packet_put_int(c->listening_port);
1328 }
1329 /* originator host and port */
1330 packet_put_cstring(remote_ipaddr);
Damien Miller677257f2005-06-17 12:55:03 +10001331 packet_put_int((u_int)remote_port);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001332 packet_send();
1333 } else {
1334 packet_start(SSH_MSG_PORT_OPEN);
1335 packet_put_int(c->self);
1336 packet_put_cstring(c->path);
1337 packet_put_int(c->host_port);
Ben Lindstrome9c99912001-06-09 00:41:05 +00001338 if (packet_get_protocol_flags() &
1339 SSH_PROTOFLAG_HOST_IN_FWD_OPEN)
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001340 packet_put_cstring(c->remote_name);
1341 packet_send();
1342 }
1343 xfree(remote_ipaddr);
1344}
1345
Damien Miller5e7fd072005-11-05 14:53:39 +11001346static void
1347channel_set_reuseaddr(int fd)
1348{
1349 int on = 1;
1350
1351 /*
1352 * Set socket options.
1353 * Allow local port reuse in TIME_WAIT.
1354 */
1355 if (setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, &on, sizeof(on)) == -1)
1356 error("setsockopt SO_REUSEADDR fd %d: %s", fd, strerror(errno));
1357}
1358
Damien Millerb38eff82000-04-01 11:09:21 +10001359/*
1360 * This socket is listening for connections to a forwarded TCP/IP port.
1361 */
Damien Miller8473dd82006-07-24 14:08:32 +10001362/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001363static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001364channel_post_port_listener(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001365{
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001366 Channel *nc;
Damien Miller163886f2008-07-14 11:28:58 +10001367 struct sockaddr_storage addr;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001368 int newsock, nextstate;
Damien Millerb38eff82000-04-01 11:09:21 +10001369 socklen_t addrlen;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001370 char *rtype;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001371
Damien Millerb38eff82000-04-01 11:09:21 +10001372 if (FD_ISSET(c->sock, readset)) {
1373 debug("Connection to port %d forwarding "
1374 "to %.100s port %d requested.",
1375 c->listening_port, c->path, c->host_port);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001376
Damien Miller4623a752001-10-10 15:03:58 +10001377 if (c->type == SSH_CHANNEL_RPORT_LISTENER) {
1378 nextstate = SSH_CHANNEL_OPENING;
1379 rtype = "forwarded-tcpip";
1380 } else {
1381 if (c->host_port == 0) {
1382 nextstate = SSH_CHANNEL_DYNAMIC;
Damien Millerd3c04b92001-10-10 15:04:20 +10001383 rtype = "dynamic-tcpip";
Damien Miller4623a752001-10-10 15:03:58 +10001384 } else {
1385 nextstate = SSH_CHANNEL_OPENING;
1386 rtype = "direct-tcpip";
1387 }
1388 }
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001389
Damien Millerb38eff82000-04-01 11:09:21 +10001390 addrlen = sizeof(addr);
Damien Miller163886f2008-07-14 11:28:58 +10001391 newsock = accept(c->sock, (struct sockaddr *)&addr, &addrlen);
Damien Millerb38eff82000-04-01 11:09:21 +10001392 if (newsock < 0) {
1393 error("accept: %.100s", strerror(errno));
1394 return;
1395 }
Ben Lindstrom1ebd7a52002-02-26 18:12:51 +00001396 set_nodelay(newsock);
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001397 nc = channel_new(rtype, nextstate, newsock, newsock, -1,
1398 c->local_window_max, c->local_maxpacket, 0, rtype, 1);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001399 nc->listening_port = c->listening_port;
1400 nc->host_port = c->host_port;
1401 strlcpy(nc->path, c->path, sizeof(nc->path));
1402
Damien Miller4623a752001-10-10 15:03:58 +10001403 if (nextstate == SSH_CHANNEL_DYNAMIC) {
1404 /*
1405 * do not call the channel_post handler until
1406 * this flag has been reset by a pre-handler.
1407 * otherwise the FD_ISSET calls might overflow
1408 */
1409 nc->delayed = 1;
1410 } else {
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001411 port_open_helper(nc, rtype);
Damien Miller4623a752001-10-10 15:03:58 +10001412 }
Damien Millerb38eff82000-04-01 11:09:21 +10001413 }
1414}
1415
1416/*
1417 * This is the authentication agent socket listening for connections from
1418 * clients.
1419 */
Damien Miller8473dd82006-07-24 14:08:32 +10001420/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001421static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001422channel_post_auth_listener(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001423{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001424 Channel *nc;
1425 int newsock;
Damien Miller163886f2008-07-14 11:28:58 +10001426 struct sockaddr_storage addr;
Damien Millerb38eff82000-04-01 11:09:21 +10001427 socklen_t addrlen;
1428
1429 if (FD_ISSET(c->sock, readset)) {
1430 addrlen = sizeof(addr);
Damien Miller163886f2008-07-14 11:28:58 +10001431 newsock = accept(c->sock, (struct sockaddr *)&addr, &addrlen);
Damien Millerb38eff82000-04-01 11:09:21 +10001432 if (newsock < 0) {
1433 error("accept from auth socket: %.100s", strerror(errno));
1434 return;
1435 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001436 nc = channel_new("accepted auth socket",
Damien Miller0bc1bd82000-11-13 22:57:25 +11001437 SSH_CHANNEL_OPENING, newsock, newsock, -1,
1438 c->local_window_max, c->local_maxpacket,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001439 0, "accepted auth socket", 1);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001440 if (compat20) {
1441 packet_start(SSH2_MSG_CHANNEL_OPEN);
1442 packet_put_cstring("auth-agent@openssh.com");
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001443 packet_put_int(nc->self);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001444 packet_put_int(c->local_window_max);
1445 packet_put_int(c->local_maxpacket);
1446 } else {
1447 packet_start(SSH_SMSG_AGENT_OPEN);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001448 packet_put_int(nc->self);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001449 }
Damien Millerb38eff82000-04-01 11:09:21 +10001450 packet_send();
1451 }
1452}
1453
Damien Miller8473dd82006-07-24 14:08:32 +10001454/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001455static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001456channel_post_connecting(Channel *c, fd_set *readset, fd_set *writeset)
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001457{
Damien Millerbd740252008-05-19 15:37:09 +10001458 int err = 0, sock;
Ben Lindstrom11180952001-07-04 05:13:35 +00001459 socklen_t sz = sizeof(err);
Ben Lindstrom69128662001-05-08 20:07:39 +00001460
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001461 if (FD_ISSET(c->sock, writeset)) {
Ben Lindstrom733a2352002-03-05 01:31:28 +00001462 if (getsockopt(c->sock, SOL_SOCKET, SO_ERROR, &err, &sz) < 0) {
Ben Lindstrom69128662001-05-08 20:07:39 +00001463 err = errno;
1464 error("getsockopt SO_ERROR failed");
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001465 }
Ben Lindstrom69128662001-05-08 20:07:39 +00001466 if (err == 0) {
Damien Millerbd740252008-05-19 15:37:09 +10001467 debug("channel %d: connected to %s port %d",
1468 c->self, c->connect_ctx.host, c->connect_ctx.port);
1469 channel_connect_ctx_free(&c->connect_ctx);
Ben Lindstrom69128662001-05-08 20:07:39 +00001470 c->type = SSH_CHANNEL_OPEN;
1471 if (compat20) {
1472 packet_start(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION);
1473 packet_put_int(c->remote_id);
1474 packet_put_int(c->self);
1475 packet_put_int(c->local_window);
1476 packet_put_int(c->local_maxpacket);
1477 } else {
1478 packet_start(SSH_MSG_CHANNEL_OPEN_CONFIRMATION);
1479 packet_put_int(c->remote_id);
1480 packet_put_int(c->self);
1481 }
1482 } else {
Damien Millerbd740252008-05-19 15:37:09 +10001483 debug("channel %d: connection failed: %s",
Ben Lindstrom69128662001-05-08 20:07:39 +00001484 c->self, strerror(err));
Damien Millerbd740252008-05-19 15:37:09 +10001485 /* Try next address, if any */
1486 if ((sock = connect_next(&c->connect_ctx)) > 0) {
1487 close(c->sock);
1488 c->sock = c->rfd = c->wfd = sock;
1489 channel_max_fd = channel_find_maxfd();
1490 return;
1491 }
1492 /* Exhausted all addresses */
1493 error("connect_to %.100s port %d: failed.",
1494 c->connect_ctx.host, c->connect_ctx.port);
1495 channel_connect_ctx_free(&c->connect_ctx);
Ben Lindstrom69128662001-05-08 20:07:39 +00001496 if (compat20) {
1497 packet_start(SSH2_MSG_CHANNEL_OPEN_FAILURE);
1498 packet_put_int(c->remote_id);
1499 packet_put_int(SSH2_OPEN_CONNECT_FAILED);
1500 if (!(datafellows & SSH_BUG_OPENFAILURE)) {
1501 packet_put_cstring(strerror(err));
1502 packet_put_cstring("");
1503 }
1504 } else {
1505 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
1506 packet_put_int(c->remote_id);
1507 }
1508 chan_mark_dead(c);
1509 }
1510 packet_send();
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001511 }
1512}
1513
Damien Miller8473dd82006-07-24 14:08:32 +10001514/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001515static int
Damien Millerd62f2ca2006-03-26 13:57:41 +11001516channel_handle_rfd(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001517{
Darren Tucker11327cc2005-03-14 23:22:25 +11001518 char buf[CHAN_RBUF];
Damien Miller835284b2007-06-11 13:03:16 +10001519 int len, force;
Damien Millerb38eff82000-04-01 11:09:21 +10001520
Damien Miller835284b2007-06-11 13:03:16 +10001521 force = c->isatty && c->detach_close && c->istate != CHAN_INPUT_CLOSED;
1522 if (c->rfd != -1 && (force || FD_ISSET(c->rfd, readset))) {
Darren Tucker9afe1152006-06-23 21:24:12 +10001523 errno = 0;
Damien Millerb38eff82000-04-01 11:09:21 +10001524 len = read(c->rfd, buf, sizeof(buf));
Damien Millerd8968ad2008-07-04 23:10:49 +10001525 if (len < 0 && (errno == EINTR ||
1526 ((errno == EAGAIN || errno == EWOULDBLOCK) && !force)))
Damien Miller6f83b8e2000-05-02 09:23:45 +10001527 return 1;
Darren Tucker9afe1152006-06-23 21:24:12 +10001528#ifndef PTY_ZEROREAD
Damien Millerb38eff82000-04-01 11:09:21 +10001529 if (len <= 0) {
Darren Tucker9afe1152006-06-23 21:24:12 +10001530#else
Darren Tucker144e8d62006-06-25 08:25:25 +10001531 if ((!c->isatty && len <= 0) ||
1532 (c->isatty && (len < 0 || (len == 0 && errno != 0)))) {
Darren Tucker9afe1152006-06-23 21:24:12 +10001533#endif
Damien Millerfbdeece2003-09-02 22:52:31 +10001534 debug2("channel %d: read<=0 rfd %d len %d",
Damien Millerb38eff82000-04-01 11:09:21 +10001535 c->self, c->rfd, len);
Ben Lindstromb3921512001-04-11 15:57:50 +00001536 if (c->type != SSH_CHANNEL_OPEN) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001537 debug2("channel %d: not open", c->self);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001538 chan_mark_dead(c);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001539 return -1;
Ben Lindstromb3921512001-04-11 15:57:50 +00001540 } else if (compat13) {
Damien Miller76765c02002-01-22 23:21:15 +11001541 buffer_clear(&c->output);
Damien Millerb38eff82000-04-01 11:09:21 +10001542 c->type = SSH_CHANNEL_INPUT_DRAINING;
Damien Millerfbdeece2003-09-02 22:52:31 +10001543 debug2("channel %d: input draining.", c->self);
Damien Millerb38eff82000-04-01 11:09:21 +10001544 } else {
1545 chan_read_failed(c);
1546 }
1547 return -1;
1548 }
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00001549 if (c->input_filter != NULL) {
Damien Millerad833b32000-08-23 10:46:23 +10001550 if (c->input_filter(c, buf, len) == -1) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001551 debug2("channel %d: filter stops", c->self);
Damien Millerad833b32000-08-23 10:46:23 +10001552 chan_read_failed(c);
1553 }
Damien Millerd27b9472005-12-13 19:29:02 +11001554 } else if (c->datagram) {
1555 buffer_put_string(&c->input, buf, len);
Damien Millerad833b32000-08-23 10:46:23 +10001556 } else {
1557 buffer_append(&c->input, buf, len);
1558 }
Damien Millerb38eff82000-04-01 11:09:21 +10001559 }
1560 return 1;
1561}
Damien Miller4f7becb2006-03-26 14:10:14 +11001562
Damien Miller8473dd82006-07-24 14:08:32 +10001563/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001564static int
Damien Millerd62f2ca2006-03-26 13:57:41 +11001565channel_handle_wfd(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001566{
Ben Lindstrome229b252001-03-05 06:28:06 +00001567 struct termios tio;
Damien Miller077b2382005-12-31 16:22:32 +11001568 u_char *data = NULL, *buf;
Ben Lindstrom6d218f42001-09-18 05:53:12 +00001569 u_int dlen;
Damien Millerb38eff82000-04-01 11:09:21 +10001570 int len;
1571
1572 /* Send buffered output data to the socket. */
Ben Lindstromc0dee1a2001-06-05 20:52:50 +00001573 if (c->wfd != -1 &&
Damien Millerb38eff82000-04-01 11:09:21 +10001574 FD_ISSET(c->wfd, writeset) &&
1575 buffer_len(&c->output) > 0) {
Damien Miller077b2382005-12-31 16:22:32 +11001576 if (c->output_filter != NULL) {
1577 if ((buf = c->output_filter(c, &data, &dlen)) == NULL) {
1578 debug2("channel %d: filter stops", c->self);
Damien Millere204f6a2006-01-31 21:47:15 +11001579 if (c->type != SSH_CHANNEL_OPEN)
1580 chan_mark_dead(c);
1581 else
1582 chan_write_failed(c);
1583 return -1;
Damien Miller077b2382005-12-31 16:22:32 +11001584 }
1585 } else if (c->datagram) {
1586 buf = data = buffer_get_string(&c->output, &dlen);
1587 } else {
1588 buf = data = buffer_ptr(&c->output);
1589 dlen = buffer_len(&c->output);
1590 }
1591
Damien Millerd27b9472005-12-13 19:29:02 +11001592 if (c->datagram) {
Damien Millerd27b9472005-12-13 19:29:02 +11001593 /* ignore truncated writes, datagrams might get lost */
1594 c->local_consumed += dlen + 4;
Damien Miller077b2382005-12-31 16:22:32 +11001595 len = write(c->wfd, buf, dlen);
Damien Millerd27b9472005-12-13 19:29:02 +11001596 xfree(data);
Damien Millerd8968ad2008-07-04 23:10:49 +10001597 if (len < 0 && (errno == EINTR || errno == EAGAIN ||
1598 errno == EWOULDBLOCK))
Damien Millerd27b9472005-12-13 19:29:02 +11001599 return 1;
1600 if (len <= 0) {
1601 if (c->type != SSH_CHANNEL_OPEN)
1602 chan_mark_dead(c);
1603 else
1604 chan_write_failed(c);
1605 return -1;
1606 }
1607 return 1;
1608 }
Ben Lindstrom92ea0ea2002-07-04 18:11:09 +00001609#ifdef _AIX
Damien Millera8e06ce2003-11-21 23:48:55 +11001610 /* XXX: Later AIX versions can't push as much data to tty */
Darren Tucker240fdfa2003-11-22 14:10:02 +11001611 if (compat20 && c->wfd_isatty)
1612 dlen = MIN(dlen, 8*1024);
Ben Lindstrom92ea0ea2002-07-04 18:11:09 +00001613#endif
Damien Miller077b2382005-12-31 16:22:32 +11001614
1615 len = write(c->wfd, buf, dlen);
Damien Millerd8968ad2008-07-04 23:10:49 +10001616 if (len < 0 &&
1617 (errno == EINTR || errno == EAGAIN || errno == EWOULDBLOCK))
Damien Miller6f83b8e2000-05-02 09:23:45 +10001618 return 1;
Damien Millerb38eff82000-04-01 11:09:21 +10001619 if (len <= 0) {
Ben Lindstromb3921512001-04-11 15:57:50 +00001620 if (c->type != SSH_CHANNEL_OPEN) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001621 debug2("channel %d: not open", c->self);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001622 chan_mark_dead(c);
Ben Lindstromb3921512001-04-11 15:57:50 +00001623 return -1;
1624 } else if (compat13) {
Damien Miller76765c02002-01-22 23:21:15 +11001625 buffer_clear(&c->output);
Damien Millerfbdeece2003-09-02 22:52:31 +10001626 debug2("channel %d: input draining.", c->self);
Damien Millerb38eff82000-04-01 11:09:21 +10001627 c->type = SSH_CHANNEL_INPUT_DRAINING;
1628 } else {
1629 chan_write_failed(c);
1630 }
1631 return -1;
1632 }
Damien Miller077b2382005-12-31 16:22:32 +11001633 if (compat20 && c->isatty && dlen >= 1 && buf[0] != '\r') {
Damien Miller79438cc2001-02-16 12:34:57 +11001634 if (tcgetattr(c->wfd, &tio) == 0 &&
1635 !(tio.c_lflag & ECHO) && (tio.c_lflag & ICANON)) {
1636 /*
1637 * Simulate echo to reduce the impact of
Ben Lindstromb40204b2001-03-05 06:29:44 +00001638 * traffic analysis. We need to match the
Ben Lindstrome229b252001-03-05 06:28:06 +00001639 * size of a SSH2_MSG_CHANNEL_DATA message
Damien Miller077b2382005-12-31 16:22:32 +11001640 * (4 byte channel id + buf)
Damien Miller79438cc2001-02-16 12:34:57 +11001641 */
Ben Lindstrome229b252001-03-05 06:28:06 +00001642 packet_send_ignore(4 + len);
Damien Miller79438cc2001-02-16 12:34:57 +11001643 packet_send();
Damien Miller79438cc2001-02-16 12:34:57 +11001644 }
1645 }
Damien Millerb38eff82000-04-01 11:09:21 +10001646 buffer_consume(&c->output, len);
Damien Miller33b13562000-04-04 14:38:59 +10001647 if (compat20 && len > 0) {
1648 c->local_consumed += len;
1649 }
1650 }
1651 return 1;
1652}
Damien Miller4f7becb2006-03-26 14:10:14 +11001653
Ben Lindstrombba81212001-06-25 05:01:22 +00001654static int
Damien Millerd62f2ca2006-03-26 13:57:41 +11001655channel_handle_efd(Channel *c, fd_set *readset, fd_set *writeset)
Damien Miller33b13562000-04-04 14:38:59 +10001656{
Darren Tucker11327cc2005-03-14 23:22:25 +11001657 char buf[CHAN_RBUF];
Damien Miller33b13562000-04-04 14:38:59 +10001658 int len;
1659
Damien Miller1383bd82000-04-06 12:32:37 +10001660/** XXX handle drain efd, too */
Damien Miller33b13562000-04-04 14:38:59 +10001661 if (c->efd != -1) {
1662 if (c->extended_usage == CHAN_EXTENDED_WRITE &&
1663 FD_ISSET(c->efd, writeset) &&
1664 buffer_len(&c->extended) > 0) {
1665 len = write(c->efd, buffer_ptr(&c->extended),
1666 buffer_len(&c->extended));
Damien Millerd3444942000-09-30 14:20:03 +11001667 debug2("channel %d: written %d to efd %d",
Damien Miller33b13562000-04-04 14:38:59 +10001668 c->self, len, c->efd);
Damien Millerd8968ad2008-07-04 23:10:49 +10001669 if (len < 0 && (errno == EINTR || errno == EAGAIN ||
1670 errno == EWOULDBLOCK))
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001671 return 1;
1672 if (len <= 0) {
1673 debug2("channel %d: closing write-efd %d",
1674 c->self, c->efd);
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001675 channel_close_fd(&c->efd);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001676 } else {
Damien Miller33b13562000-04-04 14:38:59 +10001677 buffer_consume(&c->extended, len);
1678 c->local_consumed += len;
1679 }
1680 } else if (c->extended_usage == CHAN_EXTENDED_READ &&
Damien Millere42bd242007-01-29 10:16:28 +11001681 (c->detach_close || FD_ISSET(c->efd, readset))) {
Damien Miller33b13562000-04-04 14:38:59 +10001682 len = read(c->efd, buf, sizeof(buf));
Damien Millerd3444942000-09-30 14:20:03 +11001683 debug2("channel %d: read %d from efd %d",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001684 c->self, len, c->efd);
Damien Millerd8968ad2008-07-04 23:10:49 +10001685 if (len < 0 && (errno == EINTR || ((errno == EAGAIN ||
1686 errno == EWOULDBLOCK) && !c->detach_close)))
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001687 return 1;
1688 if (len <= 0) {
1689 debug2("channel %d: closing read-efd %d",
Damien Miller1383bd82000-04-06 12:32:37 +10001690 c->self, c->efd);
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001691 channel_close_fd(&c->efd);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001692 } else {
Damien Miller33b13562000-04-04 14:38:59 +10001693 buffer_append(&c->extended, buf, len);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001694 }
Damien Miller33b13562000-04-04 14:38:59 +10001695 }
1696 }
1697 return 1;
1698}
Damien Miller4f7becb2006-03-26 14:10:14 +11001699
Damien Miller8473dd82006-07-24 14:08:32 +10001700/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001701static int
Damien Millerd62f2ca2006-03-26 13:57:41 +11001702channel_handle_ctl(Channel *c, fd_set *readset, fd_set *writeset)
Damien Miller0e220db2004-06-15 10:34:08 +10001703{
1704 char buf[16];
1705 int len;
1706
1707 /* Monitor control fd to detect if the slave client exits */
1708 if (c->ctl_fd != -1 && FD_ISSET(c->ctl_fd, readset)) {
1709 len = read(c->ctl_fd, buf, sizeof(buf));
Damien Millerd8968ad2008-07-04 23:10:49 +10001710 if (len < 0 &&
1711 (errno == EINTR || errno == EAGAIN || errno == EWOULDBLOCK))
Damien Miller0e220db2004-06-15 10:34:08 +10001712 return 1;
1713 if (len <= 0) {
1714 debug2("channel %d: ctl read<=0", c->self);
1715 if (c->type != SSH_CHANNEL_OPEN) {
1716 debug2("channel %d: not open", c->self);
1717 chan_mark_dead(c);
1718 return -1;
1719 } else {
1720 chan_read_failed(c);
1721 chan_write_failed(c);
1722 }
1723 return -1;
1724 } else
1725 fatal("%s: unexpected data on ctl fd", __func__);
1726 }
1727 return 1;
1728}
Damien Miller4f7becb2006-03-26 14:10:14 +11001729
Damien Miller0e220db2004-06-15 10:34:08 +10001730static int
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001731channel_check_window(Channel *c)
Damien Miller33b13562000-04-04 14:38:59 +10001732{
Ben Lindstromb3921512001-04-11 15:57:50 +00001733 if (c->type == SSH_CHANNEL_OPEN &&
1734 !(c->flags & (CHAN_CLOSE_SENT|CHAN_CLOSE_RCVD)) &&
Darren Tuckerae09cb82007-06-25 19:04:46 +10001735 ((c->local_window_max - c->local_window >
Damien Miller3191a8e2007-06-11 18:33:15 +10001736 c->local_maxpacket*3) ||
1737 c->local_window < c->local_window_max/2) &&
Damien Miller33b13562000-04-04 14:38:59 +10001738 c->local_consumed > 0) {
1739 packet_start(SSH2_MSG_CHANNEL_WINDOW_ADJUST);
1740 packet_put_int(c->remote_id);
1741 packet_put_int(c->local_consumed);
1742 packet_send();
Damien Millerd3444942000-09-30 14:20:03 +11001743 debug2("channel %d: window %d sent adjust %d",
Damien Miller33b13562000-04-04 14:38:59 +10001744 c->self, c->local_window,
1745 c->local_consumed);
1746 c->local_window += c->local_consumed;
1747 c->local_consumed = 0;
Damien Millerb38eff82000-04-01 11:09:21 +10001748 }
1749 return 1;
1750}
1751
Ben Lindstrombba81212001-06-25 05:01:22 +00001752static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001753channel_post_open(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001754{
Damien Miller4623a752001-10-10 15:03:58 +10001755 if (c->delayed)
1756 return;
Damien Millerb38eff82000-04-01 11:09:21 +10001757 channel_handle_rfd(c, readset, writeset);
1758 channel_handle_wfd(c, readset, writeset);
Damien Millerde6987c2002-01-22 23:20:40 +11001759 if (!compat20)
Damien Miller4623a752001-10-10 15:03:58 +10001760 return;
Damien Miller33b13562000-04-04 14:38:59 +10001761 channel_handle_efd(c, readset, writeset);
Damien Miller0e220db2004-06-15 10:34:08 +10001762 channel_handle_ctl(c, readset, writeset);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001763 channel_check_window(c);
Damien Miller33b13562000-04-04 14:38:59 +10001764}
1765
Damien Miller8473dd82006-07-24 14:08:32 +10001766/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001767static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001768channel_post_output_drain_13(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001769{
1770 int len;
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00001771
Damien Millerb38eff82000-04-01 11:09:21 +10001772 /* Send buffered output data to the socket. */
1773 if (FD_ISSET(c->sock, writeset) && buffer_len(&c->output) > 0) {
1774 len = write(c->sock, buffer_ptr(&c->output),
1775 buffer_len(&c->output));
1776 if (len <= 0)
Damien Miller76765c02002-01-22 23:21:15 +11001777 buffer_clear(&c->output);
Damien Millerb38eff82000-04-01 11:09:21 +10001778 else
1779 buffer_consume(&c->output, len);
1780 }
1781}
1782
Ben Lindstrombba81212001-06-25 05:01:22 +00001783static void
Damien Miller33b13562000-04-04 14:38:59 +10001784channel_handler_init_20(void)
1785{
Damien Millerde6987c2002-01-22 23:20:40 +11001786 channel_pre[SSH_CHANNEL_OPEN] = &channel_pre_open;
Damien Millerbd483e72000-04-30 10:00:53 +10001787 channel_pre[SSH_CHANNEL_X11_OPEN] = &channel_pre_x11_open;
Damien Miller33b13562000-04-04 14:38:59 +10001788 channel_pre[SSH_CHANNEL_PORT_LISTENER] = &channel_pre_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001789 channel_pre[SSH_CHANNEL_RPORT_LISTENER] = &channel_pre_listener;
Damien Millerbd483e72000-04-30 10:00:53 +10001790 channel_pre[SSH_CHANNEL_X11_LISTENER] = &channel_pre_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001791 channel_pre[SSH_CHANNEL_AUTH_SOCKET] = &channel_pre_listener;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001792 channel_pre[SSH_CHANNEL_CONNECTING] = &channel_pre_connecting;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001793 channel_pre[SSH_CHANNEL_DYNAMIC] = &channel_pre_dynamic;
Damien Miller33b13562000-04-04 14:38:59 +10001794
Damien Millerde6987c2002-01-22 23:20:40 +11001795 channel_post[SSH_CHANNEL_OPEN] = &channel_post_open;
Damien Miller33b13562000-04-04 14:38:59 +10001796 channel_post[SSH_CHANNEL_PORT_LISTENER] = &channel_post_port_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001797 channel_post[SSH_CHANNEL_RPORT_LISTENER] = &channel_post_port_listener;
Damien Millerbd483e72000-04-30 10:00:53 +10001798 channel_post[SSH_CHANNEL_X11_LISTENER] = &channel_post_x11_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001799 channel_post[SSH_CHANNEL_AUTH_SOCKET] = &channel_post_auth_listener;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001800 channel_post[SSH_CHANNEL_CONNECTING] = &channel_post_connecting;
Damien Millerde6987c2002-01-22 23:20:40 +11001801 channel_post[SSH_CHANNEL_DYNAMIC] = &channel_post_open;
Damien Miller33b13562000-04-04 14:38:59 +10001802}
1803
Ben Lindstrombba81212001-06-25 05:01:22 +00001804static void
Damien Millerb38eff82000-04-01 11:09:21 +10001805channel_handler_init_13(void)
1806{
1807 channel_pre[SSH_CHANNEL_OPEN] = &channel_pre_open_13;
1808 channel_pre[SSH_CHANNEL_X11_OPEN] = &channel_pre_x11_open_13;
1809 channel_pre[SSH_CHANNEL_X11_LISTENER] = &channel_pre_listener;
1810 channel_pre[SSH_CHANNEL_PORT_LISTENER] = &channel_pre_listener;
1811 channel_pre[SSH_CHANNEL_AUTH_SOCKET] = &channel_pre_listener;
1812 channel_pre[SSH_CHANNEL_INPUT_DRAINING] = &channel_pre_input_draining;
1813 channel_pre[SSH_CHANNEL_OUTPUT_DRAINING] = &channel_pre_output_draining;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001814 channel_pre[SSH_CHANNEL_CONNECTING] = &channel_pre_connecting;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001815 channel_pre[SSH_CHANNEL_DYNAMIC] = &channel_pre_dynamic;
Damien Millerb38eff82000-04-01 11:09:21 +10001816
Damien Millerde6987c2002-01-22 23:20:40 +11001817 channel_post[SSH_CHANNEL_OPEN] = &channel_post_open;
Damien Millerb38eff82000-04-01 11:09:21 +10001818 channel_post[SSH_CHANNEL_X11_LISTENER] = &channel_post_x11_listener;
1819 channel_post[SSH_CHANNEL_PORT_LISTENER] = &channel_post_port_listener;
1820 channel_post[SSH_CHANNEL_AUTH_SOCKET] = &channel_post_auth_listener;
1821 channel_post[SSH_CHANNEL_OUTPUT_DRAINING] = &channel_post_output_drain_13;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001822 channel_post[SSH_CHANNEL_CONNECTING] = &channel_post_connecting;
Damien Millerde6987c2002-01-22 23:20:40 +11001823 channel_post[SSH_CHANNEL_DYNAMIC] = &channel_post_open;
Damien Millerb38eff82000-04-01 11:09:21 +10001824}
1825
Ben Lindstrombba81212001-06-25 05:01:22 +00001826static void
Damien Millerb38eff82000-04-01 11:09:21 +10001827channel_handler_init_15(void)
1828{
Damien Millerde6987c2002-01-22 23:20:40 +11001829 channel_pre[SSH_CHANNEL_OPEN] = &channel_pre_open;
Damien Millerbd483e72000-04-30 10:00:53 +10001830 channel_pre[SSH_CHANNEL_X11_OPEN] = &channel_pre_x11_open;
Damien Millerb38eff82000-04-01 11:09:21 +10001831 channel_pre[SSH_CHANNEL_X11_LISTENER] = &channel_pre_listener;
1832 channel_pre[SSH_CHANNEL_PORT_LISTENER] = &channel_pre_listener;
1833 channel_pre[SSH_CHANNEL_AUTH_SOCKET] = &channel_pre_listener;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001834 channel_pre[SSH_CHANNEL_CONNECTING] = &channel_pre_connecting;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001835 channel_pre[SSH_CHANNEL_DYNAMIC] = &channel_pre_dynamic;
Damien Millerb38eff82000-04-01 11:09:21 +10001836
1837 channel_post[SSH_CHANNEL_X11_LISTENER] = &channel_post_x11_listener;
1838 channel_post[SSH_CHANNEL_PORT_LISTENER] = &channel_post_port_listener;
1839 channel_post[SSH_CHANNEL_AUTH_SOCKET] = &channel_post_auth_listener;
Damien Millerde6987c2002-01-22 23:20:40 +11001840 channel_post[SSH_CHANNEL_OPEN] = &channel_post_open;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001841 channel_post[SSH_CHANNEL_CONNECTING] = &channel_post_connecting;
Damien Millerde6987c2002-01-22 23:20:40 +11001842 channel_post[SSH_CHANNEL_DYNAMIC] = &channel_post_open;
Damien Millerb38eff82000-04-01 11:09:21 +10001843}
1844
Ben Lindstrombba81212001-06-25 05:01:22 +00001845static void
Damien Millerb38eff82000-04-01 11:09:21 +10001846channel_handler_init(void)
1847{
1848 int i;
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00001849
Damien Miller9f0f5c62001-12-21 14:45:46 +11001850 for (i = 0; i < SSH_CHANNEL_MAX_TYPE; i++) {
Damien Millerb38eff82000-04-01 11:09:21 +10001851 channel_pre[i] = NULL;
1852 channel_post[i] = NULL;
1853 }
Damien Miller33b13562000-04-04 14:38:59 +10001854 if (compat20)
1855 channel_handler_init_20();
1856 else if (compat13)
Damien Millerb38eff82000-04-01 11:09:21 +10001857 channel_handler_init_13();
1858 else
1859 channel_handler_init_15();
1860}
1861
Damien Miller3ec27592001-10-12 11:35:04 +10001862/* gc dead channels */
1863static void
1864channel_garbage_collect(Channel *c)
1865{
1866 if (c == NULL)
1867 return;
1868 if (c->detach_user != NULL) {
Damien Miller39eda6e2005-11-05 14:52:50 +11001869 if (!chan_is_dead(c, c->detach_close))
Damien Miller3ec27592001-10-12 11:35:04 +10001870 return;
Damien Millerfbdeece2003-09-02 22:52:31 +10001871 debug2("channel %d: gc: notify user", c->self);
Damien Miller3ec27592001-10-12 11:35:04 +10001872 c->detach_user(c->self, NULL);
1873 /* if we still have a callback */
1874 if (c->detach_user != NULL)
1875 return;
Damien Millerfbdeece2003-09-02 22:52:31 +10001876 debug2("channel %d: gc: user detached", c->self);
Damien Miller3ec27592001-10-12 11:35:04 +10001877 }
1878 if (!chan_is_dead(c, 1))
1879 return;
Damien Millerfbdeece2003-09-02 22:52:31 +10001880 debug2("channel %d: garbage collecting", c->self);
Damien Miller3ec27592001-10-12 11:35:04 +10001881 channel_free(c);
1882}
1883
Ben Lindstrombba81212001-06-25 05:01:22 +00001884static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001885channel_handler(chan_fn *ftab[], fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001886{
1887 static int did_init = 0;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10001888 u_int i;
Damien Millerb38eff82000-04-01 11:09:21 +10001889 Channel *c;
1890
1891 if (!did_init) {
1892 channel_handler_init();
1893 did_init = 1;
1894 }
1895 for (i = 0; i < channels_alloc; i++) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001896 c = channels[i];
1897 if (c == NULL)
Damien Millerb38eff82000-04-01 11:09:21 +10001898 continue;
Ben Lindstromc0dee1a2001-06-05 20:52:50 +00001899 if (ftab[c->type] != NULL)
1900 (*ftab[c->type])(c, readset, writeset);
Damien Miller3ec27592001-10-12 11:35:04 +10001901 channel_garbage_collect(c);
Damien Millerb38eff82000-04-01 11:09:21 +10001902 }
1903}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001904
Ben Lindstrome9c99912001-06-09 00:41:05 +00001905/*
1906 * Allocate/update select bitmasks and add any bits relevant to channels in
1907 * select bitmasks.
1908 */
Damien Miller4af51302000-04-16 11:18:38 +10001909void
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001910channel_prepare_select(fd_set **readsetp, fd_set **writesetp, int *maxfdp,
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10001911 u_int *nallocp, int rekeying)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001912{
Damien Miller36812092006-03-26 14:22:47 +11001913 u_int n, sz, nfdset;
Damien Miller5e953212001-01-30 09:14:00 +11001914
1915 n = MAX(*maxfdp, channel_max_fd);
1916
Damien Miller36812092006-03-26 14:22:47 +11001917 nfdset = howmany(n+1, NFDBITS);
1918 /* Explicitly test here, because xrealloc isn't always called */
1919 if (nfdset && SIZE_T_MAX / nfdset < sizeof(fd_mask))
1920 fatal("channel_prepare_select: max_fd (%d) is too large", n);
1921 sz = nfdset * sizeof(fd_mask);
1922
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001923 /* perhaps check sz < nalloc/2 and shrink? */
1924 if (*readsetp == NULL || sz > *nallocp) {
Damien Miller36812092006-03-26 14:22:47 +11001925 *readsetp = xrealloc(*readsetp, nfdset, sizeof(fd_mask));
1926 *writesetp = xrealloc(*writesetp, nfdset, sizeof(fd_mask));
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001927 *nallocp = sz;
Damien Miller5e953212001-01-30 09:14:00 +11001928 }
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001929 *maxfdp = n;
Damien Miller5e953212001-01-30 09:14:00 +11001930 memset(*readsetp, 0, sz);
1931 memset(*writesetp, 0, sz);
1932
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001933 if (!rekeying)
1934 channel_handler(channel_pre, *readsetp, *writesetp);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001935}
1936
Ben Lindstrome9c99912001-06-09 00:41:05 +00001937/*
1938 * After select, perform any appropriate operations for channels which have
1939 * events pending.
1940 */
Damien Miller4af51302000-04-16 11:18:38 +10001941void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001942channel_after_select(fd_set *readset, fd_set *writeset)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001943{
Damien Millerb38eff82000-04-01 11:09:21 +10001944 channel_handler(channel_post, readset, writeset);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001945}
1946
Ben Lindstrome9c99912001-06-09 00:41:05 +00001947
Damien Miller5e953212001-01-30 09:14:00 +11001948/* If there is data to send to the connection, enqueue some of it now. */
Damien Miller4af51302000-04-16 11:18:38 +10001949void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00001950channel_output_poll(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001951{
Damien Millerb38eff82000-04-01 11:09:21 +10001952 Channel *c;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10001953 u_int i, len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001954
Damien Miller95def091999-11-25 00:26:21 +11001955 for (i = 0; i < channels_alloc; i++) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001956 c = channels[i];
1957 if (c == NULL)
1958 continue;
Damien Miller34132e52000-01-14 15:45:46 +11001959
Ben Lindstrome9c99912001-06-09 00:41:05 +00001960 /*
1961 * We are only interested in channels that can have buffered
1962 * incoming data.
1963 */
Damien Miller34132e52000-01-14 15:45:46 +11001964 if (compat13) {
Damien Millerb38eff82000-04-01 11:09:21 +10001965 if (c->type != SSH_CHANNEL_OPEN &&
1966 c->type != SSH_CHANNEL_INPUT_DRAINING)
Damien Miller34132e52000-01-14 15:45:46 +11001967 continue;
1968 } else {
Damien Millerb38eff82000-04-01 11:09:21 +10001969 if (c->type != SSH_CHANNEL_OPEN)
Damien Miller34132e52000-01-14 15:45:46 +11001970 continue;
Damien Miller34132e52000-01-14 15:45:46 +11001971 }
Damien Millerefb4afe2000-04-12 18:45:05 +10001972 if (compat20 &&
1973 (c->flags & (CHAN_CLOSE_SENT|CHAN_CLOSE_RCVD))) {
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001974 /* XXX is this true? */
Damien Miller3ec27592001-10-12 11:35:04 +10001975 debug3("channel %d: will not send data after close", c->self);
Damien Miller33b13562000-04-04 14:38:59 +10001976 continue;
1977 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001978
Damien Miller95def091999-11-25 00:26:21 +11001979 /* Get the amount of buffered data for this channel. */
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001980 if ((c->istate == CHAN_INPUT_OPEN ||
1981 c->istate == CHAN_INPUT_WAIT_DRAIN) &&
1982 (len = buffer_len(&c->input)) > 0) {
Damien Millerd27b9472005-12-13 19:29:02 +11001983 if (c->datagram) {
1984 if (len > 0) {
1985 u_char *data;
1986 u_int dlen;
1987
1988 data = buffer_get_string(&c->input,
1989 &dlen);
1990 packet_start(SSH2_MSG_CHANNEL_DATA);
1991 packet_put_int(c->remote_id);
1992 packet_put_string(data, dlen);
1993 packet_send();
1994 c->remote_window -= dlen + 4;
1995 xfree(data);
1996 }
1997 continue;
1998 }
Ben Lindstrome9c99912001-06-09 00:41:05 +00001999 /*
2000 * Send some data for the other side over the secure
2001 * connection.
2002 */
Damien Miller33b13562000-04-04 14:38:59 +10002003 if (compat20) {
2004 if (len > c->remote_window)
2005 len = c->remote_window;
2006 if (len > c->remote_maxpacket)
2007 len = c->remote_maxpacket;
Damien Miller95def091999-11-25 00:26:21 +11002008 } else {
Damien Miller33b13562000-04-04 14:38:59 +10002009 if (packet_is_interactive()) {
2010 if (len > 1024)
2011 len = 512;
2012 } else {
2013 /* Keep the packets at reasonable size. */
2014 if (len > packet_get_maxsize()/2)
2015 len = packet_get_maxsize()/2;
2016 }
Damien Miller95def091999-11-25 00:26:21 +11002017 }
Damien Millerb38eff82000-04-01 11:09:21 +10002018 if (len > 0) {
Damien Miller33b13562000-04-04 14:38:59 +10002019 packet_start(compat20 ?
2020 SSH2_MSG_CHANNEL_DATA : SSH_MSG_CHANNEL_DATA);
Damien Millerb38eff82000-04-01 11:09:21 +10002021 packet_put_int(c->remote_id);
2022 packet_put_string(buffer_ptr(&c->input), len);
2023 packet_send();
2024 buffer_consume(&c->input, len);
2025 c->remote_window -= len;
Damien Millerb38eff82000-04-01 11:09:21 +10002026 }
2027 } else if (c->istate == CHAN_INPUT_WAIT_DRAIN) {
Damien Miller95def091999-11-25 00:26:21 +11002028 if (compat13)
2029 fatal("cannot happen: istate == INPUT_WAIT_DRAIN for proto 1.3");
Damien Miller5428f641999-11-25 11:54:57 +11002030 /*
2031 * input-buffer is empty and read-socket shutdown:
Ben Lindstromcf159442002-03-26 03:26:24 +00002032 * tell peer, that we will not send more data: send IEOF.
2033 * hack for extended data: delay EOF if EFD still in use.
Damien Miller5428f641999-11-25 11:54:57 +11002034 */
Ben Lindstromcf159442002-03-26 03:26:24 +00002035 if (CHANNEL_EFD_INPUT_ACTIVE(c))
Damien Miller0dc1bef2005-07-17 17:22:45 +10002036 debug2("channel %d: ibuf_empty delayed efd %d/(%d)",
2037 c->self, c->efd, buffer_len(&c->extended));
Ben Lindstromcf159442002-03-26 03:26:24 +00002038 else
2039 chan_ibuf_empty(c);
Damien Miller95def091999-11-25 00:26:21 +11002040 }
Damien Miller33b13562000-04-04 14:38:59 +10002041 /* Send extended data, i.e. stderr */
2042 if (compat20 &&
Ben Lindstromcf159442002-03-26 03:26:24 +00002043 !(c->flags & CHAN_EOF_SENT) &&
Damien Miller33b13562000-04-04 14:38:59 +10002044 c->remote_window > 0 &&
2045 (len = buffer_len(&c->extended)) > 0 &&
2046 c->extended_usage == CHAN_EXTENDED_READ) {
Ben Lindstrom4fed2be2002-06-25 23:17:36 +00002047 debug2("channel %d: rwin %u elen %u euse %d",
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00002048 c->self, c->remote_window, buffer_len(&c->extended),
2049 c->extended_usage);
Damien Miller33b13562000-04-04 14:38:59 +10002050 if (len > c->remote_window)
2051 len = c->remote_window;
2052 if (len > c->remote_maxpacket)
2053 len = c->remote_maxpacket;
2054 packet_start(SSH2_MSG_CHANNEL_EXTENDED_DATA);
2055 packet_put_int(c->remote_id);
2056 packet_put_int(SSH2_EXTENDED_DATA_STDERR);
2057 packet_put_string(buffer_ptr(&c->extended), len);
2058 packet_send();
2059 buffer_consume(&c->extended, len);
2060 c->remote_window -= len;
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00002061 debug2("channel %d: sent ext data %d", c->self, len);
Damien Miller33b13562000-04-04 14:38:59 +10002062 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002063 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002064}
2065
Ben Lindstrome9c99912001-06-09 00:41:05 +00002066
2067/* -- protocol input */
Damien Millerd79b4242006-03-31 23:11:44 +11002068
2069/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002070void
Damien Miller630d6f42002-01-22 23:17:30 +11002071channel_input_data(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002072{
Damien Miller34132e52000-01-14 15:45:46 +11002073 int id;
Damien Miller95def091999-11-25 00:26:21 +11002074 char *data;
Ben Lindstrom46c16222000-12-22 01:43:59 +00002075 u_int data_len;
Damien Millerb38eff82000-04-01 11:09:21 +10002076 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002077
Damien Miller95def091999-11-25 00:26:21 +11002078 /* Get the channel number and verify it. */
Damien Miller34132e52000-01-14 15:45:46 +11002079 id = packet_get_int();
Damien Millerb38eff82000-04-01 11:09:21 +10002080 c = channel_lookup(id);
2081 if (c == NULL)
Damien Miller34132e52000-01-14 15:45:46 +11002082 packet_disconnect("Received data for nonexistent channel %d.", id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002083
Damien Miller95def091999-11-25 00:26:21 +11002084 /* Ignore any data for non-open channels (might happen on close) */
Damien Millerb38eff82000-04-01 11:09:21 +10002085 if (c->type != SSH_CHANNEL_OPEN &&
2086 c->type != SSH_CHANNEL_X11_OPEN)
Damien Miller34132e52000-01-14 15:45:46 +11002087 return;
2088
Damien Miller95def091999-11-25 00:26:21 +11002089 /* Get the data. */
Damien Millerdb255ca2008-05-19 14:59:37 +10002090 data = packet_get_string_ptr(&data_len);
Damien Millerb38eff82000-04-01 11:09:21 +10002091
Damien Millera04ad492004-01-21 11:02:09 +11002092 /*
2093 * Ignore data for protocol > 1.3 if output end is no longer open.
2094 * For protocol 2 the sending side is reducing its window as it sends
2095 * data, so we must 'fake' consumption of the data in order to ensure
2096 * that window updates are sent back. Otherwise the connection might
2097 * deadlock.
2098 */
2099 if (!compat13 && c->ostate != CHAN_OUTPUT_OPEN) {
2100 if (compat20) {
2101 c->local_window -= data_len;
2102 c->local_consumed += data_len;
2103 }
Damien Millera04ad492004-01-21 11:02:09 +11002104 return;
2105 }
2106
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00002107 if (compat20) {
Damien Miller33b13562000-04-04 14:38:59 +10002108 if (data_len > c->local_maxpacket) {
Damien Miller996acd22003-04-09 20:59:48 +10002109 logit("channel %d: rcvd big packet %d, maxpack %d",
Damien Miller33b13562000-04-04 14:38:59 +10002110 c->self, data_len, c->local_maxpacket);
2111 }
2112 if (data_len > c->local_window) {
Damien Miller996acd22003-04-09 20:59:48 +10002113 logit("channel %d: rcvd too much data %d, win %d",
Damien Miller33b13562000-04-04 14:38:59 +10002114 c->self, data_len, c->local_window);
Damien Miller33b13562000-04-04 14:38:59 +10002115 return;
2116 }
2117 c->local_window -= data_len;
Damien Miller33b13562000-04-04 14:38:59 +10002118 }
Damien Millerd27b9472005-12-13 19:29:02 +11002119 if (c->datagram)
2120 buffer_put_string(&c->output, data, data_len);
2121 else
2122 buffer_append(&c->output, data, data_len);
Damien Millerdb255ca2008-05-19 14:59:37 +10002123 packet_check_eom();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002124}
Ben Lindstrome9c99912001-06-09 00:41:05 +00002125
Damien Millerd79b4242006-03-31 23:11:44 +11002126/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002127void
Damien Miller630d6f42002-01-22 23:17:30 +11002128channel_input_extended_data(int type, u_int32_t seq, void *ctxt)
Damien Miller33b13562000-04-04 14:38:59 +10002129{
2130 int id;
Damien Miller33b13562000-04-04 14:38:59 +10002131 char *data;
Ben Lindstromdaa21792002-06-25 23:15:30 +00002132 u_int data_len, tcode;
Damien Miller33b13562000-04-04 14:38:59 +10002133 Channel *c;
2134
2135 /* Get the channel number and verify it. */
2136 id = packet_get_int();
2137 c = channel_lookup(id);
2138
2139 if (c == NULL)
2140 packet_disconnect("Received extended_data for bad channel %d.", id);
2141 if (c->type != SSH_CHANNEL_OPEN) {
Damien Miller996acd22003-04-09 20:59:48 +10002142 logit("channel %d: ext data for non open", id);
Damien Miller33b13562000-04-04 14:38:59 +10002143 return;
2144 }
Ben Lindstromcf159442002-03-26 03:26:24 +00002145 if (c->flags & CHAN_EOF_RCVD) {
2146 if (datafellows & SSH_BUG_EXTEOF)
2147 debug("channel %d: accepting ext data after eof", id);
2148 else
2149 packet_disconnect("Received extended_data after EOF "
2150 "on channel %d.", id);
2151 }
Damien Miller33b13562000-04-04 14:38:59 +10002152 tcode = packet_get_int();
2153 if (c->efd == -1 ||
2154 c->extended_usage != CHAN_EXTENDED_WRITE ||
2155 tcode != SSH2_EXTENDED_DATA_STDERR) {
Damien Miller996acd22003-04-09 20:59:48 +10002156 logit("channel %d: bad ext data", c->self);
Damien Miller33b13562000-04-04 14:38:59 +10002157 return;
2158 }
2159 data = packet_get_string(&data_len);
Damien Miller48b03fc2002-01-22 23:11:40 +11002160 packet_check_eom();
Damien Miller33b13562000-04-04 14:38:59 +10002161 if (data_len > c->local_window) {
Damien Miller996acd22003-04-09 20:59:48 +10002162 logit("channel %d: rcvd too much extended_data %d, win %d",
Damien Miller33b13562000-04-04 14:38:59 +10002163 c->self, data_len, c->local_window);
2164 xfree(data);
2165 return;
2166 }
Damien Millerd3444942000-09-30 14:20:03 +11002167 debug2("channel %d: rcvd ext data %d", c->self, data_len);
Damien Miller33b13562000-04-04 14:38:59 +10002168 c->local_window -= data_len;
2169 buffer_append(&c->extended, data, data_len);
2170 xfree(data);
2171}
2172
Damien Millerd79b4242006-03-31 23:11:44 +11002173/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002174void
Damien Miller630d6f42002-01-22 23:17:30 +11002175channel_input_ieof(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10002176{
2177 int id;
2178 Channel *c;
2179
Damien Millerb38eff82000-04-01 11:09:21 +10002180 id = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11002181 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10002182 c = channel_lookup(id);
2183 if (c == NULL)
2184 packet_disconnect("Received ieof for nonexistent channel %d.", id);
2185 chan_rcvd_ieof(c);
Ben Lindstrom944c4f02001-09-18 05:51:13 +00002186
2187 /* XXX force input close */
Damien Millera90fc082002-01-22 23:19:38 +11002188 if (c->force_drain && c->istate == CHAN_INPUT_OPEN) {
Ben Lindstrom944c4f02001-09-18 05:51:13 +00002189 debug("channel %d: FORCE input drain", c->self);
2190 c->istate = CHAN_INPUT_WAIT_DRAIN;
Damien Miller73f10742002-01-22 23:34:52 +11002191 if (buffer_len(&c->input) == 0)
2192 chan_ibuf_empty(c);
Ben Lindstrom944c4f02001-09-18 05:51:13 +00002193 }
2194
Damien Millerb38eff82000-04-01 11:09:21 +10002195}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002196
Damien Millerd79b4242006-03-31 23:11:44 +11002197/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002198void
Damien Miller630d6f42002-01-22 23:17:30 +11002199channel_input_close(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002200{
Damien Millerb38eff82000-04-01 11:09:21 +10002201 int id;
2202 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002203
Damien Millerb38eff82000-04-01 11:09:21 +10002204 id = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11002205 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10002206 c = channel_lookup(id);
2207 if (c == NULL)
2208 packet_disconnect("Received close for nonexistent channel %d.", id);
Damien Miller5428f641999-11-25 11:54:57 +11002209
2210 /*
2211 * Send a confirmation that we have closed the channel and no more
2212 * data is coming for it.
2213 */
Damien Miller95def091999-11-25 00:26:21 +11002214 packet_start(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION);
Damien Millerb38eff82000-04-01 11:09:21 +10002215 packet_put_int(c->remote_id);
Damien Miller95def091999-11-25 00:26:21 +11002216 packet_send();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002217
Damien Miller5428f641999-11-25 11:54:57 +11002218 /*
2219 * If the channel is in closed state, we have sent a close request,
2220 * and the other side will eventually respond with a confirmation.
2221 * Thus, we cannot free the channel here, because then there would be
2222 * no-one to receive the confirmation. The channel gets freed when
2223 * the confirmation arrives.
2224 */
Damien Millerb38eff82000-04-01 11:09:21 +10002225 if (c->type != SSH_CHANNEL_CLOSED) {
Damien Miller5428f641999-11-25 11:54:57 +11002226 /*
2227 * Not a closed channel - mark it as draining, which will
2228 * cause it to be freed later.
2229 */
Damien Miller76765c02002-01-22 23:21:15 +11002230 buffer_clear(&c->input);
Damien Millerb38eff82000-04-01 11:09:21 +10002231 c->type = SSH_CHANNEL_OUTPUT_DRAINING;
Damien Miller95def091999-11-25 00:26:21 +11002232 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002233}
2234
Damien Millerb38eff82000-04-01 11:09:21 +10002235/* proto version 1.5 overloads CLOSE_CONFIRMATION with OCLOSE */
Damien Millerd79b4242006-03-31 23:11:44 +11002236/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002237void
Damien Miller630d6f42002-01-22 23:17:30 +11002238channel_input_oclose(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002239{
Damien Millerb38eff82000-04-01 11:09:21 +10002240 int id = packet_get_int();
2241 Channel *c = channel_lookup(id);
Damien Miller66823cd2002-01-22 23:11:38 +11002242
Damien Miller48b03fc2002-01-22 23:11:40 +11002243 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10002244 if (c == NULL)
2245 packet_disconnect("Received oclose for nonexistent channel %d.", id);
2246 chan_rcvd_oclose(c);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002247}
2248
Damien Millerd79b4242006-03-31 23:11:44 +11002249/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002250void
Damien Miller630d6f42002-01-22 23:17:30 +11002251channel_input_close_confirmation(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10002252{
2253 int id = packet_get_int();
2254 Channel *c = channel_lookup(id);
2255
Damien Miller48b03fc2002-01-22 23:11:40 +11002256 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10002257 if (c == NULL)
2258 packet_disconnect("Received close confirmation for "
2259 "out-of-range channel %d.", id);
2260 if (c->type != SSH_CHANNEL_CLOSED)
2261 packet_disconnect("Received close confirmation for "
2262 "non-closed channel %d (type %d).", id, c->type);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002263 channel_free(c);
Damien Millerb38eff82000-04-01 11:09:21 +10002264}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002265
Damien Millerd79b4242006-03-31 23:11:44 +11002266/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002267void
Damien Miller630d6f42002-01-22 23:17:30 +11002268channel_input_open_confirmation(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002269{
Damien Millerb38eff82000-04-01 11:09:21 +10002270 int id, remote_id;
2271 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002272
Damien Millerb38eff82000-04-01 11:09:21 +10002273 id = packet_get_int();
2274 c = channel_lookup(id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002275
Damien Millerb38eff82000-04-01 11:09:21 +10002276 if (c==NULL || c->type != SSH_CHANNEL_OPENING)
2277 packet_disconnect("Received open confirmation for "
2278 "non-opening channel %d.", id);
2279 remote_id = packet_get_int();
Damien Miller5428f641999-11-25 11:54:57 +11002280 /* Record the remote channel number and mark that the channel is now open. */
Damien Millerb38eff82000-04-01 11:09:21 +10002281 c->remote_id = remote_id;
2282 c->type = SSH_CHANNEL_OPEN;
Damien Miller33b13562000-04-04 14:38:59 +10002283
2284 if (compat20) {
2285 c->remote_window = packet_get_int();
2286 c->remote_maxpacket = packet_get_int();
Damien Millerb84886b2008-05-19 15:05:07 +10002287 if (c->open_confirm) {
Damien Millerd3444942000-09-30 14:20:03 +11002288 debug2("callback start");
Damien Millerb84886b2008-05-19 15:05:07 +10002289 c->open_confirm(c->self, c->open_confirm_ctx);
Damien Millerd3444942000-09-30 14:20:03 +11002290 debug2("callback done");
Damien Miller33b13562000-04-04 14:38:59 +10002291 }
Damien Millerfbdeece2003-09-02 22:52:31 +10002292 debug2("channel %d: open confirm rwindow %u rmax %u", c->self,
Damien Miller33b13562000-04-04 14:38:59 +10002293 c->remote_window, c->remote_maxpacket);
2294 }
Damien Miller48b03fc2002-01-22 23:11:40 +11002295 packet_check_eom();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002296}
2297
Ben Lindstrombba81212001-06-25 05:01:22 +00002298static char *
Ben Lindstrom69128662001-05-08 20:07:39 +00002299reason2txt(int reason)
2300{
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00002301 switch (reason) {
Ben Lindstrom69128662001-05-08 20:07:39 +00002302 case SSH2_OPEN_ADMINISTRATIVELY_PROHIBITED:
2303 return "administratively prohibited";
2304 case SSH2_OPEN_CONNECT_FAILED:
2305 return "connect failed";
2306 case SSH2_OPEN_UNKNOWN_CHANNEL_TYPE:
2307 return "unknown channel type";
2308 case SSH2_OPEN_RESOURCE_SHORTAGE:
2309 return "resource shortage";
2310 }
Ben Lindstrome2595442001-06-05 20:01:39 +00002311 return "unknown reason";
Ben Lindstrom69128662001-05-08 20:07:39 +00002312}
2313
Damien Millerd79b4242006-03-31 23:11:44 +11002314/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002315void
Damien Miller630d6f42002-01-22 23:17:30 +11002316channel_input_open_failure(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002317{
Kevin Steves12057502001-02-05 14:54:34 +00002318 int id, reason;
2319 char *msg = NULL, *lang = NULL;
Damien Millerb38eff82000-04-01 11:09:21 +10002320 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002321
Damien Millerb38eff82000-04-01 11:09:21 +10002322 id = packet_get_int();
2323 c = channel_lookup(id);
2324
2325 if (c==NULL || c->type != SSH_CHANNEL_OPENING)
2326 packet_disconnect("Received open failure for "
2327 "non-opening channel %d.", id);
Damien Miller33b13562000-04-04 14:38:59 +10002328 if (compat20) {
Kevin Steves12057502001-02-05 14:54:34 +00002329 reason = packet_get_int();
Ben Lindstromf3436742001-04-29 19:52:00 +00002330 if (!(datafellows & SSH_BUG_OPENFAILURE)) {
Kevin Steves12057502001-02-05 14:54:34 +00002331 msg = packet_get_string(NULL);
2332 lang = packet_get_string(NULL);
2333 }
Damien Miller996acd22003-04-09 20:59:48 +10002334 logit("channel %d: open failed: %s%s%s", id,
Ben Lindstrom69128662001-05-08 20:07:39 +00002335 reason2txt(reason), msg ? ": ": "", msg ? msg : "");
Kevin Steves12057502001-02-05 14:54:34 +00002336 if (msg != NULL)
2337 xfree(msg);
2338 if (lang != NULL)
2339 xfree(lang);
Damien Miller33b13562000-04-04 14:38:59 +10002340 }
Damien Miller48b03fc2002-01-22 23:11:40 +11002341 packet_check_eom();
Damien Miller7a606212009-01-28 16:22:34 +11002342 /* Schedule the channel for cleanup/deletion. */
2343 chan_mark_dead(c);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002344}
2345
Damien Millerd79b4242006-03-31 23:11:44 +11002346/* ARGSUSED */
Damien Miller33b13562000-04-04 14:38:59 +10002347void
Damien Miller630d6f42002-01-22 23:17:30 +11002348channel_input_window_adjust(int type, u_int32_t seq, void *ctxt)
Damien Miller33b13562000-04-04 14:38:59 +10002349{
2350 Channel *c;
Ben Lindstrom4fed2be2002-06-25 23:17:36 +00002351 int id;
2352 u_int adjust;
Damien Miller33b13562000-04-04 14:38:59 +10002353
2354 if (!compat20)
2355 return;
2356
2357 /* Get the channel number and verify it. */
2358 id = packet_get_int();
2359 c = channel_lookup(id);
2360
Damien Millerd47c62a2005-12-13 19:33:57 +11002361 if (c == NULL) {
2362 logit("Received window adjust for non-open channel %d.", id);
Damien Miller33b13562000-04-04 14:38:59 +10002363 return;
2364 }
2365 adjust = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11002366 packet_check_eom();
Ben Lindstrom4fed2be2002-06-25 23:17:36 +00002367 debug2("channel %d: rcvd adjust %u", id, adjust);
Damien Miller33b13562000-04-04 14:38:59 +10002368 c->remote_window += adjust;
2369}
2370
Damien Millerd79b4242006-03-31 23:11:44 +11002371/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002372void
Damien Miller630d6f42002-01-22 23:17:30 +11002373channel_input_port_open(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002374{
Ben Lindstrome9c99912001-06-09 00:41:05 +00002375 Channel *c = NULL;
2376 u_short host_port;
2377 char *host, *originator_string;
Damien Millerbd740252008-05-19 15:37:09 +10002378 int remote_id;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002379
Ben Lindstrome9c99912001-06-09 00:41:05 +00002380 remote_id = packet_get_int();
2381 host = packet_get_string(NULL);
2382 host_port = packet_get_int();
2383
2384 if (packet_get_protocol_flags() & SSH_PROTOFLAG_HOST_IN_FWD_OPEN) {
2385 originator_string = packet_get_string(NULL);
2386 } else {
2387 originator_string = xstrdup("unknown (remote did not supply name)");
2388 }
Damien Miller48b03fc2002-01-22 23:11:40 +11002389 packet_check_eom();
Damien Millerbd740252008-05-19 15:37:09 +10002390 c = channel_connect_to(host, host_port,
2391 "connected socket", originator_string);
Damien Millerb1ca8bb2003-05-14 13:45:42 +10002392 xfree(originator_string);
Damien Millerbd740252008-05-19 15:37:09 +10002393 xfree(host);
Ben Lindstrome9c99912001-06-09 00:41:05 +00002394 if (c == NULL) {
2395 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
2396 packet_put_int(remote_id);
2397 packet_send();
Damien Millerbd740252008-05-19 15:37:09 +10002398 } else
2399 c->remote_id = remote_id;
Ben Lindstrom5744dc42001-04-13 23:28:01 +00002400}
2401
Damien Millerb84886b2008-05-19 15:05:07 +10002402/* ARGSUSED */
2403void
2404channel_input_status_confirm(int type, u_int32_t seq, void *ctxt)
2405{
2406 Channel *c;
2407 struct channel_confirm *cc;
Damien Miller16a73072008-12-08 09:55:25 +11002408 int id;
Damien Millerb84886b2008-05-19 15:05:07 +10002409
2410 /* Reset keepalive timeout */
2411 keep_alive_timeouts = 0;
2412
Damien Miller16a73072008-12-08 09:55:25 +11002413 id = packet_get_int();
Damien Millerb84886b2008-05-19 15:05:07 +10002414 packet_check_eom();
2415
Damien Miller16a73072008-12-08 09:55:25 +11002416 debug2("channel_input_status_confirm: type %d id %d", type, id);
Damien Millerb84886b2008-05-19 15:05:07 +10002417
Damien Miller16a73072008-12-08 09:55:25 +11002418 if ((c = channel_lookup(id)) == NULL) {
2419 logit("channel_input_status_confirm: %d: unknown", id);
Damien Millerb84886b2008-05-19 15:05:07 +10002420 return;
2421 }
2422 ;
2423 if ((cc = TAILQ_FIRST(&c->status_confirms)) == NULL)
2424 return;
2425 cc->cb(type, c, cc->ctx);
2426 TAILQ_REMOVE(&c->status_confirms, cc, entry);
2427 bzero(cc, sizeof(*cc));
2428 xfree(cc);
2429}
Ben Lindstrom5744dc42001-04-13 23:28:01 +00002430
Ben Lindstrome9c99912001-06-09 00:41:05 +00002431/* -- tcp forwarding */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002432
Ben Lindstrom908afed2001-10-03 17:34:59 +00002433void
2434channel_set_af(int af)
2435{
2436 IPv4or6 = af;
2437}
2438
Damien Millerb16461c2002-01-22 23:29:22 +11002439static int
2440channel_setup_fwd_listener(int type, const char *listen_addr, u_short listen_port,
2441 const char *host_to_connect, u_short port_to_connect, int gateway_ports)
Damien Miller0bc1bd82000-11-13 22:57:25 +11002442{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002443 Channel *c;
Damien Miller5e7fd072005-11-05 14:53:39 +11002444 int sock, r, success = 0, wildcard = 0, is_client;
Damien Miller34132e52000-01-14 15:45:46 +11002445 struct addrinfo hints, *ai, *aitop;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002446 const char *host, *addr;
Damien Millerb16461c2002-01-22 23:29:22 +11002447 char ntop[NI_MAXHOST], strport[NI_MAXSERV];
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002448
Damien Millerb16461c2002-01-22 23:29:22 +11002449 host = (type == SSH_CHANNEL_RPORT_LISTENER) ?
2450 listen_addr : host_to_connect;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002451 is_client = (type == SSH_CHANNEL_PORT_LISTENER);
Kevin Steves12057502001-02-05 14:54:34 +00002452
Damien Millerb16461c2002-01-22 23:29:22 +11002453 if (host == NULL) {
2454 error("No forward host name.");
Damien Millera7270302005-07-06 09:36:05 +10002455 return 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002456 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002457 if (strlen(host) > SSH_CHANNEL_PATH_LEN - 1) {
Kevin Steves12057502001-02-05 14:54:34 +00002458 error("Forward host name too long.");
Damien Millera7270302005-07-06 09:36:05 +10002459 return 0;
Kevin Steves12057502001-02-05 14:54:34 +00002460 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002461
Damien Miller5428f641999-11-25 11:54:57 +11002462 /*
Damien Millerf91ee4c2005-03-01 21:24:33 +11002463 * Determine whether or not a port forward listens to loopback,
Darren Tucker47eede72005-03-14 23:08:12 +11002464 * specified address or wildcard. On the client, a specified bind
2465 * address will always override gateway_ports. On the server, a
2466 * gateway_ports of 1 (``yes'') will override the client's
2467 * specification and force a wildcard bind, whereas a value of 2
2468 * (``clientspecified'') will bind to whatever address the client
Damien Millerf91ee4c2005-03-01 21:24:33 +11002469 * asked for.
2470 *
2471 * Special-case listen_addrs are:
2472 *
2473 * "0.0.0.0" -> wildcard v4/v6 if SSH_OLD_FORWARD_ADDR
2474 * "" (empty string), "*" -> wildcard v4/v6
2475 * "localhost" -> loopback v4/v6
2476 */
2477 addr = NULL;
2478 if (listen_addr == NULL) {
2479 /* No address specified: default to gateway_ports setting */
2480 if (gateway_ports)
2481 wildcard = 1;
2482 } else if (gateway_ports || is_client) {
2483 if (((datafellows & SSH_OLD_FORWARD_ADDR) &&
Damien Miller3de49f82008-02-10 22:25:24 +11002484 strcmp(listen_addr, "0.0.0.0") == 0 && is_client == 0) ||
Damien Millerf91ee4c2005-03-01 21:24:33 +11002485 *listen_addr == '\0' || strcmp(listen_addr, "*") == 0 ||
2486 (!is_client && gateway_ports == 1))
2487 wildcard = 1;
2488 else if (strcmp(listen_addr, "localhost") != 0)
2489 addr = listen_addr;
2490 }
2491
2492 debug3("channel_setup_fwd_listener: type %d wildcard %d addr %s",
2493 type, wildcard, (addr == NULL) ? "NULL" : addr);
2494
2495 /*
Damien Miller34132e52000-01-14 15:45:46 +11002496 * getaddrinfo returns a loopback address if the hostname is
2497 * set to NULL and hints.ai_flags is not AI_PASSIVE
Damien Miller5428f641999-11-25 11:54:57 +11002498 */
Damien Miller34132e52000-01-14 15:45:46 +11002499 memset(&hints, 0, sizeof(hints));
2500 hints.ai_family = IPv4or6;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002501 hints.ai_flags = wildcard ? AI_PASSIVE : 0;
Damien Miller34132e52000-01-14 15:45:46 +11002502 hints.ai_socktype = SOCK_STREAM;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002503 snprintf(strport, sizeof strport, "%d", listen_port);
Damien Millerf91ee4c2005-03-01 21:24:33 +11002504 if ((r = getaddrinfo(addr, strport, &hints, &aitop)) != 0) {
2505 if (addr == NULL) {
2506 /* This really shouldn't happen */
2507 packet_disconnect("getaddrinfo: fatal error: %s",
Darren Tucker4abde772007-12-29 02:43:51 +11002508 ssh_gai_strerror(r));
Damien Millerf91ee4c2005-03-01 21:24:33 +11002509 } else {
Damien Millera7270302005-07-06 09:36:05 +10002510 error("channel_setup_fwd_listener: "
Darren Tucker4abde772007-12-29 02:43:51 +11002511 "getaddrinfo(%.64s): %s", addr,
2512 ssh_gai_strerror(r));
Damien Millerf91ee4c2005-03-01 21:24:33 +11002513 }
Damien Millera7270302005-07-06 09:36:05 +10002514 return 0;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002515 }
Damien Miller5428f641999-11-25 11:54:57 +11002516
Damien Miller34132e52000-01-14 15:45:46 +11002517 for (ai = aitop; ai; ai = ai->ai_next) {
2518 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
2519 continue;
2520 if (getnameinfo(ai->ai_addr, ai->ai_addrlen, ntop, sizeof(ntop),
2521 strport, sizeof(strport), NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
Damien Millerb16461c2002-01-22 23:29:22 +11002522 error("channel_setup_fwd_listener: getnameinfo failed");
Damien Miller34132e52000-01-14 15:45:46 +11002523 continue;
2524 }
2525 /* Create a port to listen for the host. */
Damien Miller2372ace2003-05-14 13:42:23 +10002526 sock = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
Damien Miller34132e52000-01-14 15:45:46 +11002527 if (sock < 0) {
2528 /* this is no error since kernel may not support ipv6 */
2529 verbose("socket: %.100s", strerror(errno));
2530 continue;
2531 }
Damien Miller5e7fd072005-11-05 14:53:39 +11002532
2533 channel_set_reuseaddr(sock);
Damien Millere1383ce2002-09-19 11:49:37 +10002534
Damien Miller34132e52000-01-14 15:45:46 +11002535 debug("Local forwarding listening on %s port %s.", ntop, strport);
Damien Miller95def091999-11-25 00:26:21 +11002536
Damien Miller34132e52000-01-14 15:45:46 +11002537 /* Bind the socket to the address. */
2538 if (bind(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
2539 /* address can be in use ipv6 address is already bound */
Damien Miller3c7eeb22000-03-03 22:35:33 +11002540 if (!ai->ai_next)
2541 error("bind: %.100s", strerror(errno));
2542 else
2543 verbose("bind: %.100s", strerror(errno));
Kevin Stevesef4eea92001-02-05 12:42:17 +00002544
Damien Miller34132e52000-01-14 15:45:46 +11002545 close(sock);
2546 continue;
2547 }
2548 /* Start listening for connections on the socket. */
Darren Tucker3175eb92003-12-09 19:15:11 +11002549 if (listen(sock, SSH_LISTEN_BACKLOG) < 0) {
Damien Miller34132e52000-01-14 15:45:46 +11002550 error("listen: %.100s", strerror(errno));
2551 close(sock);
2552 continue;
2553 }
2554 /* Allocate a channel number for the socket. */
Ben Lindstrome9c99912001-06-09 00:41:05 +00002555 c = channel_new("port listener", type, sock, sock, -1,
Damien Millerbd483e72000-04-30 10:00:53 +10002556 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10002557 0, "port listener", 1);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002558 strlcpy(c->path, host, sizeof(c->path));
2559 c->host_port = port_to_connect;
2560 c->listening_port = listen_port;
Damien Miller34132e52000-01-14 15:45:46 +11002561 success = 1;
2562 }
2563 if (success == 0)
Damien Millerb16461c2002-01-22 23:29:22 +11002564 error("channel_setup_fwd_listener: cannot listen to port: %d",
Kevin Steves12057502001-02-05 14:54:34 +00002565 listen_port);
Damien Miller34132e52000-01-14 15:45:46 +11002566 freeaddrinfo(aitop);
Kevin Steves12057502001-02-05 14:54:34 +00002567 return success;
Damien Miller95def091999-11-25 00:26:21 +11002568}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002569
Darren Tuckere7066df2004-05-24 10:18:05 +10002570int
2571channel_cancel_rport_listener(const char *host, u_short port)
2572{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10002573 u_int i;
2574 int found = 0;
Darren Tuckere7066df2004-05-24 10:18:05 +10002575
Darren Tucker47eede72005-03-14 23:08:12 +11002576 for (i = 0; i < channels_alloc; i++) {
Darren Tuckere7066df2004-05-24 10:18:05 +10002577 Channel *c = channels[i];
2578
2579 if (c != NULL && c->type == SSH_CHANNEL_RPORT_LISTENER &&
2580 strncmp(c->path, host, sizeof(c->path)) == 0 &&
Darren Tuckerfc959702004-07-17 16:12:08 +10002581 c->listening_port == port) {
Darren Tuckere6ed8392004-08-29 16:29:44 +10002582 debug2("%s: close channel %d", __func__, i);
Darren Tuckere7066df2004-05-24 10:18:05 +10002583 channel_free(c);
2584 found = 1;
2585 }
2586 }
2587
2588 return (found);
2589}
2590
Damien Millerb16461c2002-01-22 23:29:22 +11002591/* protocol local port fwd, used by ssh (and sshd in v1) */
2592int
Damien Millerf91ee4c2005-03-01 21:24:33 +11002593channel_setup_local_fwd_listener(const char *listen_host, u_short listen_port,
Damien Millerb16461c2002-01-22 23:29:22 +11002594 const char *host_to_connect, u_short port_to_connect, int gateway_ports)
2595{
2596 return channel_setup_fwd_listener(SSH_CHANNEL_PORT_LISTENER,
Damien Millerf91ee4c2005-03-01 21:24:33 +11002597 listen_host, listen_port, host_to_connect, port_to_connect,
2598 gateway_ports);
Damien Millerb16461c2002-01-22 23:29:22 +11002599}
2600
2601/* protocol v2 remote port fwd, used by sshd */
2602int
2603channel_setup_remote_fwd_listener(const char *listen_address,
2604 u_short listen_port, int gateway_ports)
2605{
2606 return channel_setup_fwd_listener(SSH_CHANNEL_RPORT_LISTENER,
2607 listen_address, listen_port, NULL, 0, gateway_ports);
2608}
2609
Damien Miller5428f641999-11-25 11:54:57 +11002610/*
2611 * Initiate forwarding of connections to port "port" on remote host through
2612 * the secure channel to host:port from local side.
2613 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002614
Darren Tuckere7d4b192006-07-12 22:17:10 +10002615int
Damien Millerf91ee4c2005-03-01 21:24:33 +11002616channel_request_remote_forwarding(const char *listen_host, u_short listen_port,
Damien Miller0bc1bd82000-11-13 22:57:25 +11002617 const char *host_to_connect, u_short port_to_connect)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002618{
Damien Millerdff50992002-01-22 23:16:32 +11002619 int type, success = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002620
Damien Miller95def091999-11-25 00:26:21 +11002621 /* Record locally that connection to this host/port is permitted. */
2622 if (num_permitted_opens >= SSH_MAX_FORWARDS_PER_DIRECTION)
2623 fatal("channel_request_remote_forwarding: too many forwards");
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002624
Damien Miller95def091999-11-25 00:26:21 +11002625 /* Send the forward request to the remote side. */
Damien Miller33b13562000-04-04 14:38:59 +10002626 if (compat20) {
Damien Millerf91ee4c2005-03-01 21:24:33 +11002627 const char *address_to_bind;
Damien Miller1ec46262007-01-05 16:26:45 +11002628 if (listen_host == NULL) {
2629 if (datafellows & SSH_BUG_RFWD_ADDR)
2630 address_to_bind = "127.0.0.1";
2631 else
2632 address_to_bind = "localhost";
2633 } else if (*listen_host == '\0' ||
2634 strcmp(listen_host, "*") == 0) {
2635 if (datafellows & SSH_BUG_RFWD_ADDR)
2636 address_to_bind = "0.0.0.0";
2637 else
2638 address_to_bind = "";
2639 } else
Damien Millerf91ee4c2005-03-01 21:24:33 +11002640 address_to_bind = listen_host;
2641
Damien Miller33b13562000-04-04 14:38:59 +10002642 packet_start(SSH2_MSG_GLOBAL_REQUEST);
2643 packet_put_cstring("tcpip-forward");
Damien Miller2797f7f2002-04-23 21:09:44 +10002644 packet_put_char(1); /* boolean: want reply */
Damien Miller33b13562000-04-04 14:38:59 +10002645 packet_put_cstring(address_to_bind);
2646 packet_put_int(listen_port);
Damien Miller0bc1bd82000-11-13 22:57:25 +11002647 packet_send();
2648 packet_write_wait();
2649 /* Assume that server accepts the request */
2650 success = 1;
Damien Miller33b13562000-04-04 14:38:59 +10002651 } else {
2652 packet_start(SSH_CMSG_PORT_FORWARD_REQUEST);
Damien Miller33b13562000-04-04 14:38:59 +10002653 packet_put_int(listen_port);
Damien Miller8bb73be2000-04-19 16:26:12 +10002654 packet_put_cstring(host_to_connect);
2655 packet_put_int(port_to_connect);
Damien Miller33b13562000-04-04 14:38:59 +10002656 packet_send();
2657 packet_write_wait();
Damien Miller0bc1bd82000-11-13 22:57:25 +11002658
2659 /* Wait for response from the remote side. */
Damien Millerdff50992002-01-22 23:16:32 +11002660 type = packet_read();
Damien Miller0bc1bd82000-11-13 22:57:25 +11002661 switch (type) {
2662 case SSH_SMSG_SUCCESS:
2663 success = 1;
2664 break;
2665 case SSH_SMSG_FAILURE:
Damien Miller0bc1bd82000-11-13 22:57:25 +11002666 break;
2667 default:
2668 /* Unknown packet */
2669 packet_disconnect("Protocol error for port forward request:"
2670 "received packet type %d.", type);
2671 }
2672 }
2673 if (success) {
2674 permitted_opens[num_permitted_opens].host_to_connect = xstrdup(host_to_connect);
2675 permitted_opens[num_permitted_opens].port_to_connect = port_to_connect;
2676 permitted_opens[num_permitted_opens].listen_port = listen_port;
2677 num_permitted_opens++;
Damien Miller33b13562000-04-04 14:38:59 +10002678 }
Darren Tuckere7d4b192006-07-12 22:17:10 +10002679 return (success ? 0 : -1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002680}
2681
Damien Miller5428f641999-11-25 11:54:57 +11002682/*
Darren Tuckerfc959702004-07-17 16:12:08 +10002683 * Request cancellation of remote forwarding of connection host:port from
Darren Tuckere7066df2004-05-24 10:18:05 +10002684 * local side.
2685 */
Darren Tuckere7066df2004-05-24 10:18:05 +10002686void
Damien Millerf91ee4c2005-03-01 21:24:33 +11002687channel_request_rforward_cancel(const char *host, u_short port)
Darren Tuckere7066df2004-05-24 10:18:05 +10002688{
2689 int i;
Darren Tuckere7066df2004-05-24 10:18:05 +10002690
2691 if (!compat20)
2692 return;
2693
2694 for (i = 0; i < num_permitted_opens; i++) {
Darren Tuckerfc959702004-07-17 16:12:08 +10002695 if (permitted_opens[i].host_to_connect != NULL &&
Darren Tuckere7066df2004-05-24 10:18:05 +10002696 permitted_opens[i].listen_port == port)
2697 break;
2698 }
2699 if (i >= num_permitted_opens) {
2700 debug("%s: requested forward not found", __func__);
2701 return;
2702 }
2703 packet_start(SSH2_MSG_GLOBAL_REQUEST);
2704 packet_put_cstring("cancel-tcpip-forward");
2705 packet_put_char(0);
Damien Millerf91ee4c2005-03-01 21:24:33 +11002706 packet_put_cstring(host == NULL ? "" : host);
Darren Tuckere7066df2004-05-24 10:18:05 +10002707 packet_put_int(port);
2708 packet_send();
2709
2710 permitted_opens[i].listen_port = 0;
2711 permitted_opens[i].port_to_connect = 0;
Damien Miller0a0176e2005-11-05 15:07:59 +11002712 xfree(permitted_opens[i].host_to_connect);
Darren Tuckere7066df2004-05-24 10:18:05 +10002713 permitted_opens[i].host_to_connect = NULL;
2714}
2715
2716/*
Damien Miller5428f641999-11-25 11:54:57 +11002717 * This is called after receiving CHANNEL_FORWARDING_REQUEST. This initates
2718 * listening for the port, and sends back a success reply (or disconnect
Darren Tuckere7d4b192006-07-12 22:17:10 +10002719 * message if there was an error).
Damien Miller5428f641999-11-25 11:54:57 +11002720 */
Darren Tuckere7d4b192006-07-12 22:17:10 +10002721int
Damien Millere247cc42000-05-07 12:03:14 +10002722channel_input_port_forward_request(int is_root, int gateway_ports)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002723{
Damien Milleraae6c611999-12-06 11:47:28 +11002724 u_short port, host_port;
Darren Tuckere7d4b192006-07-12 22:17:10 +10002725 int success = 0;
Damien Miller95def091999-11-25 00:26:21 +11002726 char *hostname;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002727
Damien Miller95def091999-11-25 00:26:21 +11002728 /* Get arguments from the packet. */
2729 port = packet_get_int();
2730 hostname = packet_get_string(NULL);
2731 host_port = packet_get_int();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002732
Damien Millerbac2d8a2000-09-05 16:13:06 +11002733#ifndef HAVE_CYGWIN
Damien Miller5428f641999-11-25 11:54:57 +11002734 /*
2735 * Check that an unprivileged user is not trying to forward a
2736 * privileged port.
2737 */
Damien Miller95def091999-11-25 00:26:21 +11002738 if (port < IPPORT_RESERVED && !is_root)
Darren Tucker9189ff82003-07-03 13:52:04 +10002739 packet_disconnect(
2740 "Requested forwarding of port %d but user is not root.",
2741 port);
2742 if (host_port == 0)
2743 packet_disconnect("Dynamic forwarding denied.");
Damien Millerbac2d8a2000-09-05 16:13:06 +11002744#endif
Darren Tucker9189ff82003-07-03 13:52:04 +10002745
Damien Miller0bc1bd82000-11-13 22:57:25 +11002746 /* Initiate forwarding */
Darren Tuckere7d4b192006-07-12 22:17:10 +10002747 success = channel_setup_local_fwd_listener(NULL, port, hostname,
Damien Millerf91ee4c2005-03-01 21:24:33 +11002748 host_port, gateway_ports);
Damien Miller95def091999-11-25 00:26:21 +11002749
2750 /* Free the argument string. */
2751 xfree(hostname);
Darren Tuckere7d4b192006-07-12 22:17:10 +10002752
2753 return (success ? 0 : -1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002754}
2755
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002756/*
2757 * Permits opening to any host/port if permitted_opens[] is empty. This is
2758 * usually called by the server, because the user could connect to any port
2759 * anyway, and the server has no way to know but to trust the client anyway.
2760 */
2761void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00002762channel_permit_all_opens(void)
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002763{
2764 if (num_permitted_opens == 0)
2765 all_opens_permitted = 1;
2766}
2767
Ben Lindstroma3700052001-04-05 23:26:32 +00002768void
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002769channel_add_permitted_opens(char *host, int port)
2770{
2771 if (num_permitted_opens >= SSH_MAX_FORWARDS_PER_DIRECTION)
Darren Tuckere7d4b192006-07-12 22:17:10 +10002772 fatal("channel_add_permitted_opens: too many forwards");
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002773 debug("allow port forwarding to host %s port %d", host, port);
2774
2775 permitted_opens[num_permitted_opens].host_to_connect = xstrdup(host);
2776 permitted_opens[num_permitted_opens].port_to_connect = port;
2777 num_permitted_opens++;
2778
2779 all_opens_permitted = 0;
2780}
2781
Damien Millera765cf42006-07-24 14:08:13 +10002782int
Damien Miller9b439df2006-07-24 14:04:00 +10002783channel_add_adm_permitted_opens(char *host, int port)
2784{
2785 if (num_adm_permitted_opens >= SSH_MAX_FORWARDS_PER_DIRECTION)
2786 fatal("channel_add_adm_permitted_opens: too many forwards");
Damien Millera765cf42006-07-24 14:08:13 +10002787 debug("config allows port forwarding to host %s port %d", host, port);
Damien Miller9b439df2006-07-24 14:04:00 +10002788
2789 permitted_adm_opens[num_adm_permitted_opens].host_to_connect
2790 = xstrdup(host);
2791 permitted_adm_opens[num_adm_permitted_opens].port_to_connect = port;
Damien Millera765cf42006-07-24 14:08:13 +10002792 return ++num_adm_permitted_opens;
Damien Miller9b439df2006-07-24 14:04:00 +10002793}
2794
2795void
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002796channel_clear_permitted_opens(void)
2797{
2798 int i;
2799
2800 for (i = 0; i < num_permitted_opens; i++)
Darren Tuckere7066df2004-05-24 10:18:05 +10002801 if (permitted_opens[i].host_to_connect != NULL)
2802 xfree(permitted_opens[i].host_to_connect);
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002803 num_permitted_opens = 0;
Damien Miller9b439df2006-07-24 14:04:00 +10002804}
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002805
Damien Miller9b439df2006-07-24 14:04:00 +10002806void
2807channel_clear_adm_permitted_opens(void)
2808{
2809 int i;
2810
2811 for (i = 0; i < num_adm_permitted_opens; i++)
2812 if (permitted_adm_opens[i].host_to_connect != NULL)
2813 xfree(permitted_adm_opens[i].host_to_connect);
2814 num_adm_permitted_opens = 0;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002815}
2816
Darren Tuckere7140f22008-06-10 23:01:51 +10002817void
2818channel_print_adm_permitted_opens(void)
2819{
Damien Miller6ef17492008-07-16 22:42:06 +10002820 int i;
Darren Tuckere7140f22008-06-10 23:01:51 +10002821
Damien Millerb53d8a12009-01-28 16:13:04 +11002822 printf("permitopen");
Darren Tucker22662e82008-11-11 16:40:22 +11002823 if (num_adm_permitted_opens == 0) {
Damien Millerb53d8a12009-01-28 16:13:04 +11002824 printf(" any\n");
Darren Tucker22662e82008-11-11 16:40:22 +11002825 return;
2826 }
Darren Tuckere7140f22008-06-10 23:01:51 +10002827 for (i = 0; i < num_adm_permitted_opens; i++)
2828 if (permitted_adm_opens[i].host_to_connect != NULL)
2829 printf(" %s:%d", permitted_adm_opens[i].host_to_connect,
2830 permitted_adm_opens[i].port_to_connect);
Damien Millerb53d8a12009-01-28 16:13:04 +11002831 printf("\n");
Darren Tuckere7140f22008-06-10 23:01:51 +10002832}
2833
Damien Millerbd740252008-05-19 15:37:09 +10002834/* Try to start non-blocking connect to next host in cctx list */
Ben Lindstrombba81212001-06-25 05:01:22 +00002835static int
Damien Millerbd740252008-05-19 15:37:09 +10002836connect_next(struct channel_connect *cctx)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002837{
Damien Millerbd740252008-05-19 15:37:09 +10002838 int sock, saved_errno;
Damien Miller34132e52000-01-14 15:45:46 +11002839 char ntop[NI_MAXHOST], strport[NI_MAXSERV];
Damien Miller95def091999-11-25 00:26:21 +11002840
Damien Millerbd740252008-05-19 15:37:09 +10002841 for (; cctx->ai; cctx->ai = cctx->ai->ai_next) {
2842 if (cctx->ai->ai_family != AF_INET &&
2843 cctx->ai->ai_family != AF_INET6)
Damien Miller34132e52000-01-14 15:45:46 +11002844 continue;
Damien Millerbd740252008-05-19 15:37:09 +10002845 if (getnameinfo(cctx->ai->ai_addr, cctx->ai->ai_addrlen,
2846 ntop, sizeof(ntop), strport, sizeof(strport),
2847 NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
2848 error("connect_next: getnameinfo failed");
Damien Miller34132e52000-01-14 15:45:46 +11002849 continue;
2850 }
Damien Millerbd740252008-05-19 15:37:09 +10002851 if ((sock = socket(cctx->ai->ai_family, cctx->ai->ai_socktype,
2852 cctx->ai->ai_protocol)) == -1) {
2853 if (cctx->ai->ai_next == NULL)
Damien Millerb46b9f32003-01-10 21:45:12 +11002854 error("socket: %.100s", strerror(errno));
2855 else
2856 verbose("socket: %.100s", strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11002857 continue;
2858 }
Damien Miller232711f2004-06-15 10:35:30 +10002859 if (set_nonblock(sock) == -1)
2860 fatal("%s: set_nonblock(%d)", __func__, sock);
Damien Millerbd740252008-05-19 15:37:09 +10002861 if (connect(sock, cctx->ai->ai_addr,
2862 cctx->ai->ai_addrlen) == -1 && errno != EINPROGRESS) {
2863 debug("connect_next: host %.100s ([%.100s]:%s): "
2864 "%.100s", cctx->host, ntop, strport,
Damien Miller34132e52000-01-14 15:45:46 +11002865 strerror(errno));
Damien Millerbd740252008-05-19 15:37:09 +10002866 saved_errno = errno;
Damien Miller34132e52000-01-14 15:45:46 +11002867 close(sock);
Damien Millerbd740252008-05-19 15:37:09 +10002868 errno = saved_errno;
Kevin Stevesef4eea92001-02-05 12:42:17 +00002869 continue; /* fail -- try next */
Damien Miller34132e52000-01-14 15:45:46 +11002870 }
Damien Millerbd740252008-05-19 15:37:09 +10002871 debug("connect_next: host %.100s ([%.100s]:%s) "
2872 "in progress, fd=%d", cctx->host, ntop, strport, sock);
2873 cctx->ai = cctx->ai->ai_next;
2874 set_nodelay(sock);
2875 return sock;
Damien Miller34132e52000-01-14 15:45:46 +11002876 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11002877 return -1;
2878}
Damien Millerb38eff82000-04-01 11:09:21 +10002879
Damien Millerbd740252008-05-19 15:37:09 +10002880static void
2881channel_connect_ctx_free(struct channel_connect *cctx)
2882{
2883 xfree(cctx->host);
2884 if (cctx->aitop)
2885 freeaddrinfo(cctx->aitop);
2886 bzero(cctx, sizeof(*cctx));
2887 cctx->host = NULL;
2888 cctx->ai = cctx->aitop = NULL;
2889}
2890
2891/* Return CONNECTING channel to remote host, port */
2892static Channel *
2893connect_to(const char *host, u_short port, char *ctype, char *rname)
2894{
2895 struct addrinfo hints;
2896 int gaierr;
2897 int sock = -1;
2898 char strport[NI_MAXSERV];
2899 struct channel_connect cctx;
2900 Channel *c;
2901
Damien Miller2bcb8662008-07-12 17:12:29 +10002902 memset(&cctx, 0, sizeof(cctx));
Damien Millerbd740252008-05-19 15:37:09 +10002903 memset(&hints, 0, sizeof(hints));
2904 hints.ai_family = IPv4or6;
2905 hints.ai_socktype = SOCK_STREAM;
2906 snprintf(strport, sizeof strport, "%d", port);
2907 if ((gaierr = getaddrinfo(host, strport, &hints, &cctx.aitop)) != 0) {
2908 error("connect_to %.100s: unknown host (%s)", host,
2909 ssh_gai_strerror(gaierr));
2910 return NULL;
2911 }
2912
2913 cctx.host = xstrdup(host);
2914 cctx.port = port;
2915 cctx.ai = cctx.aitop;
2916
2917 if ((sock = connect_next(&cctx)) == -1) {
2918 error("connect to %.100s port %d failed: %s",
2919 host, port, strerror(errno));
2920 channel_connect_ctx_free(&cctx);
2921 return NULL;
2922 }
2923 c = channel_new(ctype, SSH_CHANNEL_CONNECTING, sock, sock, -1,
2924 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT, 0, rname, 1);
2925 c->connect_ctx = cctx;
2926 return c;
2927}
2928
2929Channel *
2930channel_connect_by_listen_address(u_short listen_port, char *ctype, char *rname)
2931{
2932 int i;
2933
2934 for (i = 0; i < num_permitted_opens; i++) {
2935 if (permitted_opens[i].host_to_connect != NULL &&
2936 permitted_opens[i].listen_port == listen_port) {
2937 return connect_to(
2938 permitted_opens[i].host_to_connect,
2939 permitted_opens[i].port_to_connect, ctype, rname);
2940 }
2941 }
2942 error("WARNING: Server requests forwarding for unknown listen_port %d",
2943 listen_port);
2944 return NULL;
2945}
2946
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002947/* Check if connecting to that port is permitted and connect. */
Damien Millerbd740252008-05-19 15:37:09 +10002948Channel *
2949channel_connect_to(const char *host, u_short port, char *ctype, char *rname)
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002950{
Damien Miller9b439df2006-07-24 14:04:00 +10002951 int i, permit, permit_adm = 1;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002952
2953 permit = all_opens_permitted;
2954 if (!permit) {
2955 for (i = 0; i < num_permitted_opens; i++)
Darren Tuckere7066df2004-05-24 10:18:05 +10002956 if (permitted_opens[i].host_to_connect != NULL &&
2957 permitted_opens[i].port_to_connect == port &&
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002958 strcmp(permitted_opens[i].host_to_connect, host) == 0)
2959 permit = 1;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002960 }
Damien Miller9b439df2006-07-24 14:04:00 +10002961
2962 if (num_adm_permitted_opens > 0) {
2963 permit_adm = 0;
2964 for (i = 0; i < num_adm_permitted_opens; i++)
2965 if (permitted_adm_opens[i].host_to_connect != NULL &&
2966 permitted_adm_opens[i].port_to_connect == port &&
2967 strcmp(permitted_adm_opens[i].host_to_connect, host)
2968 == 0)
2969 permit_adm = 1;
2970 }
2971
2972 if (!permit || !permit_adm) {
Damien Miller996acd22003-04-09 20:59:48 +10002973 logit("Received request to connect to host %.100s port %d, "
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002974 "but the request was denied.", host, port);
Damien Millerbd740252008-05-19 15:37:09 +10002975 return NULL;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002976 }
Damien Millerbd740252008-05-19 15:37:09 +10002977 return connect_to(host, port, ctype, rname);
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002978}
2979
Damien Miller0e220db2004-06-15 10:34:08 +10002980void
2981channel_send_window_changes(void)
2982{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10002983 u_int i;
Damien Miller0e220db2004-06-15 10:34:08 +10002984 struct winsize ws;
2985
2986 for (i = 0; i < channels_alloc; i++) {
Darren Tucker47eede72005-03-14 23:08:12 +11002987 if (channels[i] == NULL || !channels[i]->client_tty ||
Damien Miller0e220db2004-06-15 10:34:08 +10002988 channels[i]->type != SSH_CHANNEL_OPEN)
2989 continue;
2990 if (ioctl(channels[i]->rfd, TIOCGWINSZ, &ws) < 0)
2991 continue;
2992 channel_request_start(i, "window-change", 0);
Damien Miller71a73672006-03-26 14:04:36 +11002993 packet_put_int((u_int)ws.ws_col);
2994 packet_put_int((u_int)ws.ws_row);
2995 packet_put_int((u_int)ws.ws_xpixel);
2996 packet_put_int((u_int)ws.ws_ypixel);
Damien Miller0e220db2004-06-15 10:34:08 +10002997 packet_send();
2998 }
2999}
3000
Ben Lindstrome9c99912001-06-09 00:41:05 +00003001/* -- X11 forwarding */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003002
Damien Miller5428f641999-11-25 11:54:57 +11003003/*
3004 * Creates an internet domain socket for listening for X11 connections.
Ben Lindstroma9d2c892002-06-23 21:48:28 +00003005 * Returns 0 and a suitable display number for the DISPLAY variable
3006 * stored in display_numberp , or -1 if an error occurs.
Damien Miller5428f641999-11-25 11:54:57 +11003007 */
Kevin Steves366298c2001-12-19 17:58:01 +00003008int
Damien Miller95c249f2002-02-05 12:11:34 +11003009x11_create_display_inet(int x11_display_offset, int x11_use_localhost,
Damien Miller2b9b0452005-07-17 17:19:24 +10003010 int single_connection, u_int *display_numberp, int **chanids)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003011{
Damien Millere7378562001-12-21 14:58:35 +11003012 Channel *nc = NULL;
Damien Milleraae6c611999-12-06 11:47:28 +11003013 int display_number, sock;
3014 u_short port;
Damien Miller34132e52000-01-14 15:45:46 +11003015 struct addrinfo hints, *ai, *aitop;
3016 char strport[NI_MAXSERV];
3017 int gaierr, n, num_socks = 0, socks[NUM_SOCKS];
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003018
Darren Tuckerd3d0fa12005-10-03 18:03:05 +10003019 if (chanids == NULL)
3020 return -1;
3021
Damien Millera34a28b1999-12-14 10:47:15 +11003022 for (display_number = x11_display_offset;
Damien Miller9f0f5c62001-12-21 14:45:46 +11003023 display_number < MAX_DISPLAYS;
3024 display_number++) {
Damien Miller95def091999-11-25 00:26:21 +11003025 port = 6000 + display_number;
Damien Miller34132e52000-01-14 15:45:46 +11003026 memset(&hints, 0, sizeof(hints));
3027 hints.ai_family = IPv4or6;
Damien Miller95c249f2002-02-05 12:11:34 +11003028 hints.ai_flags = x11_use_localhost ? 0: AI_PASSIVE;
Damien Miller34132e52000-01-14 15:45:46 +11003029 hints.ai_socktype = SOCK_STREAM;
3030 snprintf(strport, sizeof strport, "%d", port);
3031 if ((gaierr = getaddrinfo(NULL, strport, &hints, &aitop)) != 0) {
Darren Tucker4abde772007-12-29 02:43:51 +11003032 error("getaddrinfo: %.100s", ssh_gai_strerror(gaierr));
Kevin Steves366298c2001-12-19 17:58:01 +00003033 return -1;
Damien Miller95def091999-11-25 00:26:21 +11003034 }
Damien Miller34132e52000-01-14 15:45:46 +11003035 for (ai = aitop; ai; ai = ai->ai_next) {
3036 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
3037 continue;
Damien Miller2372ace2003-05-14 13:42:23 +10003038 sock = socket(ai->ai_family, ai->ai_socktype,
3039 ai->ai_protocol);
Damien Miller34132e52000-01-14 15:45:46 +11003040 if (sock < 0) {
Damien Miller89d97962000-10-14 12:37:19 +11003041 if ((errno != EINVAL) && (errno != EAFNOSUPPORT)) {
Damien Millere2192732000-01-17 13:22:55 +11003042 error("socket: %.100s", strerror(errno));
Damien Miller3e4dffb2004-06-15 10:27:15 +10003043 freeaddrinfo(aitop);
Kevin Steves366298c2001-12-19 17:58:01 +00003044 return -1;
Damien Millere2192732000-01-17 13:22:55 +11003045 } else {
Damien Millercb5e44a2000-09-29 12:12:36 +11003046 debug("x11_create_display_inet: Socket family %d not supported",
3047 ai->ai_family);
Damien Millere2192732000-01-17 13:22:55 +11003048 continue;
3049 }
Damien Miller34132e52000-01-14 15:45:46 +11003050 }
Kevin Stevesdf75dd22002-06-04 20:52:19 +00003051#ifdef IPV6_V6ONLY
3052 if (ai->ai_family == AF_INET6) {
3053 int on = 1;
3054 if (setsockopt(sock, IPPROTO_IPV6, IPV6_V6ONLY, &on, sizeof(on)) < 0)
3055 error("setsockopt IPV6_V6ONLY: %.100s", strerror(errno));
3056 }
3057#endif
Damien Miller4401e452008-06-12 06:05:12 +10003058 if (x11_use_localhost)
3059 channel_set_reuseaddr(sock);
Damien Miller34132e52000-01-14 15:45:46 +11003060 if (bind(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +10003061 debug2("bind port %d: %.100s", port, strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11003062 close(sock);
Damien Miller3c7eeb22000-03-03 22:35:33 +11003063
Damien Miller34132e52000-01-14 15:45:46 +11003064 for (n = 0; n < num_socks; n++) {
Damien Miller34132e52000-01-14 15:45:46 +11003065 close(socks[n]);
3066 }
3067 num_socks = 0;
3068 break;
3069 }
3070 socks[num_socks++] = sock;
3071 if (num_socks == NUM_SOCKS)
3072 break;
Damien Miller95def091999-11-25 00:26:21 +11003073 }
Ben Lindstrom87b147f2001-01-25 00:41:12 +00003074 freeaddrinfo(aitop);
Damien Miller34132e52000-01-14 15:45:46 +11003075 if (num_socks > 0)
3076 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003077 }
Damien Miller95def091999-11-25 00:26:21 +11003078 if (display_number >= MAX_DISPLAYS) {
3079 error("Failed to allocate internet-domain X11 display socket.");
Kevin Steves366298c2001-12-19 17:58:01 +00003080 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003081 }
Damien Miller95def091999-11-25 00:26:21 +11003082 /* Start listening for connections on the socket. */
Damien Miller34132e52000-01-14 15:45:46 +11003083 for (n = 0; n < num_socks; n++) {
3084 sock = socks[n];
Darren Tucker3175eb92003-12-09 19:15:11 +11003085 if (listen(sock, SSH_LISTEN_BACKLOG) < 0) {
Damien Miller34132e52000-01-14 15:45:46 +11003086 error("listen: %.100s", strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11003087 close(sock);
Kevin Steves366298c2001-12-19 17:58:01 +00003088 return -1;
Damien Miller34132e52000-01-14 15:45:46 +11003089 }
Damien Miller95def091999-11-25 00:26:21 +11003090 }
Damien Miller34132e52000-01-14 15:45:46 +11003091
Damien Miller34132e52000-01-14 15:45:46 +11003092 /* Allocate a channel for each socket. */
Damien Miller07d86be2006-03-26 14:19:21 +11003093 *chanids = xcalloc(num_socks + 1, sizeof(**chanids));
Damien Miller34132e52000-01-14 15:45:46 +11003094 for (n = 0; n < num_socks; n++) {
3095 sock = socks[n];
Damien Millere7378562001-12-21 14:58:35 +11003096 nc = channel_new("x11 listener",
Damien Millerbd483e72000-04-30 10:00:53 +10003097 SSH_CHANNEL_X11_LISTENER, sock, sock, -1,
3098 CHAN_X11_WINDOW_DEFAULT, CHAN_X11_PACKET_DEFAULT,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10003099 0, "X11 inet listener", 1);
Damien Miller699d0032002-02-08 22:07:16 +11003100 nc->single_connection = single_connection;
Darren Tuckerd3d0fa12005-10-03 18:03:05 +10003101 (*chanids)[n] = nc->self;
Damien Miller34132e52000-01-14 15:45:46 +11003102 }
Darren Tuckerd3d0fa12005-10-03 18:03:05 +10003103 (*chanids)[n] = -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003104
Kevin Steves366298c2001-12-19 17:58:01 +00003105 /* Return the display number for the DISPLAY environment variable. */
Ben Lindstroma9d2c892002-06-23 21:48:28 +00003106 *display_numberp = display_number;
3107 return (0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003108}
3109
Ben Lindstrombba81212001-06-25 05:01:22 +00003110static int
Damien Miller819dbb62009-01-21 16:46:26 +11003111connect_local_xsocket_path(const char *pathname)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003112{
Damien Miller95def091999-11-25 00:26:21 +11003113 int sock;
3114 struct sockaddr_un addr;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003115
Damien Miller3afe3752001-12-21 12:39:51 +11003116 sock = socket(AF_UNIX, SOCK_STREAM, 0);
3117 if (sock < 0)
3118 error("socket: %.100s", strerror(errno));
3119 memset(&addr, 0, sizeof(addr));
3120 addr.sun_family = AF_UNIX;
Damien Miller819dbb62009-01-21 16:46:26 +11003121 strlcpy(addr.sun_path, pathname, sizeof addr.sun_path);
Damien Miller90967402006-03-26 14:07:26 +11003122 if (connect(sock, (struct sockaddr *)&addr, sizeof(addr)) == 0)
Damien Miller3afe3752001-12-21 12:39:51 +11003123 return sock;
3124 close(sock);
Damien Miller95def091999-11-25 00:26:21 +11003125 error("connect %.100s: %.100s", addr.sun_path, strerror(errno));
3126 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003127}
3128
Damien Miller819dbb62009-01-21 16:46:26 +11003129static int
3130connect_local_xsocket(u_int dnr)
3131{
3132 char buf[1024];
3133 snprintf(buf, sizeof buf, _PATH_UNIX_X, dnr);
3134 return connect_local_xsocket_path(buf);
3135}
3136
Damien Millerbd483e72000-04-30 10:00:53 +10003137int
3138x11_connect_display(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003139{
Damien Miller57c4e872006-03-31 23:11:07 +11003140 u_int display_number;
Damien Miller95def091999-11-25 00:26:21 +11003141 const char *display;
Damien Millerbd483e72000-04-30 10:00:53 +10003142 char buf[1024], *cp;
Damien Miller34132e52000-01-14 15:45:46 +11003143 struct addrinfo hints, *ai, *aitop;
3144 char strport[NI_MAXSERV];
Damien Miller57c4e872006-03-31 23:11:07 +11003145 int gaierr, sock = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003146
Damien Miller95def091999-11-25 00:26:21 +11003147 /* Try to open a socket for the local X server. */
3148 display = getenv("DISPLAY");
3149 if (!display) {
3150 error("DISPLAY not set.");
Damien Millerbd483e72000-04-30 10:00:53 +10003151 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003152 }
Damien Miller5428f641999-11-25 11:54:57 +11003153 /*
3154 * Now we decode the value of the DISPLAY variable and make a
3155 * connection to the real X server.
3156 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003157
Damien Miller819dbb62009-01-21 16:46:26 +11003158 /* Check if the display is from launchd. */
3159#ifdef __APPLE__
3160 if (strncmp(display, "/tmp/launch", 11) == 0) {
3161 sock = connect_local_xsocket_path(display);
3162 if (sock < 0)
3163 return -1;
3164
3165 /* OK, we now have a connection to the display. */
3166 return sock;
3167 }
3168#endif
Damien Miller5428f641999-11-25 11:54:57 +11003169 /*
3170 * Check if it is a unix domain socket. Unix domain displays are in
3171 * one of the following formats: unix:d[.s], :d[.s], ::d[.s]
3172 */
Damien Miller95def091999-11-25 00:26:21 +11003173 if (strncmp(display, "unix:", 5) == 0 ||
3174 display[0] == ':') {
3175 /* Connect to the unix domain socket. */
Damien Miller57c4e872006-03-31 23:11:07 +11003176 if (sscanf(strrchr(display, ':') + 1, "%u", &display_number) != 1) {
Damien Miller95def091999-11-25 00:26:21 +11003177 error("Could not parse display number from DISPLAY: %.100s",
Damien Miller9f0f5c62001-12-21 14:45:46 +11003178 display);
Damien Millerbd483e72000-04-30 10:00:53 +10003179 return -1;
Damien Miller95def091999-11-25 00:26:21 +11003180 }
3181 /* Create a socket. */
3182 sock = connect_local_xsocket(display_number);
3183 if (sock < 0)
Damien Millerbd483e72000-04-30 10:00:53 +10003184 return -1;
Damien Miller95def091999-11-25 00:26:21 +11003185
3186 /* OK, we now have a connection to the display. */
Damien Millerbd483e72000-04-30 10:00:53 +10003187 return sock;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003188 }
Damien Miller5428f641999-11-25 11:54:57 +11003189 /*
3190 * Connect to an inet socket. The DISPLAY value is supposedly
3191 * hostname:d[.s], where hostname may also be numeric IP address.
3192 */
Ben Lindstromccd8d072001-12-07 17:26:48 +00003193 strlcpy(buf, display, sizeof(buf));
Damien Miller95def091999-11-25 00:26:21 +11003194 cp = strchr(buf, ':');
3195 if (!cp) {
3196 error("Could not find ':' in DISPLAY: %.100s", display);
Damien Millerbd483e72000-04-30 10:00:53 +10003197 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003198 }
Damien Miller95def091999-11-25 00:26:21 +11003199 *cp = 0;
Damien Miller5428f641999-11-25 11:54:57 +11003200 /* buf now contains the host name. But first we parse the display number. */
Damien Miller57c4e872006-03-31 23:11:07 +11003201 if (sscanf(cp + 1, "%u", &display_number) != 1) {
Damien Miller95def091999-11-25 00:26:21 +11003202 error("Could not parse display number from DISPLAY: %.100s",
Damien Miller9f0f5c62001-12-21 14:45:46 +11003203 display);
Damien Millerbd483e72000-04-30 10:00:53 +10003204 return -1;
Damien Miller95def091999-11-25 00:26:21 +11003205 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003206
Damien Miller34132e52000-01-14 15:45:46 +11003207 /* Look up the host address */
3208 memset(&hints, 0, sizeof(hints));
3209 hints.ai_family = IPv4or6;
3210 hints.ai_socktype = SOCK_STREAM;
Damien Miller57c4e872006-03-31 23:11:07 +11003211 snprintf(strport, sizeof strport, "%u", 6000 + display_number);
Damien Miller34132e52000-01-14 15:45:46 +11003212 if ((gaierr = getaddrinfo(buf, strport, &hints, &aitop)) != 0) {
Darren Tucker4abde772007-12-29 02:43:51 +11003213 error("%.100s: unknown host. (%s)", buf,
3214 ssh_gai_strerror(gaierr));
Damien Millerbd483e72000-04-30 10:00:53 +10003215 return -1;
Damien Miller95def091999-11-25 00:26:21 +11003216 }
Damien Miller34132e52000-01-14 15:45:46 +11003217 for (ai = aitop; ai; ai = ai->ai_next) {
3218 /* Create a socket. */
Damien Miller2372ace2003-05-14 13:42:23 +10003219 sock = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
Damien Miller34132e52000-01-14 15:45:46 +11003220 if (sock < 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +10003221 debug2("socket: %.100s", strerror(errno));
Damien Millerb38eff82000-04-01 11:09:21 +10003222 continue;
3223 }
3224 /* Connect it to the display. */
3225 if (connect(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
Damien Miller57c4e872006-03-31 23:11:07 +11003226 debug2("connect %.100s port %u: %.100s", buf,
Damien Millerb38eff82000-04-01 11:09:21 +10003227 6000 + display_number, strerror(errno));
3228 close(sock);
3229 continue;
3230 }
3231 /* Success */
3232 break;
Damien Miller34132e52000-01-14 15:45:46 +11003233 }
Damien Miller34132e52000-01-14 15:45:46 +11003234 freeaddrinfo(aitop);
3235 if (!ai) {
Damien Miller57c4e872006-03-31 23:11:07 +11003236 error("connect %.100s port %u: %.100s", buf, 6000 + display_number,
Damien Miller34132e52000-01-14 15:45:46 +11003237 strerror(errno));
Damien Millerbd483e72000-04-30 10:00:53 +10003238 return -1;
Damien Miller95def091999-11-25 00:26:21 +11003239 }
Damien Miller398e1cf2002-02-05 11:52:13 +11003240 set_nodelay(sock);
Damien Millerbd483e72000-04-30 10:00:53 +10003241 return sock;
3242}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003243
Damien Millerbd483e72000-04-30 10:00:53 +10003244/*
3245 * This is called when SSH_SMSG_X11_OPEN is received. The packet contains
3246 * the remote channel number. We should do whatever we want, and respond
3247 * with either SSH_MSG_OPEN_CONFIRMATION or SSH_MSG_OPEN_FAILURE.
3248 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003249
Damien Miller8473dd82006-07-24 14:08:32 +10003250/* ARGSUSED */
Damien Millerbd483e72000-04-30 10:00:53 +10003251void
Damien Miller630d6f42002-01-22 23:17:30 +11003252x11_input_open(int type, u_int32_t seq, void *ctxt)
Damien Millerbd483e72000-04-30 10:00:53 +10003253{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003254 Channel *c = NULL;
3255 int remote_id, sock = 0;
Damien Millerbd483e72000-04-30 10:00:53 +10003256 char *remote_host;
Damien Millerbd483e72000-04-30 10:00:53 +10003257
3258 debug("Received X11 open request.");
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003259
3260 remote_id = packet_get_int();
Ben Lindstrome9c99912001-06-09 00:41:05 +00003261
3262 if (packet_get_protocol_flags() & SSH_PROTOFLAG_HOST_IN_FWD_OPEN) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003263 remote_host = packet_get_string(NULL);
3264 } else {
3265 remote_host = xstrdup("unknown (remote did not supply name)");
3266 }
Damien Miller48b03fc2002-01-22 23:11:40 +11003267 packet_check_eom();
Damien Millerbd483e72000-04-30 10:00:53 +10003268
3269 /* Obtain a connection to the real X display. */
3270 sock = x11_connect_display();
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003271 if (sock != -1) {
3272 /* Allocate a channel for this connection. */
3273 c = channel_new("connected x11 socket",
3274 SSH_CHANNEL_X11_OPEN, sock, sock, -1, 0, 0, 0,
3275 remote_host, 1);
Damien Miller699d0032002-02-08 22:07:16 +11003276 c->remote_id = remote_id;
3277 c->force_drain = 1;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003278 }
Damien Millerb1ca8bb2003-05-14 13:45:42 +10003279 xfree(remote_host);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003280 if (c == NULL) {
Damien Millerbd483e72000-04-30 10:00:53 +10003281 /* Send refusal to the remote host. */
3282 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003283 packet_put_int(remote_id);
Damien Millerbd483e72000-04-30 10:00:53 +10003284 } else {
Damien Millerbd483e72000-04-30 10:00:53 +10003285 /* Send a confirmation to the remote host. */
3286 packet_start(SSH_MSG_CHANNEL_OPEN_CONFIRMATION);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003287 packet_put_int(remote_id);
3288 packet_put_int(c->self);
Damien Millerbd483e72000-04-30 10:00:53 +10003289 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003290 packet_send();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003291}
3292
Damien Miller69b69aa2000-10-28 14:19:58 +11003293/* dummy protocol handler that denies SSH-1 requests (agent/x11) */
Damien Miller8473dd82006-07-24 14:08:32 +10003294/* ARGSUSED */
Damien Miller69b69aa2000-10-28 14:19:58 +11003295void
Damien Miller630d6f42002-01-22 23:17:30 +11003296deny_input_open(int type, u_int32_t seq, void *ctxt)
Damien Miller69b69aa2000-10-28 14:19:58 +11003297{
3298 int rchan = packet_get_int();
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00003299
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00003300 switch (type) {
Damien Miller69b69aa2000-10-28 14:19:58 +11003301 case SSH_SMSG_AGENT_OPEN:
3302 error("Warning: ssh server tried agent forwarding.");
3303 break;
3304 case SSH_SMSG_X11_OPEN:
3305 error("Warning: ssh server tried X11 forwarding.");
3306 break;
3307 default:
Damien Miller630d6f42002-01-22 23:17:30 +11003308 error("deny_input_open: type %d", type);
Damien Miller69b69aa2000-10-28 14:19:58 +11003309 break;
3310 }
Damien Miller5eb137c2005-12-31 16:19:53 +11003311 error("Warning: this is probably a break-in attempt by a malicious server.");
Damien Miller69b69aa2000-10-28 14:19:58 +11003312 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
3313 packet_put_int(rchan);
3314 packet_send();
3315}
3316
Damien Miller5428f641999-11-25 11:54:57 +11003317/*
3318 * Requests forwarding of X11 connections, generates fake authentication
3319 * data, and enables authentication spoofing.
Ben Lindstrome9c99912001-06-09 00:41:05 +00003320 * This should be called in the client only.
Damien Miller5428f641999-11-25 11:54:57 +11003321 */
Damien Miller4af51302000-04-16 11:18:38 +10003322void
Damien Miller17e7ed02005-06-17 12:54:33 +10003323x11_request_forwarding_with_spoofing(int client_session_id, const char *disp,
Damien Millerbd483e72000-04-30 10:00:53 +10003324 const char *proto, const char *data)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003325{
Ben Lindstrom46c16222000-12-22 01:43:59 +00003326 u_int data_len = (u_int) strlen(data) / 2;
Damien Miller13390022005-07-06 09:44:19 +10003327 u_int i, value;
Damien Miller95def091999-11-25 00:26:21 +11003328 char *new_data;
3329 int screen_number;
3330 const char *cp;
Darren Tucker3f9fdc72004-06-22 12:56:01 +10003331 u_int32_t rnd = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003332
Damien Millerf92c0792005-07-06 09:45:26 +10003333 if (x11_saved_display == NULL)
3334 x11_saved_display = xstrdup(disp);
3335 else if (strcmp(disp, x11_saved_display) != 0) {
Damien Miller13390022005-07-06 09:44:19 +10003336 error("x11_request_forwarding_with_spoofing: different "
3337 "$DISPLAY already forwarded");
3338 return;
3339 }
3340
Damien Millerd5fe0ba2006-08-30 11:07:39 +10003341 cp = strchr(disp, ':');
Damien Miller95def091999-11-25 00:26:21 +11003342 if (cp)
3343 cp = strchr(cp, '.');
3344 if (cp)
Damien Miller08d61502006-03-26 14:28:32 +11003345 screen_number = (u_int)strtonum(cp + 1, 0, 400, NULL);
Damien Miller95def091999-11-25 00:26:21 +11003346 else
3347 screen_number = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003348
Damien Miller13390022005-07-06 09:44:19 +10003349 if (x11_saved_proto == NULL) {
3350 /* Save protocol name. */
3351 x11_saved_proto = xstrdup(proto);
3352 /*
Damien Miller46d38de2005-07-17 17:02:09 +10003353 * Extract real authentication data and generate fake data
Damien Miller13390022005-07-06 09:44:19 +10003354 * of the same length.
3355 */
3356 x11_saved_data = xmalloc(data_len);
3357 x11_fake_data = xmalloc(data_len);
3358 for (i = 0; i < data_len; i++) {
3359 if (sscanf(data + 2 * i, "%2x", &value) != 1)
3360 fatal("x11_request_forwarding: bad "
3361 "authentication data: %.100s", data);
3362 if (i % 4 == 0)
3363 rnd = arc4random();
3364 x11_saved_data[i] = value;
3365 x11_fake_data[i] = rnd & 0xff;
3366 rnd >>= 8;
3367 }
3368 x11_saved_data_len = data_len;
3369 x11_fake_data_len = data_len;
Damien Miller95def091999-11-25 00:26:21 +11003370 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003371
Damien Miller95def091999-11-25 00:26:21 +11003372 /* Convert the fake data into hex. */
Damien Miller13390022005-07-06 09:44:19 +10003373 new_data = tohex(x11_fake_data, data_len);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003374
Damien Miller95def091999-11-25 00:26:21 +11003375 /* Send the request packet. */
Damien Millerbd483e72000-04-30 10:00:53 +10003376 if (compat20) {
3377 channel_request_start(client_session_id, "x11-req", 0);
3378 packet_put_char(0); /* XXX bool single connection */
3379 } else {
3380 packet_start(SSH_CMSG_X11_REQUEST_FORWARDING);
3381 }
3382 packet_put_cstring(proto);
3383 packet_put_cstring(new_data);
Damien Miller95def091999-11-25 00:26:21 +11003384 packet_put_int(screen_number);
3385 packet_send();
3386 packet_write_wait();
3387 xfree(new_data);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003388}
3389
Ben Lindstrome9c99912001-06-09 00:41:05 +00003390
3391/* -- agent forwarding */
3392
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003393/* Sends a message to the server to request authentication fd forwarding. */
3394
Damien Miller4af51302000-04-16 11:18:38 +10003395void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00003396auth_request_forwarding(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003397{
Damien Miller95def091999-11-25 00:26:21 +11003398 packet_start(SSH_CMSG_AGENT_REQUEST_FORWARDING);
3399 packet_send();
3400 packet_write_wait();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003401}