blob: 6086f1ce1a63b9c888b95276e8c0a16d3b594a3d [file] [log] [blame]
djm@openbsd.org95687f52016-04-01 02:34:10 +00001/* $OpenBSD: mux.c,v 1.59 2016/04/01 02:34:10 djm Exp $ */
Damien Millerb1cbfa22008-05-19 16:00:08 +10002/*
3 * Copyright (c) 2002-2008 Damien Miller <djm@openbsd.org>
4 *
5 * Permission to use, copy, modify, and distribute this software for any
6 * purpose with or without fee is hereby granted, provided that the above
7 * copyright notice and this permission notice appear in all copies.
8 *
9 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16 */
17
18/* ssh session multiplexing support */
19
Darren Tucker2fb66ca2008-06-13 04:49:33 +100020/*
21 * TODO:
Damien Millere1537f92010-01-26 13:26:22 +110022 * - Better signalling from master to slave, especially passing of
Darren Tucker2fb66ca2008-06-13 04:49:33 +100023 * error messages
Damien Millere1537f92010-01-26 13:26:22 +110024 * - Better fall-back from mux slave error to new connection.
25 * - ExitOnForwardingFailure
26 * - Maybe extension mechanisms for multi-X11/multi-agent forwarding
27 * - Support ~^Z in mux slaves.
28 * - Inspect or control sessions in master.
29 * - If we ever support the "signal" channel request, send signals on
30 * sessions in master.
Darren Tucker2fb66ca2008-06-13 04:49:33 +100031 */
32
Damien Millere1537f92010-01-26 13:26:22 +110033#include "includes.h"
34
Damien Millerb1cbfa22008-05-19 16:00:08 +100035#include <sys/types.h>
Damien Millerb1cbfa22008-05-19 16:00:08 +100036#include <sys/stat.h>
37#include <sys/socket.h>
38#include <sys/un.h>
39
40#include <errno.h>
41#include <fcntl.h>
42#include <signal.h>
43#include <stdarg.h>
44#include <stddef.h>
45#include <stdlib.h>
46#include <stdio.h>
47#include <string.h>
48#include <unistd.h>
Darren Tuckerce38d822008-06-07 06:25:15 +100049#ifdef HAVE_PATHS_H
Damien Millerb1cbfa22008-05-19 16:00:08 +100050#include <paths.h>
Darren Tuckerce38d822008-06-07 06:25:15 +100051#endif
Damien Millerb1cbfa22008-05-19 16:00:08 +100052
Damien Millere1537f92010-01-26 13:26:22 +110053#ifdef HAVE_POLL_H
54#include <poll.h>
55#else
56# ifdef HAVE_SYS_POLL_H
57# include <sys/poll.h>
58# endif
59#endif
60
Damien Millera7058ec2008-05-20 08:57:06 +100061#ifdef HAVE_UTIL_H
62# include <util.h>
63#endif
64
Damien Millerb1cbfa22008-05-19 16:00:08 +100065#include "openbsd-compat/sys-queue.h"
66#include "xmalloc.h"
67#include "log.h"
68#include "ssh.h"
Damien Miller388f6fc2010-05-21 14:57:35 +100069#include "ssh2.h"
Damien Millerb1cbfa22008-05-19 16:00:08 +100070#include "pathnames.h"
71#include "misc.h"
72#include "match.h"
73#include "buffer.h"
74#include "channels.h"
75#include "msg.h"
76#include "packet.h"
77#include "monitor_fdpass.h"
78#include "sshpty.h"
79#include "key.h"
80#include "readconf.h"
81#include "clientloop.h"
82
83/* from ssh.c */
84extern int tty_flag;
85extern Options options;
86extern int stdin_null_flag;
87extern char *host;
Darren Tucker8ec4fd82009-10-07 08:39:57 +110088extern int subsystem_flag;
Damien Millerb1cbfa22008-05-19 16:00:08 +100089extern Buffer command;
Damien Millere1537f92010-01-26 13:26:22 +110090extern volatile sig_atomic_t quit_pending;
91extern char *stdio_forward_host;
92extern int stdio_forward_port;
Damien Millerb1cbfa22008-05-19 16:00:08 +100093
Darren Tucker2fb66ca2008-06-13 04:49:33 +100094/* Context for session open confirmation callback */
95struct mux_session_confirm_ctx {
Damien Millere1537f92010-01-26 13:26:22 +110096 u_int want_tty;
97 u_int want_subsys;
98 u_int want_x_fwd;
99 u_int want_agent_fwd;
Darren Tucker2fb66ca2008-06-13 04:49:33 +1000100 Buffer cmd;
101 char *term;
102 struct termios tio;
103 char **env;
Damien Millerd530f5f2010-05-21 14:57:10 +1000104 u_int rid;
Darren Tucker2fb66ca2008-06-13 04:49:33 +1000105};
106
Damien Miller357610d2014-07-18 15:04:10 +1000107/* Context for stdio fwd open confirmation callback */
108struct mux_stdio_confirm_ctx {
109 u_int rid;
110};
111
Damien Miller388f6fc2010-05-21 14:57:35 +1000112/* Context for global channel callback */
113struct mux_channel_confirm_ctx {
114 u_int cid; /* channel id */
115 u_int rid; /* request id */
116 int fid; /* forward id */
117};
118
Damien Millerb1cbfa22008-05-19 16:00:08 +1000119/* fd to control socket */
120int muxserver_sock = -1;
121
Damien Millere1537f92010-01-26 13:26:22 +1100122/* client request id */
123u_int muxclient_request_id = 0;
124
Damien Millerb1cbfa22008-05-19 16:00:08 +1000125/* Multiplexing control command */
126u_int muxclient_command = 0;
127
128/* Set when signalled. */
129static volatile sig_atomic_t muxclient_terminate = 0;
130
131/* PID of multiplex server */
132static u_int muxserver_pid = 0;
133
Damien Millere1537f92010-01-26 13:26:22 +1100134static Channel *mux_listener_channel = NULL;
Damien Millerb1cbfa22008-05-19 16:00:08 +1000135
Damien Millere1537f92010-01-26 13:26:22 +1100136struct mux_master_state {
137 int hello_rcvd;
138};
139
140/* mux protocol messages */
141#define MUX_MSG_HELLO 0x00000001
142#define MUX_C_NEW_SESSION 0x10000002
143#define MUX_C_ALIVE_CHECK 0x10000004
144#define MUX_C_TERMINATE 0x10000005
145#define MUX_C_OPEN_FWD 0x10000006
146#define MUX_C_CLOSE_FWD 0x10000007
147#define MUX_C_NEW_STDIO_FWD 0x10000008
Damien Miller6c3eec72011-05-05 14:16:22 +1000148#define MUX_C_STOP_LISTENING 0x10000009
Damien Millere1537f92010-01-26 13:26:22 +1100149#define MUX_S_OK 0x80000001
150#define MUX_S_PERMISSION_DENIED 0x80000002
151#define MUX_S_FAILURE 0x80000003
152#define MUX_S_EXIT_MESSAGE 0x80000004
153#define MUX_S_ALIVE 0x80000005
154#define MUX_S_SESSION_OPENED 0x80000006
Damien Miller388f6fc2010-05-21 14:57:35 +1000155#define MUX_S_REMOTE_PORT 0x80000007
Damien Miller555f3b82011-05-15 08:48:05 +1000156#define MUX_S_TTY_ALLOC_FAIL 0x80000008
Damien Millere1537f92010-01-26 13:26:22 +1100157
158/* type codes for MUX_C_OPEN_FWD and MUX_C_CLOSE_FWD */
159#define MUX_FWD_LOCAL 1
160#define MUX_FWD_REMOTE 2
161#define MUX_FWD_DYNAMIC 3
162
Damien Millerd530f5f2010-05-21 14:57:10 +1000163static void mux_session_confirm(int, int, void *);
Damien Miller357610d2014-07-18 15:04:10 +1000164static void mux_stdio_confirm(int, int, void *);
Damien Millere1537f92010-01-26 13:26:22 +1100165
166static int process_mux_master_hello(u_int, Channel *, Buffer *, Buffer *);
167static int process_mux_new_session(u_int, Channel *, Buffer *, Buffer *);
168static int process_mux_alive_check(u_int, Channel *, Buffer *, Buffer *);
169static int process_mux_terminate(u_int, Channel *, Buffer *, Buffer *);
170static int process_mux_open_fwd(u_int, Channel *, Buffer *, Buffer *);
171static int process_mux_close_fwd(u_int, Channel *, Buffer *, Buffer *);
172static int process_mux_stdio_fwd(u_int, Channel *, Buffer *, Buffer *);
Damien Miller6c3eec72011-05-05 14:16:22 +1000173static int process_mux_stop_listening(u_int, Channel *, Buffer *, Buffer *);
Damien Millere1537f92010-01-26 13:26:22 +1100174
175static const struct {
176 u_int type;
177 int (*handler)(u_int, Channel *, Buffer *, Buffer *);
178} mux_master_handlers[] = {
179 { MUX_MSG_HELLO, process_mux_master_hello },
180 { MUX_C_NEW_SESSION, process_mux_new_session },
181 { MUX_C_ALIVE_CHECK, process_mux_alive_check },
182 { MUX_C_TERMINATE, process_mux_terminate },
183 { MUX_C_OPEN_FWD, process_mux_open_fwd },
184 { MUX_C_CLOSE_FWD, process_mux_close_fwd },
185 { MUX_C_NEW_STDIO_FWD, process_mux_stdio_fwd },
Damien Miller6c3eec72011-05-05 14:16:22 +1000186 { MUX_C_STOP_LISTENING, process_mux_stop_listening },
Damien Millere1537f92010-01-26 13:26:22 +1100187 { 0, NULL }
188};
189
190/* Cleanup callback fired on closure of mux slave _session_ channel */
191/* ARGSUSED */
Darren Tuckerea8342c2013-06-06 08:11:40 +1000192static void
Damien Millere1537f92010-01-26 13:26:22 +1100193mux_master_session_cleanup_cb(int cid, void *unused)
194{
195 Channel *cc, *c = channel_by_id(cid);
196
197 debug3("%s: entering for channel %d", __func__, cid);
198 if (c == NULL)
199 fatal("%s: channel_by_id(%i) == NULL", __func__, cid);
200 if (c->ctl_chan != -1) {
201 if ((cc = channel_by_id(c->ctl_chan)) == NULL)
202 fatal("%s: channel %d missing control channel %d",
203 __func__, c->self, c->ctl_chan);
204 c->ctl_chan = -1;
205 cc->remote_id = -1;
206 chan_rcvd_oclose(cc);
207 }
208 channel_cancel_cleanup(c->self);
209}
210
211/* Cleanup callback fired on closure of mux slave _control_ channel */
212/* ARGSUSED */
213static void
214mux_master_control_cleanup_cb(int cid, void *unused)
215{
216 Channel *sc, *c = channel_by_id(cid);
217
218 debug3("%s: entering for channel %d", __func__, cid);
219 if (c == NULL)
220 fatal("%s: channel_by_id(%i) == NULL", __func__, cid);
221 if (c->remote_id != -1) {
222 if ((sc = channel_by_id(c->remote_id)) == NULL)
Damien Miller601a23c2010-04-16 15:54:01 +1000223 fatal("%s: channel %d missing session channel %d",
Damien Millere1537f92010-01-26 13:26:22 +1100224 __func__, c->self, c->remote_id);
225 c->remote_id = -1;
226 sc->ctl_chan = -1;
Damien Miller172859c2013-04-23 15:19:27 +1000227 if (sc->type != SSH_CHANNEL_OPEN &&
228 sc->type != SSH_CHANNEL_OPENING) {
Damien Millera21cdfa2010-01-28 06:26:59 +1100229 debug2("%s: channel %d: not open", __func__, sc->self);
Damien Miller133d9d32010-01-30 17:30:04 +1100230 chan_mark_dead(sc);
Damien Millera21cdfa2010-01-28 06:26:59 +1100231 } else {
Damien Miller0dac03f2010-01-30 17:36:33 +1100232 if (sc->istate == CHAN_INPUT_OPEN)
233 chan_read_failed(sc);
234 if (sc->ostate == CHAN_OUTPUT_OPEN)
235 chan_write_failed(sc);
Damien Millera21cdfa2010-01-28 06:26:59 +1100236 }
Damien Millere1537f92010-01-26 13:26:22 +1100237 }
238 channel_cancel_cleanup(c->self);
239}
240
241/* Check mux client environment variables before passing them to mux master. */
242static int
243env_permitted(char *env)
244{
245 int i, ret;
246 char name[1024], *cp;
247
248 if ((cp = strchr(env, '=')) == NULL || cp == env)
249 return 0;
250 ret = snprintf(name, sizeof(name), "%.*s", (int)(cp - env), env);
251 if (ret <= 0 || (size_t)ret >= sizeof(name)) {
252 error("env_permitted: name '%.100s...' too long", env);
253 return 0;
254 }
255
256 for (i = 0; i < options.num_send_env; i++)
257 if (match_pattern(name, options.send_env[i]))
258 return 1;
259
260 return 0;
261}
262
263/* Mux master protocol message handlers */
264
265static int
266process_mux_master_hello(u_int rid, Channel *c, Buffer *m, Buffer *r)
267{
268 u_int ver;
269 struct mux_master_state *state = (struct mux_master_state *)c->mux_ctx;
270
271 if (state == NULL)
272 fatal("%s: channel %d: c->mux_ctx == NULL", __func__, c->self);
273 if (state->hello_rcvd) {
274 error("%s: HELLO received twice", __func__);
275 return -1;
276 }
277 if (buffer_get_int_ret(&ver, m) != 0) {
278 malf:
279 error("%s: malformed message", __func__);
280 return -1;
281 }
282 if (ver != SSHMUX_VER) {
283 error("Unsupported multiplexing protocol version %d "
284 "(expected %d)", ver, SSHMUX_VER);
285 return -1;
286 }
287 debug2("%s: channel %d slave version %u", __func__, c->self, ver);
288
289 /* No extensions are presently defined */
290 while (buffer_len(m) > 0) {
291 char *name = buffer_get_string_ret(m, NULL);
292 char *value = buffer_get_string_ret(m, NULL);
293
294 if (name == NULL || value == NULL) {
Darren Tuckera627d422013-06-02 07:31:17 +1000295 free(name);
Darren Tucker746e9062013-06-06 08:20:13 +1000296 free(value);
Damien Millere1537f92010-01-26 13:26:22 +1100297 goto malf;
298 }
299 debug2("Unrecognised slave extension \"%s\"", name);
Darren Tuckera627d422013-06-02 07:31:17 +1000300 free(name);
301 free(value);
Damien Millere1537f92010-01-26 13:26:22 +1100302 }
303 state->hello_rcvd = 1;
304 return 0;
305}
306
307static int
308process_mux_new_session(u_int rid, Channel *c, Buffer *m, Buffer *r)
309{
310 Channel *nc;
311 struct mux_session_confirm_ctx *cctx;
312 char *reserved, *cmd, *cp;
313 u_int i, j, len, env_len, escape_char, window, packetmax;
314 int new_fd[3];
315
316 /* Reply for SSHMUX_COMMAND_OPEN */
317 cctx = xcalloc(1, sizeof(*cctx));
318 cctx->term = NULL;
Damien Millerd530f5f2010-05-21 14:57:10 +1000319 cctx->rid = rid;
Damien Millere1537f92010-01-26 13:26:22 +1100320 cmd = reserved = NULL;
Damien Millerab523b02012-07-06 13:44:43 +1000321 cctx->env = NULL;
322 env_len = 0;
Damien Millere1537f92010-01-26 13:26:22 +1100323 if ((reserved = buffer_get_string_ret(m, NULL)) == NULL ||
324 buffer_get_int_ret(&cctx->want_tty, m) != 0 ||
325 buffer_get_int_ret(&cctx->want_x_fwd, m) != 0 ||
326 buffer_get_int_ret(&cctx->want_agent_fwd, m) != 0 ||
327 buffer_get_int_ret(&cctx->want_subsys, m) != 0 ||
328 buffer_get_int_ret(&escape_char, m) != 0 ||
329 (cctx->term = buffer_get_string_ret(m, &len)) == NULL ||
330 (cmd = buffer_get_string_ret(m, &len)) == NULL) {
331 malf:
Darren Tuckera627d422013-06-02 07:31:17 +1000332 free(cmd);
333 free(reserved);
Damien Millerab523b02012-07-06 13:44:43 +1000334 for (j = 0; j < env_len; j++)
Darren Tuckera627d422013-06-02 07:31:17 +1000335 free(cctx->env[j]);
336 free(cctx->env);
337 free(cctx->term);
338 free(cctx);
Damien Millere1537f92010-01-26 13:26:22 +1100339 error("%s: malformed message", __func__);
340 return -1;
341 }
Darren Tuckera627d422013-06-02 07:31:17 +1000342 free(reserved);
Damien Millere1537f92010-01-26 13:26:22 +1100343 reserved = NULL;
344
Damien Millere1537f92010-01-26 13:26:22 +1100345 while (buffer_len(m) > 0) {
346#define MUX_MAX_ENV_VARS 4096
Damien Miller2ec03422012-02-11 08:16:28 +1100347 if ((cp = buffer_get_string_ret(m, &len)) == NULL)
Damien Millere1537f92010-01-26 13:26:22 +1100348 goto malf;
Damien Millere1537f92010-01-26 13:26:22 +1100349 if (!env_permitted(cp)) {
Darren Tuckera627d422013-06-02 07:31:17 +1000350 free(cp);
Damien Millere1537f92010-01-26 13:26:22 +1100351 continue;
352 }
deraadt@openbsd.org657a5fb2015-04-24 01:36:00 +0000353 cctx->env = xreallocarray(cctx->env, env_len + 2,
Damien Millere1537f92010-01-26 13:26:22 +1100354 sizeof(*cctx->env));
355 cctx->env[env_len++] = cp;
356 cctx->env[env_len] = NULL;
357 if (env_len > MUX_MAX_ENV_VARS) {
358 error(">%d environment variables received, ignoring "
359 "additional", MUX_MAX_ENV_VARS);
360 break;
361 }
362 }
363
364 debug2("%s: channel %d: request tty %d, X %d, agent %d, subsys %d, "
365 "term \"%s\", cmd \"%s\", env %u", __func__, c->self,
366 cctx->want_tty, cctx->want_x_fwd, cctx->want_agent_fwd,
367 cctx->want_subsys, cctx->term, cmd, env_len);
368
369 buffer_init(&cctx->cmd);
370 buffer_append(&cctx->cmd, cmd, strlen(cmd));
Darren Tuckera627d422013-06-02 07:31:17 +1000371 free(cmd);
Damien Millere1537f92010-01-26 13:26:22 +1100372 cmd = NULL;
373
374 /* Gather fds from client */
375 for(i = 0; i < 3; i++) {
376 if ((new_fd[i] = mm_receive_fd(c->sock)) == -1) {
377 error("%s: failed to receive fd %d from slave",
378 __func__, i);
379 for (j = 0; j < i; j++)
380 close(new_fd[j]);
381 for (j = 0; j < env_len; j++)
Darren Tuckera627d422013-06-02 07:31:17 +1000382 free(cctx->env[j]);
383 free(cctx->env);
384 free(cctx->term);
Damien Millere1537f92010-01-26 13:26:22 +1100385 buffer_free(&cctx->cmd);
Darren Tuckera627d422013-06-02 07:31:17 +1000386 free(cctx);
Damien Millere1537f92010-01-26 13:26:22 +1100387
388 /* prepare reply */
389 buffer_put_int(r, MUX_S_FAILURE);
390 buffer_put_int(r, rid);
391 buffer_put_cstring(r,
392 "did not receive file descriptors");
393 return -1;
394 }
395 }
396
397 debug3("%s: got fds stdin %d, stdout %d, stderr %d", __func__,
398 new_fd[0], new_fd[1], new_fd[2]);
399
400 /* XXX support multiple child sessions in future */
401 if (c->remote_id != -1) {
402 debug2("%s: session already open", __func__);
403 /* prepare reply */
404 buffer_put_int(r, MUX_S_FAILURE);
405 buffer_put_int(r, rid);
406 buffer_put_cstring(r, "Multiple sessions not supported");
407 cleanup:
408 close(new_fd[0]);
409 close(new_fd[1]);
410 close(new_fd[2]);
Darren Tuckera627d422013-06-02 07:31:17 +1000411 free(cctx->term);
Damien Millere1537f92010-01-26 13:26:22 +1100412 if (env_len != 0) {
413 for (i = 0; i < env_len; i++)
Darren Tuckera627d422013-06-02 07:31:17 +1000414 free(cctx->env[i]);
415 free(cctx->env);
Damien Millere1537f92010-01-26 13:26:22 +1100416 }
417 buffer_free(&cctx->cmd);
Darren Tuckera627d422013-06-02 07:31:17 +1000418 free(cctx);
Damien Millere1537f92010-01-26 13:26:22 +1100419 return 0;
420 }
421
422 if (options.control_master == SSHCTL_MASTER_ASK ||
423 options.control_master == SSHCTL_MASTER_AUTO_ASK) {
424 if (!ask_permission("Allow shared connection to %s? ", host)) {
425 debug2("%s: session refused by user", __func__);
426 /* prepare reply */
427 buffer_put_int(r, MUX_S_PERMISSION_DENIED);
428 buffer_put_int(r, rid);
429 buffer_put_cstring(r, "Permission denied");
430 goto cleanup;
431 }
432 }
433
434 /* Try to pick up ttymodes from client before it goes raw */
435 if (cctx->want_tty && tcgetattr(new_fd[0], &cctx->tio) == -1)
436 error("%s: tcgetattr: %s", __func__, strerror(errno));
437
438 /* enable nonblocking unless tty */
439 if (!isatty(new_fd[0]))
440 set_nonblock(new_fd[0]);
441 if (!isatty(new_fd[1]))
442 set_nonblock(new_fd[1]);
443 if (!isatty(new_fd[2]))
444 set_nonblock(new_fd[2]);
445
446 window = CHAN_SES_WINDOW_DEFAULT;
447 packetmax = CHAN_SES_PACKET_DEFAULT;
448 if (cctx->want_tty) {
449 window >>= 1;
450 packetmax >>= 1;
451 }
452
453 nc = channel_new("session", SSH_CHANNEL_OPENING,
454 new_fd[0], new_fd[1], new_fd[2], window, packetmax,
455 CHAN_EXTENDED_WRITE, "client-session", /*nonblock*/0);
456
457 nc->ctl_chan = c->self; /* link session -> control channel */
458 c->remote_id = nc->self; /* link control -> session channel */
459
460 if (cctx->want_tty && escape_char != 0xffffffff) {
461 channel_register_filter(nc->self,
462 client_simple_escape_filter, NULL,
463 client_filter_cleanup,
464 client_new_escape_filter_ctx((int)escape_char));
465 }
466
467 debug2("%s: channel_new: %d linked to control channel %d",
468 __func__, nc->self, nc->ctl_chan);
469
470 channel_send_open(nc->self);
471 channel_register_open_confirm(nc->self, mux_session_confirm, cctx);
Damien Millerd530f5f2010-05-21 14:57:10 +1000472 c->mux_pause = 1; /* stop handling messages until open_confirm done */
Damien Miller85c50d72010-05-10 11:53:02 +1000473 channel_register_cleanup(nc->self, mux_master_session_cleanup_cb, 1);
Damien Millere1537f92010-01-26 13:26:22 +1100474
Damien Millerd530f5f2010-05-21 14:57:10 +1000475 /* reply is deferred, sent by mux_session_confirm */
Damien Millere1537f92010-01-26 13:26:22 +1100476 return 0;
477}
478
479static int
480process_mux_alive_check(u_int rid, Channel *c, Buffer *m, Buffer *r)
481{
482 debug2("%s: channel %d: alive check", __func__, c->self);
483
484 /* prepare reply */
485 buffer_put_int(r, MUX_S_ALIVE);
486 buffer_put_int(r, rid);
487 buffer_put_int(r, (u_int)getpid());
488
489 return 0;
490}
491
492static int
493process_mux_terminate(u_int rid, Channel *c, Buffer *m, Buffer *r)
494{
495 debug2("%s: channel %d: terminate request", __func__, c->self);
496
497 if (options.control_master == SSHCTL_MASTER_ASK ||
498 options.control_master == SSHCTL_MASTER_AUTO_ASK) {
499 if (!ask_permission("Terminate shared connection to %s? ",
500 host)) {
501 debug2("%s: termination refused by user", __func__);
502 buffer_put_int(r, MUX_S_PERMISSION_DENIED);
503 buffer_put_int(r, rid);
504 buffer_put_cstring(r, "Permission denied");
505 return 0;
506 }
507 }
508
509 quit_pending = 1;
510 buffer_put_int(r, MUX_S_OK);
511 buffer_put_int(r, rid);
512 /* XXX exit happens too soon - message never makes it to client */
513 return 0;
514}
515
516static char *
Damien Miller7acefbb2014-07-18 14:11:24 +1000517format_forward(u_int ftype, struct Forward *fwd)
Damien Millere1537f92010-01-26 13:26:22 +1100518{
519 char *ret;
520
521 switch (ftype) {
522 case MUX_FWD_LOCAL:
523 xasprintf(&ret, "local forward %.200s:%d -> %.200s:%d",
Damien Miller7acefbb2014-07-18 14:11:24 +1000524 (fwd->listen_path != NULL) ? fwd->listen_path :
Damien Millere1537f92010-01-26 13:26:22 +1100525 (fwd->listen_host == NULL) ?
Damien Miller7acefbb2014-07-18 14:11:24 +1000526 (options.fwd_opts.gateway_ports ? "*" : "LOCALHOST") :
Damien Millere1537f92010-01-26 13:26:22 +1100527 fwd->listen_host, fwd->listen_port,
Damien Miller7acefbb2014-07-18 14:11:24 +1000528 (fwd->connect_path != NULL) ? fwd->connect_path :
Damien Millere1537f92010-01-26 13:26:22 +1100529 fwd->connect_host, fwd->connect_port);
530 break;
531 case MUX_FWD_DYNAMIC:
532 xasprintf(&ret, "dynamic forward %.200s:%d -> *",
533 (fwd->listen_host == NULL) ?
Damien Miller7acefbb2014-07-18 14:11:24 +1000534 (options.fwd_opts.gateway_ports ? "*" : "LOCALHOST") :
Damien Millere1537f92010-01-26 13:26:22 +1100535 fwd->listen_host, fwd->listen_port);
536 break;
537 case MUX_FWD_REMOTE:
538 xasprintf(&ret, "remote forward %.200s:%d -> %.200s:%d",
Damien Miller7acefbb2014-07-18 14:11:24 +1000539 (fwd->listen_path != NULL) ? fwd->listen_path :
Damien Millere1537f92010-01-26 13:26:22 +1100540 (fwd->listen_host == NULL) ?
541 "LOCALHOST" : fwd->listen_host,
542 fwd->listen_port,
Damien Miller7acefbb2014-07-18 14:11:24 +1000543 (fwd->connect_path != NULL) ? fwd->connect_path :
Damien Millere1537f92010-01-26 13:26:22 +1100544 fwd->connect_host, fwd->connect_port);
545 break;
546 default:
547 fatal("%s: unknown forward type %u", __func__, ftype);
548 }
549 return ret;
550}
551
552static int
553compare_host(const char *a, const char *b)
554{
555 if (a == NULL && b == NULL)
556 return 1;
557 if (a == NULL || b == NULL)
558 return 0;
559 return strcmp(a, b) == 0;
560}
561
562static int
Damien Miller7acefbb2014-07-18 14:11:24 +1000563compare_forward(struct Forward *a, struct Forward *b)
Damien Millere1537f92010-01-26 13:26:22 +1100564{
565 if (!compare_host(a->listen_host, b->listen_host))
566 return 0;
Damien Miller7acefbb2014-07-18 14:11:24 +1000567 if (!compare_host(a->listen_path, b->listen_path))
568 return 0;
Damien Millere1537f92010-01-26 13:26:22 +1100569 if (a->listen_port != b->listen_port)
570 return 0;
571 if (!compare_host(a->connect_host, b->connect_host))
572 return 0;
Damien Miller7acefbb2014-07-18 14:11:24 +1000573 if (!compare_host(a->connect_path, b->connect_path))
574 return 0;
Damien Millere1537f92010-01-26 13:26:22 +1100575 if (a->connect_port != b->connect_port)
576 return 0;
577
578 return 1;
579}
580
Damien Miller388f6fc2010-05-21 14:57:35 +1000581static void
582mux_confirm_remote_forward(int type, u_int32_t seq, void *ctxt)
583{
584 struct mux_channel_confirm_ctx *fctx = ctxt;
585 char *failmsg = NULL;
Damien Miller7acefbb2014-07-18 14:11:24 +1000586 struct Forward *rfwd;
Damien Miller388f6fc2010-05-21 14:57:35 +1000587 Channel *c;
588 Buffer out;
589
590 if ((c = channel_by_id(fctx->cid)) == NULL) {
591 /* no channel for reply */
592 error("%s: unknown channel", __func__);
593 return;
594 }
595 buffer_init(&out);
djm@openbsd.orgca430d42015-05-01 04:03:20 +0000596 if (fctx->fid >= options.num_remote_forwards ||
597 (options.remote_forwards[fctx->fid].connect_path == NULL &&
598 options.remote_forwards[fctx->fid].connect_host == NULL)) {
Damien Miller388f6fc2010-05-21 14:57:35 +1000599 xasprintf(&failmsg, "unknown forwarding id %d", fctx->fid);
600 goto fail;
601 }
602 rfwd = &options.remote_forwards[fctx->fid];
603 debug("%s: %s for: listen %d, connect %s:%d", __func__,
604 type == SSH2_MSG_REQUEST_SUCCESS ? "success" : "failure",
Damien Miller7acefbb2014-07-18 14:11:24 +1000605 rfwd->listen_port, rfwd->connect_path ? rfwd->connect_path :
606 rfwd->connect_host, rfwd->connect_port);
Damien Miller388f6fc2010-05-21 14:57:35 +1000607 if (type == SSH2_MSG_REQUEST_SUCCESS) {
608 if (rfwd->listen_port == 0) {
609 rfwd->allocated_port = packet_get_int();
djm@openbsd.org8312cfb2015-05-01 04:01:58 +0000610 debug("Allocated port %u for mux remote forward"
Damien Miller388f6fc2010-05-21 14:57:35 +1000611 " to %s:%d", rfwd->allocated_port,
612 rfwd->connect_host, rfwd->connect_port);
613 buffer_put_int(&out, MUX_S_REMOTE_PORT);
614 buffer_put_int(&out, fctx->rid);
615 buffer_put_int(&out, rfwd->allocated_port);
Darren Tucker68afb8c2011-10-02 18:59:03 +1100616 channel_update_permitted_opens(rfwd->handle,
617 rfwd->allocated_port);
Damien Miller388f6fc2010-05-21 14:57:35 +1000618 } else {
619 buffer_put_int(&out, MUX_S_OK);
620 buffer_put_int(&out, fctx->rid);
621 }
622 goto out;
623 } else {
Darren Tucker68afb8c2011-10-02 18:59:03 +1100624 if (rfwd->listen_port == 0)
625 channel_update_permitted_opens(rfwd->handle, -1);
Damien Miller7acefbb2014-07-18 14:11:24 +1000626 if (rfwd->listen_path != NULL)
627 xasprintf(&failmsg, "remote port forwarding failed for "
628 "listen path %s", rfwd->listen_path);
629 else
630 xasprintf(&failmsg, "remote port forwarding failed for "
631 "listen port %d", rfwd->listen_port);
djm@openbsd.orgca430d42015-05-01 04:03:20 +0000632
633 debug2("%s: clearing registered forwarding for listen %d, "
634 "connect %s:%d", __func__, rfwd->listen_port,
635 rfwd->connect_path ? rfwd->connect_path :
636 rfwd->connect_host, rfwd->connect_port);
637
638 free(rfwd->listen_host);
639 free(rfwd->listen_path);
640 free(rfwd->connect_host);
641 free(rfwd->connect_path);
642 memset(rfwd, 0, sizeof(*rfwd));
Damien Miller388f6fc2010-05-21 14:57:35 +1000643 }
644 fail:
645 error("%s: %s", __func__, failmsg);
646 buffer_put_int(&out, MUX_S_FAILURE);
647 buffer_put_int(&out, fctx->rid);
648 buffer_put_cstring(&out, failmsg);
Darren Tuckera627d422013-06-02 07:31:17 +1000649 free(failmsg);
Damien Miller388f6fc2010-05-21 14:57:35 +1000650 out:
651 buffer_put_string(&c->output, buffer_ptr(&out), buffer_len(&out));
652 buffer_free(&out);
653 if (c->mux_pause <= 0)
654 fatal("%s: mux_pause %d", __func__, c->mux_pause);
655 c->mux_pause = 0; /* start processing messages again */
656}
657
Damien Millere1537f92010-01-26 13:26:22 +1100658static int
659process_mux_open_fwd(u_int rid, Channel *c, Buffer *m, Buffer *r)
660{
Damien Miller7acefbb2014-07-18 14:11:24 +1000661 struct Forward fwd;
Damien Millere1537f92010-01-26 13:26:22 +1100662 char *fwd_desc = NULL;
Damien Miller7acefbb2014-07-18 14:11:24 +1000663 char *listen_addr, *connect_addr;
Damien Millere1537f92010-01-26 13:26:22 +1100664 u_int ftype;
Damien Millerce986542013-07-18 16:12:44 +1000665 u_int lport, cport;
Damien Millere1537f92010-01-26 13:26:22 +1100666 int i, ret = 0, freefwd = 1;
667
djm@openbsd.org45b0eb72015-08-19 23:18:26 +0000668 memset(&fwd, 0, sizeof(fwd));
669
Damien Miller7acefbb2014-07-18 14:11:24 +1000670 /* XXX - lport/cport check redundant */
Damien Millere1537f92010-01-26 13:26:22 +1100671 if (buffer_get_int_ret(&ftype, m) != 0 ||
Damien Miller7acefbb2014-07-18 14:11:24 +1000672 (listen_addr = buffer_get_string_ret(m, NULL)) == NULL ||
Damien Millerce986542013-07-18 16:12:44 +1000673 buffer_get_int_ret(&lport, m) != 0 ||
Damien Miller7acefbb2014-07-18 14:11:24 +1000674 (connect_addr = buffer_get_string_ret(m, NULL)) == NULL ||
Damien Millerce986542013-07-18 16:12:44 +1000675 buffer_get_int_ret(&cport, m) != 0 ||
Damien Miller7acefbb2014-07-18 14:11:24 +1000676 (lport != (u_int)PORT_STREAMLOCAL && lport > 65535) ||
677 (cport != (u_int)PORT_STREAMLOCAL && cport > 65535)) {
Damien Millere1537f92010-01-26 13:26:22 +1100678 error("%s: malformed message", __func__);
679 ret = -1;
680 goto out;
681 }
Damien Miller7acefbb2014-07-18 14:11:24 +1000682 if (*listen_addr == '\0') {
683 free(listen_addr);
684 listen_addr = NULL;
685 }
686 if (*connect_addr == '\0') {
687 free(connect_addr);
688 connect_addr = NULL;
689 }
690
691 memset(&fwd, 0, sizeof(fwd));
Damien Millerce986542013-07-18 16:12:44 +1000692 fwd.listen_port = lport;
Damien Miller7acefbb2014-07-18 14:11:24 +1000693 if (fwd.listen_port == PORT_STREAMLOCAL)
694 fwd.listen_path = listen_addr;
695 else
696 fwd.listen_host = listen_addr;
Damien Millerce986542013-07-18 16:12:44 +1000697 fwd.connect_port = cport;
Damien Miller7acefbb2014-07-18 14:11:24 +1000698 if (fwd.connect_port == PORT_STREAMLOCAL)
699 fwd.connect_path = connect_addr;
700 else
701 fwd.connect_host = connect_addr;
Damien Millere1537f92010-01-26 13:26:22 +1100702
703 debug2("%s: channel %d: request %s", __func__, c->self,
704 (fwd_desc = format_forward(ftype, &fwd)));
705
706 if (ftype != MUX_FWD_LOCAL && ftype != MUX_FWD_REMOTE &&
707 ftype != MUX_FWD_DYNAMIC) {
708 logit("%s: invalid forwarding type %u", __func__, ftype);
709 invalid:
Damien Miller7acefbb2014-07-18 14:11:24 +1000710 free(listen_addr);
711 free(connect_addr);
Damien Millere1537f92010-01-26 13:26:22 +1100712 buffer_put_int(r, MUX_S_FAILURE);
713 buffer_put_int(r, rid);
714 buffer_put_cstring(r, "Invalid forwarding request");
715 return 0;
716 }
Damien Miller7acefbb2014-07-18 14:11:24 +1000717 if (ftype == MUX_FWD_DYNAMIC && fwd.listen_path) {
718 logit("%s: streamlocal and dynamic forwards "
719 "are mutually exclusive", __func__);
720 goto invalid;
721 }
722 if (fwd.listen_port != PORT_STREAMLOCAL && fwd.listen_port >= 65536) {
Damien Millere1537f92010-01-26 13:26:22 +1100723 logit("%s: invalid listen port %u", __func__,
724 fwd.listen_port);
725 goto invalid;
726 }
Damien Miller7acefbb2014-07-18 14:11:24 +1000727 if ((fwd.connect_port != PORT_STREAMLOCAL && fwd.connect_port >= 65536)
728 || (ftype != MUX_FWD_DYNAMIC && ftype != MUX_FWD_REMOTE && fwd.connect_port == 0)) {
Damien Millere1537f92010-01-26 13:26:22 +1100729 logit("%s: invalid connect port %u", __func__,
730 fwd.connect_port);
731 goto invalid;
732 }
Damien Miller7acefbb2014-07-18 14:11:24 +1000733 if (ftype != MUX_FWD_DYNAMIC && fwd.connect_host == NULL && fwd.connect_path == NULL) {
Damien Millere1537f92010-01-26 13:26:22 +1100734 logit("%s: missing connect host", __func__);
735 goto invalid;
736 }
737
738 /* Skip forwards that have already been requested */
739 switch (ftype) {
740 case MUX_FWD_LOCAL:
741 case MUX_FWD_DYNAMIC:
742 for (i = 0; i < options.num_local_forwards; i++) {
743 if (compare_forward(&fwd,
744 options.local_forwards + i)) {
745 exists:
746 debug2("%s: found existing forwarding",
747 __func__);
748 buffer_put_int(r, MUX_S_OK);
749 buffer_put_int(r, rid);
750 goto out;
751 }
752 }
753 break;
754 case MUX_FWD_REMOTE:
755 for (i = 0; i < options.num_remote_forwards; i++) {
756 if (compare_forward(&fwd,
Damien Miller388f6fc2010-05-21 14:57:35 +1000757 options.remote_forwards + i)) {
758 if (fwd.listen_port != 0)
759 goto exists;
760 debug2("%s: found allocated port",
761 __func__);
762 buffer_put_int(r, MUX_S_REMOTE_PORT);
763 buffer_put_int(r, rid);
764 buffer_put_int(r,
765 options.remote_forwards[i].allocated_port);
766 goto out;
767 }
Damien Millere1537f92010-01-26 13:26:22 +1100768 }
769 break;
770 }
771
772 if (options.control_master == SSHCTL_MASTER_ASK ||
773 options.control_master == SSHCTL_MASTER_AUTO_ASK) {
774 if (!ask_permission("Open %s on %s?", fwd_desc, host)) {
775 debug2("%s: forwarding refused by user", __func__);
776 buffer_put_int(r, MUX_S_PERMISSION_DENIED);
777 buffer_put_int(r, rid);
778 buffer_put_cstring(r, "Permission denied");
779 goto out;
780 }
781 }
782
783 if (ftype == MUX_FWD_LOCAL || ftype == MUX_FWD_DYNAMIC) {
Damien Miller7acefbb2014-07-18 14:11:24 +1000784 if (!channel_setup_local_fwd_listener(&fwd,
785 &options.fwd_opts)) {
Damien Millere1537f92010-01-26 13:26:22 +1100786 fail:
787 logit("slave-requested %s failed", fwd_desc);
788 buffer_put_int(r, MUX_S_FAILURE);
789 buffer_put_int(r, rid);
790 buffer_put_cstring(r, "Port forwarding failed");
791 goto out;
792 }
793 add_local_forward(&options, &fwd);
794 freefwd = 0;
795 } else {
Damien Miller388f6fc2010-05-21 14:57:35 +1000796 struct mux_channel_confirm_ctx *fctx;
797
Damien Miller7acefbb2014-07-18 14:11:24 +1000798 fwd.handle = channel_request_remote_forwarding(&fwd);
Darren Tucker68afb8c2011-10-02 18:59:03 +1100799 if (fwd.handle < 0)
Damien Millere1537f92010-01-26 13:26:22 +1100800 goto fail;
801 add_remote_forward(&options, &fwd);
Damien Miller388f6fc2010-05-21 14:57:35 +1000802 fctx = xcalloc(1, sizeof(*fctx));
803 fctx->cid = c->self;
804 fctx->rid = rid;
Damien Miller232cfb12010-06-26 09:50:30 +1000805 fctx->fid = options.num_remote_forwards - 1;
Damien Miller388f6fc2010-05-21 14:57:35 +1000806 client_register_global_confirm(mux_confirm_remote_forward,
807 fctx);
Damien Millere1537f92010-01-26 13:26:22 +1100808 freefwd = 0;
Damien Miller388f6fc2010-05-21 14:57:35 +1000809 c->mux_pause = 1; /* wait for mux_confirm_remote_forward */
810 /* delayed reply in mux_confirm_remote_forward */
811 goto out;
Damien Millere1537f92010-01-26 13:26:22 +1100812 }
813 buffer_put_int(r, MUX_S_OK);
814 buffer_put_int(r, rid);
815 out:
Darren Tuckera627d422013-06-02 07:31:17 +1000816 free(fwd_desc);
Damien Millere1537f92010-01-26 13:26:22 +1100817 if (freefwd) {
Darren Tuckera627d422013-06-02 07:31:17 +1000818 free(fwd.listen_host);
Damien Miller7acefbb2014-07-18 14:11:24 +1000819 free(fwd.listen_path);
Darren Tuckera627d422013-06-02 07:31:17 +1000820 free(fwd.connect_host);
Damien Miller7acefbb2014-07-18 14:11:24 +1000821 free(fwd.connect_path);
Damien Millere1537f92010-01-26 13:26:22 +1100822 }
823 return ret;
824}
825
826static int
827process_mux_close_fwd(u_int rid, Channel *c, Buffer *m, Buffer *r)
828{
Damien Miller7acefbb2014-07-18 14:11:24 +1000829 struct Forward fwd, *found_fwd;
Damien Millere1537f92010-01-26 13:26:22 +1100830 char *fwd_desc = NULL;
Damien Millerf6dff7c2011-09-22 21:38:52 +1000831 const char *error_reason = NULL;
Damien Miller7acefbb2014-07-18 14:11:24 +1000832 char *listen_addr = NULL, *connect_addr = NULL;
Damien Millere1537f92010-01-26 13:26:22 +1100833 u_int ftype;
Damien Miller7acefbb2014-07-18 14:11:24 +1000834 int i, ret = 0;
Damien Millerce986542013-07-18 16:12:44 +1000835 u_int lport, cport;
Damien Millere1537f92010-01-26 13:26:22 +1100836
djm@openbsd.org45b0eb72015-08-19 23:18:26 +0000837 memset(&fwd, 0, sizeof(fwd));
838
Damien Millere1537f92010-01-26 13:26:22 +1100839 if (buffer_get_int_ret(&ftype, m) != 0 ||
Damien Miller7acefbb2014-07-18 14:11:24 +1000840 (listen_addr = buffer_get_string_ret(m, NULL)) == NULL ||
Damien Millerce986542013-07-18 16:12:44 +1000841 buffer_get_int_ret(&lport, m) != 0 ||
Damien Miller7acefbb2014-07-18 14:11:24 +1000842 (connect_addr = buffer_get_string_ret(m, NULL)) == NULL ||
Damien Millerce986542013-07-18 16:12:44 +1000843 buffer_get_int_ret(&cport, m) != 0 ||
Damien Miller7acefbb2014-07-18 14:11:24 +1000844 (lport != (u_int)PORT_STREAMLOCAL && lport > 65535) ||
845 (cport != (u_int)PORT_STREAMLOCAL && cport > 65535)) {
Damien Millere1537f92010-01-26 13:26:22 +1100846 error("%s: malformed message", __func__);
847 ret = -1;
848 goto out;
849 }
850
Damien Miller7acefbb2014-07-18 14:11:24 +1000851 if (*listen_addr == '\0') {
852 free(listen_addr);
853 listen_addr = NULL;
Damien Millere1537f92010-01-26 13:26:22 +1100854 }
Damien Miller7acefbb2014-07-18 14:11:24 +1000855 if (*connect_addr == '\0') {
856 free(connect_addr);
857 connect_addr = NULL;
Damien Millere1537f92010-01-26 13:26:22 +1100858 }
859
Damien Miller7acefbb2014-07-18 14:11:24 +1000860 memset(&fwd, 0, sizeof(fwd));
861 fwd.listen_port = lport;
862 if (fwd.listen_port == PORT_STREAMLOCAL)
863 fwd.listen_path = listen_addr;
864 else
865 fwd.listen_host = listen_addr;
866 fwd.connect_port = cport;
867 if (fwd.connect_port == PORT_STREAMLOCAL)
868 fwd.connect_path = connect_addr;
869 else
870 fwd.connect_host = connect_addr;
871
Damien Millerf6dff7c2011-09-22 21:38:52 +1000872 debug2("%s: channel %d: request cancel %s", __func__, c->self,
Damien Millere1537f92010-01-26 13:26:22 +1100873 (fwd_desc = format_forward(ftype, &fwd)));
874
Damien Millerf6dff7c2011-09-22 21:38:52 +1000875 /* make sure this has been requested */
876 found_fwd = NULL;
877 switch (ftype) {
878 case MUX_FWD_LOCAL:
879 case MUX_FWD_DYNAMIC:
880 for (i = 0; i < options.num_local_forwards; i++) {
881 if (compare_forward(&fwd,
882 options.local_forwards + i)) {
883 found_fwd = options.local_forwards + i;
884 break;
885 }
886 }
887 break;
888 case MUX_FWD_REMOTE:
889 for (i = 0; i < options.num_remote_forwards; i++) {
890 if (compare_forward(&fwd,
891 options.remote_forwards + i)) {
892 found_fwd = options.remote_forwards + i;
893 break;
894 }
895 }
896 break;
897 }
Damien Millere1537f92010-01-26 13:26:22 +1100898
Damien Millerf6dff7c2011-09-22 21:38:52 +1000899 if (found_fwd == NULL)
900 error_reason = "port not forwarded";
901 else if (ftype == MUX_FWD_REMOTE) {
902 /*
903 * This shouldn't fail unless we confused the host/port
904 * between options.remote_forwards and permitted_opens.
Darren Tucker68afb8c2011-10-02 18:59:03 +1100905 * However, for dynamic allocated listen ports we need
Damien Miller7acefbb2014-07-18 14:11:24 +1000906 * to use the actual listen port.
Damien Millerf6dff7c2011-09-22 21:38:52 +1000907 */
Damien Miller7acefbb2014-07-18 14:11:24 +1000908 if (channel_request_rforward_cancel(found_fwd) == -1)
Damien Millerf6dff7c2011-09-22 21:38:52 +1000909 error_reason = "port not in permitted opens";
910 } else { /* local and dynamic forwards */
911 /* Ditto */
Damien Miller7acefbb2014-07-18 14:11:24 +1000912 if (channel_cancel_lport_listener(&fwd, fwd.connect_port,
913 &options.fwd_opts) == -1)
Damien Millerf6dff7c2011-09-22 21:38:52 +1000914 error_reason = "port not found";
915 }
916
917 if (error_reason == NULL) {
918 buffer_put_int(r, MUX_S_OK);
919 buffer_put_int(r, rid);
920
Darren Tuckera627d422013-06-02 07:31:17 +1000921 free(found_fwd->listen_host);
Damien Miller7acefbb2014-07-18 14:11:24 +1000922 free(found_fwd->listen_path);
Darren Tuckera627d422013-06-02 07:31:17 +1000923 free(found_fwd->connect_host);
Damien Miller7acefbb2014-07-18 14:11:24 +1000924 free(found_fwd->connect_path);
Damien Millerf6dff7c2011-09-22 21:38:52 +1000925 found_fwd->listen_host = found_fwd->connect_host = NULL;
Damien Miller7acefbb2014-07-18 14:11:24 +1000926 found_fwd->listen_path = found_fwd->connect_path = NULL;
Damien Millerf6dff7c2011-09-22 21:38:52 +1000927 found_fwd->listen_port = found_fwd->connect_port = 0;
928 } else {
929 buffer_put_int(r, MUX_S_FAILURE);
930 buffer_put_int(r, rid);
931 buffer_put_cstring(r, error_reason);
932 }
Damien Millere1537f92010-01-26 13:26:22 +1100933 out:
Darren Tuckera627d422013-06-02 07:31:17 +1000934 free(fwd_desc);
Damien Miller7acefbb2014-07-18 14:11:24 +1000935 free(listen_addr);
936 free(connect_addr);
Damien Millere1537f92010-01-26 13:26:22 +1100937
938 return ret;
939}
940
941static int
942process_mux_stdio_fwd(u_int rid, Channel *c, Buffer *m, Buffer *r)
943{
944 Channel *nc;
945 char *reserved, *chost;
946 u_int cport, i, j;
947 int new_fd[2];
Damien Miller357610d2014-07-18 15:04:10 +1000948 struct mux_stdio_confirm_ctx *cctx;
Damien Millere1537f92010-01-26 13:26:22 +1100949
950 chost = reserved = NULL;
951 if ((reserved = buffer_get_string_ret(m, NULL)) == NULL ||
952 (chost = buffer_get_string_ret(m, NULL)) == NULL ||
953 buffer_get_int_ret(&cport, m) != 0) {
Darren Tuckera627d422013-06-02 07:31:17 +1000954 free(reserved);
955 free(chost);
Damien Millere1537f92010-01-26 13:26:22 +1100956 error("%s: malformed message", __func__);
957 return -1;
958 }
Darren Tuckera627d422013-06-02 07:31:17 +1000959 free(reserved);
Damien Millere1537f92010-01-26 13:26:22 +1100960
961 debug2("%s: channel %d: request stdio fwd to %s:%u",
962 __func__, c->self, chost, cport);
963
964 /* Gather fds from client */
965 for(i = 0; i < 2; i++) {
966 if ((new_fd[i] = mm_receive_fd(c->sock)) == -1) {
967 error("%s: failed to receive fd %d from slave",
968 __func__, i);
969 for (j = 0; j < i; j++)
970 close(new_fd[j]);
Darren Tuckera627d422013-06-02 07:31:17 +1000971 free(chost);
Damien Millere1537f92010-01-26 13:26:22 +1100972
973 /* prepare reply */
974 buffer_put_int(r, MUX_S_FAILURE);
975 buffer_put_int(r, rid);
976 buffer_put_cstring(r,
977 "did not receive file descriptors");
978 return -1;
979 }
980 }
981
982 debug3("%s: got fds stdin %d, stdout %d", __func__,
983 new_fd[0], new_fd[1]);
984
985 /* XXX support multiple child sessions in future */
986 if (c->remote_id != -1) {
987 debug2("%s: session already open", __func__);
988 /* prepare reply */
989 buffer_put_int(r, MUX_S_FAILURE);
990 buffer_put_int(r, rid);
991 buffer_put_cstring(r, "Multiple sessions not supported");
992 cleanup:
993 close(new_fd[0]);
994 close(new_fd[1]);
Darren Tuckera627d422013-06-02 07:31:17 +1000995 free(chost);
Damien Millere1537f92010-01-26 13:26:22 +1100996 return 0;
997 }
998
999 if (options.control_master == SSHCTL_MASTER_ASK ||
1000 options.control_master == SSHCTL_MASTER_AUTO_ASK) {
Damien Miller68512c02010-10-21 15:21:11 +11001001 if (!ask_permission("Allow forward to %s:%u? ",
Damien Millere1537f92010-01-26 13:26:22 +11001002 chost, cport)) {
1003 debug2("%s: stdio fwd refused by user", __func__);
1004 /* prepare reply */
1005 buffer_put_int(r, MUX_S_PERMISSION_DENIED);
1006 buffer_put_int(r, rid);
1007 buffer_put_cstring(r, "Permission denied");
1008 goto cleanup;
1009 }
1010 }
1011
1012 /* enable nonblocking unless tty */
1013 if (!isatty(new_fd[0]))
1014 set_nonblock(new_fd[0]);
1015 if (!isatty(new_fd[1]))
1016 set_nonblock(new_fd[1]);
1017
1018 nc = channel_connect_stdio_fwd(chost, cport, new_fd[0], new_fd[1]);
1019
1020 nc->ctl_chan = c->self; /* link session -> control channel */
1021 c->remote_id = nc->self; /* link control -> session channel */
1022
1023 debug2("%s: channel_new: %d linked to control channel %d",
1024 __func__, nc->self, nc->ctl_chan);
1025
Damien Miller85c50d72010-05-10 11:53:02 +10001026 channel_register_cleanup(nc->self, mux_master_session_cleanup_cb, 1);
Damien Millere1537f92010-01-26 13:26:22 +11001027
Damien Miller357610d2014-07-18 15:04:10 +10001028 cctx = xcalloc(1, sizeof(*cctx));
1029 cctx->rid = rid;
1030 channel_register_open_confirm(nc->self, mux_stdio_confirm, cctx);
1031 c->mux_pause = 1; /* stop handling messages until open_confirm done */
Damien Millere1537f92010-01-26 13:26:22 +11001032
Damien Miller357610d2014-07-18 15:04:10 +10001033 /* reply is deferred, sent by mux_session_confirm */
Damien Millere1537f92010-01-26 13:26:22 +11001034 return 0;
1035}
1036
Damien Miller357610d2014-07-18 15:04:10 +10001037/* Callback on open confirmation in mux master for a mux stdio fwd session. */
1038static void
1039mux_stdio_confirm(int id, int success, void *arg)
1040{
1041 struct mux_stdio_confirm_ctx *cctx = arg;
1042 Channel *c, *cc;
1043 Buffer reply;
1044
1045 if (cctx == NULL)
1046 fatal("%s: cctx == NULL", __func__);
1047 if ((c = channel_by_id(id)) == NULL)
1048 fatal("%s: no channel for id %d", __func__, id);
1049 if ((cc = channel_by_id(c->ctl_chan)) == NULL)
1050 fatal("%s: channel %d lacks control channel %d", __func__,
1051 id, c->ctl_chan);
1052
1053 if (!success) {
1054 debug3("%s: sending failure reply", __func__);
1055 /* prepare reply */
1056 buffer_init(&reply);
1057 buffer_put_int(&reply, MUX_S_FAILURE);
1058 buffer_put_int(&reply, cctx->rid);
1059 buffer_put_cstring(&reply, "Session open refused by peer");
1060 goto done;
1061 }
1062
1063 debug3("%s: sending success reply", __func__);
1064 /* prepare reply */
1065 buffer_init(&reply);
1066 buffer_put_int(&reply, MUX_S_SESSION_OPENED);
1067 buffer_put_int(&reply, cctx->rid);
1068 buffer_put_int(&reply, c->self);
1069
1070 done:
1071 /* Send reply */
1072 buffer_put_string(&cc->output, buffer_ptr(&reply), buffer_len(&reply));
1073 buffer_free(&reply);
1074
1075 if (cc->mux_pause <= 0)
1076 fatal("%s: mux_pause %d", __func__, cc->mux_pause);
1077 cc->mux_pause = 0; /* start processing messages again */
1078 c->open_confirm_ctx = NULL;
1079 free(cctx);
1080}
1081
Damien Miller6c3eec72011-05-05 14:16:22 +10001082static int
1083process_mux_stop_listening(u_int rid, Channel *c, Buffer *m, Buffer *r)
1084{
1085 debug("%s: channel %d: stop listening", __func__, c->self);
1086
1087 if (options.control_master == SSHCTL_MASTER_ASK ||
1088 options.control_master == SSHCTL_MASTER_AUTO_ASK) {
1089 if (!ask_permission("Disable further multiplexing on shared "
1090 "connection to %s? ", host)) {
1091 debug2("%s: stop listen refused by user", __func__);
1092 buffer_put_int(r, MUX_S_PERMISSION_DENIED);
1093 buffer_put_int(r, rid);
1094 buffer_put_cstring(r, "Permission denied");
1095 return 0;
1096 }
1097 }
1098
1099 if (mux_listener_channel != NULL) {
1100 channel_free(mux_listener_channel);
1101 client_stop_mux();
Darren Tuckera627d422013-06-02 07:31:17 +10001102 free(options.control_path);
Damien Miller6c3eec72011-05-05 14:16:22 +10001103 options.control_path = NULL;
1104 mux_listener_channel = NULL;
1105 muxserver_sock = -1;
1106 }
1107
1108 /* prepare reply */
1109 buffer_put_int(r, MUX_S_OK);
1110 buffer_put_int(r, rid);
1111
1112 return 0;
1113}
1114
Damien Millere1537f92010-01-26 13:26:22 +11001115/* Channel callbacks fired on read/write from mux slave fd */
1116static int
1117mux_master_read_cb(Channel *c)
1118{
1119 struct mux_master_state *state = (struct mux_master_state *)c->mux_ctx;
1120 Buffer in, out;
Damien Miller633de332014-05-15 13:48:26 +10001121 const u_char *ptr;
Damien Millere1537f92010-01-26 13:26:22 +11001122 u_int type, rid, have, i;
1123 int ret = -1;
1124
1125 /* Setup ctx and */
1126 if (c->mux_ctx == NULL) {
Damien Millerc094d1e2010-06-26 09:36:34 +10001127 state = xcalloc(1, sizeof(*state));
Damien Millere1537f92010-01-26 13:26:22 +11001128 c->mux_ctx = state;
1129 channel_register_cleanup(c->self,
1130 mux_master_control_cleanup_cb, 0);
1131
1132 /* Send hello */
1133 buffer_init(&out);
1134 buffer_put_int(&out, MUX_MSG_HELLO);
1135 buffer_put_int(&out, SSHMUX_VER);
1136 /* no extensions */
1137 buffer_put_string(&c->output, buffer_ptr(&out),
1138 buffer_len(&out));
1139 buffer_free(&out);
1140 debug3("%s: channel %d: hello sent", __func__, c->self);
1141 return 0;
1142 }
1143
1144 buffer_init(&in);
1145 buffer_init(&out);
1146
1147 /* Channel code ensures that we receive whole packets */
1148 if ((ptr = buffer_get_string_ptr_ret(&c->input, &have)) == NULL) {
1149 malf:
1150 error("%s: malformed message", __func__);
1151 goto out;
1152 }
1153 buffer_append(&in, ptr, have);
1154
1155 if (buffer_get_int_ret(&type, &in) != 0)
1156 goto malf;
1157 debug3("%s: channel %d packet type 0x%08x len %u",
1158 __func__, c->self, type, buffer_len(&in));
1159
1160 if (type == MUX_MSG_HELLO)
1161 rid = 0;
1162 else {
1163 if (!state->hello_rcvd) {
1164 error("%s: expected MUX_MSG_HELLO(0x%08x), "
1165 "received 0x%08x", __func__, MUX_MSG_HELLO, type);
1166 goto out;
1167 }
1168 if (buffer_get_int_ret(&rid, &in) != 0)
1169 goto malf;
1170 }
1171
1172 for (i = 0; mux_master_handlers[i].handler != NULL; i++) {
1173 if (type == mux_master_handlers[i].type) {
1174 ret = mux_master_handlers[i].handler(rid, c, &in, &out);
1175 break;
1176 }
1177 }
1178 if (mux_master_handlers[i].handler == NULL) {
1179 error("%s: unsupported mux message 0x%08x", __func__, type);
1180 buffer_put_int(&out, MUX_S_FAILURE);
1181 buffer_put_int(&out, rid);
1182 buffer_put_cstring(&out, "unsupported request");
1183 ret = 0;
1184 }
1185 /* Enqueue reply packet */
1186 if (buffer_len(&out) != 0) {
1187 buffer_put_string(&c->output, buffer_ptr(&out),
1188 buffer_len(&out));
1189 }
1190 out:
1191 buffer_free(&in);
1192 buffer_free(&out);
1193 return ret;
1194}
1195
1196void
1197mux_exit_message(Channel *c, int exitval)
1198{
1199 Buffer m;
1200 Channel *mux_chan;
1201
Damien Millerbc02f162013-04-23 19:25:49 +10001202 debug3("%s: channel %d: exit message, exitval %d", __func__, c->self,
Damien Millere1537f92010-01-26 13:26:22 +11001203 exitval);
1204
1205 if ((mux_chan = channel_by_id(c->ctl_chan)) == NULL)
1206 fatal("%s: channel %d missing mux channel %d",
1207 __func__, c->self, c->ctl_chan);
1208
1209 /* Append exit message packet to control socket output queue */
1210 buffer_init(&m);
1211 buffer_put_int(&m, MUX_S_EXIT_MESSAGE);
1212 buffer_put_int(&m, c->self);
1213 buffer_put_int(&m, exitval);
1214
1215 buffer_put_string(&mux_chan->output, buffer_ptr(&m), buffer_len(&m));
1216 buffer_free(&m);
1217}
Damien Millerb1cbfa22008-05-19 16:00:08 +10001218
Damien Miller555f3b82011-05-15 08:48:05 +10001219void
1220mux_tty_alloc_failed(Channel *c)
1221{
1222 Buffer m;
1223 Channel *mux_chan;
1224
1225 debug3("%s: channel %d: TTY alloc failed", __func__, c->self);
1226
1227 if ((mux_chan = channel_by_id(c->ctl_chan)) == NULL)
1228 fatal("%s: channel %d missing mux channel %d",
1229 __func__, c->self, c->ctl_chan);
1230
1231 /* Append exit message packet to control socket output queue */
1232 buffer_init(&m);
1233 buffer_put_int(&m, MUX_S_TTY_ALLOC_FAIL);
1234 buffer_put_int(&m, c->self);
1235
1236 buffer_put_string(&mux_chan->output, buffer_ptr(&m), buffer_len(&m));
1237 buffer_free(&m);
1238}
1239
Damien Millerb1cbfa22008-05-19 16:00:08 +10001240/* Prepare a mux master to listen on a Unix domain socket. */
1241void
1242muxserver_listen(void)
1243{
Damien Millerb1cbfa22008-05-19 16:00:08 +10001244 mode_t old_umask;
Damien Miller603134e2010-09-24 22:07:55 +10001245 char *orig_control_path = options.control_path;
1246 char rbuf[16+1];
1247 u_int i, r;
Damien Millerf42f7682014-07-18 15:03:27 +10001248 int oerrno;
Damien Millerb1cbfa22008-05-19 16:00:08 +10001249
1250 if (options.control_path == NULL ||
1251 options.control_master == SSHCTL_MASTER_NO)
1252 return;
1253
1254 debug("setting up multiplex master socket");
1255
Damien Miller603134e2010-09-24 22:07:55 +10001256 /*
1257 * Use a temporary path before listen so we can pseudo-atomically
1258 * establish the listening socket in its final location to avoid
1259 * other processes racing in between bind() and listen() and hitting
1260 * an unready socket.
1261 */
1262 for (i = 0; i < sizeof(rbuf) - 1; i++) {
1263 r = arc4random_uniform(26+26+10);
1264 rbuf[i] = (r < 26) ? 'a' + r :
1265 (r < 26*2) ? 'A' + r - 26 :
1266 '0' + r - 26 - 26;
1267 }
1268 rbuf[sizeof(rbuf) - 1] = '\0';
1269 options.control_path = NULL;
1270 xasprintf(&options.control_path, "%s.%s", orig_control_path, rbuf);
1271 debug3("%s: temporary control path %s", __func__, options.control_path);
1272
Damien Millerb1cbfa22008-05-19 16:00:08 +10001273 old_umask = umask(0177);
Damien Miller7acefbb2014-07-18 14:11:24 +10001274 muxserver_sock = unix_listener(options.control_path, 64, 0);
Damien Millerf42f7682014-07-18 15:03:27 +10001275 oerrno = errno;
Damien Miller7acefbb2014-07-18 14:11:24 +10001276 umask(old_umask);
1277 if (muxserver_sock < 0) {
Damien Millerf42f7682014-07-18 15:03:27 +10001278 if (oerrno == EINVAL || oerrno == EADDRINUSE) {
Darren Tuckerca19bfe2008-06-13 10:24:03 +10001279 error("ControlSocket %s already exists, "
1280 "disabling multiplexing", options.control_path);
Damien Miller603134e2010-09-24 22:07:55 +10001281 disable_mux_master:
Damien Miller60432d82011-05-15 08:34:46 +10001282 if (muxserver_sock != -1) {
1283 close(muxserver_sock);
1284 muxserver_sock = -1;
1285 }
Darren Tuckera627d422013-06-02 07:31:17 +10001286 free(orig_control_path);
1287 free(options.control_path);
Darren Tuckerca19bfe2008-06-13 10:24:03 +10001288 options.control_path = NULL;
1289 options.control_master = SSHCTL_MASTER_NO;
1290 return;
Damien Miller7acefbb2014-07-18 14:11:24 +10001291 } else {
1292 /* unix_listener() logs the error */
1293 cleanup_exit(255);
1294 }
Damien Millerb1cbfa22008-05-19 16:00:08 +10001295 }
Damien Millerb1cbfa22008-05-19 16:00:08 +10001296
Damien Miller603134e2010-09-24 22:07:55 +10001297 /* Now atomically "move" the mux socket into position */
1298 if (link(options.control_path, orig_control_path) != 0) {
1299 if (errno != EEXIST) {
djm@openbsd.org95687f52016-04-01 02:34:10 +00001300 fatal("%s: link mux listener %s => %s: %s", __func__,
Damien Miller603134e2010-09-24 22:07:55 +10001301 options.control_path, orig_control_path,
1302 strerror(errno));
1303 }
1304 error("ControlSocket %s already exists, disabling multiplexing",
1305 orig_control_path);
Damien Miller603134e2010-09-24 22:07:55 +10001306 unlink(options.control_path);
1307 goto disable_mux_master;
1308 }
1309 unlink(options.control_path);
Darren Tuckera627d422013-06-02 07:31:17 +10001310 free(options.control_path);
Damien Miller603134e2010-09-24 22:07:55 +10001311 options.control_path = orig_control_path;
1312
Damien Millerb1cbfa22008-05-19 16:00:08 +10001313 set_nonblock(muxserver_sock);
Damien Millere1537f92010-01-26 13:26:22 +11001314
1315 mux_listener_channel = channel_new("mux listener",
1316 SSH_CHANNEL_MUX_LISTENER, muxserver_sock, muxserver_sock, -1,
1317 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT,
Damien Miller603134e2010-09-24 22:07:55 +10001318 0, options.control_path, 1);
Damien Millere1537f92010-01-26 13:26:22 +11001319 mux_listener_channel->mux_rcb = mux_master_read_cb;
1320 debug3("%s: mux listener channel %d fd %d", __func__,
1321 mux_listener_channel->self, mux_listener_channel->sock);
Damien Millerb1cbfa22008-05-19 16:00:08 +10001322}
1323
1324/* Callback on open confirmation in mux master for a mux client session. */
1325static void
Damien Millerd530f5f2010-05-21 14:57:10 +10001326mux_session_confirm(int id, int success, void *arg)
Damien Millerb1cbfa22008-05-19 16:00:08 +10001327{
1328 struct mux_session_confirm_ctx *cctx = arg;
1329 const char *display;
Damien Millerd530f5f2010-05-21 14:57:10 +10001330 Channel *c, *cc;
Damien Millerb1cbfa22008-05-19 16:00:08 +10001331 int i;
Damien Millerd530f5f2010-05-21 14:57:10 +10001332 Buffer reply;
Damien Millerb1cbfa22008-05-19 16:00:08 +10001333
1334 if (cctx == NULL)
1335 fatal("%s: cctx == NULL", __func__);
Damien Millere1537f92010-01-26 13:26:22 +11001336 if ((c = channel_by_id(id)) == NULL)
Damien Millerb1cbfa22008-05-19 16:00:08 +10001337 fatal("%s: no channel for id %d", __func__, id);
Damien Millerd530f5f2010-05-21 14:57:10 +10001338 if ((cc = channel_by_id(c->ctl_chan)) == NULL)
1339 fatal("%s: channel %d lacks control channel %d", __func__,
1340 id, c->ctl_chan);
1341
1342 if (!success) {
1343 debug3("%s: sending failure reply", __func__);
1344 /* prepare reply */
1345 buffer_init(&reply);
1346 buffer_put_int(&reply, MUX_S_FAILURE);
1347 buffer_put_int(&reply, cctx->rid);
1348 buffer_put_cstring(&reply, "Session open refused by peer");
1349 goto done;
1350 }
Damien Millerb1cbfa22008-05-19 16:00:08 +10001351
1352 display = getenv("DISPLAY");
1353 if (cctx->want_x_fwd && options.forward_x11 && display != NULL) {
1354 char *proto, *data;
Damien Miller1ab6a512010-06-26 10:02:24 +10001355
Damien Millerb1cbfa22008-05-19 16:00:08 +10001356 /* Get reasonable local authentication information. */
djm@openbsd.orged4ce822016-01-13 23:04:47 +00001357 if (client_x11_get_proto(display, options.xauth_location,
Damien Miller1ab6a512010-06-26 10:02:24 +10001358 options.forward_x11_trusted, options.forward_x11_timeout,
djm@openbsd.orged4ce822016-01-13 23:04:47 +00001359 &proto, &data) == 0) {
1360 /* Request forwarding with authentication spoofing. */
1361 debug("Requesting X11 forwarding with authentication "
1362 "spoofing.");
1363 x11_request_forwarding_with_spoofing(id, display, proto,
1364 data, 1);
1365 /* XXX exit_on_forward_failure */
1366 client_expect_confirm(id, "X11 forwarding",
1367 CONFIRM_WARN);
1368 }
Damien Millerb1cbfa22008-05-19 16:00:08 +10001369 }
1370
1371 if (cctx->want_agent_fwd && options.forward_agent) {
1372 debug("Requesting authentication agent forwarding.");
1373 channel_request_start(id, "auth-agent-req@openssh.com", 0);
1374 packet_send();
1375 }
1376
1377 client_session2_setup(id, cctx->want_tty, cctx->want_subsys,
1378 cctx->term, &cctx->tio, c->rfd, &cctx->cmd, cctx->env);
1379
Damien Millerd530f5f2010-05-21 14:57:10 +10001380 debug3("%s: sending success reply", __func__);
1381 /* prepare reply */
1382 buffer_init(&reply);
1383 buffer_put_int(&reply, MUX_S_SESSION_OPENED);
1384 buffer_put_int(&reply, cctx->rid);
1385 buffer_put_int(&reply, c->self);
1386
1387 done:
1388 /* Send reply */
1389 buffer_put_string(&cc->output, buffer_ptr(&reply), buffer_len(&reply));
1390 buffer_free(&reply);
1391
1392 if (cc->mux_pause <= 0)
1393 fatal("%s: mux_pause %d", __func__, cc->mux_pause);
1394 cc->mux_pause = 0; /* start processing messages again */
Damien Millerb1cbfa22008-05-19 16:00:08 +10001395 c->open_confirm_ctx = NULL;
1396 buffer_free(&cctx->cmd);
Darren Tuckera627d422013-06-02 07:31:17 +10001397 free(cctx->term);
Damien Millerb1cbfa22008-05-19 16:00:08 +10001398 if (cctx->env != NULL) {
1399 for (i = 0; cctx->env[i] != NULL; i++)
Darren Tuckera627d422013-06-02 07:31:17 +10001400 free(cctx->env[i]);
1401 free(cctx->env);
Damien Millerb1cbfa22008-05-19 16:00:08 +10001402 }
Darren Tuckera627d422013-06-02 07:31:17 +10001403 free(cctx);
Damien Millerb1cbfa22008-05-19 16:00:08 +10001404}
1405
Damien Millerb1cbfa22008-05-19 16:00:08 +10001406/* ** Multiplexing client support */
1407
1408/* Exit signal handler */
1409static void
1410control_client_sighandler(int signo)
1411{
1412 muxclient_terminate = signo;
1413}
1414
1415/*
1416 * Relay signal handler - used to pass some signals from mux client to
1417 * mux master.
1418 */
1419static void
1420control_client_sigrelay(int signo)
1421{
1422 int save_errno = errno;
1423
1424 if (muxserver_pid > 1)
1425 kill(muxserver_pid, signo);
1426
1427 errno = save_errno;
1428}
1429
Damien Millerb1cbfa22008-05-19 16:00:08 +10001430static int
Damien Millere1537f92010-01-26 13:26:22 +11001431mux_client_read(int fd, Buffer *b, u_int need)
Damien Millerb1cbfa22008-05-19 16:00:08 +10001432{
Damien Millere1537f92010-01-26 13:26:22 +11001433 u_int have;
1434 ssize_t len;
1435 u_char *p;
1436 struct pollfd pfd;
Damien Millerb1cbfa22008-05-19 16:00:08 +10001437
Damien Millere1537f92010-01-26 13:26:22 +11001438 pfd.fd = fd;
1439 pfd.events = POLLIN;
1440 p = buffer_append_space(b, need);
1441 for (have = 0; have < need; ) {
1442 if (muxclient_terminate) {
1443 errno = EINTR;
1444 return -1;
1445 }
1446 len = read(fd, p + have, need - have);
1447 if (len < 0) {
1448 switch (errno) {
1449#if defined(EWOULDBLOCK) && (EWOULDBLOCK != EAGAIN)
1450 case EWOULDBLOCK:
1451#endif
1452 case EAGAIN:
1453 (void)poll(&pfd, 1, -1);
1454 /* FALLTHROUGH */
1455 case EINTR:
1456 continue;
1457 default:
1458 return -1;
1459 }
1460 }
1461 if (len == 0) {
1462 errno = EPIPE;
1463 return -1;
1464 }
1465 have += (u_int)len;
1466 }
1467 return 0;
1468}
Damien Millerb1cbfa22008-05-19 16:00:08 +10001469
Damien Millere1537f92010-01-26 13:26:22 +11001470static int
1471mux_client_write_packet(int fd, Buffer *m)
1472{
1473 Buffer queue;
1474 u_int have, need;
1475 int oerrno, len;
1476 u_char *ptr;
1477 struct pollfd pfd;
Damien Millerb1cbfa22008-05-19 16:00:08 +10001478
Damien Millere1537f92010-01-26 13:26:22 +11001479 pfd.fd = fd;
1480 pfd.events = POLLOUT;
1481 buffer_init(&queue);
1482 buffer_put_string(&queue, buffer_ptr(m), buffer_len(m));
1483
1484 need = buffer_len(&queue);
1485 ptr = buffer_ptr(&queue);
1486
1487 for (have = 0; have < need; ) {
1488 if (muxclient_terminate) {
1489 buffer_free(&queue);
1490 errno = EINTR;
1491 return -1;
1492 }
1493 len = write(fd, ptr + have, need - have);
1494 if (len < 0) {
1495 switch (errno) {
1496#if defined(EWOULDBLOCK) && (EWOULDBLOCK != EAGAIN)
1497 case EWOULDBLOCK:
1498#endif
1499 case EAGAIN:
1500 (void)poll(&pfd, 1, -1);
1501 /* FALLTHROUGH */
1502 case EINTR:
1503 continue;
1504 default:
1505 oerrno = errno;
1506 buffer_free(&queue);
1507 errno = oerrno;
1508 return -1;
1509 }
1510 }
1511 if (len == 0) {
1512 buffer_free(&queue);
1513 errno = EPIPE;
1514 return -1;
1515 }
1516 have += (u_int)len;
1517 }
1518 buffer_free(&queue);
1519 return 0;
1520}
1521
1522static int
1523mux_client_read_packet(int fd, Buffer *m)
1524{
1525 Buffer queue;
1526 u_int need, have;
Damien Miller633de332014-05-15 13:48:26 +10001527 const u_char *ptr;
Damien Millere1537f92010-01-26 13:26:22 +11001528 int oerrno;
1529
1530 buffer_init(&queue);
1531 if (mux_client_read(fd, &queue, 4) != 0) {
1532 if ((oerrno = errno) == EPIPE)
Darren Tucker746e9062013-06-06 08:20:13 +10001533 debug3("%s: read header failed: %s", __func__,
1534 strerror(errno));
1535 buffer_free(&queue);
Damien Millere1537f92010-01-26 13:26:22 +11001536 errno = oerrno;
1537 return -1;
1538 }
1539 need = get_u32(buffer_ptr(&queue));
1540 if (mux_client_read(fd, &queue, need) != 0) {
1541 oerrno = errno;
1542 debug3("%s: read body failed: %s", __func__, strerror(errno));
Darren Tucker746e9062013-06-06 08:20:13 +10001543 buffer_free(&queue);
Damien Millere1537f92010-01-26 13:26:22 +11001544 errno = oerrno;
1545 return -1;
1546 }
1547 ptr = buffer_get_string_ptr(&queue, &have);
1548 buffer_append(m, ptr, have);
1549 buffer_free(&queue);
1550 return 0;
1551}
1552
1553static int
1554mux_client_hello_exchange(int fd)
1555{
1556 Buffer m;
1557 u_int type, ver;
1558
1559 buffer_init(&m);
1560 buffer_put_int(&m, MUX_MSG_HELLO);
1561 buffer_put_int(&m, SSHMUX_VER);
1562 /* no extensions */
1563
1564 if (mux_client_write_packet(fd, &m) != 0)
1565 fatal("%s: write packet: %s", __func__, strerror(errno));
1566
1567 buffer_clear(&m);
1568
1569 /* Read their HELLO */
1570 if (mux_client_read_packet(fd, &m) != 0) {
1571 buffer_free(&m);
1572 return -1;
1573 }
1574
1575 type = buffer_get_int(&m);
1576 if (type != MUX_MSG_HELLO)
1577 fatal("%s: expected HELLO (%u) received %u",
1578 __func__, MUX_MSG_HELLO, type);
1579 ver = buffer_get_int(&m);
1580 if (ver != SSHMUX_VER)
1581 fatal("Unsupported multiplexing protocol version %d "
1582 "(expected %d)", ver, SSHMUX_VER);
1583 debug2("%s: master version %u", __func__, ver);
1584 /* No extensions are presently defined */
1585 while (buffer_len(&m) > 0) {
1586 char *name = buffer_get_string(&m, NULL);
1587 char *value = buffer_get_string(&m, NULL);
1588
1589 debug2("Unrecognised master extension \"%s\"", name);
Darren Tuckera627d422013-06-02 07:31:17 +10001590 free(name);
1591 free(value);
Damien Millere1537f92010-01-26 13:26:22 +11001592 }
1593 buffer_free(&m);
1594 return 0;
1595}
1596
1597static u_int
1598mux_client_request_alive(int fd)
1599{
1600 Buffer m;
1601 char *e;
1602 u_int pid, type, rid;
1603
1604 debug3("%s: entering", __func__);
1605
1606 buffer_init(&m);
1607 buffer_put_int(&m, MUX_C_ALIVE_CHECK);
1608 buffer_put_int(&m, muxclient_request_id);
1609
1610 if (mux_client_write_packet(fd, &m) != 0)
1611 fatal("%s: write packet: %s", __func__, strerror(errno));
1612
1613 buffer_clear(&m);
1614
1615 /* Read their reply */
1616 if (mux_client_read_packet(fd, &m) != 0) {
1617 buffer_free(&m);
1618 return 0;
1619 }
1620
1621 type = buffer_get_int(&m);
1622 if (type != MUX_S_ALIVE) {
1623 e = buffer_get_string(&m, NULL);
1624 fatal("%s: master returned error: %s", __func__, e);
1625 }
1626
1627 if ((rid = buffer_get_int(&m)) != muxclient_request_id)
1628 fatal("%s: out of sequence reply: my id %u theirs %u",
1629 __func__, muxclient_request_id, rid);
1630 pid = buffer_get_int(&m);
1631 buffer_free(&m);
1632
1633 debug3("%s: done pid = %u", __func__, pid);
1634
1635 muxclient_request_id++;
1636
1637 return pid;
1638}
1639
1640static void
1641mux_client_request_terminate(int fd)
1642{
1643 Buffer m;
1644 char *e;
1645 u_int type, rid;
1646
1647 debug3("%s: entering", __func__);
1648
1649 buffer_init(&m);
1650 buffer_put_int(&m, MUX_C_TERMINATE);
1651 buffer_put_int(&m, muxclient_request_id);
1652
1653 if (mux_client_write_packet(fd, &m) != 0)
1654 fatal("%s: write packet: %s", __func__, strerror(errno));
1655
1656 buffer_clear(&m);
1657
1658 /* Read their reply */
1659 if (mux_client_read_packet(fd, &m) != 0) {
1660 /* Remote end exited already */
1661 if (errno == EPIPE) {
1662 buffer_free(&m);
1663 return;
1664 }
1665 fatal("%s: read from master failed: %s",
1666 __func__, strerror(errno));
1667 }
1668
1669 type = buffer_get_int(&m);
1670 if ((rid = buffer_get_int(&m)) != muxclient_request_id)
1671 fatal("%s: out of sequence reply: my id %u theirs %u",
1672 __func__, muxclient_request_id, rid);
1673 switch (type) {
1674 case MUX_S_OK:
1675 break;
1676 case MUX_S_PERMISSION_DENIED:
1677 e = buffer_get_string(&m, NULL);
1678 fatal("Master refused termination request: %s", e);
1679 case MUX_S_FAILURE:
1680 e = buffer_get_string(&m, NULL);
1681 fatal("%s: termination request failed: %s", __func__, e);
1682 default:
1683 fatal("%s: unexpected response from master 0x%08x",
1684 __func__, type);
1685 }
1686 buffer_free(&m);
1687 muxclient_request_id++;
1688}
1689
1690static int
Damien Miller7acefbb2014-07-18 14:11:24 +10001691mux_client_forward(int fd, int cancel_flag, u_int ftype, struct Forward *fwd)
Damien Millere1537f92010-01-26 13:26:22 +11001692{
1693 Buffer m;
1694 char *e, *fwd_desc;
1695 u_int type, rid;
1696
1697 fwd_desc = format_forward(ftype, fwd);
Damien Millerf6dff7c2011-09-22 21:38:52 +10001698 debug("Requesting %s %s",
1699 cancel_flag ? "cancellation of" : "forwarding of", fwd_desc);
Darren Tuckera627d422013-06-02 07:31:17 +10001700 free(fwd_desc);
Damien Millere1537f92010-01-26 13:26:22 +11001701
1702 buffer_init(&m);
Damien Millerf6dff7c2011-09-22 21:38:52 +10001703 buffer_put_int(&m, cancel_flag ? MUX_C_CLOSE_FWD : MUX_C_OPEN_FWD);
Damien Millere1537f92010-01-26 13:26:22 +11001704 buffer_put_int(&m, muxclient_request_id);
1705 buffer_put_int(&m, ftype);
Damien Miller7acefbb2014-07-18 14:11:24 +10001706 if (fwd->listen_path != NULL) {
1707 buffer_put_cstring(&m, fwd->listen_path);
1708 } else {
1709 buffer_put_cstring(&m,
djm@openbsd.org46ac2ed2014-12-22 07:24:11 +00001710 fwd->listen_host == NULL ? "" :
1711 (*fwd->listen_host == '\0' ? "*" : fwd->listen_host));
Damien Miller7acefbb2014-07-18 14:11:24 +10001712 }
Damien Millere1537f92010-01-26 13:26:22 +11001713 buffer_put_int(&m, fwd->listen_port);
Damien Miller7acefbb2014-07-18 14:11:24 +10001714 if (fwd->connect_path != NULL) {
1715 buffer_put_cstring(&m, fwd->connect_path);
1716 } else {
1717 buffer_put_cstring(&m,
1718 fwd->connect_host == NULL ? "" : fwd->connect_host);
1719 }
Damien Millere1537f92010-01-26 13:26:22 +11001720 buffer_put_int(&m, fwd->connect_port);
1721
1722 if (mux_client_write_packet(fd, &m) != 0)
1723 fatal("%s: write packet: %s", __func__, strerror(errno));
1724
1725 buffer_clear(&m);
1726
1727 /* Read their reply */
1728 if (mux_client_read_packet(fd, &m) != 0) {
1729 buffer_free(&m);
1730 return -1;
1731 }
1732
1733 type = buffer_get_int(&m);
1734 if ((rid = buffer_get_int(&m)) != muxclient_request_id)
1735 fatal("%s: out of sequence reply: my id %u theirs %u",
1736 __func__, muxclient_request_id, rid);
1737 switch (type) {
1738 case MUX_S_OK:
1739 break;
Damien Miller388f6fc2010-05-21 14:57:35 +10001740 case MUX_S_REMOTE_PORT:
Damien Millerf6dff7c2011-09-22 21:38:52 +10001741 if (cancel_flag)
1742 fatal("%s: got MUX_S_REMOTE_PORT for cancel", __func__);
Damien Miller388f6fc2010-05-21 14:57:35 +10001743 fwd->allocated_port = buffer_get_int(&m);
djm@openbsd.org8312cfb2015-05-01 04:01:58 +00001744 verbose("Allocated port %u for remote forward to %s:%d",
Damien Miller388f6fc2010-05-21 14:57:35 +10001745 fwd->allocated_port,
1746 fwd->connect_host ? fwd->connect_host : "",
1747 fwd->connect_port);
1748 if (muxclient_command == SSHMUX_COMMAND_FORWARD)
djm@openbsd.orgb1d38a32015-10-15 23:51:40 +00001749 fprintf(stdout, "%i\n", fwd->allocated_port);
Damien Miller388f6fc2010-05-21 14:57:35 +10001750 break;
Damien Millere1537f92010-01-26 13:26:22 +11001751 case MUX_S_PERMISSION_DENIED:
1752 e = buffer_get_string(&m, NULL);
1753 buffer_free(&m);
1754 error("Master refused forwarding request: %s", e);
1755 return -1;
1756 case MUX_S_FAILURE:
1757 e = buffer_get_string(&m, NULL);
1758 buffer_free(&m);
Damien Miller445c9a52011-01-14 12:01:29 +11001759 error("%s: forwarding request failed: %s", __func__, e);
Damien Millere1537f92010-01-26 13:26:22 +11001760 return -1;
1761 default:
1762 fatal("%s: unexpected response from master 0x%08x",
1763 __func__, type);
1764 }
1765 buffer_free(&m);
1766
1767 muxclient_request_id++;
1768 return 0;
1769}
1770
1771static int
Damien Millerf6dff7c2011-09-22 21:38:52 +10001772mux_client_forwards(int fd, int cancel_flag)
Damien Millere1537f92010-01-26 13:26:22 +11001773{
Damien Millerf6dff7c2011-09-22 21:38:52 +10001774 int i, ret = 0;
Damien Millere1537f92010-01-26 13:26:22 +11001775
Damien Millerf6dff7c2011-09-22 21:38:52 +10001776 debug3("%s: %s forwardings: %d local, %d remote", __func__,
1777 cancel_flag ? "cancel" : "request",
Damien Millere1537f92010-01-26 13:26:22 +11001778 options.num_local_forwards, options.num_remote_forwards);
1779
1780 /* XXX ExitOnForwardingFailure */
1781 for (i = 0; i < options.num_local_forwards; i++) {
Damien Millerf6dff7c2011-09-22 21:38:52 +10001782 if (mux_client_forward(fd, cancel_flag,
Damien Millere1537f92010-01-26 13:26:22 +11001783 options.local_forwards[i].connect_port == 0 ?
1784 MUX_FWD_DYNAMIC : MUX_FWD_LOCAL,
1785 options.local_forwards + i) != 0)
Damien Millerf6dff7c2011-09-22 21:38:52 +10001786 ret = -1;
Damien Millere1537f92010-01-26 13:26:22 +11001787 }
1788 for (i = 0; i < options.num_remote_forwards; i++) {
Damien Millerf6dff7c2011-09-22 21:38:52 +10001789 if (mux_client_forward(fd, cancel_flag, MUX_FWD_REMOTE,
Damien Millere1537f92010-01-26 13:26:22 +11001790 options.remote_forwards + i) != 0)
Damien Millerf6dff7c2011-09-22 21:38:52 +10001791 ret = -1;
Damien Millere1537f92010-01-26 13:26:22 +11001792 }
Damien Millerf6dff7c2011-09-22 21:38:52 +10001793 return ret;
Damien Millere1537f92010-01-26 13:26:22 +11001794}
1795
1796static int
1797mux_client_request_session(int fd)
1798{
1799 Buffer m;
1800 char *e, *term;
1801 u_int i, rid, sid, esid, exitval, type, exitval_seen;
1802 extern char **environ;
Damien Miller555f3b82011-05-15 08:48:05 +10001803 int devnull, rawmode;
Damien Millere1537f92010-01-26 13:26:22 +11001804
1805 debug3("%s: entering", __func__);
1806
1807 if ((muxserver_pid = mux_client_request_alive(fd)) == 0) {
1808 error("%s: master alive request failed", __func__);
1809 return -1;
1810 }
1811
1812 signal(SIGPIPE, SIG_IGN);
1813
1814 if (stdin_null_flag) {
1815 if ((devnull = open(_PATH_DEVNULL, O_RDONLY)) == -1)
1816 fatal("open(/dev/null): %s", strerror(errno));
1817 if (dup2(devnull, STDIN_FILENO) == -1)
1818 fatal("dup2: %s", strerror(errno));
1819 if (devnull > STDERR_FILENO)
1820 close(devnull);
1821 }
1822
1823 term = getenv("TERM");
1824
1825 buffer_init(&m);
1826 buffer_put_int(&m, MUX_C_NEW_SESSION);
1827 buffer_put_int(&m, muxclient_request_id);
1828 buffer_put_cstring(&m, ""); /* reserved */
1829 buffer_put_int(&m, tty_flag);
1830 buffer_put_int(&m, options.forward_x11);
1831 buffer_put_int(&m, options.forward_agent);
1832 buffer_put_int(&m, subsystem_flag);
1833 buffer_put_int(&m, options.escape_char == SSH_ESCAPECHAR_NONE ?
1834 0xffffffff : (u_int)options.escape_char);
1835 buffer_put_cstring(&m, term == NULL ? "" : term);
1836 buffer_put_string(&m, buffer_ptr(&command), buffer_len(&command));
1837
1838 if (options.num_send_env > 0 && environ != NULL) {
1839 /* Pass environment */
1840 for (i = 0; environ[i] != NULL; i++) {
1841 if (env_permitted(environ[i])) {
1842 buffer_put_cstring(&m, environ[i]);
1843 }
1844 }
1845 }
1846
1847 if (mux_client_write_packet(fd, &m) != 0)
1848 fatal("%s: write packet: %s", __func__, strerror(errno));
1849
1850 /* Send the stdio file descriptors */
1851 if (mm_send_fd(fd, STDIN_FILENO) == -1 ||
1852 mm_send_fd(fd, STDOUT_FILENO) == -1 ||
1853 mm_send_fd(fd, STDERR_FILENO) == -1)
1854 fatal("%s: send fds failed", __func__);
1855
1856 debug3("%s: session request sent", __func__);
1857
1858 /* Read their reply */
1859 buffer_clear(&m);
1860 if (mux_client_read_packet(fd, &m) != 0) {
1861 error("%s: read from master failed: %s",
1862 __func__, strerror(errno));
1863 buffer_free(&m);
1864 return -1;
1865 }
1866
1867 type = buffer_get_int(&m);
1868 if ((rid = buffer_get_int(&m)) != muxclient_request_id)
1869 fatal("%s: out of sequence reply: my id %u theirs %u",
1870 __func__, muxclient_request_id, rid);
1871 switch (type) {
1872 case MUX_S_SESSION_OPENED:
1873 sid = buffer_get_int(&m);
1874 debug("%s: master session id: %u", __func__, sid);
1875 break;
1876 case MUX_S_PERMISSION_DENIED:
1877 e = buffer_get_string(&m, NULL);
1878 buffer_free(&m);
Damien Miller445c9a52011-01-14 12:01:29 +11001879 error("Master refused session request: %s", e);
Damien Millere1537f92010-01-26 13:26:22 +11001880 return -1;
1881 case MUX_S_FAILURE:
1882 e = buffer_get_string(&m, NULL);
1883 buffer_free(&m);
Damien Miller445c9a52011-01-14 12:01:29 +11001884 error("%s: session request failed: %s", __func__, e);
Damien Millere1537f92010-01-26 13:26:22 +11001885 return -1;
1886 default:
1887 buffer_free(&m);
1888 error("%s: unexpected response from master 0x%08x",
1889 __func__, type);
1890 return -1;
1891 }
1892 muxclient_request_id++;
1893
semarie@openbsd.orgd7d2bc92015-12-26 07:46:03 +00001894 if (pledge("stdio proc tty", NULL) == -1)
1895 fatal("%s pledge(): %s", __func__, strerror(errno));
Damien Miller4626cba2016-01-08 14:24:56 +11001896 platform_pledge_mux();
semarie@openbsd.orgd7d2bc92015-12-26 07:46:03 +00001897
Damien Millere1537f92010-01-26 13:26:22 +11001898 signal(SIGHUP, control_client_sighandler);
1899 signal(SIGINT, control_client_sighandler);
1900 signal(SIGTERM, control_client_sighandler);
1901 signal(SIGWINCH, control_client_sigrelay);
1902
Damien Miller555f3b82011-05-15 08:48:05 +10001903 rawmode = tty_flag;
Damien Millere1537f92010-01-26 13:26:22 +11001904 if (tty_flag)
Damien Miller21771e22011-05-15 08:45:50 +10001905 enter_raw_mode(options.request_tty == REQUEST_TTY_FORCE);
Damien Millere1537f92010-01-26 13:26:22 +11001906
1907 /*
1908 * Stick around until the controlee closes the client_fd.
1909 * Before it does, it is expected to write an exit message.
1910 * This process must read the value and wait for the closure of
1911 * the client_fd; if this one closes early, the multiplex master will
1912 * terminate early too (possibly losing data).
1913 */
1914 for (exitval = 255, exitval_seen = 0;;) {
1915 buffer_clear(&m);
1916 if (mux_client_read_packet(fd, &m) != 0)
1917 break;
1918 type = buffer_get_int(&m);
Damien Miller555f3b82011-05-15 08:48:05 +10001919 switch (type) {
1920 case MUX_S_TTY_ALLOC_FAIL:
1921 if ((esid = buffer_get_int(&m)) != sid)
1922 fatal("%s: tty alloc fail on unknown session: "
1923 "my id %u theirs %u",
1924 __func__, sid, esid);
1925 leave_raw_mode(options.request_tty ==
1926 REQUEST_TTY_FORCE);
1927 rawmode = 0;
1928 continue;
1929 case MUX_S_EXIT_MESSAGE:
1930 if ((esid = buffer_get_int(&m)) != sid)
1931 fatal("%s: exit on unknown session: "
1932 "my id %u theirs %u",
1933 __func__, sid, esid);
1934 if (exitval_seen)
1935 fatal("%s: exitval sent twice", __func__);
1936 exitval = buffer_get_int(&m);
1937 exitval_seen = 1;
1938 continue;
1939 default:
Damien Millere1537f92010-01-26 13:26:22 +11001940 e = buffer_get_string(&m, NULL);
1941 fatal("%s: master returned error: %s", __func__, e);
1942 }
Damien Millere1537f92010-01-26 13:26:22 +11001943 }
1944
1945 close(fd);
Damien Miller555f3b82011-05-15 08:48:05 +10001946 if (rawmode)
1947 leave_raw_mode(options.request_tty == REQUEST_TTY_FORCE);
Damien Millere1537f92010-01-26 13:26:22 +11001948
1949 if (muxclient_terminate) {
1950 debug2("Exiting on signal %d", muxclient_terminate);
1951 exitval = 255;
1952 } else if (!exitval_seen) {
1953 debug2("Control master terminated unexpectedly");
1954 exitval = 255;
1955 } else
1956 debug2("Received exit status from master %d", exitval);
1957
1958 if (tty_flag && options.log_level != SYSLOG_LEVEL_QUIET)
1959 fprintf(stderr, "Shared connection to %s closed.\r\n", host);
1960
1961 exit(exitval);
1962}
1963
1964static int
1965mux_client_request_stdio_fwd(int fd)
1966{
1967 Buffer m;
1968 char *e;
1969 u_int type, rid, sid;
1970 int devnull;
1971
1972 debug3("%s: entering", __func__);
1973
1974 if ((muxserver_pid = mux_client_request_alive(fd)) == 0) {
1975 error("%s: master alive request failed", __func__);
1976 return -1;
1977 }
1978
1979 signal(SIGPIPE, SIG_IGN);
1980
1981 if (stdin_null_flag) {
1982 if ((devnull = open(_PATH_DEVNULL, O_RDONLY)) == -1)
1983 fatal("open(/dev/null): %s", strerror(errno));
1984 if (dup2(devnull, STDIN_FILENO) == -1)
1985 fatal("dup2: %s", strerror(errno));
1986 if (devnull > STDERR_FILENO)
1987 close(devnull);
1988 }
1989
1990 buffer_init(&m);
1991 buffer_put_int(&m, MUX_C_NEW_STDIO_FWD);
1992 buffer_put_int(&m, muxclient_request_id);
1993 buffer_put_cstring(&m, ""); /* reserved */
1994 buffer_put_cstring(&m, stdio_forward_host);
1995 buffer_put_int(&m, stdio_forward_port);
1996
1997 if (mux_client_write_packet(fd, &m) != 0)
1998 fatal("%s: write packet: %s", __func__, strerror(errno));
1999
2000 /* Send the stdio file descriptors */
2001 if (mm_send_fd(fd, STDIN_FILENO) == -1 ||
2002 mm_send_fd(fd, STDOUT_FILENO) == -1)
2003 fatal("%s: send fds failed", __func__);
2004
semarie@openbsd.orgb91926a2015-12-03 17:00:18 +00002005 if (pledge("stdio proc tty", NULL) == -1)
2006 fatal("%s pledge(): %s", __func__, strerror(errno));
Damien Miller4626cba2016-01-08 14:24:56 +11002007 platform_pledge_mux();
semarie@openbsd.orgb91926a2015-12-03 17:00:18 +00002008
Damien Millere1537f92010-01-26 13:26:22 +11002009 debug3("%s: stdio forward request sent", __func__);
2010
2011 /* Read their reply */
2012 buffer_clear(&m);
2013
2014 if (mux_client_read_packet(fd, &m) != 0) {
2015 error("%s: read from master failed: %s",
2016 __func__, strerror(errno));
2017 buffer_free(&m);
2018 return -1;
2019 }
2020
2021 type = buffer_get_int(&m);
2022 if ((rid = buffer_get_int(&m)) != muxclient_request_id)
2023 fatal("%s: out of sequence reply: my id %u theirs %u",
2024 __func__, muxclient_request_id, rid);
2025 switch (type) {
2026 case MUX_S_SESSION_OPENED:
2027 sid = buffer_get_int(&m);
2028 debug("%s: master session id: %u", __func__, sid);
2029 break;
2030 case MUX_S_PERMISSION_DENIED:
2031 e = buffer_get_string(&m, NULL);
2032 buffer_free(&m);
Damien Miller445c9a52011-01-14 12:01:29 +11002033 fatal("Master refused stdio forwarding request: %s", e);
Damien Millere1537f92010-01-26 13:26:22 +11002034 case MUX_S_FAILURE:
2035 e = buffer_get_string(&m, NULL);
2036 buffer_free(&m);
Damien Miller357610d2014-07-18 15:04:10 +10002037 fatal("Stdio forwarding request failed: %s", e);
Damien Millere1537f92010-01-26 13:26:22 +11002038 default:
2039 buffer_free(&m);
2040 error("%s: unexpected response from master 0x%08x",
2041 __func__, type);
2042 return -1;
2043 }
2044 muxclient_request_id++;
2045
2046 signal(SIGHUP, control_client_sighandler);
2047 signal(SIGINT, control_client_sighandler);
2048 signal(SIGTERM, control_client_sighandler);
2049 signal(SIGWINCH, control_client_sigrelay);
2050
2051 /*
2052 * Stick around until the controlee closes the client_fd.
2053 */
2054 buffer_clear(&m);
2055 if (mux_client_read_packet(fd, &m) != 0) {
2056 if (errno == EPIPE ||
2057 (errno == EINTR && muxclient_terminate != 0))
2058 return 0;
2059 fatal("%s: mux_client_read_packet: %s",
2060 __func__, strerror(errno));
2061 }
2062 fatal("%s: master returned unexpected message %u", __func__, type);
Damien Millerb1cbfa22008-05-19 16:00:08 +10002063}
2064
Damien Miller6c3eec72011-05-05 14:16:22 +10002065static void
2066mux_client_request_stop_listening(int fd)
2067{
2068 Buffer m;
2069 char *e;
2070 u_int type, rid;
2071
2072 debug3("%s: entering", __func__);
2073
2074 buffer_init(&m);
2075 buffer_put_int(&m, MUX_C_STOP_LISTENING);
2076 buffer_put_int(&m, muxclient_request_id);
2077
2078 if (mux_client_write_packet(fd, &m) != 0)
2079 fatal("%s: write packet: %s", __func__, strerror(errno));
2080
2081 buffer_clear(&m);
2082
2083 /* Read their reply */
2084 if (mux_client_read_packet(fd, &m) != 0)
2085 fatal("%s: read from master failed: %s",
2086 __func__, strerror(errno));
2087
2088 type = buffer_get_int(&m);
2089 if ((rid = buffer_get_int(&m)) != muxclient_request_id)
2090 fatal("%s: out of sequence reply: my id %u theirs %u",
2091 __func__, muxclient_request_id, rid);
2092 switch (type) {
2093 case MUX_S_OK:
2094 break;
2095 case MUX_S_PERMISSION_DENIED:
2096 e = buffer_get_string(&m, NULL);
2097 fatal("Master refused stop listening request: %s", e);
2098 case MUX_S_FAILURE:
2099 e = buffer_get_string(&m, NULL);
2100 fatal("%s: stop listening request failed: %s", __func__, e);
2101 default:
2102 fatal("%s: unexpected response from master 0x%08x",
2103 __func__, type);
2104 }
2105 buffer_free(&m);
2106 muxclient_request_id++;
2107}
2108
Damien Millerb1cbfa22008-05-19 16:00:08 +10002109/* Multiplex client main loop. */
2110void
2111muxclient(const char *path)
2112{
2113 struct sockaddr_un addr;
Damien Millere1537f92010-01-26 13:26:22 +11002114 socklen_t sun_len;
2115 int sock;
2116 u_int pid;
Damien Millerb1cbfa22008-05-19 16:00:08 +10002117
Damien Millere1537f92010-01-26 13:26:22 +11002118 if (muxclient_command == 0) {
2119 if (stdio_forward_host != NULL)
2120 muxclient_command = SSHMUX_COMMAND_STDIO_FWD;
2121 else
2122 muxclient_command = SSHMUX_COMMAND_OPEN;
2123 }
Damien Millerb1cbfa22008-05-19 16:00:08 +10002124
2125 switch (options.control_master) {
2126 case SSHCTL_MASTER_AUTO:
2127 case SSHCTL_MASTER_AUTO_ASK:
2128 debug("auto-mux: Trying existing master");
2129 /* FALLTHROUGH */
2130 case SSHCTL_MASTER_NO:
2131 break;
2132 default:
2133 return;
2134 }
2135
2136 memset(&addr, '\0', sizeof(addr));
2137 addr.sun_family = AF_UNIX;
Damien Millere1537f92010-01-26 13:26:22 +11002138 sun_len = offsetof(struct sockaddr_un, sun_path) +
Damien Millerb1cbfa22008-05-19 16:00:08 +10002139 strlen(path) + 1;
2140
2141 if (strlcpy(addr.sun_path, path,
2142 sizeof(addr.sun_path)) >= sizeof(addr.sun_path))
2143 fatal("ControlPath too long");
2144
2145 if ((sock = socket(PF_UNIX, SOCK_STREAM, 0)) < 0)
2146 fatal("%s socket(): %s", __func__, strerror(errno));
2147
Damien Millere1537f92010-01-26 13:26:22 +11002148 if (connect(sock, (struct sockaddr *)&addr, sun_len) == -1) {
2149 switch (muxclient_command) {
2150 case SSHMUX_COMMAND_OPEN:
2151 case SSHMUX_COMMAND_STDIO_FWD:
2152 break;
2153 default:
Damien Millerb1cbfa22008-05-19 16:00:08 +10002154 fatal("Control socket connect(%.100s): %s", path,
2155 strerror(errno));
2156 }
Damien Miller603134e2010-09-24 22:07:55 +10002157 if (errno == ECONNREFUSED &&
2158 options.control_master != SSHCTL_MASTER_NO) {
2159 debug("Stale control socket %.100s, unlinking", path);
2160 unlink(path);
2161 } else if (errno == ENOENT) {
Damien Millerb1cbfa22008-05-19 16:00:08 +10002162 debug("Control socket \"%.100s\" does not exist", path);
Damien Miller603134e2010-09-24 22:07:55 +10002163 } else {
Damien Millerb1cbfa22008-05-19 16:00:08 +10002164 error("Control socket connect(%.100s): %s", path,
2165 strerror(errno));
2166 }
2167 close(sock);
2168 return;
2169 }
Damien Millere1537f92010-01-26 13:26:22 +11002170 set_nonblock(sock);
Damien Millerb1cbfa22008-05-19 16:00:08 +10002171
Damien Millere1537f92010-01-26 13:26:22 +11002172 if (mux_client_hello_exchange(sock) != 0) {
2173 error("%s: master hello exchange failed", __func__);
Darren Tuckerca19bfe2008-06-13 10:24:03 +10002174 close(sock);
Darren Tuckerca19bfe2008-06-13 10:24:03 +10002175 return;
2176 }
Damien Millerb1cbfa22008-05-19 16:00:08 +10002177
2178 switch (muxclient_command) {
2179 case SSHMUX_COMMAND_ALIVE_CHECK:
Damien Millere1537f92010-01-26 13:26:22 +11002180 if ((pid = mux_client_request_alive(sock)) == 0)
2181 fatal("%s: master alive check failed", __func__);
djm@openbsd.orgb1d38a32015-10-15 23:51:40 +00002182 fprintf(stderr, "Master running (pid=%u)\r\n", pid);
Damien Millerb1cbfa22008-05-19 16:00:08 +10002183 exit(0);
2184 case SSHMUX_COMMAND_TERMINATE:
Damien Millere1537f92010-01-26 13:26:22 +11002185 mux_client_request_terminate(sock);
Damien Millerb1cbfa22008-05-19 16:00:08 +10002186 fprintf(stderr, "Exit request sent.\r\n");
2187 exit(0);
Damien Miller388f6fc2010-05-21 14:57:35 +10002188 case SSHMUX_COMMAND_FORWARD:
Damien Millerf6dff7c2011-09-22 21:38:52 +10002189 if (mux_client_forwards(sock, 0) != 0)
Damien Miller388f6fc2010-05-21 14:57:35 +10002190 fatal("%s: master forward request failed", __func__);
2191 exit(0);
Damien Millerb1cbfa22008-05-19 16:00:08 +10002192 case SSHMUX_COMMAND_OPEN:
Damien Millerf6dff7c2011-09-22 21:38:52 +10002193 if (mux_client_forwards(sock, 0) != 0) {
Damien Millere1537f92010-01-26 13:26:22 +11002194 error("%s: master forward request failed", __func__);
2195 return;
Darren Tucker2fb66ca2008-06-13 04:49:33 +10002196 }
Damien Millere1537f92010-01-26 13:26:22 +11002197 mux_client_request_session(sock);
2198 return;
2199 case SSHMUX_COMMAND_STDIO_FWD:
2200 mux_client_request_stdio_fwd(sock);
2201 exit(0);
Damien Miller6c3eec72011-05-05 14:16:22 +10002202 case SSHMUX_COMMAND_STOP:
2203 mux_client_request_stop_listening(sock);
2204 fprintf(stderr, "Stop listening request sent.\r\n");
2205 exit(0);
Damien Millerf6dff7c2011-09-22 21:38:52 +10002206 case SSHMUX_COMMAND_CANCEL_FWD:
2207 if (mux_client_forwards(sock, 1) != 0)
2208 error("%s: master cancel forward request failed",
2209 __func__);
2210 exit(0);
Damien Millerb1cbfa22008-05-19 16:00:08 +10002211 default:
Darren Tucker2fb66ca2008-06-13 04:49:33 +10002212 fatal("unrecognised muxclient_command %d", muxclient_command);
Damien Millerb1cbfa22008-05-19 16:00:08 +10002213 }
Damien Millerb1cbfa22008-05-19 16:00:08 +10002214}