]> andersk Git - gssapi-openssh.git/blob - openssh/clientloop.c
afd68064fab9e160a78bfd5f210d1e0134537bfc
[gssapi-openssh.git] / openssh / clientloop.c
1 /* $OpenBSD: clientloop.c,v 1.188 2008/02/22 20:44:02 dtucker Exp $ */
2 /*
3  * Author: Tatu Ylonen <ylo@cs.hut.fi>
4  * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
5  *                    All rights reserved
6  * The main loop for the interactive session (client side).
7  *
8  * As far as I am concerned, the code I have written for this software
9  * can be used freely for any purpose.  Any derived versions of this
10  * software must be clearly marked as such, and if the derived work is
11  * incompatible with the protocol description in the RFC file, it must be
12  * called by a name other than "ssh" or "Secure Shell".
13  *
14  *
15  * Copyright (c) 1999 Theo de Raadt.  All rights reserved.
16  *
17  * Redistribution and use in source and binary forms, with or without
18  * modification, are permitted provided that the following conditions
19  * are met:
20  * 1. Redistributions of source code must retain the above copyright
21  *    notice, this list of conditions and the following disclaimer.
22  * 2. Redistributions in binary form must reproduce the above copyright
23  *    notice, this list of conditions and the following disclaimer in the
24  *    documentation and/or other materials provided with the distribution.
25  *
26  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
27  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
28  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
29  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
30  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
31  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
32  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
33  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
34  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
35  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
36  *
37  *
38  * SSH2 support added by Markus Friedl.
39  * Copyright (c) 1999, 2000, 2001 Markus Friedl.  All rights reserved.
40  *
41  * Redistribution and use in source and binary forms, with or without
42  * modification, are permitted provided that the following conditions
43  * are met:
44  * 1. Redistributions of source code must retain the above copyright
45  *    notice, this list of conditions and the following disclaimer.
46  * 2. Redistributions in binary form must reproduce the above copyright
47  *    notice, this list of conditions and the following disclaimer in the
48  *    documentation and/or other materials provided with the distribution.
49  *
50  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
51  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
52  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
53  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
54  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
55  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
56  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
57  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
58  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
59  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
60  */
61
62 #include "includes.h"
63
64 #include <sys/types.h>
65 #include <sys/ioctl.h>
66 #include <sys/param.h>
67 #ifdef HAVE_SYS_STAT_H
68 # include <sys/stat.h>
69 #endif
70 #ifdef HAVE_SYS_TIME_H
71 # include <sys/time.h>
72 #endif
73 #include <sys/socket.h>
74
75 #include <ctype.h>
76 #include <errno.h>
77 #ifdef HAVE_PATHS_H
78 #include <paths.h>
79 #endif
80 #include <signal.h>
81 #include <stdarg.h>
82 #include <stdio.h>
83 #include <stdlib.h>
84 #include <string.h>
85 #include <termios.h>
86 #include <pwd.h>
87 #include <unistd.h>
88
89 #include "xmalloc.h"
90 #include "ssh.h"
91 #include "ssh1.h"
92 #include "ssh2.h"
93 #include "packet.h"
94 #include "buffer.h"
95 #include "compat.h"
96 #include "channels.h"
97 #include "dispatch.h"
98 #include "key.h"
99 #include "cipher.h"
100 #include "kex.h"
101 #include "log.h"
102 #include "readconf.h"
103 #include "clientloop.h"
104 #include "sshconnect.h"
105 #include "authfd.h"
106 #include "atomicio.h"
107 #include "sshpty.h"
108 #include "misc.h"
109 #include "monitor_fdpass.h"
110 #include "match.h"
111 #include "msg.h"
112
113 /* import options */
114 extern Options options;
115
116 /* Flag indicating that stdin should be redirected from /dev/null. */
117 extern int stdin_null_flag;
118
119 /* Flag indicating that no shell has been requested */
120 extern int no_shell_flag;
121
122 /* Control socket */
123 extern int control_fd;
124
125 /*
126  * Name of the host we are connecting to.  This is the name given on the
127  * command line, or the HostName specified for the user-supplied name in a
128  * configuration file.
129  */
130 extern char *host;
131
132 /*
133  * Flag to indicate that we have received a window change signal which has
134  * not yet been processed.  This will cause a message indicating the new
135  * window size to be sent to the server a little later.  This is volatile
136  * because this is updated in a signal handler.
137  */
138 static volatile sig_atomic_t received_window_change_signal = 0;
139 static volatile sig_atomic_t received_signal = 0;
140
141 /* Flag indicating whether the user's terminal is in non-blocking mode. */
142 static int in_non_blocking_mode = 0;
143
144 /* Common data for the client loop code. */
145 static volatile sig_atomic_t quit_pending; /* Set non-zero to quit the loop. */
146 static int escape_char;         /* Escape character. */
147 static int escape_pending;      /* Last character was the escape character */
148 static int last_was_cr;         /* Last character was a newline. */
149 static int exit_status;         /* Used to store the exit status of the command. */
150 static int stdin_eof;           /* EOF has been encountered on standard error. */
151 static Buffer stdin_buffer;     /* Buffer for stdin data. */
152 static Buffer stdout_buffer;    /* Buffer for stdout data. */
153 static Buffer stderr_buffer;    /* Buffer for stderr data. */
154 static u_long stdin_bytes, stdout_bytes, stderr_bytes;
155 static u_int buffer_high;/* Soft max buffer size. */
156 static int connection_in;       /* Connection to server (input). */
157 static int connection_out;      /* Connection to server (output). */
158 static int need_rekeying;       /* Set to non-zero if rekeying is requested. */
159 static int session_closed = 0;  /* In SSH2: login session closed. */
160
161 static void client_init_dispatch(void);
162 int     session_ident = -1;
163
164 struct confirm_ctx {
165         int want_tty;
166         int want_subsys;
167         int want_x_fwd;
168         int want_agent_fwd;
169         Buffer cmd;
170         char *term;
171         struct termios tio;
172         char **env;
173 };
174
175 /*XXX*/
176 extern Kex *xxx_kex;
177
178 void ssh_process_session2_setup(int, int, int, Buffer *);
179
180 /* Restores stdin to blocking mode. */
181
182 static void
183 leave_non_blocking(void)
184 {
185         if (in_non_blocking_mode) {
186                 unset_nonblock(fileno(stdin));
187                 in_non_blocking_mode = 0;
188         }
189 }
190
191 /* Puts stdin terminal in non-blocking mode. */
192
193 static void
194 enter_non_blocking(void)
195 {
196         in_non_blocking_mode = 1;
197         set_nonblock(fileno(stdin));
198 }
199
200 /*
201  * Signal handler for the window change signal (SIGWINCH).  This just sets a
202  * flag indicating that the window has changed.
203  */
204 /*ARGSUSED */
205 static void
206 window_change_handler(int sig)
207 {
208         received_window_change_signal = 1;
209         signal(SIGWINCH, window_change_handler);
210 }
211
212 /*
213  * Signal handler for signals that cause the program to terminate.  These
214  * signals must be trapped to restore terminal modes.
215  */
216 /*ARGSUSED */
217 static void
218 signal_handler(int sig)
219 {
220         received_signal = sig;
221         quit_pending = 1;
222 }
223
224 /*
225  * Returns current time in seconds from Jan 1, 1970 with the maximum
226  * available resolution.
227  */
228
229 static double
230 get_current_time(void)
231 {
232         struct timeval tv;
233         gettimeofday(&tv, NULL);
234         return (double) tv.tv_sec + (double) tv.tv_usec / 1000000.0;
235 }
236
237 #define SSH_X11_PROTO "MIT-MAGIC-COOKIE-1"
238 void
239 client_x11_get_proto(const char *display, const char *xauth_path,
240     u_int trusted, char **_proto, char **_data)
241 {
242         char cmd[1024];
243         char line[512];
244         char xdisplay[512];
245         static char proto[512], data[512];
246         FILE *f;
247         int got_data = 0, generated = 0, do_unlink = 0, i;
248         char *xauthdir, *xauthfile;
249         struct stat st;
250
251         xauthdir = xauthfile = NULL;
252         *_proto = proto;
253         *_data = data;
254         proto[0] = data[0] = '\0';
255
256         if (xauth_path == NULL ||(stat(xauth_path, &st) == -1)) {
257                 debug("No xauth program.");
258         } else {
259                 if (display == NULL) {
260                         debug("x11_get_proto: DISPLAY not set");
261                         return;
262                 }
263                 /*
264                  * Handle FamilyLocal case where $DISPLAY does
265                  * not match an authorization entry.  For this we
266                  * just try "xauth list unix:displaynum.screennum".
267                  * XXX: "localhost" match to determine FamilyLocal
268                  *      is not perfect.
269                  */
270                 if (strncmp(display, "localhost:", 10) == 0) {
271                         snprintf(xdisplay, sizeof(xdisplay), "unix:%s",
272                             display + 10);
273                         display = xdisplay;
274                 }
275                 if (trusted == 0) {
276                         xauthdir = xmalloc(MAXPATHLEN);
277                         xauthfile = xmalloc(MAXPATHLEN);
278                         strlcpy(xauthdir, "/tmp/ssh-XXXXXXXXXX", MAXPATHLEN);
279                         if (mkdtemp(xauthdir) != NULL) {
280                                 do_unlink = 1;
281                                 snprintf(xauthfile, MAXPATHLEN, "%s/xauthfile",
282                                     xauthdir);
283                                 snprintf(cmd, sizeof(cmd),
284                                     "%s -f %s generate %s " SSH_X11_PROTO
285                                     " untrusted timeout 1200 2>" _PATH_DEVNULL,
286                                     xauth_path, xauthfile, display);
287                                 debug2("x11_get_proto: %s", cmd);
288                                 if (system(cmd) == 0)
289                                         generated = 1;
290                         }
291                 }
292
293                 /*
294                  * When in untrusted mode, we read the cookie only if it was
295                  * successfully generated as an untrusted one in the step
296                  * above.
297                  */
298                 if (trusted || generated) {
299                         snprintf(cmd, sizeof(cmd),
300                             "%s %s%s list %s 2>" _PATH_DEVNULL,
301                             xauth_path,
302                             generated ? "-f " : "" ,
303                             generated ? xauthfile : "",
304                             display);
305                         debug2("x11_get_proto: %s", cmd);
306                         f = popen(cmd, "r");
307                         if (f && fgets(line, sizeof(line), f) &&
308                             sscanf(line, "%*s %511s %511s", proto, data) == 2)
309                                 got_data = 1;
310                         if (f)
311                                 pclose(f);
312                 } else
313                         error("Warning: untrusted X11 forwarding setup failed: "
314                             "xauth key data not generated");
315         }
316
317         if (do_unlink) {
318                 unlink(xauthfile);
319                 rmdir(xauthdir);
320         }
321         if (xauthdir)
322                 xfree(xauthdir);
323         if (xauthfile)
324                 xfree(xauthfile);
325
326         /*
327          * If we didn't get authentication data, just make up some
328          * data.  The forwarding code will check the validity of the
329          * response anyway, and substitute this data.  The X11
330          * server, however, will ignore this fake data and use
331          * whatever authentication mechanisms it was using otherwise
332          * for the local connection.
333          */
334         if (!got_data) {
335                 u_int32_t rnd = 0;
336
337                 logit("Warning: No xauth data; "
338                     "using fake authentication data for X11 forwarding.");
339                 strlcpy(proto, SSH_X11_PROTO, sizeof proto);
340                 for (i = 0; i < 16; i++) {
341                         if (i % 4 == 0)
342                                 rnd = arc4random();
343                         snprintf(data + 2 * i, sizeof data - 2 * i, "%02x",
344                             rnd & 0xff);
345                         rnd >>= 8;
346                 }
347         }
348 }
349
350 /*
351  * This is called when the interactive is entered.  This checks if there is
352  * an EOF coming on stdin.  We must check this explicitly, as select() does
353  * not appear to wake up when redirecting from /dev/null.
354  */
355
356 static void
357 client_check_initial_eof_on_stdin(void)
358 {
359         int len;
360         char buf[1];
361
362         /*
363          * If standard input is to be "redirected from /dev/null", we simply
364          * mark that we have seen an EOF and send an EOF message to the
365          * server. Otherwise, we try to read a single character; it appears
366          * that for some files, such /dev/null, select() never wakes up for
367          * read for this descriptor, which means that we never get EOF.  This
368          * way we will get the EOF if stdin comes from /dev/null or similar.
369          */
370         if (stdin_null_flag) {
371                 /* Fake EOF on stdin. */
372                 debug("Sending eof.");
373                 stdin_eof = 1;
374                 packet_start(SSH_CMSG_EOF);
375                 packet_send();
376         } else {
377                 enter_non_blocking();
378
379                 /* Check for immediate EOF on stdin. */
380                 len = read(fileno(stdin), buf, 1);
381                 if (len == 0) {
382                         /* EOF.  Record that we have seen it and send EOF to server. */
383                         debug("Sending eof.");
384                         stdin_eof = 1;
385                         packet_start(SSH_CMSG_EOF);
386                         packet_send();
387                 } else if (len > 0) {
388                         /*
389                          * Got data.  We must store the data in the buffer,
390                          * and also process it as an escape character if
391                          * appropriate.
392                          */
393                         if ((u_char) buf[0] == escape_char)
394                                 escape_pending = 1;
395                         else
396                                 buffer_append(&stdin_buffer, buf, 1);
397                 }
398                 leave_non_blocking();
399         }
400 }
401
402
403 /*
404  * Make packets from buffered stdin data, and buffer them for sending to the
405  * connection.
406  */
407
408 static void
409 client_make_packets_from_stdin_data(void)
410 {
411         u_int len;
412
413         /* Send buffered stdin data to the server. */
414         while (buffer_len(&stdin_buffer) > 0 &&
415             packet_not_very_much_data_to_write()) {
416                 len = buffer_len(&stdin_buffer);
417                 /* Keep the packets at reasonable size. */
418                 if (len > packet_get_maxsize())
419                         len = packet_get_maxsize();
420                 packet_start(SSH_CMSG_STDIN_DATA);
421                 packet_put_string(buffer_ptr(&stdin_buffer), len);
422                 packet_send();
423                 buffer_consume(&stdin_buffer, len);
424                 stdin_bytes += len;
425                 /* If we have a pending EOF, send it now. */
426                 if (stdin_eof && buffer_len(&stdin_buffer) == 0) {
427                         packet_start(SSH_CMSG_EOF);
428                         packet_send();
429                 }
430         }
431 }
432
433 /*
434  * Checks if the client window has changed, and sends a packet about it to
435  * the server if so.  The actual change is detected elsewhere (by a software
436  * interrupt on Unix); this just checks the flag and sends a message if
437  * appropriate.
438  */
439
440 static void
441 client_check_window_change(void)
442 {
443         struct winsize ws;
444
445         if (! received_window_change_signal)
446                 return;
447         /** XXX race */
448         received_window_change_signal = 0;
449
450         debug2("client_check_window_change: changed");
451
452         if (compat20) {
453                 channel_send_window_changes();
454         } else {
455                 if (ioctl(fileno(stdin), TIOCGWINSZ, &ws) < 0)
456                         return;
457                 packet_start(SSH_CMSG_WINDOW_SIZE);
458                 packet_put_int((u_int)ws.ws_row);
459                 packet_put_int((u_int)ws.ws_col);
460                 packet_put_int((u_int)ws.ws_xpixel);
461                 packet_put_int((u_int)ws.ws_ypixel);
462                 packet_send();
463         }
464 }
465
466 static void
467 client_global_request_reply(int type, u_int32_t seq, void *ctxt)
468 {
469         keep_alive_timeouts = 0;
470         client_global_request_reply_fwd(type, seq, ctxt);
471 }
472
473 static void
474 server_alive_check(void)
475 {
476         if (++keep_alive_timeouts > options.server_alive_count_max) {
477                 logit("Timeout, server not responding.");
478                 cleanup_exit(255);
479         }
480         packet_start(SSH2_MSG_GLOBAL_REQUEST);
481         packet_put_cstring("keepalive@openssh.com");
482         packet_put_char(1);     /* boolean: want reply */
483         packet_send();
484 }
485
486 /*
487  * Waits until the client can do something (some data becomes available on
488  * one of the file descriptors).
489  */
490 static void
491 client_wait_until_can_do_something(fd_set **readsetp, fd_set **writesetp,
492     int *maxfdp, u_int *nallocp, int rekeying)
493 {
494         struct timeval tv, *tvp;
495         int ret;
496
497         /* Add any selections by the channel mechanism. */
498         channel_prepare_select(readsetp, writesetp, maxfdp, nallocp, rekeying);
499
500         if (!compat20) {
501                 /* Read from the connection, unless our buffers are full. */
502                 if (buffer_len(&stdout_buffer) < buffer_high &&
503                     buffer_len(&stderr_buffer) < buffer_high &&
504                     channel_not_very_much_buffered_data())
505                         FD_SET(connection_in, *readsetp);
506                 /*
507                  * Read from stdin, unless we have seen EOF or have very much
508                  * buffered data to send to the server.
509                  */
510                 if (!stdin_eof && packet_not_very_much_data_to_write())
511                         FD_SET(fileno(stdin), *readsetp);
512
513                 /* Select stdout/stderr if have data in buffer. */
514                 if (buffer_len(&stdout_buffer) > 0)
515                         FD_SET(fileno(stdout), *writesetp);
516                 if (buffer_len(&stderr_buffer) > 0)
517                         FD_SET(fileno(stderr), *writesetp);
518         } else {
519                 /* channel_prepare_select could have closed the last channel */
520                 if (session_closed && !channel_still_open() &&
521                     !packet_have_data_to_write()) {
522                         /* clear mask since we did not call select() */
523                         memset(*readsetp, 0, *nallocp);
524                         memset(*writesetp, 0, *nallocp);
525                         return;
526                 } else {
527                         FD_SET(connection_in, *readsetp);
528                 }
529         }
530
531         /* Select server connection if have data to write to the server. */
532         if (packet_have_data_to_write())
533                 FD_SET(connection_out, *writesetp);
534
535         if (control_fd != -1)
536                 FD_SET(control_fd, *readsetp);
537
538         /*
539          * Wait for something to happen.  This will suspend the process until
540          * some selected descriptor can be read, written, or has some other
541          * event pending.
542          */
543
544         if (options.server_alive_interval == 0 || !compat20)
545                 tvp = NULL;
546         else {
547                 tv.tv_sec = options.server_alive_interval;
548                 tv.tv_usec = 0;
549                 tvp = &tv;
550         }
551         ret = select((*maxfdp)+1, *readsetp, *writesetp, NULL, tvp);
552         if (ret < 0) {
553                 char buf[100];
554
555                 /*
556                  * We have to clear the select masks, because we return.
557                  * We have to return, because the mainloop checks for the flags
558                  * set by the signal handlers.
559                  */
560                 memset(*readsetp, 0, *nallocp);
561                 memset(*writesetp, 0, *nallocp);
562
563                 if (errno == EINTR)
564                         return;
565                 /* Note: we might still have data in the buffers. */
566                 snprintf(buf, sizeof buf, "select: %s\r\n", strerror(errno));
567                 buffer_append(&stderr_buffer, buf, strlen(buf));
568                 quit_pending = 1;
569         } else if (ret == 0)
570                 server_alive_check();
571 }
572
573 static void
574 client_suspend_self(Buffer *bin, Buffer *bout, Buffer *berr)
575 {
576         /* Flush stdout and stderr buffers. */
577         if (buffer_len(bout) > 0)
578                 atomicio(vwrite, fileno(stdout), buffer_ptr(bout), buffer_len(bout));
579         if (buffer_len(berr) > 0)
580                 atomicio(vwrite, fileno(stderr), buffer_ptr(berr), buffer_len(berr));
581
582         leave_raw_mode();
583
584         /*
585          * Free (and clear) the buffer to reduce the amount of data that gets
586          * written to swap.
587          */
588         buffer_free(bin);
589         buffer_free(bout);
590         buffer_free(berr);
591
592         /* Send the suspend signal to the program itself. */
593         kill(getpid(), SIGTSTP);
594
595         /* Reset window sizes in case they have changed */
596         received_window_change_signal = 1;
597
598         /* OK, we have been continued by the user. Reinitialize buffers. */
599         buffer_init(bin);
600         buffer_init(bout);
601         buffer_init(berr);
602
603         enter_raw_mode();
604 }
605
606 static void
607 client_process_net_input(fd_set *readset)
608 {
609         int len;
610         char buf[8192];
611
612         /*
613          * Read input from the server, and add any such data to the buffer of
614          * the packet subsystem.
615          */
616         if (FD_ISSET(connection_in, readset)) {
617                 /* Read as much as possible. */
618                 len = read(connection_in, buf, sizeof(buf));
619                 if (len == 0) {
620                         /* Received EOF.  The remote host has closed the connection. */
621                         snprintf(buf, sizeof buf, "Connection to %.300s closed by remote host.\r\n",
622                                  host);
623                         buffer_append(&stderr_buffer, buf, strlen(buf));
624                         quit_pending = 1;
625                         return;
626                 }
627                 /*
628                  * There is a kernel bug on Solaris that causes select to
629                  * sometimes wake up even though there is no data available.
630                  */
631                 if (len < 0 && (errno == EAGAIN || errno == EINTR))
632                         len = 0;
633
634                 if (len < 0) {
635                         /* An error has encountered.  Perhaps there is a network problem. */
636                         snprintf(buf, sizeof buf, "Read from remote host %.300s: %.100s\r\n",
637                                  host, strerror(errno));
638                         buffer_append(&stderr_buffer, buf, strlen(buf));
639                         quit_pending = 1;
640                         return;
641                 }
642                 packet_process_incoming(buf, len);
643         }
644 }
645
646 static void
647 client_subsystem_reply(int type, u_int32_t seq, void *ctxt)
648 {
649         int id;
650         Channel *c;
651
652         id = packet_get_int();
653         packet_check_eom();
654
655         if ((c = channel_lookup(id)) == NULL) {
656                 error("%s: no channel for id %d", __func__, id);
657                 return;
658         }
659
660         if (type == SSH2_MSG_CHANNEL_SUCCESS)
661                 debug2("Request suceeded on channel %d", id);
662         else if (type == SSH2_MSG_CHANNEL_FAILURE) {
663                 error("Request failed on channel %d", id);
664                 channel_free(c);
665         }
666 }
667
668 static void
669 client_extra_session2_setup(int id, void *arg)
670 {
671         struct confirm_ctx *cctx = arg;
672         const char *display;
673         Channel *c;
674         int i;
675
676         if (cctx == NULL)
677                 fatal("%s: cctx == NULL", __func__);
678         if ((c = channel_lookup(id)) == NULL)
679                 fatal("%s: no channel for id %d", __func__, id);
680
681         display = getenv("DISPLAY");
682         if (cctx->want_x_fwd && options.forward_x11 && display != NULL) {
683                 char *proto, *data;
684                 /* Get reasonable local authentication information. */
685                 client_x11_get_proto(display, options.xauth_location,
686                     options.forward_x11_trusted, &proto, &data);
687                 /* Request forwarding with authentication spoofing. */
688                 debug("Requesting X11 forwarding with authentication spoofing.");
689                 x11_request_forwarding_with_spoofing(id, display, proto, data);
690                 /* XXX wait for reply */
691         }
692
693         if (cctx->want_agent_fwd && options.forward_agent) {
694                 debug("Requesting authentication agent forwarding.");
695                 channel_request_start(id, "auth-agent-req@openssh.com", 0);
696                 packet_send();
697         }
698
699         client_session2_setup(id, cctx->want_tty, cctx->want_subsys,
700             cctx->term, &cctx->tio, c->rfd, &cctx->cmd, cctx->env,
701             client_subsystem_reply);
702
703         c->confirm_ctx = NULL;
704         buffer_free(&cctx->cmd);
705         xfree(cctx->term);
706         if (cctx->env != NULL) {
707                 for (i = 0; cctx->env[i] != NULL; i++)
708                         xfree(cctx->env[i]);
709                 xfree(cctx->env);
710         }
711         xfree(cctx);
712 }
713
714 static void
715 client_process_control(fd_set *readset)
716 {
717         Buffer m;
718         Channel *c;
719         int client_fd, new_fd[3], ver, allowed, window, packetmax;
720         socklen_t addrlen;
721         struct sockaddr_storage addr;
722         struct confirm_ctx *cctx;
723         char *cmd;
724         u_int i, j, len, env_len, command, flags;
725         uid_t euid;
726         gid_t egid;
727
728         /*
729          * Accept connection on control socket
730          */
731         if (control_fd == -1 || !FD_ISSET(control_fd, readset))
732                 return;
733
734         memset(&addr, 0, sizeof(addr));
735         addrlen = sizeof(addr);
736         if ((client_fd = accept(control_fd,
737             (struct sockaddr*)&addr, &addrlen)) == -1) {
738                 error("%s accept: %s", __func__, strerror(errno));
739                 return;
740         }
741
742         if (getpeereid(client_fd, &euid, &egid) < 0) {
743                 error("%s getpeereid failed: %s", __func__, strerror(errno));
744                 close(client_fd);
745                 return;
746         }
747         if ((euid != 0) && (getuid() != euid)) {
748                 error("control mode uid mismatch: peer euid %u != uid %u",
749                     (u_int) euid, (u_int) getuid());
750                 close(client_fd);
751                 return;
752         }
753
754         unset_nonblock(client_fd);
755
756         /* Read command */
757         buffer_init(&m);
758         if (ssh_msg_recv(client_fd, &m) == -1) {
759                 error("%s: client msg_recv failed", __func__);
760                 close(client_fd);
761                 buffer_free(&m);
762                 return;
763         }
764         if ((ver = buffer_get_char(&m)) != SSHMUX_VER) {
765                 error("%s: wrong client version %d", __func__, ver);
766                 buffer_free(&m);
767                 close(client_fd);
768                 return;
769         }
770
771         allowed = 1;
772         command = buffer_get_int(&m);
773         flags = buffer_get_int(&m);
774
775         buffer_clear(&m);
776
777         switch (command) {
778         case SSHMUX_COMMAND_OPEN:
779                 if (options.control_master == SSHCTL_MASTER_ASK ||
780                     options.control_master == SSHCTL_MASTER_AUTO_ASK)
781                         allowed = ask_permission("Allow shared connection "
782                             "to %s? ", host);
783                 /* continue below */
784                 break;
785         case SSHMUX_COMMAND_TERMINATE:
786                 if (options.control_master == SSHCTL_MASTER_ASK ||
787                     options.control_master == SSHCTL_MASTER_AUTO_ASK)
788                         allowed = ask_permission("Terminate shared connection "
789                             "to %s? ", host);
790                 if (allowed)
791                         quit_pending = 1;
792                 /* FALLTHROUGH */
793         case SSHMUX_COMMAND_ALIVE_CHECK:
794                 /* Reply for SSHMUX_COMMAND_TERMINATE and ALIVE_CHECK */
795                 buffer_clear(&m);
796                 buffer_put_int(&m, allowed);
797                 buffer_put_int(&m, getpid());
798                 if (ssh_msg_send(client_fd, SSHMUX_VER, &m) == -1) {
799                         error("%s: client msg_send failed", __func__);
800                         close(client_fd);
801                         buffer_free(&m);
802                         return;
803                 }
804                 buffer_free(&m);
805                 close(client_fd);
806                 return;
807         default:
808                 error("Unsupported command %d", command);
809                 buffer_free(&m);
810                 close(client_fd);
811                 return;
812         }
813
814         /* Reply for SSHMUX_COMMAND_OPEN */
815         buffer_clear(&m);
816         buffer_put_int(&m, allowed);
817         buffer_put_int(&m, getpid());
818         if (ssh_msg_send(client_fd, SSHMUX_VER, &m) == -1) {
819                 error("%s: client msg_send failed", __func__);
820                 close(client_fd);
821                 buffer_free(&m);
822                 return;
823         }
824
825         if (!allowed) {
826                 error("Refused control connection");
827                 close(client_fd);
828                 buffer_free(&m);
829                 return;
830         }
831
832         buffer_clear(&m);
833         if (ssh_msg_recv(client_fd, &m) == -1) {
834                 error("%s: client msg_recv failed", __func__);
835                 close(client_fd);
836                 buffer_free(&m);
837                 return;
838         }
839         if ((ver = buffer_get_char(&m)) != SSHMUX_VER) {
840                 error("%s: wrong client version %d", __func__, ver);
841                 buffer_free(&m);
842                 close(client_fd);
843                 return;
844         }
845
846         cctx = xcalloc(1, sizeof(*cctx));
847         cctx->want_tty = (flags & SSHMUX_FLAG_TTY) != 0;
848         cctx->want_subsys = (flags & SSHMUX_FLAG_SUBSYS) != 0;
849         cctx->want_x_fwd = (flags & SSHMUX_FLAG_X11_FWD) != 0;
850         cctx->want_agent_fwd = (flags & SSHMUX_FLAG_AGENT_FWD) != 0;
851         cctx->term = buffer_get_string(&m, &len);
852
853         cmd = buffer_get_string(&m, &len);
854         buffer_init(&cctx->cmd);
855         buffer_append(&cctx->cmd, cmd, strlen(cmd));
856
857         env_len = buffer_get_int(&m);
858         env_len = MIN(env_len, 4096);
859         debug3("%s: receiving %d env vars", __func__, env_len);
860         if (env_len != 0) {
861                 cctx->env = xcalloc(env_len + 1, sizeof(*cctx->env));
862                 for (i = 0; i < env_len; i++)
863                         cctx->env[i] = buffer_get_string(&m, &len);
864                 cctx->env[i] = NULL;
865         }
866
867         debug2("%s: accepted tty %d, subsys %d, cmd %s", __func__,
868             cctx->want_tty, cctx->want_subsys, cmd);
869         xfree(cmd);
870
871         /* Gather fds from client */
872         for(i = 0; i < 3; i++) {
873                 if ((new_fd[i] = mm_receive_fd(client_fd)) == -1) {
874                         error("%s: failed to receive fd %d from slave",
875                             __func__, i);
876                         for (j = 0; j < i; j++)
877                                 close(new_fd[j]);
878                         for (j = 0; j < env_len; j++)
879                                 xfree(cctx->env[j]);
880                         if (env_len > 0)
881                                 xfree(cctx->env);
882                         xfree(cctx->term);
883                         buffer_free(&cctx->cmd);
884                         close(client_fd);
885                         xfree(cctx);
886                         return;
887                 }
888         }
889
890         debug2("%s: got fds stdin %d, stdout %d, stderr %d", __func__,
891             new_fd[0], new_fd[1], new_fd[2]);
892
893         /* Try to pick up ttymodes from client before it goes raw */
894         if (cctx->want_tty && tcgetattr(new_fd[0], &cctx->tio) == -1)
895                 error("%s: tcgetattr: %s", __func__, strerror(errno));
896
897         /* This roundtrip is just for synchronisation of ttymodes */
898         buffer_clear(&m);
899         if (ssh_msg_send(client_fd, SSHMUX_VER, &m) == -1) {
900                 error("%s: client msg_send failed", __func__);
901                 close(client_fd);
902                 close(new_fd[0]);
903                 close(new_fd[1]);
904                 close(new_fd[2]);
905                 buffer_free(&m);
906                 xfree(cctx->term);
907                 if (env_len != 0) {
908                         for (i = 0; i < env_len; i++)
909                                 xfree(cctx->env[i]);
910                         xfree(cctx->env);
911                 }
912                 return;
913         }
914         buffer_free(&m);
915
916         /* enable nonblocking unless tty */
917         if (!isatty(new_fd[0]))
918                 set_nonblock(new_fd[0]);
919         if (!isatty(new_fd[1]))
920                 set_nonblock(new_fd[1]);
921         if (!isatty(new_fd[2]))
922                 set_nonblock(new_fd[2]);
923
924         set_nonblock(client_fd);
925
926         if (options.hpn_disabled) 
927           window = CHAN_SES_WINDOW_DEFAULT;
928         else
929           window = options.hpn_buffer_size;
930
931         packetmax = CHAN_SES_PACKET_DEFAULT;
932         if (cctx->want_tty) {
933                 window >>= 1;
934                 packetmax >>= 1;
935         }
936         
937         c = channel_new("session", SSH_CHANNEL_OPENING,
938             new_fd[0], new_fd[1], new_fd[2], window, packetmax,
939             CHAN_EXTENDED_WRITE, "client-session", /*nonblock*/0);
940
941         /* XXX */
942         c->ctl_fd = client_fd;
943
944         debug3("%s: channel_new: %d", __func__, c->self);
945
946         channel_send_open(c->self);
947         channel_register_confirm(c->self, client_extra_session2_setup, cctx);
948 }
949
950 static void
951 process_cmdline(void)
952 {
953         void (*handler)(int);
954         char *s, *cmd, *cancel_host;
955         int delete = 0;
956         int local = 0;
957         u_short cancel_port;
958         Forward fwd;
959
960         bzero(&fwd, sizeof(fwd));
961         fwd.listen_host = fwd.connect_host = NULL;
962
963         leave_raw_mode();
964         handler = signal(SIGINT, SIG_IGN);
965         cmd = s = read_passphrase("\r\nssh> ", RP_ECHO);
966         if (s == NULL)
967                 goto out;
968         while (isspace(*s))
969                 s++;
970         if (*s == '-')
971                 s++;    /* Skip cmdline '-', if any */
972         if (*s == '\0')
973                 goto out;
974
975         if (*s == 'h' || *s == 'H' || *s == '?') {
976                 logit("Commands:");
977                 logit("      -L[bind_address:]port:host:hostport    "
978                     "Request local forward");
979                 logit("      -R[bind_address:]port:host:hostport    "
980                     "Request remote forward");
981                 logit("      -KR[bind_address:]port                 "
982                     "Cancel remote forward");
983                 if (!options.permit_local_command)
984                         goto out;
985                 logit("      !args                                  "
986                     "Execute local command");
987                 goto out;
988         }
989
990         if (*s == '!' && options.permit_local_command) {
991                 s++;
992                 ssh_local_cmd(s);
993                 goto out;
994         }
995
996         if (*s == 'K') {
997                 delete = 1;
998                 s++;
999         }
1000         if (*s != 'L' && *s != 'R') {
1001                 logit("Invalid command.");
1002                 goto out;
1003         }
1004         if (*s == 'L')
1005                 local = 1;
1006         if (local && delete) {
1007                 logit("Not supported.");
1008                 goto out;
1009         }
1010         if ((!local || delete) && !compat20) {
1011                 logit("Not supported for SSH protocol version 1.");
1012                 goto out;
1013         }
1014
1015         while (isspace(*++s))
1016                 ;
1017
1018         if (delete) {
1019                 cancel_port = 0;
1020                 cancel_host = hpdelim(&s);      /* may be NULL */
1021                 if (s != NULL) {
1022                         cancel_port = a2port(s);
1023                         cancel_host = cleanhostname(cancel_host);
1024                 } else {
1025                         cancel_port = a2port(cancel_host);
1026                         cancel_host = NULL;
1027                 }
1028                 if (cancel_port == 0) {
1029                         logit("Bad forwarding close port");
1030                         goto out;
1031                 }
1032                 channel_request_rforward_cancel(cancel_host, cancel_port);
1033         } else {
1034                 if (!parse_forward(&fwd, s)) {
1035                         logit("Bad forwarding specification.");
1036                         goto out;
1037                 }
1038                 if (local) {
1039                         if (channel_setup_local_fwd_listener(fwd.listen_host,
1040                             fwd.listen_port, fwd.connect_host,
1041                             fwd.connect_port, options.gateway_ports, 
1042                             options.hpn_disabled, options.hpn_buffer_size) < 0) {
1043                                 logit("Port forwarding failed.");
1044                                 goto out;
1045                         }
1046                 } else {
1047                         if (channel_request_remote_forwarding(fwd.listen_host,
1048                             fwd.listen_port, fwd.connect_host,
1049                             fwd.connect_port) < 0) {
1050                                 logit("Port forwarding failed.");
1051                                 goto out;
1052                         }
1053                 }
1054
1055                 logit("Forwarding port.");
1056         }
1057
1058 out:
1059         signal(SIGINT, handler);
1060         enter_raw_mode();
1061         if (cmd)
1062                 xfree(cmd);
1063         if (fwd.listen_host != NULL)
1064                 xfree(fwd.listen_host);
1065         if (fwd.connect_host != NULL)
1066                 xfree(fwd.connect_host);
1067 }
1068
1069 /* process the characters one by one */
1070 static int
1071 process_escapes(Buffer *bin, Buffer *bout, Buffer *berr, char *buf, int len)
1072 {
1073         char string[1024];
1074         pid_t pid;
1075         int bytes = 0;
1076         u_int i;
1077         u_char ch;
1078         char *s;
1079
1080         if (len <= 0)
1081                 return (0);
1082
1083         for (i = 0; i < (u_int)len; i++) {
1084                 /* Get one character at a time. */
1085                 ch = buf[i];
1086
1087                 if (escape_pending) {
1088                         /* We have previously seen an escape character. */
1089                         /* Clear the flag now. */
1090                         escape_pending = 0;
1091
1092                         /* Process the escaped character. */
1093                         switch (ch) {
1094                         case '.':
1095                                 /* Terminate the connection. */
1096                                 snprintf(string, sizeof string, "%c.\r\n", escape_char);
1097                                 buffer_append(berr, string, strlen(string));
1098
1099                                 quit_pending = 1;
1100                                 return -1;
1101
1102                         case 'Z' - 64:
1103                                 /* Suspend the program. */
1104                                 /* Print a message to that effect to the user. */
1105                                 snprintf(string, sizeof string, "%c^Z [suspend ssh]\r\n", escape_char);
1106                                 buffer_append(berr, string, strlen(string));
1107
1108                                 /* Restore terminal modes and suspend. */
1109                                 client_suspend_self(bin, bout, berr);
1110
1111                                 /* We have been continued. */
1112                                 continue;
1113
1114                         case 'B':
1115                                 if (compat20) {
1116                                         snprintf(string, sizeof string,
1117                                             "%cB\r\n", escape_char);
1118                                         buffer_append(berr, string,
1119                                             strlen(string));
1120                                         channel_request_start(session_ident,
1121                                             "break", 0);
1122                                         packet_put_int(1000);
1123                                         packet_send();
1124                                 }
1125                                 continue;
1126
1127                         case 'R':
1128                                 if (compat20) {
1129                                         if (datafellows & SSH_BUG_NOREKEY)
1130                                                 logit("Server does not support re-keying");
1131                                         else
1132                                                 need_rekeying = 1;
1133                                 }
1134                                 continue;
1135
1136                         case '&':
1137                                 /*
1138                                  * Detach the program (continue to serve connections,
1139                                  * but put in background and no more new connections).
1140                                  */
1141                                 /* Restore tty modes. */
1142                                 leave_raw_mode();
1143
1144                                 /* Stop listening for new connections. */
1145                                 channel_stop_listening();
1146
1147                                 snprintf(string, sizeof string,
1148                                     "%c& [backgrounded]\n", escape_char);
1149                                 buffer_append(berr, string, strlen(string));
1150
1151                                 /* Fork into background. */
1152                                 pid = fork();
1153                                 if (pid < 0) {
1154                                         error("fork: %.100s", strerror(errno));
1155                                         continue;
1156                                 }
1157                                 if (pid != 0) { /* This is the parent. */
1158                                         /* The parent just exits. */
1159                                         exit(0);
1160                                 }
1161                                 /* The child continues serving connections. */
1162                                 if (compat20) {
1163                                         buffer_append(bin, "\004", 1);
1164                                         /* fake EOF on stdin */
1165                                         return -1;
1166                                 } else if (!stdin_eof) {
1167                                         /*
1168                                          * Sending SSH_CMSG_EOF alone does not always appear
1169                                          * to be enough.  So we try to send an EOF character
1170                                          * first.
1171                                          */
1172                                         packet_start(SSH_CMSG_STDIN_DATA);
1173                                         packet_put_string("\004", 1);
1174                                         packet_send();
1175                                         /* Close stdin. */
1176                                         stdin_eof = 1;
1177                                         if (buffer_len(bin) == 0) {
1178                                                 packet_start(SSH_CMSG_EOF);
1179                                                 packet_send();
1180                                         }
1181                                 }
1182                                 continue;
1183
1184                         case '?':
1185                                 snprintf(string, sizeof string,
1186 "%c?\r\n\
1187 Supported escape sequences:\r\n\
1188 %c.  - terminate connection\r\n\
1189 %cB  - send a BREAK to the remote system\r\n\
1190 %cC  - open a command line\r\n\
1191 %cR  - Request rekey (SSH protocol 2 only)\r\n\
1192 %c^Z - suspend ssh\r\n\
1193 %c#  - list forwarded connections\r\n\
1194 %c&  - background ssh (when waiting for connections to terminate)\r\n\
1195 %c?  - this message\r\n\
1196 %c%c  - send the escape character by typing it twice\r\n\
1197 (Note that escapes are only recognized immediately after newline.)\r\n",
1198                                     escape_char, escape_char, escape_char, escape_char,
1199                                     escape_char, escape_char, escape_char, escape_char,
1200                                     escape_char, escape_char, escape_char);
1201                                 buffer_append(berr, string, strlen(string));
1202                                 continue;
1203
1204                         case '#':
1205                                 snprintf(string, sizeof string, "%c#\r\n", escape_char);
1206                                 buffer_append(berr, string, strlen(string));
1207                                 s = channel_open_message();
1208                                 buffer_append(berr, s, strlen(s));
1209                                 xfree(s);
1210                                 continue;
1211
1212                         case 'C':
1213                                 process_cmdline();
1214                                 continue;
1215
1216                         default:
1217                                 if (ch != escape_char) {
1218                                         buffer_put_char(bin, escape_char);
1219                                         bytes++;
1220                                 }
1221                                 /* Escaped characters fall through here */
1222                                 break;
1223                         }
1224                 } else {
1225                         /*
1226                          * The previous character was not an escape char. Check if this
1227                          * is an escape.
1228                          */
1229                         if (last_was_cr && ch == escape_char) {
1230                                 /* It is. Set the flag and continue to next character. */
1231                                 escape_pending = 1;
1232                                 continue;
1233                         }
1234                 }
1235
1236                 /*
1237                  * Normal character.  Record whether it was a newline,
1238                  * and append it to the buffer.
1239                  */
1240                 last_was_cr = (ch == '\r' || ch == '\n');
1241                 buffer_put_char(bin, ch);
1242                 bytes++;
1243         }
1244         return bytes;
1245 }
1246
1247 static void
1248 client_process_input(fd_set *readset)
1249 {
1250         int len;
1251         char buf[8192];
1252
1253         /* Read input from stdin. */
1254         if (FD_ISSET(fileno(stdin), readset)) {
1255                 /* Read as much as possible. */
1256                 len = read(fileno(stdin), buf, sizeof(buf));
1257                 if (len < 0 && (errno == EAGAIN || errno == EINTR))
1258                         return;         /* we'll try again later */
1259                 if (len <= 0) {
1260                         /*
1261                          * Received EOF or error.  They are treated
1262                          * similarly, except that an error message is printed
1263                          * if it was an error condition.
1264                          */
1265                         if (len < 0) {
1266                                 snprintf(buf, sizeof buf, "read: %.100s\r\n", strerror(errno));
1267                                 buffer_append(&stderr_buffer, buf, strlen(buf));
1268                         }
1269                         /* Mark that we have seen EOF. */
1270                         stdin_eof = 1;
1271                         /*
1272                          * Send an EOF message to the server unless there is
1273                          * data in the buffer.  If there is data in the
1274                          * buffer, no message will be sent now.  Code
1275                          * elsewhere will send the EOF when the buffer
1276                          * becomes empty if stdin_eof is set.
1277                          */
1278                         if (buffer_len(&stdin_buffer) == 0) {
1279                                 packet_start(SSH_CMSG_EOF);
1280                                 packet_send();
1281                         }
1282                 } else if (escape_char == SSH_ESCAPECHAR_NONE) {
1283                         /*
1284                          * Normal successful read, and no escape character.
1285                          * Just append the data to buffer.
1286                          */
1287                         buffer_append(&stdin_buffer, buf, len);
1288                 } else {
1289                         /*
1290                          * Normal, successful read.  But we have an escape character
1291                          * and have to process the characters one by one.
1292                          */
1293                         if (process_escapes(&stdin_buffer, &stdout_buffer,
1294                             &stderr_buffer, buf, len) == -1)
1295                                 return;
1296                 }
1297         }
1298 }
1299
1300 static void
1301 client_process_output(fd_set *writeset)
1302 {
1303         int len;
1304         char buf[100];
1305
1306         /* Write buffered output to stdout. */
1307         if (FD_ISSET(fileno(stdout), writeset)) {
1308                 /* Write as much data as possible. */
1309                 len = write(fileno(stdout), buffer_ptr(&stdout_buffer),
1310                     buffer_len(&stdout_buffer));
1311                 if (len <= 0) {
1312                         if (errno == EINTR || errno == EAGAIN)
1313                                 len = 0;
1314                         else {
1315                                 /*
1316                                  * An error or EOF was encountered.  Put an
1317                                  * error message to stderr buffer.
1318                                  */
1319                                 snprintf(buf, sizeof buf, "write stdout: %.50s\r\n", strerror(errno));
1320                                 buffer_append(&stderr_buffer, buf, strlen(buf));
1321                                 quit_pending = 1;
1322                                 return;
1323                         }
1324                 }
1325                 /* Consume printed data from the buffer. */
1326                 buffer_consume(&stdout_buffer, len);
1327                 stdout_bytes += len;
1328         }
1329         /* Write buffered output to stderr. */
1330         if (FD_ISSET(fileno(stderr), writeset)) {
1331                 /* Write as much data as possible. */
1332                 len = write(fileno(stderr), buffer_ptr(&stderr_buffer),
1333                     buffer_len(&stderr_buffer));
1334                 if (len <= 0) {
1335                         if (errno == EINTR || errno == EAGAIN)
1336                                 len = 0;
1337                         else {
1338                                 /* EOF or error, but can't even print error message. */
1339                                 quit_pending = 1;
1340                                 return;
1341                         }
1342                 }
1343                 /* Consume printed characters from the buffer. */
1344                 buffer_consume(&stderr_buffer, len);
1345                 stderr_bytes += len;
1346         }
1347 }
1348
1349 /*
1350  * Get packets from the connection input buffer, and process them as long as
1351  * there are packets available.
1352  *
1353  * Any unknown packets received during the actual
1354  * session cause the session to terminate.  This is
1355  * intended to make debugging easier since no
1356  * confirmations are sent.  Any compatible protocol
1357  * extensions must be negotiated during the
1358  * preparatory phase.
1359  */
1360
1361 static void
1362 client_process_buffered_input_packets(void)
1363 {
1364         dispatch_run(DISPATCH_NONBLOCK, &quit_pending, compat20 ? xxx_kex : NULL);
1365 }
1366
1367 /* scan buf[] for '~' before sending data to the peer */
1368
1369 static int
1370 simple_escape_filter(Channel *c, char *buf, int len)
1371 {
1372         /* XXX we assume c->extended is writeable */
1373         return process_escapes(&c->input, &c->output, &c->extended, buf, len);
1374 }
1375
1376 static void
1377 client_channel_closed(int id, void *arg)
1378 {
1379         channel_cancel_cleanup(id);
1380         session_closed = 1;
1381         leave_raw_mode();
1382 }
1383
1384 /*
1385  * Implements the interactive session with the server.  This is called after
1386  * the user has been authenticated, and a command has been started on the
1387  * remote host.  If escape_char != SSH_ESCAPECHAR_NONE, it is the character
1388  * used as an escape character for terminating or suspending the session.
1389  */
1390
1391 int
1392 client_loop(int have_pty, int escape_char_arg, int ssh2_chan_id)
1393 {
1394         fd_set *readset = NULL, *writeset = NULL;
1395         double start_time, total_time;
1396         int max_fd = 0, max_fd2 = 0, len, rekeying = 0;
1397         u_int nalloc = 0;
1398         char buf[100];
1399
1400         debug("Entering interactive session.");
1401
1402         start_time = get_current_time();
1403
1404         /* Initialize variables. */
1405         escape_pending = 0;
1406         last_was_cr = 1;
1407         exit_status = -1;
1408         stdin_eof = 0;
1409         buffer_high = 64 * 1024;
1410         connection_in = packet_get_connection_in();
1411         connection_out = packet_get_connection_out();
1412         max_fd = MAX(connection_in, connection_out);
1413         if (control_fd != -1)
1414                 max_fd = MAX(max_fd, control_fd);
1415
1416         if (!compat20) {
1417                 /* enable nonblocking unless tty */
1418                 if (!isatty(fileno(stdin)))
1419                         set_nonblock(fileno(stdin));
1420                 if (!isatty(fileno(stdout)))
1421                         set_nonblock(fileno(stdout));
1422                 if (!isatty(fileno(stderr)))
1423                         set_nonblock(fileno(stderr));
1424                 max_fd = MAX(max_fd, fileno(stdin));
1425                 max_fd = MAX(max_fd, fileno(stdout));
1426                 max_fd = MAX(max_fd, fileno(stderr));
1427         }
1428         stdin_bytes = 0;
1429         stdout_bytes = 0;
1430         stderr_bytes = 0;
1431         quit_pending = 0;
1432         escape_char = escape_char_arg;
1433
1434         /* Initialize buffers. */
1435         buffer_init(&stdin_buffer);
1436         buffer_init(&stdout_buffer);
1437         buffer_init(&stderr_buffer);
1438
1439         client_init_dispatch();
1440
1441         /*
1442          * Set signal handlers, (e.g. to restore non-blocking mode)
1443          * but don't overwrite SIG_IGN, matches behaviour from rsh(1)
1444          */
1445         if (signal(SIGHUP, SIG_IGN) != SIG_IGN)
1446                 signal(SIGHUP, signal_handler);
1447         if (signal(SIGINT, SIG_IGN) != SIG_IGN)
1448                 signal(SIGINT, signal_handler);
1449         if (signal(SIGQUIT, SIG_IGN) != SIG_IGN)
1450                 signal(SIGQUIT, signal_handler);
1451         if (signal(SIGTERM, SIG_IGN) != SIG_IGN)
1452                 signal(SIGTERM, signal_handler);
1453         signal(SIGWINCH, window_change_handler);
1454
1455         if (have_pty)
1456                 enter_raw_mode();
1457
1458         if (compat20) {
1459                 session_ident = ssh2_chan_id;
1460                 if (escape_char != SSH_ESCAPECHAR_NONE)
1461                         channel_register_filter(session_ident,
1462                             simple_escape_filter, NULL);
1463                 if (session_ident != -1)
1464                         channel_register_cleanup(session_ident,
1465                             client_channel_closed, 0);
1466         } else {
1467                 /* Check if we should immediately send eof on stdin. */
1468                 client_check_initial_eof_on_stdin();
1469         }
1470
1471         /* Main loop of the client for the interactive session mode. */
1472         while (!quit_pending) {
1473
1474                 /* Process buffered packets sent by the server. */
1475                 client_process_buffered_input_packets();
1476
1477                 if (compat20 && session_closed && !channel_still_open())
1478                         break;
1479
1480                 rekeying = (xxx_kex != NULL && !xxx_kex->done);
1481
1482                 if (rekeying) {
1483                         debug("rekeying in progress");
1484                 } else {
1485                         /*
1486                          * Make packets of buffered stdin data, and buffer
1487                          * them for sending to the server.
1488                          */
1489                         if (!compat20)
1490                                 client_make_packets_from_stdin_data();
1491
1492                         /*
1493                          * Make packets from buffered channel data, and
1494                          * enqueue them for sending to the server.
1495                          */
1496                         if (packet_not_very_much_data_to_write())
1497                                 channel_output_poll();
1498
1499                         /*
1500                          * Check if the window size has changed, and buffer a
1501                          * message about it to the server if so.
1502                          */
1503                         client_check_window_change();
1504
1505                         if (quit_pending)
1506                                 break;
1507                 }
1508                 /*
1509                  * Wait until we have something to do (something becomes
1510                  * available on one of the descriptors).
1511                  */
1512                 max_fd2 = max_fd;
1513                 client_wait_until_can_do_something(&readset, &writeset,
1514                     &max_fd2, &nalloc, rekeying);
1515
1516                 if (quit_pending)
1517                         break;
1518
1519                 /* Do channel operations unless rekeying in progress. */
1520                 if (!rekeying) {
1521                         channel_after_select(readset, writeset);
1522                         if (need_rekeying || packet_need_rekeying()) {
1523                                 debug("need rekeying");
1524                                 xxx_kex->done = 0;
1525                                 kex_send_kexinit(xxx_kex);
1526                                 need_rekeying = 0;
1527                         }
1528                 }
1529
1530                 /* Buffer input from the connection.  */
1531                 client_process_net_input(readset);
1532
1533                 /* Accept control connections.  */
1534                 client_process_control(readset);
1535
1536                 if (quit_pending)
1537                         break;
1538
1539                 if (!compat20) {
1540                         /* Buffer data from stdin */
1541                         client_process_input(readset);
1542                         /*
1543                          * Process output to stdout and stderr.  Output to
1544                          * the connection is processed elsewhere (above).
1545                          */
1546                         client_process_output(writeset);
1547                 }
1548
1549                 /* Send as much buffered packet data as possible to the sender. */
1550                 if (FD_ISSET(connection_out, writeset))
1551                         packet_write_poll();
1552         }
1553         if (readset)
1554                 xfree(readset);
1555         if (writeset)
1556                 xfree(writeset);
1557
1558         /* Terminate the session. */
1559
1560         /* Stop watching for window change. */
1561         signal(SIGWINCH, SIG_DFL);
1562
1563         channel_free_all();
1564
1565         if (have_pty)
1566                 leave_raw_mode();
1567
1568         /* restore blocking io */
1569         if (!isatty(fileno(stdin)))
1570                 unset_nonblock(fileno(stdin));
1571         if (!isatty(fileno(stdout)))
1572                 unset_nonblock(fileno(stdout));
1573         if (!isatty(fileno(stderr)))
1574                 unset_nonblock(fileno(stderr));
1575
1576         /*
1577          * If there was no shell or command requested, there will be no remote
1578          * exit status to be returned.  In that case, clear error code if the
1579          * connection was deliberately terminated at this end.
1580          */
1581         if (no_shell_flag && received_signal == SIGTERM) {
1582                 received_signal = 0;
1583                 exit_status = 0;
1584         }
1585
1586         if (received_signal)
1587                 fatal("Killed by signal %d.", (int) received_signal);
1588
1589         /*
1590          * In interactive mode (with pseudo tty) display a message indicating
1591          * that the connection has been closed.
1592          */
1593         if (have_pty && options.log_level != SYSLOG_LEVEL_QUIET) {
1594                 snprintf(buf, sizeof buf, "Connection to %.64s closed.\r\n", host);
1595                 buffer_append(&stderr_buffer, buf, strlen(buf));
1596         }
1597
1598         /* Output any buffered data for stdout. */
1599         while (buffer_len(&stdout_buffer) > 0) {
1600                 len = write(fileno(stdout), buffer_ptr(&stdout_buffer),
1601                     buffer_len(&stdout_buffer));
1602                 if (len <= 0) {
1603                         error("Write failed flushing stdout buffer.");
1604                         break;
1605                 }
1606                 buffer_consume(&stdout_buffer, len);
1607                 stdout_bytes += len;
1608         }
1609
1610         /* Output any buffered data for stderr. */
1611         while (buffer_len(&stderr_buffer) > 0) {
1612                 len = write(fileno(stderr), buffer_ptr(&stderr_buffer),
1613                     buffer_len(&stderr_buffer));
1614                 if (len <= 0) {
1615                         error("Write failed flushing stderr buffer.");
1616                         break;
1617                 }
1618                 buffer_consume(&stderr_buffer, len);
1619                 stderr_bytes += len;
1620         }
1621
1622         /* Clear and free any buffers. */
1623         memset(buf, 0, sizeof(buf));
1624         buffer_free(&stdin_buffer);
1625         buffer_free(&stdout_buffer);
1626         buffer_free(&stderr_buffer);
1627
1628         /* Report bytes transferred, and transfer rates. */
1629         total_time = get_current_time() - start_time;
1630         debug("Transferred: stdin %lu, stdout %lu, stderr %lu bytes in %.1f seconds",
1631             stdin_bytes, stdout_bytes, stderr_bytes, total_time);
1632         if (total_time > 0)
1633                 debug("Bytes per second: stdin %.1f, stdout %.1f, stderr %.1f",
1634                     stdin_bytes / total_time, stdout_bytes / total_time,
1635                     stderr_bytes / total_time);
1636
1637         /* Return the exit status of the program. */
1638         debug("Exit status %d", exit_status);
1639         return exit_status;
1640 }
1641
1642 /*********/
1643
1644 static void
1645 client_input_stdout_data(int type, u_int32_t seq, void *ctxt)
1646 {
1647         u_int data_len;
1648         char *data = packet_get_string(&data_len);
1649         packet_check_eom();
1650         buffer_append(&stdout_buffer, data, data_len);
1651         memset(data, 0, data_len);
1652         xfree(data);
1653 }
1654 static void
1655 client_input_stderr_data(int type, u_int32_t seq, void *ctxt)
1656 {
1657         u_int data_len;
1658         char *data = packet_get_string(&data_len);
1659         packet_check_eom();
1660         buffer_append(&stderr_buffer, data, data_len);
1661         memset(data, 0, data_len);
1662         xfree(data);
1663 }
1664 static void
1665 client_input_exit_status(int type, u_int32_t seq, void *ctxt)
1666 {
1667         exit_status = packet_get_int();
1668         packet_check_eom();
1669         /* Acknowledge the exit. */
1670         packet_start(SSH_CMSG_EXIT_CONFIRMATION);
1671         packet_send();
1672         /*
1673          * Must wait for packet to be sent since we are
1674          * exiting the loop.
1675          */
1676         packet_write_wait();
1677         /* Flag that we want to exit. */
1678         quit_pending = 1;
1679 }
1680 static void
1681 client_input_agent_open(int type, u_int32_t seq, void *ctxt)
1682 {
1683         Channel *c = NULL;
1684         int remote_id, sock;
1685
1686         /* Read the remote channel number from the message. */
1687         remote_id = packet_get_int();
1688         packet_check_eom();
1689
1690         /*
1691          * Get a connection to the local authentication agent (this may again
1692          * get forwarded).
1693          */
1694         sock = ssh_get_authentication_socket();
1695
1696         /*
1697          * If we could not connect the agent, send an error message back to
1698          * the server. This should never happen unless the agent dies,
1699          * because authentication forwarding is only enabled if we have an
1700          * agent.
1701          */
1702         if (sock >= 0) {
1703                 c = channel_new("", SSH_CHANNEL_OPEN, sock, sock,
1704                     -1, 0, 0, 0, "authentication agent connection", 1);
1705                 c->remote_id = remote_id;
1706                 c->force_drain = 1;
1707         }
1708         if (c == NULL) {
1709                 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
1710                 packet_put_int(remote_id);
1711         } else {
1712                 /* Send a confirmation to the remote host. */
1713                 debug("Forwarding authentication connection.");
1714                 packet_start(SSH_MSG_CHANNEL_OPEN_CONFIRMATION);
1715                 packet_put_int(remote_id);
1716                 packet_put_int(c->self);
1717         }
1718         packet_send();
1719 }
1720
1721 static Channel *
1722 client_request_forwarded_tcpip(const char *request_type, int rchan)
1723 {
1724         Channel *c = NULL;
1725         char *listen_address, *originator_address;
1726         int listen_port, originator_port;
1727         int sock;
1728
1729         /* Get rest of the packet */
1730         listen_address = packet_get_string(NULL);
1731         listen_port = packet_get_int();
1732         originator_address = packet_get_string(NULL);
1733         originator_port = packet_get_int();
1734         packet_check_eom();
1735
1736         debug("client_request_forwarded_tcpip: listen %s port %d, originator %s port %d",
1737             listen_address, listen_port, originator_address, originator_port);
1738
1739         sock = channel_connect_by_listen_address(listen_port);
1740         if (sock < 0) {
1741                 xfree(originator_address);
1742                 xfree(listen_address);
1743                 return NULL;
1744         }
1745         if (options.hpn_disabled) 
1746         c = channel_new("forwarded-tcpip",
1747             SSH_CHANNEL_CONNECTING, sock, sock, -1,
1748             CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT, 0,
1749             originator_address, 1);
1750         else
1751                 c = channel_new("forwarded-tcpip",
1752                     SSH_CHANNEL_CONNECTING, sock, sock, -1,
1753                     options.hpn_buffer_size, options.hpn_buffer_size, 0,
1754                     originator_address, 1);
1755         xfree(originator_address);
1756         xfree(listen_address);
1757         return c;
1758 }
1759
1760 static Channel *
1761 client_request_x11(const char *request_type, int rchan)
1762 {
1763         Channel *c = NULL;
1764         char *originator;
1765         int originator_port;
1766         int sock;
1767
1768         if (!options.forward_x11) {
1769                 error("Warning: ssh server tried X11 forwarding.");
1770                 error("Warning: this is probably a break-in attempt by a malicious server.");
1771                 return NULL;
1772         }
1773         originator = packet_get_string(NULL);
1774         if (datafellows & SSH_BUG_X11FWD) {
1775                 debug2("buggy server: x11 request w/o originator_port");
1776                 originator_port = 0;
1777         } else {
1778                 originator_port = packet_get_int();
1779         }
1780         packet_check_eom();
1781         /* XXX check permission */
1782         debug("client_request_x11: request from %s %d", originator,
1783             originator_port);
1784         xfree(originator);
1785         sock = x11_connect_display();
1786         if (sock < 0)
1787                 return NULL;
1788         /* again is this really necessary for X11? */
1789         if (options.hpn_disabled) 
1790         c = channel_new("x11",
1791             SSH_CHANNEL_X11_OPEN, sock, sock, -1,
1792             CHAN_TCP_WINDOW_DEFAULT, CHAN_X11_PACKET_DEFAULT, 0, "x11", 1);
1793         else 
1794                 c = channel_new("x11",
1795                     SSH_CHANNEL_X11_OPEN, sock, sock, -1,
1796                     options.hpn_buffer_size, CHAN_X11_PACKET_DEFAULT, 0, "x11", 1);
1797         c->force_drain = 1;
1798         return c;
1799 }
1800
1801 static Channel *
1802 client_request_agent(const char *request_type, int rchan)
1803 {
1804         Channel *c = NULL;
1805         int sock;
1806
1807         if (!options.forward_agent) {
1808                 error("Warning: ssh server tried agent forwarding.");
1809                 error("Warning: this is probably a break-in attempt by a malicious server.");
1810                 return NULL;
1811         }
1812         sock = ssh_get_authentication_socket();
1813         if (sock < 0)
1814                 return NULL;
1815         /* not sure this is really needed here either */
1816         if (options.hpn_disabled) 
1817         c = channel_new("authentication agent connection",
1818             SSH_CHANNEL_OPEN, sock, sock, -1,
1819             CHAN_X11_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT, 0,
1820             "authentication agent connection", 1);
1821         else
1822                 c = channel_new("authentication agent connection",
1823                     SSH_CHANNEL_OPEN, sock, sock, -1,
1824                     options.hpn_buffer_size, options.hpn_buffer_size, 0,
1825                     "authentication agent connection", 1);
1826         c->force_drain = 1;
1827         return c;
1828 }
1829
1830 int
1831 client_request_tun_fwd(int tun_mode, int local_tun, int remote_tun)
1832 {
1833         Channel *c;
1834         int fd;
1835
1836         if (tun_mode == SSH_TUNMODE_NO)
1837                 return 0;
1838
1839         if (!compat20) {
1840                 error("Tunnel forwarding is not support for protocol 1");
1841                 return -1;
1842         }
1843
1844         debug("Requesting tun unit %d in mode %d", local_tun, tun_mode);
1845
1846         /* Open local tunnel device */
1847         if ((fd = tun_open(local_tun, tun_mode)) == -1) {
1848                 error("Tunnel device open failed.");
1849                 return -1;
1850         }
1851
1852         if(options.hpn_disabled)
1853         c = channel_new("tun", SSH_CHANNEL_OPENING, fd, fd, -1,
1854                                 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT,
1855                                 0, "tun", 1);
1856         else
1857         c = channel_new("tun", SSH_CHANNEL_OPENING, fd, fd, -1,
1858                                 options.hpn_buffer_size, CHAN_TCP_PACKET_DEFAULT,
1859                                 0, "tun", 1);
1860         c->datagram = 1;
1861
1862 #if defined(SSH_TUN_FILTER)
1863         if (options.tun_open == SSH_TUNMODE_POINTOPOINT)
1864                 channel_register_filter(c->self, sys_tun_infilter,
1865                     sys_tun_outfilter);
1866 #endif
1867
1868         packet_start(SSH2_MSG_CHANNEL_OPEN);
1869         packet_put_cstring("tun@openssh.com");
1870         packet_put_int(c->self);
1871         packet_put_int(c->local_window_max);
1872         packet_put_int(c->local_maxpacket);
1873         packet_put_int(tun_mode);
1874         packet_put_int(remote_tun);
1875         packet_send();
1876
1877         return 0;
1878 }
1879
1880 /* XXXX move to generic input handler */
1881 static void
1882 client_input_channel_open(int type, u_int32_t seq, void *ctxt)
1883 {
1884         Channel *c = NULL;
1885         char *ctype;
1886         int rchan;
1887         u_int rmaxpack, rwindow, len;
1888
1889         ctype = packet_get_string(&len);
1890         rchan = packet_get_int();
1891         rwindow = packet_get_int();
1892         rmaxpack = packet_get_int();
1893
1894         debug("client_input_channel_open: ctype %s rchan %d win %d max %d",
1895             ctype, rchan, rwindow, rmaxpack);
1896
1897         if (strcmp(ctype, "forwarded-tcpip") == 0) {
1898                 c = client_request_forwarded_tcpip(ctype, rchan);
1899         } else if (strcmp(ctype, "x11") == 0) {
1900                 c = client_request_x11(ctype, rchan);
1901         } else if (strcmp(ctype, "auth-agent@openssh.com") == 0) {
1902                 c = client_request_agent(ctype, rchan);
1903         }
1904 /* XXX duplicate : */
1905         if (c != NULL) {
1906                 debug("confirm %s", ctype);
1907                 c->remote_id = rchan;
1908                 c->remote_window = rwindow;
1909                 c->remote_maxpacket = rmaxpack;
1910                 if (c->type != SSH_CHANNEL_CONNECTING) {
1911                         packet_start(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION);
1912                         packet_put_int(c->remote_id);
1913                         packet_put_int(c->self);
1914                         packet_put_int(c->local_window);
1915                         packet_put_int(c->local_maxpacket);
1916                         packet_send();
1917                 }
1918         } else {
1919                 debug("failure %s", ctype);
1920                 packet_start(SSH2_MSG_CHANNEL_OPEN_FAILURE);
1921                 packet_put_int(rchan);
1922                 packet_put_int(SSH2_OPEN_ADMINISTRATIVELY_PROHIBITED);
1923                 if (!(datafellows & SSH_BUG_OPENFAILURE)) {
1924                         packet_put_cstring("open failed");
1925                         packet_put_cstring("");
1926                 }
1927                 packet_send();
1928         }
1929         xfree(ctype);
1930 }
1931 static void
1932 client_input_channel_req(int type, u_int32_t seq, void *ctxt)
1933 {
1934         Channel *c = NULL;
1935         int exitval, id, reply, success = 0;
1936         char *rtype;
1937
1938         id = packet_get_int();
1939         rtype = packet_get_string(NULL);
1940         reply = packet_get_char();
1941
1942         debug("client_input_channel_req: channel %d rtype %s reply %d",
1943             id, rtype, reply);
1944
1945         if (id == -1) {
1946                 error("client_input_channel_req: request for channel -1");
1947         } else if ((c = channel_lookup(id)) == NULL) {
1948                 error("client_input_channel_req: channel %d: unknown channel", id);
1949         } else if (strcmp(rtype, "exit-status") == 0) {
1950                 exitval = packet_get_int();
1951                 if (id == session_ident) {
1952                         success = 1;
1953                         exit_status = exitval;
1954                 } else if (c->ctl_fd == -1) {
1955                         error("client_input_channel_req: unexpected channel %d",
1956                             session_ident);
1957                 } else {
1958                         atomicio(vwrite, c->ctl_fd, &exitval, sizeof(exitval));
1959                         success = 1;
1960                 }
1961                 packet_check_eom();
1962         }
1963         if (reply) {
1964                 packet_start(success ?
1965                     SSH2_MSG_CHANNEL_SUCCESS : SSH2_MSG_CHANNEL_FAILURE);
1966                 packet_put_int(id);
1967                 packet_send();
1968         }
1969         xfree(rtype);
1970 }
1971 static void
1972 client_input_global_request(int type, u_int32_t seq, void *ctxt)
1973 {
1974         char *rtype;
1975         int want_reply;
1976         int success = 0;
1977
1978         rtype = packet_get_string(NULL);
1979         want_reply = packet_get_char();
1980         debug("client_input_global_request: rtype %s want_reply %d",
1981             rtype, want_reply);
1982         if (want_reply) {
1983                 packet_start(success ?
1984                     SSH2_MSG_REQUEST_SUCCESS : SSH2_MSG_REQUEST_FAILURE);
1985                 packet_send();
1986                 packet_write_wait();
1987         }
1988         xfree(rtype);
1989 }
1990
1991 void
1992 client_session2_setup(int id, int want_tty, int want_subsystem,
1993     const char *term, struct termios *tiop, int in_fd, Buffer *cmd, char **env,
1994     dispatch_fn *subsys_repl)
1995 {
1996         int len;
1997         Channel *c = NULL;
1998
1999         debug2("%s: id %d", __func__, id);
2000
2001         if ((c = channel_lookup(id)) == NULL)
2002                 fatal("client_session2_setup: channel %d: unknown channel", id);
2003
2004         if (want_tty) {
2005                 struct winsize ws;
2006                 struct termios tio;
2007
2008                 /* Store window size in the packet. */
2009                 if (ioctl(in_fd, TIOCGWINSZ, &ws) < 0)
2010                         memset(&ws, 0, sizeof(ws));
2011
2012                 channel_request_start(id, "pty-req", 0);
2013                 packet_put_cstring(term != NULL ? term : "");
2014                 packet_put_int((u_int)ws.ws_col);
2015                 packet_put_int((u_int)ws.ws_row);
2016                 packet_put_int((u_int)ws.ws_xpixel);
2017                 packet_put_int((u_int)ws.ws_ypixel);
2018                 tio = get_saved_tio();
2019                 tty_make_modes(-1, tiop != NULL ? tiop : &tio);
2020                 packet_send();
2021                 /* XXX wait for reply */
2022                 c->client_tty = 1;
2023         }
2024
2025         /* Transfer any environment variables from client to server */
2026         if (options.num_send_env != 0 && env != NULL) {
2027                 int i, j, matched;
2028                 char *name, *val;
2029
2030                 debug("Sending environment.");
2031                 for (i = 0; env[i] != NULL; i++) {
2032                         /* Split */
2033                         name = xstrdup(env[i]);
2034                         if ((val = strchr(name, '=')) == NULL) {
2035                                 xfree(name);
2036                                 continue;
2037                         }
2038                         *val++ = '\0';
2039
2040                         matched = 0;
2041                         for (j = 0; j < options.num_send_env; j++) {
2042                                 if (match_pattern(name, options.send_env[j])) {
2043                                         matched = 1;
2044                                         break;
2045                                 }
2046                         }
2047                         if (!matched) {
2048                                 debug3("Ignored env %s", name);
2049                                 xfree(name);
2050                                 continue;
2051                         }
2052
2053                         debug("Sending env %s = %s", name, val);
2054                         channel_request_start(id, "env", 0);
2055                         packet_put_cstring(name);
2056                         packet_put_cstring(val);
2057                         packet_send();
2058                         xfree(name);
2059                 }
2060         }
2061
2062         len = buffer_len(cmd);
2063         if (len > 0) {
2064                 if (len > 900)
2065                         len = 900;
2066                 if (want_subsystem) {
2067                         debug("Sending subsystem: %.*s", len, (u_char*)buffer_ptr(cmd));
2068                         channel_request_start(id, "subsystem", subsys_repl != NULL);
2069                         if (subsys_repl != NULL) {
2070                                 /* register callback for reply */
2071                                 /* XXX we assume that client_loop has already been called */
2072                                 dispatch_set(SSH2_MSG_CHANNEL_FAILURE, subsys_repl);
2073                                 dispatch_set(SSH2_MSG_CHANNEL_SUCCESS, subsys_repl);
2074                         }
2075                 } else {
2076                         debug("Sending command: %.*s", len, (u_char*)buffer_ptr(cmd));
2077                         channel_request_start(id, "exec", 0);
2078                 }
2079                 packet_put_string(buffer_ptr(cmd), buffer_len(cmd));
2080                 packet_send();
2081         } else {
2082                 channel_request_start(id, "shell", 0);
2083                 packet_send();
2084         }
2085 }
2086
2087 static void
2088 client_init_dispatch_20(void)
2089 {
2090         dispatch_init(&dispatch_protocol_error);
2091
2092         dispatch_set(SSH2_MSG_CHANNEL_CLOSE, &channel_input_oclose);
2093         dispatch_set(SSH2_MSG_CHANNEL_DATA, &channel_input_data);
2094         dispatch_set(SSH2_MSG_CHANNEL_EOF, &channel_input_ieof);
2095         dispatch_set(SSH2_MSG_CHANNEL_EXTENDED_DATA, &channel_input_extended_data);
2096         dispatch_set(SSH2_MSG_CHANNEL_OPEN, &client_input_channel_open);
2097         dispatch_set(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION, &channel_input_open_confirmation);
2098         dispatch_set(SSH2_MSG_CHANNEL_OPEN_FAILURE, &channel_input_open_failure);
2099         dispatch_set(SSH2_MSG_CHANNEL_REQUEST, &client_input_channel_req);
2100         dispatch_set(SSH2_MSG_CHANNEL_WINDOW_ADJUST, &channel_input_window_adjust);
2101         dispatch_set(SSH2_MSG_GLOBAL_REQUEST, &client_input_global_request);
2102
2103         /* rekeying */
2104         dispatch_set(SSH2_MSG_KEXINIT, &kex_input_kexinit);
2105
2106         /* global request reply messages */
2107         dispatch_set(SSH2_MSG_REQUEST_FAILURE, &client_global_request_reply);
2108         dispatch_set(SSH2_MSG_REQUEST_SUCCESS, &client_global_request_reply);
2109 }
2110 static void
2111 client_init_dispatch_13(void)
2112 {
2113         dispatch_init(NULL);
2114         dispatch_set(SSH_MSG_CHANNEL_CLOSE, &channel_input_close);
2115         dispatch_set(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION, &channel_input_close_confirmation);
2116         dispatch_set(SSH_MSG_CHANNEL_DATA, &channel_input_data);
2117         dispatch_set(SSH_MSG_CHANNEL_OPEN_CONFIRMATION, &channel_input_open_confirmation);
2118         dispatch_set(SSH_MSG_CHANNEL_OPEN_FAILURE, &channel_input_open_failure);
2119         dispatch_set(SSH_MSG_PORT_OPEN, &channel_input_port_open);
2120         dispatch_set(SSH_SMSG_EXITSTATUS, &client_input_exit_status);
2121         dispatch_set(SSH_SMSG_STDERR_DATA, &client_input_stderr_data);
2122         dispatch_set(SSH_SMSG_STDOUT_DATA, &client_input_stdout_data);
2123
2124         dispatch_set(SSH_SMSG_AGENT_OPEN, options.forward_agent ?
2125             &client_input_agent_open : &deny_input_open);
2126         dispatch_set(SSH_SMSG_X11_OPEN, options.forward_x11 ?
2127             &x11_input_open : &deny_input_open);
2128 }
2129 static void
2130 client_init_dispatch_15(void)
2131 {
2132         client_init_dispatch_13();
2133         dispatch_set(SSH_MSG_CHANNEL_CLOSE, &channel_input_ieof);
2134         dispatch_set(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION, & channel_input_oclose);
2135 }
2136 static void
2137 client_init_dispatch(void)
2138 {
2139         if (compat20)
2140                 client_init_dispatch_20();
2141         else if (compat13)
2142                 client_init_dispatch_13();
2143         else
2144                 client_init_dispatch_15();
2145 }
2146
2147 /* client specific fatal cleanup */
2148 void
2149 cleanup_exit(int i)
2150 {
2151         leave_raw_mode();
2152         leave_non_blocking();
2153         if (options.control_path != NULL && control_fd != -1)
2154                 unlink(options.control_path);
2155         _exit(i);
2156 }
This page took 0.512164 seconds and 3 git commands to generate.