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