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