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