bcc1dd1bd385c20556690c1f1fb4a4763d81af34
[u/mdw/putty] / ssh.c
1 /*
2 * SSH backend.
3 */
4
5 #include <stdio.h>
6 #include <stdlib.h>
7 #include <stdarg.h>
8 #include <assert.h>
9 #include <limits.h>
10 #include <signal.h>
11
12 #include "putty.h"
13 #include "tree234.h"
14 #include "ssh.h"
15
16 #ifndef FALSE
17 #define FALSE 0
18 #endif
19 #ifndef TRUE
20 #define TRUE 1
21 #endif
22
23 #define SSH1_MSG_DISCONNECT 1 /* 0x1 */
24 #define SSH1_SMSG_PUBLIC_KEY 2 /* 0x2 */
25 #define SSH1_CMSG_SESSION_KEY 3 /* 0x3 */
26 #define SSH1_CMSG_USER 4 /* 0x4 */
27 #define SSH1_CMSG_AUTH_RSA 6 /* 0x6 */
28 #define SSH1_SMSG_AUTH_RSA_CHALLENGE 7 /* 0x7 */
29 #define SSH1_CMSG_AUTH_RSA_RESPONSE 8 /* 0x8 */
30 #define SSH1_CMSG_AUTH_PASSWORD 9 /* 0x9 */
31 #define SSH1_CMSG_REQUEST_PTY 10 /* 0xa */
32 #define SSH1_CMSG_WINDOW_SIZE 11 /* 0xb */
33 #define SSH1_CMSG_EXEC_SHELL 12 /* 0xc */
34 #define SSH1_CMSG_EXEC_CMD 13 /* 0xd */
35 #define SSH1_SMSG_SUCCESS 14 /* 0xe */
36 #define SSH1_SMSG_FAILURE 15 /* 0xf */
37 #define SSH1_CMSG_STDIN_DATA 16 /* 0x10 */
38 #define SSH1_SMSG_STDOUT_DATA 17 /* 0x11 */
39 #define SSH1_SMSG_STDERR_DATA 18 /* 0x12 */
40 #define SSH1_CMSG_EOF 19 /* 0x13 */
41 #define SSH1_SMSG_EXIT_STATUS 20 /* 0x14 */
42 #define SSH1_MSG_CHANNEL_OPEN_CONFIRMATION 21 /* 0x15 */
43 #define SSH1_MSG_CHANNEL_OPEN_FAILURE 22 /* 0x16 */
44 #define SSH1_MSG_CHANNEL_DATA 23 /* 0x17 */
45 #define SSH1_MSG_CHANNEL_CLOSE 24 /* 0x18 */
46 #define SSH1_MSG_CHANNEL_CLOSE_CONFIRMATION 25 /* 0x19 */
47 #define SSH1_SMSG_X11_OPEN 27 /* 0x1b */
48 #define SSH1_CMSG_PORT_FORWARD_REQUEST 28 /* 0x1c */
49 #define SSH1_MSG_PORT_OPEN 29 /* 0x1d */
50 #define SSH1_CMSG_AGENT_REQUEST_FORWARDING 30 /* 0x1e */
51 #define SSH1_SMSG_AGENT_OPEN 31 /* 0x1f */
52 #define SSH1_MSG_IGNORE 32 /* 0x20 */
53 #define SSH1_CMSG_EXIT_CONFIRMATION 33 /* 0x21 */
54 #define SSH1_CMSG_X11_REQUEST_FORWARDING 34 /* 0x22 */
55 #define SSH1_CMSG_AUTH_RHOSTS_RSA 35 /* 0x23 */
56 #define SSH1_MSG_DEBUG 36 /* 0x24 */
57 #define SSH1_CMSG_REQUEST_COMPRESSION 37 /* 0x25 */
58 #define SSH1_CMSG_AUTH_TIS 39 /* 0x27 */
59 #define SSH1_SMSG_AUTH_TIS_CHALLENGE 40 /* 0x28 */
60 #define SSH1_CMSG_AUTH_TIS_RESPONSE 41 /* 0x29 */
61 #define SSH1_CMSG_AUTH_CCARD 70 /* 0x46 */
62 #define SSH1_SMSG_AUTH_CCARD_CHALLENGE 71 /* 0x47 */
63 #define SSH1_CMSG_AUTH_CCARD_RESPONSE 72 /* 0x48 */
64
65 #define SSH1_AUTH_TIS 5 /* 0x5 */
66 #define SSH1_AUTH_CCARD 16 /* 0x10 */
67
68 #define SSH1_PROTOFLAG_SCREEN_NUMBER 1 /* 0x1 */
69 /* Mask for protoflags we will echo back to server if seen */
70 #define SSH1_PROTOFLAGS_SUPPORTED 0 /* 0x1 */
71
72 #define SSH2_MSG_DISCONNECT 1 /* 0x1 */
73 #define SSH2_MSG_IGNORE 2 /* 0x2 */
74 #define SSH2_MSG_UNIMPLEMENTED 3 /* 0x3 */
75 #define SSH2_MSG_DEBUG 4 /* 0x4 */
76 #define SSH2_MSG_SERVICE_REQUEST 5 /* 0x5 */
77 #define SSH2_MSG_SERVICE_ACCEPT 6 /* 0x6 */
78 #define SSH2_MSG_KEXINIT 20 /* 0x14 */
79 #define SSH2_MSG_NEWKEYS 21 /* 0x15 */
80 #define SSH2_MSG_KEXDH_INIT 30 /* 0x1e */
81 #define SSH2_MSG_KEXDH_REPLY 31 /* 0x1f */
82 #define SSH2_MSG_KEX_DH_GEX_REQUEST 30 /* 0x1e */
83 #define SSH2_MSG_KEX_DH_GEX_GROUP 31 /* 0x1f */
84 #define SSH2_MSG_KEX_DH_GEX_INIT 32 /* 0x20 */
85 #define SSH2_MSG_KEX_DH_GEX_REPLY 33 /* 0x21 */
86 #define SSH2_MSG_USERAUTH_REQUEST 50 /* 0x32 */
87 #define SSH2_MSG_USERAUTH_FAILURE 51 /* 0x33 */
88 #define SSH2_MSG_USERAUTH_SUCCESS 52 /* 0x34 */
89 #define SSH2_MSG_USERAUTH_BANNER 53 /* 0x35 */
90 #define SSH2_MSG_USERAUTH_PK_OK 60 /* 0x3c */
91 #define SSH2_MSG_USERAUTH_PASSWD_CHANGEREQ 60 /* 0x3c */
92 #define SSH2_MSG_USERAUTH_INFO_REQUEST 60 /* 0x3c */
93 #define SSH2_MSG_USERAUTH_INFO_RESPONSE 61 /* 0x3d */
94 #define SSH2_MSG_GLOBAL_REQUEST 80 /* 0x50 */
95 #define SSH2_MSG_REQUEST_SUCCESS 81 /* 0x51 */
96 #define SSH2_MSG_REQUEST_FAILURE 82 /* 0x52 */
97 #define SSH2_MSG_CHANNEL_OPEN 90 /* 0x5a */
98 #define SSH2_MSG_CHANNEL_OPEN_CONFIRMATION 91 /* 0x5b */
99 #define SSH2_MSG_CHANNEL_OPEN_FAILURE 92 /* 0x5c */
100 #define SSH2_MSG_CHANNEL_WINDOW_ADJUST 93 /* 0x5d */
101 #define SSH2_MSG_CHANNEL_DATA 94 /* 0x5e */
102 #define SSH2_MSG_CHANNEL_EXTENDED_DATA 95 /* 0x5f */
103 #define SSH2_MSG_CHANNEL_EOF 96 /* 0x60 */
104 #define SSH2_MSG_CHANNEL_CLOSE 97 /* 0x61 */
105 #define SSH2_MSG_CHANNEL_REQUEST 98 /* 0x62 */
106 #define SSH2_MSG_CHANNEL_SUCCESS 99 /* 0x63 */
107 #define SSH2_MSG_CHANNEL_FAILURE 100 /* 0x64 */
108
109 /*
110 * Packet type contexts, so that ssh2_pkt_type can correctly decode
111 * the ambiguous type numbers back into the correct type strings.
112 */
113 #define SSH2_PKTCTX_DHGROUP 0x0001
114 #define SSH2_PKTCTX_DHGEX 0x0002
115 #define SSH2_PKTCTX_KEX_MASK 0x000F
116 #define SSH2_PKTCTX_PUBLICKEY 0x0010
117 #define SSH2_PKTCTX_PASSWORD 0x0020
118 #define SSH2_PKTCTX_KBDINTER 0x0040
119 #define SSH2_PKTCTX_AUTH_MASK 0x00F0
120
121 #define SSH2_DISCONNECT_HOST_NOT_ALLOWED_TO_CONNECT 1 /* 0x1 */
122 #define SSH2_DISCONNECT_PROTOCOL_ERROR 2 /* 0x2 */
123 #define SSH2_DISCONNECT_KEY_EXCHANGE_FAILED 3 /* 0x3 */
124 #define SSH2_DISCONNECT_HOST_AUTHENTICATION_FAILED 4 /* 0x4 */
125 #define SSH2_DISCONNECT_MAC_ERROR 5 /* 0x5 */
126 #define SSH2_DISCONNECT_COMPRESSION_ERROR 6 /* 0x6 */
127 #define SSH2_DISCONNECT_SERVICE_NOT_AVAILABLE 7 /* 0x7 */
128 #define SSH2_DISCONNECT_PROTOCOL_VERSION_NOT_SUPPORTED 8 /* 0x8 */
129 #define SSH2_DISCONNECT_HOST_KEY_NOT_VERIFIABLE 9 /* 0x9 */
130 #define SSH2_DISCONNECT_CONNECTION_LOST 10 /* 0xa */
131 #define SSH2_DISCONNECT_BY_APPLICATION 11 /* 0xb */
132 #define SSH2_DISCONNECT_TOO_MANY_CONNECTIONS 12 /* 0xc */
133 #define SSH2_DISCONNECT_AUTH_CANCELLED_BY_USER 13 /* 0xd */
134 #define SSH2_DISCONNECT_NO_MORE_AUTH_METHODS_AVAILABLE 14 /* 0xe */
135 #define SSH2_DISCONNECT_ILLEGAL_USER_NAME 15 /* 0xf */
136
137 static const char *const ssh2_disconnect_reasons[] = {
138 NULL,
139 "host not allowed to connect",
140 "protocol error",
141 "key exchange failed",
142 "host authentication failed",
143 "MAC error",
144 "compression error",
145 "service not available",
146 "protocol version not supported",
147 "host key not verifiable",
148 "connection lost",
149 "by application",
150 "too many connections",
151 "auth cancelled by user",
152 "no more auth methods available",
153 "illegal user name",
154 };
155
156 #define SSH2_OPEN_ADMINISTRATIVELY_PROHIBITED 1 /* 0x1 */
157 #define SSH2_OPEN_CONNECT_FAILED 2 /* 0x2 */
158 #define SSH2_OPEN_UNKNOWN_CHANNEL_TYPE 3 /* 0x3 */
159 #define SSH2_OPEN_RESOURCE_SHORTAGE 4 /* 0x4 */
160
161 #define SSH2_EXTENDED_DATA_STDERR 1 /* 0x1 */
162
163 /*
164 * Various remote-bug flags.
165 */
166 #define BUG_CHOKES_ON_SSH1_IGNORE 1
167 #define BUG_SSH2_HMAC 2
168 #define BUG_NEEDS_SSH1_PLAIN_PASSWORD 4
169 #define BUG_CHOKES_ON_RSA 8
170 #define BUG_SSH2_RSA_PADDING 16
171 #define BUG_SSH2_DERIVEKEY 32
172 #define BUG_SSH2_REKEY 64
173 #define BUG_SSH2_PK_SESSIONID 128
174
175 /*
176 * Codes for terminal modes.
177 * Most of these are the same in SSH-1 and SSH-2.
178 * This list is derived from draft-ietf-secsh-connect-25 and
179 * SSH-1 RFC-1.2.31.
180 */
181 static const struct {
182 const char* const mode;
183 int opcode;
184 enum { TTY_OP_CHAR, TTY_OP_BOOL } type;
185 } ssh_ttymodes[] = {
186 /* "V" prefix discarded for special characters relative to SSH specs */
187 { "INTR", 1, TTY_OP_CHAR },
188 { "QUIT", 2, TTY_OP_CHAR },
189 { "ERASE", 3, TTY_OP_CHAR },
190 { "KILL", 4, TTY_OP_CHAR },
191 { "EOF", 5, TTY_OP_CHAR },
192 { "EOL", 6, TTY_OP_CHAR },
193 { "EOL2", 7, TTY_OP_CHAR },
194 { "START", 8, TTY_OP_CHAR },
195 { "STOP", 9, TTY_OP_CHAR },
196 { "SUSP", 10, TTY_OP_CHAR },
197 { "DSUSP", 11, TTY_OP_CHAR },
198 { "REPRINT", 12, TTY_OP_CHAR },
199 { "WERASE", 13, TTY_OP_CHAR },
200 { "LNEXT", 14, TTY_OP_CHAR },
201 { "FLUSH", 15, TTY_OP_CHAR },
202 { "SWTCH", 16, TTY_OP_CHAR },
203 { "STATUS", 17, TTY_OP_CHAR },
204 { "DISCARD", 18, TTY_OP_CHAR },
205 { "IGNPAR", 30, TTY_OP_BOOL },
206 { "PARMRK", 31, TTY_OP_BOOL },
207 { "INPCK", 32, TTY_OP_BOOL },
208 { "ISTRIP", 33, TTY_OP_BOOL },
209 { "INLCR", 34, TTY_OP_BOOL },
210 { "IGNCR", 35, TTY_OP_BOOL },
211 { "ICRNL", 36, TTY_OP_BOOL },
212 { "IUCLC", 37, TTY_OP_BOOL },
213 { "IXON", 38, TTY_OP_BOOL },
214 { "IXANY", 39, TTY_OP_BOOL },
215 { "IXOFF", 40, TTY_OP_BOOL },
216 { "IMAXBEL", 41, TTY_OP_BOOL },
217 { "ISIG", 50, TTY_OP_BOOL },
218 { "ICANON", 51, TTY_OP_BOOL },
219 { "XCASE", 52, TTY_OP_BOOL },
220 { "ECHO", 53, TTY_OP_BOOL },
221 { "ECHOE", 54, TTY_OP_BOOL },
222 { "ECHOK", 55, TTY_OP_BOOL },
223 { "ECHONL", 56, TTY_OP_BOOL },
224 { "NOFLSH", 57, TTY_OP_BOOL },
225 { "TOSTOP", 58, TTY_OP_BOOL },
226 { "IEXTEN", 59, TTY_OP_BOOL },
227 { "ECHOCTL", 60, TTY_OP_BOOL },
228 { "ECHOKE", 61, TTY_OP_BOOL },
229 { "PENDIN", 62, TTY_OP_BOOL }, /* XXX is this a real mode? */
230 { "OPOST", 70, TTY_OP_BOOL },
231 { "OLCUC", 71, TTY_OP_BOOL },
232 { "ONLCR", 72, TTY_OP_BOOL },
233 { "OCRNL", 73, TTY_OP_BOOL },
234 { "ONOCR", 74, TTY_OP_BOOL },
235 { "ONLRET", 75, TTY_OP_BOOL },
236 { "CS7", 90, TTY_OP_BOOL },
237 { "CS8", 91, TTY_OP_BOOL },
238 { "PARENB", 92, TTY_OP_BOOL },
239 { "PARODD", 93, TTY_OP_BOOL }
240 };
241
242 /* Miscellaneous other tty-related constants. */
243 #define SSH_TTY_OP_END 0
244 /* The opcodes for ISPEED/OSPEED differ between SSH-1 and SSH-2. */
245 #define SSH1_TTY_OP_ISPEED 192
246 #define SSH1_TTY_OP_OSPEED 193
247 #define SSH2_TTY_OP_ISPEED 128
248 #define SSH2_TTY_OP_OSPEED 129
249
250 /* Helper functions for parsing tty-related config. */
251 static unsigned int ssh_tty_parse_specchar(char *s)
252 {
253 unsigned int ret;
254 if (*s) {
255 char *next = NULL;
256 ret = ctrlparse(s, &next);
257 if (!next) ret = s[0];
258 } else {
259 ret = 255; /* special value meaning "don't set" */
260 }
261 return ret;
262 }
263 static unsigned int ssh_tty_parse_boolean(char *s)
264 {
265 if (stricmp(s, "yes") == 0 ||
266 stricmp(s, "on") == 0 ||
267 stricmp(s, "true") == 0 ||
268 stricmp(s, "+") == 0)
269 return 1; /* true */
270 else if (stricmp(s, "no") == 0 ||
271 stricmp(s, "off") == 0 ||
272 stricmp(s, "false") == 0 ||
273 stricmp(s, "-") == 0)
274 return 0; /* false */
275 else
276 return (atoi(s) != 0);
277 }
278
279 #define translate(x) if (type == x) return #x
280 #define translatec(x,ctx) if (type == x && (pkt_ctx & ctx)) return #x
281 static char *ssh1_pkt_type(int type)
282 {
283 translate(SSH1_MSG_DISCONNECT);
284 translate(SSH1_SMSG_PUBLIC_KEY);
285 translate(SSH1_CMSG_SESSION_KEY);
286 translate(SSH1_CMSG_USER);
287 translate(SSH1_CMSG_AUTH_RSA);
288 translate(SSH1_SMSG_AUTH_RSA_CHALLENGE);
289 translate(SSH1_CMSG_AUTH_RSA_RESPONSE);
290 translate(SSH1_CMSG_AUTH_PASSWORD);
291 translate(SSH1_CMSG_REQUEST_PTY);
292 translate(SSH1_CMSG_WINDOW_SIZE);
293 translate(SSH1_CMSG_EXEC_SHELL);
294 translate(SSH1_CMSG_EXEC_CMD);
295 translate(SSH1_SMSG_SUCCESS);
296 translate(SSH1_SMSG_FAILURE);
297 translate(SSH1_CMSG_STDIN_DATA);
298 translate(SSH1_SMSG_STDOUT_DATA);
299 translate(SSH1_SMSG_STDERR_DATA);
300 translate(SSH1_CMSG_EOF);
301 translate(SSH1_SMSG_EXIT_STATUS);
302 translate(SSH1_MSG_CHANNEL_OPEN_CONFIRMATION);
303 translate(SSH1_MSG_CHANNEL_OPEN_FAILURE);
304 translate(SSH1_MSG_CHANNEL_DATA);
305 translate(SSH1_MSG_CHANNEL_CLOSE);
306 translate(SSH1_MSG_CHANNEL_CLOSE_CONFIRMATION);
307 translate(SSH1_SMSG_X11_OPEN);
308 translate(SSH1_CMSG_PORT_FORWARD_REQUEST);
309 translate(SSH1_MSG_PORT_OPEN);
310 translate(SSH1_CMSG_AGENT_REQUEST_FORWARDING);
311 translate(SSH1_SMSG_AGENT_OPEN);
312 translate(SSH1_MSG_IGNORE);
313 translate(SSH1_CMSG_EXIT_CONFIRMATION);
314 translate(SSH1_CMSG_X11_REQUEST_FORWARDING);
315 translate(SSH1_CMSG_AUTH_RHOSTS_RSA);
316 translate(SSH1_MSG_DEBUG);
317 translate(SSH1_CMSG_REQUEST_COMPRESSION);
318 translate(SSH1_CMSG_AUTH_TIS);
319 translate(SSH1_SMSG_AUTH_TIS_CHALLENGE);
320 translate(SSH1_CMSG_AUTH_TIS_RESPONSE);
321 translate(SSH1_CMSG_AUTH_CCARD);
322 translate(SSH1_SMSG_AUTH_CCARD_CHALLENGE);
323 translate(SSH1_CMSG_AUTH_CCARD_RESPONSE);
324 return "unknown";
325 }
326 static char *ssh2_pkt_type(int pkt_ctx, int type)
327 {
328 translate(SSH2_MSG_DISCONNECT);
329 translate(SSH2_MSG_IGNORE);
330 translate(SSH2_MSG_UNIMPLEMENTED);
331 translate(SSH2_MSG_DEBUG);
332 translate(SSH2_MSG_SERVICE_REQUEST);
333 translate(SSH2_MSG_SERVICE_ACCEPT);
334 translate(SSH2_MSG_KEXINIT);
335 translate(SSH2_MSG_NEWKEYS);
336 translatec(SSH2_MSG_KEXDH_INIT, SSH2_PKTCTX_DHGROUP);
337 translatec(SSH2_MSG_KEXDH_REPLY, SSH2_PKTCTX_DHGROUP);
338 translatec(SSH2_MSG_KEX_DH_GEX_REQUEST, SSH2_PKTCTX_DHGEX);
339 translatec(SSH2_MSG_KEX_DH_GEX_GROUP, SSH2_PKTCTX_DHGEX);
340 translatec(SSH2_MSG_KEX_DH_GEX_INIT, SSH2_PKTCTX_DHGEX);
341 translatec(SSH2_MSG_KEX_DH_GEX_REPLY, SSH2_PKTCTX_DHGEX);
342 translate(SSH2_MSG_USERAUTH_REQUEST);
343 translate(SSH2_MSG_USERAUTH_FAILURE);
344 translate(SSH2_MSG_USERAUTH_SUCCESS);
345 translate(SSH2_MSG_USERAUTH_BANNER);
346 translatec(SSH2_MSG_USERAUTH_PK_OK, SSH2_PKTCTX_PUBLICKEY);
347 translatec(SSH2_MSG_USERAUTH_PASSWD_CHANGEREQ, SSH2_PKTCTX_PASSWORD);
348 translatec(SSH2_MSG_USERAUTH_INFO_REQUEST, SSH2_PKTCTX_KBDINTER);
349 translatec(SSH2_MSG_USERAUTH_INFO_RESPONSE, SSH2_PKTCTX_KBDINTER);
350 translate(SSH2_MSG_GLOBAL_REQUEST);
351 translate(SSH2_MSG_REQUEST_SUCCESS);
352 translate(SSH2_MSG_REQUEST_FAILURE);
353 translate(SSH2_MSG_CHANNEL_OPEN);
354 translate(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION);
355 translate(SSH2_MSG_CHANNEL_OPEN_FAILURE);
356 translate(SSH2_MSG_CHANNEL_WINDOW_ADJUST);
357 translate(SSH2_MSG_CHANNEL_DATA);
358 translate(SSH2_MSG_CHANNEL_EXTENDED_DATA);
359 translate(SSH2_MSG_CHANNEL_EOF);
360 translate(SSH2_MSG_CHANNEL_CLOSE);
361 translate(SSH2_MSG_CHANNEL_REQUEST);
362 translate(SSH2_MSG_CHANNEL_SUCCESS);
363 translate(SSH2_MSG_CHANNEL_FAILURE);
364 return "unknown";
365 }
366 #undef translate
367 #undef translatec
368
369 /* Enumeration values for fields in SSH-1 packets */
370 enum {
371 PKT_END, PKT_INT, PKT_CHAR, PKT_DATA, PKT_STR, PKT_BIGNUM,
372 /* These values are for communicating relevant semantics of
373 * fields to the packet logging code. */
374 PKTT_OTHER, PKTT_PASSWORD, PKTT_DATA
375 };
376
377 /*
378 * Coroutine mechanics for the sillier bits of the code. If these
379 * macros look impenetrable to you, you might find it helpful to
380 * read
381 *
382 * http://www.chiark.greenend.org.uk/~sgtatham/coroutines.html
383 *
384 * which explains the theory behind these macros.
385 *
386 * In particular, if you are getting `case expression not constant'
387 * errors when building with MS Visual Studio, this is because MS's
388 * Edit and Continue debugging feature causes their compiler to
389 * violate ANSI C. To disable Edit and Continue debugging:
390 *
391 * - right-click ssh.c in the FileView
392 * - click Settings
393 * - select the C/C++ tab and the General category
394 * - under `Debug info:', select anything _other_ than `Program
395 * Database for Edit and Continue'.
396 */
397 #define crBegin(v) { int *crLine = &v; switch(v) { case 0:;
398 #define crState(t) \
399 struct t *s; \
400 if (!ssh->t) ssh->t = snew(struct t); \
401 s = ssh->t;
402 #define crFinish(z) } *crLine = 0; return (z); }
403 #define crFinishV } *crLine = 0; return; }
404 #define crReturn(z) \
405 do {\
406 *crLine =__LINE__; return (z); case __LINE__:;\
407 } while (0)
408 #define crReturnV \
409 do {\
410 *crLine=__LINE__; return; case __LINE__:;\
411 } while (0)
412 #define crStop(z) do{ *crLine = 0; return (z); }while(0)
413 #define crStopV do{ *crLine = 0; return; }while(0)
414 #define crWaitUntil(c) do { crReturn(0); } while (!(c))
415 #define crWaitUntilV(c) do { crReturnV; } while (!(c))
416
417 typedef struct ssh_tag *Ssh;
418 struct Packet;
419
420 static struct Packet *ssh1_pkt_init(int pkt_type);
421 static struct Packet *ssh2_pkt_init(int pkt_type);
422 static void ssh_pkt_ensure(struct Packet *, int length);
423 static void ssh_pkt_adddata(struct Packet *, void *data, int len);
424 static void ssh_pkt_addbyte(struct Packet *, unsigned char value);
425 static void ssh2_pkt_addbool(struct Packet *, unsigned char value);
426 static void ssh_pkt_adduint32(struct Packet *, unsigned long value);
427 static void ssh_pkt_addstring_start(struct Packet *);
428 static void ssh_pkt_addstring_str(struct Packet *, char *data);
429 static void ssh_pkt_addstring_data(struct Packet *, char *data, int len);
430 static void ssh_pkt_addstring(struct Packet *, char *data);
431 static unsigned char *ssh2_mpint_fmt(Bignum b, int *len);
432 static void ssh1_pkt_addmp(struct Packet *, Bignum b);
433 static void ssh2_pkt_addmp(struct Packet *, Bignum b);
434 static int ssh2_pkt_construct(Ssh, struct Packet *);
435 static void ssh2_pkt_send(Ssh, struct Packet *);
436 static void ssh2_pkt_send_noqueue(Ssh, struct Packet *);
437 static int do_ssh1_login(Ssh ssh, unsigned char *in, int inlen,
438 struct Packet *pktin);
439 static void do_ssh2_authconn(Ssh ssh, unsigned char *in, int inlen,
440 struct Packet *pktin);
441
442 /*
443 * Buffer management constants. There are several of these for
444 * various different purposes:
445 *
446 * - SSH1_BUFFER_LIMIT is the amount of backlog that must build up
447 * on a local data stream before we throttle the whole SSH
448 * connection (in SSH-1 only). Throttling the whole connection is
449 * pretty drastic so we set this high in the hope it won't
450 * happen very often.
451 *
452 * - SSH_MAX_BACKLOG is the amount of backlog that must build up
453 * on the SSH connection itself before we defensively throttle
454 * _all_ local data streams. This is pretty drastic too (though
455 * thankfully unlikely in SSH-2 since the window mechanism should
456 * ensure that the server never has any need to throttle its end
457 * of the connection), so we set this high as well.
458 *
459 * - OUR_V2_WINSIZE is the maximum window size we present on SSH-2
460 * channels.
461 */
462
463 #define SSH1_BUFFER_LIMIT 32768
464 #define SSH_MAX_BACKLOG 32768
465 #define OUR_V2_WINSIZE 16384
466 #define OUR_V2_MAXPKT 0x4000UL
467
468 /* Maximum length of passwords/passphrases (arbitrary) */
469 #define SSH_MAX_PASSWORD_LEN 100
470
471 const static struct ssh_signkey *hostkey_algs[] = { &ssh_rsa, &ssh_dss };
472
473 const static struct ssh_mac *macs[] = {
474 &ssh_hmac_sha1, &ssh_hmac_sha1_96, &ssh_hmac_md5
475 };
476 const static struct ssh_mac *buggymacs[] = {
477 &ssh_hmac_sha1_buggy, &ssh_hmac_sha1_96_buggy, &ssh_hmac_md5
478 };
479
480 static void *ssh_comp_none_init(void)
481 {
482 return NULL;
483 }
484 static void ssh_comp_none_cleanup(void *handle)
485 {
486 }
487 static int ssh_comp_none_block(void *handle, unsigned char *block, int len,
488 unsigned char **outblock, int *outlen)
489 {
490 return 0;
491 }
492 static int ssh_comp_none_disable(void *handle)
493 {
494 return 0;
495 }
496 const static struct ssh_compress ssh_comp_none = {
497 "none",
498 ssh_comp_none_init, ssh_comp_none_cleanup, ssh_comp_none_block,
499 ssh_comp_none_init, ssh_comp_none_cleanup, ssh_comp_none_block,
500 ssh_comp_none_disable, NULL
501 };
502 extern const struct ssh_compress ssh_zlib;
503 const static struct ssh_compress *compressions[] = {
504 &ssh_zlib, &ssh_comp_none
505 };
506
507 enum { /* channel types */
508 CHAN_MAINSESSION,
509 CHAN_X11,
510 CHAN_AGENT,
511 CHAN_SOCKDATA,
512 CHAN_SOCKDATA_DORMANT /* one the remote hasn't confirmed */
513 };
514
515 /*
516 * 2-3-4 tree storing channels.
517 */
518 struct ssh_channel {
519 Ssh ssh; /* pointer back to main context */
520 unsigned remoteid, localid;
521 int type;
522 /* True if we opened this channel but server hasn't confirmed. */
523 int halfopen;
524 /*
525 * In SSH-1, this value contains four bits:
526 *
527 * 1 We have sent SSH1_MSG_CHANNEL_CLOSE.
528 * 2 We have sent SSH1_MSG_CHANNEL_CLOSE_CONFIRMATION.
529 * 4 We have received SSH1_MSG_CHANNEL_CLOSE.
530 * 8 We have received SSH1_MSG_CHANNEL_CLOSE_CONFIRMATION.
531 *
532 * A channel is completely finished with when all four bits are set.
533 */
534 int closes;
535 union {
536 struct ssh1_data_channel {
537 int throttling;
538 } v1;
539 struct ssh2_data_channel {
540 bufchain outbuffer;
541 unsigned remwindow, remmaxpkt;
542 unsigned locwindow;
543 } v2;
544 } v;
545 union {
546 struct ssh_agent_channel {
547 unsigned char *message;
548 unsigned char msglen[4];
549 unsigned lensofar, totallen;
550 } a;
551 struct ssh_x11_channel {
552 Socket s;
553 } x11;
554 struct ssh_pfd_channel {
555 Socket s;
556 } pfd;
557 } u;
558 };
559
560 /*
561 * 2-3-4 tree storing remote->local port forwardings. SSH-1 and SSH-2
562 * use this structure in different ways, reflecting SSH-2's
563 * altogether saner approach to port forwarding.
564 *
565 * In SSH-1, you arrange a remote forwarding by sending the server
566 * the remote port number, and the local destination host:port.
567 * When a connection comes in, the server sends you back that
568 * host:port pair, and you connect to it. This is a ready-made
569 * security hole if you're not on the ball: a malicious server
570 * could send you back _any_ host:port pair, so if you trustingly
571 * connect to the address it gives you then you've just opened the
572 * entire inside of your corporate network just by connecting
573 * through it to a dodgy SSH server. Hence, we must store a list of
574 * host:port pairs we _are_ trying to forward to, and reject a
575 * connection request from the server if it's not in the list.
576 *
577 * In SSH-2, each side of the connection minds its own business and
578 * doesn't send unnecessary information to the other. You arrange a
579 * remote forwarding by sending the server just the remote port
580 * number. When a connection comes in, the server tells you which
581 * of its ports was connected to; and _you_ have to remember what
582 * local host:port pair went with that port number.
583 *
584 * Hence, in SSH-1 this structure is indexed by destination
585 * host:port pair, whereas in SSH-2 it is indexed by source port.
586 */
587 struct ssh_portfwd; /* forward declaration */
588
589 struct ssh_rportfwd {
590 unsigned sport, dport;
591 char dhost[256];
592 char *sportdesc;
593 struct ssh_portfwd *pfrec;
594 };
595 #define free_rportfwd(pf) ( \
596 ((pf) ? (sfree((pf)->sportdesc)) : (void)0 ), sfree(pf) )
597
598 /*
599 * Separately to the rportfwd tree (which is for looking up port
600 * open requests from the server), a tree of _these_ structures is
601 * used to keep track of all the currently open port forwardings,
602 * so that we can reconfigure in mid-session if the user requests
603 * it.
604 */
605 struct ssh_portfwd {
606 enum { DESTROY, KEEP, CREATE } status;
607 int type;
608 unsigned sport, dport;
609 char *saddr, *daddr;
610 char *sserv, *dserv;
611 struct ssh_rportfwd *remote;
612 int addressfamily;
613 void *local;
614 };
615 #define free_portfwd(pf) ( \
616 ((pf) ? (sfree((pf)->saddr), sfree((pf)->daddr), \
617 sfree((pf)->sserv), sfree((pf)->dserv)) : (void)0 ), sfree(pf) )
618
619 struct Packet {
620 long length; /* length of `data' actually used */
621 long forcepad; /* SSH-2: force padding to at least this length */
622 int type; /* only used for incoming packets */
623 unsigned long sequence; /* SSH-2 incoming sequence number */
624 unsigned char *data; /* allocated storage */
625 unsigned char *body; /* offset of payload within `data' */
626 long savedpos; /* temporary index into `data' (for strings) */
627 long maxlen; /* amount of storage allocated for `data' */
628 long encrypted_len; /* for SSH-2 total-size counting */
629
630 /*
631 * State associated with packet logging
632 */
633 int logmode;
634 int nblanks;
635 struct logblank_t *blanks;
636 };
637
638 static void ssh1_protocol(Ssh ssh, void *vin, int inlen,
639 struct Packet *pktin);
640 static void ssh2_protocol(Ssh ssh, void *vin, int inlen,
641 struct Packet *pktin);
642 static void ssh1_protocol_setup(Ssh ssh);
643 static void ssh2_protocol_setup(Ssh ssh);
644 static void ssh_size(void *handle, int width, int height);
645 static void ssh_special(void *handle, Telnet_Special);
646 static int ssh2_try_send(struct ssh_channel *c);
647 static void ssh2_add_channel_data(struct ssh_channel *c, char *buf, int len);
648 static void ssh_throttle_all(Ssh ssh, int enable, int bufsize);
649 static void ssh2_set_window(struct ssh_channel *c, unsigned newwin);
650 static int ssh_sendbuffer(void *handle);
651 static int ssh_do_close(Ssh ssh, int notify_exit);
652 static unsigned long ssh_pkt_getuint32(struct Packet *pkt);
653 static int ssh2_pkt_getbool(struct Packet *pkt);
654 static void ssh_pkt_getstring(struct Packet *pkt, char **p, int *length);
655 static void ssh2_timer(void *ctx, long now);
656 static int do_ssh2_transport(Ssh ssh, void *vin, int inlen,
657 struct Packet *pktin);
658
659 struct rdpkt1_state_tag {
660 long len, pad, biglen, to_read;
661 unsigned long realcrc, gotcrc;
662 unsigned char *p;
663 int i;
664 int chunk;
665 struct Packet *pktin;
666 };
667
668 struct rdpkt2_state_tag {
669 long len, pad, payload, packetlen, maclen;
670 int i;
671 int cipherblk;
672 unsigned long incoming_sequence;
673 struct Packet *pktin;
674 };
675
676 typedef void (*handler_fn_t)(Ssh ssh, struct Packet *pktin);
677 typedef void (*chandler_fn_t)(Ssh ssh, struct Packet *pktin, void *ctx);
678
679 struct queued_handler;
680 struct queued_handler {
681 int msg1, msg2;
682 chandler_fn_t handler;
683 void *ctx;
684 struct queued_handler *next;
685 };
686
687 struct ssh_tag {
688 const struct plug_function_table *fn;
689 /* the above field _must_ be first in the structure */
690
691 char *v_c, *v_s;
692 void *exhash;
693
694 Socket s;
695
696 void *ldisc;
697 void *logctx;
698
699 unsigned char session_key[32];
700 int v1_compressing;
701 int v1_remote_protoflags;
702 int v1_local_protoflags;
703 int agentfwd_enabled;
704 int X11_fwd_enabled;
705 int remote_bugs;
706 const struct ssh_cipher *cipher;
707 void *v1_cipher_ctx;
708 void *crcda_ctx;
709 const struct ssh2_cipher *cscipher, *sccipher;
710 void *cs_cipher_ctx, *sc_cipher_ctx;
711 const struct ssh_mac *csmac, *scmac;
712 void *cs_mac_ctx, *sc_mac_ctx;
713 const struct ssh_compress *cscomp, *sccomp;
714 void *cs_comp_ctx, *sc_comp_ctx;
715 const struct ssh_kex *kex;
716 const struct ssh_signkey *hostkey;
717 unsigned char v2_session_id[SSH2_KEX_MAX_HASH_LEN];
718 int v2_session_id_len;
719 void *kex_ctx;
720
721 char *savedhost;
722 int savedport;
723 int send_ok;
724 int echoing, editing;
725
726 void *frontend;
727
728 int ospeed, ispeed; /* temporaries */
729 int term_width, term_height;
730
731 tree234 *channels; /* indexed by local id */
732 struct ssh_channel *mainchan; /* primary session channel */
733 int ncmode; /* is primary channel direct-tcpip? */
734 int exitcode;
735 int close_expected;
736 int clean_exit;
737
738 tree234 *rportfwds, *portfwds;
739
740 enum {
741 SSH_STATE_PREPACKET,
742 SSH_STATE_BEFORE_SIZE,
743 SSH_STATE_INTERMED,
744 SSH_STATE_SESSION,
745 SSH_STATE_CLOSED
746 } state;
747
748 int size_needed, eof_needed;
749
750 struct Packet **queue;
751 int queuelen, queuesize;
752 int queueing;
753 unsigned char *deferred_send_data;
754 int deferred_len, deferred_size;
755
756 /*
757 * Gross hack: pscp will try to start SFTP but fall back to
758 * scp1 if that fails. This variable is the means by which
759 * scp.c can reach into the SSH code and find out which one it
760 * got.
761 */
762 int fallback_cmd;
763
764 bufchain banner; /* accumulates banners during do_ssh2_authconn */
765
766 int pkt_ctx;
767
768 void *x11auth;
769
770 int version;
771 int v1_throttle_count;
772 int overall_bufsize;
773 int throttled_all;
774 int v1_stdout_throttling;
775 unsigned long v2_outgoing_sequence;
776
777 int ssh1_rdpkt_crstate;
778 int ssh2_rdpkt_crstate;
779 int do_ssh_init_crstate;
780 int ssh_gotdata_crstate;
781 int do_ssh1_login_crstate;
782 int do_ssh1_connection_crstate;
783 int do_ssh2_transport_crstate;
784 int do_ssh2_authconn_crstate;
785
786 void *do_ssh_init_state;
787 void *do_ssh1_login_state;
788 void *do_ssh2_transport_state;
789 void *do_ssh2_authconn_state;
790
791 struct rdpkt1_state_tag rdpkt1_state;
792 struct rdpkt2_state_tag rdpkt2_state;
793
794 /* SSH-1 and SSH-2 use this for different things, but both use it */
795 int protocol_initial_phase_done;
796
797 void (*protocol) (Ssh ssh, void *vin, int inlen,
798 struct Packet *pkt);
799 struct Packet *(*s_rdpkt) (Ssh ssh, unsigned char **data, int *datalen);
800
801 /*
802 * We maintain a full _copy_ of a Config structure here, not
803 * merely a pointer to it. That way, when we're passed a new
804 * one for reconfiguration, we can check the differences and
805 * potentially reconfigure port forwardings etc in mid-session.
806 */
807 Config cfg;
808
809 /*
810 * Used to transfer data back from async callbacks.
811 */
812 void *agent_response;
813 int agent_response_len;
814 int user_response;
815
816 /*
817 * The SSH connection can be set as `frozen', meaning we are
818 * not currently accepting incoming data from the network. This
819 * is slightly more serious than setting the _socket_ as
820 * frozen, because we may already have had data passed to us
821 * from the network which we need to delay processing until
822 * after the freeze is lifted, so we also need a bufchain to
823 * store that data.
824 */
825 int frozen;
826 bufchain queued_incoming_data;
827
828 /*
829 * Dispatch table for packet types that we may have to deal
830 * with at any time.
831 */
832 handler_fn_t packet_dispatch[256];
833
834 /*
835 * Queues of one-off handler functions for success/failure
836 * indications from a request.
837 */
838 struct queued_handler *qhead, *qtail;
839
840 /*
841 * This module deals with sending keepalives.
842 */
843 Pinger pinger;
844
845 /*
846 * Track incoming and outgoing data sizes and time, for
847 * size-based rekeys.
848 */
849 unsigned long incoming_data_size, outgoing_data_size, deferred_data_size;
850 unsigned long max_data_size;
851 int kex_in_progress;
852 long next_rekey, last_rekey;
853 char *deferred_rekey_reason; /* points to STATIC string; don't free */
854 };
855
856 #define logevent(s) logevent(ssh->frontend, s)
857
858 /* logevent, only printf-formatted. */
859 static void logeventf(Ssh ssh, const char *fmt, ...)
860 {
861 va_list ap;
862 char *buf;
863
864 va_start(ap, fmt);
865 buf = dupvprintf(fmt, ap);
866 va_end(ap);
867 logevent(buf);
868 sfree(buf);
869 }
870
871 #define bombout(msg) \
872 do { \
873 char *text = dupprintf msg; \
874 ssh_do_close(ssh, FALSE); \
875 logevent(text); \
876 connection_fatal(ssh->frontend, "%s", text); \
877 sfree(text); \
878 } while (0)
879
880 /* Functions to leave bits out of the SSH packet log file. */
881
882 static void dont_log_password(Ssh ssh, struct Packet *pkt, int blanktype)
883 {
884 if (ssh->cfg.logomitpass)
885 pkt->logmode = blanktype;
886 }
887
888 static void dont_log_data(Ssh ssh, struct Packet *pkt, int blanktype)
889 {
890 if (ssh->cfg.logomitdata)
891 pkt->logmode = blanktype;
892 }
893
894 static void end_log_omission(Ssh ssh, struct Packet *pkt)
895 {
896 pkt->logmode = PKTLOG_EMIT;
897 }
898
899 /* Helper function for common bits of parsing cfg.ttymodes. */
900 static void parse_ttymodes(Ssh ssh, char *modes,
901 void (*do_mode)(void *data, char *mode, char *val),
902 void *data)
903 {
904 while (*modes) {
905 char *t = strchr(modes, '\t');
906 char *m = snewn(t-modes+1, char);
907 char *val;
908 strncpy(m, modes, t-modes);
909 m[t-modes] = '\0';
910 if (*(t+1) == 'A')
911 val = get_ttymode(ssh->frontend, m);
912 else
913 val = dupstr(t+2);
914 if (val)
915 do_mode(data, m, val);
916 sfree(m);
917 sfree(val);
918 modes += strlen(modes) + 1;
919 }
920 }
921
922 static int ssh_channelcmp(void *av, void *bv)
923 {
924 struct ssh_channel *a = (struct ssh_channel *) av;
925 struct ssh_channel *b = (struct ssh_channel *) bv;
926 if (a->localid < b->localid)
927 return -1;
928 if (a->localid > b->localid)
929 return +1;
930 return 0;
931 }
932 static int ssh_channelfind(void *av, void *bv)
933 {
934 unsigned *a = (unsigned *) av;
935 struct ssh_channel *b = (struct ssh_channel *) bv;
936 if (*a < b->localid)
937 return -1;
938 if (*a > b->localid)
939 return +1;
940 return 0;
941 }
942
943 static int ssh_rportcmp_ssh1(void *av, void *bv)
944 {
945 struct ssh_rportfwd *a = (struct ssh_rportfwd *) av;
946 struct ssh_rportfwd *b = (struct ssh_rportfwd *) bv;
947 int i;
948 if ( (i = strcmp(a->dhost, b->dhost)) != 0)
949 return i < 0 ? -1 : +1;
950 if (a->dport > b->dport)
951 return +1;
952 if (a->dport < b->dport)
953 return -1;
954 return 0;
955 }
956
957 static int ssh_rportcmp_ssh2(void *av, void *bv)
958 {
959 struct ssh_rportfwd *a = (struct ssh_rportfwd *) av;
960 struct ssh_rportfwd *b = (struct ssh_rportfwd *) bv;
961
962 if (a->sport > b->sport)
963 return +1;
964 if (a->sport < b->sport)
965 return -1;
966 return 0;
967 }
968
969 /*
970 * Special form of strcmp which can cope with NULL inputs. NULL is
971 * defined to sort before even the empty string.
972 */
973 static int nullstrcmp(const char *a, const char *b)
974 {
975 if (a == NULL && b == NULL)
976 return 0;
977 if (a == NULL)
978 return -1;
979 if (b == NULL)
980 return +1;
981 return strcmp(a, b);
982 }
983
984 static int ssh_portcmp(void *av, void *bv)
985 {
986 struct ssh_portfwd *a = (struct ssh_portfwd *) av;
987 struct ssh_portfwd *b = (struct ssh_portfwd *) bv;
988 int i;
989 if (a->type > b->type)
990 return +1;
991 if (a->type < b->type)
992 return -1;
993 if (a->addressfamily > b->addressfamily)
994 return +1;
995 if (a->addressfamily < b->addressfamily)
996 return -1;
997 if ( (i = nullstrcmp(a->saddr, b->saddr)) != 0)
998 return i < 0 ? -1 : +1;
999 if (a->sport > b->sport)
1000 return +1;
1001 if (a->sport < b->sport)
1002 return -1;
1003 if (a->type != 'D') {
1004 if ( (i = nullstrcmp(a->daddr, b->daddr)) != 0)
1005 return i < 0 ? -1 : +1;
1006 if (a->dport > b->dport)
1007 return +1;
1008 if (a->dport < b->dport)
1009 return -1;
1010 }
1011 return 0;
1012 }
1013
1014 static int alloc_channel_id(Ssh ssh)
1015 {
1016 const unsigned CHANNEL_NUMBER_OFFSET = 256;
1017 unsigned low, high, mid;
1018 int tsize;
1019 struct ssh_channel *c;
1020
1021 /*
1022 * First-fit allocation of channel numbers: always pick the
1023 * lowest unused one. To do this, binary-search using the
1024 * counted B-tree to find the largest channel ID which is in a
1025 * contiguous sequence from the beginning. (Precisely
1026 * everything in that sequence must have ID equal to its tree
1027 * index plus CHANNEL_NUMBER_OFFSET.)
1028 */
1029 tsize = count234(ssh->channels);
1030
1031 low = -1;
1032 high = tsize;
1033 while (high - low > 1) {
1034 mid = (high + low) / 2;
1035 c = index234(ssh->channels, mid);
1036 if (c->localid == mid + CHANNEL_NUMBER_OFFSET)
1037 low = mid; /* this one is fine */
1038 else
1039 high = mid; /* this one is past it */
1040 }
1041 /*
1042 * Now low points to either -1, or the tree index of the
1043 * largest ID in the initial sequence.
1044 */
1045 {
1046 unsigned i = low + 1 + CHANNEL_NUMBER_OFFSET;
1047 assert(NULL == find234(ssh->channels, &i, ssh_channelfind));
1048 }
1049 return low + 1 + CHANNEL_NUMBER_OFFSET;
1050 }
1051
1052 static void c_write_stderr(int trusted, const char *buf, int len)
1053 {
1054 int i;
1055 for (i = 0; i < len; i++)
1056 if (buf[i] != '\r' && (trusted || buf[i] == '\n' || (buf[i] & 0x60)))
1057 fputc(buf[i], stderr);
1058 }
1059
1060 static void c_write(Ssh ssh, const char *buf, int len)
1061 {
1062 if (flags & FLAG_STDERR)
1063 c_write_stderr(1, buf, len);
1064 else
1065 from_backend(ssh->frontend, 1, buf, len);
1066 }
1067
1068 static void c_write_untrusted(Ssh ssh, const char *buf, int len)
1069 {
1070 if (flags & FLAG_STDERR)
1071 c_write_stderr(0, buf, len);
1072 else
1073 from_backend_untrusted(ssh->frontend, buf, len);
1074 }
1075
1076 static void c_write_str(Ssh ssh, const char *buf)
1077 {
1078 c_write(ssh, buf, strlen(buf));
1079 }
1080
1081 static void ssh_free_packet(struct Packet *pkt)
1082 {
1083 sfree(pkt->data);
1084 sfree(pkt);
1085 }
1086 static struct Packet *ssh_new_packet(void)
1087 {
1088 struct Packet *pkt = snew(struct Packet);
1089
1090 pkt->body = pkt->data = NULL;
1091 pkt->maxlen = 0;
1092 pkt->logmode = PKTLOG_EMIT;
1093 pkt->nblanks = 0;
1094 pkt->blanks = NULL;
1095
1096 return pkt;
1097 }
1098
1099 /*
1100 * Collect incoming data in the incoming packet buffer.
1101 * Decipher and verify the packet when it is completely read.
1102 * Drop SSH1_MSG_DEBUG and SSH1_MSG_IGNORE packets.
1103 * Update the *data and *datalen variables.
1104 * Return a Packet structure when a packet is completed.
1105 */
1106 static struct Packet *ssh1_rdpkt(Ssh ssh, unsigned char **data, int *datalen)
1107 {
1108 struct rdpkt1_state_tag *st = &ssh->rdpkt1_state;
1109
1110 crBegin(ssh->ssh1_rdpkt_crstate);
1111
1112 st->pktin = ssh_new_packet();
1113
1114 st->pktin->type = 0;
1115 st->pktin->length = 0;
1116
1117 for (st->i = st->len = 0; st->i < 4; st->i++) {
1118 while ((*datalen) == 0)
1119 crReturn(NULL);
1120 st->len = (st->len << 8) + **data;
1121 (*data)++, (*datalen)--;
1122 }
1123
1124 st->pad = 8 - (st->len % 8);
1125 st->biglen = st->len + st->pad;
1126 st->pktin->length = st->len - 5;
1127
1128 if (st->biglen < 0) {
1129 bombout(("Extremely large packet length from server suggests"
1130 " data stream corruption"));
1131 ssh_free_packet(st->pktin);
1132 crStop(NULL);
1133 }
1134
1135 st->pktin->maxlen = st->biglen;
1136 st->pktin->data = snewn(st->biglen + APIEXTRA, unsigned char);
1137
1138 st->to_read = st->biglen;
1139 st->p = st->pktin->data;
1140 while (st->to_read > 0) {
1141 st->chunk = st->to_read;
1142 while ((*datalen) == 0)
1143 crReturn(NULL);
1144 if (st->chunk > (*datalen))
1145 st->chunk = (*datalen);
1146 memcpy(st->p, *data, st->chunk);
1147 *data += st->chunk;
1148 *datalen -= st->chunk;
1149 st->p += st->chunk;
1150 st->to_read -= st->chunk;
1151 }
1152
1153 if (ssh->cipher && detect_attack(ssh->crcda_ctx, st->pktin->data,
1154 st->biglen, NULL)) {
1155 bombout(("Network attack (CRC compensation) detected!"));
1156 ssh_free_packet(st->pktin);
1157 crStop(NULL);
1158 }
1159
1160 if (ssh->cipher)
1161 ssh->cipher->decrypt(ssh->v1_cipher_ctx, st->pktin->data, st->biglen);
1162
1163 st->realcrc = crc32_compute(st->pktin->data, st->biglen - 4);
1164 st->gotcrc = GET_32BIT(st->pktin->data + st->biglen - 4);
1165 if (st->gotcrc != st->realcrc) {
1166 bombout(("Incorrect CRC received on packet"));
1167 ssh_free_packet(st->pktin);
1168 crStop(NULL);
1169 }
1170
1171 st->pktin->body = st->pktin->data + st->pad + 1;
1172 st->pktin->savedpos = 0;
1173
1174 if (ssh->v1_compressing) {
1175 unsigned char *decompblk;
1176 int decomplen;
1177 if (!zlib_decompress_block(ssh->sc_comp_ctx,
1178 st->pktin->body - 1, st->pktin->length + 1,
1179 &decompblk, &decomplen)) {
1180 bombout(("Zlib decompression encountered invalid data"));
1181 ssh_free_packet(st->pktin);
1182 crStop(NULL);
1183 }
1184
1185 if (st->pktin->maxlen < st->pad + decomplen) {
1186 st->pktin->maxlen = st->pad + decomplen;
1187 st->pktin->data = sresize(st->pktin->data,
1188 st->pktin->maxlen + APIEXTRA,
1189 unsigned char);
1190 st->pktin->body = st->pktin->data + st->pad + 1;
1191 }
1192
1193 memcpy(st->pktin->body - 1, decompblk, decomplen);
1194 sfree(decompblk);
1195 st->pktin->length = decomplen - 1;
1196 }
1197
1198 st->pktin->type = st->pktin->body[-1];
1199
1200 /*
1201 * Log incoming packet, possibly omitting sensitive fields.
1202 */
1203 if (ssh->logctx) {
1204 int nblanks = 0;
1205 struct logblank_t blank;
1206 if (ssh->cfg.logomitdata) {
1207 int do_blank = FALSE, blank_prefix = 0;
1208 /* "Session data" packets - omit the data field */
1209 if ((st->pktin->type == SSH1_SMSG_STDOUT_DATA) ||
1210 (st->pktin->type == SSH1_SMSG_STDERR_DATA)) {
1211 do_blank = TRUE; blank_prefix = 0;
1212 } else if (st->pktin->type == SSH1_MSG_CHANNEL_DATA) {
1213 do_blank = TRUE; blank_prefix = 4;
1214 }
1215 if (do_blank) {
1216 blank.offset = blank_prefix;
1217 blank.len = st->pktin->length;
1218 blank.type = PKTLOG_OMIT;
1219 nblanks = 1;
1220 }
1221 }
1222 log_packet(ssh->logctx,
1223 PKT_INCOMING, st->pktin->type,
1224 ssh1_pkt_type(st->pktin->type),
1225 st->pktin->body, st->pktin->length,
1226 nblanks, &blank);
1227 }
1228
1229 crFinish(st->pktin);
1230 }
1231
1232 static struct Packet *ssh2_rdpkt(Ssh ssh, unsigned char **data, int *datalen)
1233 {
1234 struct rdpkt2_state_tag *st = &ssh->rdpkt2_state;
1235
1236 crBegin(ssh->ssh2_rdpkt_crstate);
1237
1238 st->pktin = ssh_new_packet();
1239
1240 st->pktin->type = 0;
1241 st->pktin->length = 0;
1242 if (ssh->sccipher)
1243 st->cipherblk = ssh->sccipher->blksize;
1244 else
1245 st->cipherblk = 8;
1246 if (st->cipherblk < 8)
1247 st->cipherblk = 8;
1248
1249 st->pktin->data = snewn(st->cipherblk + APIEXTRA, unsigned char);
1250
1251 /*
1252 * Acquire and decrypt the first block of the packet. This will
1253 * contain the length and padding details.
1254 */
1255 for (st->i = st->len = 0; st->i < st->cipherblk; st->i++) {
1256 while ((*datalen) == 0)
1257 crReturn(NULL);
1258 st->pktin->data[st->i] = *(*data)++;
1259 (*datalen)--;
1260 }
1261
1262 if (ssh->sccipher)
1263 ssh->sccipher->decrypt(ssh->sc_cipher_ctx,
1264 st->pktin->data, st->cipherblk);
1265
1266 /*
1267 * Now get the length and padding figures.
1268 */
1269 st->len = GET_32BIT(st->pktin->data);
1270 st->pad = st->pktin->data[4];
1271
1272 /*
1273 * _Completely_ silly lengths should be stomped on before they
1274 * do us any more damage.
1275 */
1276 if (st->len < 0 || st->len > 35000 || st->pad < 4 ||
1277 st->len - st->pad < 1 || (st->len + 4) % st->cipherblk != 0) {
1278 bombout(("Incoming packet was garbled on decryption"));
1279 ssh_free_packet(st->pktin);
1280 crStop(NULL);
1281 }
1282
1283 /*
1284 * This enables us to deduce the payload length.
1285 */
1286 st->payload = st->len - st->pad - 1;
1287
1288 st->pktin->length = st->payload + 5;
1289
1290 /*
1291 * So now we can work out the total packet length.
1292 */
1293 st->packetlen = st->len + 4;
1294 st->maclen = ssh->scmac ? ssh->scmac->len : 0;
1295
1296 /*
1297 * Allocate memory for the rest of the packet.
1298 */
1299 st->pktin->maxlen = st->packetlen + st->maclen;
1300 st->pktin->data = sresize(st->pktin->data,
1301 st->pktin->maxlen + APIEXTRA,
1302 unsigned char);
1303
1304 /*
1305 * Read and decrypt the remainder of the packet.
1306 */
1307 for (st->i = st->cipherblk; st->i < st->packetlen + st->maclen;
1308 st->i++) {
1309 while ((*datalen) == 0)
1310 crReturn(NULL);
1311 st->pktin->data[st->i] = *(*data)++;
1312 (*datalen)--;
1313 }
1314 /* Decrypt everything _except_ the MAC. */
1315 if (ssh->sccipher)
1316 ssh->sccipher->decrypt(ssh->sc_cipher_ctx,
1317 st->pktin->data + st->cipherblk,
1318 st->packetlen - st->cipherblk);
1319
1320 st->pktin->encrypted_len = st->packetlen;
1321
1322 /*
1323 * Check the MAC.
1324 */
1325 if (ssh->scmac
1326 && !ssh->scmac->verify(ssh->sc_mac_ctx, st->pktin->data, st->len + 4,
1327 st->incoming_sequence)) {
1328 bombout(("Incorrect MAC received on packet"));
1329 ssh_free_packet(st->pktin);
1330 crStop(NULL);
1331 }
1332
1333 st->pktin->sequence = st->incoming_sequence++;
1334
1335 /*
1336 * Decompress packet payload.
1337 */
1338 {
1339 unsigned char *newpayload;
1340 int newlen;
1341 if (ssh->sccomp &&
1342 ssh->sccomp->decompress(ssh->sc_comp_ctx,
1343 st->pktin->data + 5, st->pktin->length - 5,
1344 &newpayload, &newlen)) {
1345 if (st->pktin->maxlen < newlen + 5) {
1346 st->pktin->maxlen = newlen + 5;
1347 st->pktin->data = sresize(st->pktin->data,
1348 st->pktin->maxlen + APIEXTRA,
1349 unsigned char);
1350 }
1351 st->pktin->length = 5 + newlen;
1352 memcpy(st->pktin->data + 5, newpayload, newlen);
1353 sfree(newpayload);
1354 }
1355 }
1356
1357 st->pktin->savedpos = 6;
1358 st->pktin->body = st->pktin->data;
1359 st->pktin->type = st->pktin->data[5];
1360
1361 /*
1362 * Log incoming packet, possibly omitting sensitive fields.
1363 */
1364 if (ssh->logctx) {
1365 int nblanks = 0;
1366 struct logblank_t blank;
1367 if (ssh->cfg.logomitdata) {
1368 int do_blank = FALSE, blank_prefix = 0;
1369 /* "Session data" packets - omit the data field */
1370 if (st->pktin->type == SSH2_MSG_CHANNEL_DATA) {
1371 do_blank = TRUE; blank_prefix = 4;
1372 } else if (st->pktin->type == SSH2_MSG_CHANNEL_EXTENDED_DATA) {
1373 do_blank = TRUE; blank_prefix = 8;
1374 }
1375 if (do_blank) {
1376 blank.offset = blank_prefix;
1377 blank.len = (st->pktin->length-6) - blank_prefix;
1378 blank.type = PKTLOG_OMIT;
1379 nblanks = 1;
1380 }
1381 }
1382 log_packet(ssh->logctx, PKT_INCOMING, st->pktin->type,
1383 ssh2_pkt_type(ssh->pkt_ctx, st->pktin->type),
1384 st->pktin->data+6, st->pktin->length-6,
1385 nblanks, &blank);
1386 }
1387
1388 crFinish(st->pktin);
1389 }
1390
1391 static int s_wrpkt_prepare(Ssh ssh, struct Packet *pkt, int *offset_p)
1392 {
1393 int pad, biglen, i, pktoffs;
1394 unsigned long crc;
1395 #ifdef __SC__
1396 /*
1397 * XXX various versions of SC (including 8.8.4) screw up the
1398 * register allocation in this function and use the same register
1399 * (D6) for len and as a temporary, with predictable results. The
1400 * following sledgehammer prevents this.
1401 */
1402 volatile
1403 #endif
1404 int len;
1405
1406 if (ssh->logctx)
1407 log_packet(ssh->logctx, PKT_OUTGOING, pkt->data[12],
1408 ssh1_pkt_type(pkt->data[12]),
1409 pkt->body, pkt->length - (pkt->body - pkt->data),
1410 pkt->nblanks, pkt->blanks);
1411 sfree(pkt->blanks); pkt->blanks = NULL;
1412 pkt->nblanks = 0;
1413
1414 if (ssh->v1_compressing) {
1415 unsigned char *compblk;
1416 int complen;
1417 zlib_compress_block(ssh->cs_comp_ctx,
1418 pkt->data + 12, pkt->length - 12,
1419 &compblk, &complen);
1420 memcpy(pkt->data + 12, compblk, complen);
1421 sfree(compblk);
1422 pkt->length = complen + 12;
1423 }
1424
1425 ssh_pkt_ensure(pkt, pkt->length + 4); /* space for CRC */
1426 pkt->length += 4;
1427 len = pkt->length - 4 - 8; /* len(type+data+CRC) */
1428 pad = 8 - (len % 8);
1429 pktoffs = 8 - pad;
1430 biglen = len + pad; /* len(padding+type+data+CRC) */
1431
1432 for (i = pktoffs; i < 4+8; i++)
1433 pkt->data[i] = random_byte();
1434 crc = crc32_compute(pkt->data + pktoffs + 4, biglen - 4); /* all ex len */
1435 PUT_32BIT(pkt->data + pktoffs + 4 + biglen - 4, crc);
1436 PUT_32BIT(pkt->data + pktoffs, len);
1437
1438 if (ssh->cipher)
1439 ssh->cipher->encrypt(ssh->v1_cipher_ctx,
1440 pkt->data + pktoffs + 4, biglen);
1441
1442 if (offset_p) *offset_p = pktoffs;
1443 return biglen + 4; /* len(length+padding+type+data+CRC) */
1444 }
1445
1446 static int s_write(Ssh ssh, void *data, int len)
1447 {
1448 log_packet(ssh->logctx, PKT_OUTGOING, -1, NULL, data, len, 0, NULL);
1449 return sk_write(ssh->s, (char *)data, len);
1450 }
1451
1452 static void s_wrpkt(Ssh ssh, struct Packet *pkt)
1453 {
1454 int len, backlog, offset;
1455 len = s_wrpkt_prepare(ssh, pkt, &offset);
1456 backlog = s_write(ssh, pkt->data + offset, len);
1457 if (backlog > SSH_MAX_BACKLOG)
1458 ssh_throttle_all(ssh, 1, backlog);
1459 ssh_free_packet(pkt);
1460 }
1461
1462 static void s_wrpkt_defer(Ssh ssh, struct Packet *pkt)
1463 {
1464 int len, offset;
1465 len = s_wrpkt_prepare(ssh, pkt, &offset);
1466 if (ssh->deferred_len + len > ssh->deferred_size) {
1467 ssh->deferred_size = ssh->deferred_len + len + 128;
1468 ssh->deferred_send_data = sresize(ssh->deferred_send_data,
1469 ssh->deferred_size,
1470 unsigned char);
1471 }
1472 memcpy(ssh->deferred_send_data + ssh->deferred_len,
1473 pkt->data + offset, len);
1474 ssh->deferred_len += len;
1475 ssh_free_packet(pkt);
1476 }
1477
1478 /*
1479 * Construct a SSH-1 packet with the specified contents.
1480 * (This all-at-once interface used to be the only one, but now SSH-1
1481 * packets can also be constructed incrementally.)
1482 */
1483 static struct Packet *construct_packet(Ssh ssh, int pkttype, va_list ap)
1484 {
1485 int argtype;
1486 Bignum bn;
1487 struct Packet *pkt;
1488
1489 pkt = ssh1_pkt_init(pkttype);
1490
1491 while ((argtype = va_arg(ap, int)) != PKT_END) {
1492 unsigned char *argp, argchar;
1493 char *sargp;
1494 unsigned long argint;
1495 int arglen;
1496 switch (argtype) {
1497 /* Actual fields in the packet */
1498 case PKT_INT:
1499 argint = va_arg(ap, int);
1500 ssh_pkt_adduint32(pkt, argint);
1501 break;
1502 case PKT_CHAR:
1503 argchar = (unsigned char) va_arg(ap, int);
1504 ssh_pkt_addbyte(pkt, argchar);
1505 break;
1506 case PKT_DATA:
1507 argp = va_arg(ap, unsigned char *);
1508 arglen = va_arg(ap, int);
1509 ssh_pkt_adddata(pkt, argp, arglen);
1510 break;
1511 case PKT_STR:
1512 sargp = va_arg(ap, char *);
1513 ssh_pkt_addstring(pkt, sargp);
1514 break;
1515 case PKT_BIGNUM:
1516 bn = va_arg(ap, Bignum);
1517 ssh1_pkt_addmp(pkt, bn);
1518 break;
1519 /* Tokens for modifications to packet logging */
1520 case PKTT_PASSWORD:
1521 dont_log_password(ssh, pkt, PKTLOG_BLANK);
1522 break;
1523 case PKTT_DATA:
1524 dont_log_data(ssh, pkt, PKTLOG_OMIT);
1525 break;
1526 case PKTT_OTHER:
1527 end_log_omission(ssh, pkt);
1528 break;
1529 }
1530 }
1531
1532 return pkt;
1533 }
1534
1535 static void send_packet(Ssh ssh, int pkttype, ...)
1536 {
1537 struct Packet *pkt;
1538 va_list ap;
1539 va_start(ap, pkttype);
1540 pkt = construct_packet(ssh, pkttype, ap);
1541 va_end(ap);
1542 s_wrpkt(ssh, pkt);
1543 }
1544
1545 static void defer_packet(Ssh ssh, int pkttype, ...)
1546 {
1547 struct Packet *pkt;
1548 va_list ap;
1549 va_start(ap, pkttype);
1550 pkt = construct_packet(ssh, pkttype, ap);
1551 va_end(ap);
1552 s_wrpkt_defer(ssh, pkt);
1553 }
1554
1555 static int ssh_versioncmp(char *a, char *b)
1556 {
1557 char *ae, *be;
1558 unsigned long av, bv;
1559
1560 av = strtoul(a, &ae, 10);
1561 bv = strtoul(b, &be, 10);
1562 if (av != bv)
1563 return (av < bv ? -1 : +1);
1564 if (*ae == '.')
1565 ae++;
1566 if (*be == '.')
1567 be++;
1568 av = strtoul(ae, &ae, 10);
1569 bv = strtoul(be, &be, 10);
1570 if (av != bv)
1571 return (av < bv ? -1 : +1);
1572 return 0;
1573 }
1574
1575 /*
1576 * Utility routines for putting an SSH-protocol `string' and
1577 * `uint32' into a hash state.
1578 */
1579 static void hash_string(const struct ssh_hash *h, void *s, void *str, int len)
1580 {
1581 unsigned char lenblk[4];
1582 PUT_32BIT(lenblk, len);
1583 h->bytes(s, lenblk, 4);
1584 h->bytes(s, str, len);
1585 }
1586
1587 static void hash_uint32(const struct ssh_hash *h, void *s, unsigned i)
1588 {
1589 unsigned char intblk[4];
1590 PUT_32BIT(intblk, i);
1591 h->bytes(s, intblk, 4);
1592 }
1593
1594 /*
1595 * Packet construction functions. Mostly shared between SSH-1 and SSH-2.
1596 */
1597 static void ssh_pkt_ensure(struct Packet *pkt, int length)
1598 {
1599 if (pkt->maxlen < length) {
1600 unsigned char *body = pkt->body;
1601 int offset = body ? body - pkt->data : 0;
1602 pkt->maxlen = length + 256;
1603 pkt->data = sresize(pkt->data, pkt->maxlen + APIEXTRA, unsigned char);
1604 if (body) pkt->body = pkt->data + offset;
1605 }
1606 }
1607 static void ssh_pkt_adddata(struct Packet *pkt, void *data, int len)
1608 {
1609 if (pkt->logmode != PKTLOG_EMIT) {
1610 pkt->nblanks++;
1611 pkt->blanks = sresize(pkt->blanks, pkt->nblanks, struct logblank_t);
1612 assert(pkt->body);
1613 pkt->blanks[pkt->nblanks-1].offset = pkt->length -
1614 (pkt->body - pkt->data);
1615 pkt->blanks[pkt->nblanks-1].len = len;
1616 pkt->blanks[pkt->nblanks-1].type = pkt->logmode;
1617 }
1618 pkt->length += len;
1619 ssh_pkt_ensure(pkt, pkt->length);
1620 memcpy(pkt->data + pkt->length - len, data, len);
1621 }
1622 static void ssh_pkt_addbyte(struct Packet *pkt, unsigned char byte)
1623 {
1624 ssh_pkt_adddata(pkt, &byte, 1);
1625 }
1626 static void ssh2_pkt_addbool(struct Packet *pkt, unsigned char value)
1627 {
1628 ssh_pkt_adddata(pkt, &value, 1);
1629 }
1630 static void ssh_pkt_adduint32(struct Packet *pkt, unsigned long value)
1631 {
1632 unsigned char x[4];
1633 PUT_32BIT(x, value);
1634 ssh_pkt_adddata(pkt, x, 4);
1635 }
1636 static void ssh_pkt_addstring_start(struct Packet *pkt)
1637 {
1638 ssh_pkt_adduint32(pkt, 0);
1639 pkt->savedpos = pkt->length;
1640 }
1641 static void ssh_pkt_addstring_str(struct Packet *pkt, char *data)
1642 {
1643 ssh_pkt_adddata(pkt, data, strlen(data));
1644 PUT_32BIT(pkt->data + pkt->savedpos - 4, pkt->length - pkt->savedpos);
1645 }
1646 static void ssh_pkt_addstring_data(struct Packet *pkt, char *data, int len)
1647 {
1648 ssh_pkt_adddata(pkt, data, len);
1649 PUT_32BIT(pkt->data + pkt->savedpos - 4, pkt->length - pkt->savedpos);
1650 }
1651 static void ssh_pkt_addstring(struct Packet *pkt, char *data)
1652 {
1653 ssh_pkt_addstring_start(pkt);
1654 ssh_pkt_addstring_str(pkt, data);
1655 }
1656 static void ssh1_pkt_addmp(struct Packet *pkt, Bignum b)
1657 {
1658 int len = ssh1_bignum_length(b);
1659 unsigned char *data = snewn(len, unsigned char);
1660 (void) ssh1_write_bignum(data, b);
1661 ssh_pkt_adddata(pkt, data, len);
1662 sfree(data);
1663 }
1664 static unsigned char *ssh2_mpint_fmt(Bignum b, int *len)
1665 {
1666 unsigned char *p;
1667 int i, n = (bignum_bitcount(b) + 7) / 8;
1668 p = snewn(n + 1, unsigned char);
1669 p[0] = 0;
1670 for (i = 1; i <= n; i++)
1671 p[i] = bignum_byte(b, n - i);
1672 i = 0;
1673 while (i <= n && p[i] == 0 && (p[i + 1] & 0x80) == 0)
1674 i++;
1675 memmove(p, p + i, n + 1 - i);
1676 *len = n + 1 - i;
1677 return p;
1678 }
1679 static void ssh2_pkt_addmp(struct Packet *pkt, Bignum b)
1680 {
1681 unsigned char *p;
1682 int len;
1683 p = ssh2_mpint_fmt(b, &len);
1684 ssh_pkt_addstring_start(pkt);
1685 ssh_pkt_addstring_data(pkt, (char *)p, len);
1686 sfree(p);
1687 }
1688
1689 static struct Packet *ssh1_pkt_init(int pkt_type)
1690 {
1691 struct Packet *pkt = ssh_new_packet();
1692 pkt->length = 4 + 8; /* space for length + max padding */
1693 ssh_pkt_addbyte(pkt, pkt_type);
1694 pkt->body = pkt->data + pkt->length;
1695 return pkt;
1696 }
1697
1698 /* For legacy code (SSH-1 and -2 packet construction used to be separate) */
1699 #define ssh2_pkt_ensure(pkt, length) ssh_pkt_ensure(pkt, length)
1700 #define ssh2_pkt_adddata(pkt, data, len) ssh_pkt_adddata(pkt, data, len)
1701 #define ssh2_pkt_addbyte(pkt, byte) ssh_pkt_addbyte(pkt, byte)
1702 #define ssh2_pkt_adduint32(pkt, value) ssh_pkt_adduint32(pkt, value)
1703 #define ssh2_pkt_addstring_start(pkt) ssh_pkt_addstring_start(pkt)
1704 #define ssh2_pkt_addstring_str(pkt, data) ssh_pkt_addstring_str(pkt, data)
1705 #define ssh2_pkt_addstring_data(pkt, data, len) ssh_pkt_addstring_data(pkt, data, len)
1706 #define ssh2_pkt_addstring(pkt, data) ssh_pkt_addstring(pkt, data)
1707
1708 static struct Packet *ssh2_pkt_init(int pkt_type)
1709 {
1710 struct Packet *pkt = ssh_new_packet();
1711 pkt->length = 5; /* space for packet length + padding length */
1712 pkt->forcepad = 0;
1713 ssh_pkt_addbyte(pkt, (unsigned char) pkt_type);
1714 pkt->body = pkt->data + pkt->length; /* after packet type */
1715 return pkt;
1716 }
1717
1718 /*
1719 * Construct an SSH-2 final-form packet: compress it, encrypt it,
1720 * put the MAC on it. Final packet, ready to be sent, is stored in
1721 * pkt->data. Total length is returned.
1722 */
1723 static int ssh2_pkt_construct(Ssh ssh, struct Packet *pkt)
1724 {
1725 int cipherblk, maclen, padding, i;
1726
1727 if (ssh->logctx)
1728 log_packet(ssh->logctx, PKT_OUTGOING, pkt->data[5],
1729 ssh2_pkt_type(ssh->pkt_ctx, pkt->data[5]),
1730 pkt->body, pkt->length - (pkt->body - pkt->data),
1731 pkt->nblanks, pkt->blanks);
1732 sfree(pkt->blanks); pkt->blanks = NULL;
1733 pkt->nblanks = 0;
1734
1735 /*
1736 * Compress packet payload.
1737 */
1738 {
1739 unsigned char *newpayload;
1740 int newlen;
1741 if (ssh->cscomp &&
1742 ssh->cscomp->compress(ssh->cs_comp_ctx, pkt->data + 5,
1743 pkt->length - 5,
1744 &newpayload, &newlen)) {
1745 pkt->length = 5;
1746 ssh2_pkt_adddata(pkt, newpayload, newlen);
1747 sfree(newpayload);
1748 }
1749 }
1750
1751 /*
1752 * Add padding. At least four bytes, and must also bring total
1753 * length (minus MAC) up to a multiple of the block size.
1754 * If pkt->forcepad is set, make sure the packet is at least that size
1755 * after padding.
1756 */
1757 cipherblk = ssh->cscipher ? ssh->cscipher->blksize : 8; /* block size */
1758 cipherblk = cipherblk < 8 ? 8 : cipherblk; /* or 8 if blksize < 8 */
1759 padding = 4;
1760 if (pkt->length + padding < pkt->forcepad)
1761 padding = pkt->forcepad - pkt->length;
1762 padding +=
1763 (cipherblk - (pkt->length + padding) % cipherblk) % cipherblk;
1764 assert(padding <= 255);
1765 maclen = ssh->csmac ? ssh->csmac->len : 0;
1766 ssh2_pkt_ensure(pkt, pkt->length + padding + maclen);
1767 pkt->data[4] = padding;
1768 for (i = 0; i < padding; i++)
1769 pkt->data[pkt->length + i] = random_byte();
1770 PUT_32BIT(pkt->data, pkt->length + padding - 4);
1771 if (ssh->csmac)
1772 ssh->csmac->generate(ssh->cs_mac_ctx, pkt->data,
1773 pkt->length + padding,
1774 ssh->v2_outgoing_sequence);
1775 ssh->v2_outgoing_sequence++; /* whether or not we MACed */
1776
1777 if (ssh->cscipher)
1778 ssh->cscipher->encrypt(ssh->cs_cipher_ctx,
1779 pkt->data, pkt->length + padding);
1780
1781 pkt->encrypted_len = pkt->length + padding;
1782
1783 /* Ready-to-send packet starts at pkt->data. We return length. */
1784 return pkt->length + padding + maclen;
1785 }
1786
1787 /*
1788 * Routines called from the main SSH code to send packets. There
1789 * are quite a few of these, because we have two separate
1790 * mechanisms for delaying the sending of packets:
1791 *
1792 * - In order to send an IGNORE message and a password message in
1793 * a single fixed-length blob, we require the ability to
1794 * concatenate the encrypted forms of those two packets _into_ a
1795 * single blob and then pass it to our <network.h> transport
1796 * layer in one go. Hence, there's a deferment mechanism which
1797 * works after packet encryption.
1798 *
1799 * - In order to avoid sending any connection-layer messages
1800 * during repeat key exchange, we have to queue up any such
1801 * outgoing messages _before_ they are encrypted (and in
1802 * particular before they're allocated sequence numbers), and
1803 * then send them once we've finished.
1804 *
1805 * I call these mechanisms `defer' and `queue' respectively, so as
1806 * to distinguish them reasonably easily.
1807 *
1808 * The functions send_noqueue() and defer_noqueue() free the packet
1809 * structure they are passed. Every outgoing packet goes through
1810 * precisely one of these functions in its life; packets passed to
1811 * ssh2_pkt_send() or ssh2_pkt_defer() either go straight to one of
1812 * these or get queued, and then when the queue is later emptied
1813 * the packets are all passed to defer_noqueue().
1814 *
1815 * When using a CBC-mode cipher, it's necessary to ensure that an
1816 * attacker can't provide data to be encrypted using an IV that they
1817 * know. We ensure this by prefixing each packet that might contain
1818 * user data with an SSH_MSG_IGNORE. This is done using the deferral
1819 * mechanism, so in this case send_noqueue() ends up redirecting to
1820 * defer_noqueue(). If you don't like this inefficiency, don't use
1821 * CBC.
1822 */
1823
1824 static void ssh2_pkt_defer_noqueue(Ssh, struct Packet *, int);
1825 static void ssh_pkt_defersend(Ssh);
1826
1827 /*
1828 * Send an SSH-2 packet immediately, without queuing or deferring.
1829 */
1830 static void ssh2_pkt_send_noqueue(Ssh ssh, struct Packet *pkt)
1831 {
1832 int len;
1833 int backlog;
1834 if (ssh->cscipher != NULL && (ssh->cscipher->flags & SSH_CIPHER_IS_CBC)) {
1835 /* We need to send two packets, so use the deferral mechanism. */
1836 ssh2_pkt_defer_noqueue(ssh, pkt, FALSE);
1837 ssh_pkt_defersend(ssh);
1838 return;
1839 }
1840 len = ssh2_pkt_construct(ssh, pkt);
1841 backlog = s_write(ssh, pkt->data, len);
1842 if (backlog > SSH_MAX_BACKLOG)
1843 ssh_throttle_all(ssh, 1, backlog);
1844
1845 ssh->outgoing_data_size += pkt->encrypted_len;
1846 if (!ssh->kex_in_progress &&
1847 ssh->max_data_size != 0 &&
1848 ssh->outgoing_data_size > ssh->max_data_size)
1849 do_ssh2_transport(ssh, "too much data sent", -1, NULL);
1850
1851 ssh_free_packet(pkt);
1852 }
1853
1854 /*
1855 * Defer an SSH-2 packet.
1856 */
1857 static void ssh2_pkt_defer_noqueue(Ssh ssh, struct Packet *pkt, int noignore)
1858 {
1859 int len;
1860 if (ssh->cscipher != NULL && (ssh->cscipher->flags & SSH_CIPHER_IS_CBC) &&
1861 ssh->deferred_len == 0 && !noignore) {
1862 /*
1863 * Interpose an SSH_MSG_IGNORE to ensure that user data don't
1864 * get encrypted with a known IV.
1865 */
1866 struct Packet *ipkt = ssh2_pkt_init(SSH2_MSG_IGNORE);
1867 ssh2_pkt_addstring_start(ipkt);
1868 ssh2_pkt_defer_noqueue(ssh, ipkt, TRUE);
1869 }
1870 len = ssh2_pkt_construct(ssh, pkt);
1871 if (ssh->deferred_len + len > ssh->deferred_size) {
1872 ssh->deferred_size = ssh->deferred_len + len + 128;
1873 ssh->deferred_send_data = sresize(ssh->deferred_send_data,
1874 ssh->deferred_size,
1875 unsigned char);
1876 }
1877 memcpy(ssh->deferred_send_data + ssh->deferred_len, pkt->data, len);
1878 ssh->deferred_len += len;
1879 ssh->deferred_data_size += pkt->encrypted_len;
1880 ssh_free_packet(pkt);
1881 }
1882
1883 /*
1884 * Queue an SSH-2 packet.
1885 */
1886 static void ssh2_pkt_queue(Ssh ssh, struct Packet *pkt)
1887 {
1888 assert(ssh->queueing);
1889
1890 if (ssh->queuelen >= ssh->queuesize) {
1891 ssh->queuesize = ssh->queuelen + 32;
1892 ssh->queue = sresize(ssh->queue, ssh->queuesize, struct Packet *);
1893 }
1894
1895 ssh->queue[ssh->queuelen++] = pkt;
1896 }
1897
1898 /*
1899 * Either queue or send a packet, depending on whether queueing is
1900 * set.
1901 */
1902 static void ssh2_pkt_send(Ssh ssh, struct Packet *pkt)
1903 {
1904 if (ssh->queueing)
1905 ssh2_pkt_queue(ssh, pkt);
1906 else
1907 ssh2_pkt_send_noqueue(ssh, pkt);
1908 }
1909
1910 /*
1911 * Either queue or defer a packet, depending on whether queueing is
1912 * set.
1913 */
1914 static void ssh2_pkt_defer(Ssh ssh, struct Packet *pkt)
1915 {
1916 if (ssh->queueing)
1917 ssh2_pkt_queue(ssh, pkt);
1918 else
1919 ssh2_pkt_defer_noqueue(ssh, pkt, FALSE);
1920 }
1921
1922 /*
1923 * Send the whole deferred data block constructed by
1924 * ssh2_pkt_defer() or SSH-1's defer_packet().
1925 *
1926 * The expected use of the defer mechanism is that you call
1927 * ssh2_pkt_defer() a few times, then call ssh_pkt_defersend(). If
1928 * not currently queueing, this simply sets up deferred_send_data
1929 * and then sends it. If we _are_ currently queueing, the calls to
1930 * ssh2_pkt_defer() put the deferred packets on to the queue
1931 * instead, and therefore ssh_pkt_defersend() has no deferred data
1932 * to send. Hence, there's no need to make it conditional on
1933 * ssh->queueing.
1934 */
1935 static void ssh_pkt_defersend(Ssh ssh)
1936 {
1937 int backlog;
1938 backlog = s_write(ssh, ssh->deferred_send_data, ssh->deferred_len);
1939 ssh->deferred_len = ssh->deferred_size = 0;
1940 sfree(ssh->deferred_send_data);
1941 ssh->deferred_send_data = NULL;
1942 if (backlog > SSH_MAX_BACKLOG)
1943 ssh_throttle_all(ssh, 1, backlog);
1944
1945 ssh->outgoing_data_size += ssh->deferred_data_size;
1946 if (!ssh->kex_in_progress &&
1947 ssh->max_data_size != 0 &&
1948 ssh->outgoing_data_size > ssh->max_data_size)
1949 do_ssh2_transport(ssh, "too much data sent", -1, NULL);
1950 ssh->deferred_data_size = 0;
1951 }
1952
1953 /*
1954 * Send a packet whose length needs to be disguised (typically
1955 * passwords or keyboard-interactive responses).
1956 */
1957 static void ssh2_pkt_send_with_padding(Ssh ssh, struct Packet *pkt,
1958 int padsize)
1959 {
1960 #if 0
1961 if (0) {
1962 /*
1963 * The simplest way to do this is to adjust the
1964 * variable-length padding field in the outgoing packet.
1965 *
1966 * Currently compiled out, because some Cisco SSH servers
1967 * don't like excessively padded packets (bah, why's it
1968 * always Cisco?)
1969 */
1970 pkt->forcepad = padsize;
1971 ssh2_pkt_send(ssh, pkt);
1972 } else
1973 #endif
1974 {
1975 /*
1976 * If we can't do that, however, an alternative approach is
1977 * to use the pkt_defer mechanism to bundle the packet
1978 * tightly together with an SSH_MSG_IGNORE such that their
1979 * combined length is a constant. So first we construct the
1980 * final form of this packet and defer its sending.
1981 */
1982 ssh2_pkt_defer(ssh, pkt);
1983
1984 /*
1985 * Now construct an SSH_MSG_IGNORE which includes a string
1986 * that's an exact multiple of the cipher block size. (If
1987 * the cipher is NULL so that the block size is
1988 * unavailable, we don't do this trick at all, because we
1989 * gain nothing by it.)
1990 */
1991 if (ssh->cscipher) {
1992 int stringlen, i;
1993
1994 stringlen = (256 - ssh->deferred_len);
1995 stringlen += ssh->cscipher->blksize - 1;
1996 stringlen -= (stringlen % ssh->cscipher->blksize);
1997 if (ssh->cscomp) {
1998 /*
1999 * Temporarily disable actual compression, so we
2000 * can guarantee to get this string exactly the
2001 * length we want it. The compression-disabling
2002 * routine should return an integer indicating how
2003 * many bytes we should adjust our string length
2004 * by.
2005 */
2006 stringlen -=
2007 ssh->cscomp->disable_compression(ssh->cs_comp_ctx);
2008 }
2009 pkt = ssh2_pkt_init(SSH2_MSG_IGNORE);
2010 ssh2_pkt_addstring_start(pkt);
2011 for (i = 0; i < stringlen; i++) {
2012 char c = (char) random_byte();
2013 ssh2_pkt_addstring_data(pkt, &c, 1);
2014 }
2015 ssh2_pkt_defer(ssh, pkt);
2016 }
2017 ssh_pkt_defersend(ssh);
2018 }
2019 }
2020
2021 /*
2022 * Send all queued SSH-2 packets. We send them by means of
2023 * ssh2_pkt_defer_noqueue(), in case they included a pair of
2024 * packets that needed to be lumped together.
2025 */
2026 static void ssh2_pkt_queuesend(Ssh ssh)
2027 {
2028 int i;
2029
2030 assert(!ssh->queueing);
2031
2032 for (i = 0; i < ssh->queuelen; i++)
2033 ssh2_pkt_defer_noqueue(ssh, ssh->queue[i], FALSE);
2034 ssh->queuelen = 0;
2035
2036 ssh_pkt_defersend(ssh);
2037 }
2038
2039 #if 0
2040 void bndebug(char *string, Bignum b)
2041 {
2042 unsigned char *p;
2043 int i, len;
2044 p = ssh2_mpint_fmt(b, &len);
2045 debug(("%s", string));
2046 for (i = 0; i < len; i++)
2047 debug((" %02x", p[i]));
2048 debug(("\n"));
2049 sfree(p);
2050 }
2051 #endif
2052
2053 static void hash_mpint(const struct ssh_hash *h, void *s, Bignum b)
2054 {
2055 unsigned char *p;
2056 int len;
2057 p = ssh2_mpint_fmt(b, &len);
2058 hash_string(h, s, p, len);
2059 sfree(p);
2060 }
2061
2062 /*
2063 * Packet decode functions for both SSH-1 and SSH-2.
2064 */
2065 static unsigned long ssh_pkt_getuint32(struct Packet *pkt)
2066 {
2067 unsigned long value;
2068 if (pkt->length - pkt->savedpos < 4)
2069 return 0; /* arrgh, no way to decline (FIXME?) */
2070 value = GET_32BIT(pkt->body + pkt->savedpos);
2071 pkt->savedpos += 4;
2072 return value;
2073 }
2074 static int ssh2_pkt_getbool(struct Packet *pkt)
2075 {
2076 unsigned long value;
2077 if (pkt->length - pkt->savedpos < 1)
2078 return 0; /* arrgh, no way to decline (FIXME?) */
2079 value = pkt->body[pkt->savedpos] != 0;
2080 pkt->savedpos++;
2081 return value;
2082 }
2083 static void ssh_pkt_getstring(struct Packet *pkt, char **p, int *length)
2084 {
2085 int len;
2086 *p = NULL;
2087 *length = 0;
2088 if (pkt->length - pkt->savedpos < 4)
2089 return;
2090 len = GET_32BIT(pkt->body + pkt->savedpos);
2091 if (len < 0)
2092 return;
2093 *length = len;
2094 pkt->savedpos += 4;
2095 if (pkt->length - pkt->savedpos < *length)
2096 return;
2097 *p = (char *)(pkt->body + pkt->savedpos);
2098 pkt->savedpos += *length;
2099 }
2100 static void *ssh_pkt_getdata(struct Packet *pkt, int length)
2101 {
2102 if (pkt->length - pkt->savedpos < length)
2103 return NULL;
2104 pkt->savedpos += length;
2105 return pkt->body + (pkt->savedpos - length);
2106 }
2107 static int ssh1_pkt_getrsakey(struct Packet *pkt, struct RSAKey *key,
2108 unsigned char **keystr)
2109 {
2110 int j;
2111
2112 j = makekey(pkt->body + pkt->savedpos,
2113 pkt->length - pkt->savedpos,
2114 key, keystr, 0);
2115
2116 if (j < 0)
2117 return FALSE;
2118
2119 pkt->savedpos += j;
2120 assert(pkt->savedpos < pkt->length);
2121
2122 return TRUE;
2123 }
2124 static Bignum ssh1_pkt_getmp(struct Packet *pkt)
2125 {
2126 int j;
2127 Bignum b;
2128
2129 j = ssh1_read_bignum(pkt->body + pkt->savedpos,
2130 pkt->length - pkt->savedpos, &b);
2131
2132 if (j < 0)
2133 return NULL;
2134
2135 pkt->savedpos += j;
2136 return b;
2137 }
2138 static Bignum ssh2_pkt_getmp(struct Packet *pkt)
2139 {
2140 char *p;
2141 int length;
2142 Bignum b;
2143
2144 ssh_pkt_getstring(pkt, &p, &length);
2145 if (!p)
2146 return NULL;
2147 if (p[0] & 0x80)
2148 return NULL;
2149 b = bignum_from_bytes((unsigned char *)p, length);
2150 return b;
2151 }
2152
2153 /*
2154 * Helper function to add an SSH-2 signature blob to a packet.
2155 * Expects to be shown the public key blob as well as the signature
2156 * blob. Normally works just like ssh2_pkt_addstring, but will
2157 * fiddle with the signature packet if necessary for
2158 * BUG_SSH2_RSA_PADDING.
2159 */
2160 static void ssh2_add_sigblob(Ssh ssh, struct Packet *pkt,
2161 void *pkblob_v, int pkblob_len,
2162 void *sigblob_v, int sigblob_len)
2163 {
2164 unsigned char *pkblob = (unsigned char *)pkblob_v;
2165 unsigned char *sigblob = (unsigned char *)sigblob_v;
2166
2167 /* dmemdump(pkblob, pkblob_len); */
2168 /* dmemdump(sigblob, sigblob_len); */
2169
2170 /*
2171 * See if this is in fact an ssh-rsa signature and a buggy
2172 * server; otherwise we can just do this the easy way.
2173 */
2174 if ((ssh->remote_bugs & BUG_SSH2_RSA_PADDING) &&
2175 (GET_32BIT(pkblob) == 7 && !memcmp(pkblob+4, "ssh-rsa", 7))) {
2176 int pos, len, siglen;
2177
2178 /*
2179 * Find the byte length of the modulus.
2180 */
2181
2182 pos = 4+7; /* skip over "ssh-rsa" */
2183 pos += 4 + GET_32BIT(pkblob+pos); /* skip over exponent */
2184 len = GET_32BIT(pkblob+pos); /* find length of modulus */
2185 pos += 4; /* find modulus itself */
2186 while (len > 0 && pkblob[pos] == 0)
2187 len--, pos++;
2188 /* debug(("modulus length is %d\n", len)); */
2189
2190 /*
2191 * Now find the signature integer.
2192 */
2193 pos = 4+7; /* skip over "ssh-rsa" */
2194 siglen = GET_32BIT(sigblob+pos);
2195 /* debug(("signature length is %d\n", siglen)); */
2196
2197 if (len != siglen) {
2198 unsigned char newlen[4];
2199 ssh2_pkt_addstring_start(pkt);
2200 ssh2_pkt_addstring_data(pkt, (char *)sigblob, pos);
2201 /* dmemdump(sigblob, pos); */
2202 pos += 4; /* point to start of actual sig */
2203 PUT_32BIT(newlen, len);
2204 ssh2_pkt_addstring_data(pkt, (char *)newlen, 4);
2205 /* dmemdump(newlen, 4); */
2206 newlen[0] = 0;
2207 while (len-- > siglen) {
2208 ssh2_pkt_addstring_data(pkt, (char *)newlen, 1);
2209 /* dmemdump(newlen, 1); */
2210 }
2211 ssh2_pkt_addstring_data(pkt, (char *)(sigblob+pos), siglen);
2212 /* dmemdump(sigblob+pos, siglen); */
2213 return;
2214 }
2215
2216 /* Otherwise fall through and do it the easy way. */
2217 }
2218
2219 ssh2_pkt_addstring_start(pkt);
2220 ssh2_pkt_addstring_data(pkt, (char *)sigblob, sigblob_len);
2221 }
2222
2223 /*
2224 * Examine the remote side's version string and compare it against
2225 * a list of known buggy implementations.
2226 */
2227 static void ssh_detect_bugs(Ssh ssh, char *vstring)
2228 {
2229 char *imp; /* pointer to implementation part */
2230 imp = vstring;
2231 imp += strcspn(imp, "-");
2232 if (*imp) imp++;
2233 imp += strcspn(imp, "-");
2234 if (*imp) imp++;
2235
2236 ssh->remote_bugs = 0;
2237
2238 /*
2239 * General notes on server version strings:
2240 * - Not all servers reporting "Cisco-1.25" have all the bugs listed
2241 * here -- in particular, we've heard of one that's perfectly happy
2242 * with SSH1_MSG_IGNOREs -- but this string never seems to change,
2243 * so we can't distinguish them.
2244 */
2245 if (ssh->cfg.sshbug_ignore1 == FORCE_ON ||
2246 (ssh->cfg.sshbug_ignore1 == AUTO &&
2247 (!strcmp(imp, "1.2.18") || !strcmp(imp, "1.2.19") ||
2248 !strcmp(imp, "1.2.20") || !strcmp(imp, "1.2.21") ||
2249 !strcmp(imp, "1.2.22") || !strcmp(imp, "Cisco-1.25") ||
2250 !strcmp(imp, "OSU_1.4alpha3") || !strcmp(imp, "OSU_1.5alpha4")))) {
2251 /*
2252 * These versions don't support SSH1_MSG_IGNORE, so we have
2253 * to use a different defence against password length
2254 * sniffing.
2255 */
2256 ssh->remote_bugs |= BUG_CHOKES_ON_SSH1_IGNORE;
2257 logevent("We believe remote version has SSH-1 ignore bug");
2258 }
2259
2260 if (ssh->cfg.sshbug_plainpw1 == FORCE_ON ||
2261 (ssh->cfg.sshbug_plainpw1 == AUTO &&
2262 (!strcmp(imp, "Cisco-1.25") || !strcmp(imp, "OSU_1.4alpha3")))) {
2263 /*
2264 * These versions need a plain password sent; they can't
2265 * handle having a null and a random length of data after
2266 * the password.
2267 */
2268 ssh->remote_bugs |= BUG_NEEDS_SSH1_PLAIN_PASSWORD;
2269 logevent("We believe remote version needs a plain SSH-1 password");
2270 }
2271
2272 if (ssh->cfg.sshbug_rsa1 == FORCE_ON ||
2273 (ssh->cfg.sshbug_rsa1 == AUTO &&
2274 (!strcmp(imp, "Cisco-1.25")))) {
2275 /*
2276 * These versions apparently have no clue whatever about
2277 * RSA authentication and will panic and die if they see
2278 * an AUTH_RSA message.
2279 */
2280 ssh->remote_bugs |= BUG_CHOKES_ON_RSA;
2281 logevent("We believe remote version can't handle SSH-1 RSA authentication");
2282 }
2283
2284 if (ssh->cfg.sshbug_hmac2 == FORCE_ON ||
2285 (ssh->cfg.sshbug_hmac2 == AUTO &&
2286 !wc_match("* VShell", imp) &&
2287 (wc_match("2.1.0*", imp) || wc_match("2.0.*", imp) ||
2288 wc_match("2.2.0*", imp) || wc_match("2.3.0*", imp) ||
2289 wc_match("2.1 *", imp)))) {
2290 /*
2291 * These versions have the HMAC bug.
2292 */
2293 ssh->remote_bugs |= BUG_SSH2_HMAC;
2294 logevent("We believe remote version has SSH-2 HMAC bug");
2295 }
2296
2297 if (ssh->cfg.sshbug_derivekey2 == FORCE_ON ||
2298 (ssh->cfg.sshbug_derivekey2 == AUTO &&
2299 !wc_match("* VShell", imp) &&
2300 (wc_match("2.0.0*", imp) || wc_match("2.0.10*", imp) ))) {
2301 /*
2302 * These versions have the key-derivation bug (failing to
2303 * include the literal shared secret in the hashes that
2304 * generate the keys).
2305 */
2306 ssh->remote_bugs |= BUG_SSH2_DERIVEKEY;
2307 logevent("We believe remote version has SSH-2 key-derivation bug");
2308 }
2309
2310 if (ssh->cfg.sshbug_rsapad2 == FORCE_ON ||
2311 (ssh->cfg.sshbug_rsapad2 == AUTO &&
2312 (wc_match("OpenSSH_2.[5-9]*", imp) ||
2313 wc_match("OpenSSH_3.[0-2]*", imp)))) {
2314 /*
2315 * These versions have the SSH-2 RSA padding bug.
2316 */
2317 ssh->remote_bugs |= BUG_SSH2_RSA_PADDING;
2318 logevent("We believe remote version has SSH-2 RSA padding bug");
2319 }
2320
2321 if (ssh->cfg.sshbug_pksessid2 == FORCE_ON ||
2322 (ssh->cfg.sshbug_pksessid2 == AUTO &&
2323 wc_match("OpenSSH_2.[0-2]*", imp))) {
2324 /*
2325 * These versions have the SSH-2 session-ID bug in
2326 * public-key authentication.
2327 */
2328 ssh->remote_bugs |= BUG_SSH2_PK_SESSIONID;
2329 logevent("We believe remote version has SSH-2 public-key-session-ID bug");
2330 }
2331
2332 if (ssh->cfg.sshbug_rekey2 == FORCE_ON ||
2333 (ssh->cfg.sshbug_rekey2 == AUTO &&
2334 (wc_match("DigiSSH_2.0", imp) ||
2335 wc_match("OpenSSH_2.[0-4]*", imp) ||
2336 wc_match("OpenSSH_2.5.[0-3]*", imp) ||
2337 wc_match("Sun_SSH_1.0", imp) ||
2338 wc_match("Sun_SSH_1.0.1", imp) ||
2339 /* All versions <= 1.2.6 (they changed their format in 1.2.7) */
2340 wc_match("WeOnlyDo-*", imp)))) {
2341 /*
2342 * These versions have the SSH-2 rekey bug.
2343 */
2344 ssh->remote_bugs |= BUG_SSH2_REKEY;
2345 logevent("We believe remote version has SSH-2 rekey bug");
2346 }
2347 }
2348
2349 /*
2350 * The `software version' part of an SSH version string is required
2351 * to contain no spaces or minus signs.
2352 */
2353 static void ssh_fix_verstring(char *str)
2354 {
2355 /* Eat "SSH-<protoversion>-". */
2356 assert(*str == 'S'); str++;
2357 assert(*str == 'S'); str++;
2358 assert(*str == 'H'); str++;
2359 assert(*str == '-'); str++;
2360 while (*str && *str != '-') str++;
2361 assert(*str == '-'); str++;
2362
2363 /* Convert minus signs and spaces in the remaining string into
2364 * underscores. */
2365 while (*str) {
2366 if (*str == '-' || *str == ' ')
2367 *str = '_';
2368 str++;
2369 }
2370 }
2371
2372 static int do_ssh_init(Ssh ssh, unsigned char c)
2373 {
2374 struct do_ssh_init_state {
2375 int vslen;
2376 char version[10];
2377 char *vstring;
2378 int vstrsize;
2379 int i;
2380 int proto1, proto2;
2381 };
2382 crState(do_ssh_init_state);
2383
2384 crBegin(ssh->do_ssh_init_crstate);
2385
2386 /* Search for a line beginning with the string "SSH-" in the input. */
2387 for (;;) {
2388 if (c != 'S') goto no;
2389 crReturn(1);
2390 if (c != 'S') goto no;
2391 crReturn(1);
2392 if (c != 'H') goto no;
2393 crReturn(1);
2394 if (c != '-') goto no;
2395 break;
2396 no:
2397 while (c != '\012')
2398 crReturn(1);
2399 crReturn(1);
2400 }
2401
2402 s->vstrsize = 16;
2403 s->vstring = snewn(s->vstrsize, char);
2404 strcpy(s->vstring, "SSH-");
2405 s->vslen = 4;
2406 s->i = 0;
2407 while (1) {
2408 crReturn(1); /* get another char */
2409 if (s->vslen >= s->vstrsize - 1) {
2410 s->vstrsize += 16;
2411 s->vstring = sresize(s->vstring, s->vstrsize, char);
2412 }
2413 s->vstring[s->vslen++] = c;
2414 if (s->i >= 0) {
2415 if (c == '-') {
2416 s->version[s->i] = '\0';
2417 s->i = -1;
2418 } else if (s->i < sizeof(s->version) - 1)
2419 s->version[s->i++] = c;
2420 } else if (c == '\012')
2421 break;
2422 }
2423
2424 ssh->agentfwd_enabled = FALSE;
2425 ssh->rdpkt2_state.incoming_sequence = 0;
2426
2427 s->vstring[s->vslen] = 0;
2428 s->vstring[strcspn(s->vstring, "\015\012")] = '\0';/* remove EOL chars */
2429 logeventf(ssh, "Server version: %s", s->vstring);
2430 ssh_detect_bugs(ssh, s->vstring);
2431
2432 /*
2433 * Decide which SSH protocol version to support.
2434 */
2435
2436 /* Anything strictly below "2.0" means protocol 1 is supported. */
2437 s->proto1 = ssh_versioncmp(s->version, "2.0") < 0;
2438 /* Anything greater or equal to "1.99" means protocol 2 is supported. */
2439 s->proto2 = ssh_versioncmp(s->version, "1.99") >= 0;
2440
2441 if (ssh->cfg.sshprot == 0 && !s->proto1) {
2442 bombout(("SSH protocol version 1 required by user but not provided by server"));
2443 crStop(0);
2444 }
2445 if (ssh->cfg.sshprot == 3 && !s->proto2) {
2446 bombout(("SSH protocol version 2 required by user but not provided by server"));
2447 crStop(0);
2448 }
2449
2450 {
2451 char *verstring;
2452
2453 if (s->proto2 && (ssh->cfg.sshprot >= 2 || !s->proto1)) {
2454 /*
2455 * Construct a v2 version string.
2456 */
2457 verstring = dupprintf("SSH-2.0-%s\015\012", sshver);
2458 ssh->version = 2;
2459 } else {
2460 /*
2461 * Construct a v1 version string.
2462 */
2463 verstring = dupprintf("SSH-%s-%s\012",
2464 (ssh_versioncmp(s->version, "1.5") <= 0 ?
2465 s->version : "1.5"),
2466 sshver);
2467 ssh->version = 1;
2468 }
2469
2470 ssh_fix_verstring(verstring);
2471
2472 if (ssh->version == 2) {
2473 size_t len;
2474 /*
2475 * Hash our version string and their version string.
2476 */
2477 len = strcspn(verstring, "\015\012");
2478 ssh->v_c = snewn(len + 1, char);
2479 memcpy(ssh->v_c, verstring, len);
2480 ssh->v_c[len] = 0;
2481 len = strcspn(s->vstring, "\015\012");
2482 ssh->v_s = snewn(len + 1, char);
2483 memcpy(ssh->v_s, s->vstring, len);
2484 ssh->v_s[len] = 0;
2485
2486 /*
2487 * Initialise SSH-2 protocol.
2488 */
2489 ssh->protocol = ssh2_protocol;
2490 ssh2_protocol_setup(ssh);
2491 ssh->s_rdpkt = ssh2_rdpkt;
2492 } else {
2493 /*
2494 * Initialise SSH-1 protocol.
2495 */
2496 ssh->protocol = ssh1_protocol;
2497 ssh1_protocol_setup(ssh);
2498 ssh->s_rdpkt = ssh1_rdpkt;
2499 }
2500 logeventf(ssh, "We claim version: %.*s",
2501 strcspn(verstring, "\015\012"), verstring);
2502 s_write(ssh, verstring, strlen(verstring));
2503 sfree(verstring);
2504 if (ssh->version == 2)
2505 do_ssh2_transport(ssh, NULL, -1, NULL);
2506 }
2507
2508 logeventf(ssh, "Using SSH protocol version %d", ssh->version);
2509
2510 update_specials_menu(ssh->frontend);
2511 ssh->state = SSH_STATE_BEFORE_SIZE;
2512 ssh->pinger = pinger_new(&ssh->cfg, &ssh_backend, ssh);
2513
2514 sfree(s->vstring);
2515
2516 crFinish(0);
2517 }
2518
2519 static void ssh_process_incoming_data(Ssh ssh,
2520 unsigned char **data, int *datalen)
2521 {
2522 struct Packet *pktin;
2523
2524 pktin = ssh->s_rdpkt(ssh, data, datalen);
2525 if (pktin) {
2526 ssh->protocol(ssh, NULL, 0, pktin);
2527 ssh_free_packet(pktin);
2528 }
2529 }
2530
2531 static void ssh_queue_incoming_data(Ssh ssh,
2532 unsigned char **data, int *datalen)
2533 {
2534 bufchain_add(&ssh->queued_incoming_data, *data, *datalen);
2535 *data += *datalen;
2536 *datalen = 0;
2537 }
2538
2539 static void ssh_process_queued_incoming_data(Ssh ssh)
2540 {
2541 void *vdata;
2542 unsigned char *data;
2543 int len, origlen;
2544
2545 while (!ssh->frozen && bufchain_size(&ssh->queued_incoming_data)) {
2546 bufchain_prefix(&ssh->queued_incoming_data, &vdata, &len);
2547 data = vdata;
2548 origlen = len;
2549
2550 while (!ssh->frozen && len > 0)
2551 ssh_process_incoming_data(ssh, &data, &len);
2552
2553 if (origlen > len)
2554 bufchain_consume(&ssh->queued_incoming_data, origlen - len);
2555 }
2556 }
2557
2558 static void ssh_set_frozen(Ssh ssh, int frozen)
2559 {
2560 if (ssh->s)
2561 sk_set_frozen(ssh->s, frozen);
2562 ssh->frozen = frozen;
2563 }
2564
2565 static void ssh_gotdata(Ssh ssh, unsigned char *data, int datalen)
2566 {
2567 /* Log raw data, if we're in that mode. */
2568 log_packet(ssh->logctx, PKT_INCOMING, -1, NULL, data, datalen, 0, NULL);
2569
2570 crBegin(ssh->ssh_gotdata_crstate);
2571
2572 /*
2573 * To begin with, feed the characters one by one to the
2574 * protocol initialisation / selection function do_ssh_init().
2575 * When that returns 0, we're done with the initial greeting
2576 * exchange and can move on to packet discipline.
2577 */
2578 while (1) {
2579 int ret; /* need not be kept across crReturn */
2580 if (datalen == 0)
2581 crReturnV; /* more data please */
2582 ret = do_ssh_init(ssh, *data);
2583 data++;
2584 datalen--;
2585 if (ret == 0)
2586 break;
2587 }
2588
2589 /*
2590 * We emerge from that loop when the initial negotiation is
2591 * over and we have selected an s_rdpkt function. Now pass
2592 * everything to s_rdpkt, and then pass the resulting packets
2593 * to the proper protocol handler.
2594 */
2595
2596 while (1) {
2597 while (bufchain_size(&ssh->queued_incoming_data) > 0 || datalen > 0) {
2598 if (ssh->frozen) {
2599 ssh_queue_incoming_data(ssh, &data, &datalen);
2600 /* This uses up all data and cannot cause anything interesting
2601 * to happen; indeed, for anything to happen at all, we must
2602 * return, so break out. */
2603 break;
2604 } else if (bufchain_size(&ssh->queued_incoming_data) > 0) {
2605 /* This uses up some or all data, and may freeze the
2606 * session. */
2607 ssh_process_queued_incoming_data(ssh);
2608 } else {
2609 /* This uses up some or all data, and may freeze the
2610 * session. */
2611 ssh_process_incoming_data(ssh, &data, &datalen);
2612 }
2613 /* FIXME this is probably EBW. */
2614 if (ssh->state == SSH_STATE_CLOSED)
2615 return;
2616 }
2617 /* We're out of data. Go and get some more. */
2618 crReturnV;
2619 }
2620 crFinishV;
2621 }
2622
2623 static int ssh_do_close(Ssh ssh, int notify_exit)
2624 {
2625 int ret = 0;
2626 struct ssh_channel *c;
2627
2628 ssh->state = SSH_STATE_CLOSED;
2629 expire_timer_context(ssh);
2630 if (ssh->s) {
2631 sk_close(ssh->s);
2632 ssh->s = NULL;
2633 if (notify_exit)
2634 notify_remote_exit(ssh->frontend);
2635 else
2636 ret = 1;
2637 }
2638 /*
2639 * Now we must shut down any port- and X-forwarded channels going
2640 * through this connection.
2641 */
2642 if (ssh->channels) {
2643 while (NULL != (c = index234(ssh->channels, 0))) {
2644 switch (c->type) {
2645 case CHAN_X11:
2646 x11_close(c->u.x11.s);
2647 break;
2648 case CHAN_SOCKDATA:
2649 pfd_close(c->u.pfd.s);
2650 break;
2651 }
2652 del234(ssh->channels, c); /* moving next one to index 0 */
2653 if (ssh->version == 2)
2654 bufchain_clear(&c->v.v2.outbuffer);
2655 sfree(c);
2656 }
2657 }
2658 /*
2659 * Go through port-forwardings, and close any associated
2660 * listening sockets.
2661 */
2662 if (ssh->portfwds) {
2663 struct ssh_portfwd *pf;
2664 while (NULL != (pf = index234(ssh->portfwds, 0))) {
2665 /* Dispose of any listening socket. */
2666 if (pf->local)
2667 pfd_terminate(pf->local);
2668 del234(ssh->portfwds, pf); /* moving next one to index 0 */
2669 free_portfwd(pf);
2670 }
2671 }
2672
2673 return ret;
2674 }
2675
2676 static void ssh_log(Plug plug, int type, SockAddr addr, int port,
2677 const char *error_msg, int error_code)
2678 {
2679 Ssh ssh = (Ssh) plug;
2680 char addrbuf[256], *msg;
2681
2682 sk_getaddr(addr, addrbuf, lenof(addrbuf));
2683
2684 if (type == 0)
2685 msg = dupprintf("Connecting to %s port %d", addrbuf, port);
2686 else
2687 msg = dupprintf("Failed to connect to %s: %s", addrbuf, error_msg);
2688
2689 logevent(msg);
2690 sfree(msg);
2691 }
2692
2693 static int ssh_closing(Plug plug, const char *error_msg, int error_code,
2694 int calling_back)
2695 {
2696 Ssh ssh = (Ssh) plug;
2697 int need_notify = ssh_do_close(ssh, FALSE);
2698
2699 if (!error_msg) {
2700 if (!ssh->close_expected)
2701 error_msg = "Server unexpectedly closed network connection";
2702 else
2703 error_msg = "Server closed network connection";
2704 }
2705
2706 if (ssh->close_expected && ssh->clean_exit && ssh->exitcode < 0)
2707 ssh->exitcode = 0;
2708
2709 if (need_notify)
2710 notify_remote_exit(ssh->frontend);
2711
2712 if (error_msg)
2713 logevent(error_msg);
2714 if (!ssh->close_expected || !ssh->clean_exit)
2715 connection_fatal(ssh->frontend, "%s", error_msg);
2716 return 0;
2717 }
2718
2719 static int ssh_receive(Plug plug, int urgent, char *data, int len)
2720 {
2721 Ssh ssh = (Ssh) plug;
2722 ssh_gotdata(ssh, (unsigned char *)data, len);
2723 if (ssh->state == SSH_STATE_CLOSED) {
2724 ssh_do_close(ssh, TRUE);
2725 return 0;
2726 }
2727 return 1;
2728 }
2729
2730 static void ssh_sent(Plug plug, int bufsize)
2731 {
2732 Ssh ssh = (Ssh) plug;
2733 /*
2734 * If the send backlog on the SSH socket itself clears, we
2735 * should unthrottle the whole world if it was throttled.
2736 */
2737 if (bufsize < SSH_MAX_BACKLOG)
2738 ssh_throttle_all(ssh, 0, bufsize);
2739 }
2740
2741 /*
2742 * Connect to specified host and port.
2743 * Returns an error message, or NULL on success.
2744 * Also places the canonical host name into `realhost'. It must be
2745 * freed by the caller.
2746 */
2747 static const char *connect_to_host(Ssh ssh, char *host, int port,
2748 char **realhost, int nodelay, int keepalive)
2749 {
2750 static const struct plug_function_table fn_table = {
2751 ssh_log,
2752 ssh_closing,
2753 ssh_receive,
2754 ssh_sent,
2755 NULL
2756 };
2757
2758 SockAddr addr;
2759 const char *err;
2760
2761 ssh->savedhost = snewn(1 + strlen(host), char);
2762 strcpy(ssh->savedhost, host);
2763
2764 if (port < 0)
2765 port = 22; /* default ssh port */
2766 ssh->savedport = port;
2767
2768 /*
2769 * Try to find host.
2770 */
2771 logeventf(ssh, "Looking up host \"%s\"%s", host,
2772 (ssh->cfg.addressfamily == ADDRTYPE_IPV4 ? " (IPv4)" :
2773 (ssh->cfg.addressfamily == ADDRTYPE_IPV6 ? " (IPv6)" : "")));
2774 addr = name_lookup(host, port, realhost, &ssh->cfg,
2775 ssh->cfg.addressfamily);
2776 if ((err = sk_addr_error(addr)) != NULL) {
2777 sk_addr_free(addr);
2778 return err;
2779 }
2780
2781 /*
2782 * Open socket.
2783 */
2784 ssh->fn = &fn_table;
2785 ssh->s = new_connection(addr, *realhost, port,
2786 0, 1, nodelay, keepalive, (Plug) ssh, &ssh->cfg);
2787 if ((err = sk_socket_error(ssh->s)) != NULL) {
2788 ssh->s = NULL;
2789 notify_remote_exit(ssh->frontend);
2790 return err;
2791 }
2792
2793 return NULL;
2794 }
2795
2796 /*
2797 * Throttle or unthrottle the SSH connection.
2798 */
2799 static void ssh1_throttle(Ssh ssh, int adjust)
2800 {
2801 int old_count = ssh->v1_throttle_count;
2802 ssh->v1_throttle_count += adjust;
2803 assert(ssh->v1_throttle_count >= 0);
2804 if (ssh->v1_throttle_count && !old_count) {
2805 ssh_set_frozen(ssh, 1);
2806 } else if (!ssh->v1_throttle_count && old_count) {
2807 ssh_set_frozen(ssh, 0);
2808 }
2809 }
2810
2811 /*
2812 * Throttle or unthrottle _all_ local data streams (for when sends
2813 * on the SSH connection itself back up).
2814 */
2815 static void ssh_throttle_all(Ssh ssh, int enable, int bufsize)
2816 {
2817 int i;
2818 struct ssh_channel *c;
2819
2820 if (enable == ssh->throttled_all)
2821 return;
2822 ssh->throttled_all = enable;
2823 ssh->overall_bufsize = bufsize;
2824 if (!ssh->channels)
2825 return;
2826 for (i = 0; NULL != (c = index234(ssh->channels, i)); i++) {
2827 switch (c->type) {
2828 case CHAN_MAINSESSION:
2829 /*
2830 * This is treated separately, outside the switch.
2831 */
2832 break;
2833 case CHAN_X11:
2834 x11_override_throttle(c->u.x11.s, enable);
2835 break;
2836 case CHAN_AGENT:
2837 /* Agent channels require no buffer management. */
2838 break;
2839 case CHAN_SOCKDATA:
2840 pfd_override_throttle(c->u.pfd.s, enable);
2841 break;
2842 }
2843 }
2844 }
2845
2846 static void ssh_agent_callback(void *sshv, void *reply, int replylen)
2847 {
2848 Ssh ssh = (Ssh) sshv;
2849
2850 ssh->agent_response = reply;
2851 ssh->agent_response_len = replylen;
2852
2853 if (ssh->version == 1)
2854 do_ssh1_login(ssh, NULL, -1, NULL);
2855 else
2856 do_ssh2_authconn(ssh, NULL, -1, NULL);
2857 }
2858
2859 static void ssh_dialog_callback(void *sshv, int ret)
2860 {
2861 Ssh ssh = (Ssh) sshv;
2862
2863 ssh->user_response = ret;
2864
2865 if (ssh->version == 1)
2866 do_ssh1_login(ssh, NULL, -1, NULL);
2867 else
2868 do_ssh2_transport(ssh, NULL, -1, NULL);
2869
2870 /*
2871 * This may have unfrozen the SSH connection, so do a
2872 * queued-data run.
2873 */
2874 ssh_process_queued_incoming_data(ssh);
2875 }
2876
2877 static void ssh_agentf_callback(void *cv, void *reply, int replylen)
2878 {
2879 struct ssh_channel *c = (struct ssh_channel *)cv;
2880 Ssh ssh = c->ssh;
2881 void *sentreply = reply;
2882
2883 if (!sentreply) {
2884 /* Fake SSH_AGENT_FAILURE. */
2885 sentreply = "\0\0\0\1\5";
2886 replylen = 5;
2887 }
2888 if (ssh->version == 2) {
2889 ssh2_add_channel_data(c, sentreply, replylen);
2890 ssh2_try_send(c);
2891 } else {
2892 send_packet(ssh, SSH1_MSG_CHANNEL_DATA,
2893 PKT_INT, c->remoteid,
2894 PKTT_DATA,
2895 PKT_INT, replylen,
2896 PKT_DATA, sentreply, replylen,
2897 PKTT_OTHER,
2898 PKT_END);
2899 }
2900 if (reply)
2901 sfree(reply);
2902 }
2903
2904 /*
2905 * Client-initiated disconnection. Send a DISCONNECT if `wire_reason'
2906 * non-NULL, otherwise just close the connection. `client_reason' == NULL
2907 * => log `wire_reason'.
2908 */
2909 static void ssh_disconnect(Ssh ssh, char *client_reason, char *wire_reason,
2910 int code, int clean_exit)
2911 {
2912 char *error;
2913 if (!client_reason)
2914 client_reason = wire_reason;
2915 if (client_reason)
2916 error = dupprintf("Disconnected: %s", client_reason);
2917 else
2918 error = dupstr("Disconnected");
2919 if (wire_reason) {
2920 if (ssh->version == 1) {
2921 send_packet(ssh, SSH1_MSG_DISCONNECT, PKT_STR, wire_reason,
2922 PKT_END);
2923 } else if (ssh->version == 2) {
2924 struct Packet *pktout = ssh2_pkt_init(SSH2_MSG_DISCONNECT);
2925 ssh2_pkt_adduint32(pktout, code);
2926 ssh2_pkt_addstring(pktout, wire_reason);
2927 ssh2_pkt_addstring(pktout, "en"); /* language tag */
2928 ssh2_pkt_send_noqueue(ssh, pktout);
2929 }
2930 }
2931 ssh->close_expected = TRUE;
2932 ssh->clean_exit = clean_exit;
2933 ssh_closing((Plug)ssh, error, 0, 0);
2934 sfree(error);
2935 }
2936
2937 /*
2938 * Handle the key exchange and user authentication phases.
2939 */
2940 static int do_ssh1_login(Ssh ssh, unsigned char *in, int inlen,
2941 struct Packet *pktin)
2942 {
2943 int i, j, ret;
2944 unsigned char cookie[8], *ptr;
2945 struct RSAKey servkey, hostkey;
2946 struct MD5Context md5c;
2947 struct do_ssh1_login_state {
2948 int len;
2949 unsigned char *rsabuf, *keystr1, *keystr2;
2950 unsigned long supported_ciphers_mask, supported_auths_mask;
2951 int tried_publickey, tried_agent;
2952 int tis_auth_refused, ccard_auth_refused;
2953 unsigned char session_id[16];
2954 int cipher_type;
2955 char username[100];
2956 void *publickey_blob;
2957 int publickey_bloblen;
2958 char *publickey_comment;
2959 int publickey_encrypted;
2960 prompts_t *cur_prompt;
2961 char c;
2962 int pwpkt_type;
2963 unsigned char request[5], *response, *p;
2964 int responselen;
2965 int keyi, nkeys;
2966 int authed;
2967 struct RSAKey key;
2968 Bignum challenge;
2969 char *commentp;
2970 int commentlen;
2971 int dlgret;
2972 };
2973 crState(do_ssh1_login_state);
2974
2975 crBegin(ssh->do_ssh1_login_crstate);
2976
2977 if (!pktin)
2978 crWaitUntil(pktin);
2979
2980 if (pktin->type != SSH1_SMSG_PUBLIC_KEY) {
2981 bombout(("Public key packet not received"));
2982 crStop(0);
2983 }
2984
2985 logevent("Received public keys");
2986
2987 ptr = ssh_pkt_getdata(pktin, 8);
2988 if (!ptr) {
2989 bombout(("SSH-1 public key packet stopped before random cookie"));
2990 crStop(0);
2991 }
2992 memcpy(cookie, ptr, 8);
2993
2994 if (!ssh1_pkt_getrsakey(pktin, &servkey, &s->keystr1) ||
2995 !ssh1_pkt_getrsakey(pktin, &hostkey, &s->keystr2)) {
2996 bombout(("Failed to read SSH-1 public keys from public key packet"));
2997 crStop(0);
2998 }
2999
3000 /*
3001 * Log the host key fingerprint.
3002 */
3003 {
3004 char logmsg[80];
3005 logevent("Host key fingerprint is:");
3006 strcpy(logmsg, " ");
3007 hostkey.comment = NULL;
3008 rsa_fingerprint(logmsg + strlen(logmsg),
3009 sizeof(logmsg) - strlen(logmsg), &hostkey);
3010 logevent(logmsg);
3011 }
3012
3013 ssh->v1_remote_protoflags = ssh_pkt_getuint32(pktin);
3014 s->supported_ciphers_mask = ssh_pkt_getuint32(pktin);
3015 s->supported_auths_mask = ssh_pkt_getuint32(pktin);
3016
3017 ssh->v1_local_protoflags =
3018 ssh->v1_remote_protoflags & SSH1_PROTOFLAGS_SUPPORTED;
3019 ssh->v1_local_protoflags |= SSH1_PROTOFLAG_SCREEN_NUMBER;
3020
3021 MD5Init(&md5c);
3022 MD5Update(&md5c, s->keystr2, hostkey.bytes);
3023 MD5Update(&md5c, s->keystr1, servkey.bytes);
3024 MD5Update(&md5c, cookie, 8);
3025 MD5Final(s->session_id, &md5c);
3026
3027 for (i = 0; i < 32; i++)
3028 ssh->session_key[i] = random_byte();
3029
3030 /*
3031 * Verify that the `bits' and `bytes' parameters match.
3032 */
3033 if (hostkey.bits > hostkey.bytes * 8 ||
3034 servkey.bits > servkey.bytes * 8) {
3035 bombout(("SSH-1 public keys were badly formatted"));
3036 crStop(0);
3037 }
3038
3039 s->len = (hostkey.bytes > servkey.bytes ? hostkey.bytes : servkey.bytes);
3040
3041 s->rsabuf = snewn(s->len, unsigned char);
3042
3043 /*
3044 * Verify the host key.
3045 */
3046 {
3047 /*
3048 * First format the key into a string.
3049 */
3050 int len = rsastr_len(&hostkey);
3051 char fingerprint[100];
3052 char *keystr = snewn(len, char);
3053 rsastr_fmt(keystr, &hostkey);
3054 rsa_fingerprint(fingerprint, sizeof(fingerprint), &hostkey);
3055
3056 ssh_set_frozen(ssh, 1);
3057 s->dlgret = verify_ssh_host_key(ssh->frontend,
3058 ssh->savedhost, ssh->savedport,
3059 "rsa", keystr, fingerprint,
3060 ssh_dialog_callback, ssh);
3061 sfree(keystr);
3062 if (s->dlgret < 0) {
3063 do {
3064 crReturn(0);
3065 if (pktin) {
3066 bombout(("Unexpected data from server while waiting"
3067 " for user host key response"));
3068 crStop(0);
3069 }
3070 } while (pktin || inlen > 0);
3071 s->dlgret = ssh->user_response;
3072 }
3073 ssh_set_frozen(ssh, 0);
3074
3075 if (s->dlgret == 0) {
3076 ssh_disconnect(ssh, "User aborted at host key verification",
3077 NULL, 0, TRUE);
3078 crStop(0);
3079 }
3080 }
3081
3082 for (i = 0; i < 32; i++) {
3083 s->rsabuf[i] = ssh->session_key[i];
3084 if (i < 16)
3085 s->rsabuf[i] ^= s->session_id[i];
3086 }
3087
3088 if (hostkey.bytes > servkey.bytes) {
3089 ret = rsaencrypt(s->rsabuf, 32, &servkey);
3090 if (ret)
3091 ret = rsaencrypt(s->rsabuf, servkey.bytes, &hostkey);
3092 } else {
3093 ret = rsaencrypt(s->rsabuf, 32, &hostkey);
3094 if (ret)
3095 ret = rsaencrypt(s->rsabuf, hostkey.bytes, &servkey);
3096 }
3097 if (!ret) {
3098 bombout(("SSH-1 public key encryptions failed due to bad formatting"));
3099 crStop(0);
3100 }
3101
3102 logevent("Encrypted session key");
3103
3104 {
3105 int cipher_chosen = 0, warn = 0;
3106 char *cipher_string = NULL;
3107 int i;
3108 for (i = 0; !cipher_chosen && i < CIPHER_MAX; i++) {
3109 int next_cipher = ssh->cfg.ssh_cipherlist[i];
3110 if (next_cipher == CIPHER_WARN) {
3111 /* If/when we choose a cipher, warn about it */
3112 warn = 1;
3113 } else if (next_cipher == CIPHER_AES) {
3114 /* XXX Probably don't need to mention this. */
3115 logevent("AES not supported in SSH-1, skipping");
3116 } else {
3117 switch (next_cipher) {
3118 case CIPHER_3DES: s->cipher_type = SSH_CIPHER_3DES;
3119 cipher_string = "3DES"; break;
3120 case CIPHER_BLOWFISH: s->cipher_type = SSH_CIPHER_BLOWFISH;
3121 cipher_string = "Blowfish"; break;
3122 case CIPHER_DES: s->cipher_type = SSH_CIPHER_DES;
3123 cipher_string = "single-DES"; break;
3124 }
3125 if (s->supported_ciphers_mask & (1 << s->cipher_type))
3126 cipher_chosen = 1;
3127 }
3128 }
3129 if (!cipher_chosen) {
3130 if ((s->supported_ciphers_mask & (1 << SSH_CIPHER_3DES)) == 0)
3131 bombout(("Server violates SSH-1 protocol by not "
3132 "supporting 3DES encryption"));
3133 else
3134 /* shouldn't happen */
3135 bombout(("No supported ciphers found"));
3136 crStop(0);
3137 }
3138
3139 /* Warn about chosen cipher if necessary. */
3140 if (warn) {
3141 ssh_set_frozen(ssh, 1);
3142 s->dlgret = askalg(ssh->frontend, "cipher", cipher_string,
3143 ssh_dialog_callback, ssh);
3144 if (s->dlgret < 0) {
3145 do {
3146 crReturn(0);
3147 if (pktin) {
3148 bombout(("Unexpected data from server while waiting"
3149 " for user response"));
3150 crStop(0);
3151 }
3152 } while (pktin || inlen > 0);
3153 s->dlgret = ssh->user_response;
3154 }
3155 ssh_set_frozen(ssh, 0);
3156 if (s->dlgret == 0) {
3157 ssh_disconnect(ssh, "User aborted at cipher warning", NULL,
3158 0, TRUE);
3159 crStop(0);
3160 }
3161 }
3162 }
3163
3164 switch (s->cipher_type) {
3165 case SSH_CIPHER_3DES:
3166 logevent("Using 3DES encryption");
3167 break;
3168 case SSH_CIPHER_DES:
3169 logevent("Using single-DES encryption");
3170 break;
3171 case SSH_CIPHER_BLOWFISH:
3172 logevent("Using Blowfish encryption");
3173 break;
3174 }
3175
3176 send_packet(ssh, SSH1_CMSG_SESSION_KEY,
3177 PKT_CHAR, s->cipher_type,
3178 PKT_DATA, cookie, 8,
3179 PKT_CHAR, (s->len * 8) >> 8, PKT_CHAR, (s->len * 8) & 0xFF,
3180 PKT_DATA, s->rsabuf, s->len,
3181 PKT_INT, ssh->v1_local_protoflags, PKT_END);
3182
3183 logevent("Trying to enable encryption...");
3184
3185 sfree(s->rsabuf);
3186
3187 ssh->cipher = (s->cipher_type == SSH_CIPHER_BLOWFISH ? &ssh_blowfish_ssh1 :
3188 s->cipher_type == SSH_CIPHER_DES ? &ssh_des :
3189 &ssh_3des);
3190 ssh->v1_cipher_ctx = ssh->cipher->make_context();
3191 ssh->cipher->sesskey(ssh->v1_cipher_ctx, ssh->session_key);
3192 logeventf(ssh, "Initialised %s encryption", ssh->cipher->text_name);
3193
3194 ssh->crcda_ctx = crcda_make_context();
3195 logevent("Installing CRC compensation attack detector");
3196
3197 if (servkey.modulus) {
3198 sfree(servkey.modulus);
3199 servkey.modulus = NULL;
3200 }
3201 if (servkey.exponent) {
3202 sfree(servkey.exponent);
3203 servkey.exponent = NULL;
3204 }
3205 if (hostkey.modulus) {
3206 sfree(hostkey.modulus);
3207 hostkey.modulus = NULL;
3208 }
3209 if (hostkey.exponent) {
3210 sfree(hostkey.exponent);
3211 hostkey.exponent = NULL;
3212 }
3213 crWaitUntil(pktin);
3214
3215 if (pktin->type != SSH1_SMSG_SUCCESS) {
3216 bombout(("Encryption not successfully enabled"));
3217 crStop(0);
3218 }
3219
3220 logevent("Successfully started encryption");
3221
3222 fflush(stdout); /* FIXME eh? */
3223 {
3224 if (!*ssh->cfg.username) {
3225 int ret; /* need not be kept over crReturn */
3226 s->cur_prompt = new_prompts(ssh->frontend);
3227 s->cur_prompt->to_server = TRUE;
3228 s->cur_prompt->name = dupstr("SSH login name");
3229 add_prompt(s->cur_prompt, dupstr("login as: "), TRUE,
3230 lenof(s->username));
3231 ret = get_userpass_input(s->cur_prompt, NULL, 0);
3232 while (ret < 0) {
3233 ssh->send_ok = 1;
3234 crWaitUntil(!pktin);
3235 ret = get_userpass_input(s->cur_prompt, in, inlen);
3236 ssh->send_ok = 0;
3237 }
3238 if (!ret) {
3239 /*
3240 * Failed to get a username. Terminate.
3241 */
3242 free_prompts(s->cur_prompt);
3243 ssh_disconnect(ssh, "No username provided", NULL, 0, TRUE);
3244 crStop(0);
3245 }
3246 memcpy(s->username, s->cur_prompt->prompts[0]->result,
3247 lenof(s->username));
3248 free_prompts(s->cur_prompt);
3249 } else {
3250 strncpy(s->username, ssh->cfg.username, sizeof(s->username));
3251 s->username[sizeof(s->username)-1] = '\0';
3252 }
3253
3254 send_packet(ssh, SSH1_CMSG_USER, PKT_STR, s->username, PKT_END);
3255 {
3256 char *userlog = dupprintf("Sent username \"%s\"", s->username);
3257 logevent(userlog);
3258 if (flags & FLAG_INTERACTIVE &&
3259 (!((flags & FLAG_STDERR) && (flags & FLAG_VERBOSE)))) {
3260 c_write_str(ssh, userlog);
3261 c_write_str(ssh, "\r\n");
3262 }
3263 sfree(userlog);
3264 }
3265 }
3266
3267 crWaitUntil(pktin);
3268
3269 if ((ssh->remote_bugs & BUG_CHOKES_ON_RSA)) {
3270 /* We must not attempt PK auth. Pretend we've already tried it. */
3271 s->tried_publickey = s->tried_agent = 1;
3272 } else {
3273 s->tried_publickey = s->tried_agent = 0;
3274 }
3275 s->tis_auth_refused = s->ccard_auth_refused = 0;
3276 /*
3277 * Load the public half of any configured keyfile for later use.
3278 */
3279 if (!filename_is_null(ssh->cfg.keyfile)) {
3280 int keytype;
3281 logeventf(ssh, "Reading private key file \"%.150s\"",
3282 filename_to_str(&ssh->cfg.keyfile));
3283 keytype = key_type(&ssh->cfg.keyfile);
3284 if (keytype == SSH_KEYTYPE_SSH1) {
3285 const char *error;
3286 if (rsakey_pubblob(&ssh->cfg.keyfile,
3287 &s->publickey_blob, &s->publickey_bloblen,
3288 &s->publickey_comment, &error)) {
3289 s->publickey_encrypted = rsakey_encrypted(&ssh->cfg.keyfile,
3290 NULL);
3291 } else {
3292 char *msgbuf;
3293 logeventf(ssh, "Unable to load private key (%s)", error);
3294 msgbuf = dupprintf("Unable to load private key file "
3295 "\"%.150s\" (%s)\r\n",
3296 filename_to_str(&ssh->cfg.keyfile),
3297 error);
3298 c_write_str(ssh, msgbuf);
3299 sfree(msgbuf);
3300 s->publickey_blob = NULL;
3301 }
3302 } else {
3303 char *msgbuf;
3304 logeventf(ssh, "Unable to use this key file (%s)",
3305 key_type_to_str(keytype));
3306 msgbuf = dupprintf("Unable to use key file \"%.150s\""
3307 " (%s)\r\n",
3308 filename_to_str(&ssh->cfg.keyfile),
3309 key_type_to_str(keytype));
3310 c_write_str(ssh, msgbuf);
3311 sfree(msgbuf);
3312 s->publickey_blob = NULL;
3313 }
3314 } else
3315 s->publickey_blob = NULL;
3316
3317 while (pktin->type == SSH1_SMSG_FAILURE) {
3318 s->pwpkt_type = SSH1_CMSG_AUTH_PASSWORD;
3319
3320 if (ssh->cfg.tryagent && agent_exists() && !s->tried_agent) {
3321 /*
3322 * Attempt RSA authentication using Pageant.
3323 */
3324 void *r;
3325
3326 s->authed = FALSE;
3327 s->tried_agent = 1;
3328 logevent("Pageant is running. Requesting keys.");
3329
3330 /* Request the keys held by the agent. */
3331 PUT_32BIT(s->request, 1);
3332 s->request[4] = SSH1_AGENTC_REQUEST_RSA_IDENTITIES;
3333 if (!agent_query(s->request, 5, &r, &s->responselen,
3334 ssh_agent_callback, ssh)) {
3335 do {
3336 crReturn(0);
3337 if (pktin) {
3338 bombout(("Unexpected data from server while waiting"
3339 " for agent response"));
3340 crStop(0);
3341 }
3342 } while (pktin || inlen > 0);
3343 r = ssh->agent_response;
3344 s->responselen = ssh->agent_response_len;
3345 }
3346 s->response = (unsigned char *) r;
3347 if (s->response && s->responselen >= 5 &&
3348 s->response[4] == SSH1_AGENT_RSA_IDENTITIES_ANSWER) {
3349 s->p = s->response + 5;
3350 s->nkeys = GET_32BIT(s->p);
3351 s->p += 4;
3352 logeventf(ssh, "Pageant has %d SSH-1 keys", s->nkeys);
3353 for (s->keyi = 0; s->keyi < s->nkeys; s->keyi++) {
3354 unsigned char *pkblob = s->p;
3355 s->p += 4;
3356 {
3357 int n, ok = FALSE;
3358 do { /* do while (0) to make breaking easy */
3359 n = ssh1_read_bignum
3360 (s->p, s->responselen-(s->p-s->response),
3361 &s->key.exponent);
3362 if (n < 0)
3363 break;
3364 s->p += n;
3365 n = ssh1_read_bignum
3366 (s->p, s->responselen-(s->p-s->response),
3367 &s->key.modulus);
3368 if (n < 0)
3369 break;
3370 s->p += n;
3371 if (s->responselen - (s->p-s->response) < 4)
3372 break;
3373 s->commentlen = GET_32BIT(s->p);
3374 s->p += 4;
3375 if (s->responselen - (s->p-s->response) <
3376 s->commentlen)
3377 break;
3378 s->commentp = (char *)s->p;
3379 s->p += s->commentlen;
3380 ok = TRUE;
3381 } while (0);
3382 if (!ok) {
3383 logevent("Pageant key list packet was truncated");
3384 break;
3385 }
3386 }
3387 if (s->publickey_blob) {
3388 if (!memcmp(pkblob, s->publickey_blob,
3389 s->publickey_bloblen)) {
3390 logeventf(ssh, "Pageant key #%d matches "
3391 "configured key file", s->keyi);
3392 s->tried_publickey = 1;
3393 } else
3394 /* Skip non-configured key */
3395 continue;
3396 }
3397 logeventf(ssh, "Trying Pageant key #%d", s->keyi);
3398 send_packet(ssh, SSH1_CMSG_AUTH_RSA,
3399 PKT_BIGNUM, s->key.modulus, PKT_END);
3400 crWaitUntil(pktin);
3401 if (pktin->type != SSH1_SMSG_AUTH_RSA_CHALLENGE) {
3402 logevent("Key refused");
3403 continue;
3404 }
3405 logevent("Received RSA challenge");
3406 if ((s->challenge = ssh1_pkt_getmp(pktin)) == NULL) {
3407 bombout(("Server's RSA challenge was badly formatted"));
3408 crStop(0);
3409 }
3410
3411 {
3412 char *agentreq, *q, *ret;
3413 void *vret;
3414 int len, retlen;
3415 len = 1 + 4; /* message type, bit count */
3416 len += ssh1_bignum_length(s->key.exponent);
3417 len += ssh1_bignum_length(s->key.modulus);
3418 len += ssh1_bignum_length(s->challenge);
3419 len += 16; /* session id */
3420 len += 4; /* response format */
3421 agentreq = snewn(4 + len, char);
3422 PUT_32BIT(agentreq, len);
3423 q = agentreq + 4;
3424 *q++ = SSH1_AGENTC_RSA_CHALLENGE;
3425 PUT_32BIT(q, bignum_bitcount(s->key.modulus));
3426 q += 4;
3427 q += ssh1_write_bignum(q, s->key.exponent);
3428 q += ssh1_write_bignum(q, s->key.modulus);
3429 q += ssh1_write_bignum(q, s->challenge);
3430 memcpy(q, s->session_id, 16);
3431 q += 16;
3432 PUT_32BIT(q, 1); /* response format */
3433 if (!agent_query(agentreq, len + 4, &vret, &retlen,
3434 ssh_agent_callback, ssh)) {
3435 sfree(agentreq);
3436 do {
3437 crReturn(0);
3438 if (pktin) {
3439 bombout(("Unexpected data from server"
3440 " while waiting for agent"
3441 " response"));
3442 crStop(0);
3443 }
3444 } while (pktin || inlen > 0);
3445 vret = ssh->agent_response;
3446 retlen = ssh->agent_response_len;
3447 } else
3448 sfree(agentreq);
3449 ret = vret;
3450 if (ret) {
3451 if (ret[4] == SSH1_AGENT_RSA_RESPONSE) {
3452 logevent("Sending Pageant's response");
3453 send_packet(ssh, SSH1_CMSG_AUTH_RSA_RESPONSE,
3454 PKT_DATA, ret + 5, 16,
3455 PKT_END);
3456 sfree(ret);
3457 crWaitUntil(pktin);
3458 if (pktin->type == SSH1_SMSG_SUCCESS) {
3459 logevent
3460 ("Pageant's response accepted");
3461 if (flags & FLAG_VERBOSE) {
3462 c_write_str(ssh, "Authenticated using"
3463 " RSA key \"");
3464 c_write(ssh, s->commentp,
3465 s->commentlen);
3466 c_write_str(ssh, "\" from agent\r\n");
3467 }
3468 s->authed = TRUE;
3469 } else
3470 logevent
3471 ("Pageant's response not accepted");
3472 } else {
3473 logevent
3474 ("Pageant failed to answer challenge");
3475 sfree(ret);
3476 }
3477 } else {
3478 logevent("No reply received from Pageant");
3479 }
3480 }
3481 freebn(s->key.exponent);
3482 freebn(s->key.modulus);
3483 freebn(s->challenge);
3484 if (s->authed)
3485 break;
3486 }
3487 sfree(s->response);
3488 if (s->publickey_blob && !s->tried_publickey)
3489 logevent("Configured key file not in Pageant");
3490 }
3491 if (s->authed)
3492 break;
3493 }
3494 if (s->publickey_blob && !s->tried_publickey) {
3495 /*
3496 * Try public key authentication with the specified
3497 * key file.
3498 */
3499 int got_passphrase; /* need not be kept over crReturn */
3500 if (flags & FLAG_VERBOSE)
3501 c_write_str(ssh, "Trying public key authentication.\r\n");
3502 logeventf(ssh, "Trying public key \"%s\"",
3503 filename_to_str(&ssh->cfg.keyfile));
3504 s->tried_publickey = 1;
3505 got_passphrase = FALSE;
3506 while (!got_passphrase) {
3507 /*
3508 * Get a passphrase, if necessary.
3509 */
3510 char *passphrase = NULL; /* only written after crReturn */
3511 const char *error;
3512 if (!s->publickey_encrypted) {
3513 if (flags & FLAG_VERBOSE)
3514 c_write_str(ssh, "No passphrase required.\r\n");
3515 passphrase = NULL;
3516 } else {
3517 int ret; /* need not be kept over crReturn */
3518 s->cur_prompt = new_prompts(ssh->frontend);
3519 s->cur_prompt->to_server = FALSE;
3520 s->cur_prompt->name = dupstr("SSH key passphrase");
3521 add_prompt(s->cur_prompt,
3522 dupprintf("Passphrase for key \"%.100s\": ",
3523 s->publickey_comment),
3524 FALSE, SSH_MAX_PASSWORD_LEN);
3525 ret = get_userpass_input(s->cur_prompt, NULL, 0);
3526 while (ret < 0) {
3527 ssh->send_ok = 1;
3528 crWaitUntil(!pktin);
3529 ret = get_userpass_input(s->cur_prompt, in, inlen);
3530 ssh->send_ok = 0;
3531 }
3532 if (!ret) {
3533 /* Failed to get a passphrase. Terminate. */
3534 free_prompts(s->cur_prompt);
3535 ssh_disconnect(ssh, NULL, "Unable to authenticate",
3536 0, TRUE);
3537 crStop(0);
3538 }
3539 passphrase = dupstr(s->cur_prompt->prompts[0]->result);
3540 free_prompts(s->cur_prompt);
3541 }
3542 /*
3543 * Try decrypting key with passphrase.
3544 */
3545 ret = loadrsakey(&ssh->cfg.keyfile, &s->key, passphrase,
3546 &error);
3547 if (passphrase) {
3548 memset(passphrase, 0, strlen(passphrase));
3549 sfree(passphrase);
3550 }
3551 if (ret == 1) {
3552 /* Correct passphrase. */
3553 got_passphrase = TRUE;
3554 } else if (ret == 0) {
3555 c_write_str(ssh, "Couldn't load private key from ");
3556 c_write_str(ssh, filename_to_str(&ssh->cfg.keyfile));
3557 c_write_str(ssh, " (");
3558 c_write_str(ssh, error);
3559 c_write_str(ssh, ").\r\n");
3560 got_passphrase = FALSE;
3561 break; /* go and try something else */
3562 } else if (ret == -1) {
3563 c_write_str(ssh, "Wrong passphrase.\r\n"); /* FIXME */
3564 got_passphrase = FALSE;
3565 /* and try again */
3566 } else {
3567 assert(0 && "unexpected return from loadrsakey()");
3568 got_passphrase = FALSE; /* placate optimisers */
3569 }
3570 }
3571
3572 if (got_passphrase) {
3573
3574 /*
3575 * Send a public key attempt.
3576 */
3577 send_packet(ssh, SSH1_CMSG_AUTH_RSA,
3578 PKT_BIGNUM, s->key.modulus, PKT_END);
3579
3580 crWaitUntil(pktin);
3581 if (pktin->type == SSH1_SMSG_FAILURE) {
3582 c_write_str(ssh, "Server refused our public key.\r\n");
3583 continue; /* go and try something else */
3584 }
3585 if (pktin->type != SSH1_SMSG_AUTH_RSA_CHALLENGE) {
3586 bombout(("Bizarre response to offer of public key"));
3587 crStop(0);
3588 }
3589
3590 {
3591 int i;
3592 unsigned char buffer[32];
3593 Bignum challenge, response;
3594
3595 if ((challenge = ssh1_pkt_getmp(pktin)) == NULL) {
3596 bombout(("Server's RSA challenge was badly formatted"));
3597 crStop(0);
3598 }
3599 response = rsadecrypt(challenge, &s->key);
3600 freebn(s->key.private_exponent);/* burn the evidence */
3601
3602 for (i = 0; i < 32; i++) {
3603 buffer[i] = bignum_byte(response, 31 - i);
3604 }
3605
3606 MD5Init(&md5c);
3607 MD5Update(&md5c, buffer, 32);
3608 MD5Update(&md5c, s->session_id, 16);
3609 MD5Final(buffer, &md5c);
3610
3611 send_packet(ssh, SSH1_CMSG_AUTH_RSA_RESPONSE,
3612 PKT_DATA, buffer, 16, PKT_END);
3613
3614 freebn(challenge);
3615 freebn(response);
3616 }
3617
3618 crWaitUntil(pktin);
3619 if (pktin->type == SSH1_SMSG_FAILURE) {
3620 if (flags & FLAG_VERBOSE)
3621 c_write_str(ssh, "Failed to authenticate with"
3622 " our public key.\r\n");
3623 continue; /* go and try something else */
3624 } else if (pktin->type != SSH1_SMSG_SUCCESS) {
3625 bombout(("Bizarre response to RSA authentication response"));
3626 crStop(0);
3627 }
3628
3629 break; /* we're through! */
3630 }
3631
3632 }
3633
3634 /*
3635 * Otherwise, try various forms of password-like authentication.
3636 */
3637 s->cur_prompt = new_prompts(ssh->frontend);
3638
3639 if (ssh->cfg.try_tis_auth &&
3640 (s->supported_auths_mask & (1 << SSH1_AUTH_TIS)) &&
3641 !s->tis_auth_refused) {
3642 s->pwpkt_type = SSH1_CMSG_AUTH_TIS_RESPONSE;
3643 logevent("Requested TIS authentication");
3644 send_packet(ssh, SSH1_CMSG_AUTH_TIS, PKT_END);
3645 crWaitUntil(pktin);
3646 if (pktin->type != SSH1_SMSG_AUTH_TIS_CHALLENGE) {
3647 logevent("TIS authentication declined");
3648 if (flags & FLAG_INTERACTIVE)
3649 c_write_str(ssh, "TIS authentication refused.\r\n");
3650 s->tis_auth_refused = 1;
3651 continue;
3652 } else {
3653 char *challenge;
3654 int challengelen;
3655 char *instr_suf, *prompt;
3656
3657 ssh_pkt_getstring(pktin, &challenge, &challengelen);
3658 if (!challenge) {
3659 bombout(("TIS challenge packet was badly formed"));
3660 crStop(0);
3661 }
3662 logevent("Received TIS challenge");
3663 s->cur_prompt->to_server = TRUE;
3664 s->cur_prompt->name = dupstr("SSH TIS authentication");
3665 /* Prompt heuristic comes from OpenSSH */
3666 if (memchr(challenge, '\n', challengelen)) {
3667 instr_suf = dupstr("");
3668 prompt = dupprintf("%.*s", challengelen, challenge);
3669 } else {
3670 instr_suf = dupprintf("%.*s", challengelen, challenge);
3671 prompt = dupstr("Response: ");
3672 }
3673 s->cur_prompt->instruction =
3674 dupprintf("Using TIS authentication.%s%s",
3675 (*instr_suf) ? "\n" : "",
3676 instr_suf);
3677 s->cur_prompt->instr_reqd = TRUE;
3678 add_prompt(s->cur_prompt, prompt, FALSE, SSH_MAX_PASSWORD_LEN);
3679 sfree(instr_suf);
3680 }
3681 }
3682 if (ssh->cfg.try_tis_auth &&
3683 (s->supported_auths_mask & (1 << SSH1_AUTH_CCARD)) &&
3684 !s->ccard_auth_refused) {
3685 s->pwpkt_type = SSH1_CMSG_AUTH_CCARD_RESPONSE;
3686 logevent("Requested CryptoCard authentication");
3687 send_packet(ssh, SSH1_CMSG_AUTH_CCARD, PKT_END);
3688 crWaitUntil(pktin);
3689 if (pktin->type != SSH1_SMSG_AUTH_CCARD_CHALLENGE) {
3690 logevent("CryptoCard authentication declined");
3691 c_write_str(ssh, "CryptoCard authentication refused.\r\n");
3692 s->ccard_auth_refused = 1;
3693 continue;
3694 } else {
3695 char *challenge;
3696 int challengelen;
3697 char *instr_suf, *prompt;
3698
3699 ssh_pkt_getstring(pktin, &challenge, &challengelen);
3700 if (!challenge) {
3701 bombout(("CryptoCard challenge packet was badly formed"));
3702 crStop(0);
3703 }
3704 logevent("Received CryptoCard challenge");
3705 s->cur_prompt->to_server = TRUE;
3706 s->cur_prompt->name = dupstr("SSH CryptoCard authentication");
3707 s->cur_prompt->name_reqd = FALSE;
3708 /* Prompt heuristic comes from OpenSSH */
3709 if (memchr(challenge, '\n', challengelen)) {
3710 instr_suf = dupstr("");
3711 prompt = dupprintf("%.*s", challengelen, challenge);
3712 } else {
3713 instr_suf = dupprintf("%.*s", challengelen, challenge);
3714 prompt = dupstr("Response: ");
3715 }
3716 s->cur_prompt->instruction =
3717 dupprintf("Using CryptoCard authentication.%s%s",
3718 (*instr_suf) ? "\n" : "",
3719 instr_suf);
3720 s->cur_prompt->instr_reqd = TRUE;
3721 add_prompt(s->cur_prompt, prompt, FALSE, SSH_MAX_PASSWORD_LEN);
3722 sfree(instr_suf);
3723 }
3724 }
3725 if (s->pwpkt_type == SSH1_CMSG_AUTH_PASSWORD) {
3726 s->cur_prompt->to_server = TRUE;
3727 s->cur_prompt->name = dupstr("SSH password");
3728 add_prompt(s->cur_prompt, dupprintf("%.90s@%.90s's password: ",
3729 s->username, ssh->savedhost),
3730 FALSE, SSH_MAX_PASSWORD_LEN);
3731 }
3732
3733 /*
3734 * Show password prompt, having first obtained it via a TIS
3735 * or CryptoCard exchange if we're doing TIS or CryptoCard
3736 * authentication.
3737 */
3738 {
3739 int ret; /* need not be kept over crReturn */
3740 ret = get_userpass_input(s->cur_prompt, NULL, 0);
3741 while (ret < 0) {
3742 ssh->send_ok = 1;
3743 crWaitUntil(!pktin);
3744 ret = get_userpass_input(s->cur_prompt, in, inlen);
3745 ssh->send_ok = 0;
3746 }
3747 if (!ret) {
3748 /*
3749 * Failed to get a password (for example
3750 * because one was supplied on the command line
3751 * which has already failed to work). Terminate.
3752 */
3753 free_prompts(s->cur_prompt);
3754 ssh_disconnect(ssh, NULL, "Unable to authenticate", 0, TRUE);
3755 crStop(0);
3756 }
3757 }
3758
3759 if (s->pwpkt_type == SSH1_CMSG_AUTH_PASSWORD) {
3760 /*
3761 * Defence against traffic analysis: we send a
3762 * whole bunch of packets containing strings of
3763 * different lengths. One of these strings is the
3764 * password, in a SSH1_CMSG_AUTH_PASSWORD packet.
3765 * The others are all random data in
3766 * SSH1_MSG_IGNORE packets. This way a passive
3767 * listener can't tell which is the password, and
3768 * hence can't deduce the password length.
3769 *
3770 * Anybody with a password length greater than 16
3771 * bytes is going to have enough entropy in their
3772 * password that a listener won't find it _that_
3773 * much help to know how long it is. So what we'll
3774 * do is:
3775 *
3776 * - if password length < 16, we send 15 packets
3777 * containing string lengths 1 through 15
3778 *
3779 * - otherwise, we let N be the nearest multiple
3780 * of 8 below the password length, and send 8
3781 * packets containing string lengths N through
3782 * N+7. This won't obscure the order of
3783 * magnitude of the password length, but it will
3784 * introduce a bit of extra uncertainty.
3785 *
3786 * A few servers can't deal with SSH1_MSG_IGNORE, at
3787 * least in this context. For these servers, we need
3788 * an alternative defence. We make use of the fact
3789 * that the password is interpreted as a C string:
3790 * so we can append a NUL, then some random data.
3791 *
3792 * A few servers can deal with neither SSH1_MSG_IGNORE
3793 * here _nor_ a padded password string.
3794 * For these servers we are left with no defences
3795 * against password length sniffing.
3796 */
3797 if (!(ssh->remote_bugs & BUG_CHOKES_ON_SSH1_IGNORE) &&
3798 !(ssh->remote_bugs & BUG_NEEDS_SSH1_PLAIN_PASSWORD)) {
3799 /*
3800 * The server can deal with SSH1_MSG_IGNORE, so
3801 * we can use the primary defence.
3802 */
3803 int bottom, top, pwlen, i;
3804 char *randomstr;
3805
3806 pwlen = strlen(s->cur_prompt->prompts[0]->result);
3807 if (pwlen < 16) {
3808 bottom = 0; /* zero length passwords are OK! :-) */
3809 top = 15;
3810 } else {
3811 bottom = pwlen & ~7;
3812 top = bottom + 7;
3813 }
3814
3815 assert(pwlen >= bottom && pwlen <= top);
3816
3817 randomstr = snewn(top + 1, char);
3818
3819 for (i = bottom; i <= top; i++) {
3820 if (i == pwlen) {
3821 defer_packet(ssh, s->pwpkt_type,
3822 PKTT_PASSWORD, PKT_STR,
3823 s->cur_prompt->prompts[0]->result,
3824 PKTT_OTHER, PKT_END);
3825 } else {
3826 for (j = 0; j < i; j++) {
3827 do {
3828 randomstr[j] = random_byte();
3829 } while (randomstr[j] == '\0');
3830 }
3831 randomstr[i] = '\0';
3832 defer_packet(ssh, SSH1_MSG_IGNORE,
3833 PKT_STR, randomstr, PKT_END);
3834 }
3835 }
3836 logevent("Sending password with camouflage packets");
3837 ssh_pkt_defersend(ssh);
3838 sfree(randomstr);
3839 }
3840 else if (!(ssh->remote_bugs & BUG_NEEDS_SSH1_PLAIN_PASSWORD)) {
3841 /*
3842 * The server can't deal with SSH1_MSG_IGNORE
3843 * but can deal with padded passwords, so we
3844 * can use the secondary defence.
3845 */
3846 char string[64];
3847 char *ss;
3848 int len;
3849
3850 len = strlen(s->cur_prompt->prompts[0]->result);
3851 if (len < sizeof(string)) {
3852 ss = string;
3853 strcpy(string, s->cur_prompt->prompts[0]->result);
3854 len++; /* cover the zero byte */
3855 while (len < sizeof(string)) {
3856 string[len++] = (char) random_byte();
3857 }
3858 } else {
3859 ss = s->cur_prompt->prompts[0]->result;
3860 }
3861 logevent("Sending length-padded password");
3862 send_packet(ssh, s->pwpkt_type, PKTT_PASSWORD,
3863 PKT_INT, len, PKT_DATA, ss, len,
3864 PKTT_OTHER, PKT_END);
3865 } else {
3866 /*
3867 * The server is believed unable to cope with
3868 * any of our password camouflage methods.
3869 */
3870 int len;
3871 len = strlen(s->cur_prompt->prompts[0]->result);
3872 logevent("Sending unpadded password");
3873 send_packet(ssh, s->pwpkt_type,
3874 PKTT_PASSWORD, PKT_INT, len,
3875 PKT_DATA, s->cur_prompt->prompts[0]->result, len,
3876 PKTT_OTHER, PKT_END);
3877 }
3878 } else {
3879 send_packet(ssh, s->pwpkt_type, PKTT_PASSWORD,
3880 PKT_STR, s->cur_prompt->prompts[0]->result,
3881 PKTT_OTHER, PKT_END);
3882 }
3883 logevent("Sent password");
3884 free_prompts(s->cur_prompt);
3885 crWaitUntil(pktin);
3886 if (pktin->type == SSH1_SMSG_FAILURE) {
3887 if (flags & FLAG_VERBOSE)
3888 c_write_str(ssh, "Access denied\r\n");
3889 logevent("Authentication refused");
3890 } else if (pktin->type != SSH1_SMSG_SUCCESS) {
3891 bombout(("Strange packet received, type %d", pktin->type));
3892 crStop(0);
3893 }
3894 }
3895
3896 /* Clear up */
3897 if (s->publickey_blob) {
3898 sfree(s->publickey_blob);
3899 sfree(s->publickey_comment);
3900 }
3901
3902 logevent("Authentication successful");
3903
3904 crFinish(1);
3905 }
3906
3907 void sshfwd_close(struct ssh_channel *c)
3908 {
3909 Ssh ssh = c->ssh;
3910
3911 if (ssh->state == SSH_STATE_CLOSED)
3912 return;
3913
3914 if (c && !c->closes) {
3915 /*
3916 * If halfopen is true, we have sent
3917 * CHANNEL_OPEN for this channel, but it hasn't even been
3918 * acknowledged by the server. So we must set a close flag
3919 * on it now, and then when the server acks the channel
3920 * open, we can close it then.
3921 */
3922 if (!c->halfopen) {
3923 if (ssh->version == 1) {
3924 send_packet(ssh, SSH1_MSG_CHANNEL_CLOSE, PKT_INT, c->remoteid,
3925 PKT_END);
3926 } else {
3927 struct Packet *pktout;
3928 pktout = ssh2_pkt_init(SSH2_MSG_CHANNEL_CLOSE);
3929 ssh2_pkt_adduint32(pktout, c->remoteid);
3930 ssh2_pkt_send(ssh, pktout);
3931 }
3932 }
3933 c->closes = 1; /* sent MSG_CLOSE */
3934 if (c->type == CHAN_X11) {
3935 c->u.x11.s = NULL;
3936 logevent("Forwarded X11 connection terminated");
3937 } else if (c->type == CHAN_SOCKDATA ||
3938 c->type == CHAN_SOCKDATA_DORMANT) {
3939 c->u.pfd.s = NULL;
3940 logevent("Forwarded port closed");
3941 }
3942 }
3943 }
3944
3945 int sshfwd_write(struct ssh_channel *c, char *buf, int len)
3946 {
3947 Ssh ssh = c->ssh;
3948
3949 if (ssh->state == SSH_STATE_CLOSED)
3950 return 0;
3951
3952 if (ssh->version == 1) {
3953 send_packet(ssh, SSH1_MSG_CHANNEL_DATA,
3954 PKT_INT, c->remoteid,
3955 PKTT_DATA,
3956 PKT_INT, len, PKT_DATA, buf, len,
3957 PKTT_OTHER, PKT_END);
3958 /*
3959 * In SSH-1 we can return 0 here - implying that forwarded
3960 * connections are never individually throttled - because
3961 * the only circumstance that can cause throttling will be
3962 * the whole SSH connection backing up, in which case
3963 * _everything_ will be throttled as a whole.
3964 */
3965 return 0;
3966 } else {
3967 ssh2_add_channel_data(c, buf, len);
3968 return ssh2_try_send(c);
3969 }
3970 }
3971
3972 void sshfwd_unthrottle(struct ssh_channel *c, int bufsize)
3973 {
3974 Ssh ssh = c->ssh;
3975
3976 if (ssh->state == SSH_STATE_CLOSED)
3977 return;
3978
3979 if (ssh->version == 1) {
3980 if (c->v.v1.throttling && bufsize < SSH1_BUFFER_LIMIT) {
3981 c->v.v1.throttling = 0;
3982 ssh1_throttle(ssh, -1);
3983 }
3984 } else {
3985 ssh2_set_window(c, OUR_V2_WINSIZE - bufsize);
3986 }
3987 }
3988
3989 static void ssh_queueing_handler(Ssh ssh, struct Packet *pktin)
3990 {
3991 struct queued_handler *qh = ssh->qhead;
3992
3993 assert(qh != NULL);
3994
3995 assert(pktin->type == qh->msg1 || pktin->type == qh->msg2);
3996
3997 if (qh->msg1 > 0) {
3998 assert(ssh->packet_dispatch[qh->msg1] == ssh_queueing_handler);
3999 ssh->packet_dispatch[qh->msg1] = NULL;
4000 }
4001 if (qh->msg2 > 0) {
4002 assert(ssh->packet_dispatch[qh->msg2] == ssh_queueing_handler);
4003 ssh->packet_dispatch[qh->msg2] = NULL;
4004 }
4005
4006 if (qh->next) {
4007 ssh->qhead = qh->next;
4008
4009 if (ssh->qhead->msg1 > 0) {
4010 assert(ssh->packet_dispatch[ssh->qhead->msg1] == NULL);
4011 ssh->packet_dispatch[ssh->qhead->msg1] = ssh_queueing_handler;
4012 }
4013 if (ssh->qhead->msg2 > 0) {
4014 assert(ssh->packet_dispatch[ssh->qhead->msg2] == NULL);
4015 ssh->packet_dispatch[ssh->qhead->msg2] = ssh_queueing_handler;
4016 }
4017 } else {
4018 ssh->qhead = ssh->qtail = NULL;
4019 ssh->packet_dispatch[pktin->type] = NULL;
4020 }
4021
4022 qh->handler(ssh, pktin, qh->ctx);
4023
4024 sfree(qh);
4025 }
4026
4027 static void ssh_queue_handler(Ssh ssh, int msg1, int msg2,
4028 chandler_fn_t handler, void *ctx)
4029 {
4030 struct queued_handler *qh;
4031
4032 qh = snew(struct queued_handler);
4033 qh->msg1 = msg1;
4034 qh->msg2 = msg2;
4035 qh->handler = handler;
4036 qh->ctx = ctx;
4037 qh->next = NULL;
4038
4039 if (ssh->qtail == NULL) {
4040 ssh->qhead = qh;
4041
4042 if (qh->msg1 > 0) {
4043 assert(ssh->packet_dispatch[qh->msg1] == NULL);
4044 ssh->packet_dispatch[qh->msg1] = ssh_queueing_handler;
4045 }
4046 if (qh->msg2 > 0) {
4047 assert(ssh->packet_dispatch[qh->msg2] == NULL);
4048 ssh->packet_dispatch[qh->msg2] = ssh_queueing_handler;
4049 }
4050 } else {
4051 ssh->qtail->next = qh;
4052 }
4053 ssh->qtail = qh;
4054 }
4055
4056 static void ssh_rportfwd_succfail(Ssh ssh, struct Packet *pktin, void *ctx)
4057 {
4058 struct ssh_rportfwd *rpf, *pf = (struct ssh_rportfwd *)ctx;
4059
4060 if (pktin->type == (ssh->version == 1 ? SSH1_SMSG_SUCCESS :
4061 SSH2_MSG_REQUEST_SUCCESS)) {
4062 logeventf(ssh, "Remote port forwarding from %s enabled",
4063 pf->sportdesc);
4064 } else {
4065 logeventf(ssh, "Remote port forwarding from %s refused",
4066 pf->sportdesc);
4067
4068 rpf = del234(ssh->rportfwds, pf);
4069 assert(rpf == pf);
4070 free_rportfwd(pf);
4071 }
4072 }
4073
4074 static void ssh_setup_portfwd(Ssh ssh, const Config *cfg)
4075 {
4076 const char *portfwd_strptr = cfg->portfwd;
4077 struct ssh_portfwd *epf;
4078 int i;
4079
4080 if (!ssh->portfwds) {
4081 ssh->portfwds = newtree234(ssh_portcmp);
4082 } else {
4083 /*
4084 * Go through the existing port forwardings and tag them
4085 * with status==DESTROY. Any that we want to keep will be
4086 * re-enabled (status==KEEP) as we go through the
4087 * configuration and find out which bits are the same as
4088 * they were before.
4089 */
4090 struct ssh_portfwd *epf;
4091 int i;
4092 for (i = 0; (epf = index234(ssh->portfwds, i)) != NULL; i++)
4093 epf->status = DESTROY;
4094 }
4095
4096 while (*portfwd_strptr) {
4097 char address_family, type;
4098 int sport,dport,sserv,dserv;
4099 char sports[256], dports[256], saddr[256], host[256];
4100 int n;
4101
4102 address_family = 'A';
4103 type = 'L';
4104 if (*portfwd_strptr == 'A' ||
4105 *portfwd_strptr == '4' ||
4106 *portfwd_strptr == '6')
4107 address_family = *portfwd_strptr++;
4108 if (*portfwd_strptr == 'L' ||
4109 *portfwd_strptr == 'R' ||
4110 *portfwd_strptr == 'D')
4111 type = *portfwd_strptr++;
4112
4113 saddr[0] = '\0';
4114
4115 n = 0;
4116 while (*portfwd_strptr && *portfwd_strptr != '\t') {
4117 if (*portfwd_strptr == ':') {
4118 /*
4119 * We've seen a colon in the middle of the
4120 * source port number. This means that
4121 * everything we've seen until now is the
4122 * source _address_, so we'll move it into
4123 * saddr and start sports from the beginning
4124 * again.
4125 */
4126 portfwd_strptr++;
4127 sports[n] = '\0';
4128 if (ssh->version == 1 && type == 'R') {
4129 logeventf(ssh, "SSH-1 cannot handle remote source address "
4130 "spec \"%s\"; ignoring", sports);
4131 } else
4132 strcpy(saddr, sports);
4133 n = 0;
4134 }
4135 if (n < lenof(sports)-1) sports[n++] = *portfwd_strptr++;
4136 }
4137 sports[n] = 0;
4138 if (type != 'D') {
4139 if (*portfwd_strptr == '\t')
4140 portfwd_strptr++;
4141 n = 0;
4142 while (*portfwd_strptr && *portfwd_strptr != ':') {
4143 if (n < lenof(host)-1) host[n++] = *portfwd_strptr++;
4144 }
4145 host[n] = 0;
4146 if (*portfwd_strptr == ':')
4147 portfwd_strptr++;
4148 n = 0;
4149 while (*portfwd_strptr) {
4150 if (n < lenof(dports)-1) dports[n++] = *portfwd_strptr++;
4151 }
4152 dports[n] = 0;
4153 portfwd_strptr++;
4154 dport = atoi(dports);
4155 dserv = 0;
4156 if (dport == 0) {
4157 dserv = 1;
4158 dport = net_service_lookup(dports);
4159 if (!dport) {
4160 logeventf(ssh, "Service lookup failed for destination"
4161 " port \"%s\"", dports);
4162 }
4163 }
4164 } else {
4165 while (*portfwd_strptr) portfwd_strptr++;
4166 host[0] = 0;
4167 dports[0] = 0;
4168 dport = dserv = -1;
4169 portfwd_strptr++; /* eat the NUL and move to next one */
4170 }
4171 sport = atoi(sports);
4172 sserv = 0;
4173 if (sport == 0) {
4174 sserv = 1;
4175 sport = net_service_lookup(sports);
4176 if (!sport) {
4177 logeventf(ssh, "Service lookup failed for source"
4178 " port \"%s\"", sports);
4179 }
4180 }
4181 if (sport && dport) {
4182 /* Set up a description of the source port. */
4183 struct ssh_portfwd *pfrec, *epfrec;
4184
4185 pfrec = snew(struct ssh_portfwd);
4186 pfrec->type = type;
4187 pfrec->saddr = *saddr ? dupstr(saddr) : NULL;
4188 pfrec->sserv = sserv ? dupstr(sports) : NULL;
4189 pfrec->sport = sport;
4190 pfrec->daddr = *host ? dupstr(host) : NULL;
4191 pfrec->dserv = dserv ? dupstr(dports) : NULL;
4192 pfrec->dport = dport;
4193 pfrec->local = NULL;
4194 pfrec->remote = NULL;
4195 pfrec->addressfamily = (address_family == '4' ? ADDRTYPE_IPV4 :
4196 address_family == '6' ? ADDRTYPE_IPV6 :
4197 ADDRTYPE_UNSPEC);
4198
4199 epfrec = add234(ssh->portfwds, pfrec);
4200 if (epfrec != pfrec) {
4201 /*
4202 * We already have a port forwarding with precisely
4203 * these parameters. Hence, no need to do anything;
4204 * simply tag the existing one as KEEP.
4205 */
4206 epfrec->status = KEEP;
4207 free_portfwd(pfrec);
4208 } else {
4209 pfrec->status = CREATE;
4210 }
4211 }
4212 }
4213
4214 /*
4215 * Now go through and destroy any port forwardings which were
4216 * not re-enabled.
4217 */
4218 for (i = 0; (epf = index234(ssh->portfwds, i)) != NULL; i++)
4219 if (epf->status == DESTROY) {
4220 char *message;
4221
4222 message = dupprintf("%s port forwarding from %s%s%d",
4223 epf->type == 'L' ? "local" :
4224 epf->type == 'R' ? "remote" : "dynamic",
4225 epf->saddr ? epf->saddr : "",
4226 epf->saddr ? ":" : "",
4227 epf->sport);
4228
4229 if (epf->type != 'D') {
4230 char *msg2 = dupprintf("%s to %s:%d", message,
4231 epf->daddr, epf->dport);
4232 sfree(message);
4233 message = msg2;
4234 }
4235
4236 logeventf(ssh, "Cancelling %s", message);
4237 sfree(message);
4238
4239 if (epf->remote) {
4240 struct ssh_rportfwd *rpf = epf->remote;
4241 struct Packet *pktout;
4242
4243 /*
4244 * Cancel the port forwarding at the server
4245 * end.
4246 */
4247 if (ssh->version == 1) {
4248 /*
4249 * We cannot cancel listening ports on the
4250 * server side in SSH-1! There's no message
4251 * to support it. Instead, we simply remove
4252 * the rportfwd record from the local end
4253 * so that any connections the server tries
4254 * to make on it are rejected.
4255 */
4256 } else {
4257 pktout = ssh2_pkt_init(SSH2_MSG_GLOBAL_REQUEST);
4258 ssh2_pkt_addstring(pktout, "cancel-tcpip-forward");
4259 ssh2_pkt_addbool(pktout, 0);/* _don't_ want reply */
4260 if (epf->saddr) {
4261 ssh2_pkt_addstring(pktout, epf->saddr);
4262 } else if (ssh->cfg.rport_acceptall) {
4263 /* XXX: ssh->cfg.rport_acceptall may not represent
4264 * what was used to open the original connection,
4265 * since it's reconfigurable. */
4266 ssh2_pkt_addstring(pktout, "0.0.0.0");
4267 } else {
4268 ssh2_pkt_addstring(pktout, "127.0.0.1");
4269 }
4270 ssh2_pkt_adduint32(pktout, epf->sport);
4271 ssh2_pkt_send(ssh, pktout);
4272 }
4273
4274 del234(ssh->rportfwds, rpf);
4275 free_rportfwd(rpf);
4276 } else if (epf->local) {
4277 pfd_terminate(epf->local);
4278 }
4279
4280 delpos234(ssh->portfwds, i);
4281 free_portfwd(epf);
4282 i--; /* so we don't skip one in the list */
4283 }
4284
4285 /*
4286 * And finally, set up any new port forwardings (status==CREATE).
4287 */
4288 for (i = 0; (epf = index234(ssh->portfwds, i)) != NULL; i++)
4289 if (epf->status == CREATE) {
4290 char *sportdesc, *dportdesc;
4291 sportdesc = dupprintf("%s%s%s%s%d%s",
4292 epf->saddr ? epf->saddr : "",
4293 epf->saddr ? ":" : "",
4294 epf->sserv ? epf->sserv : "",
4295 epf->sserv ? "(" : "",
4296 epf->sport,
4297 epf->sserv ? ")" : "");
4298 if (epf->type == 'D') {
4299 dportdesc = NULL;
4300 } else {
4301 dportdesc = dupprintf("%s:%s%s%d%s",
4302 epf->daddr,
4303 epf->dserv ? epf->dserv : "",
4304 epf->dserv ? "(" : "",
4305 epf->dport,
4306 epf->dserv ? ")" : "");
4307 }
4308
4309 if (epf->type == 'L') {
4310 const char *err = pfd_addforward(epf->daddr, epf->dport,
4311 epf->saddr, epf->sport,
4312 ssh, cfg,
4313 &epf->local,
4314 epf->addressfamily);
4315
4316 logeventf(ssh, "Local %sport %s forwarding to %s%s%s",
4317 epf->addressfamily == ADDRTYPE_IPV4 ? "IPv4 " :
4318 epf->addressfamily == ADDRTYPE_IPV6 ? "IPv6 " : "",
4319 sportdesc, dportdesc,
4320 err ? " failed: " : "", err ? err : "");
4321 } else if (epf->type == 'D') {
4322 const char *err = pfd_addforward(NULL, -1,
4323 epf->saddr, epf->sport,
4324 ssh, cfg,
4325 &epf->local,
4326 epf->addressfamily);
4327
4328 logeventf(ssh, "Local %sport %s SOCKS dynamic forwarding%s%s",
4329 epf->addressfamily == ADDRTYPE_IPV4 ? "IPv4 " :
4330 epf->addressfamily == ADDRTYPE_IPV6 ? "IPv6 " : "",
4331 sportdesc,
4332 err ? " failed: " : "", err ? err : "");
4333 } else {
4334 struct ssh_rportfwd *pf;
4335
4336 /*
4337 * Ensure the remote port forwardings tree exists.
4338 */
4339 if (!ssh->rportfwds) {
4340 if (ssh->version == 1)
4341 ssh->rportfwds = newtree234(ssh_rportcmp_ssh1);
4342 else
4343 ssh->rportfwds = newtree234(ssh_rportcmp_ssh2);
4344 }
4345
4346 pf = snew(struct ssh_rportfwd);
4347 strncpy(pf->dhost, epf->daddr, lenof(pf->dhost)-1);
4348 pf->dhost[lenof(pf->dhost)-1] = '\0';
4349 pf->dport = epf->dport;
4350 pf->sport = epf->sport;
4351 if (add234(ssh->rportfwds, pf) != pf) {
4352 logeventf(ssh, "Duplicate remote port forwarding to %s:%d",
4353 epf->daddr, epf->dport);
4354 sfree(pf);
4355 } else {
4356 logeventf(ssh, "Requesting remote port %s"
4357 " forward to %s", sportdesc, dportdesc);
4358
4359 pf->sportdesc = sportdesc;
4360 sportdesc = NULL;
4361 epf->remote = pf;
4362 pf->pfrec = epf;
4363
4364 if (ssh->version == 1) {
4365 send_packet(ssh, SSH1_CMSG_PORT_FORWARD_REQUEST,
4366 PKT_INT, epf->sport,
4367 PKT_STR, epf->daddr,
4368 PKT_INT, epf->dport,
4369 PKT_END);
4370 ssh_queue_handler(ssh, SSH1_SMSG_SUCCESS,
4371 SSH1_SMSG_FAILURE,
4372 ssh_rportfwd_succfail, pf);
4373 } else {
4374 struct Packet *pktout;
4375 pktout = ssh2_pkt_init(SSH2_MSG_GLOBAL_REQUEST);
4376 ssh2_pkt_addstring(pktout, "tcpip-forward");
4377 ssh2_pkt_addbool(pktout, 1);/* want reply */
4378 if (epf->saddr) {
4379 ssh2_pkt_addstring(pktout, epf->saddr);
4380 } else if (cfg->rport_acceptall) {
4381 ssh2_pkt_addstring(pktout, "0.0.0.0");
4382 } else {
4383 ssh2_pkt_addstring(pktout, "127.0.0.1");
4384 }
4385 ssh2_pkt_adduint32(pktout, epf->sport);
4386 ssh2_pkt_send(ssh, pktout);
4387
4388 ssh_queue_handler(ssh, SSH2_MSG_REQUEST_SUCCESS,
4389 SSH2_MSG_REQUEST_FAILURE,
4390 ssh_rportfwd_succfail, pf);
4391 }
4392 }
4393 }
4394 sfree(sportdesc);
4395 sfree(dportdesc);
4396 }
4397 }
4398
4399 static void ssh1_smsg_stdout_stderr_data(Ssh ssh, struct Packet *pktin)
4400 {
4401 char *string;
4402 int stringlen, bufsize;
4403
4404 ssh_pkt_getstring(pktin, &string, &stringlen);
4405 if (string == NULL) {
4406 bombout(("Incoming terminal data packet was badly formed"));
4407 return;
4408 }
4409
4410 bufsize = from_backend(ssh->frontend, pktin->type == SSH1_SMSG_STDERR_DATA,
4411 string, stringlen);
4412 if (!ssh->v1_stdout_throttling && bufsize > SSH1_BUFFER_LIMIT) {
4413 ssh->v1_stdout_throttling = 1;
4414 ssh1_throttle(ssh, +1);
4415 }
4416 }
4417
4418 static void ssh1_smsg_x11_open(Ssh ssh, struct Packet *pktin)
4419 {
4420 /* Remote side is trying to open a channel to talk to our
4421 * X-Server. Give them back a local channel number. */
4422 struct ssh_channel *c;
4423 int remoteid = ssh_pkt_getuint32(pktin);
4424
4425 logevent("Received X11 connect request");
4426 /* Refuse if X11 forwarding is disabled. */
4427 if (!ssh->X11_fwd_enabled) {
4428 send_packet(ssh, SSH1_MSG_CHANNEL_OPEN_FAILURE,
4429 PKT_INT, remoteid, PKT_END);
4430 logevent("Rejected X11 connect request");
4431 } else {
4432 c = snew(struct ssh_channel);
4433 c->ssh = ssh;
4434
4435 if (x11_init(&c->u.x11.s, ssh->cfg.x11_display, c,
4436 ssh->x11auth, NULL, -1, &ssh->cfg) != NULL) {
4437 logevent("Opening X11 forward connection failed");
4438 sfree(c);
4439 send_packet(ssh, SSH1_MSG_CHANNEL_OPEN_FAILURE,
4440 PKT_INT, remoteid, PKT_END);
4441 } else {
4442 logevent
4443 ("Opening X11 forward connection succeeded");
4444 c->remoteid = remoteid;
4445 c->halfopen = FALSE;
4446 c->localid = alloc_channel_id(ssh);
4447 c->closes = 0;
4448 c->v.v1.throttling = 0;
4449 c->type = CHAN_X11; /* identify channel type */
4450 add234(ssh->channels, c);
4451 send_packet(ssh, SSH1_MSG_CHANNEL_OPEN_CONFIRMATION,
4452 PKT_INT, c->remoteid, PKT_INT,
4453 c->localid, PKT_END);
4454 logevent("Opened X11 forward channel");
4455 }
4456 }
4457 }
4458
4459 static void ssh1_smsg_agent_open(Ssh ssh, struct Packet *pktin)
4460 {
4461 /* Remote side is trying to open a channel to talk to our
4462 * agent. Give them back a local channel number. */
4463 struct ssh_channel *c;
4464 int remoteid = ssh_pkt_getuint32(pktin);
4465
4466 /* Refuse if agent forwarding is disabled. */
4467 if (!ssh->agentfwd_enabled) {
4468 send_packet(ssh, SSH1_MSG_CHANNEL_OPEN_FAILURE,
4469 PKT_INT, remoteid, PKT_END);
4470 } else {
4471 c = snew(struct ssh_channel);
4472 c->ssh = ssh;
4473 c->remoteid = remoteid;
4474 c->halfopen = FALSE;
4475 c->localid = alloc_channel_id(ssh);
4476 c->closes = 0;
4477 c->v.v1.throttling = 0;
4478 c->type = CHAN_AGENT; /* identify channel type */
4479 c->u.a.lensofar = 0;
4480 add234(ssh->channels, c);
4481 send_packet(ssh, SSH1_MSG_CHANNEL_OPEN_CONFIRMATION,
4482 PKT_INT, c->remoteid, PKT_INT, c->localid,
4483 PKT_END);
4484 }
4485 }
4486
4487 static void ssh1_msg_port_open(Ssh ssh, struct Packet *pktin)
4488 {
4489 /* Remote side is trying to open a channel to talk to a
4490 * forwarded port. Give them back a local channel number. */
4491 struct ssh_channel *c;
4492 struct ssh_rportfwd pf, *pfp;
4493 int remoteid;
4494 int hostsize, port;
4495 char *host;
4496 const char *e;
4497 c = snew(struct ssh_channel);
4498 c->ssh = ssh;
4499
4500 remoteid = ssh_pkt_getuint32(pktin);
4501 ssh_pkt_getstring(pktin, &host, &hostsize);
4502 port = ssh_pkt_getuint32(pktin);
4503
4504 if (hostsize >= lenof(pf.dhost))
4505 hostsize = lenof(pf.dhost)-1;
4506 memcpy(pf.dhost, host, hostsize);
4507 pf.dhost[hostsize] = '\0';
4508 pf.dport = port;
4509 pfp = find234(ssh->rportfwds, &pf, NULL);
4510
4511 if (pfp == NULL) {
4512 logeventf(ssh, "Rejected remote port open request for %s:%d",
4513 pf.dhost, port);
4514 send_packet(ssh, SSH1_MSG_CHANNEL_OPEN_FAILURE,
4515 PKT_INT, remoteid, PKT_END);
4516 } else {
4517 logeventf(ssh, "Received remote port open request for %s:%d",
4518 pf.dhost, port);
4519 e = pfd_newconnect(&c->u.pfd.s, pf.dhost, port,
4520 c, &ssh->cfg, pfp->pfrec->addressfamily);
4521 if (e != NULL) {
4522 logeventf(ssh, "Port open failed: %s", e);
4523 sfree(c);
4524 send_packet(ssh, SSH1_MSG_CHANNEL_OPEN_FAILURE,
4525 PKT_INT, remoteid, PKT_END);
4526 } else {
4527 c->remoteid = remoteid;
4528 c->halfopen = FALSE;
4529 c->localid = alloc_channel_id(ssh);
4530 c->closes = 0;
4531 c->v.v1.throttling = 0;
4532 c->type = CHAN_SOCKDATA; /* identify channel type */
4533 add234(ssh->channels, c);
4534 send_packet(ssh, SSH1_MSG_CHANNEL_OPEN_CONFIRMATION,
4535 PKT_INT, c->remoteid, PKT_INT,
4536 c->localid, PKT_END);
4537 logevent("Forwarded port opened successfully");
4538 }
4539 }
4540 }
4541
4542 static void ssh1_msg_channel_open_confirmation(Ssh ssh, struct Packet *pktin)
4543 {
4544 unsigned int remoteid = ssh_pkt_getuint32(pktin);
4545 unsigned int localid = ssh_pkt_getuint32(pktin);
4546 struct ssh_channel *c;
4547
4548 c = find234(ssh->channels, &remoteid, ssh_channelfind);
4549 if (c && c->type == CHAN_SOCKDATA_DORMANT) {
4550 c->remoteid = localid;
4551 c->halfopen = FALSE;
4552 c->type = CHAN_SOCKDATA;
4553 c->v.v1.throttling = 0;
4554 pfd_confirm(c->u.pfd.s);
4555 }
4556
4557 if (c && c->closes) {
4558 /*
4559 * We have a pending close on this channel,
4560 * which we decided on before the server acked
4561 * the channel open. So now we know the
4562 * remoteid, we can close it again.
4563 */
4564 send_packet(ssh, SSH1_MSG_CHANNEL_CLOSE,
4565 PKT_INT, c->remoteid, PKT_END);
4566 }
4567 }
4568
4569 static void ssh1_msg_channel_open_failure(Ssh ssh, struct Packet *pktin)
4570 {
4571 unsigned int remoteid = ssh_pkt_getuint32(pktin);
4572 struct ssh_channel *c;
4573
4574 c = find234(ssh->channels, &remoteid, ssh_channelfind);
4575 if (c && c->type == CHAN_SOCKDATA_DORMANT) {
4576 logevent("Forwarded connection refused by server");
4577 pfd_close(c->u.pfd.s);
4578 del234(ssh->channels, c);
4579 sfree(c);
4580 }
4581 }
4582
4583 static void ssh1_msg_channel_close(Ssh ssh, struct Packet *pktin)
4584 {
4585 /* Remote side closes a channel. */
4586 unsigned i = ssh_pkt_getuint32(pktin);
4587 struct ssh_channel *c;
4588 c = find234(ssh->channels, &i, ssh_channelfind);
4589 if (c && !c->halfopen) {
4590 int closetype;
4591 closetype =
4592 (pktin->type == SSH1_MSG_CHANNEL_CLOSE ? 1 : 2);
4593
4594 if ((c->closes == 0) && (c->type == CHAN_X11)) {
4595 logevent("Forwarded X11 connection terminated");
4596 assert(c->u.x11.s != NULL);
4597 x11_close(c->u.x11.s);
4598 c->u.x11.s = NULL;
4599 }
4600 if ((c->closes == 0) && (c->type == CHAN_SOCKDATA)) {
4601 logevent("Forwarded port closed");
4602 assert(c->u.pfd.s != NULL);
4603 pfd_close(c->u.pfd.s);
4604 c->u.pfd.s = NULL;
4605 }
4606
4607 c->closes |= (closetype << 2); /* seen this message */
4608 if (!(c->closes & closetype)) {
4609 send_packet(ssh, pktin->type, PKT_INT, c->remoteid,
4610 PKT_END);
4611 c->closes |= closetype; /* sent it too */
4612 }
4613
4614 if (c->closes == 15) {
4615 del234(ssh->channels, c);
4616 sfree(c);
4617 }
4618 } else {
4619 bombout(("Received CHANNEL_CLOSE%s for %s channel %d\n",
4620 pktin->type == SSH1_MSG_CHANNEL_CLOSE ? "" :
4621 "_CONFIRMATION", c ? "half-open" : "nonexistent",
4622 i));
4623 }
4624 }
4625
4626 static void ssh1_msg_channel_data(Ssh ssh, struct Packet *pktin)
4627 {
4628 /* Data sent down one of our channels. */
4629 int i = ssh_pkt_getuint32(pktin);
4630 char *p;
4631 int len;
4632 struct ssh_channel *c;
4633
4634 ssh_pkt_getstring(pktin, &p, &len);
4635
4636 c = find234(ssh->channels, &i, ssh_channelfind);
4637 if (c) {
4638 int bufsize = 0;
4639 switch (c->type) {
4640 case CHAN_X11:
4641 bufsize = x11_send(c->u.x11.s, p, len);
4642 break;
4643 case CHAN_SOCKDATA:
4644 bufsize = pfd_send(c->u.pfd.s, p, len);
4645 break;
4646 case CHAN_AGENT:
4647 /* Data for an agent message. Buffer it. */
4648 while (len > 0) {
4649 if (c->u.a.lensofar < 4) {
4650 unsigned int l = min(4 - c->u.a.lensofar, (unsigned)len);
4651 memcpy(c->u.a.msglen + c->u.a.lensofar, p,
4652 l);
4653 p += l;
4654 len -= l;
4655 c->u.a.lensofar += l;
4656 }
4657 if (c->u.a.lensofar == 4) {
4658 c->u.a.totallen =
4659 4 + GET_32BIT(c->u.a.msglen);
4660 c->u.a.message = snewn(c->u.a.totallen,
4661 unsigned char);
4662 memcpy(c->u.a.message, c->u.a.msglen, 4);
4663 }
4664 if (c->u.a.lensofar >= 4 && len > 0) {
4665 unsigned int l =
4666 min(c->u.a.totallen - c->u.a.lensofar,
4667 (unsigned)len);
4668 memcpy(c->u.a.message + c->u.a.lensofar, p,
4669 l);
4670 p += l;
4671 len -= l;
4672 c->u.a.lensofar += l;
4673 }
4674 if (c->u.a.lensofar == c->u.a.totallen) {
4675 void *reply;
4676 int replylen;
4677 if (agent_query(c->u.a.message,
4678 c->u.a.totallen,
4679 &reply, &replylen,
4680 ssh_agentf_callback, c))
4681 ssh_agentf_callback(c, reply, replylen);
4682 sfree(c->u.a.message);
4683 c->u.a.lensofar = 0;
4684 }
4685 }
4686 bufsize = 0; /* agent channels never back up */
4687 break;
4688 }
4689 if (!c->v.v1.throttling && bufsize > SSH1_BUFFER_LIMIT) {
4690 c->v.v1.throttling = 1;
4691 ssh1_throttle(ssh, +1);
4692 }
4693 }
4694 }
4695
4696 static void ssh1_smsg_exit_status(Ssh ssh, struct Packet *pktin)
4697 {
4698 ssh->exitcode = ssh_pkt_getuint32(pktin);
4699 logeventf(ssh, "Server sent command exit status %d", ssh->exitcode);
4700 send_packet(ssh, SSH1_CMSG_EXIT_CONFIRMATION, PKT_END);
4701 /*
4702 * In case `helpful' firewalls or proxies tack
4703 * extra human-readable text on the end of the
4704 * session which we might mistake for another
4705 * encrypted packet, we close the session once
4706 * we've sent EXIT_CONFIRMATION.
4707 */
4708 ssh_disconnect(ssh, NULL, NULL, 0, TRUE);
4709 }
4710
4711 /* Helper function to deal with sending tty modes for REQUEST_PTY */
4712 static void ssh1_send_ttymode(void *data, char *mode, char *val)
4713 {
4714 struct Packet *pktout = (struct Packet *)data;
4715 int i = 0;
4716 unsigned int arg = 0;
4717 while (strcmp(mode, ssh_ttymodes[i].mode) != 0) i++;
4718 if (i == lenof(ssh_ttymodes)) return;
4719 switch (ssh_ttymodes[i].type) {
4720 case TTY_OP_CHAR:
4721 arg = ssh_tty_parse_specchar(val);
4722 break;
4723 case TTY_OP_BOOL:
4724 arg = ssh_tty_parse_boolean(val);
4725 break;
4726 }
4727 ssh2_pkt_addbyte(pktout, ssh_ttymodes[i].opcode);
4728 ssh2_pkt_addbyte(pktout, arg);
4729 }
4730
4731
4732 static void do_ssh1_connection(Ssh ssh, unsigned char *in, int inlen,
4733 struct Packet *pktin)
4734 {
4735 crBegin(ssh->do_ssh1_connection_crstate);
4736
4737 ssh->packet_dispatch[SSH1_SMSG_STDOUT_DATA] =
4738 ssh->packet_dispatch[SSH1_SMSG_STDERR_DATA] =
4739 ssh1_smsg_stdout_stderr_data;
4740
4741 ssh->packet_dispatch[SSH1_MSG_CHANNEL_OPEN_CONFIRMATION] =
4742 ssh1_msg_channel_open_confirmation;
4743 ssh->packet_dispatch[SSH1_MSG_CHANNEL_OPEN_FAILURE] =
4744 ssh1_msg_channel_open_failure;
4745 ssh->packet_dispatch[SSH1_MSG_CHANNEL_CLOSE] =
4746 ssh->packet_dispatch[SSH1_MSG_CHANNEL_CLOSE_CONFIRMATION] =
4747 ssh1_msg_channel_close;
4748 ssh->packet_dispatch[SSH1_MSG_CHANNEL_DATA] = ssh1_msg_channel_data;
4749 ssh->packet_dispatch[SSH1_SMSG_EXIT_STATUS] = ssh1_smsg_exit_status;
4750
4751 if (ssh->cfg.agentfwd && agent_exists()) {
4752 logevent("Requesting agent forwarding");
4753 send_packet(ssh, SSH1_CMSG_AGENT_REQUEST_FORWARDING, PKT_END);
4754 do {
4755 crReturnV;
4756 } while (!pktin);
4757 if (pktin->type != SSH1_SMSG_SUCCESS
4758 && pktin->type != SSH1_SMSG_FAILURE) {
4759 bombout(("Protocol confusion"));
4760 crStopV;
4761 } else if (pktin->type == SSH1_SMSG_FAILURE) {
4762 logevent("Agent forwarding refused");
4763 } else {
4764 logevent("Agent forwarding enabled");
4765 ssh->agentfwd_enabled = TRUE;
4766 ssh->packet_dispatch[SSH1_SMSG_AGENT_OPEN] = ssh1_smsg_agent_open;
4767 }
4768 }
4769
4770 if (ssh->cfg.x11_forward) {
4771 char proto[20], data[64];
4772 logevent("Requesting X11 forwarding");
4773 ssh->x11auth = x11_invent_auth(proto, sizeof(proto),
4774 data, sizeof(data), ssh->cfg.x11_auth);
4775 x11_get_real_auth(ssh->x11auth, ssh->cfg.x11_display);
4776 /*
4777 * Note that while we blank the X authentication data here, we don't
4778 * take any special action to blank the start of an X11 channel,
4779 * so using MIT-MAGIC-COOKIE-1 and actually opening an X connection
4780 * without having session blanking enabled is likely to leak your
4781 * cookie into the log.
4782 */
4783 if (ssh->v1_local_protoflags & SSH1_PROTOFLAG_SCREEN_NUMBER) {
4784 send_packet(ssh, SSH1_CMSG_X11_REQUEST_FORWARDING,
4785 PKT_STR, proto,
4786 PKTT_PASSWORD, PKT_STR, data, PKTT_OTHER,
4787 PKT_INT, x11_get_screen_number(ssh->cfg.x11_display),
4788 PKT_END);
4789 } else {
4790 send_packet(ssh, SSH1_CMSG_X11_REQUEST_FORWARDING,
4791 PKT_STR, proto,
4792 PKTT_PASSWORD, PKT_STR, data, PKTT_OTHER, PKT_END);
4793 }
4794 do {
4795 crReturnV;
4796 } while (!pktin);
4797 if (pktin->type != SSH1_SMSG_SUCCESS
4798 && pktin->type != SSH1_SMSG_FAILURE) {
4799 bombout(("Protocol confusion"));
4800 crStopV;
4801 } else if (pktin->type == SSH1_SMSG_FAILURE) {
4802 logevent("X11 forwarding refused");
4803 } else {
4804 logevent("X11 forwarding enabled");
4805 ssh->X11_fwd_enabled = TRUE;
4806 ssh->packet_dispatch[SSH1_SMSG_X11_OPEN] = ssh1_smsg_x11_open;
4807 }
4808 }
4809
4810 ssh_setup_portfwd(ssh, &ssh->cfg);
4811 ssh->packet_dispatch[SSH1_MSG_PORT_OPEN] = ssh1_msg_port_open;
4812
4813 if (!ssh->cfg.nopty) {
4814 struct Packet *pkt;
4815 /* Unpick the terminal-speed string. */
4816 /* XXX perhaps we should allow no speeds to be sent. */
4817 ssh->ospeed = 38400; ssh->ispeed = 38400; /* last-resort defaults */
4818 sscanf(ssh->cfg.termspeed, "%d,%d", &ssh->ospeed, &ssh->ispeed);
4819 /* Send the pty request. */
4820 pkt = ssh1_pkt_init(SSH1_CMSG_REQUEST_PTY);
4821 ssh_pkt_addstring(pkt, ssh->cfg.termtype);
4822 ssh_pkt_adduint32(pkt, ssh->term_height);
4823 ssh_pkt_adduint32(pkt, ssh->term_width);
4824 ssh_pkt_adduint32(pkt, 0); /* width in pixels */
4825 ssh_pkt_adduint32(pkt, 0); /* height in pixels */
4826 parse_ttymodes(ssh, ssh->cfg.ttymodes,
4827 ssh1_send_ttymode, (void *)pkt);
4828 ssh_pkt_addbyte(pkt, SSH1_TTY_OP_ISPEED);
4829 ssh_pkt_adduint32(pkt, ssh->ispeed);
4830 ssh_pkt_addbyte(pkt, SSH1_TTY_OP_OSPEED);
4831 ssh_pkt_adduint32(pkt, ssh->ospeed);
4832 ssh_pkt_addbyte(pkt, SSH_TTY_OP_END);
4833 s_wrpkt(ssh, pkt);
4834 ssh->state = SSH_STATE_INTERMED;
4835 do {
4836 crReturnV;
4837 } while (!pktin);
4838 if (pktin->type != SSH1_SMSG_SUCCESS
4839 && pktin->type != SSH1_SMSG_FAILURE) {
4840 bombout(("Protocol confusion"));
4841 crStopV;
4842 } else if (pktin->type == SSH1_SMSG_FAILURE) {
4843 c_write_str(ssh, "Server refused to allocate pty\r\n");
4844 ssh->editing = ssh->echoing = 1;
4845 }
4846 logeventf(ssh, "Allocated pty (ospeed %dbps, ispeed %dbps)",
4847 ssh->ospeed, ssh->ispeed);
4848 } else {
4849 ssh->editing = ssh->echoing = 1;
4850 }
4851
4852 if (ssh->cfg.compression) {
4853 send_packet(ssh, SSH1_CMSG_REQUEST_COMPRESSION, PKT_INT, 6, PKT_END);
4854 do {
4855 crReturnV;
4856 } while (!pktin);
4857 if (pktin->type != SSH1_SMSG_SUCCESS
4858 && pktin->type != SSH1_SMSG_FAILURE) {
4859 bombout(("Protocol confusion"));
4860 crStopV;
4861 } else if (pktin->type == SSH1_SMSG_FAILURE) {
4862 c_write_str(ssh, "Server refused to compress\r\n");
4863 }
4864 logevent("Started compression");
4865 ssh->v1_compressing = TRUE;
4866 ssh->cs_comp_ctx = zlib_compress_init();
4867 logevent("Initialised zlib (RFC1950) compression");
4868 ssh->sc_comp_ctx = zlib_decompress_init();
4869 logevent("Initialised zlib (RFC1950) decompression");
4870 }
4871
4872 /*
4873 * Start the shell or command.
4874 *
4875 * Special case: if the first-choice command is an SSH-2
4876 * subsystem (hence not usable here) and the second choice
4877 * exists, we fall straight back to that.
4878 */
4879 {
4880 char *cmd = ssh->cfg.remote_cmd_ptr;
4881
4882 if (!cmd) cmd = ssh->cfg.remote_cmd;
4883
4884 if (ssh->cfg.ssh_subsys && ssh->cfg.remote_cmd_ptr2) {
4885 cmd = ssh->cfg.remote_cmd_ptr2;
4886 ssh->fallback_cmd = TRUE;
4887 }
4888 if (*cmd)
4889 send_packet(ssh, SSH1_CMSG_EXEC_CMD, PKT_STR, cmd, PKT_END);
4890 else
4891 send_packet(ssh, SSH1_CMSG_EXEC_SHELL, PKT_END);
4892 logevent("Started session");
4893 }
4894
4895 ssh->state = SSH_STATE_SESSION;
4896 if (ssh->size_needed)
4897 ssh_size(ssh, ssh->term_width, ssh->term_height);
4898 if (ssh->eof_needed)
4899 ssh_special(ssh, TS_EOF);
4900
4901 if (ssh->ldisc)
4902 ldisc_send(ssh->ldisc, NULL, 0, 0);/* cause ldisc to notice changes */
4903 ssh->send_ok = 1;
4904 ssh->channels = newtree234(ssh_channelcmp);
4905 while (1) {
4906
4907 /*
4908 * By this point, most incoming packets are already being
4909 * handled by the dispatch table, and we need only pay
4910 * attention to the unusual ones.
4911 */
4912
4913 crReturnV;
4914 if (pktin) {
4915 if (pktin->type == SSH1_SMSG_SUCCESS) {
4916 /* may be from EXEC_SHELL on some servers */
4917 } else if (pktin->type == SSH1_SMSG_FAILURE) {
4918 /* may be from EXEC_SHELL on some servers
4919 * if no pty is available or in other odd cases. Ignore */
4920 } else {
4921 bombout(("Strange packet received: type %d", pktin->type));
4922 crStopV;
4923 }
4924 } else {
4925 while (inlen > 0) {
4926 int len = min(inlen, 512);
4927 send_packet(ssh, SSH1_CMSG_STDIN_DATA, PKTT_DATA,
4928 PKT_INT, len, PKT_DATA, in, len,
4929 PKTT_OTHER, PKT_END);
4930 in += len;
4931 inlen -= len;
4932 }
4933 }
4934 }
4935
4936 crFinishV;
4937 }
4938
4939 /*
4940 * Handle the top-level SSH-2 protocol.
4941 */
4942 static void ssh1_msg_debug(Ssh ssh, struct Packet *pktin)
4943 {
4944 char *msg;
4945 int msglen;
4946
4947 ssh_pkt_getstring(pktin, &msg, &msglen);
4948 logeventf(ssh, "Remote debug message: %.*s", msglen, msg);
4949 }
4950
4951 static void ssh1_msg_disconnect(Ssh ssh, struct Packet *pktin)
4952 {
4953 /* log reason code in disconnect message */
4954 char *msg;
4955 int msglen;
4956
4957 ssh_pkt_getstring(pktin, &msg, &msglen);
4958 bombout(("Server sent disconnect message:\n\"%.*s\"", msglen, msg));
4959 }
4960
4961 static void ssh_msg_ignore(Ssh ssh, struct Packet *pktin)
4962 {
4963 /* Do nothing, because we're ignoring it! Duhh. */
4964 }
4965
4966 static void ssh1_protocol_setup(Ssh ssh)
4967 {
4968 int i;
4969
4970 /*
4971 * Most messages are handled by the coroutines.
4972 */
4973 for (i = 0; i < 256; i++)
4974 ssh->packet_dispatch[i] = NULL;
4975
4976 /*
4977 * These special message types we install handlers for.
4978 */
4979 ssh->packet_dispatch[SSH1_MSG_DISCONNECT] = ssh1_msg_disconnect;
4980 ssh->packet_dispatch[SSH1_MSG_IGNORE] = ssh_msg_ignore;
4981 ssh->packet_dispatch[SSH1_MSG_DEBUG] = ssh1_msg_debug;
4982 }
4983
4984 static void ssh1_protocol(Ssh ssh, void *vin, int inlen,
4985 struct Packet *pktin)
4986 {
4987 unsigned char *in=(unsigned char*)vin;
4988 if (ssh->state == SSH_STATE_CLOSED)
4989 return;
4990
4991 if (pktin && ssh->packet_dispatch[pktin->type]) {
4992 ssh->packet_dispatch[pktin->type](ssh, pktin);
4993 return;
4994 }
4995
4996 if (!ssh->protocol_initial_phase_done) {
4997 if (do_ssh1_login(ssh, in, inlen, pktin))
4998 ssh->protocol_initial_phase_done = TRUE;
4999 else
5000 return;
5001 }
5002
5003 do_ssh1_connection(ssh, in, inlen, pktin);
5004 }
5005
5006 /*
5007 * Utility routine for decoding comma-separated strings in KEXINIT.
5008 */
5009 static int in_commasep_string(char *needle, char *haystack, int haylen)
5010 {
5011 int needlen;
5012 if (!needle || !haystack) /* protect against null pointers */
5013 return 0;
5014 needlen = strlen(needle);
5015 while (1) {
5016 /*
5017 * Is it at the start of the string?
5018 */
5019 if (haylen >= needlen && /* haystack is long enough */
5020 !memcmp(needle, haystack, needlen) && /* initial match */
5021 (haylen == needlen || haystack[needlen] == ',')
5022 /* either , or EOS follows */
5023 )
5024 return 1;
5025 /*
5026 * If not, search for the next comma and resume after that.
5027 * If no comma found, terminate.
5028 */
5029 while (haylen > 0 && *haystack != ',')
5030 haylen--, haystack++;
5031 if (haylen == 0)
5032 return 0;
5033 haylen--, haystack++; /* skip over comma itself */
5034 }
5035 }
5036
5037 /*
5038 * Similar routine for checking whether we have the first string in a list.
5039 */
5040 static int first_in_commasep_string(char *needle, char *haystack, int haylen)
5041 {
5042 int needlen;
5043 if (!needle || !haystack) /* protect against null pointers */
5044 return 0;
5045 needlen = strlen(needle);
5046 /*
5047 * Is it at the start of the string?
5048 */
5049 if (haylen >= needlen && /* haystack is long enough */
5050 !memcmp(needle, haystack, needlen) && /* initial match */
5051 (haylen == needlen || haystack[needlen] == ',')
5052 /* either , or EOS follows */
5053 )
5054 return 1;
5055 return 0;
5056 }
5057
5058
5059 /*
5060 * SSH-2 key creation method.
5061 * (Currently assumes 2 lots of any hash are sufficient to generate
5062 * keys/IVs for any cipher/MAC. SSH2_MKKEY_ITERS documents this assumption.)
5063 */
5064 #define SSH2_MKKEY_ITERS (2)
5065 static void ssh2_mkkey(Ssh ssh, Bignum K, unsigned char *H, char chr,
5066 unsigned char *keyspace)
5067 {
5068 const struct ssh_hash *h = ssh->kex->hash;
5069 void *s;
5070 /* First hlen bytes. */
5071 s = h->init();
5072 if (!(ssh->remote_bugs & BUG_SSH2_DERIVEKEY))
5073 hash_mpint(h, s, K);
5074 h->bytes(s, H, h->hlen);
5075 h->bytes(s, &chr, 1);
5076 h->bytes(s, ssh->v2_session_id, ssh->v2_session_id_len);
5077 h->final(s, keyspace);
5078 /* Next hlen bytes. */
5079 s = h->init();
5080 if (!(ssh->remote_bugs & BUG_SSH2_DERIVEKEY))
5081 hash_mpint(h, s, K);
5082 h->bytes(s, H, h->hlen);
5083 h->bytes(s, keyspace, h->hlen);
5084 h->final(s, keyspace + h->hlen);
5085 }
5086
5087 /*
5088 * Handle the SSH-2 transport layer.
5089 */
5090 static int do_ssh2_transport(Ssh ssh, void *vin, int inlen,
5091 struct Packet *pktin)
5092 {
5093 unsigned char *in = (unsigned char *)vin;
5094 struct do_ssh2_transport_state {
5095 int nbits, pbits, warn_kex, warn_cscipher, warn_sccipher;
5096 Bignum p, g, e, f, K;
5097 void *our_kexinit;
5098 int our_kexinitlen;
5099 int kex_init_value, kex_reply_value;
5100 const struct ssh_mac **maclist;
5101 int nmacs;
5102 const struct ssh2_cipher *cscipher_tobe;
5103 const struct ssh2_cipher *sccipher_tobe;
5104 const struct ssh_mac *csmac_tobe;
5105 const struct ssh_mac *scmac_tobe;
5106 const struct ssh_compress *cscomp_tobe;
5107 const struct ssh_compress *sccomp_tobe;
5108 char *hostkeydata, *sigdata, *keystr, *fingerprint;
5109 int hostkeylen, siglen;
5110 void *hkey; /* actual host key */
5111 unsigned char exchange_hash[SSH2_KEX_MAX_HASH_LEN];
5112 int n_preferred_kex;
5113 const struct ssh_kexes *preferred_kex[KEX_MAX];
5114 int n_preferred_ciphers;
5115 const struct ssh2_ciphers *preferred_ciphers[CIPHER_MAX];
5116 const struct ssh_compress *preferred_comp;
5117 int got_session_id, activated_authconn;
5118 struct Packet *pktout;
5119 int dlgret;
5120 int guessok;
5121 int ignorepkt;
5122 };
5123 crState(do_ssh2_transport_state);
5124
5125 crBegin(ssh->do_ssh2_transport_crstate);
5126
5127 s->cscipher_tobe = s->sccipher_tobe = NULL;
5128 s->csmac_tobe = s->scmac_tobe = NULL;
5129 s->cscomp_tobe = s->sccomp_tobe = NULL;
5130
5131 s->got_session_id = s->activated_authconn = FALSE;
5132
5133 /*
5134 * Be prepared to work around the buggy MAC problem.
5135 */
5136 if (ssh->remote_bugs & BUG_SSH2_HMAC)
5137 s->maclist = buggymacs, s->nmacs = lenof(buggymacs);
5138 else
5139 s->maclist = macs, s->nmacs = lenof(macs);
5140
5141 begin_key_exchange:
5142 ssh->pkt_ctx &= ~SSH2_PKTCTX_KEX_MASK;
5143 {
5144 int i, j, commalist_started;
5145
5146 /*
5147 * Set up the preferred key exchange. (NULL => warn below here)
5148 */
5149 s->n_preferred_kex = 0;
5150 for (i = 0; i < KEX_MAX; i++) {
5151 switch (ssh->cfg.ssh_kexlist[i]) {
5152 case KEX_DHGEX:
5153 s->preferred_kex[s->n_preferred_kex++] =
5154 &ssh_diffiehellman_gex;
5155 break;
5156 case KEX_DHGROUP14:
5157 s->preferred_kex[s->n_preferred_kex++] =
5158 &ssh_diffiehellman_group14;
5159 break;
5160 case KEX_DHGROUP1:
5161 s->preferred_kex[s->n_preferred_kex++] =
5162 &ssh_diffiehellman_group1;
5163 break;
5164 case KEX_WARN:
5165 /* Flag for later. Don't bother if it's the last in
5166 * the list. */
5167 if (i < KEX_MAX - 1) {
5168 s->preferred_kex[s->n_preferred_kex++] = NULL;
5169 }
5170 break;
5171 }
5172 }
5173
5174 /*
5175 * Set up the preferred ciphers. (NULL => warn below here)
5176 */
5177 s->n_preferred_ciphers = 0;
5178 for (i = 0; i < CIPHER_MAX; i++) {
5179 switch (ssh->cfg.ssh_cipherlist[i]) {
5180 case CIPHER_BLOWFISH:
5181 s->preferred_ciphers[s->n_preferred_ciphers++] = &ssh2_blowfish;
5182 break;
5183 case CIPHER_DES:
5184 if (ssh->cfg.ssh2_des_cbc) {
5185 s->preferred_ciphers[s->n_preferred_ciphers++] = &ssh2_des;
5186 }
5187 break;
5188 case CIPHER_3DES:
5189 s->preferred_ciphers[s->n_preferred_ciphers++] = &ssh2_3des;
5190 break;
5191 case CIPHER_AES:
5192 s->preferred_ciphers[s->n_preferred_ciphers++] = &ssh2_aes;
5193 break;
5194 case CIPHER_ARCFOUR:
5195 s->preferred_ciphers[s->n_preferred_ciphers++] = &ssh2_arcfour;
5196 break;
5197 case CIPHER_WARN:
5198 /* Flag for later. Don't bother if it's the last in
5199 * the list. */
5200 if (i < CIPHER_MAX - 1) {
5201 s->preferred_ciphers[s->n_preferred_ciphers++] = NULL;
5202 }
5203 break;
5204 }
5205 }
5206
5207 /*
5208 * Set up preferred compression.
5209 */
5210 if (ssh->cfg.compression)
5211 s->preferred_comp = &ssh_zlib;
5212 else
5213 s->preferred_comp = &ssh_comp_none;
5214
5215 /*
5216 * Enable queueing of outgoing auth- or connection-layer
5217 * packets while we are in the middle of a key exchange.
5218 */
5219 ssh->queueing = TRUE;
5220
5221 /*
5222 * Flag that KEX is in progress.
5223 */
5224 ssh->kex_in_progress = TRUE;
5225
5226 /*
5227 * Construct and send our key exchange packet.
5228 */
5229 s->pktout = ssh2_pkt_init(SSH2_MSG_KEXINIT);
5230 for (i = 0; i < 16; i++)
5231 ssh2_pkt_addbyte(s->pktout, (unsigned char) random_byte());
5232 /* List key exchange algorithms. */
5233 ssh2_pkt_addstring_start(s->pktout);
5234 commalist_started = 0;
5235 for (i = 0; i < s->n_preferred_kex; i++) {
5236 const struct ssh_kexes *k = s->preferred_kex[i];
5237 if (!k) continue; /* warning flag */
5238 for (j = 0; j < k->nkexes; j++) {
5239 if (commalist_started)
5240 ssh2_pkt_addstring_str(s->pktout, ",");
5241 ssh2_pkt_addstring_str(s->pktout, k->list[j]->name);
5242 commalist_started = 1;
5243 }
5244 }
5245 /* List server host key algorithms. */
5246 ssh2_pkt_addstring_start(s->pktout);
5247 for (i = 0; i < lenof(hostkey_algs); i++) {
5248 ssh2_pkt_addstring_str(s->pktout, hostkey_algs[i]->name);
5249 if (i < lenof(hostkey_algs) - 1)
5250 ssh2_pkt_addstring_str(s->pktout, ",");
5251 }
5252 /* List client->server encryption algorithms. */
5253 ssh2_pkt_addstring_start(s->pktout);
5254 commalist_started = 0;
5255 for (i = 0; i < s->n_preferred_ciphers; i++) {
5256 const struct ssh2_ciphers *c = s->preferred_ciphers[i];
5257 if (!c) continue; /* warning flag */
5258 for (j = 0; j < c->nciphers; j++) {
5259 if (commalist_started)
5260 ssh2_pkt_addstring_str(s->pktout, ",");
5261 ssh2_pkt_addstring_str(s->pktout, c->list[j]->name);
5262 commalist_started = 1;
5263 }
5264 }
5265 /* List server->client encryption algorithms. */
5266 ssh2_pkt_addstring_start(s->pktout);
5267 commalist_started = 0;
5268 for (i = 0; i < s->n_preferred_ciphers; i++) {
5269 const struct ssh2_ciphers *c = s->preferred_ciphers[i];
5270 if (!c) continue; /* warning flag */
5271 for (j = 0; j < c->nciphers; j++) {
5272 if (commalist_started)
5273 ssh2_pkt_addstring_str(s->pktout, ",");
5274 ssh2_pkt_addstring_str(s->pktout, c->list[j]->name);
5275 commalist_started = 1;
5276 }
5277 }
5278 /* List client->server MAC algorithms. */
5279 ssh2_pkt_addstring_start(s->pktout);
5280 for (i = 0; i < s->nmacs; i++) {
5281 ssh2_pkt_addstring_str(s->pktout, s->maclist[i]->name);
5282 if (i < s->nmacs - 1)
5283 ssh2_pkt_addstring_str(s->pktout, ",");
5284 }
5285 /* List server->client MAC algorithms. */
5286 ssh2_pkt_addstring_start(s->pktout);
5287 for (i = 0; i < s->nmacs; i++) {
5288 ssh2_pkt_addstring_str(s->pktout, s->maclist[i]->name);
5289 if (i < s->nmacs - 1)
5290 ssh2_pkt_addstring_str(s->pktout, ",");
5291 }
5292 /* List client->server compression algorithms. */
5293 ssh2_pkt_addstring_start(s->pktout);
5294 assert(lenof(compressions) > 1);
5295 ssh2_pkt_addstring_str(s->pktout, s->preferred_comp->name);
5296 for (i = 0; i < lenof(compressions); i++) {
5297 const struct ssh_compress *c = compressions[i];
5298 if (c != s->preferred_comp) {
5299 ssh2_pkt_addstring_str(s->pktout, ",");
5300 ssh2_pkt_addstring_str(s->pktout, c->name);
5301 }
5302 }
5303 /* List server->client compression algorithms. */
5304 ssh2_pkt_addstring_start(s->pktout);
5305 assert(lenof(compressions) > 1);
5306 ssh2_pkt_addstring_str(s->pktout, s->preferred_comp->name);
5307 for (i = 0; i < lenof(compressions); i++) {
5308 const struct ssh_compress *c = compressions[i];
5309 if (c != s->preferred_comp) {
5310 ssh2_pkt_addstring_str(s->pktout, ",");
5311 ssh2_pkt_addstring_str(s->pktout, c->name);
5312 }
5313 }
5314 /* List client->server languages. Empty list. */
5315 ssh2_pkt_addstring_start(s->pktout);
5316 /* List server->client languages. Empty list. */
5317 ssh2_pkt_addstring_start(s->pktout);
5318 /* First KEX packet does _not_ follow, because we're not that brave. */
5319 ssh2_pkt_addbool(s->pktout, FALSE);
5320 /* Reserved. */
5321 ssh2_pkt_adduint32(s->pktout, 0);
5322 }
5323
5324 s->our_kexinitlen = s->pktout->length - 5;
5325 s->our_kexinit = snewn(s->our_kexinitlen, unsigned char);
5326 memcpy(s->our_kexinit, s->pktout->data + 5, s->our_kexinitlen);
5327
5328 ssh2_pkt_send_noqueue(ssh, s->pktout);
5329
5330 if (!pktin)
5331 crWaitUntil(pktin);
5332
5333 /*
5334 * Now examine the other side's KEXINIT to see what we're up
5335 * to.
5336 */
5337 {
5338 char *str, *preferred;
5339 int i, j, len;
5340
5341 if (pktin->type != SSH2_MSG_KEXINIT) {
5342 bombout(("expected key exchange packet from server"));
5343 crStop(0);
5344 }
5345 ssh->kex = NULL;
5346 ssh->hostkey = NULL;
5347 s->cscipher_tobe = NULL;
5348 s->sccipher_tobe = NULL;
5349 s->csmac_tobe = NULL;
5350 s->scmac_tobe = NULL;
5351 s->cscomp_tobe = NULL;
5352 s->sccomp_tobe = NULL;
5353 s->warn_kex = s->warn_cscipher = s->warn_sccipher = FALSE;
5354
5355 pktin->savedpos += 16; /* skip garbage cookie */
5356 ssh_pkt_getstring(pktin, &str, &len); /* key exchange algorithms */
5357
5358 preferred = NULL;
5359 for (i = 0; i < s->n_preferred_kex; i++) {
5360 const struct ssh_kexes *k = s->preferred_kex[i];
5361 if (!k) {
5362 s->warn_kex = TRUE;
5363 } else {
5364 for (j = 0; j < k->nkexes; j++) {
5365 if (!preferred) preferred = k->list[j]->name;
5366 if (in_commasep_string(k->list[j]->name, str, len)) {
5367 ssh->kex = k->list[j];
5368 break;
5369 }
5370 }
5371 }
5372 if (ssh->kex)
5373 break;
5374 }
5375 if (!ssh->kex) {
5376 bombout(("Couldn't agree a key exchange algorithm (available: %s)",
5377 str ? str : "(null)"));
5378 crStop(0);
5379 }
5380 /*
5381 * Note that the server's guess is considered wrong if it doesn't match
5382 * the first algorithm in our list, even if it's still the algorithm
5383 * we end up using.
5384 */
5385 s->guessok = first_in_commasep_string(preferred, str, len);
5386 ssh_pkt_getstring(pktin, &str, &len); /* host key algorithms */
5387 for (i = 0; i < lenof(hostkey_algs); i++) {
5388 if (in_commasep_string(hostkey_algs[i]->name, str, len)) {
5389 ssh->hostkey = hostkey_algs[i];
5390 break;
5391 }
5392 }
5393 s->guessok = s->guessok &&
5394 first_in_commasep_string(hostkey_algs[0]->name, str, len);
5395 ssh_pkt_getstring(pktin, &str, &len); /* client->server cipher */
5396 for (i = 0; i < s->n_preferred_ciphers; i++) {
5397 const struct ssh2_ciphers *c = s->preferred_ciphers[i];
5398 if (!c) {
5399 s->warn_cscipher = TRUE;
5400 } else {
5401 for (j = 0; j < c->nciphers; j++) {
5402 if (in_commasep_string(c->list[j]->name, str, len)) {
5403 s->cscipher_tobe = c->list[j];
5404 break;
5405 }
5406 }
5407 }
5408 if (s->cscipher_tobe)
5409 break;
5410 }
5411 if (!s->cscipher_tobe) {
5412 bombout(("Couldn't agree a client-to-server cipher (available: %s)",
5413 str ? str : "(null)"));
5414 crStop(0);
5415 }
5416
5417 ssh_pkt_getstring(pktin, &str, &len); /* server->client cipher */
5418 for (i = 0; i < s->n_preferred_ciphers; i++) {
5419 const struct ssh2_ciphers *c = s->preferred_ciphers[i];
5420 if (!c) {
5421 s->warn_sccipher = TRUE;
5422 } else {
5423 for (j = 0; j < c->nciphers; j++) {
5424 if (in_commasep_string(c->list[j]->name, str, len)) {
5425 s->sccipher_tobe = c->list[j];
5426 break;
5427 }
5428 }
5429 }
5430 if (s->sccipher_tobe)
5431 break;
5432 }
5433 if (!s->sccipher_tobe) {
5434 bombout(("Couldn't agree a server-to-client cipher (available: %s)",
5435 str ? str : "(null)"));
5436 crStop(0);
5437 }
5438
5439 ssh_pkt_getstring(pktin, &str, &len); /* client->server mac */
5440 for (i = 0; i < s->nmacs; i++) {
5441 if (in_commasep_string(s->maclist[i]->name, str, len)) {
5442 s->csmac_tobe = s->maclist[i];
5443 break;
5444 }
5445 }
5446 ssh_pkt_getstring(pktin, &str, &len); /* server->client mac */
5447 for (i = 0; i < s->nmacs; i++) {
5448 if (in_commasep_string(s->maclist[i]->name, str, len)) {
5449 s->scmac_tobe = s->maclist[i];
5450 break;
5451 }
5452 }
5453 ssh_pkt_getstring(pktin, &str, &len); /* client->server compression */
5454 for (i = 0; i < lenof(compressions) + 1; i++) {
5455 const struct ssh_compress *c =
5456 i == 0 ? s->preferred_comp : compressions[i - 1];
5457 if (in_commasep_string(c->name, str, len)) {
5458 s->cscomp_tobe = c;
5459 break;
5460 }
5461 }
5462 ssh_pkt_getstring(pktin, &str, &len); /* server->client compression */
5463 for (i = 0; i < lenof(compressions) + 1; i++) {
5464 const struct ssh_compress *c =
5465 i == 0 ? s->preferred_comp : compressions[i - 1];
5466 if (in_commasep_string(c->name, str, len)) {
5467 s->sccomp_tobe = c;
5468 break;
5469 }
5470 }
5471 ssh_pkt_getstring(pktin, &str, &len); /* client->server language */
5472 ssh_pkt_getstring(pktin, &str, &len); /* server->client language */
5473 s->ignorepkt = ssh2_pkt_getbool(pktin) && !s->guessok;
5474
5475 if (s->warn_kex) {
5476 ssh_set_frozen(ssh, 1);
5477 s->dlgret = askalg(ssh->frontend, "key-exchange algorithm",
5478 ssh->kex->name,
5479 ssh_dialog_callback, ssh);
5480 if (s->dlgret < 0) {
5481 do {
5482 crReturn(0);
5483 if (pktin) {
5484 bombout(("Unexpected data from server while"
5485 " waiting for user response"));
5486 crStop(0);
5487 }
5488 } while (pktin || inlen > 0);
5489 s->dlgret = ssh->user_response;
5490 }
5491 ssh_set_frozen(ssh, 0);
5492 if (s->dlgret == 0) {
5493 ssh_disconnect(ssh, "User aborted at kex warning", NULL,
5494 0, TRUE);
5495 crStop(0);
5496 }
5497 }
5498
5499 if (s->warn_cscipher) {
5500 ssh_set_frozen(ssh, 1);
5501 s->dlgret = askalg(ssh->frontend,
5502 "client-to-server cipher",
5503 s->cscipher_tobe->name,
5504 ssh_dialog_callback, ssh);
5505 if (s->dlgret < 0) {
5506 do {
5507 crReturn(0);
5508 if (pktin) {
5509 bombout(("Unexpected data from server while"
5510 " waiting for user response"));
5511 crStop(0);
5512 }
5513 } while (pktin || inlen > 0);
5514 s->dlgret = ssh->user_response;
5515 }
5516 ssh_set_frozen(ssh, 0);
5517 if (s->dlgret == 0) {
5518 ssh_disconnect(ssh, "User aborted at cipher warning", NULL,
5519 0, TRUE);
5520 crStop(0);
5521 }
5522 }
5523
5524 if (s->warn_sccipher) {
5525 ssh_set_frozen(ssh, 1);
5526 s->dlgret = askalg(ssh->frontend,
5527 "server-to-client cipher",
5528 s->sccipher_tobe->name,
5529 ssh_dialog_callback, ssh);
5530 if (s->dlgret < 0) {
5531 do {
5532 crReturn(0);
5533 if (pktin) {
5534 bombout(("Unexpected data from server while"
5535 " waiting for user response"));
5536 crStop(0);
5537 }
5538 } while (pktin || inlen > 0);
5539 s->dlgret = ssh->user_response;
5540 }
5541 ssh_set_frozen(ssh, 0);
5542 if (s->dlgret == 0) {
5543 ssh_disconnect(ssh, "User aborted at cipher warning", NULL,
5544 0, TRUE);
5545 crStop(0);
5546 }
5547 }
5548
5549 ssh->exhash = ssh->kex->hash->init();
5550 hash_string(ssh->kex->hash, ssh->exhash, ssh->v_c, strlen(ssh->v_c));
5551 hash_string(ssh->kex->hash, ssh->exhash, ssh->v_s, strlen(ssh->v_s));
5552 hash_string(ssh->kex->hash, ssh->exhash,
5553 s->our_kexinit, s->our_kexinitlen);
5554 sfree(s->our_kexinit);
5555 if (pktin->length > 5)
5556 hash_string(ssh->kex->hash, ssh->exhash,
5557 pktin->data + 5, pktin->length - 5);
5558
5559 if (s->ignorepkt) /* first_kex_packet_follows */
5560 crWaitUntil(pktin); /* Ignore packet */
5561 }
5562
5563 /*
5564 * Work out the number of bits of key we will need from the key
5565 * exchange. We start with the maximum key length of either
5566 * cipher...
5567 */
5568 {
5569 int csbits, scbits;
5570
5571 csbits = s->cscipher_tobe->keylen;
5572 scbits = s->sccipher_tobe->keylen;
5573 s->nbits = (csbits > scbits ? csbits : scbits);
5574 }
5575 /* The keys only have hlen-bit entropy, since they're based on
5576 * a hash. So cap the key size at hlen bits. */
5577 if (s->nbits > ssh->kex->hash->hlen * 8)
5578 s->nbits = ssh->kex->hash->hlen * 8;
5579
5580 /*
5581 * If we're doing Diffie-Hellman group exchange, start by
5582 * requesting a group.
5583 */
5584 if (!ssh->kex->pdata) {
5585 logevent("Doing Diffie-Hellman group exchange");
5586 ssh->pkt_ctx |= SSH2_PKTCTX_DHGEX;
5587 /*
5588 * Work out how big a DH group we will need to allow that
5589 * much data.
5590 */
5591 s->pbits = 512 << ((s->nbits - 1) / 64);
5592 s->pktout = ssh2_pkt_init(SSH2_MSG_KEX_DH_GEX_REQUEST);
5593 ssh2_pkt_adduint32(s->pktout, s->pbits);
5594 ssh2_pkt_send_noqueue(ssh, s->pktout);
5595
5596 crWaitUntil(pktin);
5597 if (pktin->type != SSH2_MSG_KEX_DH_GEX_GROUP) {
5598 bombout(("expected key exchange group packet from server"));
5599 crStop(0);
5600 }
5601 s->p = ssh2_pkt_getmp(pktin);
5602 s->g = ssh2_pkt_getmp(pktin);
5603 if (!s->p || !s->g) {
5604 bombout(("unable to read mp-ints from incoming group packet"));
5605 crStop(0);
5606 }
5607 ssh->kex_ctx = dh_setup_gex(s->p, s->g);
5608 s->kex_init_value = SSH2_MSG_KEX_DH_GEX_INIT;
5609 s->kex_reply_value = SSH2_MSG_KEX_DH_GEX_REPLY;
5610 } else {
5611 ssh->pkt_ctx |= SSH2_PKTCTX_DHGROUP;
5612 ssh->kex_ctx = dh_setup_group(ssh->kex);
5613 s->kex_init_value = SSH2_MSG_KEXDH_INIT;
5614 s->kex_reply_value = SSH2_MSG_KEXDH_REPLY;
5615 logeventf(ssh, "Using Diffie-Hellman with standard group \"%s\"",
5616 ssh->kex->groupname);
5617 }
5618
5619 logeventf(ssh, "Doing Diffie-Hellman key exchange with hash %s",
5620 ssh->kex->hash->text_name);
5621 /*
5622 * Now generate and send e for Diffie-Hellman.
5623 */
5624 set_busy_status(ssh->frontend, BUSY_CPU); /* this can take a while */
5625 s->e = dh_create_e(ssh->kex_ctx, s->nbits * 2);
5626 s->pktout = ssh2_pkt_init(s->kex_init_value);
5627 ssh2_pkt_addmp(s->pktout, s->e);
5628 ssh2_pkt_send_noqueue(ssh, s->pktout);
5629
5630 set_busy_status(ssh->frontend, BUSY_WAITING); /* wait for server */
5631 crWaitUntil(pktin);
5632 if (pktin->type != s->kex_reply_value) {
5633 bombout(("expected key exchange reply packet from server"));
5634 crStop(0);
5635 }
5636 set_busy_status(ssh->frontend, BUSY_CPU); /* cogitate */
5637 ssh_pkt_getstring(pktin, &s->hostkeydata, &s->hostkeylen);
5638 s->f = ssh2_pkt_getmp(pktin);
5639 if (!s->f) {
5640 bombout(("unable to parse key exchange reply packet"));
5641 crStop(0);
5642 }
5643 ssh_pkt_getstring(pktin, &s->sigdata, &s->siglen);
5644
5645 s->K = dh_find_K(ssh->kex_ctx, s->f);
5646
5647 /* We assume everything from now on will be quick, and it might
5648 * involve user interaction. */
5649 set_busy_status(ssh->frontend, BUSY_NOT);
5650
5651 hash_string(ssh->kex->hash, ssh->exhash, s->hostkeydata, s->hostkeylen);
5652 if (!ssh->kex->pdata) {
5653 hash_uint32(ssh->kex->hash, ssh->exhash, s->pbits);
5654 hash_mpint(ssh->kex->hash, ssh->exhash, s->p);
5655 hash_mpint(ssh->kex->hash, ssh->exhash, s->g);
5656 }
5657 hash_mpint(ssh->kex->hash, ssh->exhash, s->e);
5658 hash_mpint(ssh->kex->hash, ssh->exhash, s->f);
5659 hash_mpint(ssh->kex->hash, ssh->exhash, s->K);
5660 assert(ssh->kex->hash->hlen <= sizeof(s->exchange_hash));
5661 ssh->kex->hash->final(ssh->exhash, s->exchange_hash);
5662
5663 dh_cleanup(ssh->kex_ctx);
5664 ssh->kex_ctx = NULL;
5665
5666 #if 0
5667 debug(("Exchange hash is:\n"));
5668 dmemdump(s->exchange_hash, ssh->kex->hash->hlen);
5669 #endif
5670
5671 s->hkey = ssh->hostkey->newkey(s->hostkeydata, s->hostkeylen);
5672 if (!s->hkey ||
5673 !ssh->hostkey->verifysig(s->hkey, s->sigdata, s->siglen,
5674 (char *)s->exchange_hash,
5675 ssh->kex->hash->hlen)) {
5676 bombout(("Server's host key did not match the signature supplied"));
5677 crStop(0);
5678 }
5679
5680 /*
5681 * Authenticate remote host: verify host key. (We've already
5682 * checked the signature of the exchange hash.)
5683 */
5684 s->keystr = ssh->hostkey->fmtkey(s->hkey);
5685 s->fingerprint = ssh->hostkey->fingerprint(s->hkey);
5686 ssh_set_frozen(ssh, 1);
5687 s->dlgret = verify_ssh_host_key(ssh->frontend,
5688 ssh->savedhost, ssh->savedport,
5689 ssh->hostkey->keytype, s->keystr,
5690 s->fingerprint,
5691 ssh_dialog_callback, ssh);
5692 if (s->dlgret < 0) {
5693 do {
5694 crReturn(0);
5695 if (pktin) {
5696 bombout(("Unexpected data from server while waiting"
5697 " for user host key response"));
5698 crStop(0);
5699 }
5700 } while (pktin || inlen > 0);
5701 s->dlgret = ssh->user_response;
5702 }
5703 ssh_set_frozen(ssh, 0);
5704 if (s->dlgret == 0) {
5705 ssh_disconnect(ssh, "User aborted at host key verification", NULL,
5706 0, TRUE);
5707 crStop(0);
5708 }
5709 if (!s->got_session_id) { /* don't bother logging this in rekeys */
5710 logevent("Host key fingerprint is:");
5711 logevent(s->fingerprint);
5712 }
5713 sfree(s->fingerprint);
5714 sfree(s->keystr);
5715 ssh->hostkey->freekey(s->hkey);
5716
5717 /*
5718 * The exchange hash from the very first key exchange is also
5719 * the session id, used in session key construction and
5720 * authentication.
5721 */
5722 if (!s->got_session_id) {
5723 assert(sizeof(s->exchange_hash) <= sizeof(ssh->v2_session_id));
5724 memcpy(ssh->v2_session_id, s->exchange_hash,
5725 sizeof(s->exchange_hash));
5726 ssh->v2_session_id_len = ssh->kex->hash->hlen;
5727 assert(ssh->v2_session_id_len <= sizeof(ssh->v2_session_id));
5728 s->got_session_id = TRUE;
5729 }
5730
5731 /*
5732 * Send SSH2_MSG_NEWKEYS.
5733 */
5734 s->pktout = ssh2_pkt_init(SSH2_MSG_NEWKEYS);
5735 ssh2_pkt_send_noqueue(ssh, s->pktout);
5736 ssh->outgoing_data_size = 0; /* start counting from here */
5737
5738 /*
5739 * We've sent client NEWKEYS, so create and initialise
5740 * client-to-server session keys.
5741 */
5742 if (ssh->cs_cipher_ctx)
5743 ssh->cscipher->free_context(ssh->cs_cipher_ctx);
5744 ssh->cscipher = s->cscipher_tobe;
5745 ssh->cs_cipher_ctx = ssh->cscipher->make_context();
5746
5747 if (ssh->cs_mac_ctx)
5748 ssh->csmac->free_context(ssh->cs_mac_ctx);
5749 ssh->csmac = s->csmac_tobe;
5750 ssh->cs_mac_ctx = ssh->csmac->make_context();
5751
5752 if (ssh->cs_comp_ctx)
5753 ssh->cscomp->compress_cleanup(ssh->cs_comp_ctx);
5754 ssh->cscomp = s->cscomp_tobe;
5755 ssh->cs_comp_ctx = ssh->cscomp->compress_init();
5756
5757 /*
5758 * Set IVs on client-to-server keys. Here we use the exchange
5759 * hash from the _first_ key exchange.
5760 */
5761 {
5762 unsigned char keyspace[SSH2_KEX_MAX_HASH_LEN * SSH2_MKKEY_ITERS];
5763 assert(sizeof(keyspace) >= ssh->kex->hash->hlen * SSH2_MKKEY_ITERS);
5764 ssh2_mkkey(ssh,s->K,s->exchange_hash,'C',keyspace);
5765 assert((ssh->cscipher->keylen+7) / 8 <=
5766 ssh->kex->hash->hlen * SSH2_MKKEY_ITERS);
5767 ssh->cscipher->setkey(ssh->cs_cipher_ctx, keyspace);
5768 ssh2_mkkey(ssh,s->K,s->exchange_hash,'A',keyspace);
5769 assert(ssh->cscipher->blksize <=
5770 ssh->kex->hash->hlen * SSH2_MKKEY_ITERS);
5771 ssh->cscipher->setiv(ssh->cs_cipher_ctx, keyspace);
5772 ssh2_mkkey(ssh,s->K,s->exchange_hash,'E',keyspace);
5773 assert(ssh->csmac->len <=
5774 ssh->kex->hash->hlen * SSH2_MKKEY_ITERS);
5775 ssh->csmac->setkey(ssh->cs_mac_ctx, keyspace);
5776 memset(keyspace, 0, sizeof(keyspace));
5777 }
5778
5779 logeventf(ssh, "Initialised %.200s client->server encryption",
5780 ssh->cscipher->text_name);
5781 logeventf(ssh, "Initialised %.200s client->server MAC algorithm",
5782 ssh->csmac->text_name);
5783 if (ssh->cscomp->text_name)
5784 logeventf(ssh, "Initialised %s compression",
5785 ssh->cscomp->text_name);
5786
5787 /*
5788 * Now our end of the key exchange is complete, we can send all
5789 * our queued higher-layer packets.
5790 */
5791 ssh->queueing = FALSE;
5792 ssh2_pkt_queuesend(ssh);
5793
5794 /*
5795 * Expect SSH2_MSG_NEWKEYS from server.
5796 */
5797 crWaitUntil(pktin);
5798 if (pktin->type != SSH2_MSG_NEWKEYS) {
5799 bombout(("expected new-keys packet from server"));
5800 crStop(0);
5801 }
5802 ssh->incoming_data_size = 0; /* start counting from here */
5803
5804 /*
5805 * We've seen server NEWKEYS, so create and initialise
5806 * server-to-client session keys.
5807 */
5808 if (ssh->sc_cipher_ctx)
5809 ssh->sccipher->free_context(ssh->sc_cipher_ctx);
5810 ssh->sccipher = s->sccipher_tobe;
5811 ssh->sc_cipher_ctx = ssh->sccipher->make_context();
5812
5813 if (ssh->sc_mac_ctx)
5814 ssh->scmac->free_context(ssh->sc_mac_ctx);
5815 ssh->scmac = s->scmac_tobe;
5816 ssh->sc_mac_ctx = ssh->scmac->make_context();
5817
5818 if (ssh->sc_comp_ctx)
5819 ssh->sccomp->decompress_cleanup(ssh->sc_comp_ctx);
5820 ssh->sccomp = s->sccomp_tobe;
5821 ssh->sc_comp_ctx = ssh->sccomp->decompress_init();
5822
5823 /*
5824 * Set IVs on server-to-client keys. Here we use the exchange
5825 * hash from the _first_ key exchange.
5826 */
5827 {
5828 unsigned char keyspace[SSH2_KEX_MAX_HASH_LEN * SSH2_MKKEY_ITERS];
5829 assert(sizeof(keyspace) >= ssh->kex->hash->hlen * SSH2_MKKEY_ITERS);
5830 ssh2_mkkey(ssh,s->K,s->exchange_hash,'D',keyspace);
5831 assert((ssh->sccipher->keylen+7) / 8 <=
5832 ssh->kex->hash->hlen * SSH2_MKKEY_ITERS);
5833 ssh->sccipher->setkey(ssh->sc_cipher_ctx, keyspace);
5834 ssh2_mkkey(ssh,s->K,s->exchange_hash,'B',keyspace);
5835 assert(ssh->sccipher->blksize <=
5836 ssh->kex->hash->hlen * SSH2_MKKEY_ITERS);
5837 ssh->sccipher->setiv(ssh->sc_cipher_ctx, keyspace);
5838 ssh2_mkkey(ssh,s->K,s->exchange_hash,'F',keyspace);
5839 assert(ssh->scmac->len <=
5840 ssh->kex->hash->hlen * SSH2_MKKEY_ITERS);
5841 ssh->scmac->setkey(ssh->sc_mac_ctx, keyspace);
5842 memset(keyspace, 0, sizeof(keyspace));
5843 }
5844 logeventf(ssh, "Initialised %.200s server->client encryption",
5845 ssh->sccipher->text_name);
5846 logeventf(ssh, "Initialised %.200s server->client MAC algorithm",
5847 ssh->scmac->text_name);
5848 if (ssh->sccomp->text_name)
5849 logeventf(ssh, "Initialised %s decompression",
5850 ssh->sccomp->text_name);
5851
5852 /*
5853 * Free key exchange data.
5854 */
5855 freebn(s->f);
5856 freebn(s->K);
5857 if (!ssh->kex->pdata) {
5858 freebn(s->g);
5859 freebn(s->p);
5860 }
5861
5862 /*
5863 * Key exchange is over. Loop straight back round if we have a
5864 * deferred rekey reason.
5865 */
5866 if (ssh->deferred_rekey_reason) {
5867 logevent(ssh->deferred_rekey_reason);
5868 pktin = NULL;
5869 ssh->deferred_rekey_reason = NULL;
5870 goto begin_key_exchange;
5871 }
5872
5873 /*
5874 * Otherwise, schedule a timer for our next rekey.
5875 */
5876 ssh->kex_in_progress = FALSE;
5877 ssh->last_rekey = GETTICKCOUNT();
5878 if (ssh->cfg.ssh_rekey_time != 0)
5879 ssh->next_rekey = schedule_timer(ssh->cfg.ssh_rekey_time*60*TICKSPERSEC,
5880 ssh2_timer, ssh);
5881
5882 /*
5883 * If this is the first key exchange phase, we must pass the
5884 * SSH2_MSG_NEWKEYS packet to the next layer, not because it
5885 * wants to see it but because it will need time to initialise
5886 * itself before it sees an actual packet. In subsequent key
5887 * exchange phases, we don't pass SSH2_MSG_NEWKEYS on, because
5888 * it would only confuse the layer above.
5889 */
5890 if (s->activated_authconn) {
5891 crReturn(0);
5892 }
5893 s->activated_authconn = TRUE;
5894
5895 /*
5896 * Now we're encrypting. Begin returning 1 to the protocol main
5897 * function so that other things can run on top of the
5898 * transport. If we ever see a KEXINIT, we must go back to the
5899 * start.
5900 *
5901 * We _also_ go back to the start if we see pktin==NULL and
5902 * inlen==-1, because this is a special signal meaning
5903 * `initiate client-driven rekey', and `in' contains a message
5904 * giving the reason for the rekey.
5905 */
5906 while (!((pktin && pktin->type == SSH2_MSG_KEXINIT) ||
5907 (!pktin && inlen == -1))) {
5908 wait_for_rekey:
5909 crReturn(1);
5910 }
5911 if (pktin) {
5912 logevent("Server initiated key re-exchange");
5913 } else {
5914 /*
5915 * Special case: if the server bug is set that doesn't
5916 * allow rekeying, we give a different log message and
5917 * continue waiting. (If such a server _initiates_ a rekey,
5918 * we process it anyway!)
5919 */
5920 if ((ssh->remote_bugs & BUG_SSH2_REKEY)) {
5921 logeventf(ssh, "Server bug prevents key re-exchange (%s)",
5922 (char *)in);
5923 /* Reset the counters, so that at least this message doesn't
5924 * hit the event log _too_ often. */
5925 ssh->outgoing_data_size = 0;
5926 ssh->incoming_data_size = 0;
5927 if (ssh->cfg.ssh_rekey_time != 0) {
5928 ssh->next_rekey =
5929 schedule_timer(ssh->cfg.ssh_rekey_time*60*TICKSPERSEC,
5930 ssh2_timer, ssh);
5931 }
5932 goto wait_for_rekey; /* this is utterly horrid */
5933 } else {
5934 logeventf(ssh, "Initiating key re-exchange (%s)", (char *)in);
5935 }
5936 }
5937 goto begin_key_exchange;
5938
5939 crFinish(1);
5940 }
5941
5942 /*
5943 * Add data to an SSH-2 channel output buffer.
5944 */
5945 static void ssh2_add_channel_data(struct ssh_channel *c, char *buf,
5946 int len)
5947 {
5948 bufchain_add(&c->v.v2.outbuffer, buf, len);
5949 }
5950
5951 /*
5952 * Attempt to send data on an SSH-2 channel.
5953 */
5954 static int ssh2_try_send(struct ssh_channel *c)
5955 {
5956 Ssh ssh = c->ssh;
5957 struct Packet *pktout;
5958
5959 while (c->v.v2.remwindow > 0 && bufchain_size(&c->v.v2.outbuffer) > 0) {
5960 int len;
5961 void *data;
5962 bufchain_prefix(&c->v.v2.outbuffer, &data, &len);
5963 if ((unsigned)len > c->v.v2.remwindow)
5964 len = c->v.v2.remwindow;
5965 if ((unsigned)len > c->v.v2.remmaxpkt)
5966 len = c->v.v2.remmaxpkt;
5967 pktout = ssh2_pkt_init(SSH2_MSG_CHANNEL_DATA);
5968 ssh2_pkt_adduint32(pktout, c->remoteid);
5969 dont_log_data(ssh, pktout, PKTLOG_OMIT);
5970 ssh2_pkt_addstring_start(pktout);
5971 ssh2_pkt_addstring_data(pktout, data, len);
5972 end_log_omission(ssh, pktout);
5973 ssh2_pkt_send(ssh, pktout);
5974 bufchain_consume(&c->v.v2.outbuffer, len);
5975 c->v.v2.remwindow -= len;
5976 }
5977
5978 /*
5979 * After having sent as much data as we can, return the amount
5980 * still buffered.
5981 */
5982 return bufchain_size(&c->v.v2.outbuffer);
5983 }
5984
5985 static void ssh2_try_send_and_unthrottle(struct ssh_channel *c)
5986 {
5987 int bufsize;
5988 if (c->closes)
5989 return; /* don't send on closing channels */
5990 bufsize = ssh2_try_send(c);
5991 if (bufsize == 0) {
5992 switch (c->type) {
5993 case CHAN_MAINSESSION:
5994 /* stdin need not receive an unthrottle
5995 * notification since it will be polled */
5996 break;
5997 case CHAN_X11:
5998 x11_unthrottle(c->u.x11.s);
5999 break;
6000 case CHAN_AGENT:
6001 /* agent sockets are request/response and need no
6002 * buffer management */
6003 break;
6004 case CHAN_SOCKDATA:
6005 pfd_unthrottle(c->u.pfd.s);
6006 break;
6007 }
6008 }
6009 }
6010
6011 /*
6012 * Potentially enlarge the window on an SSH-2 channel.
6013 */
6014 static void ssh2_set_window(struct ssh_channel *c, unsigned newwin)
6015 {
6016 Ssh ssh = c->ssh;
6017
6018 /*
6019 * Never send WINDOW_ADJUST for a channel that the remote side
6020 * already thinks it's closed; there's no point, since it won't
6021 * be sending any more data anyway.
6022 */
6023 if (c->closes != 0)
6024 return;
6025
6026 /*
6027 * Only send a WINDOW_ADJUST if there's significantly more window
6028 * available than the other end thinks there is. This saves us
6029 * sending a WINDOW_ADJUST for every character in a shell session.
6030 *
6031 * "Significant" is arbitrarily defined as half the window size.
6032 */
6033 if (newwin > c->v.v2.locwindow * 2) {
6034 struct Packet *pktout;
6035
6036 pktout = ssh2_pkt_init(SSH2_MSG_CHANNEL_WINDOW_ADJUST);
6037 ssh2_pkt_adduint32(pktout, c->remoteid);
6038 ssh2_pkt_adduint32(pktout, newwin - c->v.v2.locwindow);
6039 ssh2_pkt_send(ssh, pktout);
6040 c->v.v2.locwindow = newwin;
6041 }
6042 }
6043
6044 static void ssh2_msg_channel_window_adjust(Ssh ssh, struct Packet *pktin)
6045 {
6046 unsigned i = ssh_pkt_getuint32(pktin);
6047 struct ssh_channel *c;
6048 c = find234(ssh->channels, &i, ssh_channelfind);
6049 if (c && !c->closes) {
6050 c->v.v2.remwindow += ssh_pkt_getuint32(pktin);
6051 ssh2_try_send_and_unthrottle(c);
6052 }
6053 }
6054
6055 static void ssh2_msg_channel_data(Ssh ssh, struct Packet *pktin)
6056 {
6057 char *data;
6058 int length;
6059 unsigned i = ssh_pkt_getuint32(pktin);
6060 struct ssh_channel *c;
6061 c = find234(ssh->channels, &i, ssh_channelfind);
6062 if (!c)
6063 return; /* nonexistent channel */
6064 if (pktin->type == SSH2_MSG_CHANNEL_EXTENDED_DATA &&
6065 ssh_pkt_getuint32(pktin) != SSH2_EXTENDED_DATA_STDERR)
6066 return; /* extended but not stderr */
6067 ssh_pkt_getstring(pktin, &data, &length);
6068 if (data) {
6069 int bufsize = 0;
6070 c->v.v2.locwindow -= length;
6071 switch (c->type) {
6072 case CHAN_MAINSESSION:
6073 bufsize =
6074 from_backend(ssh->frontend, pktin->type ==
6075 SSH2_MSG_CHANNEL_EXTENDED_DATA,
6076 data, length);
6077 break;
6078 case CHAN_X11:
6079 bufsize = x11_send(c->u.x11.s, data, length);
6080 break;
6081 case CHAN_SOCKDATA:
6082 bufsize = pfd_send(c->u.pfd.s, data, length);
6083 break;
6084 case CHAN_AGENT:
6085 while (length > 0) {
6086 if (c->u.a.lensofar < 4) {
6087 unsigned int l = min(4 - c->u.a.lensofar,
6088 (unsigned)length);
6089 memcpy(c->u.a.msglen + c->u.a.lensofar,
6090 data, l);
6091 data += l;
6092 length -= l;
6093 c->u.a.lensofar += l;
6094 }
6095 if (c->u.a.lensofar == 4) {
6096 c->u.a.totallen =
6097 4 + GET_32BIT(c->u.a.msglen);
6098 c->u.a.message = snewn(c->u.a.totallen,
6099 unsigned char);
6100 memcpy(c->u.a.message, c->u.a.msglen, 4);
6101 }
6102 if (c->u.a.lensofar >= 4 && length > 0) {
6103 unsigned int l =
6104 min(c->u.a.totallen - c->u.a.lensofar,
6105 (unsigned)length);
6106 memcpy(c->u.a.message + c->u.a.lensofar,
6107 data, l);
6108 data += l;
6109 length -= l;
6110 c->u.a.lensofar += l;
6111 }
6112 if (c->u.a.lensofar == c->u.a.totallen) {
6113 void *reply;
6114 int replylen;
6115 if (agent_query(c->u.a.message,
6116 c->u.a.totallen,
6117 &reply, &replylen,
6118 ssh_agentf_callback, c))
6119 ssh_agentf_callback(c, reply, replylen);
6120 sfree(c->u.a.message);
6121 c->u.a.lensofar = 0;
6122 }
6123 }
6124 bufsize = 0;
6125 break;
6126 }
6127 /*
6128 * If we are not buffering too much data,
6129 * enlarge the window again at the remote side.
6130 */
6131 if (bufsize < OUR_V2_WINSIZE)
6132 ssh2_set_window(c, OUR_V2_WINSIZE - bufsize);
6133 }
6134 }
6135
6136 static void ssh2_msg_channel_eof(Ssh ssh, struct Packet *pktin)
6137 {
6138 unsigned i = ssh_pkt_getuint32(pktin);
6139 struct ssh_channel *c;
6140
6141 c = find234(ssh->channels, &i, ssh_channelfind);
6142 if (!c)
6143 return; /* nonexistent channel */
6144
6145 if (c->type == CHAN_X11) {
6146 /*
6147 * Remote EOF on an X11 channel means we should
6148 * wrap up and close the channel ourselves.
6149 */
6150 x11_close(c->u.x11.s);
6151 sshfwd_close(c);
6152 } else if (c->type == CHAN_AGENT) {
6153 sshfwd_close(c);
6154 } else if (c->type == CHAN_SOCKDATA) {
6155 pfd_close(c->u.pfd.s);
6156 sshfwd_close(c);
6157 }
6158 }
6159
6160 static void ssh2_msg_channel_close(Ssh ssh, struct Packet *pktin)
6161 {
6162 unsigned i = ssh_pkt_getuint32(pktin);
6163 struct ssh_channel *c;
6164 struct Packet *pktout;
6165
6166 c = find234(ssh->channels, &i, ssh_channelfind);
6167 if (!c || c->halfopen) {
6168 bombout(("Received CHANNEL_CLOSE for %s channel %d\n",
6169 c ? "half-open" : "nonexistent", i));
6170 return;
6171 }
6172 /* Do pre-close processing on the channel. */
6173 switch (c->type) {
6174 case CHAN_MAINSESSION:
6175 ssh->mainchan = NULL;
6176 update_specials_menu(ssh->frontend);
6177 break;
6178 case CHAN_X11:
6179 if (c->u.x11.s != NULL)
6180 x11_close(c->u.x11.s);
6181 sshfwd_close(c);
6182 break;
6183 case CHAN_AGENT:
6184 sshfwd_close(c);
6185 break;
6186 case CHAN_SOCKDATA:
6187 if (c->u.pfd.s != NULL)
6188 pfd_close(c->u.pfd.s);
6189 sshfwd_close(c);
6190 break;
6191 }
6192 if (c->closes == 0) {
6193 pktout = ssh2_pkt_init(SSH2_MSG_CHANNEL_CLOSE);
6194 ssh2_pkt_adduint32(pktout, c->remoteid);
6195 ssh2_pkt_send(ssh, pktout);
6196 }
6197 del234(ssh->channels, c);
6198 bufchain_clear(&c->v.v2.outbuffer);
6199 sfree(c);
6200
6201 /*
6202 * See if that was the last channel left open.
6203 * (This is only our termination condition if we're
6204 * not running in -N mode.)
6205 */
6206 if (!ssh->cfg.ssh_no_shell && count234(ssh->channels) == 0) {
6207 /*
6208 * We used to send SSH_MSG_DISCONNECT here,
6209 * because I'd believed that _every_ conforming
6210 * SSH-2 connection had to end with a disconnect
6211 * being sent by at least one side; apparently
6212 * I was wrong and it's perfectly OK to
6213 * unceremoniously slam the connection shut
6214 * when you're done, and indeed OpenSSH feels
6215 * this is more polite than sending a
6216 * DISCONNECT. So now we don't.
6217 */
6218 ssh_disconnect(ssh, "All channels closed", NULL, 0, TRUE);
6219 }
6220 }
6221
6222 static void ssh2_msg_channel_open_confirmation(Ssh ssh, struct Packet *pktin)
6223 {
6224 unsigned i = ssh_pkt_getuint32(pktin);
6225 struct ssh_channel *c;
6226 struct Packet *pktout;
6227
6228 c = find234(ssh->channels, &i, ssh_channelfind);
6229 if (!c)
6230 return; /* nonexistent channel */
6231 if (c->type != CHAN_SOCKDATA_DORMANT)
6232 return; /* dunno why they're confirming this */
6233 c->remoteid = ssh_pkt_getuint32(pktin);
6234 c->halfopen = FALSE;
6235 c->type = CHAN_SOCKDATA;
6236 c->v.v2.remwindow = ssh_pkt_getuint32(pktin);
6237 c->v.v2.remmaxpkt = ssh_pkt_getuint32(pktin);
6238 if (c->u.pfd.s)
6239 pfd_confirm(c->u.pfd.s);
6240 if (c->closes) {
6241 /*
6242 * We have a pending close on this channel,
6243 * which we decided on before the server acked
6244 * the channel open. So now we know the
6245 * remoteid, we can close it again.
6246 */
6247 pktout = ssh2_pkt_init(SSH2_MSG_CHANNEL_CLOSE);
6248 ssh2_pkt_adduint32(pktout, c->remoteid);
6249 ssh2_pkt_send(ssh, pktout);
6250 }
6251 }
6252
6253 static void ssh2_msg_channel_open_failure(Ssh ssh, struct Packet *pktin)
6254 {
6255 static const char *const reasons[] = {
6256 "<unknown reason code>",
6257 "Administratively prohibited",
6258 "Connect failed",
6259 "Unknown channel type",
6260 "Resource shortage",
6261 };
6262 unsigned i = ssh_pkt_getuint32(pktin);
6263 unsigned reason_code;
6264 char *reason_string;
6265 int reason_length;
6266 struct ssh_channel *c;
6267 c = find234(ssh->channels, &i, ssh_channelfind);
6268 if (!c)
6269 return; /* nonexistent channel */
6270 if (c->type != CHAN_SOCKDATA_DORMANT)
6271 return; /* dunno why they're failing this */
6272
6273 reason_code = ssh_pkt_getuint32(pktin);
6274 if (reason_code >= lenof(reasons))
6275 reason_code = 0; /* ensure reasons[reason_code] in range */
6276 ssh_pkt_getstring(pktin, &reason_string, &reason_length);
6277 logeventf(ssh, "Forwarded connection refused by server: %s [%.*s]",
6278 reasons[reason_code], reason_length, reason_string);
6279
6280 pfd_close(c->u.pfd.s);
6281
6282 del234(ssh->channels, c);
6283 sfree(c);
6284 }
6285
6286 static void ssh2_msg_channel_request(Ssh ssh, struct Packet *pktin)
6287 {
6288 unsigned localid;
6289 char *type;
6290 int typelen, want_reply;
6291 int reply = SSH2_MSG_CHANNEL_FAILURE; /* default */
6292 struct ssh_channel *c;
6293 struct Packet *pktout;
6294
6295 localid = ssh_pkt_getuint32(pktin);
6296 ssh_pkt_getstring(pktin, &type, &typelen);
6297 want_reply = ssh2_pkt_getbool(pktin);
6298
6299 /*
6300 * First, check that the channel exists. Otherwise,
6301 * we can instantly disconnect with a rude message.
6302 */
6303 c = find234(ssh->channels, &localid, ssh_channelfind);
6304 if (!c) {
6305 char *buf = dupprintf("Received channel request for nonexistent"
6306 " channel %d", localid);
6307 ssh_disconnect(ssh, NULL, buf, SSH2_DISCONNECT_PROTOCOL_ERROR, FALSE);
6308 sfree(buf);
6309 return;
6310 }
6311
6312 /*
6313 * Having got the channel number, we now look at
6314 * the request type string to see if it's something
6315 * we recognise.
6316 */
6317 if (c == ssh->mainchan) {
6318 /*
6319 * We recognise "exit-status" and "exit-signal" on
6320 * the primary channel.
6321 */
6322 if (typelen == 11 &&
6323 !memcmp(type, "exit-status", 11)) {
6324
6325 ssh->exitcode = ssh_pkt_getuint32(pktin);
6326 logeventf(ssh, "Server sent command exit status %d",
6327 ssh->exitcode);
6328 reply = SSH2_MSG_CHANNEL_SUCCESS;
6329
6330 } else if (typelen == 11 &&
6331 !memcmp(type, "exit-signal", 11)) {
6332
6333 int is_plausible = TRUE, is_int = FALSE;
6334 char *fmt_sig = "", *fmt_msg = "";
6335 char *msg;
6336 int msglen = 0, core = FALSE;
6337 /* ICK: older versions of OpenSSH (e.g. 3.4p1)
6338 * provide an `int' for the signal, despite its
6339 * having been a `string' in the drafts since at
6340 * least 2001. (Fixed in session.c 1.147.) Try to
6341 * infer which we can safely parse it as. */
6342 {
6343 unsigned char *p = pktin->body +
6344 pktin->savedpos;
6345 long len = pktin->length - pktin->savedpos;
6346 unsigned long num = GET_32BIT(p); /* what is it? */
6347 /* If it's 0, it hardly matters; assume string */
6348 if (num == 0) {
6349 is_int = FALSE;
6350 } else {
6351 int maybe_int = FALSE, maybe_str = FALSE;
6352 #define CHECK_HYPOTHESIS(offset, result) \
6353 do { \
6354 long q = offset; \
6355 if (q >= 0 && q+4 <= len) { \
6356 q = q + 4 + GET_32BIT(p+q); \
6357 if (q >= 0 && q+4 <= len && \
6358 ((q = q + 4 + GET_32BIT(p+q))!= 0) && q == len) \
6359 result = TRUE; \
6360 } \
6361 } while(0)
6362 CHECK_HYPOTHESIS(4+1, maybe_int);
6363 CHECK_HYPOTHESIS(4+num+1, maybe_str);
6364 #undef CHECK_HYPOTHESIS
6365 if (maybe_int && !maybe_str)
6366 is_int = TRUE;
6367 else if (!maybe_int && maybe_str)
6368 is_int = FALSE;
6369 else
6370 /* Crikey. Either or neither. Panic. */
6371 is_plausible = FALSE;
6372 }
6373 }
6374 ssh->exitcode = 128; /* means `unknown signal' */
6375 if (is_plausible) {
6376 if (is_int) {
6377 /* Old non-standard OpenSSH. */
6378 int signum = ssh_pkt_getuint32(pktin);
6379 fmt_sig = dupprintf(" %d", signum);
6380 ssh->exitcode = 128 + signum;
6381 } else {
6382 /* As per the drafts. */
6383 char *sig;
6384 int siglen;
6385 ssh_pkt_getstring(pktin, &sig, &siglen);
6386 /* Signal name isn't supposed to be blank, but
6387 * let's cope gracefully if it is. */
6388 if (siglen) {
6389 fmt_sig = dupprintf(" \"%.*s\"",
6390 siglen, sig);
6391 }
6392
6393 /*
6394 * Really hideous method of translating the
6395 * signal description back into a locally
6396 * meaningful number.
6397 */
6398
6399 if (0)
6400 ;
6401 #define TRANSLATE_SIGNAL(s) \
6402 else if (siglen == lenof(#s)-1 && !memcmp(sig, #s, siglen)) \
6403 ssh->exitcode = 128 + SIG ## s
6404 #ifdef SIGABRT
6405 TRANSLATE_SIGNAL(ABRT);
6406 #endif
6407 #ifdef SIGALRM
6408 TRANSLATE_SIGNAL(ALRM);
6409 #endif
6410 #ifdef SIGFPE
6411 TRANSLATE_SIGNAL(FPE);
6412 #endif
6413 #ifdef SIGHUP
6414 TRANSLATE_SIGNAL(HUP);
6415 #endif
6416 #ifdef SIGILL
6417 TRANSLATE_SIGNAL(ILL);
6418 #endif
6419 #ifdef SIGINT
6420 TRANSLATE_SIGNAL(INT);
6421 #endif
6422 #ifdef SIGKILL
6423 TRANSLATE_SIGNAL(KILL);
6424 #endif
6425 #ifdef SIGPIPE
6426 TRANSLATE_SIGNAL(PIPE);
6427 #endif
6428 #ifdef SIGQUIT
6429 TRANSLATE_SIGNAL(QUIT);
6430 #endif
6431 #ifdef SIGSEGV
6432 TRANSLATE_SIGNAL(SEGV);
6433 #endif
6434 #ifdef SIGTERM
6435 TRANSLATE_SIGNAL(TERM);
6436 #endif
6437 #ifdef SIGUSR1
6438 TRANSLATE_SIGNAL(USR1);
6439 #endif
6440 #ifdef SIGUSR2
6441 TRANSLATE_SIGNAL(USR2);
6442 #endif
6443 #undef TRANSLATE_SIGNAL
6444 else
6445 ssh->exitcode = 128;
6446 }
6447 core = ssh2_pkt_getbool(pktin);
6448 ssh_pkt_getstring(pktin, &msg, &msglen);
6449 if (msglen) {
6450 fmt_msg = dupprintf(" (\"%.*s\")", msglen, msg);
6451 }
6452 /* ignore lang tag */
6453 } /* else don't attempt to parse */
6454 logeventf(ssh, "Server exited on signal%s%s%s",
6455 fmt_sig, core ? " (core dumped)" : "",
6456 fmt_msg);
6457 if (*fmt_sig) sfree(fmt_sig);
6458 if (*fmt_msg) sfree(fmt_msg);
6459 reply = SSH2_MSG_CHANNEL_SUCCESS;
6460
6461 }
6462 } else {
6463 /*
6464 * This is a channel request we don't know
6465 * about, so we now either ignore the request
6466 * or respond with CHANNEL_FAILURE, depending
6467 * on want_reply.
6468 */
6469 reply = SSH2_MSG_CHANNEL_FAILURE;
6470 }
6471 if (want_reply) {
6472 pktout = ssh2_pkt_init(reply);
6473 ssh2_pkt_adduint32(pktout, c->remoteid);
6474 ssh2_pkt_send(ssh, pktout);
6475 }
6476 }
6477
6478 static void ssh2_msg_global_request(Ssh ssh, struct Packet *pktin)
6479 {
6480 char *type;
6481 int typelen, want_reply;
6482 struct Packet *pktout;
6483
6484 ssh_pkt_getstring(pktin, &type, &typelen);
6485 want_reply = ssh2_pkt_getbool(pktin);
6486
6487 /*
6488 * We currently don't support any global requests
6489 * at all, so we either ignore the request or
6490 * respond with REQUEST_FAILURE, depending on
6491 * want_reply.
6492 */
6493 if (want_reply) {
6494 pktout = ssh2_pkt_init(SSH2_MSG_REQUEST_FAILURE);
6495 ssh2_pkt_send(ssh, pktout);
6496 }
6497 }
6498
6499 static void ssh2_msg_channel_open(Ssh ssh, struct Packet *pktin)
6500 {
6501 char *type;
6502 int typelen;
6503 char *peeraddr;
6504 int peeraddrlen;
6505 int peerport;
6506 char *error = NULL;
6507 struct ssh_channel *c;
6508 unsigned remid, winsize, pktsize;
6509 struct Packet *pktout;
6510
6511 ssh_pkt_getstring(pktin, &type, &typelen);
6512 c = snew(struct ssh_channel);
6513 c->ssh = ssh;
6514
6515 remid = ssh_pkt_getuint32(pktin);
6516 winsize = ssh_pkt_getuint32(pktin);
6517 pktsize = ssh_pkt_getuint32(pktin);
6518
6519 if (typelen == 3 && !memcmp(type, "x11", 3)) {
6520 char *addrstr;
6521
6522 ssh_pkt_getstring(pktin, &peeraddr, &peeraddrlen);
6523 addrstr = snewn(peeraddrlen+1, char);
6524 memcpy(addrstr, peeraddr, peeraddrlen);
6525 addrstr[peeraddrlen] = '\0';
6526 peerport = ssh_pkt_getuint32(pktin);
6527
6528 logeventf(ssh, "Received X11 connect request from %s:%d",
6529 addrstr, peerport);
6530
6531 if (!ssh->X11_fwd_enabled)
6532 error = "X11 forwarding is not enabled";
6533 else if (x11_init(&c->u.x11.s, ssh->cfg.x11_display, c,
6534 ssh->x11auth, addrstr, peerport,
6535 &ssh->cfg) != NULL) {
6536 error = "Unable to open an X11 connection";
6537 } else {
6538 logevent("Opening X11 forward connection succeeded");
6539 c->type = CHAN_X11;
6540 }
6541
6542 sfree(addrstr);
6543 } else if (typelen == 15 &&
6544 !memcmp(type, "forwarded-tcpip", 15)) {
6545 struct ssh_rportfwd pf, *realpf;
6546 char *dummy;
6547 int dummylen;
6548 ssh_pkt_getstring(pktin, &dummy, &dummylen);/* skip address */
6549 pf.sport = ssh_pkt_getuint32(pktin);
6550 ssh_pkt_getstring(pktin, &peeraddr, &peeraddrlen);
6551 peerport = ssh_pkt_getuint32(pktin);
6552 realpf = find234(ssh->rportfwds, &pf, NULL);
6553 logeventf(ssh, "Received remote port %d open request "
6554 "from %s:%d", pf.sport, peeraddr, peerport);
6555 if (realpf == NULL) {
6556 error = "Remote port is not recognised";
6557 } else {
6558 const char *e = pfd_newconnect(&c->u.pfd.s,
6559 realpf->dhost,
6560 realpf->dport, c,
6561 &ssh->cfg,
6562 realpf->pfrec->addressfamily);
6563 logeventf(ssh, "Attempting to forward remote port to "
6564 "%s:%d", realpf->dhost, realpf->dport);
6565 if (e != NULL) {
6566 logeventf(ssh, "Port open failed: %s", e);
6567 error = "Port open failed";
6568 } else {
6569 logevent("Forwarded port opened successfully");
6570 c->type = CHAN_SOCKDATA;
6571 }
6572 }
6573 } else if (typelen == 22 &&
6574 !memcmp(type, "auth-agent@openssh.com", 22)) {
6575 if (!ssh->agentfwd_enabled)
6576 error = "Agent forwarding is not enabled";
6577 else {
6578 c->type = CHAN_AGENT; /* identify channel type */
6579 c->u.a.lensofar = 0;
6580 }
6581 } else {
6582 error = "Unsupported channel type requested";
6583 }
6584
6585 c->remoteid = remid;
6586 c->halfopen = FALSE;
6587 if (error) {
6588 pktout = ssh2_pkt_init(SSH2_MSG_CHANNEL_OPEN_FAILURE);
6589 ssh2_pkt_adduint32(pktout, c->remoteid);
6590 ssh2_pkt_adduint32(pktout, SSH2_OPEN_CONNECT_FAILED);
6591 ssh2_pkt_addstring(pktout, error);
6592 ssh2_pkt_addstring(pktout, "en"); /* language tag */
6593 ssh2_pkt_send(ssh, pktout);
6594 logeventf(ssh, "Rejected channel open: %s", error);
6595 sfree(c);
6596 } else {
6597 c->localid = alloc_channel_id(ssh);
6598 c->closes = 0;
6599 c->v.v2.locwindow = OUR_V2_WINSIZE;
6600 c->v.v2.remwindow = winsize;
6601 c->v.v2.remmaxpkt = pktsize;
6602 bufchain_init(&c->v.v2.outbuffer);
6603 add234(ssh->channels, c);
6604 pktout = ssh2_pkt_init(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION);
6605 ssh2_pkt_adduint32(pktout, c->remoteid);
6606 ssh2_pkt_adduint32(pktout, c->localid);
6607 ssh2_pkt_adduint32(pktout, c->v.v2.locwindow);
6608 ssh2_pkt_adduint32(pktout, OUR_V2_MAXPKT); /* our max pkt size */
6609 ssh2_pkt_send(ssh, pktout);
6610 }
6611 }
6612
6613 /*
6614 * Buffer banner messages for later display at some convenient point.
6615 */
6616 static void ssh2_msg_userauth_banner(Ssh ssh, struct Packet *pktin)
6617 {
6618 /* Arbitrary limit to prevent unbounded inflation of buffer */
6619 if (bufchain_size(&ssh->banner) <= 131072) {
6620 char *banner = NULL;
6621 int size = 0;
6622 ssh_pkt_getstring(pktin, &banner, &size);
6623 if (banner)
6624 bufchain_add(&ssh->banner, banner, size);
6625 }
6626 }
6627
6628 /* Helper function to deal with sending tty modes for "pty-req" */
6629 static void ssh2_send_ttymode(void *data, char *mode, char *val)
6630 {
6631 struct Packet *pktout = (struct Packet *)data;
6632 int i = 0;
6633 unsigned int arg = 0;
6634 while (strcmp(mode, ssh_ttymodes[i].mode) != 0) i++;
6635 if (i == lenof(ssh_ttymodes)) return;
6636 switch (ssh_ttymodes[i].type) {
6637 case TTY_OP_CHAR:
6638 arg = ssh_tty_parse_specchar(val);
6639 break;
6640 case TTY_OP_BOOL:
6641 arg = ssh_tty_parse_boolean(val);
6642 break;
6643 }
6644 ssh2_pkt_addbyte(pktout, ssh_ttymodes[i].opcode);
6645 ssh2_pkt_adduint32(pktout, arg);
6646 }
6647
6648 /*
6649 * Handle the SSH-2 userauth and connection layers.
6650 */
6651 static void do_ssh2_authconn(Ssh ssh, unsigned char *in, int inlen,
6652 struct Packet *pktin)
6653 {
6654 struct do_ssh2_authconn_state {
6655 enum {
6656 AUTH_TYPE_NONE,
6657 AUTH_TYPE_PUBLICKEY,
6658 AUTH_TYPE_PUBLICKEY_OFFER_LOUD,
6659 AUTH_TYPE_PUBLICKEY_OFFER_QUIET,
6660 AUTH_TYPE_PASSWORD,
6661 AUTH_TYPE_KEYBOARD_INTERACTIVE,
6662 AUTH_TYPE_KEYBOARD_INTERACTIVE_QUIET
6663 } type;
6664 int done_service_req;
6665 int gotit, need_pw, can_pubkey, can_passwd, can_keyb_inter;
6666 int tried_pubkey_config, done_agent;
6667 int kbd_inter_refused;
6668 int we_are_in;
6669 prompts_t *cur_prompt;
6670 int num_prompts;
6671 char username[100];
6672 char *password;
6673 int got_username;
6674 void *publickey_blob;
6675 int publickey_bloblen;
6676 int publickey_encrypted;
6677 char *publickey_algorithm;
6678 char *publickey_comment;
6679 unsigned char agent_request[5], *agent_response, *agentp;
6680 int agent_responselen;
6681 unsigned char *pkblob_in_agent;
6682 int keyi, nkeys;
6683 char *pkblob, *alg, *commentp;
6684 int pklen, alglen, commentlen;
6685 int siglen, retlen, len;
6686 char *q, *agentreq, *ret;
6687 int try_send;
6688 int num_env, env_left, env_ok;
6689 struct Packet *pktout;
6690 };
6691 crState(do_ssh2_authconn_state);
6692
6693 crBegin(ssh->do_ssh2_authconn_crstate);
6694
6695 s->done_service_req = FALSE;
6696 s->we_are_in = FALSE;
6697 if (!ssh->cfg.ssh_no_userauth) {
6698 /*
6699 * Request userauth protocol, and await a response to it.
6700 */
6701 s->pktout = ssh2_pkt_init(SSH2_MSG_SERVICE_REQUEST);
6702 ssh2_pkt_addstring(s->pktout, "ssh-userauth");
6703 ssh2_pkt_send(ssh, s->pktout);
6704 crWaitUntilV(pktin);
6705 if (pktin->type == SSH2_MSG_SERVICE_ACCEPT)
6706 s->done_service_req = TRUE;
6707 }
6708 if (!s->done_service_req) {
6709 /*
6710 * Request connection protocol directly, without authentication.
6711 */
6712 s->pktout = ssh2_pkt_init(SSH2_MSG_SERVICE_REQUEST);
6713 ssh2_pkt_addstring(s->pktout, "ssh-connection");
6714 ssh2_pkt_send(ssh, s->pktout);
6715 crWaitUntilV(pktin);
6716 if (pktin->type == SSH2_MSG_SERVICE_ACCEPT) {
6717 s->we_are_in = TRUE; /* no auth required */
6718 } else {
6719 bombout(("Server refused service request"));
6720 crStopV;
6721 }
6722 }
6723
6724 /* Arrange to be able to deal with any BANNERs that come in.
6725 * (We do this now as packets may come in during the next bit.) */
6726 bufchain_init(&ssh->banner);
6727 ssh->packet_dispatch[SSH2_MSG_USERAUTH_BANNER] =
6728 ssh2_msg_userauth_banner;
6729
6730 /*
6731 * Misc one-time setup for authentication.
6732 */
6733 s->publickey_blob = NULL;
6734 if (!s->we_are_in) {
6735
6736 /*
6737 * Load the public half of any configured public key file
6738 * for later use.
6739 */
6740 if (!filename_is_null(ssh->cfg.keyfile)) {
6741 int keytype;
6742 logeventf(ssh, "Reading private key file \"%.150s\"",
6743 filename_to_str(&ssh->cfg.keyfile));
6744 keytype = key_type(&ssh->cfg.keyfile);
6745 if (keytype == SSH_KEYTYPE_SSH2) {
6746 const char *error;
6747 s->publickey_blob =
6748 ssh2_userkey_loadpub(&ssh->cfg.keyfile,
6749 &s->publickey_algorithm,
6750 &s->publickey_bloblen,
6751 &s->publickey_comment, &error);
6752 if (s->publickey_blob) {
6753 s->publickey_encrypted =
6754 ssh2_userkey_encrypted(&ssh->cfg.keyfile, NULL);
6755 } else {
6756 char *msgbuf;
6757 logeventf(ssh, "Unable to load private key (%s)",
6758 error);
6759 msgbuf = dupprintf("Unable to load private key file "
6760 "\"%.150s\" (%s)\r\n",
6761 filename_to_str(&ssh->cfg.keyfile),
6762 error);
6763 c_write_str(ssh, msgbuf);
6764 sfree(msgbuf);
6765 }
6766 } else {
6767 char *msgbuf;
6768 logeventf(ssh, "Unable to use this key file (%s)",
6769 key_type_to_str(keytype));
6770 msgbuf = dupprintf("Unable to use key file \"%.150s\""
6771 " (%s)\r\n",
6772 filename_to_str(&ssh->cfg.keyfile),
6773 key_type_to_str(keytype));
6774 c_write_str(ssh, msgbuf);
6775 sfree(msgbuf);
6776 s->publickey_blob = NULL;
6777 }
6778 }
6779
6780 /*
6781 * Find out about any keys Pageant has (but if there's a
6782 * public key configured, filter out all others).
6783 */
6784 s->nkeys = 0;
6785 s->agent_response = NULL;
6786 s->pkblob_in_agent = NULL;
6787 if (ssh->cfg.tryagent && agent_exists()) {
6788
6789 void *r;
6790
6791 logevent("Pageant is running. Requesting keys.");
6792
6793 /* Request the keys held by the agent. */
6794 PUT_32BIT(s->agent_request, 1);
6795 s->agent_request[4] = SSH2_AGENTC_REQUEST_IDENTITIES;
6796 if (!agent_query(s->agent_request, 5, &r, &s->agent_responselen,
6797 ssh_agent_callback, ssh)) {
6798 do {
6799 crReturnV;
6800 if (pktin) {
6801 bombout(("Unexpected data from server while"
6802 " waiting for agent response"));
6803 crStopV;
6804 }
6805 } while (pktin || inlen > 0);
6806 r = ssh->agent_response;
6807 s->agent_responselen = ssh->agent_response_len;
6808 }
6809 s->agent_response = (unsigned char *) r;
6810 if (s->agent_response && s->agent_responselen >= 5 &&
6811 s->agent_response[4] == SSH2_AGENT_IDENTITIES_ANSWER) {
6812 int keyi;
6813 unsigned char *p;
6814 p = s->agent_response + 5;
6815 s->nkeys = GET_32BIT(p);
6816 p += 4;
6817 logeventf(ssh, "Pageant has %d SSH-2 keys", s->nkeys);
6818 if (s->publickey_blob) {
6819 /* See if configured key is in agent. */
6820 for (keyi = 0; keyi < s->nkeys; keyi++) {
6821 s->pklen = GET_32BIT(p);
6822 if (s->pklen == s->publickey_bloblen &&
6823 !memcmp(p+4, s->publickey_blob,
6824 s->publickey_bloblen)) {
6825 logeventf(ssh, "Pageant key #%d matches "
6826 "configured key file", keyi);
6827 s->keyi = keyi;
6828 s->pkblob_in_agent = p;
6829 break;
6830 }
6831 p += 4 + s->pklen;
6832 p += GET_32BIT(p) + 4; /* comment */
6833 }
6834 if (!s->pkblob_in_agent) {
6835 logevent("Configured key file not in Pageant");
6836 s->nkeys = 0;
6837 }
6838 }
6839 }
6840 }
6841
6842 }
6843
6844 /*
6845 * We repeat this whole loop, including the username prompt,
6846 * until we manage a successful authentication. If the user
6847 * types the wrong _password_, they can be sent back to the
6848 * beginning to try another username, if this is configured on.
6849 * (If they specify a username in the config, they are never
6850 * asked, even if they do give a wrong password.)
6851 *
6852 * I think this best serves the needs of
6853 *
6854 * - the people who have no configuration, no keys, and just
6855 * want to try repeated (username,password) pairs until they
6856 * type both correctly
6857 *
6858 * - people who have keys and configuration but occasionally
6859 * need to fall back to passwords
6860 *
6861 * - people with a key held in Pageant, who might not have
6862 * logged in to a particular machine before; so they want to
6863 * type a username, and then _either_ their key will be
6864 * accepted, _or_ they will type a password. If they mistype
6865 * the username they will want to be able to get back and
6866 * retype it!
6867 */
6868 s->username[0] = '\0';
6869 s->got_username = FALSE;
6870 while (!s->we_are_in) {
6871 /*
6872 * Get a username.
6873 */
6874 if (s->got_username && !ssh->cfg.change_username) {
6875 /*
6876 * We got a username last time round this loop, and
6877 * with change_username turned off we don't try to get
6878 * it again.
6879 */
6880 } else if (!*ssh->cfg.username) {
6881 int ret; /* need not be kept over crReturn */
6882 s->cur_prompt = new_prompts(ssh->frontend);
6883 s->cur_prompt->to_server = TRUE;
6884 s->cur_prompt->name = dupstr("SSH login name");
6885 add_prompt(s->cur_prompt, dupstr("login as: "), TRUE,
6886 lenof(s->username));
6887 ret = get_userpass_input(s->cur_prompt, NULL, 0);
6888 while (ret < 0) {
6889 ssh->send_ok = 1;
6890 crWaitUntilV(!pktin);
6891 ret = get_userpass_input(s->cur_prompt, in, inlen);
6892 ssh->send_ok = 0;
6893 }
6894 if (!ret) {
6895 /*
6896 * get_userpass_input() failed to get a username.
6897 * Terminate.
6898 */
6899 free_prompts(s->cur_prompt);
6900 ssh_disconnect(ssh, "No username provided", NULL, 0, TRUE);
6901 crStopV;
6902 }
6903 memcpy(s->username, s->cur_prompt->prompts[0]->result,
6904 lenof(s->username));
6905 free_prompts(s->cur_prompt);
6906 } else {
6907 char *stuff;
6908 strncpy(s->username, ssh->cfg.username, sizeof(s->username));
6909 s->username[sizeof(s->username)-1] = '\0';
6910 if ((flags & FLAG_VERBOSE) || (flags & FLAG_INTERACTIVE)) {
6911 stuff = dupprintf("Using username \"%s\".\r\n", s->username);
6912 c_write_str(ssh, stuff);
6913 sfree(stuff);
6914 }
6915 }
6916 s->got_username = TRUE;
6917
6918 /*
6919 * Send an authentication request using method "none": (a)
6920 * just in case it succeeds, and (b) so that we know what
6921 * authentication methods we can usefully try next.
6922 */
6923 ssh->pkt_ctx &= ~SSH2_PKTCTX_AUTH_MASK;
6924
6925 s->pktout = ssh2_pkt_init(SSH2_MSG_USERAUTH_REQUEST);
6926 ssh2_pkt_addstring(s->pktout, s->username);
6927 ssh2_pkt_addstring(s->pktout, "ssh-connection");/* service requested */
6928 ssh2_pkt_addstring(s->pktout, "none"); /* method */
6929 ssh2_pkt_send(ssh, s->pktout);
6930 s->type = AUTH_TYPE_NONE;
6931 s->gotit = FALSE;
6932 s->we_are_in = FALSE;
6933
6934 s->tried_pubkey_config = FALSE;
6935 s->kbd_inter_refused = FALSE;
6936
6937 /* Reset agent request state. */
6938 s->done_agent = FALSE;
6939 if (s->agent_response) {
6940 if (s->pkblob_in_agent) {
6941 s->agentp = s->pkblob_in_agent;
6942 } else {
6943 s->agentp = s->agent_response + 5 + 4;
6944 s->keyi = 0;
6945 }
6946 }
6947
6948 while (1) {
6949 /*
6950 * Wait for the result of the last authentication request.
6951 */
6952 if (!s->gotit)
6953 crWaitUntilV(pktin);
6954 /*
6955 * Now is a convenient point to spew any banner material
6956 * that we've accumulated. (This should ensure that when
6957 * we exit the auth loop, we haven't any left to deal
6958 * with.)
6959 */
6960 {
6961 int size = bufchain_size(&ssh->banner);
6962 /*
6963 * Don't show the banner if we're operating in
6964 * non-verbose non-interactive mode. (It's probably
6965 * a script, which means nobody will read the
6966 * banner _anyway_, and moreover the printing of
6967 * the banner will screw up processing on the
6968 * output of (say) plink.)
6969 */
6970 if (size && (flags & (FLAG_VERBOSE | FLAG_INTERACTIVE))) {
6971 char *banner = snewn(size, char);
6972 bufchain_fetch(&ssh->banner, banner, size);
6973 c_write_untrusted(ssh, banner, size);
6974 sfree(banner);
6975 }
6976 bufchain_clear(&ssh->banner);
6977 }
6978 if (pktin->type == SSH2_MSG_USERAUTH_SUCCESS) {
6979 logevent("Access granted");
6980 s->we_are_in = TRUE;
6981 break;
6982 }
6983
6984 if (pktin->type != SSH2_MSG_USERAUTH_FAILURE) {
6985 bombout(("Strange packet received during authentication: "
6986 "type %d", pktin->type));
6987 crStopV;
6988 }
6989
6990 s->gotit = FALSE;
6991
6992 /*
6993 * OK, we're now sitting on a USERAUTH_FAILURE message, so
6994 * we can look at the string in it and know what we can
6995 * helpfully try next.
6996 */
6997 if (pktin->type == SSH2_MSG_USERAUTH_FAILURE) {
6998 char *methods;
6999 int methlen;
7000 ssh_pkt_getstring(pktin, &methods, &methlen);
7001 if (!ssh2_pkt_getbool(pktin)) {
7002 /*
7003 * We have received an unequivocal Access
7004 * Denied. This can translate to a variety of
7005 * messages:
7006 *
7007 * - if we'd just tried "none" authentication,
7008 * it's not worth printing anything at all
7009 *
7010 * - if we'd just tried a public key _offer_,
7011 * the message should be "Server refused our
7012 * key" (or no message at all if the key
7013 * came from Pageant)
7014 *
7015 * - if we'd just tried anything else, the
7016 * message really should be "Access denied".
7017 *
7018 * Additionally, if we'd just tried password
7019 * authentication, we should break out of this
7020 * whole loop so as to go back to the username
7021 * prompt (iff we're configured to allow
7022 * username change attempts).
7023 */
7024 if (s->type == AUTH_TYPE_NONE) {
7025 /* do nothing */
7026 } else if (s->type == AUTH_TYPE_PUBLICKEY_OFFER_LOUD ||
7027 s->type == AUTH_TYPE_PUBLICKEY_OFFER_QUIET) {
7028 if (s->type == AUTH_TYPE_PUBLICKEY_OFFER_LOUD)
7029 c_write_str(ssh, "Server refused our key\r\n");
7030 logevent("Server refused public key");
7031 } else if (s->type==AUTH_TYPE_KEYBOARD_INTERACTIVE_QUIET) {
7032 /* server declined keyboard-interactive; ignore */
7033 } else {
7034 c_write_str(ssh, "Access denied\r\n");
7035 logevent("Access denied");
7036 if (s->type == AUTH_TYPE_PASSWORD &&
7037 ssh->cfg.change_username) {
7038 /* XXX perhaps we should allow
7039 * keyboard-interactive to do this too? */
7040 s->we_are_in = FALSE;
7041 break;
7042 }
7043 }
7044 } else {
7045 c_write_str(ssh, "Further authentication required\r\n");
7046 logevent("Further authentication required");
7047 }
7048
7049 s->can_pubkey =
7050 in_commasep_string("publickey", methods, methlen);
7051 s->can_passwd =
7052 in_commasep_string("password", methods, methlen);
7053 s->can_keyb_inter = ssh->cfg.try_ki_auth &&
7054 in_commasep_string("keyboard-interactive", methods, methlen);
7055 }
7056
7057 ssh->pkt_ctx &= ~SSH2_PKTCTX_AUTH_MASK;
7058
7059 if (s->can_pubkey && !s->done_agent && s->nkeys) {
7060
7061 /*
7062 * Attempt public-key authentication using a key from Pageant.
7063 */
7064
7065 ssh->pkt_ctx &= ~SSH2_PKTCTX_AUTH_MASK;
7066 ssh->pkt_ctx |= SSH2_PKTCTX_PUBLICKEY;
7067
7068 logeventf(ssh, "Trying Pageant key #%d", s->keyi);
7069
7070 /* Unpack key from agent response */
7071 s->pklen = GET_32BIT(s->agentp);
7072 s->agentp += 4;
7073 s->pkblob = (char *)s->agentp;
7074 s->agentp += s->pklen;
7075 s->alglen = GET_32BIT(s->pkblob);
7076 s->alg = s->pkblob + 4;
7077 s->commentlen = GET_32BIT(s->agentp);
7078 s->agentp += 4;
7079 s->commentp = (char *)s->agentp;
7080 s->agentp += s->commentlen;
7081 /* s->agentp now points at next key, if any */
7082
7083 /* See if server will accept it */
7084 s->pktout = ssh2_pkt_init(SSH2_MSG_USERAUTH_REQUEST);
7085 ssh2_pkt_addstring(s->pktout, s->username);
7086 ssh2_pkt_addstring(s->pktout, "ssh-connection");
7087 /* service requested */
7088 ssh2_pkt_addstring(s->pktout, "publickey");
7089 /* method */
7090 ssh2_pkt_addbool(s->pktout, FALSE); /* no signature included */
7091 ssh2_pkt_addstring_start(s->pktout);
7092 ssh2_pkt_addstring_data(s->pktout, s->alg, s->alglen);
7093 ssh2_pkt_addstring_start(s->pktout);
7094 ssh2_pkt_addstring_data(s->pktout, s->pkblob, s->pklen);
7095 ssh2_pkt_send(ssh, s->pktout);
7096 s->type = AUTH_TYPE_PUBLICKEY_OFFER_QUIET;
7097
7098 crWaitUntilV(pktin);
7099 if (pktin->type != SSH2_MSG_USERAUTH_PK_OK) {
7100
7101 /* Offer of key refused. */
7102 s->gotit = TRUE;
7103
7104 } else {
7105
7106 void *vret;
7107
7108 if (flags & FLAG_VERBOSE) {
7109 c_write_str(ssh, "Authenticating with "
7110 "public key \"");
7111 c_write(ssh, s->commentp, s->commentlen);
7112 c_write_str(ssh, "\" from agent\r\n");
7113 }
7114
7115 /*
7116 * Server is willing to accept the key.
7117 * Construct a SIGN_REQUEST.
7118 */
7119 s->pktout = ssh2_pkt_init(SSH2_MSG_USERAUTH_REQUEST);
7120 ssh2_pkt_addstring(s->pktout, s->username);
7121 ssh2_pkt_addstring(s->pktout, "ssh-connection");
7122 /* service requested */
7123 ssh2_pkt_addstring(s->pktout, "publickey");
7124 /* method */
7125 ssh2_pkt_addbool(s->pktout, TRUE); /* signature included */
7126 ssh2_pkt_addstring_start(s->pktout);
7127 ssh2_pkt_addstring_data(s->pktout, s->alg, s->alglen);
7128 ssh2_pkt_addstring_start(s->pktout);
7129 ssh2_pkt_addstring_data(s->pktout, s->pkblob, s->pklen);
7130
7131 /* Ask agent for signature. */
7132 s->siglen = s->pktout->length - 5 + 4 +
7133 ssh->v2_session_id_len;
7134 if (ssh->remote_bugs & BUG_SSH2_PK_SESSIONID)
7135 s->siglen -= 4;
7136 s->len = 1; /* message type */
7137 s->len += 4 + s->pklen; /* key blob */
7138 s->len += 4 + s->siglen; /* data to sign */
7139 s->len += 4; /* flags */
7140 s->agentreq = snewn(4 + s->len, char);
7141 PUT_32BIT(s->agentreq, s->len);
7142 s->q = s->agentreq + 4;
7143 *s->q++ = SSH2_AGENTC_SIGN_REQUEST;
7144 PUT_32BIT(s->q, s->pklen);
7145 s->q += 4;
7146 memcpy(s->q, s->pkblob, s->pklen);
7147 s->q += s->pklen;
7148 PUT_32BIT(s->q, s->siglen);
7149 s->q += 4;
7150 /* Now the data to be signed... */
7151 if (!(ssh->remote_bugs & BUG_SSH2_PK_SESSIONID)) {
7152 PUT_32BIT(s->q, ssh->v2_session_id_len);
7153 s->q += 4;
7154 }
7155 memcpy(s->q, ssh->v2_session_id,
7156 ssh->v2_session_id_len);
7157 s->q += ssh->v2_session_id_len;
7158 memcpy(s->q, s->pktout->data + 5,
7159 s->pktout->length - 5);
7160 s->q += s->pktout->length - 5;
7161 /* And finally the (zero) flags word. */
7162 PUT_32BIT(s->q, 0);
7163 if (!agent_query(s->agentreq, s->len + 4,
7164 &vret, &s->retlen,
7165 ssh_agent_callback, ssh)) {
7166 do {
7167 crReturnV;
7168 if (pktin) {
7169 bombout(("Unexpected data from server"
7170 " while waiting for agent"
7171 " response"));
7172 crStopV;
7173 }
7174 } while (pktin || inlen > 0);
7175 vret = ssh->agent_response;
7176 s->retlen = ssh->agent_response_len;
7177 }
7178 s->ret = vret;
7179 sfree(s->agentreq);
7180 if (s->ret) {
7181 if (s->ret[4] == SSH2_AGENT_SIGN_RESPONSE) {
7182 logevent("Sending Pageant's response");
7183 ssh2_add_sigblob(ssh, s->pktout,
7184 s->pkblob, s->pklen,
7185 s->ret + 9,
7186 GET_32BIT(s->ret + 5));
7187 ssh2_pkt_send(ssh, s->pktout);
7188 s->type = AUTH_TYPE_PUBLICKEY;
7189 } else {
7190 /* FIXME: less drastic response */
7191 bombout(("Pageant failed to answer challenge"));
7192 crStopV;
7193 }
7194 }
7195 }
7196
7197 /* Do we have any keys left to try? */
7198 if (s->pkblob_in_agent) {
7199 s->done_agent = TRUE;
7200 s->tried_pubkey_config = TRUE;
7201 } else {
7202 s->keyi++;
7203 if (s->keyi >= s->nkeys)
7204 s->done_agent = TRUE;
7205 }
7206
7207 } else if (s->can_pubkey && s->publickey_blob &&
7208 !s->tried_pubkey_config) {
7209
7210 struct ssh2_userkey *key; /* not live over crReturn */
7211 char *passphrase; /* not live over crReturn */
7212
7213 ssh->pkt_ctx &= ~SSH2_PKTCTX_AUTH_MASK;
7214 ssh->pkt_ctx |= SSH2_PKTCTX_PUBLICKEY;
7215
7216 s->tried_pubkey_config = TRUE;
7217
7218 /*
7219 * Try the public key supplied in the configuration.
7220 *
7221 * First, offer the public blob to see if the server is
7222 * willing to accept it.
7223 */
7224 s->pktout = ssh2_pkt_init(SSH2_MSG_USERAUTH_REQUEST);
7225 ssh2_pkt_addstring(s->pktout, s->username);
7226 ssh2_pkt_addstring(s->pktout, "ssh-connection");
7227 /* service requested */
7228 ssh2_pkt_addstring(s->pktout, "publickey"); /* method */
7229 ssh2_pkt_addbool(s->pktout, FALSE);
7230 /* no signature included */
7231 ssh2_pkt_addstring(s->pktout, s->publickey_algorithm);
7232 ssh2_pkt_addstring_start(s->pktout);
7233 ssh2_pkt_addstring_data(s->pktout,
7234 (char *)s->publickey_blob,
7235 s->publickey_bloblen);
7236 ssh2_pkt_send(ssh, s->pktout);
7237 logevent("Offered public key");
7238
7239 crWaitUntilV(pktin);
7240 if (pktin->type != SSH2_MSG_USERAUTH_PK_OK) {
7241 /* Key refused. Give up. */
7242 s->gotit = TRUE; /* reconsider message next loop */
7243 s->type = AUTH_TYPE_PUBLICKEY_OFFER_LOUD;
7244 continue; /* process this new message */
7245 }
7246 logevent("Offer of public key accepted");
7247
7248 /*
7249 * Actually attempt a serious authentication using
7250 * the key.
7251 */
7252 if (flags & FLAG_VERBOSE) {
7253 c_write_str(ssh, "Authenticating with public key \"");
7254 c_write_str(ssh, s->publickey_comment);
7255 c_write_str(ssh, "\"\r\n");
7256 }
7257 key = NULL;
7258 while (!key) {
7259 const char *error; /* not live over crReturn */
7260 if (s->publickey_encrypted) {
7261 /*
7262 * Get a passphrase from the user.
7263 */
7264 int ret; /* need not be kept over crReturn */
7265 s->cur_prompt = new_prompts(ssh->frontend);
7266 s->cur_prompt->to_server = FALSE;
7267 s->cur_prompt->name = dupstr("SSH key passphrase");
7268 add_prompt(s->cur_prompt,
7269 dupprintf("Passphrase for key \"%.100s\": ",
7270 s->publickey_comment),
7271 FALSE, SSH_MAX_PASSWORD_LEN);
7272 ret = get_userpass_input(s->cur_prompt, NULL, 0);
7273 while (ret < 0) {
7274 ssh->send_ok = 1;
7275 crWaitUntilV(!pktin);
7276 ret = get_userpass_input(s->cur_prompt,
7277 in, inlen);
7278 ssh->send_ok = 0;
7279 }
7280 if (!ret) {
7281 /* Failed to get a passphrase. Terminate. */
7282 free_prompts(s->cur_prompt);
7283 ssh_disconnect(ssh, NULL,
7284 "Unable to authenticate",
7285 SSH2_DISCONNECT_AUTH_CANCELLED_BY_USER,
7286 TRUE);
7287 crStopV;
7288 }
7289 passphrase =
7290 dupstr(s->cur_prompt->prompts[0]->result);
7291 free_prompts(s->cur_prompt);
7292 } else {
7293 passphrase = NULL; /* no passphrase needed */
7294 }
7295
7296 /*
7297 * Try decrypting the key.
7298 */
7299 key = ssh2_load_userkey(&ssh->cfg.keyfile, passphrase,
7300 &error);
7301 if (passphrase) {
7302 /* burn the evidence */
7303 memset(passphrase, 0, strlen(passphrase));
7304 sfree(passphrase);
7305 }
7306 if (key == SSH2_WRONG_PASSPHRASE || key == NULL) {
7307 if (passphrase &&
7308 (key == SSH2_WRONG_PASSPHRASE)) {
7309 c_write_str(ssh, "Wrong passphrase\r\n");
7310 key = NULL;
7311 /* and loop again */
7312 } else {
7313 c_write_str(ssh, "Unable to load private key (");
7314 c_write_str(ssh, error);
7315 c_write_str(ssh, ")\r\n");
7316 key = NULL;
7317 break; /* try something else */
7318 }
7319 }
7320 }
7321
7322 if (key) {
7323 unsigned char *pkblob, *sigblob, *sigdata;
7324 int pkblob_len, sigblob_len, sigdata_len;
7325 int p;
7326
7327 /*
7328 * We have loaded the private key and the server
7329 * has announced that it's willing to accept it.
7330 * Hallelujah. Generate a signature and send it.
7331 */
7332 s->pktout = ssh2_pkt_init(SSH2_MSG_USERAUTH_REQUEST);
7333 ssh2_pkt_addstring(s->pktout, s->username);
7334 ssh2_pkt_addstring(s->pktout, "ssh-connection");
7335 /* service requested */
7336 ssh2_pkt_addstring(s->pktout, "publickey");
7337 /* method */
7338 ssh2_pkt_addbool(s->pktout, TRUE);
7339 /* signature follows */
7340 ssh2_pkt_addstring(s->pktout, key->alg->name);
7341 pkblob = key->alg->public_blob(key->data,
7342 &pkblob_len);
7343 ssh2_pkt_addstring_start(s->pktout);
7344 ssh2_pkt_addstring_data(s->pktout, (char *)pkblob,
7345 pkblob_len);
7346
7347 /*
7348 * The data to be signed is:
7349 *
7350 * string session-id
7351 *
7352 * followed by everything so far placed in the
7353 * outgoing packet.
7354 */
7355 sigdata_len = s->pktout->length - 5 + 4 +
7356 ssh->v2_session_id_len;
7357 if (ssh->remote_bugs & BUG_SSH2_PK_SESSIONID)
7358 sigdata_len -= 4;
7359 sigdata = snewn(sigdata_len, unsigned char);
7360 p = 0;
7361 if (!(ssh->remote_bugs & BUG_SSH2_PK_SESSIONID)) {
7362 PUT_32BIT(sigdata+p, ssh->v2_session_id_len);
7363 p += 4;
7364 }
7365 memcpy(sigdata+p, ssh->v2_session_id,
7366 ssh->v2_session_id_len);
7367 p += ssh->v2_session_id_len;
7368 memcpy(sigdata+p, s->pktout->data + 5,
7369 s->pktout->length - 5);
7370 p += s->pktout->length - 5;
7371 assert(p == sigdata_len);
7372 sigblob = key->alg->sign(key->data, (char *)sigdata,
7373 sigdata_len, &sigblob_len);
7374 ssh2_add_sigblob(ssh, s->pktout, pkblob, pkblob_len,
7375 sigblob, sigblob_len);
7376 sfree(pkblob);
7377 sfree(sigblob);
7378 sfree(sigdata);
7379
7380 ssh2_pkt_send(ssh, s->pktout);
7381 s->type = AUTH_TYPE_PUBLICKEY;
7382 key->alg->freekey(key->data);
7383 }
7384
7385 } else if (s->can_keyb_inter && !s->kbd_inter_refused) {
7386
7387 /*
7388 * Keyboard-interactive authentication.
7389 */
7390
7391 s->type = AUTH_TYPE_KEYBOARD_INTERACTIVE;
7392
7393 ssh->pkt_ctx &= ~SSH2_PKTCTX_AUTH_MASK;
7394 ssh->pkt_ctx |= SSH2_PKTCTX_KBDINTER;
7395
7396 s->pktout = ssh2_pkt_init(SSH2_MSG_USERAUTH_REQUEST);
7397 ssh2_pkt_addstring(s->pktout, s->username);
7398 ssh2_pkt_addstring(s->pktout, "ssh-connection");
7399 /* service requested */
7400 ssh2_pkt_addstring(s->pktout, "keyboard-interactive");
7401 /* method */
7402 ssh2_pkt_addstring(s->pktout, ""); /* lang */
7403 ssh2_pkt_addstring(s->pktout, ""); /* submethods */
7404 ssh2_pkt_send(ssh, s->pktout);
7405
7406 crWaitUntilV(pktin);
7407 if (pktin->type != SSH2_MSG_USERAUTH_INFO_REQUEST) {
7408 /* Server is not willing to do keyboard-interactive
7409 * at all (or, bizarrely but legally, accepts the
7410 * user without actually issuing any prompts).
7411 * Give up on it entirely. */
7412 s->gotit = TRUE;
7413 if (pktin->type == SSH2_MSG_USERAUTH_FAILURE)
7414 logevent("Keyboard-interactive authentication refused");
7415 s->type = AUTH_TYPE_KEYBOARD_INTERACTIVE_QUIET;
7416 s->kbd_inter_refused = TRUE; /* don't try it again */
7417 continue;
7418 }
7419
7420 /*
7421 * Loop while the server continues to send INFO_REQUESTs.
7422 */
7423 while (pktin->type == SSH2_MSG_USERAUTH_INFO_REQUEST) {
7424
7425 char *name, *inst, *lang;
7426 int name_len, inst_len, lang_len;
7427 int i;
7428
7429 /*
7430 * We've got a fresh USERAUTH_INFO_REQUEST.
7431 * Get the preamble and start building a prompt.
7432 */
7433 ssh_pkt_getstring(pktin, &name, &name_len);
7434 ssh_pkt_getstring(pktin, &inst, &inst_len);
7435 ssh_pkt_getstring(pktin, &lang, &lang_len);
7436 s->cur_prompt = new_prompts(ssh->frontend);
7437 s->cur_prompt->to_server = TRUE;
7438 if (name_len) {
7439 /* FIXME: better prefix to distinguish from
7440 * local prompts? */
7441 s->cur_prompt->name =
7442 dupprintf("SSH server: %.*s", name_len, name);
7443 s->cur_prompt->name_reqd = TRUE;
7444 } else {
7445 s->cur_prompt->name =
7446 dupstr("SSH server authentication");
7447 s->cur_prompt->name_reqd = FALSE;
7448 }
7449 /* FIXME: ugly to print "Using..." in prompt _every_
7450 * time round. Can this be done more subtly? */
7451 s->cur_prompt->instruction =
7452 dupprintf("Using keyboard-interactive authentication.%s%.*s",
7453 inst_len ? "\n" : "", inst_len, inst);
7454 s->cur_prompt->instr_reqd = TRUE;
7455
7456 /*
7457 * Get the prompts from the packet.
7458 */
7459 s->num_prompts = ssh_pkt_getuint32(pktin);
7460 for (i = 0; i < s->num_prompts; i++) {
7461 char *prompt;
7462 int prompt_len;
7463 int echo;
7464 static char noprompt[] =
7465 "<server failed to send prompt>: ";
7466
7467 ssh_pkt_getstring(pktin, &prompt, &prompt_len);
7468 echo = ssh2_pkt_getbool(pktin);
7469 if (!prompt_len) {
7470 prompt = noprompt;
7471 prompt_len = lenof(noprompt)-1;
7472 }
7473 add_prompt(s->cur_prompt,
7474 dupprintf("%.*s", prompt_len, prompt),
7475 echo, SSH_MAX_PASSWORD_LEN);
7476 }
7477
7478 /*
7479 * Get the user's responses.
7480 */
7481 if (s->num_prompts) {
7482 int ret; /* not live over crReturn */
7483 ret = get_userpass_input(s->cur_prompt, NULL, 0);
7484 while (ret < 0) {
7485 ssh->send_ok = 1;
7486 crWaitUntilV(!pktin);
7487 ret = get_userpass_input(s->cur_prompt, in, inlen);
7488 ssh->send_ok = 0;
7489 }
7490 if (!ret) {
7491 /*
7492 * Failed to get responses. Terminate.
7493 */
7494 free_prompts(s->cur_prompt);
7495 ssh_disconnect(ssh, NULL, "Unable to authenticate",
7496 SSH2_DISCONNECT_AUTH_CANCELLED_BY_USER,
7497 TRUE);
7498 crStopV;
7499 }
7500 }
7501
7502 /*
7503 * Send the responses to the server.
7504 */
7505 s->pktout = ssh2_pkt_init(SSH2_MSG_USERAUTH_INFO_RESPONSE);
7506 ssh2_pkt_adduint32(s->pktout, s->num_prompts);
7507 for (i=0; i < s->num_prompts; i++) {
7508 dont_log_password(ssh, s->pktout, PKTLOG_BLANK);
7509 ssh2_pkt_addstring(s->pktout,
7510 s->cur_prompt->prompts[i]->result);
7511 end_log_omission(ssh, s->pktout);
7512 }
7513 ssh2_pkt_send_with_padding(ssh, s->pktout, 256);
7514
7515 /*
7516 * Get the next packet in case it's another
7517 * INFO_REQUEST.
7518 */
7519 crWaitUntilV(pktin);
7520
7521 }
7522
7523 /*
7524 * We should have SUCCESS or FAILURE now.
7525 */
7526 s->gotit = TRUE;
7527
7528 } else if (s->can_passwd) {
7529
7530 /*
7531 * Plain old password authentication.
7532 */
7533 int ret; /* not live over crReturn */
7534 int changereq_first_time; /* not live over crReturn */
7535
7536 ssh->pkt_ctx &= ~SSH2_PKTCTX_AUTH_MASK;
7537 ssh->pkt_ctx |= SSH2_PKTCTX_PASSWORD;
7538
7539 s->cur_prompt = new_prompts(ssh->frontend);
7540 s->cur_prompt->to_server = TRUE;
7541 s->cur_prompt->name = dupstr("SSH password");
7542 add_prompt(s->cur_prompt, dupprintf("%.90s@%.90s's password: ",
7543 s->username,
7544 ssh->savedhost),
7545 FALSE, SSH_MAX_PASSWORD_LEN);
7546
7547 ret = get_userpass_input(s->cur_prompt, NULL, 0);
7548 while (ret < 0) {
7549 ssh->send_ok = 1;
7550 crWaitUntilV(!pktin);
7551 ret = get_userpass_input(s->cur_prompt, in, inlen);
7552 ssh->send_ok = 0;
7553 }
7554 if (!ret) {
7555 /*
7556 * Failed to get responses. Terminate.
7557 */
7558 free_prompts(s->cur_prompt);
7559 ssh_disconnect(ssh, NULL, "Unable to authenticate",
7560 SSH2_DISCONNECT_AUTH_CANCELLED_BY_USER,
7561 TRUE);
7562 crStopV;
7563 }
7564 /*
7565 * Squirrel away the password. (We may need it later if
7566 * asked to change it.)
7567 */
7568 s->password = dupstr(s->cur_prompt->prompts[0]->result);
7569 free_prompts(s->cur_prompt);
7570
7571 /*
7572 * Send the password packet.
7573 *
7574 * We pad out the password packet to 256 bytes to make
7575 * it harder for an attacker to find the length of the
7576 * user's password.
7577 *
7578 * Anyone using a password longer than 256 bytes
7579 * probably doesn't have much to worry about from
7580 * people who find out how long their password is!
7581 */
7582 s->pktout = ssh2_pkt_init(SSH2_MSG_USERAUTH_REQUEST);
7583 ssh2_pkt_addstring(s->pktout, s->username);
7584 ssh2_pkt_addstring(s->pktout, "ssh-connection");
7585 /* service requested */
7586 ssh2_pkt_addstring(s->pktout, "password");
7587 ssh2_pkt_addbool(s->pktout, FALSE);
7588 dont_log_password(ssh, s->pktout, PKTLOG_BLANK);
7589 ssh2_pkt_addstring(s->pktout, s->password);
7590 end_log_omission(ssh, s->pktout);
7591 ssh2_pkt_send_with_padding(ssh, s->pktout, 256);
7592 logevent("Sent password");
7593 s->type = AUTH_TYPE_PASSWORD;
7594
7595 /*
7596 * Wait for next packet, in case it's a password change
7597 * request.
7598 */
7599 crWaitUntilV(pktin);
7600 changereq_first_time = TRUE;
7601
7602 while (pktin->type == SSH2_MSG_USERAUTH_PASSWD_CHANGEREQ) {
7603
7604 /*
7605 * We're being asked for a new password
7606 * (perhaps not for the first time).
7607 * Loop until the server accepts it.
7608 */
7609
7610 int got_new = FALSE; /* not live over crReturn */
7611 char *prompt; /* not live over crReturn */
7612 int prompt_len; /* not live over crReturn */
7613
7614 {
7615 char *msg;
7616 if (changereq_first_time)
7617 msg = "Server requested password change";
7618 else
7619 msg = "Server rejected new password";
7620 logevent(msg);
7621 c_write_str(ssh, msg);
7622 c_write_str(ssh, "\r\n");
7623 }
7624
7625 ssh_pkt_getstring(pktin, &prompt, &prompt_len);
7626
7627 s->cur_prompt = new_prompts(ssh->frontend);
7628 s->cur_prompt->to_server = TRUE;
7629 s->cur_prompt->name = dupstr("New SSH password");
7630 s->cur_prompt->instruction =
7631 dupprintf("%.*s", prompt_len, prompt);
7632 s->cur_prompt->instr_reqd = TRUE;
7633 /*
7634 * There's no explicit requirement in the protocol
7635 * for the "old" passwords in the original and
7636 * password-change messages to be the same, and
7637 * apparently some Cisco kit supports password change
7638 * by the user entering a blank password originally
7639 * and the real password subsequently, so,
7640 * reluctantly, we prompt for the old password again.
7641 *
7642 * (On the other hand, some servers don't even bother
7643 * to check this field.)
7644 */
7645 add_prompt(s->cur_prompt,
7646 dupstr("Current password (blank for previously entered password): "),
7647 FALSE, SSH_MAX_PASSWORD_LEN);
7648 add_prompt(s->cur_prompt, dupstr("Enter new password: "),
7649 FALSE, SSH_MAX_PASSWORD_LEN);
7650 add_prompt(s->cur_prompt, dupstr("Confirm new password: "),
7651 FALSE, SSH_MAX_PASSWORD_LEN);
7652
7653 /*
7654 * Loop until the user manages to enter the same
7655 * password twice.
7656 */
7657 while (!got_new) {
7658
7659 ret = get_userpass_input(s->cur_prompt, NULL, 0);
7660 while (ret < 0) {
7661 ssh->send_ok = 1;
7662 crWaitUntilV(!pktin);
7663 ret = get_userpass_input(s->cur_prompt, in, inlen);
7664 ssh->send_ok = 0;
7665 }
7666 if (!ret) {
7667 /*
7668 * Failed to get responses. Terminate.
7669 */
7670 /* burn the evidence */
7671 free_prompts(s->cur_prompt);
7672 memset(s->password, 0, strlen(s->password));
7673 sfree(s->password);
7674 ssh_disconnect(ssh, NULL, "Unable to authenticate",
7675 SSH2_DISCONNECT_AUTH_CANCELLED_BY_USER,
7676 TRUE);
7677 crStopV;
7678 }
7679
7680 /*
7681 * If the user specified a new original password
7682 * (IYSWIM), overwrite any previously specified
7683 * one.
7684 * (A side effect is that the user doesn't have to
7685 * re-enter it if they louse up the new password.)
7686 */
7687 if (s->cur_prompt->prompts[0]->result[0]) {
7688 memset(s->password, 0, strlen(s->password));
7689 /* burn the evidence */
7690 sfree(s->password);
7691 s->password =
7692 dupstr(s->cur_prompt->prompts[0]->result);
7693 }
7694
7695 /*
7696 * Check the two new passwords match.
7697 */
7698 got_new = (strcmp(s->cur_prompt->prompts[1]->result,
7699 s->cur_prompt->prompts[2]->result)
7700 == 0);
7701 if (!got_new)
7702 /* They don't. Silly user. */
7703 c_write_str(ssh, "Passwords do not match\r\n");
7704
7705 }
7706
7707 /*
7708 * Send the new password (along with the old one).
7709 * (see above for padding rationale)
7710 */
7711 s->pktout = ssh2_pkt_init(SSH2_MSG_USERAUTH_REQUEST);
7712 ssh2_pkt_addstring(s->pktout, s->username);
7713 ssh2_pkt_addstring(s->pktout, "ssh-connection");
7714 /* service requested */
7715 ssh2_pkt_addstring(s->pktout, "password");
7716 ssh2_pkt_addbool(s->pktout, TRUE);
7717 dont_log_password(ssh, s->pktout, PKTLOG_BLANK);
7718 ssh2_pkt_addstring(s->pktout, s->password);
7719 ssh2_pkt_addstring(s->pktout,
7720 s->cur_prompt->prompts[1]->result);
7721 free_prompts(s->cur_prompt);
7722 end_log_omission(ssh, s->pktout);
7723 ssh2_pkt_send_with_padding(ssh, s->pktout, 256);
7724 logevent("Sent new password");
7725
7726 /*
7727 * Now see what the server has to say about it.
7728 * (If it's CHANGEREQ again, it's not happy with the
7729 * new password.)
7730 */
7731 crWaitUntilV(pktin);
7732 changereq_first_time = FALSE;
7733
7734 }
7735
7736 /*
7737 * We need to reexamine the current pktin at the top
7738 * of the loop. Either:
7739 * - we weren't asked to change password at all, in
7740 * which case it's a SUCCESS or FAILURE with the
7741 * usual meaning
7742 * - we sent a new password, and the server was
7743 * either OK with it (SUCCESS or FAILURE w/partial
7744 * success) or unhappy with the _old_ password
7745 * (FAILURE w/o partial success)
7746 * In any of these cases, we go back to the top of
7747 * the loop and start again.
7748 */
7749 s->gotit = TRUE;
7750
7751 /*
7752 * We don't need the old password any more, in any
7753 * case. Burn the evidence.
7754 */
7755 memset(s->password, 0, strlen(s->password));
7756 sfree(s->password);
7757
7758 } else {
7759
7760 ssh_disconnect(ssh, NULL,
7761 "No supported authentication methods available",
7762 SSH2_DISCONNECT_NO_MORE_AUTH_METHODS_AVAILABLE,
7763 FALSE);
7764 crStopV;
7765
7766 }
7767
7768 }
7769 }
7770 ssh->packet_dispatch[SSH2_MSG_USERAUTH_BANNER] = NULL;
7771
7772 /* Clear up various bits and pieces from authentication. */
7773 if (s->publickey_blob) {
7774 sfree(s->publickey_blob);
7775 sfree(s->publickey_comment);
7776 }
7777 if (s->agent_response)
7778 sfree(s->agent_response);
7779
7780 /*
7781 * Now the connection protocol has started, one way or another.
7782 */
7783
7784 ssh->channels = newtree234(ssh_channelcmp);
7785
7786 /*
7787 * Set up handlers for some connection protocol messages, so we
7788 * don't have to handle them repeatedly in this coroutine.
7789 */
7790 ssh->packet_dispatch[SSH2_MSG_CHANNEL_WINDOW_ADJUST] =
7791 ssh2_msg_channel_window_adjust;
7792 ssh->packet_dispatch[SSH2_MSG_GLOBAL_REQUEST] =
7793 ssh2_msg_global_request;
7794
7795 /*
7796 * Create the main session channel.
7797 */
7798 if (ssh->cfg.ssh_no_shell) {
7799 ssh->mainchan = NULL;
7800 } else if (*ssh->cfg.ssh_nc_host) {
7801 /*
7802 * Just start a direct-tcpip channel and use it as the main
7803 * channel.
7804 */
7805 ssh->mainchan = snew(struct ssh_channel);
7806 ssh->mainchan->ssh = ssh;
7807 ssh->mainchan->localid = alloc_channel_id(ssh);
7808 logeventf(ssh,
7809 "Opening direct-tcpip channel to %s:%d in place of session",
7810 ssh->cfg.ssh_nc_host, ssh->cfg.ssh_nc_port);
7811 s->pktout = ssh2_pkt_init(SSH2_MSG_CHANNEL_OPEN);
7812 ssh2_pkt_addstring(s->pktout, "direct-tcpip");
7813 ssh2_pkt_adduint32(s->pktout, ssh->mainchan->localid);
7814 ssh->mainchan->v.v2.locwindow = OUR_V2_WINSIZE;
7815 ssh2_pkt_adduint32(s->pktout, ssh->mainchan->v.v2.locwindow);/* our window size */
7816 ssh2_pkt_adduint32(s->pktout, OUR_V2_MAXPKT); /* our max pkt size */
7817 ssh2_pkt_addstring(s->pktout, ssh->cfg.ssh_nc_host);
7818 ssh2_pkt_adduint32(s->pktout, ssh->cfg.ssh_nc_port);
7819 /*
7820 * There's nothing meaningful to put in the originator
7821 * fields, but some servers insist on syntactically correct
7822 * information.
7823 */
7824 ssh2_pkt_addstring(s->pktout, "0.0.0.0");
7825 ssh2_pkt_adduint32(s->pktout, 0);
7826 ssh2_pkt_send(ssh, s->pktout);
7827
7828 crWaitUntilV(pktin);
7829 if (pktin->type != SSH2_MSG_CHANNEL_OPEN_CONFIRMATION) {
7830 bombout(("Server refused to open a direct-tcpip channel"));
7831 crStopV;
7832 /* FIXME: error data comes back in FAILURE packet */
7833 }
7834 if (ssh_pkt_getuint32(pktin) != ssh->mainchan->localid) {
7835 bombout(("Server's channel confirmation cited wrong channel"));
7836 crStopV;
7837 }
7838 ssh->mainchan->remoteid = ssh_pkt_getuint32(pktin);
7839 ssh->mainchan->halfopen = FALSE;
7840 ssh->mainchan->type = CHAN_MAINSESSION;
7841 ssh->mainchan->closes = 0;
7842 ssh->mainchan->v.v2.remwindow = ssh_pkt_getuint32(pktin);
7843 ssh->mainchan->v.v2.remmaxpkt = ssh_pkt_getuint32(pktin);
7844 bufchain_init(&ssh->mainchan->v.v2.outbuffer);
7845 add234(ssh->channels, ssh->mainchan);
7846 update_specials_menu(ssh->frontend);
7847 logevent("Opened direct-tcpip channel");
7848 ssh->ncmode = TRUE;
7849 } else {
7850 ssh->mainchan = snew(struct ssh_channel);
7851 ssh->mainchan->ssh = ssh;
7852 ssh->mainchan->localid = alloc_channel_id(ssh);
7853 s->pktout = ssh2_pkt_init(SSH2_MSG_CHANNEL_OPEN);
7854 ssh2_pkt_addstring(s->pktout, "session");
7855 ssh2_pkt_adduint32(s->pktout, ssh->mainchan->localid);
7856 ssh->mainchan->v.v2.locwindow = OUR_V2_WINSIZE;
7857 ssh2_pkt_adduint32(s->pktout, ssh->mainchan->v.v2.locwindow);/* our window size */
7858 ssh2_pkt_adduint32(s->pktout, OUR_V2_MAXPKT); /* our max pkt size */
7859 ssh2_pkt_send(ssh, s->pktout);
7860 crWaitUntilV(pktin);
7861 if (pktin->type != SSH2_MSG_CHANNEL_OPEN_CONFIRMATION) {
7862 bombout(("Server refused to open a session"));
7863 crStopV;
7864 /* FIXME: error data comes back in FAILURE packet */
7865 }
7866 if (ssh_pkt_getuint32(pktin) != ssh->mainchan->localid) {
7867 bombout(("Server's channel confirmation cited wrong channel"));
7868 crStopV;
7869 }
7870 ssh->mainchan->remoteid = ssh_pkt_getuint32(pktin);
7871 ssh->mainchan->halfopen = FALSE;
7872 ssh->mainchan->type = CHAN_MAINSESSION;
7873 ssh->mainchan->closes = 0;
7874 ssh->mainchan->v.v2.remwindow = ssh_pkt_getuint32(pktin);
7875 ssh->mainchan->v.v2.remmaxpkt = ssh_pkt_getuint32(pktin);
7876 bufchain_init(&ssh->mainchan->v.v2.outbuffer);
7877 add234(ssh->channels, ssh->mainchan);
7878 update_specials_menu(ssh->frontend);
7879 logevent("Opened channel for session");
7880 ssh->ncmode = FALSE;
7881 }
7882
7883 /*
7884 * Now we have a channel, make dispatch table entries for
7885 * general channel-based messages.
7886 */
7887 ssh->packet_dispatch[SSH2_MSG_CHANNEL_DATA] =
7888 ssh->packet_dispatch[SSH2_MSG_CHANNEL_EXTENDED_DATA] =
7889 ssh2_msg_channel_data;
7890 ssh->packet_dispatch[SSH2_MSG_CHANNEL_EOF] = ssh2_msg_channel_eof;
7891 ssh->packet_dispatch[SSH2_MSG_CHANNEL_CLOSE] = ssh2_msg_channel_close;
7892 ssh->packet_dispatch[SSH2_MSG_CHANNEL_OPEN_CONFIRMATION] =
7893 ssh2_msg_channel_open_confirmation;
7894 ssh->packet_dispatch[SSH2_MSG_CHANNEL_OPEN_FAILURE] =
7895 ssh2_msg_channel_open_failure;
7896 ssh->packet_dispatch[SSH2_MSG_CHANNEL_REQUEST] =
7897 ssh2_msg_channel_request;
7898 ssh->packet_dispatch[SSH2_MSG_CHANNEL_OPEN] =
7899 ssh2_msg_channel_open;
7900
7901 /*
7902 * Potentially enable X11 forwarding.
7903 */
7904 if (ssh->mainchan && !ssh->ncmode && ssh->cfg.x11_forward) {
7905 char proto[20], data[64];
7906 logevent("Requesting X11 forwarding");
7907 ssh->x11auth = x11_invent_auth(proto, sizeof(proto),
7908 data, sizeof(data), ssh->cfg.x11_auth);
7909 x11_get_real_auth(ssh->x11auth, ssh->cfg.x11_display);
7910 s->pktout = ssh2_pkt_init(SSH2_MSG_CHANNEL_REQUEST);
7911 ssh2_pkt_adduint32(s->pktout, ssh->mainchan->remoteid);
7912 ssh2_pkt_addstring(s->pktout, "x11-req");
7913 ssh2_pkt_addbool(s->pktout, 1); /* want reply */
7914 ssh2_pkt_addbool(s->pktout, 0); /* many connections */
7915 ssh2_pkt_addstring(s->pktout, proto);
7916 /*
7917 * Note that while we blank the X authentication data here, we don't
7918 * take any special action to blank the start of an X11 channel,
7919 * so using MIT-MAGIC-COOKIE-1 and actually opening an X connection
7920 * without having session blanking enabled is likely to leak your
7921 * cookie into the log.
7922 */
7923 dont_log_password(ssh, s->pktout, PKTLOG_BLANK);
7924 ssh2_pkt_addstring(s->pktout, data);
7925 end_log_omission(ssh, s->pktout);
7926 ssh2_pkt_adduint32(s->pktout, x11_get_screen_number(ssh->cfg.x11_display));
7927 ssh2_pkt_send(ssh, s->pktout);
7928
7929 crWaitUntilV(pktin);
7930
7931 if (pktin->type != SSH2_MSG_CHANNEL_SUCCESS) {
7932 if (pktin->type != SSH2_MSG_CHANNEL_FAILURE) {
7933 bombout(("Unexpected response to X11 forwarding request:"
7934 " packet type %d", pktin->type));
7935 crStopV;
7936 }
7937 logevent("X11 forwarding refused");
7938 } else {
7939 logevent("X11 forwarding enabled");
7940 ssh->X11_fwd_enabled = TRUE;
7941 }
7942 }
7943
7944 /*
7945 * Enable port forwardings.
7946 */
7947 ssh_setup_portfwd(ssh, &ssh->cfg);
7948
7949 /*
7950 * Potentially enable agent forwarding.
7951 */
7952 if (ssh->mainchan && !ssh->ncmode && ssh->cfg.agentfwd && agent_exists()) {
7953 logevent("Requesting OpenSSH-style agent forwarding");
7954 s->pktout = ssh2_pkt_init(SSH2_MSG_CHANNEL_REQUEST);
7955 ssh2_pkt_adduint32(s->pktout, ssh->mainchan->remoteid);
7956 ssh2_pkt_addstring(s->pktout, "auth-agent-req@openssh.com");
7957 ssh2_pkt_addbool(s->pktout, 1); /* want reply */
7958 ssh2_pkt_send(ssh, s->pktout);
7959
7960 crWaitUntilV(pktin);
7961
7962 if (pktin->type != SSH2_MSG_CHANNEL_SUCCESS) {
7963 if (pktin->type != SSH2_MSG_CHANNEL_FAILURE) {
7964 bombout(("Unexpected response to agent forwarding request:"
7965 " packet type %d", pktin->type));
7966 crStopV;
7967 }
7968 logevent("Agent forwarding refused");
7969 } else {
7970 logevent("Agent forwarding enabled");
7971 ssh->agentfwd_enabled = TRUE;
7972 }
7973 }
7974
7975 /*
7976 * Now allocate a pty for the session.
7977 */
7978 if (ssh->mainchan && !ssh->ncmode && !ssh->cfg.nopty) {
7979 /* Unpick the terminal-speed string. */
7980 /* XXX perhaps we should allow no speeds to be sent. */
7981 ssh->ospeed = 38400; ssh->ispeed = 38400; /* last-resort defaults */
7982 sscanf(ssh->cfg.termspeed, "%d,%d", &ssh->ospeed, &ssh->ispeed);
7983 /* Build the pty request. */
7984 s->pktout = ssh2_pkt_init(SSH2_MSG_CHANNEL_REQUEST);
7985 ssh2_pkt_adduint32(s->pktout, ssh->mainchan->remoteid); /* recipient channel */
7986 ssh2_pkt_addstring(s->pktout, "pty-req");
7987 ssh2_pkt_addbool(s->pktout, 1); /* want reply */
7988 ssh2_pkt_addstring(s->pktout, ssh->cfg.termtype);
7989 ssh2_pkt_adduint32(s->pktout, ssh->term_width);
7990 ssh2_pkt_adduint32(s->pktout, ssh->term_height);
7991 ssh2_pkt_adduint32(s->pktout, 0); /* pixel width */
7992 ssh2_pkt_adduint32(s->pktout, 0); /* pixel height */
7993 ssh2_pkt_addstring_start(s->pktout);
7994 parse_ttymodes(ssh, ssh->cfg.ttymodes,
7995 ssh2_send_ttymode, (void *)s->pktout);
7996 ssh2_pkt_addbyte(s->pktout, SSH2_TTY_OP_ISPEED);
7997 ssh2_pkt_adduint32(s->pktout, ssh->ispeed);
7998 ssh2_pkt_addbyte(s->pktout, SSH2_TTY_OP_OSPEED);
7999 ssh2_pkt_adduint32(s->pktout, ssh->ospeed);
8000 ssh2_pkt_addstring_data(s->pktout, "\0", 1); /* TTY_OP_END */
8001 ssh2_pkt_send(ssh, s->pktout);
8002 ssh->state = SSH_STATE_INTERMED;
8003
8004 crWaitUntilV(pktin);
8005
8006 if (pktin->type != SSH2_MSG_CHANNEL_SUCCESS) {
8007 if (pktin->type != SSH2_MSG_CHANNEL_FAILURE) {
8008 bombout(("Unexpected response to pty request:"
8009 " packet type %d", pktin->type));
8010 crStopV;
8011 }
8012 c_write_str(ssh, "Server refused to allocate pty\r\n");
8013 ssh->editing = ssh->echoing = 1;
8014 } else {
8015 logeventf(ssh, "Allocated pty (ospeed %dbps, ispeed %dbps)",
8016 ssh->ospeed, ssh->ispeed);
8017 }
8018 } else {
8019 ssh->editing = ssh->echoing = 1;
8020 }
8021
8022 /*
8023 * Send environment variables.
8024 *
8025 * Simplest thing here is to send all the requests at once, and
8026 * then wait for a whole bunch of successes or failures.
8027 */
8028 if (ssh->mainchan && !ssh->ncmode && *ssh->cfg.environmt) {
8029 char *e = ssh->cfg.environmt;
8030 char *var, *varend, *val;
8031
8032 s->num_env = 0;
8033
8034 while (*e) {
8035 var = e;
8036 while (*e && *e != '\t') e++;
8037 varend = e;
8038 if (*e == '\t') e++;
8039 val = e;
8040 while (*e) e++;
8041 e++;
8042
8043 s->pktout = ssh2_pkt_init(SSH2_MSG_CHANNEL_REQUEST);
8044 ssh2_pkt_adduint32(s->pktout, ssh->mainchan->remoteid);
8045 ssh2_pkt_addstring(s->pktout, "env");
8046 ssh2_pkt_addbool(s->pktout, 1); /* want reply */
8047 ssh2_pkt_addstring_start(s->pktout);
8048 ssh2_pkt_addstring_data(s->pktout, var, varend-var);
8049 ssh2_pkt_addstring(s->pktout, val);
8050 ssh2_pkt_send(ssh, s->pktout);
8051
8052 s->num_env++;
8053 }
8054
8055 logeventf(ssh, "Sent %d environment variables", s->num_env);
8056
8057 s->env_ok = 0;
8058 s->env_left = s->num_env;
8059
8060 while (s->env_left > 0) {
8061 crWaitUntilV(pktin);
8062
8063 if (pktin->type != SSH2_MSG_CHANNEL_SUCCESS) {
8064 if (pktin->type != SSH2_MSG_CHANNEL_FAILURE) {
8065 bombout(("Unexpected response to environment request:"
8066 " packet type %d", pktin->type));
8067 crStopV;
8068 }
8069 } else {
8070 s->env_ok++;
8071 }
8072
8073 s->env_left--;
8074 }
8075
8076 if (s->env_ok == s->num_env) {
8077 logevent("All environment variables successfully set");
8078 } else if (s->env_ok == 0) {
8079 logevent("All environment variables refused");
8080 c_write_str(ssh, "Server refused to set environment variables\r\n");
8081 } else {
8082 logeventf(ssh, "%d environment variables refused",
8083 s->num_env - s->env_ok);
8084 c_write_str(ssh, "Server refused to set all environment variables\r\n");
8085 }
8086 }
8087
8088 /*
8089 * Start a shell or a remote command. We may have to attempt
8090 * this twice if the config data has provided a second choice
8091 * of command.
8092 */
8093 if (ssh->mainchan && !ssh->ncmode) while (1) {
8094 int subsys;
8095 char *cmd;
8096
8097 if (ssh->fallback_cmd) {
8098 subsys = ssh->cfg.ssh_subsys2;
8099 cmd = ssh->cfg.remote_cmd_ptr2;
8100 } else {
8101 subsys = ssh->cfg.ssh_subsys;
8102 cmd = ssh->cfg.remote_cmd_ptr;
8103 if (!cmd) cmd = ssh->cfg.remote_cmd;
8104 }
8105
8106 s->pktout = ssh2_pkt_init(SSH2_MSG_CHANNEL_REQUEST);
8107 ssh2_pkt_adduint32(s->pktout, ssh->mainchan->remoteid); /* recipient channel */
8108 if (subsys) {
8109 ssh2_pkt_addstring(s->pktout, "subsystem");
8110 ssh2_pkt_addbool(s->pktout, 1); /* want reply */
8111 ssh2_pkt_addstring(s->pktout, cmd);
8112 } else if (*cmd) {
8113 ssh2_pkt_addstring(s->pktout, "exec");
8114 ssh2_pkt_addbool(s->pktout, 1); /* want reply */
8115 ssh2_pkt_addstring(s->pktout, cmd);
8116 } else {
8117 ssh2_pkt_addstring(s->pktout, "shell");
8118 ssh2_pkt_addbool(s->pktout, 1); /* want reply */
8119 }
8120 ssh2_pkt_send(ssh, s->pktout);
8121
8122 crWaitUntilV(pktin);
8123
8124 if (pktin->type != SSH2_MSG_CHANNEL_SUCCESS) {
8125 if (pktin->type != SSH2_MSG_CHANNEL_FAILURE) {
8126 bombout(("Unexpected response to shell/command request:"
8127 " packet type %d", pktin->type));
8128 crStopV;
8129 }
8130 /*
8131 * We failed to start the command. If this is the
8132 * fallback command, we really are finished; if it's
8133 * not, and if the fallback command exists, try falling
8134 * back to it before complaining.
8135 */
8136 if (!ssh->fallback_cmd && ssh->cfg.remote_cmd_ptr2 != NULL) {
8137 logevent("Primary command failed; attempting fallback");
8138 ssh->fallback_cmd = TRUE;
8139 continue;
8140 }
8141 bombout(("Server refused to start a shell/command"));
8142 crStopV;
8143 } else {
8144 logevent("Started a shell/command");
8145 }
8146 break;
8147 }
8148
8149 ssh->state = SSH_STATE_SESSION;
8150 if (ssh->size_needed)
8151 ssh_size(ssh, ssh->term_width, ssh->term_height);
8152 if (ssh->eof_needed)
8153 ssh_special(ssh, TS_EOF);
8154
8155 /*
8156 * Transfer data!
8157 */
8158 if (ssh->ldisc)
8159 ldisc_send(ssh->ldisc, NULL, 0, 0);/* cause ldisc to notice changes */
8160 if (ssh->mainchan)
8161 ssh->send_ok = 1;
8162 while (1) {
8163 crReturnV;
8164 s->try_send = FALSE;
8165 if (pktin) {
8166
8167 /*
8168 * _All_ the connection-layer packets we expect to
8169 * receive are now handled by the dispatch table.
8170 * Anything that reaches here must be bogus.
8171 */
8172
8173 bombout(("Strange packet received: type %d", pktin->type));
8174 crStopV;
8175 } else if (ssh->mainchan) {
8176 /*
8177 * We have spare data. Add it to the channel buffer.
8178 */
8179 ssh2_add_channel_data(ssh->mainchan, (char *)in, inlen);
8180 s->try_send = TRUE;
8181 }
8182 if (s->try_send) {
8183 int i;
8184 struct ssh_channel *c;
8185 /*
8186 * Try to send data on all channels if we can.
8187 */
8188 for (i = 0; NULL != (c = index234(ssh->channels, i)); i++)
8189 ssh2_try_send_and_unthrottle(c);
8190 }
8191 }
8192
8193 crFinishV;
8194 }
8195
8196 /*
8197 * Handlers for SSH-2 messages that might arrive at any moment.
8198 */
8199 static void ssh2_msg_disconnect(Ssh ssh, struct Packet *pktin)
8200 {
8201 /* log reason code in disconnect message */
8202 char *buf, *msg;
8203 int nowlen, reason, msglen;
8204
8205 reason = ssh_pkt_getuint32(pktin);
8206 ssh_pkt_getstring(pktin, &msg, &msglen);
8207
8208 if (reason > 0 && reason < lenof(ssh2_disconnect_reasons)) {
8209 buf = dupprintf("Received disconnect message (%s)",
8210 ssh2_disconnect_reasons[reason]);
8211 } else {
8212 buf = dupprintf("Received disconnect message (unknown"
8213 " type %d)", reason);
8214 }
8215 logevent(buf);
8216 sfree(buf);
8217 buf = dupprintf("Disconnection message text: %n%.*s",
8218 &nowlen, msglen, msg);
8219 logevent(buf);
8220 bombout(("Server sent disconnect message\ntype %d (%s):\n\"%s\"",
8221 reason,
8222 (reason > 0 && reason < lenof(ssh2_disconnect_reasons)) ?
8223 ssh2_disconnect_reasons[reason] : "unknown",
8224 buf+nowlen));
8225 sfree(buf);
8226 }
8227
8228 static void ssh2_msg_debug(Ssh ssh, struct Packet *pktin)
8229 {
8230 /* log the debug message */
8231 char *msg;
8232 int msglen;
8233 int always_display;
8234
8235 /* XXX maybe we should actually take notice of this */
8236 always_display = ssh2_pkt_getbool(pktin);
8237 ssh_pkt_getstring(pktin, &msg, &msglen);
8238
8239 logeventf(ssh, "Remote debug message: %.*s", msglen, msg);
8240 }
8241
8242 static void ssh2_msg_something_unimplemented(Ssh ssh, struct Packet *pktin)
8243 {
8244 struct Packet *pktout;
8245 pktout = ssh2_pkt_init(SSH2_MSG_UNIMPLEMENTED);
8246 ssh2_pkt_adduint32(pktout, pktin->sequence);
8247 /*
8248 * UNIMPLEMENTED messages MUST appear in the same order as the
8249 * messages they respond to. Hence, never queue them.
8250 */
8251 ssh2_pkt_send_noqueue(ssh, pktout);
8252 }
8253
8254 /*
8255 * Handle the top-level SSH-2 protocol.
8256 */
8257 static void ssh2_protocol_setup(Ssh ssh)
8258 {
8259 int i;
8260
8261 /*
8262 * Most messages cause SSH2_MSG_UNIMPLEMENTED.
8263 */
8264 for (i = 0; i < 256; i++)
8265 ssh->packet_dispatch[i] = ssh2_msg_something_unimplemented;
8266
8267 /*
8268 * Any message we actually understand, we set to NULL so that
8269 * the coroutines will get it.
8270 */
8271 ssh->packet_dispatch[SSH2_MSG_UNIMPLEMENTED] = NULL;
8272 ssh->packet_dispatch[SSH2_MSG_SERVICE_REQUEST] = NULL;
8273 ssh->packet_dispatch[SSH2_MSG_SERVICE_ACCEPT] = NULL;
8274 ssh->packet_dispatch[SSH2_MSG_KEXINIT] = NULL;
8275 ssh->packet_dispatch[SSH2_MSG_NEWKEYS] = NULL;
8276 ssh->packet_dispatch[SSH2_MSG_KEXDH_INIT] = NULL;
8277 ssh->packet_dispatch[SSH2_MSG_KEXDH_REPLY] = NULL;
8278 /* ssh->packet_dispatch[SSH2_MSG_KEX_DH_GEX_REQUEST] = NULL; duplicate case value */
8279 /* ssh->packet_dispatch[SSH2_MSG_KEX_DH_GEX_GROUP] = NULL; duplicate case value */
8280 ssh->packet_dispatch[SSH2_MSG_KEX_DH_GEX_INIT] = NULL;
8281 ssh->packet_dispatch[SSH2_MSG_KEX_DH_GEX_REPLY] = NULL;
8282 ssh->packet_dispatch[SSH2_MSG_USERAUTH_REQUEST] = NULL;
8283 ssh->packet_dispatch[SSH2_MSG_USERAUTH_FAILURE] = NULL;
8284 ssh->packet_dispatch[SSH2_MSG_USERAUTH_SUCCESS] = NULL;
8285 ssh->packet_dispatch[SSH2_MSG_USERAUTH_BANNER] = NULL;
8286 ssh->packet_dispatch[SSH2_MSG_USERAUTH_PK_OK] = NULL;
8287 /* ssh->packet_dispatch[SSH2_MSG_USERAUTH_PASSWD_CHANGEREQ] = NULL; duplicate case value */
8288 /* ssh->packet_dispatch[SSH2_MSG_USERAUTH_INFO_REQUEST] = NULL; duplicate case value */
8289 ssh->packet_dispatch[SSH2_MSG_USERAUTH_INFO_RESPONSE] = NULL;
8290 ssh->packet_dispatch[SSH2_MSG_GLOBAL_REQUEST] = NULL;
8291 ssh->packet_dispatch[SSH2_MSG_REQUEST_SUCCESS] = NULL;
8292 ssh->packet_dispatch[SSH2_MSG_REQUEST_FAILURE] = NULL;
8293 ssh->packet_dispatch[SSH2_MSG_CHANNEL_OPEN] = NULL;
8294 ssh->packet_dispatch[SSH2_MSG_CHANNEL_OPEN_CONFIRMATION] = NULL;
8295 ssh->packet_dispatch[SSH2_MSG_CHANNEL_OPEN_FAILURE] = NULL;
8296 ssh->packet_dispatch[SSH2_MSG_CHANNEL_WINDOW_ADJUST] = NULL;
8297 ssh->packet_dispatch[SSH2_MSG_CHANNEL_DATA] = NULL;
8298 ssh->packet_dispatch[SSH2_MSG_CHANNEL_EXTENDED_DATA] = NULL;
8299 ssh->packet_dispatch[SSH2_MSG_CHANNEL_EOF] = NULL;
8300 ssh->packet_dispatch[SSH2_MSG_CHANNEL_CLOSE] = NULL;
8301 ssh->packet_dispatch[SSH2_MSG_CHANNEL_REQUEST] = NULL;
8302 ssh->packet_dispatch[SSH2_MSG_CHANNEL_SUCCESS] = NULL;
8303 ssh->packet_dispatch[SSH2_MSG_CHANNEL_FAILURE] = NULL;
8304
8305 /*
8306 * These special message types we install handlers for.
8307 */
8308 ssh->packet_dispatch[SSH2_MSG_DISCONNECT] = ssh2_msg_disconnect;
8309 ssh->packet_dispatch[SSH2_MSG_IGNORE] = ssh_msg_ignore; /* shared with SSH-1 */
8310 ssh->packet_dispatch[SSH2_MSG_DEBUG] = ssh2_msg_debug;
8311 }
8312
8313 static void ssh2_timer(void *ctx, long now)
8314 {
8315 Ssh ssh = (Ssh)ctx;
8316
8317 if (ssh->state == SSH_STATE_CLOSED)
8318 return;
8319
8320 if (!ssh->kex_in_progress && ssh->cfg.ssh_rekey_time != 0 &&
8321 now - ssh->next_rekey >= 0) {
8322 do_ssh2_transport(ssh, "timeout", -1, NULL);
8323 }
8324 }
8325
8326 static void ssh2_protocol(Ssh ssh, void *vin, int inlen,
8327 struct Packet *pktin)
8328 {
8329 unsigned char *in = (unsigned char *)vin;
8330 if (ssh->state == SSH_STATE_CLOSED)
8331 return;
8332
8333 if (pktin) {
8334 ssh->incoming_data_size += pktin->encrypted_len;
8335 if (!ssh->kex_in_progress &&
8336 ssh->max_data_size != 0 &&
8337 ssh->incoming_data_size > ssh->max_data_size)
8338 do_ssh2_transport(ssh, "too much data received", -1, NULL);
8339 }
8340
8341 if (pktin && ssh->packet_dispatch[pktin->type]) {
8342 ssh->packet_dispatch[pktin->type](ssh, pktin);
8343 return;
8344 }
8345
8346 if (!ssh->protocol_initial_phase_done ||
8347 (pktin && pktin->type >= 20 && pktin->type < 50)) {
8348 if (do_ssh2_transport(ssh, in, inlen, pktin) &&
8349 !ssh->protocol_initial_phase_done) {
8350 ssh->protocol_initial_phase_done = TRUE;
8351 /*
8352 * Allow authconn to initialise itself.
8353 */
8354 do_ssh2_authconn(ssh, NULL, 0, NULL);
8355 }
8356 } else {
8357 do_ssh2_authconn(ssh, in, inlen, pktin);
8358 }
8359 }
8360
8361 /*
8362 * Called to set up the connection.
8363 *
8364 * Returns an error message, or NULL on success.
8365 */
8366 static const char *ssh_init(void *frontend_handle, void **backend_handle,
8367 Config *cfg,
8368 char *host, int port, char **realhost, int nodelay,
8369 int keepalive)
8370 {
8371 const char *p;
8372 Ssh ssh;
8373
8374 ssh = snew(struct ssh_tag);
8375 ssh->cfg = *cfg; /* STRUCTURE COPY */
8376 ssh->version = 0; /* when not ready yet */
8377 ssh->s = NULL;
8378 ssh->cipher = NULL;
8379 ssh->v1_cipher_ctx = NULL;
8380 ssh->crcda_ctx = NULL;
8381 ssh->cscipher = NULL;
8382 ssh->cs_cipher_ctx = NULL;
8383 ssh->sccipher = NULL;
8384 ssh->sc_cipher_ctx = NULL;
8385 ssh->csmac = NULL;
8386 ssh->cs_mac_ctx = NULL;
8387 ssh->scmac = NULL;
8388 ssh->sc_mac_ctx = NULL;
8389 ssh->cscomp = NULL;
8390 ssh->cs_comp_ctx = NULL;
8391 ssh->sccomp = NULL;
8392 ssh->sc_comp_ctx = NULL;
8393 ssh->kex = NULL;
8394 ssh->kex_ctx = NULL;
8395 ssh->hostkey = NULL;
8396 ssh->exitcode = -1;
8397 ssh->close_expected = FALSE;
8398 ssh->clean_exit = FALSE;
8399 ssh->state = SSH_STATE_PREPACKET;
8400 ssh->size_needed = FALSE;
8401 ssh->eof_needed = FALSE;
8402 ssh->ldisc = NULL;
8403 ssh->logctx = NULL;
8404 ssh->deferred_send_data = NULL;
8405 ssh->deferred_len = 0;
8406 ssh->deferred_size = 0;
8407 ssh->fallback_cmd = 0;
8408 ssh->pkt_ctx = 0;
8409 ssh->x11auth = NULL;
8410 ssh->v1_compressing = FALSE;
8411 ssh->v2_outgoing_sequence = 0;
8412 ssh->ssh1_rdpkt_crstate = 0;
8413 ssh->ssh2_rdpkt_crstate = 0;
8414 ssh->do_ssh_init_crstate = 0;
8415 ssh->ssh_gotdata_crstate = 0;
8416 ssh->do_ssh1_connection_crstate = 0;
8417 ssh->do_ssh1_login_crstate = 0;
8418 ssh->do_ssh2_transport_crstate = 0;
8419 ssh->do_ssh2_authconn_crstate = 0;
8420 ssh->do_ssh_init_state = NULL;
8421 ssh->do_ssh1_login_state = NULL;
8422 ssh->do_ssh2_transport_state = NULL;
8423 ssh->do_ssh2_authconn_state = NULL;
8424 ssh->v_c = NULL;
8425 ssh->v_s = NULL;
8426 ssh->mainchan = NULL;
8427 ssh->throttled_all = 0;
8428 ssh->v1_stdout_throttling = 0;
8429 ssh->queue = NULL;
8430 ssh->queuelen = ssh->queuesize = 0;
8431 ssh->queueing = FALSE;
8432 ssh->qhead = ssh->qtail = NULL;
8433 ssh->deferred_rekey_reason = NULL;
8434 bufchain_init(&ssh->queued_incoming_data);
8435 ssh->frozen = FALSE;
8436
8437 *backend_handle = ssh;
8438
8439 #ifdef MSCRYPTOAPI
8440 if (crypto_startup() == 0)
8441 return "Microsoft high encryption pack not installed!";
8442 #endif
8443
8444 ssh->frontend = frontend_handle;
8445 ssh->term_width = ssh->cfg.width;
8446 ssh->term_height = ssh->cfg.height;
8447
8448 ssh->channels = NULL;
8449 ssh->rportfwds = NULL;
8450 ssh->portfwds = NULL;
8451
8452 ssh->send_ok = 0;
8453 ssh->editing = 0;
8454 ssh->echoing = 0;
8455 ssh->v1_throttle_count = 0;
8456 ssh->overall_bufsize = 0;
8457 ssh->fallback_cmd = 0;
8458
8459 ssh->protocol = NULL;
8460
8461 ssh->protocol_initial_phase_done = FALSE;
8462
8463 ssh->pinger = NULL;
8464
8465 ssh->incoming_data_size = ssh->outgoing_data_size =
8466 ssh->deferred_data_size = 0L;
8467 ssh->max_data_size = parse_blocksize(ssh->cfg.ssh_rekey_data);
8468 ssh->kex_in_progress = FALSE;
8469
8470 p = connect_to_host(ssh, host, port, realhost, nodelay, keepalive);
8471 if (p != NULL)
8472 return p;
8473
8474 random_ref();
8475
8476 return NULL;
8477 }
8478
8479 static void ssh_free(void *handle)
8480 {
8481 Ssh ssh = (Ssh) handle;
8482 struct ssh_channel *c;
8483 struct ssh_rportfwd *pf;
8484
8485 if (ssh->v1_cipher_ctx)
8486 ssh->cipher->free_context(ssh->v1_cipher_ctx);
8487 if (ssh->cs_cipher_ctx)
8488 ssh->cscipher->free_context(ssh->cs_cipher_ctx);
8489 if (ssh->sc_cipher_ctx)
8490 ssh->sccipher->free_context(ssh->sc_cipher_ctx);
8491 if (ssh->cs_mac_ctx)
8492 ssh->csmac->free_context(ssh->cs_mac_ctx);
8493 if (ssh->sc_mac_ctx)
8494 ssh->scmac->free_context(ssh->sc_mac_ctx);
8495 if (ssh->cs_comp_ctx) {
8496 if (ssh->cscomp)
8497 ssh->cscomp->compress_cleanup(ssh->cs_comp_ctx);
8498 else
8499 zlib_compress_cleanup(ssh->cs_comp_ctx);
8500 }
8501 if (ssh->sc_comp_ctx) {
8502 if (ssh->sccomp)
8503 ssh->sccomp->decompress_cleanup(ssh->sc_comp_ctx);
8504 else
8505 zlib_decompress_cleanup(ssh->sc_comp_ctx);
8506 }
8507 if (ssh->kex_ctx)
8508 dh_cleanup(ssh->kex_ctx);
8509 sfree(ssh->savedhost);
8510
8511 while (ssh->queuelen-- > 0)
8512 ssh_free_packet(ssh->queue[ssh->queuelen]);
8513 sfree(ssh->queue);
8514
8515 while (ssh->qhead) {
8516 struct queued_handler *qh = ssh->qhead;
8517 ssh->qhead = qh->next;
8518 sfree(ssh->qhead);
8519 }
8520 ssh->qhead = ssh->qtail = NULL;
8521
8522 if (ssh->channels) {
8523 while ((c = delpos234(ssh->channels, 0)) != NULL) {
8524 switch (c->type) {
8525 case CHAN_X11:
8526 if (c->u.x11.s != NULL)
8527 x11_close(c->u.x11.s);
8528 break;
8529 case CHAN_SOCKDATA:
8530 if (c->u.pfd.s != NULL)
8531 pfd_close(c->u.pfd.s);
8532 break;
8533 }
8534 sfree(c);
8535 }
8536 freetree234(ssh->channels);
8537 ssh->channels = NULL;
8538 }
8539
8540 if (ssh->rportfwds) {
8541 while ((pf = delpos234(ssh->rportfwds, 0)) != NULL)
8542 sfree(pf);
8543 freetree234(ssh->rportfwds);
8544 ssh->rportfwds = NULL;
8545 }
8546 sfree(ssh->deferred_send_data);
8547 if (ssh->x11auth)
8548 x11_free_auth(ssh->x11auth);
8549 sfree(ssh->do_ssh_init_state);
8550 sfree(ssh->do_ssh1_login_state);
8551 sfree(ssh->do_ssh2_transport_state);
8552 sfree(ssh->do_ssh2_authconn_state);
8553 sfree(ssh->v_c);
8554 sfree(ssh->v_s);
8555 if (ssh->crcda_ctx) {
8556 crcda_free_context(ssh->crcda_ctx);
8557 ssh->crcda_ctx = NULL;
8558 }
8559 if (ssh->s)
8560 ssh_do_close(ssh, TRUE);
8561 expire_timer_context(ssh);
8562 if (ssh->pinger)
8563 pinger_free(ssh->pinger);
8564 bufchain_clear(&ssh->queued_incoming_data);
8565 sfree(ssh);
8566
8567 random_unref();
8568 }
8569
8570 /*
8571 * Reconfigure the SSH backend.
8572 */
8573 static void ssh_reconfig(void *handle, Config *cfg)
8574 {
8575 Ssh ssh = (Ssh) handle;
8576 char *rekeying = NULL, rekey_mandatory = FALSE;
8577 unsigned long old_max_data_size;
8578
8579 pinger_reconfig(ssh->pinger, &ssh->cfg, cfg);
8580 if (ssh->portfwds)
8581 ssh_setup_portfwd(ssh, cfg);
8582
8583 if (ssh->cfg.ssh_rekey_time != cfg->ssh_rekey_time &&
8584 cfg->ssh_rekey_time != 0) {
8585 long new_next = ssh->last_rekey + cfg->ssh_rekey_time*60*TICKSPERSEC;
8586 long now = GETTICKCOUNT();
8587
8588 if (new_next - now < 0) {
8589 rekeying = "timeout shortened";
8590 } else {
8591 ssh->next_rekey = schedule_timer(new_next - now, ssh2_timer, ssh);
8592 }
8593 }
8594
8595 old_max_data_size = ssh->max_data_size;
8596 ssh->max_data_size = parse_blocksize(cfg->ssh_rekey_data);
8597 if (old_max_data_size != ssh->max_data_size &&
8598 ssh->max_data_size != 0) {
8599 if (ssh->outgoing_data_size > ssh->max_data_size ||
8600 ssh->incoming_data_size > ssh->max_data_size)
8601 rekeying = "data limit lowered";
8602 }
8603
8604 if (ssh->cfg.compression != cfg->compression) {
8605 rekeying = "compression setting changed";
8606 rekey_mandatory = TRUE;
8607 }
8608
8609 if (ssh->cfg.ssh2_des_cbc != cfg->ssh2_des_cbc ||
8610 memcmp(ssh->cfg.ssh_cipherlist, cfg->ssh_cipherlist,
8611 sizeof(ssh->cfg.ssh_cipherlist))) {
8612 rekeying = "cipher settings changed";
8613 rekey_mandatory = TRUE;
8614 }
8615
8616 ssh->cfg = *cfg; /* STRUCTURE COPY */
8617
8618 if (rekeying) {
8619 if (!ssh->kex_in_progress) {
8620 do_ssh2_transport(ssh, rekeying, -1, NULL);
8621 } else if (rekey_mandatory) {
8622 ssh->deferred_rekey_reason = rekeying;
8623 }
8624 }
8625 }
8626
8627 /*
8628 * Called to send data down the SSH connection.
8629 */
8630 static int ssh_send(void *handle, char *buf, int len)
8631 {
8632 Ssh ssh = (Ssh) handle;
8633
8634 if (ssh == NULL || ssh->s == NULL || ssh->protocol == NULL)
8635 return 0;
8636
8637 ssh->protocol(ssh, (unsigned char *)buf, len, 0);
8638
8639 return ssh_sendbuffer(ssh);
8640 }
8641
8642 /*
8643 * Called to query the current amount of buffered stdin data.
8644 */
8645 static int ssh_sendbuffer(void *handle)
8646 {
8647 Ssh ssh = (Ssh) handle;
8648 int override_value;
8649
8650 if (ssh == NULL || ssh->s == NULL || ssh->protocol == NULL)
8651 return 0;
8652
8653 /*
8654 * If the SSH socket itself has backed up, add the total backup
8655 * size on that to any individual buffer on the stdin channel.
8656 */
8657 override_value = 0;
8658 if (ssh->throttled_all)
8659 override_value = ssh->overall_bufsize;
8660
8661 if (ssh->version == 1) {
8662 return override_value;
8663 } else if (ssh->version == 2) {
8664 if (!ssh->mainchan || ssh->mainchan->closes > 0)
8665 return override_value;
8666 else
8667 return (override_value +
8668 bufchain_size(&ssh->mainchan->v.v2.outbuffer));
8669 }
8670
8671 return 0;
8672 }
8673
8674 /*
8675 * Called to set the size of the window from SSH's POV.
8676 */
8677 static void ssh_size(void *handle, int width, int height)
8678 {
8679 Ssh ssh = (Ssh) handle;
8680 struct Packet *pktout;
8681
8682 ssh->term_width = width;
8683 ssh->term_height = height;
8684
8685 switch (ssh->state) {
8686 case SSH_STATE_BEFORE_SIZE:
8687 case SSH_STATE_PREPACKET:
8688 case SSH_STATE_CLOSED:
8689 break; /* do nothing */
8690 case SSH_STATE_INTERMED:
8691 ssh->size_needed = TRUE; /* buffer for later */
8692 break;
8693 case SSH_STATE_SESSION:
8694 if (!ssh->cfg.nopty) {
8695 if (ssh->version == 1) {
8696 send_packet(ssh, SSH1_CMSG_WINDOW_SIZE,
8697 PKT_INT, ssh->term_height,
8698 PKT_INT, ssh->term_width,
8699 PKT_INT, 0, PKT_INT, 0, PKT_END);
8700 } else if (ssh->mainchan) {
8701 pktout = ssh2_pkt_init(SSH2_MSG_CHANNEL_REQUEST);
8702 ssh2_pkt_adduint32(pktout, ssh->mainchan->remoteid);
8703 ssh2_pkt_addstring(pktout, "window-change");
8704 ssh2_pkt_addbool(pktout, 0);
8705 ssh2_pkt_adduint32(pktout, ssh->term_width);
8706 ssh2_pkt_adduint32(pktout, ssh->term_height);
8707 ssh2_pkt_adduint32(pktout, 0);
8708 ssh2_pkt_adduint32(pktout, 0);
8709 ssh2_pkt_send(ssh, pktout);
8710 }
8711 }
8712 break;
8713 }
8714 }
8715
8716 /*
8717 * Return a list of the special codes that make sense in this
8718 * protocol.
8719 */
8720 static const struct telnet_special *ssh_get_specials(void *handle)
8721 {
8722 static const struct telnet_special ssh1_ignore_special[] = {
8723 {"IGNORE message", TS_NOP}
8724 };
8725 static const struct telnet_special ssh2_transport_specials[] = {
8726 {"IGNORE message", TS_NOP},
8727 {"Repeat key exchange", TS_REKEY},
8728 };
8729 static const struct telnet_special ssh2_session_specials[] = {
8730 {NULL, TS_SEP},
8731 {"Break", TS_BRK},
8732 /* These are the signal names defined by draft-ietf-secsh-connect-23.
8733 * They include all the ISO C signals, but are a subset of the POSIX
8734 * required signals. */
8735 {"SIGINT (Interrupt)", TS_SIGINT},
8736 {"SIGTERM (Terminate)", TS_SIGTERM},
8737 {"SIGKILL (Kill)", TS_SIGKILL},
8738 {"SIGQUIT (Quit)", TS_SIGQUIT},
8739 {"SIGHUP (Hangup)", TS_SIGHUP},
8740 {"More signals", TS_SUBMENU},
8741 {"SIGABRT", TS_SIGABRT}, {"SIGALRM", TS_SIGALRM},
8742 {"SIGFPE", TS_SIGFPE}, {"SIGILL", TS_SIGILL},
8743 {"SIGPIPE", TS_SIGPIPE}, {"SIGSEGV", TS_SIGSEGV},
8744 {"SIGUSR1", TS_SIGUSR1}, {"SIGUSR2", TS_SIGUSR2},
8745 {NULL, TS_EXITMENU}
8746 };
8747 static const struct telnet_special specials_end[] = {
8748 {NULL, TS_EXITMENU}
8749 };
8750 /* XXX review this length for any changes: */
8751 static struct telnet_special ssh_specials[lenof(ssh2_transport_specials) +
8752 lenof(ssh2_session_specials) +
8753 lenof(specials_end)];
8754 Ssh ssh = (Ssh) handle;
8755 int i = 0;
8756 #define ADD_SPECIALS(name) \
8757 do { \
8758 assert((i + lenof(name)) <= lenof(ssh_specials)); \
8759 memcpy(&ssh_specials[i], name, sizeof name); \
8760 i += lenof(name); \
8761 } while(0)
8762
8763 if (ssh->version == 1) {
8764 /* Don't bother offering IGNORE if we've decided the remote
8765 * won't cope with it, since we wouldn't bother sending it if
8766 * asked anyway. */
8767 if (!(ssh->remote_bugs & BUG_CHOKES_ON_SSH1_IGNORE))
8768 ADD_SPECIALS(ssh1_ignore_special);
8769 } else if (ssh->version == 2) {
8770 ADD_SPECIALS(ssh2_transport_specials);
8771 if (ssh->mainchan)
8772 ADD_SPECIALS(ssh2_session_specials);
8773 } /* else we're not ready yet */
8774
8775 if (i) {
8776 ADD_SPECIALS(specials_end);
8777 return ssh_specials;
8778 } else {
8779 return NULL;
8780 }
8781 #undef ADD_SPECIALS
8782 }
8783
8784 /*
8785 * Send special codes. TS_EOF is useful for `plink', so you
8786 * can send an EOF and collect resulting output (e.g. `plink
8787 * hostname sort').
8788 */
8789 static void ssh_special(void *handle, Telnet_Special code)
8790 {
8791 Ssh ssh = (Ssh) handle;
8792 struct Packet *pktout;
8793
8794 if (code == TS_EOF) {
8795 if (ssh->state != SSH_STATE_SESSION) {
8796 /*
8797 * Buffer the EOF in case we are pre-SESSION, so we can
8798 * send it as soon as we reach SESSION.
8799 */
8800 if (code == TS_EOF)
8801 ssh->eof_needed = TRUE;
8802 return;
8803 }
8804 if (ssh->version == 1) {
8805 send_packet(ssh, SSH1_CMSG_EOF, PKT_END);
8806 } else if (ssh->mainchan) {
8807 struct Packet *pktout = ssh2_pkt_init(SSH2_MSG_CHANNEL_EOF);
8808 ssh2_pkt_adduint32(pktout, ssh->mainchan->remoteid);
8809 ssh2_pkt_send(ssh, pktout);
8810 ssh->send_ok = 0; /* now stop trying to read from stdin */
8811 }
8812 logevent("Sent EOF message");
8813 } else if (code == TS_PING || code == TS_NOP) {
8814 if (ssh->state == SSH_STATE_CLOSED
8815 || ssh->state == SSH_STATE_PREPACKET) return;
8816 if (ssh->version == 1) {
8817 if (!(ssh->remote_bugs & BUG_CHOKES_ON_SSH1_IGNORE))
8818 send_packet(ssh, SSH1_MSG_IGNORE, PKT_STR, "", PKT_END);
8819 } else {
8820 pktout = ssh2_pkt_init(SSH2_MSG_IGNORE);
8821 ssh2_pkt_addstring_start(pktout);
8822 ssh2_pkt_send_noqueue(ssh, pktout);
8823 }
8824 } else if (code == TS_REKEY) {
8825 if (!ssh->kex_in_progress && ssh->version == 2) {
8826 do_ssh2_transport(ssh, "at user request", -1, NULL);
8827 }
8828 } else if (code == TS_BRK) {
8829 if (ssh->state == SSH_STATE_CLOSED
8830 || ssh->state == SSH_STATE_PREPACKET) return;
8831 if (ssh->version == 1) {
8832 logevent("Unable to send BREAK signal in SSH-1");
8833 } else if (ssh->mainchan) {
8834 pktout = ssh2_pkt_init(SSH2_MSG_CHANNEL_REQUEST);
8835 ssh2_pkt_adduint32(pktout, ssh->mainchan->remoteid);
8836 ssh2_pkt_addstring(pktout, "break");
8837 ssh2_pkt_addbool(pktout, 0);
8838 ssh2_pkt_adduint32(pktout, 0); /* default break length */
8839 ssh2_pkt_send(ssh, pktout);
8840 }
8841 } else {
8842 /* Is is a POSIX signal? */
8843 char *signame = NULL;
8844 if (code == TS_SIGABRT) signame = "ABRT";
8845 if (code == TS_SIGALRM) signame = "ALRM";
8846 if (code == TS_SIGFPE) signame = "FPE";
8847 if (code == TS_SIGHUP) signame = "HUP";
8848 if (code == TS_SIGILL) signame = "ILL";
8849 if (code == TS_SIGINT) signame = "INT";
8850 if (code == TS_SIGKILL) signame = "KILL";
8851 if (code == TS_SIGPIPE) signame = "PIPE";
8852 if (code == TS_SIGQUIT) signame = "QUIT";
8853 if (code == TS_SIGSEGV) signame = "SEGV";
8854 if (code == TS_SIGTERM) signame = "TERM";
8855 if (code == TS_SIGUSR1) signame = "USR1";
8856 if (code == TS_SIGUSR2) signame = "USR2";
8857 /* The SSH-2 protocol does in principle support arbitrary named
8858 * signals, including signame@domain, but we don't support those. */
8859 if (signame) {
8860 /* It's a signal. */
8861 if (ssh->version == 2 && ssh->mainchan) {
8862 pktout = ssh2_pkt_init(SSH2_MSG_CHANNEL_REQUEST);
8863 ssh2_pkt_adduint32(pktout, ssh->mainchan->remoteid);
8864 ssh2_pkt_addstring(pktout, "signal");
8865 ssh2_pkt_addbool(pktout, 0);
8866 ssh2_pkt_addstring(pktout, signame);
8867 ssh2_pkt_send(ssh, pktout);
8868 logeventf(ssh, "Sent signal SIG%s", signame);
8869 }
8870 } else {
8871 /* Never heard of it. Do nothing */
8872 }
8873 }
8874 }
8875
8876 void *new_sock_channel(void *handle, Socket s)
8877 {
8878 Ssh ssh = (Ssh) handle;
8879 struct ssh_channel *c;
8880 c = snew(struct ssh_channel);
8881 c->ssh = ssh;
8882
8883 if (c) {
8884 c->halfopen = TRUE;
8885 c->localid = alloc_channel_id(ssh);
8886 c->closes = 0;
8887 c->type = CHAN_SOCKDATA_DORMANT;/* identify channel type */
8888 c->u.pfd.s = s;
8889 bufchain_init(&c->v.v2.outbuffer);
8890 add234(ssh->channels, c);
8891 }
8892 return c;
8893 }
8894
8895 /*
8896 * This is called when stdout/stderr (the entity to which
8897 * from_backend sends data) manages to clear some backlog.
8898 */
8899 static void ssh_unthrottle(void *handle, int bufsize)
8900 {
8901 Ssh ssh = (Ssh) handle;
8902 if (ssh->version == 1) {
8903 if (ssh->v1_stdout_throttling && bufsize < SSH1_BUFFER_LIMIT) {
8904 ssh->v1_stdout_throttling = 0;
8905 ssh1_throttle(ssh, -1);
8906 }
8907 } else {
8908 ssh2_set_window(ssh->mainchan, OUR_V2_WINSIZE - bufsize);
8909 }
8910 }
8911
8912 void ssh_send_port_open(void *channel, char *hostname, int port, char *org)
8913 {
8914 struct ssh_channel *c = (struct ssh_channel *)channel;
8915 Ssh ssh = c->ssh;
8916 struct Packet *pktout;
8917
8918 logeventf(ssh, "Opening forwarded connection to %s:%d", hostname, port);
8919
8920 if (ssh->version == 1) {
8921 send_packet(ssh, SSH1_MSG_PORT_OPEN,
8922 PKT_INT, c->localid,
8923 PKT_STR, hostname,
8924 PKT_INT, port,
8925 /* PKT_STR, <org:orgport>, */
8926 PKT_END);
8927 } else {
8928 pktout = ssh2_pkt_init(SSH2_MSG_CHANNEL_OPEN);
8929 ssh2_pkt_addstring(pktout, "direct-tcpip");
8930 ssh2_pkt_adduint32(pktout, c->localid);
8931 c->v.v2.locwindow = OUR_V2_WINSIZE;
8932 ssh2_pkt_adduint32(pktout, c->v.v2.locwindow);/* our window size */
8933 ssh2_pkt_adduint32(pktout, OUR_V2_MAXPKT); /* our max pkt size */
8934 ssh2_pkt_addstring(pktout, hostname);
8935 ssh2_pkt_adduint32(pktout, port);
8936 /*
8937 * We make up values for the originator data; partly it's
8938 * too much hassle to keep track, and partly I'm not
8939 * convinced the server should be told details like that
8940 * about my local network configuration.
8941 * The "originator IP address" is syntactically a numeric
8942 * IP address, and some servers (e.g., Tectia) get upset
8943 * if it doesn't match this syntax.
8944 */
8945 ssh2_pkt_addstring(pktout, "0.0.0.0");
8946 ssh2_pkt_adduint32(pktout, 0);
8947 ssh2_pkt_send(ssh, pktout);
8948 }
8949 }
8950
8951 static int ssh_connected(void *handle)
8952 {
8953 Ssh ssh = (Ssh) handle;
8954 return ssh->s != NULL;
8955 }
8956
8957 static int ssh_sendok(void *handle)
8958 {
8959 Ssh ssh = (Ssh) handle;
8960 return ssh->send_ok;
8961 }
8962
8963 static int ssh_ldisc(void *handle, int option)
8964 {
8965 Ssh ssh = (Ssh) handle;
8966 if (option == LD_ECHO)
8967 return ssh->echoing;
8968 if (option == LD_EDIT)
8969 return ssh->editing;
8970 return FALSE;
8971 }
8972
8973 static void ssh_provide_ldisc(void *handle, void *ldisc)
8974 {
8975 Ssh ssh = (Ssh) handle;
8976 ssh->ldisc = ldisc;
8977 }
8978
8979 static void ssh_provide_logctx(void *handle, void *logctx)
8980 {
8981 Ssh ssh = (Ssh) handle;
8982 ssh->logctx = logctx;
8983 }
8984
8985 static int ssh_return_exitcode(void *handle)
8986 {
8987 Ssh ssh = (Ssh) handle;
8988 if (ssh->s != NULL)
8989 return -1;
8990 else
8991 return (ssh->exitcode >= 0 ? ssh->exitcode : INT_MAX);
8992 }
8993
8994 /*
8995 * cfg_info for SSH is the currently running version of the
8996 * protocol. (1 for 1; 2 for 2; 0 for not-decided-yet.)
8997 */
8998 static int ssh_cfg_info(void *handle)
8999 {
9000 Ssh ssh = (Ssh) handle;
9001 return ssh->version;
9002 }
9003
9004 /*
9005 * Gross hack: pscp will try to start SFTP but fall back to scp1 if
9006 * that fails. This variable is the means by which scp.c can reach
9007 * into the SSH code and find out which one it got.
9008 */
9009 extern int ssh_fallback_cmd(void *handle)
9010 {
9011 Ssh ssh = (Ssh) handle;
9012 return ssh->fallback_cmd;
9013 }
9014
9015 Backend ssh_backend = {
9016 ssh_init,
9017 ssh_free,
9018 ssh_reconfig,
9019 ssh_send,
9020 ssh_sendbuffer,
9021 ssh_size,
9022 ssh_special,
9023 ssh_get_specials,
9024 ssh_connected,
9025 ssh_return_exitcode,
9026 ssh_sendok,
9027 ssh_ldisc,
9028 ssh_provide_ldisc,
9029 ssh_provide_logctx,
9030 ssh_unthrottle,
9031 ssh_cfg_info,
9032 22
9033 };