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