Home | History | Annotate | Line # | Download | only in dist
mux.c revision 1.37
      1  1.37  christos /*	$NetBSD: mux.c,v 1.37 2025/03/21 14:04:33 christos Exp $	*/
      2  1.36  christos /* $OpenBSD: mux.c,v 1.102 2024/07/25 22:40:08 djm Exp $ */
      3  1.34  christos 
      4   1.1  christos /*
      5   1.1  christos  * Copyright (c) 2002-2008 Damien Miller <djm (at) openbsd.org>
      6   1.1  christos  *
      7   1.1  christos  * Permission to use, copy, modify, and distribute this software for any
      8   1.1  christos  * purpose with or without fee is hereby granted, provided that the above
      9   1.1  christos  * copyright notice and this permission notice appear in all copies.
     10   1.1  christos  *
     11   1.1  christos  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
     12   1.1  christos  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
     13   1.1  christos  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
     14   1.1  christos  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
     15   1.1  christos  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
     16   1.1  christos  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
     17   1.1  christos  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
     18   1.1  christos  */
     19   1.1  christos 
     20   1.1  christos /* ssh session multiplexing support */
     21   1.1  christos 
     22   1.2  christos #include "includes.h"
     23  1.37  christos __RCSID("$NetBSD: mux.c,v 1.37 2025/03/21 14:04:33 christos Exp $");
     24   1.1  christos #include <sys/types.h>
     25   1.1  christos #include <sys/queue.h>
     26   1.1  christos #include <sys/stat.h>
     27   1.1  christos #include <sys/socket.h>
     28   1.1  christos #include <sys/un.h>
     29   1.1  christos 
     30   1.1  christos #include <errno.h>
     31   1.1  christos #include <fcntl.h>
     32   1.3      adam #include <poll.h>
     33  1.34  christos #include <limits.h>
     34   1.1  christos #include <signal.h>
     35   1.1  christos #include <stdarg.h>
     36   1.1  christos #include <stddef.h>
     37   1.1  christos #include <stdlib.h>
     38   1.1  christos #include <stdio.h>
     39   1.1  christos #include <string.h>
     40   1.1  christos #include <unistd.h>
     41   1.1  christos #include <util.h>
     42   1.1  christos #include <paths.h>
     43   1.1  christos 
     44   1.3      adam #include "atomicio.h"
     45   1.1  christos #include "xmalloc.h"
     46   1.1  christos #include "log.h"
     47   1.1  christos #include "ssh.h"
     48   1.3      adam #include "ssh2.h"
     49   1.1  christos #include "pathnames.h"
     50   1.1  christos #include "misc.h"
     51   1.1  christos #include "match.h"
     52  1.21  christos #include "sshbuf.h"
     53   1.1  christos #include "channels.h"
     54   1.1  christos #include "msg.h"
     55   1.1  christos #include "packet.h"
     56   1.1  christos #include "monitor_fdpass.h"
     57   1.1  christos #include "sshpty.h"
     58  1.21  christos #include "sshkey.h"
     59   1.1  christos #include "readconf.h"
     60   1.1  christos #include "clientloop.h"
     61  1.17  christos #include "ssherr.h"
     62  1.34  christos #include "misc.h"
     63   1.1  christos 
     64   1.1  christos /* from ssh.c */
     65   1.1  christos extern int tty_flag;
     66   1.1  christos extern Options options;
     67   1.1  christos extern char *host;
     68  1.21  christos extern struct sshbuf *command;
     69   1.3      adam extern volatile sig_atomic_t quit_pending;
     70   1.1  christos 
     71   1.1  christos /* Context for session open confirmation callback */
     72   1.1  christos struct mux_session_confirm_ctx {
     73   1.3      adam 	u_int want_tty;
     74   1.3      adam 	u_int want_subsys;
     75   1.3      adam 	u_int want_x_fwd;
     76   1.3      adam 	u_int want_agent_fwd;
     77  1.21  christos 	struct sshbuf *cmd;
     78   1.1  christos 	char *term;
     79   1.1  christos 	struct termios tio;
     80   1.1  christos 	char **env;
     81   1.3      adam 	u_int rid;
     82   1.3      adam };
     83   1.3      adam 
     84  1.10  christos /* Context for stdio fwd open confirmation callback */
     85  1.10  christos struct mux_stdio_confirm_ctx {
     86  1.10  christos 	u_int rid;
     87  1.10  christos };
     88  1.10  christos 
     89   1.3      adam /* Context for global channel callback */
     90   1.3      adam struct mux_channel_confirm_ctx {
     91   1.3      adam 	u_int cid;	/* channel id */
     92   1.3      adam 	u_int rid;	/* request id */
     93   1.3      adam 	int fid;	/* forward id */
     94   1.1  christos };
     95   1.1  christos 
     96   1.1  christos /* fd to control socket */
     97   1.1  christos int muxserver_sock = -1;
     98   1.1  christos 
     99   1.3      adam /* client request id */
    100   1.3      adam u_int muxclient_request_id = 0;
    101   1.3      adam 
    102   1.1  christos /* Multiplexing control command */
    103   1.1  christos u_int muxclient_command = 0;
    104   1.1  christos 
    105   1.1  christos /* Set when signalled. */
    106   1.1  christos static volatile sig_atomic_t muxclient_terminate = 0;
    107   1.1  christos 
    108   1.1  christos /* PID of multiplex server */
    109   1.1  christos static u_int muxserver_pid = 0;
    110   1.1  christos 
    111   1.3      adam static Channel *mux_listener_channel = NULL;
    112   1.3      adam 
    113   1.3      adam struct mux_master_state {
    114   1.3      adam 	int hello_rcvd;
    115   1.3      adam };
    116   1.1  christos 
    117   1.3      adam /* mux protocol messages */
    118   1.3      adam #define MUX_MSG_HELLO		0x00000001
    119   1.3      adam #define MUX_C_NEW_SESSION	0x10000002
    120   1.3      adam #define MUX_C_ALIVE_CHECK	0x10000004
    121   1.3      adam #define MUX_C_TERMINATE		0x10000005
    122   1.3      adam #define MUX_C_OPEN_FWD		0x10000006
    123   1.3      adam #define MUX_C_CLOSE_FWD		0x10000007
    124   1.3      adam #define MUX_C_NEW_STDIO_FWD	0x10000008
    125   1.5  christos #define MUX_C_STOP_LISTENING	0x10000009
    126  1.17  christos #define MUX_C_PROXY		0x1000000f
    127   1.3      adam #define MUX_S_OK		0x80000001
    128   1.3      adam #define MUX_S_PERMISSION_DENIED	0x80000002
    129   1.3      adam #define MUX_S_FAILURE		0x80000003
    130   1.3      adam #define MUX_S_EXIT_MESSAGE	0x80000004
    131   1.3      adam #define MUX_S_ALIVE		0x80000005
    132   1.3      adam #define MUX_S_SESSION_OPENED	0x80000006
    133   1.3      adam #define MUX_S_REMOTE_PORT	0x80000007
    134   1.5  christos #define MUX_S_TTY_ALLOC_FAIL	0x80000008
    135  1.17  christos #define MUX_S_PROXY		0x8000000f
    136   1.3      adam 
    137   1.3      adam /* type codes for MUX_C_OPEN_FWD and MUX_C_CLOSE_FWD */
    138   1.3      adam #define MUX_FWD_LOCAL   1
    139   1.3      adam #define MUX_FWD_REMOTE  2
    140   1.3      adam #define MUX_FWD_DYNAMIC 3
    141   1.3      adam 
    142  1.19  christos static void mux_session_confirm(struct ssh *, int, int, void *);
    143  1.19  christos static void mux_stdio_confirm(struct ssh *, int, int, void *);
    144   1.3      adam 
    145  1.23  christos static int mux_master_process_hello(struct ssh *, u_int,
    146  1.19  christos 	    Channel *, struct sshbuf *, struct sshbuf *);
    147  1.23  christos static int mux_master_process_new_session(struct ssh *, u_int,
    148  1.19  christos 	    Channel *, struct sshbuf *, struct sshbuf *);
    149  1.23  christos static int mux_master_process_alive_check(struct ssh *, u_int,
    150  1.19  christos 	    Channel *, struct sshbuf *, struct sshbuf *);
    151  1.23  christos static int mux_master_process_terminate(struct ssh *, u_int,
    152  1.19  christos 	    Channel *, struct sshbuf *, struct sshbuf *);
    153  1.23  christos static int mux_master_process_open_fwd(struct ssh *, u_int,
    154  1.19  christos 	    Channel *, struct sshbuf *, struct sshbuf *);
    155  1.23  christos static int mux_master_process_close_fwd(struct ssh *, u_int,
    156  1.19  christos 	    Channel *, struct sshbuf *, struct sshbuf *);
    157  1.23  christos static int mux_master_process_stdio_fwd(struct ssh *, u_int,
    158  1.19  christos 	    Channel *, struct sshbuf *, struct sshbuf *);
    159  1.23  christos static int mux_master_process_stop_listening(struct ssh *, u_int,
    160  1.19  christos 	    Channel *, struct sshbuf *, struct sshbuf *);
    161  1.23  christos static int mux_master_process_proxy(struct ssh *, u_int,
    162  1.19  christos 	    Channel *, struct sshbuf *, struct sshbuf *);
    163   1.3      adam 
    164   1.3      adam static const struct {
    165   1.3      adam 	u_int type;
    166  1.19  christos 	int (*handler)(struct ssh *, u_int, Channel *,
    167  1.19  christos 	    struct sshbuf *, struct sshbuf *);
    168   1.3      adam } mux_master_handlers[] = {
    169  1.23  christos 	{ MUX_MSG_HELLO, mux_master_process_hello },
    170  1.23  christos 	{ MUX_C_NEW_SESSION, mux_master_process_new_session },
    171  1.23  christos 	{ MUX_C_ALIVE_CHECK, mux_master_process_alive_check },
    172  1.23  christos 	{ MUX_C_TERMINATE, mux_master_process_terminate },
    173  1.23  christos 	{ MUX_C_OPEN_FWD, mux_master_process_open_fwd },
    174  1.23  christos 	{ MUX_C_CLOSE_FWD, mux_master_process_close_fwd },
    175  1.23  christos 	{ MUX_C_NEW_STDIO_FWD, mux_master_process_stdio_fwd },
    176  1.23  christos 	{ MUX_C_STOP_LISTENING, mux_master_process_stop_listening },
    177  1.23  christos 	{ MUX_C_PROXY, mux_master_process_proxy },
    178   1.3      adam 	{ 0, NULL }
    179   1.3      adam };
    180   1.1  christos 
    181  1.27  christos /* Cleanup callback fired on closure of mux client _session_ channel */
    182   1.9  christos static void
    183  1.33  christos mux_master_session_cleanup_cb(struct ssh *ssh, int cid, int force, void *unused)
    184   1.1  christos {
    185  1.19  christos 	Channel *cc, *c = channel_by_id(ssh, cid);
    186   1.1  christos 
    187  1.28  christos 	debug3_f("entering for channel %d", cid);
    188   1.3      adam 	if (c == NULL)
    189  1.28  christos 		fatal_f("channel_by_id(%i) == NULL", cid);
    190   1.3      adam 	if (c->ctl_chan != -1) {
    191  1.19  christos 		if ((cc = channel_by_id(ssh, c->ctl_chan)) == NULL)
    192  1.28  christos 			fatal_f("channel %d missing control channel %d",
    193  1.28  christos 			    c->self, c->ctl_chan);
    194   1.3      adam 		c->ctl_chan = -1;
    195  1.36  christos 		cc->ctl_child_id = 0;
    196  1.36  christos 		cc->have_ctl_child_id = 0;
    197  1.19  christos 		chan_rcvd_oclose(ssh, cc);
    198   1.1  christos 	}
    199  1.19  christos 	channel_cancel_cleanup(ssh, c->self);
    200   1.1  christos }
    201   1.1  christos 
    202  1.27  christos /* Cleanup callback fired on closure of mux client _control_ channel */
    203   1.1  christos static void
    204  1.33  christos mux_master_control_cleanup_cb(struct ssh *ssh, int cid, int force, void *unused)
    205   1.1  christos {
    206  1.19  christos 	Channel *sc, *c = channel_by_id(ssh, cid);
    207   1.1  christos 
    208  1.28  christos 	debug3_f("entering for channel %d", cid);
    209   1.3      adam 	if (c == NULL)
    210  1.28  christos 		fatal_f("channel_by_id(%i) == NULL", cid);
    211  1.36  christos 	if (c->have_ctl_child_id) {
    212  1.36  christos 		if ((sc = channel_by_id(ssh, c->ctl_child_id)) == NULL)
    213  1.28  christos 			fatal_f("channel %d missing session channel %u",
    214  1.36  christos 			    c->self, c->ctl_child_id);
    215  1.36  christos 		c->ctl_child_id = 0;
    216  1.36  christos 		c->have_ctl_child_id = 0;
    217   1.3      adam 		sc->ctl_chan = -1;
    218   1.9  christos 		if (sc->type != SSH_CHANNEL_OPEN &&
    219   1.9  christos 		    sc->type != SSH_CHANNEL_OPENING) {
    220  1.28  christos 			debug2_f("channel %d: not open", sc->self);
    221  1.19  christos 			chan_mark_dead(ssh, sc);
    222   1.3      adam 		} else {
    223   1.3      adam 			if (sc->istate == CHAN_INPUT_OPEN)
    224  1.19  christos 				chan_read_failed(ssh, sc);
    225   1.3      adam 			if (sc->ostate == CHAN_OUTPUT_OPEN)
    226  1.19  christos 				chan_write_failed(ssh, sc);
    227   1.3      adam 		}
    228   1.1  christos 	}
    229  1.19  christos 	channel_cancel_cleanup(ssh, c->self);
    230   1.1  christos }
    231   1.1  christos 
    232   1.3      adam /* Check mux client environment variables before passing them to mux master. */
    233   1.3      adam static int
    234  1.32  christos env_permitted(const char *env)
    235   1.1  christos {
    236  1.32  christos 	u_int i;
    237  1.32  christos 	int ret;
    238   1.3      adam 	char name[1024], *cp;
    239   1.1  christos 
    240   1.3      adam 	if ((cp = strchr(env, '=')) == NULL || cp == env)
    241   1.1  christos 		return 0;
    242   1.3      adam 	ret = snprintf(name, sizeof(name), "%.*s", (int)(cp - env), env);
    243   1.3      adam 	if (ret <= 0 || (size_t)ret >= sizeof(name)) {
    244  1.28  christos 		error_f("name '%.100s...' too long", env);
    245   1.1  christos 		return 0;
    246   1.1  christos 	}
    247   1.1  christos 
    248   1.3      adam 	for (i = 0; i < options.num_send_env; i++)
    249   1.3      adam 		if (match_pattern(name, options.send_env[i]))
    250   1.3      adam 			return 1;
    251   1.1  christos 
    252   1.3      adam 	return 0;
    253   1.3      adam }
    254   1.1  christos 
    255   1.3      adam /* Mux master protocol message handlers */
    256   1.1  christos 
    257   1.3      adam static int
    258  1.23  christos mux_master_process_hello(struct ssh *ssh, u_int rid,
    259  1.21  christos     Channel *c, struct sshbuf *m, struct sshbuf *reply)
    260   1.3      adam {
    261   1.3      adam 	u_int ver;
    262   1.3      adam 	struct mux_master_state *state = (struct mux_master_state *)c->mux_ctx;
    263  1.21  christos 	int r;
    264   1.1  christos 
    265   1.3      adam 	if (state == NULL)
    266  1.28  christos 		fatal_f("channel %d: c->mux_ctx == NULL", c->self);
    267   1.3      adam 	if (state->hello_rcvd) {
    268  1.28  christos 		error_f("HELLO received twice");
    269   1.3      adam 		return -1;
    270   1.3      adam 	}
    271  1.21  christos 	if ((r = sshbuf_get_u32(m, &ver)) != 0) {
    272  1.28  christos 		error_fr(r, "parse");
    273   1.3      adam 		return -1;
    274   1.3      adam 	}
    275   1.3      adam 	if (ver != SSHMUX_VER) {
    276  1.28  christos 		error_f("unsupported multiplexing protocol version %u "
    277  1.28  christos 		    "(expected %u)", ver, SSHMUX_VER);
    278   1.3      adam 		return -1;
    279   1.3      adam 	}
    280  1.28  christos 	debug2_f("channel %d client version %u", c->self, ver);
    281   1.3      adam 
    282   1.3      adam 	/* No extensions are presently defined */
    283  1.21  christos 	while (sshbuf_len(m) > 0) {
    284  1.21  christos 		char *name = NULL;
    285  1.23  christos 		size_t value_len = 0;
    286  1.21  christos 
    287  1.21  christos 		if ((r = sshbuf_get_cstring(m, &name, NULL)) != 0 ||
    288  1.23  christos 		    (r = sshbuf_get_string_direct(m, NULL, &value_len)) != 0) {
    289  1.28  christos 			error_fr(r, "parse extension");
    290  1.21  christos 			return -1;
    291   1.1  christos 		}
    292  1.28  christos 		debug2_f("Unrecognised extension \"%s\" length %zu",
    293  1.28  christos 		    name, value_len);
    294   1.9  christos 		free(name);
    295   1.1  christos 	}
    296   1.3      adam 	state->hello_rcvd = 1;
    297   1.3      adam 	return 0;
    298   1.3      adam }
    299   1.3      adam 
    300  1.21  christos /* Enqueue a "ok" response to the reply buffer */
    301  1.21  christos static void
    302  1.21  christos reply_ok(struct sshbuf *reply, u_int rid)
    303  1.21  christos {
    304  1.21  christos 	int r;
    305  1.21  christos 
    306  1.21  christos 	if ((r = sshbuf_put_u32(reply, MUX_S_OK)) != 0 ||
    307  1.21  christos 	    (r = sshbuf_put_u32(reply, rid)) != 0)
    308  1.28  christos 		fatal_fr(r, "reply");
    309  1.21  christos }
    310  1.21  christos 
    311  1.21  christos /* Enqueue an error response to the reply buffer */
    312  1.21  christos static void
    313  1.21  christos reply_error(struct sshbuf *reply, u_int type, u_int rid, const char *msg)
    314  1.21  christos {
    315  1.21  christos 	int r;
    316  1.21  christos 
    317  1.21  christos 	if ((r = sshbuf_put_u32(reply, type)) != 0 ||
    318  1.21  christos 	    (r = sshbuf_put_u32(reply, rid)) != 0 ||
    319  1.21  christos 	    (r = sshbuf_put_cstring(reply, msg)) != 0)
    320  1.28  christos 		fatal_fr(r, "reply");
    321  1.21  christos }
    322  1.21  christos 
    323   1.3      adam static int
    324  1.23  christos mux_master_process_new_session(struct ssh *ssh, u_int rid,
    325  1.21  christos     Channel *c, struct sshbuf *m, struct sshbuf *reply)
    326   1.3      adam {
    327   1.3      adam 	Channel *nc;
    328   1.3      adam 	struct mux_session_confirm_ctx *cctx;
    329  1.21  christos 	char *cmd, *cp;
    330  1.21  christos 	u_int i, j, env_len, escape_char, window, packetmax;
    331  1.21  christos 	int r, new_fd[3];
    332   1.1  christos 
    333   1.1  christos 	/* Reply for SSHMUX_COMMAND_OPEN */
    334   1.3      adam 	cctx = xcalloc(1, sizeof(*cctx));
    335   1.3      adam 	cctx->term = NULL;
    336   1.3      adam 	cctx->rid = rid;
    337  1.21  christos 	cmd = NULL;
    338   1.7  christos 	cctx->env = NULL;
    339   1.7  christos 	env_len = 0;
    340  1.21  christos 	if ((r = sshbuf_skip_string(m)) != 0 || /* reserved */
    341  1.21  christos 	    (r = sshbuf_get_u32(m, &cctx->want_tty)) != 0 ||
    342  1.21  christos 	    (r = sshbuf_get_u32(m, &cctx->want_x_fwd)) != 0 ||
    343  1.21  christos 	    (r = sshbuf_get_u32(m, &cctx->want_agent_fwd)) != 0 ||
    344  1.21  christos 	    (r = sshbuf_get_u32(m, &cctx->want_subsys)) != 0 ||
    345  1.21  christos 	    (r = sshbuf_get_u32(m, &escape_char)) != 0 ||
    346  1.21  christos 	    (r = sshbuf_get_cstring(m, &cctx->term, NULL)) != 0 ||
    347  1.21  christos 	    (r = sshbuf_get_cstring(m, &cmd, NULL)) != 0) {
    348   1.3      adam  malf:
    349   1.9  christos 		free(cmd);
    350   1.7  christos 		for (j = 0; j < env_len; j++)
    351   1.9  christos 			free(cctx->env[j]);
    352   1.9  christos 		free(cctx->env);
    353   1.9  christos 		free(cctx->term);
    354   1.9  christos 		free(cctx);
    355  1.28  christos 		error_f("malformed message");
    356   1.3      adam 		return -1;
    357   1.1  christos 	}
    358   1.1  christos 
    359   1.3      adam #define MUX_MAX_ENV_VARS	4096
    360  1.21  christos 	while (sshbuf_len(m) > 0) {
    361  1.21  christos 		if ((r = sshbuf_get_cstring(m, &cp, NULL)) != 0)
    362   1.3      adam 			goto malf;
    363   1.3      adam 		if (!env_permitted(cp)) {
    364   1.9  christos 			free(cp);
    365   1.3      adam 			continue;
    366   1.3      adam 		}
    367  1.12  christos 		cctx->env = xreallocarray(cctx->env, env_len + 2,
    368   1.3      adam 		    sizeof(*cctx->env));
    369   1.3      adam 		cctx->env[env_len++] = cp;
    370   1.3      adam 		cctx->env[env_len] = NULL;
    371   1.3      adam 		if (env_len > MUX_MAX_ENV_VARS) {
    372  1.28  christos 			error_f(">%d environment variables received, "
    373  1.28  christos 			    "ignoring additional", MUX_MAX_ENV_VARS);
    374   1.3      adam 			break;
    375   1.3      adam 		}
    376   1.1  christos 	}
    377   1.1  christos 
    378  1.28  christos 	debug2_f("channel %d: request tty %d, X %d, agent %d, subsys %d, "
    379  1.28  christos 	    "term \"%s\", cmd \"%s\", env %u", c->self,
    380   1.3      adam 	    cctx->want_tty, cctx->want_x_fwd, cctx->want_agent_fwd,
    381   1.3      adam 	    cctx->want_subsys, cctx->term, cmd, env_len);
    382   1.1  christos 
    383  1.21  christos 	if ((cctx->cmd = sshbuf_new()) == NULL)
    384  1.28  christos 		fatal_f("sshbuf_new");
    385  1.21  christos 	if ((r = sshbuf_put(cctx->cmd, cmd, strlen(cmd))) != 0)
    386  1.28  christos 		fatal_fr(r, "sshbuf_put");
    387   1.9  christos 	free(cmd);
    388   1.3      adam 	cmd = NULL;
    389   1.1  christos 
    390   1.1  christos 	/* Gather fds from client */
    391   1.1  christos 	for(i = 0; i < 3; i++) {
    392   1.3      adam 		if ((new_fd[i] = mm_receive_fd(c->sock)) == -1) {
    393  1.28  christos 			error_f("failed to receive fd %d from client", i);
    394   1.1  christos 			for (j = 0; j < i; j++)
    395   1.1  christos 				close(new_fd[j]);
    396   1.1  christos 			for (j = 0; j < env_len; j++)
    397   1.9  christos 				free(cctx->env[j]);
    398   1.9  christos 			free(cctx->env);
    399   1.9  christos 			free(cctx->term);
    400  1.21  christos 			sshbuf_free(cctx->cmd);
    401   1.9  christos 			free(cctx);
    402  1.21  christos 			reply_error(reply, MUX_S_FAILURE, rid,
    403   1.3      adam 			    "did not receive file descriptors");
    404   1.3      adam 			return -1;
    405   1.1  christos 		}
    406   1.1  christos 	}
    407   1.1  christos 
    408  1.28  christos 	debug3_f("got fds stdin %d, stdout %d, stderr %d",
    409   1.1  christos 	    new_fd[0], new_fd[1], new_fd[2]);
    410   1.1  christos 
    411   1.3      adam 	/* XXX support multiple child sessions in future */
    412  1.36  christos 	if (c->have_ctl_child_id) {
    413  1.28  christos 		debug2_f("session already open");
    414  1.21  christos 		reply_error(reply, MUX_S_FAILURE, rid,
    415  1.21  christos 		    "Multiple sessions not supported");
    416   1.3      adam  cleanup:
    417   1.1  christos 		close(new_fd[0]);
    418   1.1  christos 		close(new_fd[1]);
    419   1.1  christos 		close(new_fd[2]);
    420   1.9  christos 		free(cctx->term);
    421   1.1  christos 		if (env_len != 0) {
    422   1.1  christos 			for (i = 0; i < env_len; i++)
    423   1.9  christos 				free(cctx->env[i]);
    424   1.9  christos 			free(cctx->env);
    425   1.1  christos 		}
    426  1.21  christos 		sshbuf_free(cctx->cmd);
    427   1.9  christos 		free(cctx);
    428   1.1  christos 		return 0;
    429   1.1  christos 	}
    430   1.3      adam 
    431   1.3      adam 	if (options.control_master == SSHCTL_MASTER_ASK ||
    432   1.3      adam 	    options.control_master == SSHCTL_MASTER_AUTO_ASK) {
    433   1.3      adam 		if (!ask_permission("Allow shared connection to %s? ", host)) {
    434  1.28  christos 			debug2_f("session refused by user");
    435  1.21  christos 			reply_error(reply, MUX_S_PERMISSION_DENIED, rid,
    436  1.21  christos 			    "Permission denied");
    437   1.3      adam 			goto cleanup;
    438   1.3      adam 		}
    439   1.3      adam 	}
    440   1.3      adam 
    441   1.3      adam 	/* Try to pick up ttymodes from client before it goes raw */
    442   1.3      adam 	if (cctx->want_tty && tcgetattr(new_fd[0], &cctx->tio) == -1)
    443  1.28  christos 		error_f("tcgetattr: %s", strerror(errno));
    444   1.1  christos 
    445   1.1  christos 	window = CHAN_SES_WINDOW_DEFAULT;
    446   1.1  christos 	packetmax = CHAN_SES_PACKET_DEFAULT;
    447   1.1  christos 	if (cctx->want_tty) {
    448   1.1  christos 		window >>= 1;
    449   1.1  christos 		packetmax >>= 1;
    450   1.1  christos 	}
    451   1.3      adam 
    452  1.19  christos 	nc = channel_new(ssh, "session", SSH_CHANNEL_OPENING,
    453   1.1  christos 	    new_fd[0], new_fd[1], new_fd[2], window, packetmax,
    454  1.30  christos 	    CHAN_EXTENDED_WRITE, "client-session", CHANNEL_NONBLOCK_STDIO);
    455   1.1  christos 
    456   1.3      adam 	nc->ctl_chan = c->self;		/* link session -> control channel */
    457  1.36  christos 	c->ctl_child_id = nc->self;	/* link control -> session channel */
    458  1.36  christos 	c->have_ctl_child_id = 1;
    459   1.3      adam 
    460   1.1  christos 	if (cctx->want_tty && escape_char != 0xffffffff) {
    461  1.19  christos 		channel_register_filter(ssh, nc->self,
    462   1.1  christos 		    client_simple_escape_filter, NULL,
    463   1.1  christos 		    client_filter_cleanup,
    464   1.1  christos 		    client_new_escape_filter_ctx((int)escape_char));
    465   1.1  christos 	}
    466   1.1  christos 
    467  1.28  christos 	debug2_f("channel_new: %d linked to control channel %d",
    468  1.28  christos 	    nc->self, nc->ctl_chan);
    469   1.3      adam 
    470  1.19  christos 	channel_send_open(ssh, nc->self);
    471  1.19  christos 	channel_register_open_confirm(ssh, nc->self, mux_session_confirm, cctx);
    472   1.3      adam 	c->mux_pause = 1; /* stop handling messages until open_confirm done */
    473  1.19  christos 	channel_register_cleanup(ssh, nc->self,
    474  1.19  christos 	    mux_master_session_cleanup_cb, 1);
    475   1.1  christos 
    476   1.3      adam 	/* reply is deferred, sent by mux_session_confirm */
    477   1.1  christos 	return 0;
    478   1.1  christos }
    479   1.1  christos 
    480   1.3      adam static int
    481  1.23  christos mux_master_process_alive_check(struct ssh *ssh, u_int rid,
    482  1.21  christos     Channel *c, struct sshbuf *m, struct sshbuf *reply)
    483   1.1  christos {
    484  1.21  christos 	int r;
    485  1.21  christos 
    486  1.28  christos 	debug2_f("channel %d: alive check", c->self);
    487   1.1  christos 
    488   1.3      adam 	/* prepare reply */
    489  1.21  christos 	if ((r = sshbuf_put_u32(reply, MUX_S_ALIVE)) != 0 ||
    490  1.21  christos 	    (r = sshbuf_put_u32(reply, rid)) != 0 ||
    491  1.21  christos 	    (r = sshbuf_put_u32(reply, (u_int)getpid())) != 0)
    492  1.28  christos 		fatal_fr(r, "reply");
    493   1.1  christos 
    494   1.3      adam 	return 0;
    495   1.1  christos }
    496   1.1  christos 
    497   1.1  christos static int
    498  1.23  christos mux_master_process_terminate(struct ssh *ssh, u_int rid,
    499  1.21  christos     Channel *c, struct sshbuf *m, struct sshbuf *reply)
    500   1.1  christos {
    501  1.28  christos 	debug2_f("channel %d: terminate request", c->self);
    502   1.1  christos 
    503   1.3      adam 	if (options.control_master == SSHCTL_MASTER_ASK ||
    504   1.3      adam 	    options.control_master == SSHCTL_MASTER_AUTO_ASK) {
    505   1.3      adam 		if (!ask_permission("Terminate shared connection to %s? ",
    506   1.3      adam 		    host)) {
    507  1.28  christos 			debug2_f("termination refused by user");
    508  1.21  christos 			reply_error(reply, MUX_S_PERMISSION_DENIED, rid,
    509  1.21  christos 			    "Permission denied");
    510   1.3      adam 			return 0;
    511   1.3      adam 		}
    512   1.3      adam 	}
    513   1.1  christos 
    514   1.3      adam 	quit_pending = 1;
    515  1.21  christos 	reply_ok(reply, rid);
    516   1.3      adam 	/* XXX exit happens too soon - message never makes it to client */
    517   1.3      adam 	return 0;
    518   1.1  christos }
    519   1.1  christos 
    520   1.3      adam static char *
    521  1.10  christos format_forward(u_int ftype, struct Forward *fwd)
    522   1.1  christos {
    523   1.3      adam 	char *ret;
    524   1.1  christos 
    525   1.3      adam 	switch (ftype) {
    526   1.3      adam 	case MUX_FWD_LOCAL:
    527   1.3      adam 		xasprintf(&ret, "local forward %.200s:%d -> %.200s:%d",
    528  1.10  christos 		    (fwd->listen_path != NULL) ? fwd->listen_path :
    529   1.3      adam 		    (fwd->listen_host == NULL) ?
    530  1.10  christos 		    (options.fwd_opts.gateway_ports ? "*" : "LOCALHOST") :
    531   1.3      adam 		    fwd->listen_host, fwd->listen_port,
    532  1.10  christos 		    (fwd->connect_path != NULL) ? fwd->connect_path :
    533   1.3      adam 		    fwd->connect_host, fwd->connect_port);
    534   1.3      adam 		break;
    535   1.3      adam 	case MUX_FWD_DYNAMIC:
    536   1.3      adam 		xasprintf(&ret, "dynamic forward %.200s:%d -> *",
    537   1.3      adam 		    (fwd->listen_host == NULL) ?
    538  1.10  christos 		    (options.fwd_opts.gateway_ports ? "*" : "LOCALHOST") :
    539  1.29  christos 		    fwd->listen_host, fwd->listen_port);
    540   1.3      adam 		break;
    541   1.3      adam 	case MUX_FWD_REMOTE:
    542   1.3      adam 		xasprintf(&ret, "remote forward %.200s:%d -> %.200s:%d",
    543  1.10  christos 		    (fwd->listen_path != NULL) ? fwd->listen_path :
    544   1.3      adam 		    (fwd->listen_host == NULL) ?
    545   1.3      adam 		    "LOCALHOST" : fwd->listen_host,
    546   1.3      adam 		    fwd->listen_port,
    547  1.10  christos 		    (fwd->connect_path != NULL) ? fwd->connect_path :
    548   1.3      adam 		    fwd->connect_host, fwd->connect_port);
    549   1.1  christos 		break;
    550   1.1  christos 	default:
    551  1.28  christos 		fatal_f("unknown forward type %u", ftype);
    552   1.1  christos 	}
    553   1.3      adam 	return ret;
    554   1.3      adam }
    555   1.1  christos 
    556   1.3      adam static int
    557   1.3      adam compare_host(const char *a, const char *b)
    558   1.3      adam {
    559   1.3      adam 	if (a == NULL && b == NULL)
    560   1.3      adam 		return 1;
    561   1.3      adam 	if (a == NULL || b == NULL)
    562   1.3      adam 		return 0;
    563   1.3      adam 	return strcmp(a, b) == 0;
    564   1.3      adam }
    565   1.3      adam 
    566   1.3      adam static int
    567  1.10  christos compare_forward(struct Forward *a, struct Forward *b)
    568   1.3      adam {
    569   1.3      adam 	if (!compare_host(a->listen_host, b->listen_host))
    570   1.3      adam 		return 0;
    571  1.10  christos 	if (!compare_host(a->listen_path, b->listen_path))
    572  1.10  christos 		return 0;
    573   1.3      adam 	if (a->listen_port != b->listen_port)
    574   1.3      adam 		return 0;
    575   1.3      adam 	if (!compare_host(a->connect_host, b->connect_host))
    576   1.3      adam 		return 0;
    577  1.10  christos 	if (!compare_host(a->connect_path, b->connect_path))
    578  1.10  christos 		return 0;
    579   1.3      adam 	if (a->connect_port != b->connect_port)
    580   1.3      adam 		return 0;
    581   1.1  christos 
    582   1.3      adam 	return 1;
    583   1.3      adam }
    584   1.1  christos 
    585   1.3      adam static void
    586  1.19  christos mux_confirm_remote_forward(struct ssh *ssh, int type, u_int32_t seq, void *ctxt)
    587   1.3      adam {
    588   1.3      adam 	struct mux_channel_confirm_ctx *fctx = ctxt;
    589   1.3      adam 	char *failmsg = NULL;
    590  1.10  christos 	struct Forward *rfwd;
    591   1.3      adam 	Channel *c;
    592  1.21  christos 	struct sshbuf *out;
    593  1.23  christos 	u_int port;
    594  1.21  christos 	int r;
    595   1.1  christos 
    596  1.19  christos 	if ((c = channel_by_id(ssh, fctx->cid)) == NULL) {
    597   1.3      adam 		/* no channel for reply */
    598  1.28  christos 		error_f("unknown channel");
    599   1.3      adam 		return;
    600   1.3      adam 	}
    601  1.21  christos 	if ((out = sshbuf_new()) == NULL)
    602  1.28  christos 		fatal_f("sshbuf_new");
    603  1.12  christos 	if (fctx->fid >= options.num_remote_forwards ||
    604  1.12  christos 	    (options.remote_forwards[fctx->fid].connect_path == NULL &&
    605  1.12  christos 	    options.remote_forwards[fctx->fid].connect_host == NULL)) {
    606   1.3      adam 		xasprintf(&failmsg, "unknown forwarding id %d", fctx->fid);
    607   1.3      adam 		goto fail;
    608   1.3      adam 	}
    609   1.3      adam 	rfwd = &options.remote_forwards[fctx->fid];
    610  1.28  christos 	debug_f("%s for: listen %d, connect %s:%d",
    611   1.3      adam 	    type == SSH2_MSG_REQUEST_SUCCESS ? "success" : "failure",
    612  1.10  christos 	    rfwd->listen_port, rfwd->connect_path ? rfwd->connect_path :
    613  1.10  christos 	    rfwd->connect_host, rfwd->connect_port);
    614   1.3      adam 	if (type == SSH2_MSG_REQUEST_SUCCESS) {
    615   1.3      adam 		if (rfwd->listen_port == 0) {
    616  1.23  christos 			if ((r = sshpkt_get_u32(ssh, &port)) != 0)
    617  1.28  christos 				fatal_fr(r, "parse port");
    618  1.23  christos 			if (port > 65535) {
    619  1.23  christos 				fatal("Invalid allocated port %u for "
    620  1.23  christos 				    "mux remote forward to %s:%d", port,
    621  1.23  christos 				    rfwd->connect_host, rfwd->connect_port);
    622  1.23  christos 			}
    623  1.23  christos 			rfwd->allocated_port = (int)port;
    624  1.12  christos 			debug("Allocated port %u for mux remote forward"
    625   1.3      adam 			    " to %s:%d", rfwd->allocated_port,
    626   1.3      adam 			    rfwd->connect_host, rfwd->connect_port);
    627  1.21  christos 			if ((r = sshbuf_put_u32(out,
    628  1.21  christos 			    MUX_S_REMOTE_PORT)) != 0 ||
    629  1.21  christos 			    (r = sshbuf_put_u32(out, fctx->rid)) != 0 ||
    630  1.21  christos 			    (r = sshbuf_put_u32(out,
    631  1.21  christos 			    rfwd->allocated_port)) != 0)
    632  1.28  christos 				fatal_fr(r, "reply");
    633  1.21  christos 			channel_update_permission(ssh, rfwd->handle,
    634  1.29  christos 			    rfwd->allocated_port);
    635   1.3      adam 		} else {
    636  1.21  christos 			reply_ok(out, fctx->rid);
    637   1.3      adam 		}
    638   1.3      adam 		goto out;
    639   1.3      adam 	} else {
    640   1.6  christos 		if (rfwd->listen_port == 0)
    641  1.21  christos 			channel_update_permission(ssh, rfwd->handle, -1);
    642  1.10  christos 		if (rfwd->listen_path != NULL)
    643  1.10  christos 			xasprintf(&failmsg, "remote port forwarding failed for "
    644  1.10  christos 			    "listen path %s", rfwd->listen_path);
    645  1.10  christos 		else
    646  1.10  christos 			xasprintf(&failmsg, "remote port forwarding failed for "
    647  1.10  christos 			    "listen port %d", rfwd->listen_port);
    648  1.12  christos 
    649  1.29  christos 		debug2_f("clearing registered forwarding for listen %d, "
    650  1.28  christos 		    "connect %s:%d", rfwd->listen_port,
    651  1.12  christos 		    rfwd->connect_path ? rfwd->connect_path :
    652  1.12  christos 		    rfwd->connect_host, rfwd->connect_port);
    653  1.12  christos 
    654  1.12  christos 		free(rfwd->listen_host);
    655  1.12  christos 		free(rfwd->listen_path);
    656  1.12  christos 		free(rfwd->connect_host);
    657  1.12  christos 		free(rfwd->connect_path);
    658  1.12  christos 		memset(rfwd, 0, sizeof(*rfwd));
    659   1.3      adam 	}
    660   1.3      adam  fail:
    661  1.28  christos 	error_f("%s", failmsg);
    662  1.21  christos 	reply_error(out, MUX_S_FAILURE, fctx->rid, failmsg);
    663   1.9  christos 	free(failmsg);
    664   1.3      adam  out:
    665  1.21  christos 	if ((r = sshbuf_put_stringb(c->output, out)) != 0)
    666  1.28  christos 		fatal_fr(r, "enqueue");
    667  1.21  christos 	sshbuf_free(out);
    668   1.3      adam 	if (c->mux_pause <= 0)
    669  1.28  christos 		fatal_f("mux_pause %d", c->mux_pause);
    670   1.3      adam 	c->mux_pause = 0; /* start processing messages again */
    671   1.3      adam }
    672   1.3      adam 
    673   1.3      adam static int
    674  1.23  christos mux_master_process_open_fwd(struct ssh *ssh, u_int rid,
    675  1.21  christos     Channel *c, struct sshbuf *m, struct sshbuf *reply)
    676   1.3      adam {
    677  1.10  christos 	struct Forward fwd;
    678   1.3      adam 	char *fwd_desc = NULL;
    679  1.10  christos 	char *listen_addr, *connect_addr;
    680   1.3      adam 	u_int ftype;
    681   1.9  christos 	u_int lport, cport;
    682  1.21  christos 	int r, i, ret = 0, freefwd = 1;
    683   1.3      adam 
    684  1.13  christos 	memset(&fwd, 0, sizeof(fwd));
    685  1.13  christos 
    686  1.10  christos 	/* XXX - lport/cport check redundant */
    687  1.21  christos 	if ((r = sshbuf_get_u32(m, &ftype)) != 0 ||
    688  1.21  christos 	    (r = sshbuf_get_cstring(m, &listen_addr, NULL)) != 0 ||
    689  1.21  christos 	    (r = sshbuf_get_u32(m, &lport)) != 0 ||
    690  1.21  christos 	    (r = sshbuf_get_cstring(m, &connect_addr, NULL)) != 0 ||
    691  1.21  christos 	    (r = sshbuf_get_u32(m, &cport)) != 0 ||
    692  1.10  christos 	    (lport != (u_int)PORT_STREAMLOCAL && lport > 65535) ||
    693  1.10  christos 	    (cport != (u_int)PORT_STREAMLOCAL && cport > 65535)) {
    694  1.28  christos 		error_f("malformed message");
    695   1.3      adam 		ret = -1;
    696   1.3      adam 		goto out;
    697   1.3      adam 	}
    698  1.10  christos 	if (*listen_addr == '\0') {
    699  1.10  christos 		free(listen_addr);
    700  1.10  christos 		listen_addr = NULL;
    701  1.10  christos 	}
    702  1.10  christos 	if (*connect_addr == '\0') {
    703  1.10  christos 		free(connect_addr);
    704  1.10  christos 		connect_addr = NULL;
    705  1.10  christos 	}
    706  1.10  christos 
    707  1.10  christos 	memset(&fwd, 0, sizeof(fwd));
    708   1.9  christos 	fwd.listen_port = lport;
    709  1.10  christos 	if (fwd.listen_port == PORT_STREAMLOCAL)
    710  1.10  christos 		fwd.listen_path = listen_addr;
    711  1.10  christos 	else
    712  1.10  christos 		fwd.listen_host = listen_addr;
    713   1.9  christos 	fwd.connect_port = cport;
    714  1.10  christos 	if (fwd.connect_port == PORT_STREAMLOCAL)
    715  1.10  christos 		fwd.connect_path = connect_addr;
    716  1.10  christos 	else
    717  1.10  christos 		fwd.connect_host = connect_addr;
    718   1.3      adam 
    719  1.28  christos 	debug2_f("channel %d: request %s", c->self,
    720   1.3      adam 	    (fwd_desc = format_forward(ftype, &fwd)));
    721   1.3      adam 
    722   1.3      adam 	if (ftype != MUX_FWD_LOCAL && ftype != MUX_FWD_REMOTE &&
    723   1.3      adam 	    ftype != MUX_FWD_DYNAMIC) {
    724  1.28  christos 		logit_f("invalid forwarding type %u", ftype);
    725   1.3      adam  invalid:
    726  1.10  christos 		free(listen_addr);
    727  1.10  christos 		free(connect_addr);
    728  1.21  christos 		reply_error(reply, MUX_S_FAILURE, rid,
    729  1.21  christos 		    "Invalid forwarding request");
    730   1.3      adam 		return 0;
    731   1.3      adam 	}
    732  1.10  christos 	if (ftype == MUX_FWD_DYNAMIC && fwd.listen_path) {
    733  1.28  christos 		logit_f("streamlocal and dynamic forwards "
    734  1.28  christos 		    "are mutually exclusive");
    735  1.10  christos 		goto invalid;
    736  1.10  christos 	}
    737  1.10  christos 	if (fwd.listen_port != PORT_STREAMLOCAL && fwd.listen_port >= 65536) {
    738  1.28  christos 		logit_f("invalid listen port %u", fwd.listen_port);
    739   1.3      adam 		goto invalid;
    740   1.3      adam 	}
    741  1.19  christos 	if ((fwd.connect_port != PORT_STREAMLOCAL &&
    742  1.19  christos 	    fwd.connect_port >= 65536) ||
    743  1.19  christos 	    (ftype != MUX_FWD_DYNAMIC && ftype != MUX_FWD_REMOTE &&
    744  1.19  christos 	    fwd.connect_port == 0)) {
    745  1.28  christos 		logit_f("invalid connect port %u",
    746   1.3      adam 		    fwd.connect_port);
    747   1.3      adam 		goto invalid;
    748   1.3      adam 	}
    749  1.19  christos 	if (ftype != MUX_FWD_DYNAMIC && fwd.connect_host == NULL &&
    750  1.19  christos 	    fwd.connect_path == NULL) {
    751  1.28  christos 		logit_f("missing connect host");
    752   1.3      adam 		goto invalid;
    753   1.3      adam 	}
    754   1.3      adam 
    755   1.3      adam 	/* Skip forwards that have already been requested */
    756   1.3      adam 	switch (ftype) {
    757   1.3      adam 	case MUX_FWD_LOCAL:
    758   1.3      adam 	case MUX_FWD_DYNAMIC:
    759   1.3      adam 		for (i = 0; i < options.num_local_forwards; i++) {
    760   1.3      adam 			if (compare_forward(&fwd,
    761   1.3      adam 			    options.local_forwards + i)) {
    762   1.3      adam  exists:
    763  1.28  christos 				debug2_f("found existing forwarding");
    764  1.21  christos 				reply_ok(reply, rid);
    765   1.3      adam 				goto out;
    766   1.3      adam 			}
    767   1.3      adam 		}
    768   1.3      adam 		break;
    769   1.3      adam 	case MUX_FWD_REMOTE:
    770   1.3      adam 		for (i = 0; i < options.num_remote_forwards; i++) {
    771  1.21  christos 			if (!compare_forward(&fwd, options.remote_forwards + i))
    772  1.21  christos 				continue;
    773  1.21  christos 			if (fwd.listen_port != 0)
    774  1.21  christos 				goto exists;
    775  1.28  christos 			debug2_f("found allocated port");
    776  1.21  christos 			if ((r = sshbuf_put_u32(reply,
    777  1.21  christos 			    MUX_S_REMOTE_PORT)) != 0 ||
    778  1.21  christos 			    (r = sshbuf_put_u32(reply, rid)) != 0 ||
    779  1.21  christos 			    (r = sshbuf_put_u32(reply,
    780  1.21  christos 			    options.remote_forwards[i].allocated_port)) != 0)
    781  1.28  christos 				fatal_fr(r, "reply FWD_REMOTE");
    782  1.21  christos 			goto out;
    783   1.3      adam 		}
    784   1.3      adam 		break;
    785   1.3      adam 	}
    786   1.3      adam 
    787   1.3      adam 	if (options.control_master == SSHCTL_MASTER_ASK ||
    788   1.3      adam 	    options.control_master == SSHCTL_MASTER_AUTO_ASK) {
    789   1.3      adam 		if (!ask_permission("Open %s on %s?", fwd_desc, host)) {
    790  1.28  christos 			debug2_f("forwarding refused by user");
    791  1.21  christos 			reply_error(reply, MUX_S_PERMISSION_DENIED, rid,
    792  1.21  christos 			    "Permission denied");
    793   1.3      adam 			goto out;
    794   1.3      adam 		}
    795   1.3      adam 	}
    796   1.3      adam 
    797   1.3      adam 	if (ftype == MUX_FWD_LOCAL || ftype == MUX_FWD_DYNAMIC) {
    798  1.19  christos 		if (!channel_setup_local_fwd_listener(ssh, &fwd,
    799  1.10  christos 		    &options.fwd_opts)) {
    800   1.3      adam  fail:
    801  1.28  christos 			logit_f("requested %s failed", fwd_desc);
    802  1.21  christos 			reply_error(reply, MUX_S_FAILURE, rid,
    803  1.21  christos 			    "Port forwarding failed");
    804   1.3      adam 			goto out;
    805   1.3      adam 		}
    806   1.3      adam 		add_local_forward(&options, &fwd);
    807   1.3      adam 		freefwd = 0;
    808   1.3      adam 	} else {
    809   1.3      adam 		struct mux_channel_confirm_ctx *fctx;
    810   1.3      adam 
    811  1.19  christos 		fwd.handle = channel_request_remote_forwarding(ssh, &fwd);
    812   1.6  christos 		if (fwd.handle < 0)
    813   1.3      adam 			goto fail;
    814   1.3      adam 		add_remote_forward(&options, &fwd);
    815   1.3      adam 		fctx = xcalloc(1, sizeof(*fctx));
    816   1.3      adam 		fctx->cid = c->self;
    817   1.3      adam 		fctx->rid = rid;
    818   1.3      adam 		fctx->fid = options.num_remote_forwards - 1;
    819   1.3      adam 		client_register_global_confirm(mux_confirm_remote_forward,
    820   1.3      adam 		    fctx);
    821   1.3      adam 		freefwd = 0;
    822   1.3      adam 		c->mux_pause = 1; /* wait for mux_confirm_remote_forward */
    823   1.3      adam 		/* delayed reply in mux_confirm_remote_forward */
    824   1.3      adam 		goto out;
    825   1.3      adam 	}
    826  1.21  christos 	reply_ok(reply, rid);
    827   1.3      adam  out:
    828   1.9  christos 	free(fwd_desc);
    829   1.3      adam 	if (freefwd) {
    830   1.9  christos 		free(fwd.listen_host);
    831  1.10  christos 		free(fwd.listen_path);
    832   1.9  christos 		free(fwd.connect_host);
    833  1.10  christos 		free(fwd.connect_path);
    834   1.3      adam 	}
    835   1.3      adam 	return ret;
    836   1.3      adam }
    837   1.3      adam 
    838   1.3      adam static int
    839  1.23  christos mux_master_process_close_fwd(struct ssh *ssh, u_int rid,
    840  1.21  christos     Channel *c, struct sshbuf *m, struct sshbuf *reply)
    841   1.3      adam {
    842  1.10  christos 	struct Forward fwd, *found_fwd;
    843   1.3      adam 	char *fwd_desc = NULL;
    844   1.6  christos 	const char *error_reason = NULL;
    845  1.10  christos 	char *listen_addr = NULL, *connect_addr = NULL;
    846   1.3      adam 	u_int ftype;
    847  1.21  christos 	int r, i, ret = 0;
    848   1.9  christos 	u_int lport, cport;
    849   1.3      adam 
    850  1.13  christos 	memset(&fwd, 0, sizeof(fwd));
    851  1.13  christos 
    852  1.21  christos 	if ((r = sshbuf_get_u32(m, &ftype)) != 0 ||
    853  1.21  christos 	    (r = sshbuf_get_cstring(m, &listen_addr, NULL)) != 0 ||
    854  1.21  christos 	    (r = sshbuf_get_u32(m, &lport)) != 0 ||
    855  1.21  christos 	    (r = sshbuf_get_cstring(m, &connect_addr, NULL)) != 0 ||
    856  1.21  christos 	    (r = sshbuf_get_u32(m, &cport)) != 0 ||
    857  1.10  christos 	    (lport != (u_int)PORT_STREAMLOCAL && lport > 65535) ||
    858  1.10  christos 	    (cport != (u_int)PORT_STREAMLOCAL && cport > 65535)) {
    859  1.28  christos 		error_f("malformed message");
    860   1.3      adam 		ret = -1;
    861   1.3      adam 		goto out;
    862   1.3      adam 	}
    863   1.3      adam 
    864  1.10  christos 	if (*listen_addr == '\0') {
    865  1.10  christos 		free(listen_addr);
    866  1.10  christos 		listen_addr = NULL;
    867   1.3      adam 	}
    868  1.10  christos 	if (*connect_addr == '\0') {
    869  1.10  christos 		free(connect_addr);
    870  1.10  christos 		connect_addr = NULL;
    871   1.3      adam 	}
    872   1.3      adam 
    873  1.10  christos 	memset(&fwd, 0, sizeof(fwd));
    874  1.10  christos 	fwd.listen_port = lport;
    875  1.10  christos 	if (fwd.listen_port == PORT_STREAMLOCAL)
    876  1.10  christos 		fwd.listen_path = listen_addr;
    877  1.10  christos 	else
    878  1.10  christos 		fwd.listen_host = listen_addr;
    879  1.10  christos 	fwd.connect_port = cport;
    880  1.10  christos 	if (fwd.connect_port == PORT_STREAMLOCAL)
    881  1.10  christos 		fwd.connect_path = connect_addr;
    882  1.10  christos 	else
    883  1.10  christos 		fwd.connect_host = connect_addr;
    884  1.10  christos 
    885  1.28  christos 	debug2_f("channel %d: request cancel %s", c->self,
    886   1.3      adam 	    (fwd_desc = format_forward(ftype, &fwd)));
    887   1.3      adam 
    888   1.6  christos 	/* make sure this has been requested */
    889   1.6  christos 	found_fwd = NULL;
    890   1.6  christos 	switch (ftype) {
    891   1.6  christos 	case MUX_FWD_LOCAL:
    892   1.6  christos 	case MUX_FWD_DYNAMIC:
    893   1.6  christos 		for (i = 0; i < options.num_local_forwards; i++) {
    894   1.6  christos 			if (compare_forward(&fwd,
    895   1.6  christos 			    options.local_forwards + i)) {
    896   1.6  christos 				found_fwd = options.local_forwards + i;
    897   1.6  christos 				break;
    898   1.6  christos 			}
    899   1.6  christos 		}
    900   1.6  christos 		break;
    901   1.6  christos 	case MUX_FWD_REMOTE:
    902   1.6  christos 		for (i = 0; i < options.num_remote_forwards; i++) {
    903   1.6  christos 			if (compare_forward(&fwd,
    904   1.6  christos 			    options.remote_forwards + i)) {
    905   1.6  christos 				found_fwd = options.remote_forwards + i;
    906   1.6  christos 				break;
    907   1.6  christos 			}
    908   1.6  christos 		}
    909   1.6  christos 		break;
    910   1.6  christos 	}
    911   1.6  christos 
    912   1.6  christos 	if (found_fwd == NULL)
    913   1.6  christos 		error_reason = "port not forwarded";
    914   1.6  christos 	else if (ftype == MUX_FWD_REMOTE) {
    915   1.6  christos 		/*
    916   1.6  christos 		 * This shouldn't fail unless we confused the host/port
    917   1.6  christos 		 * between options.remote_forwards and permitted_opens.
    918   1.6  christos 		 * However, for dynamic allocated listen ports we need
    919  1.10  christos 		 * to use the actual listen port.
    920   1.6  christos 		 */
    921  1.19  christos 		if (channel_request_rforward_cancel(ssh, found_fwd) == -1)
    922   1.6  christos 			error_reason = "port not in permitted opens";
    923   1.6  christos 	} else {	/* local and dynamic forwards */
    924   1.6  christos 		/* Ditto */
    925  1.19  christos 		if (channel_cancel_lport_listener(ssh, &fwd, fwd.connect_port,
    926  1.10  christos 		    &options.fwd_opts) == -1)
    927   1.6  christos 			error_reason = "port not found";
    928   1.6  christos 	}
    929   1.6  christos 
    930  1.21  christos 	if (error_reason != NULL)
    931  1.21  christos 		reply_error(reply, MUX_S_FAILURE, rid, error_reason);
    932  1.21  christos 	else {
    933  1.21  christos 		reply_ok(reply, rid);
    934   1.9  christos 		free(found_fwd->listen_host);
    935  1.10  christos 		free(found_fwd->listen_path);
    936   1.9  christos 		free(found_fwd->connect_host);
    937  1.10  christos 		free(found_fwd->connect_path);
    938   1.6  christos 		found_fwd->listen_host = found_fwd->connect_host = NULL;
    939  1.10  christos 		found_fwd->listen_path = found_fwd->connect_path = NULL;
    940   1.6  christos 		found_fwd->listen_port = found_fwd->connect_port = 0;
    941   1.6  christos 	}
    942   1.3      adam  out:
    943   1.9  christos 	free(fwd_desc);
    944  1.10  christos 	free(listen_addr);
    945  1.10  christos 	free(connect_addr);
    946   1.3      adam 
    947   1.3      adam 	return ret;
    948   1.3      adam }
    949   1.3      adam 
    950   1.3      adam static int
    951  1.23  christos mux_master_process_stdio_fwd(struct ssh *ssh, u_int rid,
    952  1.21  christos     Channel *c, struct sshbuf *m, struct sshbuf *reply)
    953   1.3      adam {
    954   1.3      adam 	Channel *nc;
    955  1.21  christos 	char *chost = NULL;
    956  1.34  christos 	u_int _cport, i, j;
    957  1.34  christos 	int ok = 0, cport, r, new_fd[2];
    958  1.10  christos 	struct mux_stdio_confirm_ctx *cctx;
    959   1.3      adam 
    960  1.21  christos 	if ((r = sshbuf_skip_string(m)) != 0 || /* reserved */
    961  1.21  christos 	    (r = sshbuf_get_cstring(m, &chost, NULL)) != 0 ||
    962  1.34  christos 	    (r = sshbuf_get_u32(m, &_cport)) != 0) {
    963   1.9  christos 		free(chost);
    964  1.28  christos 		error_f("malformed message");
    965   1.3      adam 		return -1;
    966   1.3      adam 	}
    967  1.34  christos 	if (_cport == (u_int)PORT_STREAMLOCAL)
    968  1.34  christos 		cport = PORT_STREAMLOCAL;
    969  1.34  christos 	else if (_cport <= INT_MAX)
    970  1.34  christos 		cport = (int)_cport;
    971  1.34  christos 	else {
    972  1.34  christos 		free(chost);
    973  1.34  christos 		error_f("invalid port 0x%x", _cport);
    974  1.34  christos 		return -1;
    975  1.34  christos 	}
    976   1.3      adam 
    977  1.34  christos 	debug2_f("channel %d: stdio fwd to %s:%d", c->self, chost, cport);
    978   1.3      adam 
    979   1.3      adam 	/* Gather fds from client */
    980   1.3      adam 	for(i = 0; i < 2; i++) {
    981   1.3      adam 		if ((new_fd[i] = mm_receive_fd(c->sock)) == -1) {
    982  1.28  christos 			error_f("failed to receive fd %d from client", i);
    983   1.3      adam 			for (j = 0; j < i; j++)
    984   1.3      adam 				close(new_fd[j]);
    985   1.9  christos 			free(chost);
    986   1.3      adam 
    987   1.3      adam 			/* prepare reply */
    988  1.21  christos 			reply_error(reply, MUX_S_FAILURE, rid,
    989   1.3      adam 			    "did not receive file descriptors");
    990   1.3      adam 			return -1;
    991   1.3      adam 		}
    992   1.3      adam 	}
    993   1.3      adam 
    994  1.28  christos 	debug3_f("got fds stdin %d, stdout %d", new_fd[0], new_fd[1]);
    995   1.3      adam 
    996   1.3      adam 	/* XXX support multiple child sessions in future */
    997  1.36  christos 	if (c->have_ctl_child_id) {
    998  1.28  christos 		debug2_f("session already open");
    999  1.21  christos 		reply_error(reply, MUX_S_FAILURE, rid,
   1000  1.21  christos 		    "Multiple sessions not supported");
   1001   1.3      adam  cleanup:
   1002   1.3      adam 		close(new_fd[0]);
   1003   1.3      adam 		close(new_fd[1]);
   1004   1.9  christos 		free(chost);
   1005   1.3      adam 		return 0;
   1006   1.3      adam 	}
   1007   1.3      adam 
   1008   1.3      adam 	if (options.control_master == SSHCTL_MASTER_ASK ||
   1009   1.3      adam 	    options.control_master == SSHCTL_MASTER_AUTO_ASK) {
   1010  1.34  christos 		if (cport == PORT_STREAMLOCAL) {
   1011  1.34  christos 			ok = ask_permission("Allow forward to path %s", chost);
   1012  1.34  christos 		} else {
   1013  1.34  christos 			ok = ask_permission("Allow forward to [%s]:%d? ",
   1014  1.34  christos 			    chost, cport);
   1015  1.34  christos 		}
   1016  1.34  christos 		if (!ok) {
   1017  1.28  christos 			debug2_f("stdio fwd refused by user");
   1018  1.21  christos 			reply_error(reply, MUX_S_PERMISSION_DENIED, rid,
   1019  1.21  christos 			    "Permission denied");
   1020   1.3      adam 			goto cleanup;
   1021   1.3      adam 		}
   1022   1.3      adam 	}
   1023   1.3      adam 
   1024  1.30  christos 	nc = channel_connect_stdio_fwd(ssh, chost, cport, new_fd[0], new_fd[1],
   1025  1.30  christos 	    CHANNEL_NONBLOCK_STDIO);
   1026  1.21  christos 	free(chost);
   1027   1.3      adam 
   1028   1.3      adam 	nc->ctl_chan = c->self;		/* link session -> control channel */
   1029  1.36  christos 	c->ctl_child_id = nc->self;	/* link control -> session channel */
   1030  1.36  christos 	c->have_ctl_child_id = 1;
   1031   1.3      adam 
   1032  1.28  christos 	debug2_f("channel_new: %d control %d", nc->self, nc->ctl_chan);
   1033   1.3      adam 
   1034  1.19  christos 	channel_register_cleanup(ssh, nc->self,
   1035  1.19  christos 	    mux_master_session_cleanup_cb, 1);
   1036   1.3      adam 
   1037  1.10  christos 	cctx = xcalloc(1, sizeof(*cctx));
   1038  1.10  christos 	cctx->rid = rid;
   1039  1.19  christos 	channel_register_open_confirm(ssh, nc->self, mux_stdio_confirm, cctx);
   1040  1.10  christos 	c->mux_pause = 1; /* stop handling messages until open_confirm done */
   1041  1.10  christos 
   1042  1.10  christos 	/* reply is deferred, sent by mux_session_confirm */
   1043  1.10  christos 	return 0;
   1044  1.10  christos }
   1045  1.10  christos 
   1046  1.10  christos /* Callback on open confirmation in mux master for a mux stdio fwd session. */
   1047  1.10  christos static void
   1048  1.19  christos mux_stdio_confirm(struct ssh *ssh, int id, int success, void *arg)
   1049  1.10  christos {
   1050  1.10  christos 	struct mux_stdio_confirm_ctx *cctx = arg;
   1051  1.10  christos 	Channel *c, *cc;
   1052  1.21  christos 	struct sshbuf *reply;
   1053  1.21  christos 	int r;
   1054  1.10  christos 
   1055  1.10  christos 	if (cctx == NULL)
   1056  1.28  christos 		fatal_f("cctx == NULL");
   1057  1.19  christos 	if ((c = channel_by_id(ssh, id)) == NULL)
   1058  1.28  christos 		fatal_f("no channel for id %d", id);
   1059  1.19  christos 	if ((cc = channel_by_id(ssh, c->ctl_chan)) == NULL)
   1060  1.28  christos 		fatal_f("channel %d lacks control channel %d",
   1061  1.10  christos 		    id, c->ctl_chan);
   1062  1.21  christos 	if ((reply = sshbuf_new()) == NULL)
   1063  1.28  christos 		fatal_f("sshbuf_new");
   1064  1.10  christos 
   1065  1.10  christos 	if (!success) {
   1066  1.28  christos 		debug3_f("sending failure reply");
   1067  1.21  christos 		reply_error(reply, MUX_S_FAILURE, cctx->rid,
   1068  1.21  christos 		    "Session open refused by peer");
   1069  1.10  christos 		/* prepare reply */
   1070  1.10  christos 		goto done;
   1071  1.10  christos 	}
   1072  1.10  christos 
   1073  1.28  christos 	debug3_f("sending success reply");
   1074   1.3      adam 	/* prepare reply */
   1075  1.21  christos 	if ((r = sshbuf_put_u32(reply, MUX_S_SESSION_OPENED)) != 0 ||
   1076  1.21  christos 	    (r = sshbuf_put_u32(reply, cctx->rid)) != 0 ||
   1077  1.21  christos 	    (r = sshbuf_put_u32(reply, c->self)) != 0)
   1078  1.28  christos 		fatal_fr(r, "reply");
   1079  1.10  christos 
   1080  1.10  christos  done:
   1081  1.10  christos 	/* Send reply */
   1082  1.21  christos 	if ((r = sshbuf_put_stringb(cc->output, reply)) != 0)
   1083  1.28  christos 		fatal_fr(r, "enqueue");
   1084  1.21  christos 	sshbuf_free(reply);
   1085   1.3      adam 
   1086  1.10  christos 	if (cc->mux_pause <= 0)
   1087  1.28  christos 		fatal_f("mux_pause %d", cc->mux_pause);
   1088  1.10  christos 	cc->mux_pause = 0; /* start processing messages again */
   1089  1.10  christos 	c->open_confirm_ctx = NULL;
   1090  1.10  christos 	free(cctx);
   1091   1.3      adam }
   1092   1.3      adam 
   1093   1.5  christos static int
   1094  1.23  christos mux_master_process_stop_listening(struct ssh *ssh, u_int rid,
   1095  1.21  christos     Channel *c, struct sshbuf *m, struct sshbuf *reply)
   1096   1.5  christos {
   1097  1.28  christos 	debug_f("channel %d: stop listening", c->self);
   1098   1.5  christos 
   1099   1.5  christos 	if (options.control_master == SSHCTL_MASTER_ASK ||
   1100   1.5  christos 	    options.control_master == SSHCTL_MASTER_AUTO_ASK) {
   1101   1.5  christos 		if (!ask_permission("Disable further multiplexing on shared "
   1102   1.5  christos 		    "connection to %s? ", host)) {
   1103  1.28  christos 			debug2_f("stop listen refused by user");
   1104  1.21  christos 			reply_error(reply, MUX_S_PERMISSION_DENIED, rid,
   1105  1.21  christos 			    "Permission denied");
   1106   1.5  christos 			return 0;
   1107   1.5  christos 		}
   1108   1.5  christos 	}
   1109   1.5  christos 
   1110   1.5  christos 	if (mux_listener_channel != NULL) {
   1111  1.19  christos 		channel_free(ssh, mux_listener_channel);
   1112   1.5  christos 		client_stop_mux();
   1113   1.9  christos 		free(options.control_path);
   1114   1.5  christos 		options.control_path = NULL;
   1115   1.5  christos 		mux_listener_channel = NULL;
   1116   1.5  christos 		muxserver_sock = -1;
   1117   1.5  christos 	}
   1118   1.5  christos 
   1119  1.21  christos 	reply_ok(reply, rid);
   1120   1.5  christos 	return 0;
   1121   1.5  christos }
   1122   1.5  christos 
   1123  1.17  christos static int
   1124  1.23  christos mux_master_process_proxy(struct ssh *ssh, u_int rid,
   1125  1.21  christos     Channel *c, struct sshbuf *m, struct sshbuf *reply)
   1126  1.17  christos {
   1127  1.21  christos 	int r;
   1128  1.21  christos 
   1129  1.28  christos 	debug_f("channel %d: proxy request", c->self);
   1130  1.17  christos 
   1131  1.17  christos 	c->mux_rcb = channel_proxy_downstream;
   1132  1.21  christos 	if ((r = sshbuf_put_u32(reply, MUX_S_PROXY)) != 0 ||
   1133  1.21  christos 	    (r = sshbuf_put_u32(reply, rid)) != 0)
   1134  1.28  christos 		fatal_fr(r, "reply");
   1135  1.17  christos 
   1136  1.17  christos 	return 0;
   1137  1.17  christos }
   1138  1.17  christos 
   1139  1.27  christos /* Channel callbacks fired on read/write from mux client fd */
   1140   1.3      adam static int
   1141  1.19  christos mux_master_read_cb(struct ssh *ssh, Channel *c)
   1142   1.3      adam {
   1143   1.3      adam 	struct mux_master_state *state = (struct mux_master_state *)c->mux_ctx;
   1144  1.21  christos 	struct sshbuf *in = NULL, *out = NULL;
   1145  1.21  christos 	u_int type, rid, i;
   1146  1.21  christos 	int r, ret = -1;
   1147  1.21  christos 
   1148  1.21  christos 	if ((out = sshbuf_new()) == NULL)
   1149  1.28  christos 		fatal_f("sshbuf_new");
   1150   1.3      adam 
   1151   1.3      adam 	/* Setup ctx and  */
   1152   1.3      adam 	if (c->mux_ctx == NULL) {
   1153   1.3      adam 		state = xcalloc(1, sizeof(*state));
   1154   1.3      adam 		c->mux_ctx = state;
   1155  1.19  christos 		channel_register_cleanup(ssh, c->self,
   1156   1.3      adam 		    mux_master_control_cleanup_cb, 0);
   1157   1.3      adam 
   1158   1.3      adam 		/* Send hello */
   1159  1.21  christos 		if ((r = sshbuf_put_u32(out, MUX_MSG_HELLO)) != 0 ||
   1160  1.21  christos 		    (r = sshbuf_put_u32(out, SSHMUX_VER)) != 0)
   1161  1.28  christos 			fatal_fr(r, "reply");
   1162   1.3      adam 		/* no extensions */
   1163  1.21  christos 		if ((r = sshbuf_put_stringb(c->output, out)) != 0)
   1164  1.28  christos 			fatal_fr(r, "enqueue");
   1165  1.28  christos 		debug3_f("channel %d: hello sent", c->self);
   1166  1.21  christos 		ret = 0;
   1167  1.21  christos 		goto out;
   1168   1.3      adam 	}
   1169   1.3      adam 
   1170   1.3      adam 	/* Channel code ensures that we receive whole packets */
   1171  1.21  christos 	if ((r = sshbuf_froms(c->input, &in)) != 0) {
   1172   1.3      adam  malf:
   1173  1.28  christos 		error_f("malformed message");
   1174   1.3      adam 		goto out;
   1175   1.3      adam 	}
   1176   1.3      adam 
   1177  1.21  christos 	if ((r = sshbuf_get_u32(in, &type)) != 0)
   1178   1.3      adam 		goto malf;
   1179  1.28  christos 	debug3_f("channel %d packet type 0x%08x len %zu", c->self,
   1180  1.28  christos 	    type, sshbuf_len(in));
   1181   1.3      adam 
   1182   1.3      adam 	if (type == MUX_MSG_HELLO)
   1183   1.3      adam 		rid = 0;
   1184   1.3      adam 	else {
   1185   1.3      adam 		if (!state->hello_rcvd) {
   1186  1.28  christos 			error_f("expected MUX_MSG_HELLO(0x%08x), "
   1187  1.28  christos 			    "received 0x%08x", MUX_MSG_HELLO, type);
   1188   1.3      adam 			goto out;
   1189   1.1  christos 		}
   1190  1.21  christos 		if ((r = sshbuf_get_u32(in, &rid)) != 0)
   1191   1.3      adam 			goto malf;
   1192   1.3      adam 	}
   1193   1.3      adam 
   1194   1.3      adam 	for (i = 0; mux_master_handlers[i].handler != NULL; i++) {
   1195   1.3      adam 		if (type == mux_master_handlers[i].type) {
   1196  1.19  christos 			ret = mux_master_handlers[i].handler(ssh, rid,
   1197  1.21  christos 			    c, in, out);
   1198   1.3      adam 			break;
   1199   1.1  christos 		}
   1200   1.3      adam 	}
   1201   1.3      adam 	if (mux_master_handlers[i].handler == NULL) {
   1202  1.28  christos 		error_f("unsupported mux message 0x%08x", type);
   1203  1.21  christos 		reply_error(out, MUX_S_FAILURE, rid, "unsupported request");
   1204   1.3      adam 		ret = 0;
   1205   1.3      adam 	}
   1206   1.3      adam 	/* Enqueue reply packet */
   1207  1.28  christos 	if (sshbuf_len(out) != 0 &&
   1208  1.28  christos 	    (r = sshbuf_put_stringb(c->output, out)) != 0)
   1209  1.28  christos 		fatal_fr(r, "enqueue");
   1210   1.3      adam  out:
   1211  1.21  christos 	sshbuf_free(in);
   1212  1.21  christos 	sshbuf_free(out);
   1213   1.3      adam 	return ret;
   1214   1.3      adam }
   1215   1.3      adam 
   1216   1.3      adam void
   1217  1.19  christos mux_exit_message(struct ssh *ssh, Channel *c, int exitval)
   1218   1.3      adam {
   1219  1.21  christos 	struct sshbuf *m;
   1220   1.3      adam 	Channel *mux_chan;
   1221  1.21  christos 	int r;
   1222   1.3      adam 
   1223  1.28  christos 	debug3_f("channel %d: exit message, exitval %d", c->self, exitval);
   1224   1.3      adam 
   1225  1.19  christos 	if ((mux_chan = channel_by_id(ssh, c->ctl_chan)) == NULL)
   1226  1.28  christos 		fatal_f("channel %d missing mux %d", c->self, c->ctl_chan);
   1227   1.3      adam 
   1228   1.3      adam 	/* Append exit message packet to control socket output queue */
   1229  1.21  christos 	if ((m = sshbuf_new()) == NULL)
   1230  1.28  christos 		fatal_f("sshbuf_new");
   1231  1.21  christos 	if ((r = sshbuf_put_u32(m, MUX_S_EXIT_MESSAGE)) != 0 ||
   1232  1.21  christos 	    (r = sshbuf_put_u32(m, c->self)) != 0 ||
   1233  1.21  christos 	    (r = sshbuf_put_u32(m, exitval)) != 0 ||
   1234  1.21  christos 	    (r = sshbuf_put_stringb(mux_chan->output, m)) != 0)
   1235  1.28  christos 		fatal_fr(r, "reply");
   1236  1.21  christos 	sshbuf_free(m);
   1237   1.3      adam }
   1238   1.3      adam 
   1239   1.5  christos void
   1240  1.19  christos mux_tty_alloc_failed(struct ssh *ssh, Channel *c)
   1241   1.5  christos {
   1242  1.21  christos 	struct sshbuf *m;
   1243   1.5  christos 	Channel *mux_chan;
   1244  1.21  christos 	int r;
   1245   1.5  christos 
   1246  1.28  christos 	debug3_f("channel %d: TTY alloc failed", c->self);
   1247   1.5  christos 
   1248  1.19  christos 	if ((mux_chan = channel_by_id(ssh, c->ctl_chan)) == NULL)
   1249  1.28  christos 		fatal_f("channel %d missing mux %d", c->self, c->ctl_chan);
   1250   1.5  christos 
   1251   1.5  christos 	/* Append exit message packet to control socket output queue */
   1252  1.21  christos 	if ((m = sshbuf_new()) == NULL)
   1253  1.28  christos 		fatal_f("sshbuf_new");
   1254  1.21  christos 	if ((r = sshbuf_put_u32(m, MUX_S_TTY_ALLOC_FAIL)) != 0 ||
   1255  1.21  christos 	    (r = sshbuf_put_u32(m, c->self)) != 0 ||
   1256  1.21  christos 	    (r = sshbuf_put_stringb(mux_chan->output, m)) != 0)
   1257  1.28  christos 		fatal_fr(r, "reply");
   1258  1.21  christos 	sshbuf_free(m);
   1259   1.5  christos }
   1260   1.5  christos 
   1261   1.3      adam /* Prepare a mux master to listen on a Unix domain socket. */
   1262   1.3      adam void
   1263  1.19  christos muxserver_listen(struct ssh *ssh)
   1264   1.3      adam {
   1265   1.3      adam 	mode_t old_umask;
   1266   1.4  christos 	char *orig_control_path = options.control_path;
   1267   1.4  christos 	char rbuf[16+1];
   1268   1.4  christos 	u_int i, r;
   1269  1.10  christos 	int oerrno;
   1270   1.3      adam 
   1271   1.3      adam 	if (options.control_path == NULL ||
   1272   1.3      adam 	    options.control_master == SSHCTL_MASTER_NO)
   1273   1.1  christos 		return;
   1274   1.3      adam 
   1275   1.3      adam 	debug("setting up multiplex master socket");
   1276   1.3      adam 
   1277   1.4  christos 	/*
   1278   1.4  christos 	 * Use a temporary path before listen so we can pseudo-atomically
   1279   1.4  christos 	 * establish the listening socket in its final location to avoid
   1280   1.4  christos 	 * other processes racing in between bind() and listen() and hitting
   1281   1.4  christos 	 * an unready socket.
   1282   1.4  christos 	 */
   1283   1.4  christos 	for (i = 0; i < sizeof(rbuf) - 1; i++) {
   1284   1.4  christos 		r = arc4random_uniform(26+26+10);
   1285   1.4  christos 		rbuf[i] = (r < 26) ? 'a' + r :
   1286   1.4  christos 		    (r < 26*2) ? 'A' + r - 26 :
   1287   1.4  christos 		    '0' + r - 26 - 26;
   1288   1.4  christos 	}
   1289   1.4  christos 	rbuf[sizeof(rbuf) - 1] = '\0';
   1290   1.4  christos 	options.control_path = NULL;
   1291   1.4  christos 	xasprintf(&options.control_path, "%s.%s", orig_control_path, rbuf);
   1292  1.28  christos 	debug3_f("temporary control path %s", options.control_path);
   1293   1.4  christos 
   1294   1.3      adam 	old_umask = umask(0177);
   1295  1.10  christos 	muxserver_sock = unix_listener(options.control_path, 64, 0);
   1296  1.10  christos 	oerrno = errno;
   1297  1.10  christos 	umask(old_umask);
   1298  1.10  christos 	if (muxserver_sock < 0) {
   1299  1.10  christos 		if (oerrno == EINVAL || oerrno == EADDRINUSE) {
   1300   1.3      adam 			error("ControlSocket %s already exists, "
   1301   1.3      adam 			    "disabling multiplexing", options.control_path);
   1302   1.4  christos  disable_mux_master:
   1303   1.5  christos 			if (muxserver_sock != -1) {
   1304   1.5  christos 				close(muxserver_sock);
   1305   1.5  christos 				muxserver_sock = -1;
   1306   1.5  christos 			}
   1307   1.9  christos 			free(orig_control_path);
   1308   1.9  christos 			free(options.control_path);
   1309   1.3      adam 			options.control_path = NULL;
   1310   1.3      adam 			options.control_master = SSHCTL_MASTER_NO;
   1311   1.3      adam 			return;
   1312  1.10  christos 		} else {
   1313  1.10  christos 			/* unix_listener() logs the error */
   1314  1.37  christos 			cleanup_exit(255);
   1315  1.10  christos 		}
   1316   1.3      adam 	}
   1317   1.3      adam 
   1318   1.4  christos 	/* Now atomically "move" the mux socket into position */
   1319   1.4  christos 	if (link(options.control_path, orig_control_path) != 0) {
   1320   1.4  christos 		if (errno != EEXIST) {
   1321  1.28  christos 			fatal_f("link mux listener %s => %s: %s",
   1322   1.4  christos 			    options.control_path, orig_control_path,
   1323   1.4  christos 			    strerror(errno));
   1324   1.4  christos 		}
   1325   1.4  christos 		error("ControlSocket %s already exists, disabling multiplexing",
   1326   1.4  christos 		    orig_control_path);
   1327   1.4  christos 		unlink(options.control_path);
   1328   1.4  christos 		goto disable_mux_master;
   1329   1.4  christos 	}
   1330   1.4  christos 	unlink(options.control_path);
   1331   1.9  christos 	free(options.control_path);
   1332   1.4  christos 	options.control_path = orig_control_path;
   1333   1.4  christos 
   1334   1.3      adam 	set_nonblock(muxserver_sock);
   1335   1.3      adam 
   1336  1.19  christos 	mux_listener_channel = channel_new(ssh, "mux listener",
   1337   1.3      adam 	    SSH_CHANNEL_MUX_LISTENER, muxserver_sock, muxserver_sock, -1,
   1338   1.3      adam 	    CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT,
   1339   1.4  christos 	    0, options.control_path, 1);
   1340   1.3      adam 	mux_listener_channel->mux_rcb = mux_master_read_cb;
   1341  1.28  christos 	debug3_f("mux listener channel %d fd %d",
   1342   1.3      adam 	    mux_listener_channel->self, mux_listener_channel->sock);
   1343   1.3      adam }
   1344   1.3      adam 
   1345   1.3      adam /* Callback on open confirmation in mux master for a mux client session. */
   1346   1.3      adam static void
   1347  1.19  christos mux_session_confirm(struct ssh *ssh, int id, int success, void *arg)
   1348   1.3      adam {
   1349   1.3      adam 	struct mux_session_confirm_ctx *cctx = arg;
   1350   1.3      adam 	const char *display;
   1351   1.3      adam 	Channel *c, *cc;
   1352  1.21  christos 	int i, r;
   1353  1.21  christos 	struct sshbuf *reply;
   1354   1.3      adam 
   1355   1.3      adam 	if (cctx == NULL)
   1356  1.28  christos 		fatal_f("cctx == NULL");
   1357  1.19  christos 	if ((c = channel_by_id(ssh, id)) == NULL)
   1358  1.28  christos 		fatal_f("no channel for id %d", id);
   1359  1.19  christos 	if ((cc = channel_by_id(ssh, c->ctl_chan)) == NULL)
   1360  1.28  christos 		fatal_f("channel %d lacks control channel %d",
   1361   1.3      adam 		    id, c->ctl_chan);
   1362  1.21  christos 	if ((reply = sshbuf_new()) == NULL)
   1363  1.28  christos 		fatal_f("sshbuf_new");
   1364   1.3      adam 
   1365   1.3      adam 	if (!success) {
   1366  1.28  christos 		debug3_f("sending failure reply");
   1367  1.21  christos 		reply_error(reply, MUX_S_FAILURE, cctx->rid,
   1368  1.21  christos 		    "Session open refused by peer");
   1369   1.3      adam 		goto done;
   1370   1.3      adam 	}
   1371   1.3      adam 
   1372   1.3      adam 	display = getenv("DISPLAY");
   1373   1.3      adam 	if (cctx->want_x_fwd && options.forward_x11 && display != NULL) {
   1374   1.3      adam 		char *proto, *data;
   1375   1.3      adam 
   1376   1.3      adam 		/* Get reasonable local authentication information. */
   1377  1.19  christos 		if (client_x11_get_proto(ssh, display, options.xauth_location,
   1378   1.3      adam 		    options.forward_x11_trusted, options.forward_x11_timeout,
   1379  1.14  christos 		    &proto, &data) == 0) {
   1380  1.14  christos 			/* Request forwarding with authentication spoofing. */
   1381  1.14  christos 			debug("Requesting X11 forwarding with authentication "
   1382  1.14  christos 			    "spoofing.");
   1383  1.19  christos 			x11_request_forwarding_with_spoofing(ssh, id,
   1384  1.19  christos 			    display, proto, data, 1);
   1385  1.14  christos 			/* XXX exit_on_forward_failure */
   1386  1.19  christos 			client_expect_confirm(ssh, id, "X11 forwarding",
   1387  1.14  christos 			    CONFIRM_WARN);
   1388  1.14  christos 		}
   1389   1.1  christos 	}
   1390   1.1  christos 
   1391   1.3      adam 	if (cctx->want_agent_fwd && options.forward_agent) {
   1392   1.3      adam 		debug("Requesting authentication agent forwarding.");
   1393  1.19  christos 		channel_request_start(ssh, id, "auth-agent-req (at) openssh.com", 0);
   1394  1.23  christos 		if ((r = sshpkt_send(ssh)) != 0)
   1395  1.28  christos 			fatal_fr(r, "send");
   1396   1.3      adam 	}
   1397   1.3      adam 
   1398  1.19  christos 	client_session2_setup(ssh, id, cctx->want_tty, cctx->want_subsys,
   1399  1.21  christos 	    cctx->term, &cctx->tio, c->rfd, cctx->cmd, cctx->env);
   1400   1.3      adam 
   1401  1.28  christos 	debug3_f("sending success reply");
   1402   1.3      adam 	/* prepare reply */
   1403  1.21  christos 	if ((r = sshbuf_put_u32(reply, MUX_S_SESSION_OPENED)) != 0 ||
   1404  1.21  christos 	    (r = sshbuf_put_u32(reply, cctx->rid)) != 0 ||
   1405  1.21  christos 	    (r = sshbuf_put_u32(reply, c->self)) != 0)
   1406  1.28  christos 		fatal_fr(r, "reply");
   1407   1.3      adam 
   1408   1.3      adam  done:
   1409   1.3      adam 	/* Send reply */
   1410  1.21  christos 	if ((r = sshbuf_put_stringb(cc->output, reply)) != 0)
   1411  1.28  christos 		fatal_fr(r, "enqueue");
   1412  1.21  christos 	sshbuf_free(reply);
   1413   1.3      adam 
   1414   1.3      adam 	if (cc->mux_pause <= 0)
   1415  1.28  christos 		fatal_f("mux_pause %d", cc->mux_pause);
   1416   1.3      adam 	cc->mux_pause = 0; /* start processing messages again */
   1417   1.3      adam 	c->open_confirm_ctx = NULL;
   1418  1.21  christos 	sshbuf_free(cctx->cmd);
   1419   1.9  christos 	free(cctx->term);
   1420   1.3      adam 	if (cctx->env != NULL) {
   1421   1.3      adam 		for (i = 0; cctx->env[i] != NULL; i++)
   1422   1.9  christos 			free(cctx->env[i]);
   1423   1.9  christos 		free(cctx->env);
   1424   1.3      adam 	}
   1425   1.9  christos 	free(cctx);
   1426   1.3      adam }
   1427   1.3      adam 
   1428   1.3      adam /* ** Multiplexing client support */
   1429   1.3      adam 
   1430   1.3      adam /* Exit signal handler */
   1431   1.3      adam static void
   1432   1.3      adam control_client_sighandler(int signo)
   1433   1.3      adam {
   1434   1.3      adam 	muxclient_terminate = signo;
   1435   1.3      adam }
   1436   1.3      adam 
   1437   1.3      adam /*
   1438   1.3      adam  * Relay signal handler - used to pass some signals from mux client to
   1439   1.3      adam  * mux master.
   1440   1.3      adam  */
   1441   1.3      adam static void
   1442   1.3      adam control_client_sigrelay(int signo)
   1443   1.3      adam {
   1444   1.3      adam 	int save_errno = errno;
   1445   1.3      adam 
   1446   1.3      adam 	if (muxserver_pid > 1)
   1447   1.3      adam 		kill(muxserver_pid, signo);
   1448   1.3      adam 
   1449   1.3      adam 	errno = save_errno;
   1450   1.3      adam }
   1451   1.3      adam 
   1452   1.3      adam static int
   1453  1.34  christos mux_client_read(int fd, struct sshbuf *b, size_t need, int timeout_ms)
   1454   1.3      adam {
   1455  1.21  christos 	size_t have;
   1456   1.3      adam 	ssize_t len;
   1457   1.3      adam 	u_char *p;
   1458  1.21  christos 	int r;
   1459   1.3      adam 
   1460  1.21  christos 	if ((r = sshbuf_reserve(b, need, &p)) != 0)
   1461  1.28  christos 		fatal_fr(r, "reserve");
   1462   1.3      adam 	for (have = 0; have < need; ) {
   1463   1.3      adam 		if (muxclient_terminate) {
   1464   1.3      adam 			errno = EINTR;
   1465   1.3      adam 			return -1;
   1466   1.3      adam 		}
   1467   1.3      adam 		len = read(fd, p + have, need - have);
   1468  1.24  christos 		if (len == -1) {
   1469   1.3      adam 			switch (errno) {
   1470   1.3      adam 			case EAGAIN:
   1471  1.34  christos 				if (waitrfd(fd, &timeout_ms,
   1472  1.34  christos 				    &muxclient_terminate) == -1 &&
   1473  1.34  christos 				    errno != EINTR)
   1474  1.34  christos 					return -1;	/* timeout */
   1475   1.3      adam 				/* FALLTHROUGH */
   1476   1.3      adam 			case EINTR:
   1477   1.3      adam 				continue;
   1478   1.3      adam 			default:
   1479   1.3      adam 				return -1;
   1480   1.3      adam 			}
   1481   1.3      adam 		}
   1482   1.3      adam 		if (len == 0) {
   1483   1.3      adam 			errno = EPIPE;
   1484   1.3      adam 			return -1;
   1485   1.3      adam 		}
   1486  1.21  christos 		have += (size_t)len;
   1487   1.3      adam 	}
   1488   1.3      adam 	return 0;
   1489   1.3      adam }
   1490   1.3      adam 
   1491   1.3      adam static int
   1492  1.21  christos mux_client_write_packet(int fd, struct sshbuf *m)
   1493   1.3      adam {
   1494  1.21  christos 	struct sshbuf *queue;
   1495   1.3      adam 	u_int have, need;
   1496  1.21  christos 	int r, oerrno, len;
   1497  1.21  christos 	const u_char *ptr;
   1498   1.3      adam 	struct pollfd pfd;
   1499   1.3      adam 
   1500   1.3      adam 	pfd.fd = fd;
   1501   1.3      adam 	pfd.events = POLLOUT;
   1502  1.21  christos 	if ((queue = sshbuf_new()) == NULL)
   1503  1.28  christos 		fatal_f("sshbuf_new");
   1504  1.21  christos 	if ((r = sshbuf_put_stringb(queue, m)) != 0)
   1505  1.28  christos 		fatal_fr(r, "enqueue");
   1506   1.3      adam 
   1507  1.21  christos 	need = sshbuf_len(queue);
   1508  1.21  christos 	ptr = sshbuf_ptr(queue);
   1509   1.3      adam 
   1510   1.3      adam 	for (have = 0; have < need; ) {
   1511   1.3      adam 		if (muxclient_terminate) {
   1512  1.21  christos 			sshbuf_free(queue);
   1513   1.3      adam 			errno = EINTR;
   1514   1.3      adam 			return -1;
   1515   1.3      adam 		}
   1516   1.3      adam 		len = write(fd, ptr + have, need - have);
   1517  1.24  christos 		if (len == -1) {
   1518   1.3      adam 			switch (errno) {
   1519   1.3      adam 			case EAGAIN:
   1520   1.3      adam 				(void)poll(&pfd, 1, -1);
   1521   1.3      adam 				/* FALLTHROUGH */
   1522   1.3      adam 			case EINTR:
   1523   1.3      adam 				continue;
   1524   1.3      adam 			default:
   1525   1.3      adam 				oerrno = errno;
   1526  1.21  christos 				sshbuf_free(queue);
   1527   1.3      adam 				errno = oerrno;
   1528   1.3      adam 				return -1;
   1529   1.3      adam 			}
   1530   1.3      adam 		}
   1531   1.3      adam 		if (len == 0) {
   1532  1.21  christos 			sshbuf_free(queue);
   1533   1.3      adam 			errno = EPIPE;
   1534   1.3      adam 			return -1;
   1535   1.3      adam 		}
   1536   1.3      adam 		have += (u_int)len;
   1537   1.3      adam 	}
   1538  1.21  christos 	sshbuf_free(queue);
   1539   1.3      adam 	return 0;
   1540   1.3      adam }
   1541   1.3      adam 
   1542   1.3      adam static int
   1543  1.34  christos mux_client_read_packet_timeout(int fd, struct sshbuf *m, int timeout_ms)
   1544   1.3      adam {
   1545  1.21  christos 	struct sshbuf *queue;
   1546  1.21  christos 	size_t need, have;
   1547  1.10  christos 	const u_char *ptr;
   1548  1.21  christos 	int r, oerrno;
   1549   1.3      adam 
   1550  1.21  christos 	if ((queue = sshbuf_new()) == NULL)
   1551  1.28  christos 		fatal_f("sshbuf_new");
   1552  1.34  christos 	if (mux_client_read(fd, queue, 4, timeout_ms) != 0) {
   1553   1.3      adam 		if ((oerrno = errno) == EPIPE)
   1554  1.28  christos 			debug3_f("read header failed: %s",
   1555   1.9  christos 			    strerror(errno));
   1556  1.21  christos 		sshbuf_free(queue);
   1557   1.3      adam 		errno = oerrno;
   1558   1.3      adam 		return -1;
   1559   1.3      adam 	}
   1560  1.21  christos 	need = PEEK_U32(sshbuf_ptr(queue));
   1561  1.34  christos 	if (mux_client_read(fd, queue, need, timeout_ms) != 0) {
   1562   1.3      adam 		oerrno = errno;
   1563  1.28  christos 		debug3_f("read body failed: %s", strerror(errno));
   1564  1.21  christos 		sshbuf_free(queue);
   1565   1.3      adam 		errno = oerrno;
   1566   1.3      adam 		return -1;
   1567   1.3      adam 	}
   1568  1.21  christos 	if ((r = sshbuf_get_string_direct(queue, &ptr, &have)) != 0 ||
   1569  1.21  christos 	    (r = sshbuf_put(m, ptr, have)) != 0)
   1570  1.28  christos 		fatal_fr(r, "dequeue");
   1571  1.21  christos 	sshbuf_free(queue);
   1572   1.3      adam 	return 0;
   1573   1.3      adam }
   1574   1.3      adam 
   1575   1.3      adam static int
   1576  1.34  christos mux_client_read_packet(int fd, struct sshbuf *m)
   1577  1.34  christos {
   1578  1.34  christos 	return mux_client_read_packet_timeout(fd, m, -1);
   1579  1.34  christos }
   1580  1.34  christos 
   1581  1.34  christos static int
   1582  1.34  christos mux_client_hello_exchange(int fd, int timeout_ms)
   1583   1.3      adam {
   1584  1.21  christos 	struct sshbuf *m;
   1585   1.3      adam 	u_int type, ver;
   1586  1.21  christos 	int r, ret = -1;
   1587   1.3      adam 
   1588  1.21  christos 	if ((m = sshbuf_new()) == NULL)
   1589  1.28  christos 		fatal_f("sshbuf_new");
   1590  1.21  christos 	if ((r = sshbuf_put_u32(m, MUX_MSG_HELLO)) != 0 ||
   1591  1.21  christos 	    (r = sshbuf_put_u32(m, SSHMUX_VER)) != 0)
   1592  1.28  christos 		fatal_fr(r, "assemble hello");
   1593   1.3      adam 	/* no extensions */
   1594   1.3      adam 
   1595  1.21  christos 	if (mux_client_write_packet(fd, m) != 0) {
   1596  1.28  christos 		debug_f("write packet: %s", strerror(errno));
   1597  1.19  christos 		goto out;
   1598  1.19  christos 	}
   1599   1.3      adam 
   1600  1.21  christos 	sshbuf_reset(m);
   1601   1.3      adam 
   1602   1.3      adam 	/* Read their HELLO */
   1603  1.34  christos 	if (mux_client_read_packet_timeout(fd, m, timeout_ms) != 0) {
   1604  1.28  christos 		debug_f("read packet failed");
   1605  1.19  christos 		goto out;
   1606   1.1  christos 	}
   1607   1.1  christos 
   1608  1.21  christos 	if ((r = sshbuf_get_u32(m, &type)) != 0)
   1609  1.28  christos 		fatal_fr(r, "parse type");
   1610  1.19  christos 	if (type != MUX_MSG_HELLO) {
   1611  1.28  christos 		error_f("expected HELLO (%u) got %u", MUX_MSG_HELLO, type);
   1612  1.19  christos 		goto out;
   1613  1.19  christos 	}
   1614  1.21  christos 	if ((r = sshbuf_get_u32(m, &ver)) != 0)
   1615  1.28  christos 		fatal_fr(r, "parse version");
   1616  1.19  christos 	if (ver != SSHMUX_VER) {
   1617  1.19  christos 		error("Unsupported multiplexing protocol version %d "
   1618   1.3      adam 		    "(expected %d)", ver, SSHMUX_VER);
   1619  1.19  christos 		goto out;
   1620  1.19  christos 	}
   1621  1.28  christos 	debug2_f("master version %u", ver);
   1622   1.3      adam 	/* No extensions are presently defined */
   1623  1.21  christos 	while (sshbuf_len(m) > 0) {
   1624  1.21  christos 		char *name = NULL;
   1625   1.3      adam 
   1626  1.21  christos 		if ((r = sshbuf_get_cstring(m, &name, NULL)) != 0 ||
   1627  1.21  christos 		    (r = sshbuf_skip_string(m)) != 0) { /* value */
   1628  1.28  christos 			error_fr(r, "parse extension");
   1629  1.21  christos 			goto out;
   1630  1.21  christos 		}
   1631   1.3      adam 		debug2("Unrecognised master extension \"%s\"", name);
   1632   1.9  christos 		free(name);
   1633   1.3      adam 	}
   1634  1.19  christos 	/* success */
   1635  1.19  christos 	ret = 0;
   1636  1.19  christos  out:
   1637  1.21  christos 	sshbuf_free(m);
   1638  1.19  christos 	return ret;
   1639   1.3      adam }
   1640   1.1  christos 
   1641   1.3      adam static u_int
   1642   1.3      adam mux_client_request_alive(int fd)
   1643   1.3      adam {
   1644  1.21  christos 	struct sshbuf *m;
   1645   1.3      adam 	char *e;
   1646   1.3      adam 	u_int pid, type, rid;
   1647  1.21  christos 	int r;
   1648   1.1  christos 
   1649  1.28  christos 	debug3_f("entering");
   1650   1.1  christos 
   1651  1.21  christos 	if ((m = sshbuf_new()) == NULL)
   1652  1.28  christos 		fatal_f("sshbuf_new");
   1653  1.21  christos 	if ((r = sshbuf_put_u32(m, MUX_C_ALIVE_CHECK)) != 0 ||
   1654  1.21  christos 	    (r = sshbuf_put_u32(m, muxclient_request_id)) != 0)
   1655  1.28  christos 		fatal_fr(r, "assemble");
   1656   1.1  christos 
   1657  1.21  christos 	if (mux_client_write_packet(fd, m) != 0)
   1658  1.28  christos 		fatal_f("write packet: %s", strerror(errno));
   1659   1.3      adam 
   1660  1.21  christos 	sshbuf_reset(m);
   1661   1.3      adam 
   1662   1.3      adam 	/* Read their reply */
   1663  1.21  christos 	if (mux_client_read_packet(fd, m) != 0) {
   1664  1.21  christos 		sshbuf_free(m);
   1665   1.3      adam 		return 0;
   1666   1.3      adam 	}
   1667   1.3      adam 
   1668  1.21  christos 	if ((r = sshbuf_get_u32(m, &type)) != 0)
   1669  1.28  christos 		fatal_fr(r, "parse type");
   1670   1.3      adam 	if (type != MUX_S_ALIVE) {
   1671  1.21  christos 		if ((r = sshbuf_get_cstring(m, &e, NULL)) != 0)
   1672  1.28  christos 			fatal_fr(r, "parse error message");
   1673  1.28  christos 		fatal_f("master returned error: %s", e);
   1674   1.1  christos 	}
   1675   1.3      adam 
   1676  1.21  christos 	if ((r = sshbuf_get_u32(m, &rid)) != 0)
   1677  1.28  christos 		fatal_fr(r, "parse remote ID");
   1678  1.21  christos 	if (rid != muxclient_request_id)
   1679  1.28  christos 		fatal_f("out of sequence reply: my id %u theirs %u",
   1680  1.28  christos 		    muxclient_request_id, rid);
   1681  1.21  christos 	if ((r = sshbuf_get_u32(m, &pid)) != 0)
   1682  1.28  christos 		fatal_fr(r, "parse PID");
   1683  1.21  christos 	sshbuf_free(m);
   1684   1.3      adam 
   1685  1.28  christos 	debug3_f("done pid = %u", pid);
   1686   1.3      adam 
   1687   1.3      adam 	muxclient_request_id++;
   1688   1.3      adam 
   1689   1.3      adam 	return pid;
   1690   1.3      adam }
   1691   1.3      adam 
   1692   1.3      adam static void
   1693   1.3      adam mux_client_request_terminate(int fd)
   1694   1.3      adam {
   1695  1.21  christos 	struct sshbuf *m;
   1696   1.3      adam 	char *e;
   1697   1.3      adam 	u_int type, rid;
   1698  1.21  christos 	int r;
   1699   1.3      adam 
   1700  1.28  christos 	debug3_f("entering");
   1701   1.3      adam 
   1702  1.21  christos 	if ((m = sshbuf_new()) == NULL)
   1703  1.28  christos 		fatal_f("sshbuf_new");
   1704  1.21  christos 	if ((r = sshbuf_put_u32(m, MUX_C_TERMINATE)) != 0 ||
   1705  1.21  christos 	    (r = sshbuf_put_u32(m, muxclient_request_id)) != 0)
   1706  1.28  christos 		fatal_fr(r, "request");
   1707   1.3      adam 
   1708  1.21  christos 	if (mux_client_write_packet(fd, m) != 0)
   1709  1.28  christos 		fatal_f("write packet: %s", strerror(errno));
   1710   1.3      adam 
   1711  1.21  christos 	sshbuf_reset(m);
   1712   1.1  christos 
   1713   1.3      adam 	/* Read their reply */
   1714  1.21  christos 	if (mux_client_read_packet(fd, m) != 0) {
   1715   1.3      adam 		/* Remote end exited already */
   1716   1.3      adam 		if (errno == EPIPE) {
   1717  1.21  christos 			sshbuf_free(m);
   1718   1.3      adam 			return;
   1719   1.3      adam 		}
   1720  1.28  christos 		fatal_f("read from master failed: %s", strerror(errno));
   1721   1.3      adam 	}
   1722   1.3      adam 
   1723  1.21  christos 	if ((r = sshbuf_get_u32(m, &type)) != 0 ||
   1724  1.21  christos 	    (r = sshbuf_get_u32(m, &rid)) != 0)
   1725  1.28  christos 		fatal_fr(r, "parse");
   1726  1.21  christos 	if (rid != muxclient_request_id)
   1727  1.28  christos 		fatal_f("out of sequence reply: my id %u theirs %u",
   1728  1.28  christos 		    muxclient_request_id, rid);
   1729   1.3      adam 	switch (type) {
   1730   1.3      adam 	case MUX_S_OK:
   1731   1.3      adam 		break;
   1732   1.3      adam 	case MUX_S_PERMISSION_DENIED:
   1733  1.21  christos 		if ((r = sshbuf_get_cstring(m, &e, NULL)) != 0)
   1734  1.28  christos 			fatal_fr(r, "parse error message");
   1735   1.3      adam 		fatal("Master refused termination request: %s", e);
   1736   1.3      adam 	case MUX_S_FAILURE:
   1737  1.21  christos 		if ((r = sshbuf_get_cstring(m, &e, NULL)) != 0)
   1738  1.28  christos 			fatal_fr(r, "parse error message");
   1739  1.28  christos 		fatal_f("termination request failed: %s", e);
   1740   1.3      adam 	default:
   1741  1.28  christos 		fatal_f("unexpected response from master 0x%08x", type);
   1742   1.1  christos 	}
   1743  1.21  christos 	sshbuf_free(m);
   1744   1.3      adam 	muxclient_request_id++;
   1745   1.3      adam }
   1746   1.3      adam 
   1747   1.3      adam static int
   1748  1.10  christos mux_client_forward(int fd, int cancel_flag, u_int ftype, struct Forward *fwd)
   1749   1.3      adam {
   1750  1.21  christos 	struct sshbuf *m;
   1751   1.3      adam 	char *e, *fwd_desc;
   1752  1.21  christos 	const char *lhost, *chost;
   1753   1.3      adam 	u_int type, rid;
   1754  1.21  christos 	int r;
   1755   1.3      adam 
   1756   1.3      adam 	fwd_desc = format_forward(ftype, fwd);
   1757   1.6  christos 	debug("Requesting %s %s",
   1758   1.6  christos 	    cancel_flag ? "cancellation of" : "forwarding of", fwd_desc);
   1759   1.9  christos 	free(fwd_desc);
   1760   1.3      adam 
   1761  1.21  christos 	type = cancel_flag ? MUX_C_CLOSE_FWD : MUX_C_OPEN_FWD;
   1762  1.21  christos 	if (fwd->listen_path != NULL)
   1763  1.21  christos 		lhost = fwd->listen_path;
   1764  1.21  christos 	else if (fwd->listen_host == NULL)
   1765  1.21  christos 		lhost = "";
   1766  1.21  christos 	else if (*fwd->listen_host == '\0')
   1767  1.21  christos 		lhost = "*";
   1768  1.21  christos 	else
   1769  1.21  christos 		lhost = fwd->listen_host;
   1770  1.21  christos 
   1771  1.21  christos 	if (fwd->connect_path != NULL)
   1772  1.21  christos 		chost = fwd->connect_path;
   1773  1.21  christos 	else if (fwd->connect_host == NULL)
   1774  1.21  christos 		chost = "";
   1775  1.21  christos 	else
   1776  1.21  christos 		chost = fwd->connect_host;
   1777  1.21  christos 
   1778  1.21  christos 	if ((m = sshbuf_new()) == NULL)
   1779  1.28  christos 		fatal_f("sshbuf_new");
   1780  1.21  christos 	if ((r = sshbuf_put_u32(m, type)) != 0 ||
   1781  1.21  christos 	    (r = sshbuf_put_u32(m, muxclient_request_id)) != 0 ||
   1782  1.21  christos 	    (r = sshbuf_put_u32(m, ftype)) != 0 ||
   1783  1.21  christos 	    (r = sshbuf_put_cstring(m, lhost)) != 0 ||
   1784  1.21  christos 	    (r = sshbuf_put_u32(m, fwd->listen_port)) != 0 ||
   1785  1.21  christos 	    (r = sshbuf_put_cstring(m, chost)) != 0 ||
   1786  1.21  christos 	    (r = sshbuf_put_u32(m, fwd->connect_port)) != 0)
   1787  1.28  christos 		fatal_fr(r, "request");
   1788   1.3      adam 
   1789  1.21  christos 	if (mux_client_write_packet(fd, m) != 0)
   1790  1.28  christos 		fatal_f("write packet: %s", strerror(errno));
   1791   1.1  christos 
   1792  1.21  christos 	sshbuf_reset(m);
   1793   1.1  christos 
   1794   1.3      adam 	/* Read their reply */
   1795  1.21  christos 	if (mux_client_read_packet(fd, m) != 0) {
   1796  1.21  christos 		sshbuf_free(m);
   1797   1.3      adam 		return -1;
   1798   1.3      adam 	}
   1799   1.1  christos 
   1800  1.21  christos 	if ((r = sshbuf_get_u32(m, &type)) != 0 ||
   1801  1.21  christos 	    (r = sshbuf_get_u32(m, &rid)) != 0)
   1802  1.28  christos 		fatal_fr(r, "parse");
   1803  1.21  christos 	if (rid != muxclient_request_id)
   1804  1.28  christos 		fatal_f("out of sequence reply: my id %u theirs %u",
   1805  1.28  christos 		    muxclient_request_id, rid);
   1806  1.21  christos 
   1807   1.3      adam 	switch (type) {
   1808   1.3      adam 	case MUX_S_OK:
   1809   1.3      adam 		break;
   1810   1.3      adam 	case MUX_S_REMOTE_PORT:
   1811   1.6  christos 		if (cancel_flag)
   1812  1.28  christos 			fatal_f("got MUX_S_REMOTE_PORT for cancel");
   1813  1.21  christos 		if ((r = sshbuf_get_u32(m, &fwd->allocated_port)) != 0)
   1814  1.28  christos 			fatal_fr(r, "parse port");
   1815  1.12  christos 		verbose("Allocated port %u for remote forward to %s:%d",
   1816   1.3      adam 		    fwd->allocated_port,
   1817   1.3      adam 		    fwd->connect_host ? fwd->connect_host : "",
   1818   1.3      adam 		    fwd->connect_port);
   1819   1.3      adam 		if (muxclient_command == SSHMUX_COMMAND_FORWARD)
   1820  1.15  christos 			fprintf(stdout, "%i\n", fwd->allocated_port);
   1821   1.1  christos 		break;
   1822   1.3      adam 	case MUX_S_PERMISSION_DENIED:
   1823  1.21  christos 		if ((r = sshbuf_get_cstring(m, &e, NULL)) != 0)
   1824  1.28  christos 			fatal_fr(r, "parse error message");
   1825  1.21  christos 		sshbuf_free(m);
   1826   1.3      adam 		error("Master refused forwarding request: %s", e);
   1827   1.3      adam 		return -1;
   1828   1.3      adam 	case MUX_S_FAILURE:
   1829  1.21  christos 		if ((r = sshbuf_get_cstring(m, &e, NULL)) != 0)
   1830  1.28  christos 			fatal_fr(r, "parse error message");
   1831  1.21  christos 		sshbuf_free(m);
   1832  1.28  christos 		error_f("forwarding request failed: %s", e);
   1833   1.3      adam 		return -1;
   1834   1.1  christos 	default:
   1835  1.28  christos 		fatal_f("unexpected response from master 0x%08x", type);
   1836   1.3      adam 	}
   1837  1.21  christos 	sshbuf_free(m);
   1838   1.3      adam 
   1839   1.3      adam 	muxclient_request_id++;
   1840   1.3      adam 	return 0;
   1841   1.3      adam }
   1842   1.3      adam 
   1843   1.3      adam static int
   1844   1.6  christos mux_client_forwards(int fd, int cancel_flag)
   1845   1.3      adam {
   1846   1.6  christos 	int i, ret = 0;
   1847   1.3      adam 
   1848  1.28  christos 	debug3_f("%s forwardings: %d local, %d remote",
   1849   1.6  christos 	    cancel_flag ? "cancel" : "request",
   1850   1.3      adam 	    options.num_local_forwards, options.num_remote_forwards);
   1851   1.3      adam 
   1852   1.3      adam 	/* XXX ExitOnForwardingFailure */
   1853   1.3      adam 	for (i = 0; i < options.num_local_forwards; i++) {
   1854   1.6  christos 		if (mux_client_forward(fd, cancel_flag,
   1855   1.3      adam 		    options.local_forwards[i].connect_port == 0 ?
   1856   1.3      adam 		    MUX_FWD_DYNAMIC : MUX_FWD_LOCAL,
   1857   1.3      adam 		    options.local_forwards + i) != 0)
   1858   1.6  christos 			ret = -1;
   1859   1.3      adam 	}
   1860   1.3      adam 	for (i = 0; i < options.num_remote_forwards; i++) {
   1861   1.6  christos 		if (mux_client_forward(fd, cancel_flag, MUX_FWD_REMOTE,
   1862   1.3      adam 		    options.remote_forwards + i) != 0)
   1863   1.6  christos 			ret = -1;
   1864   1.1  christos 	}
   1865   1.6  christos 	return ret;
   1866   1.3      adam }
   1867   1.1  christos 
   1868   1.3      adam static int
   1869   1.3      adam mux_client_request_session(int fd)
   1870   1.3      adam {
   1871  1.21  christos 	struct sshbuf *m;
   1872  1.21  christos 	char *e;
   1873  1.30  christos 	const char *term = NULL;
   1874  1.32  christos 	u_int i, echar, rid, sid, esid, exitval, type, exitval_seen;
   1875   1.3      adam 	extern char **environ;
   1876  1.34  christos 	int r, rawmode = 0;
   1877   1.3      adam 
   1878  1.28  christos 	debug3_f("entering");
   1879   1.3      adam 
   1880   1.3      adam 	if ((muxserver_pid = mux_client_request_alive(fd)) == 0) {
   1881  1.28  christos 		error_f("master alive request failed");
   1882   1.3      adam 		return -1;
   1883   1.1  christos 	}
   1884   1.1  christos 
   1885  1.25  christos 	ssh_signal(SIGPIPE, SIG_IGN);
   1886   1.3      adam 
   1887  1.30  christos 	if (options.stdin_null && stdfd_devnull(1, 0, 0) == -1)
   1888  1.28  christos 		fatal_f("stdfd_devnull failed");
   1889   1.1  christos 
   1890  1.30  christos 	if ((term = lookup_env_in_list("TERM", options.setenv,
   1891  1.30  christos 	    options.num_setenv)) == NULL || *term == '\0')
   1892  1.30  christos 		term = getenv("TERM");
   1893  1.30  christos 
   1894  1.21  christos 	echar = 0xffffffff;
   1895  1.21  christos 	if (options.escape_char != SSH_ESCAPECHAR_NONE)
   1896  1.21  christos 	    echar = (u_int)options.escape_char;
   1897  1.21  christos 
   1898  1.21  christos 	if ((m = sshbuf_new()) == NULL)
   1899  1.28  christos 		fatal_f("sshbuf_new");
   1900  1.21  christos 	if ((r = sshbuf_put_u32(m, MUX_C_NEW_SESSION)) != 0 ||
   1901  1.21  christos 	    (r = sshbuf_put_u32(m, muxclient_request_id)) != 0 ||
   1902  1.21  christos 	    (r = sshbuf_put_string(m, NULL, 0)) != 0 || /* reserved */
   1903  1.21  christos 	    (r = sshbuf_put_u32(m, tty_flag)) != 0 ||
   1904  1.21  christos 	    (r = sshbuf_put_u32(m, options.forward_x11)) != 0 ||
   1905  1.21  christos 	    (r = sshbuf_put_u32(m, options.forward_agent)) != 0 ||
   1906  1.30  christos 	    (r = sshbuf_put_u32(m, options.session_type == SESSION_TYPE_SUBSYSTEM)) != 0 ||
   1907  1.21  christos 	    (r = sshbuf_put_u32(m, echar)) != 0 ||
   1908  1.30  christos 	    (r = sshbuf_put_cstring(m, term == NULL ? "" : term)) != 0 ||
   1909  1.21  christos 	    (r = sshbuf_put_stringb(m, command)) != 0)
   1910  1.28  christos 		fatal_fr(r, "request");
   1911   1.3      adam 
   1912  1.21  christos 	/* Pass environment */
   1913   1.3      adam 	if (options.num_send_env > 0 && environ != NULL) {
   1914   1.3      adam 		for (i = 0; environ[i] != NULL; i++) {
   1915  1.21  christos 			if (!env_permitted(environ[i]))
   1916  1.21  christos 				continue;
   1917  1.21  christos 			if ((r = sshbuf_put_cstring(m, environ[i])) != 0)
   1918  1.28  christos 				fatal_fr(r, "request sendenv");
   1919   1.3      adam 		}
   1920   1.3      adam 	}
   1921  1.21  christos 	for (i = 0; i < options.num_setenv; i++) {
   1922  1.21  christos 		if ((r = sshbuf_put_cstring(m, options.setenv[i])) != 0)
   1923  1.28  christos 			fatal_fr(r, "request setenv");
   1924  1.21  christos 	}
   1925   1.3      adam 
   1926  1.21  christos 	if (mux_client_write_packet(fd, m) != 0)
   1927  1.28  christos 		fatal_f("write packet: %s", strerror(errno));
   1928   1.3      adam 
   1929   1.3      adam 	/* Send the stdio file descriptors */
   1930   1.3      adam 	if (mm_send_fd(fd, STDIN_FILENO) == -1 ||
   1931   1.3      adam 	    mm_send_fd(fd, STDOUT_FILENO) == -1 ||
   1932   1.3      adam 	    mm_send_fd(fd, STDERR_FILENO) == -1)
   1933  1.28  christos 		fatal_f("send fds failed");
   1934   1.3      adam 
   1935  1.28  christos 	debug3_f("session request sent");
   1936   1.1  christos 
   1937   1.3      adam 	/* Read their reply */
   1938  1.21  christos 	sshbuf_reset(m);
   1939  1.21  christos 	if (mux_client_read_packet(fd, m) != 0) {
   1940  1.28  christos 		error_f("read from master failed: %s", strerror(errno));
   1941  1.21  christos 		sshbuf_free(m);
   1942   1.3      adam 		return -1;
   1943   1.3      adam 	}
   1944   1.3      adam 
   1945  1.21  christos 	if ((r = sshbuf_get_u32(m, &type)) != 0 ||
   1946  1.21  christos 	    (r = sshbuf_get_u32(m, &rid)) != 0)
   1947  1.28  christos 		fatal_fr(r, "parse");
   1948  1.21  christos 	if (rid != muxclient_request_id)
   1949  1.28  christos 		fatal_f("out of sequence reply: my id %u theirs %u",
   1950  1.28  christos 		    muxclient_request_id, rid);
   1951  1.21  christos 
   1952   1.3      adam 	switch (type) {
   1953   1.3      adam 	case MUX_S_SESSION_OPENED:
   1954  1.21  christos 		if ((r = sshbuf_get_u32(m, &sid)) != 0)
   1955  1.28  christos 			fatal_fr(r, "parse session ID");
   1956  1.28  christos 		debug_f("master session id: %u", sid);
   1957   1.3      adam 		break;
   1958   1.3      adam 	case MUX_S_PERMISSION_DENIED:
   1959  1.21  christos 		if ((r = sshbuf_get_cstring(m, &e, NULL)) != 0)
   1960  1.28  christos 			fatal_fr(r, "parse error message");
   1961   1.4  christos 		error("Master refused session request: %s", e);
   1962  1.21  christos 		sshbuf_free(m);
   1963   1.3      adam 		return -1;
   1964   1.3      adam 	case MUX_S_FAILURE:
   1965  1.21  christos 		if ((r = sshbuf_get_cstring(m, &e, NULL)) != 0)
   1966  1.28  christos 			fatal_fr(r, "parse error message");
   1967  1.28  christos 		error_f("session request failed: %s", e);
   1968  1.21  christos 		sshbuf_free(m);
   1969   1.3      adam 		return -1;
   1970   1.3      adam 	default:
   1971  1.21  christos 		sshbuf_free(m);
   1972  1.28  christos 		error_f("unexpected response from master 0x%08x", type);
   1973   1.3      adam 		return -1;
   1974   1.3      adam 	}
   1975   1.3      adam 	muxclient_request_id++;
   1976   1.1  christos 
   1977  1.15  christos #ifdef __OpenBSD__
   1978  1.15  christos 	if (pledge("stdio proc tty", NULL) == -1)
   1979  1.28  christos 		fatal_f("pledge(): %s", strerror(errno));
   1980  1.15  christos #endif
   1981  1.15  christos 
   1982  1.25  christos 	ssh_signal(SIGHUP, control_client_sighandler);
   1983  1.25  christos 	ssh_signal(SIGINT, control_client_sighandler);
   1984  1.25  christos 	ssh_signal(SIGTERM, control_client_sighandler);
   1985  1.25  christos 	ssh_signal(SIGWINCH, control_client_sigrelay);
   1986   1.1  christos 
   1987  1.34  christos 	if (options.fork_after_authentication)
   1988  1.34  christos 		daemon(1, 1);
   1989  1.34  christos 	else {
   1990  1.34  christos 		rawmode = tty_flag;
   1991  1.34  christos 		if (tty_flag) {
   1992  1.34  christos 			enter_raw_mode(
   1993  1.34  christos 			    options.request_tty == REQUEST_TTY_FORCE);
   1994  1.34  christos 		}
   1995  1.34  christos 	}
   1996   1.1  christos 
   1997   1.1  christos 	/*
   1998   1.1  christos 	 * Stick around until the controlee closes the client_fd.
   1999   1.3      adam 	 * Before it does, it is expected to write an exit message.
   2000   1.3      adam 	 * This process must read the value and wait for the closure of
   2001   1.3      adam 	 * the client_fd; if this one closes early, the multiplex master will
   2002   1.3      adam 	 * terminate early too (possibly losing data).
   2003   1.1  christos 	 */
   2004   1.3      adam 	for (exitval = 255, exitval_seen = 0;;) {
   2005  1.21  christos 		sshbuf_reset(m);
   2006  1.21  christos 		if (mux_client_read_packet(fd, m) != 0)
   2007   1.1  christos 			break;
   2008  1.21  christos 		if ((r = sshbuf_get_u32(m, &type)) != 0)
   2009  1.28  christos 			fatal_fr(r, "parse type");
   2010   1.5  christos 		switch (type) {
   2011   1.5  christos 		case MUX_S_TTY_ALLOC_FAIL:
   2012  1.21  christos 			if ((r = sshbuf_get_u32(m, &esid)) != 0)
   2013  1.28  christos 				fatal_fr(r, "parse session ID");
   2014  1.21  christos 			if (esid != sid)
   2015  1.28  christos 				fatal_f("tty alloc fail on unknown session: "
   2016  1.28  christos 				    "my id %u theirs %u", sid, esid);
   2017   1.5  christos 			leave_raw_mode(options.request_tty ==
   2018   1.5  christos 			    REQUEST_TTY_FORCE);
   2019   1.5  christos 			rawmode = 0;
   2020   1.5  christos 			continue;
   2021   1.5  christos 		case MUX_S_EXIT_MESSAGE:
   2022  1.21  christos 			if ((r = sshbuf_get_u32(m, &esid)) != 0)
   2023  1.28  christos 				fatal_fr(r, "parse session ID");
   2024  1.21  christos 			if (esid != sid)
   2025  1.28  christos 				fatal_f("exit on unknown session: "
   2026  1.28  christos 				    "my id %u theirs %u", sid, esid);
   2027   1.5  christos 			if (exitval_seen)
   2028  1.28  christos 				fatal_f("exitval sent twice");
   2029  1.21  christos 			if ((r = sshbuf_get_u32(m, &exitval)) != 0)
   2030  1.28  christos 				fatal_fr(r, "parse exitval");
   2031   1.5  christos 			exitval_seen = 1;
   2032   1.5  christos 			continue;
   2033   1.5  christos 		default:
   2034  1.21  christos 			if ((r = sshbuf_get_cstring(m, &e, NULL)) != 0)
   2035  1.28  christos 				fatal_fr(r, "parse error message");
   2036  1.28  christos 			fatal_f("master returned error: %s", e);
   2037   1.1  christos 		}
   2038   1.1  christos 	}
   2039   1.1  christos 
   2040   1.3      adam 	close(fd);
   2041   1.5  christos 	if (rawmode)
   2042   1.5  christos 		leave_raw_mode(options.request_tty == REQUEST_TTY_FORCE);
   2043   1.3      adam 
   2044   1.1  christos 	if (muxclient_terminate) {
   2045  1.19  christos 		debug2("Exiting on signal: %s", strsignal(muxclient_terminate));
   2046   1.3      adam 		exitval = 255;
   2047   1.3      adam 	} else if (!exitval_seen) {
   2048   1.1  christos 		debug2("Control master terminated unexpectedly");
   2049   1.3      adam 		exitval = 255;
   2050   1.1  christos 	} else
   2051   1.3      adam 		debug2("Received exit status from master %d", exitval);
   2052   1.1  christos 
   2053  1.31  christos 	if (tty_flag && options.log_level >= SYSLOG_LEVEL_INFO)
   2054   1.1  christos 		fprintf(stderr, "Shared connection to %s closed.\r\n", host);
   2055   1.1  christos 
   2056   1.3      adam 	exit(exitval);
   2057   1.3      adam }
   2058   1.3      adam 
   2059   1.3      adam static int
   2060  1.17  christos mux_client_proxy(int fd)
   2061  1.17  christos {
   2062  1.21  christos 	struct sshbuf *m;
   2063  1.17  christos 	char *e;
   2064  1.17  christos 	u_int type, rid;
   2065  1.21  christos 	int r;
   2066  1.17  christos 
   2067  1.21  christos 	if ((m = sshbuf_new()) == NULL)
   2068  1.28  christos 		fatal_f("sshbuf_new");
   2069  1.21  christos 	if ((r = sshbuf_put_u32(m, MUX_C_PROXY)) != 0 ||
   2070  1.21  christos 	    (r = sshbuf_put_u32(m, muxclient_request_id)) != 0)
   2071  1.28  christos 		fatal_fr(r, "request");
   2072  1.21  christos 	if (mux_client_write_packet(fd, m) != 0)
   2073  1.28  christos 		fatal_f("write packet: %s", strerror(errno));
   2074  1.17  christos 
   2075  1.21  christos 	sshbuf_reset(m);
   2076  1.17  christos 
   2077  1.17  christos 	/* Read their reply */
   2078  1.21  christos 	if (mux_client_read_packet(fd, m) != 0) {
   2079  1.21  christos 		sshbuf_free(m);
   2080  1.17  christos 		return 0;
   2081  1.17  christos 	}
   2082  1.21  christos 	if ((r = sshbuf_get_u32(m, &type)) != 0 ||
   2083  1.21  christos 	    (r = sshbuf_get_u32(m, &rid)) != 0)
   2084  1.28  christos 		fatal_fr(r, "parse");
   2085  1.21  christos 	if (rid != muxclient_request_id)
   2086  1.28  christos 		fatal_f("out of sequence reply: my id %u theirs %u",
   2087  1.28  christos 		    muxclient_request_id, rid);
   2088  1.17  christos 	if (type != MUX_S_PROXY) {
   2089  1.21  christos 		if ((r = sshbuf_get_cstring(m, &e, NULL)) != 0)
   2090  1.28  christos 			fatal_fr(r, "parse error message");
   2091  1.28  christos 		fatal_f("master returned error: %s", e);
   2092  1.17  christos 	}
   2093  1.21  christos 	sshbuf_free(m);
   2094  1.17  christos 
   2095  1.28  christos 	debug3_f("done");
   2096  1.17  christos 	muxclient_request_id++;
   2097  1.17  christos 	return 0;
   2098  1.17  christos }
   2099  1.17  christos 
   2100  1.17  christos static int
   2101   1.3      adam mux_client_request_stdio_fwd(int fd)
   2102   1.3      adam {
   2103  1.21  christos 	struct sshbuf *m;
   2104   1.3      adam 	char *e;
   2105   1.3      adam 	u_int type, rid, sid;
   2106  1.28  christos 	int r;
   2107   1.3      adam 
   2108  1.28  christos 	debug3_f("entering");
   2109   1.3      adam 
   2110   1.3      adam 	if ((muxserver_pid = mux_client_request_alive(fd)) == 0) {
   2111  1.28  christos 		error_f("master alive request failed");
   2112   1.3      adam 		return -1;
   2113   1.3      adam 	}
   2114   1.3      adam 
   2115  1.25  christos 	ssh_signal(SIGPIPE, SIG_IGN);
   2116   1.3      adam 
   2117  1.30  christos 	if (options.stdin_null && stdfd_devnull(1, 0, 0) == -1)
   2118  1.28  christos 		fatal_f("stdfd_devnull failed");
   2119   1.3      adam 
   2120  1.21  christos 	if ((m = sshbuf_new()) == NULL)
   2121  1.28  christos 		fatal_f("sshbuf_new");
   2122  1.21  christos 	if ((r = sshbuf_put_u32(m, MUX_C_NEW_STDIO_FWD)) != 0 ||
   2123  1.21  christos 	    (r = sshbuf_put_u32(m, muxclient_request_id)) != 0 ||
   2124  1.21  christos 	    (r = sshbuf_put_string(m, NULL, 0)) != 0 || /* reserved */
   2125  1.21  christos 	    (r = sshbuf_put_cstring(m, options.stdio_forward_host)) != 0 ||
   2126  1.21  christos 	    (r = sshbuf_put_u32(m, options.stdio_forward_port)) != 0)
   2127  1.28  christos 		fatal_fr(r, "request");
   2128   1.3      adam 
   2129  1.21  christos 	if (mux_client_write_packet(fd, m) != 0)
   2130  1.28  christos 		fatal_f("write packet: %s", strerror(errno));
   2131   1.3      adam 
   2132   1.3      adam 	/* Send the stdio file descriptors */
   2133   1.3      adam 	if (mm_send_fd(fd, STDIN_FILENO) == -1 ||
   2134   1.3      adam 	    mm_send_fd(fd, STDOUT_FILENO) == -1)
   2135  1.28  christos 		fatal_f("send fds failed");
   2136   1.3      adam 
   2137  1.15  christos #ifdef __OpenBSD__
   2138  1.15  christos 	if (pledge("stdio proc tty", NULL) == -1)
   2139  1.28  christos 		fatal_f("pledge(): %s", strerror(errno));
   2140  1.15  christos #endif
   2141  1.15  christos 
   2142  1.28  christos 	debug3_f("stdio forward request sent");
   2143   1.3      adam 
   2144   1.3      adam 	/* Read their reply */
   2145  1.21  christos 	sshbuf_reset(m);
   2146   1.3      adam 
   2147  1.21  christos 	if (mux_client_read_packet(fd, m) != 0) {
   2148  1.28  christos 		error_f("read from master failed: %s", strerror(errno));
   2149  1.21  christos 		sshbuf_free(m);
   2150   1.3      adam 		return -1;
   2151   1.3      adam 	}
   2152   1.3      adam 
   2153  1.21  christos 	if ((r = sshbuf_get_u32(m, &type)) != 0 ||
   2154  1.21  christos 	    (r = sshbuf_get_u32(m, &rid)) != 0)
   2155  1.28  christos 		fatal_fr(r, "parse");
   2156  1.21  christos 	if (rid != muxclient_request_id)
   2157  1.28  christos 		fatal_f("out of sequence reply: my id %u theirs %u",
   2158  1.28  christos 		    muxclient_request_id, rid);
   2159   1.3      adam 	switch (type) {
   2160   1.3      adam 	case MUX_S_SESSION_OPENED:
   2161  1.21  christos 		if ((r = sshbuf_get_u32(m, &sid)) != 0)
   2162  1.28  christos 			fatal_fr(r, "parse session ID");
   2163  1.28  christos 		debug_f("master session id: %u", sid);
   2164   1.3      adam 		break;
   2165   1.3      adam 	case MUX_S_PERMISSION_DENIED:
   2166  1.21  christos 		if ((r = sshbuf_get_cstring(m, &e, NULL)) != 0)
   2167  1.28  christos 			fatal_fr(r, "parse error message");
   2168  1.21  christos 		sshbuf_free(m);
   2169   1.4  christos 		fatal("Master refused stdio forwarding request: %s", e);
   2170   1.3      adam 	case MUX_S_FAILURE:
   2171  1.21  christos 		if ((r = sshbuf_get_cstring(m, &e, NULL)) != 0)
   2172  1.28  christos 			fatal_fr(r, "parse error message");
   2173  1.21  christos 		sshbuf_free(m);
   2174  1.10  christos 		fatal("Stdio forwarding request failed: %s", e);
   2175   1.3      adam 	default:
   2176  1.21  christos 		sshbuf_free(m);
   2177  1.28  christos 		error_f("unexpected response from master 0x%08x", type);
   2178   1.3      adam 		return -1;
   2179   1.3      adam 	}
   2180   1.3      adam 	muxclient_request_id++;
   2181   1.3      adam 
   2182  1.25  christos 	ssh_signal(SIGHUP, control_client_sighandler);
   2183  1.25  christos 	ssh_signal(SIGINT, control_client_sighandler);
   2184  1.25  christos 	ssh_signal(SIGTERM, control_client_sighandler);
   2185  1.25  christos 	ssh_signal(SIGWINCH, control_client_sigrelay);
   2186   1.3      adam 
   2187   1.3      adam 	/*
   2188   1.3      adam 	 * Stick around until the controlee closes the client_fd.
   2189   1.3      adam 	 */
   2190  1.21  christos 	sshbuf_reset(m);
   2191  1.21  christos 	if (mux_client_read_packet(fd, m) != 0) {
   2192   1.3      adam 		if (errno == EPIPE ||
   2193   1.3      adam 		    (errno == EINTR && muxclient_terminate != 0))
   2194   1.3      adam 			return 0;
   2195  1.28  christos 		fatal_f("mux_client_read_packet: %s", strerror(errno));
   2196   1.3      adam 	}
   2197  1.28  christos 	fatal_f("master returned unexpected message %u", type);
   2198   1.3      adam }
   2199   1.3      adam 
   2200   1.5  christos static void
   2201   1.5  christos mux_client_request_stop_listening(int fd)
   2202   1.5  christos {
   2203  1.21  christos 	struct sshbuf *m;
   2204   1.5  christos 	char *e;
   2205   1.5  christos 	u_int type, rid;
   2206  1.21  christos 	int r;
   2207   1.5  christos 
   2208  1.28  christos 	debug3_f("entering");
   2209   1.5  christos 
   2210  1.21  christos 	if ((m = sshbuf_new()) == NULL)
   2211  1.28  christos 		fatal_f("sshbuf_new");
   2212  1.21  christos 	if ((r = sshbuf_put_u32(m, MUX_C_STOP_LISTENING)) != 0 ||
   2213  1.21  christos 	    (r = sshbuf_put_u32(m, muxclient_request_id)) != 0)
   2214  1.28  christos 		fatal_fr(r, "request");
   2215   1.5  christos 
   2216  1.21  christos 	if (mux_client_write_packet(fd, m) != 0)
   2217  1.28  christos 		fatal_f("write packet: %s", strerror(errno));
   2218   1.5  christos 
   2219  1.21  christos 	sshbuf_reset(m);
   2220   1.5  christos 
   2221   1.5  christos 	/* Read their reply */
   2222  1.21  christos 	if (mux_client_read_packet(fd, m) != 0)
   2223  1.28  christos 		fatal_f("read from master failed: %s", strerror(errno));
   2224   1.5  christos 
   2225  1.21  christos 	if ((r = sshbuf_get_u32(m, &type)) != 0 ||
   2226  1.21  christos 	    (r = sshbuf_get_u32(m, &rid)) != 0)
   2227  1.28  christos 		fatal_fr(r, "parse");
   2228  1.21  christos 	if (rid != muxclient_request_id)
   2229  1.28  christos 		fatal_f("out of sequence reply: my id %u theirs %u",
   2230  1.28  christos 		    muxclient_request_id, rid);
   2231  1.21  christos 
   2232   1.5  christos 	switch (type) {
   2233   1.5  christos 	case MUX_S_OK:
   2234   1.5  christos 		break;
   2235   1.5  christos 	case MUX_S_PERMISSION_DENIED:
   2236  1.21  christos 		if ((r = sshbuf_get_cstring(m, &e, NULL)) != 0)
   2237  1.28  christos 			fatal_fr(r, "parse error message");
   2238   1.5  christos 		fatal("Master refused stop listening request: %s", e);
   2239   1.5  christos 	case MUX_S_FAILURE:
   2240  1.21  christos 		if ((r = sshbuf_get_cstring(m, &e, NULL)) != 0)
   2241  1.28  christos 			fatal_fr(r, "parse error message");
   2242  1.28  christos 		fatal_f("stop listening request failed: %s", e);
   2243   1.5  christos 	default:
   2244  1.28  christos 		fatal_f("unexpected response from master 0x%08x", type);
   2245   1.5  christos 	}
   2246  1.21  christos 	sshbuf_free(m);
   2247   1.5  christos 	muxclient_request_id++;
   2248   1.5  christos }
   2249   1.5  christos 
   2250   1.3      adam /* Multiplex client main loop. */
   2251  1.17  christos int
   2252   1.3      adam muxclient(const char *path)
   2253   1.3      adam {
   2254   1.3      adam 	struct sockaddr_un addr;
   2255  1.34  christos 	int sock, timeout = options.connection_timeout, timeout_ms = -1;
   2256   1.3      adam 	u_int pid;
   2257   1.3      adam 
   2258   1.3      adam 	if (muxclient_command == 0) {
   2259  1.16  christos 		if (options.stdio_forward_host != NULL)
   2260   1.3      adam 			muxclient_command = SSHMUX_COMMAND_STDIO_FWD;
   2261   1.3      adam 		else
   2262   1.3      adam 			muxclient_command = SSHMUX_COMMAND_OPEN;
   2263   1.3      adam 	}
   2264   1.3      adam 
   2265   1.3      adam 	switch (options.control_master) {
   2266   1.3      adam 	case SSHCTL_MASTER_AUTO:
   2267   1.3      adam 	case SSHCTL_MASTER_AUTO_ASK:
   2268  1.35  christos 		debug("auto-mux: Trying existing master at '%s'", path);
   2269   1.3      adam 		/* FALLTHROUGH */
   2270   1.3      adam 	case SSHCTL_MASTER_NO:
   2271   1.3      adam 		break;
   2272   1.3      adam 	default:
   2273  1.17  christos 		return -1;
   2274   1.3      adam 	}
   2275   1.3      adam 
   2276   1.3      adam 	memset(&addr, '\0', sizeof(addr));
   2277   1.3      adam 	addr.sun_family = AF_UNIX;
   2278   1.3      adam 
   2279   1.3      adam 	if (strlcpy(addr.sun_path, path,
   2280   1.3      adam 	    sizeof(addr.sun_path)) >= sizeof(addr.sun_path))
   2281  1.17  christos 		fatal("ControlPath too long ('%s' >= %u bytes)", path,
   2282  1.29  christos 		    (unsigned int)sizeof(addr.sun_path));
   2283   1.3      adam 
   2284  1.24  christos 	if ((sock = socket(PF_UNIX, SOCK_STREAM, 0)) == -1)
   2285  1.28  christos 		fatal_f("socket(): %s", strerror(errno));
   2286   1.3      adam 
   2287  1.18  christos 	if (connect(sock, (struct sockaddr *)&addr, sizeof(addr)) == -1) {
   2288   1.3      adam 		switch (muxclient_command) {
   2289   1.3      adam 		case SSHMUX_COMMAND_OPEN:
   2290   1.3      adam 		case SSHMUX_COMMAND_STDIO_FWD:
   2291   1.3      adam 			break;
   2292   1.3      adam 		default:
   2293   1.3      adam 			fatal("Control socket connect(%.100s): %s", path,
   2294   1.3      adam 			    strerror(errno));
   2295   1.3      adam 		}
   2296   1.4  christos 		if (errno == ECONNREFUSED &&
   2297   1.4  christos 		    options.control_master != SSHCTL_MASTER_NO) {
   2298   1.4  christos 			debug("Stale control socket %.100s, unlinking", path);
   2299   1.4  christos 			unlink(path);
   2300   1.4  christos 		} else if (errno == ENOENT) {
   2301   1.3      adam 			debug("Control socket \"%.100s\" does not exist", path);
   2302   1.4  christos 		} else {
   2303   1.3      adam 			error("Control socket connect(%.100s): %s", path,
   2304   1.3      adam 			    strerror(errno));
   2305   1.3      adam 		}
   2306   1.3      adam 		close(sock);
   2307  1.17  christos 		return -1;
   2308   1.3      adam 	}
   2309   1.3      adam 	set_nonblock(sock);
   2310   1.3      adam 
   2311  1.34  christos 	/* Timeout on initial connection only. */
   2312  1.34  christos 	if (timeout > 0 && timeout < INT_MAX / 1000)
   2313  1.34  christos 		timeout_ms = timeout * 1000;
   2314  1.34  christos 
   2315  1.34  christos 	if (mux_client_hello_exchange(sock, timeout_ms) != 0) {
   2316  1.28  christos 		error_f("master hello exchange failed");
   2317   1.3      adam 		close(sock);
   2318  1.17  christos 		return -1;
   2319   1.3      adam 	}
   2320   1.3      adam 
   2321   1.3      adam 	switch (muxclient_command) {
   2322   1.3      adam 	case SSHMUX_COMMAND_ALIVE_CHECK:
   2323   1.3      adam 		if ((pid = mux_client_request_alive(sock)) == 0)
   2324  1.28  christos 			fatal_f("master alive check failed");
   2325  1.15  christos 		fprintf(stderr, "Master running (pid=%u)\r\n", pid);
   2326   1.3      adam 		exit(0);
   2327   1.3      adam 	case SSHMUX_COMMAND_TERMINATE:
   2328   1.3      adam 		mux_client_request_terminate(sock);
   2329  1.17  christos 		if (options.log_level != SYSLOG_LEVEL_QUIET)
   2330  1.17  christos 			fprintf(stderr, "Exit request sent.\r\n");
   2331   1.3      adam 		exit(0);
   2332   1.3      adam 	case SSHMUX_COMMAND_FORWARD:
   2333   1.6  christos 		if (mux_client_forwards(sock, 0) != 0)
   2334  1.28  christos 			fatal_f("master forward request failed");
   2335   1.3      adam 		exit(0);
   2336   1.3      adam 	case SSHMUX_COMMAND_OPEN:
   2337   1.6  christos 		if (mux_client_forwards(sock, 0) != 0) {
   2338  1.28  christos 			error_f("master forward request failed");
   2339  1.17  christos 			return -1;
   2340   1.3      adam 		}
   2341   1.3      adam 		mux_client_request_session(sock);
   2342  1.17  christos 		return -1;
   2343   1.3      adam 	case SSHMUX_COMMAND_STDIO_FWD:
   2344   1.3      adam 		mux_client_request_stdio_fwd(sock);
   2345   1.3      adam 		exit(0);
   2346   1.5  christos 	case SSHMUX_COMMAND_STOP:
   2347   1.5  christos 		mux_client_request_stop_listening(sock);
   2348  1.17  christos 		if (options.log_level != SYSLOG_LEVEL_QUIET)
   2349  1.17  christos 			fprintf(stderr, "Stop listening request sent.\r\n");
   2350   1.5  christos 		exit(0);
   2351   1.6  christos 	case SSHMUX_COMMAND_CANCEL_FWD:
   2352   1.6  christos 		if (mux_client_forwards(sock, 1) != 0)
   2353  1.28  christos 			error_f("master cancel forward request failed");
   2354   1.6  christos 		exit(0);
   2355  1.17  christos 	case SSHMUX_COMMAND_PROXY:
   2356  1.17  christos 		mux_client_proxy(sock);
   2357  1.17  christos 		return (sock);
   2358   1.3      adam 	default:
   2359   1.3      adam 		fatal("unrecognised muxclient_command %d", muxclient_command);
   2360   1.3      adam 	}
   2361   1.1  christos }
   2362