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