]> asedeno.scripts.mit.edu Git - PuTTY.git/blob - ssh.c
Assume that u.pfd.pf and u.x11.xconn are not NULL on appropriate channels.
[PuTTY.git] / ssh.c
1 /*
2  * SSH backend.
3  */
4
5 #include <stdio.h>
6 #include <stdlib.h>
7 #include <stdarg.h>
8 #include <assert.h>
9 #include <limits.h>
10 #include <signal.h>
11
12 #include "putty.h"
13 #include "tree234.h"
14 #include "storage.h"
15 #include "ssh.h"
16 #ifndef NO_GSSAPI
17 #include "sshgssc.h"
18 #include "sshgss.h"
19 #endif
20
21 #ifndef FALSE
22 #define FALSE 0
23 #endif
24 #ifndef TRUE
25 #define TRUE 1
26 #endif
27
28 /*
29  * Packet type contexts, so that ssh2_pkt_type can correctly decode
30  * the ambiguous type numbers back into the correct type strings.
31  */
32 typedef enum {
33     SSH2_PKTCTX_NOKEX,
34     SSH2_PKTCTX_DHGROUP,
35     SSH2_PKTCTX_DHGEX,
36     SSH2_PKTCTX_ECDHKEX,
37     SSH2_PKTCTX_RSAKEX
38 } Pkt_KCtx;
39 typedef enum {
40     SSH2_PKTCTX_NOAUTH,
41     SSH2_PKTCTX_PUBLICKEY,
42     SSH2_PKTCTX_PASSWORD,
43     SSH2_PKTCTX_GSSAPI,
44     SSH2_PKTCTX_KBDINTER
45 } Pkt_ACtx;
46
47 static const char *const ssh2_disconnect_reasons[] = {
48     NULL,
49     "host not allowed to connect",
50     "protocol error",
51     "key exchange failed",
52     "host authentication failed",
53     "MAC error",
54     "compression error",
55     "service not available",
56     "protocol version not supported",
57     "host key not verifiable",
58     "connection lost",
59     "by application",
60     "too many connections",
61     "auth cancelled by user",
62     "no more auth methods available",
63     "illegal user name",
64 };
65
66 /*
67  * Various remote-bug flags.
68  */
69 #define BUG_CHOKES_ON_SSH1_IGNORE                 1
70 #define BUG_SSH2_HMAC                             2
71 #define BUG_NEEDS_SSH1_PLAIN_PASSWORD             4
72 #define BUG_CHOKES_ON_RSA                         8
73 #define BUG_SSH2_RSA_PADDING                     16
74 #define BUG_SSH2_DERIVEKEY                       32
75 #define BUG_SSH2_REKEY                           64
76 #define BUG_SSH2_PK_SESSIONID                   128
77 #define BUG_SSH2_MAXPKT                         256
78 #define BUG_CHOKES_ON_SSH2_IGNORE               512
79 #define BUG_CHOKES_ON_WINADJ                   1024
80 #define BUG_SENDS_LATE_REQUEST_REPLY           2048
81 #define BUG_SSH2_OLDGEX                        4096
82
83 #define DH_MIN_SIZE 1024
84 #define DH_MAX_SIZE 8192
85
86 /*
87  * Codes for terminal modes.
88  * Most of these are the same in SSH-1 and SSH-2.
89  * This list is derived from RFC 4254 and
90  * SSH-1 RFC-1.2.31.
91  */
92 static const struct ssh_ttymode {
93     const char* const mode;
94     int opcode;
95     enum { TTY_OP_CHAR, TTY_OP_BOOL } type;
96 } ssh_ttymodes[] = {
97     /* "V" prefix discarded for special characters relative to SSH specs */
98     { "INTR",         1, TTY_OP_CHAR },
99     { "QUIT",         2, TTY_OP_CHAR },
100     { "ERASE",        3, TTY_OP_CHAR },
101     { "KILL",         4, TTY_OP_CHAR },
102     { "EOF",          5, TTY_OP_CHAR },
103     { "EOL",          6, TTY_OP_CHAR },
104     { "EOL2",         7, TTY_OP_CHAR },
105     { "START",        8, TTY_OP_CHAR },
106     { "STOP",         9, TTY_OP_CHAR },
107     { "SUSP",        10, TTY_OP_CHAR },
108     { "DSUSP",       11, TTY_OP_CHAR },
109     { "REPRINT",     12, TTY_OP_CHAR },
110     { "WERASE",      13, TTY_OP_CHAR },
111     { "LNEXT",       14, TTY_OP_CHAR },
112     { "FLUSH",       15, TTY_OP_CHAR },
113     { "SWTCH",       16, TTY_OP_CHAR },
114     { "STATUS",      17, TTY_OP_CHAR },
115     { "DISCARD",     18, TTY_OP_CHAR },
116     { "IGNPAR",      30, TTY_OP_BOOL },
117     { "PARMRK",      31, TTY_OP_BOOL },
118     { "INPCK",       32, TTY_OP_BOOL },
119     { "ISTRIP",      33, TTY_OP_BOOL },
120     { "INLCR",       34, TTY_OP_BOOL },
121     { "IGNCR",       35, TTY_OP_BOOL },
122     { "ICRNL",       36, TTY_OP_BOOL },
123     { "IUCLC",       37, TTY_OP_BOOL },
124     { "IXON",        38, TTY_OP_BOOL },
125     { "IXANY",       39, TTY_OP_BOOL },
126     { "IXOFF",       40, TTY_OP_BOOL },
127     { "IMAXBEL",     41, TTY_OP_BOOL },
128     { "IUTF8",       42, TTY_OP_BOOL },
129     { "ISIG",        50, TTY_OP_BOOL },
130     { "ICANON",      51, TTY_OP_BOOL },
131     { "XCASE",       52, TTY_OP_BOOL },
132     { "ECHO",        53, TTY_OP_BOOL },
133     { "ECHOE",       54, TTY_OP_BOOL },
134     { "ECHOK",       55, TTY_OP_BOOL },
135     { "ECHONL",      56, TTY_OP_BOOL },
136     { "NOFLSH",      57, TTY_OP_BOOL },
137     { "TOSTOP",      58, TTY_OP_BOOL },
138     { "IEXTEN",      59, TTY_OP_BOOL },
139     { "ECHOCTL",     60, TTY_OP_BOOL },
140     { "ECHOKE",      61, TTY_OP_BOOL },
141     { "PENDIN",      62, TTY_OP_BOOL }, /* XXX is this a real mode? */
142     { "OPOST",       70, TTY_OP_BOOL },
143     { "OLCUC",       71, TTY_OP_BOOL },
144     { "ONLCR",       72, TTY_OP_BOOL },
145     { "OCRNL",       73, TTY_OP_BOOL },
146     { "ONOCR",       74, TTY_OP_BOOL },
147     { "ONLRET",      75, TTY_OP_BOOL },
148     { "CS7",         90, TTY_OP_BOOL },
149     { "CS8",         91, TTY_OP_BOOL },
150     { "PARENB",      92, TTY_OP_BOOL },
151     { "PARODD",      93, TTY_OP_BOOL }
152 };
153
154 /* Miscellaneous other tty-related constants. */
155 #define SSH_TTY_OP_END            0
156 /* The opcodes for ISPEED/OSPEED differ between SSH-1 and SSH-2. */
157 #define SSH1_TTY_OP_ISPEED      192
158 #define SSH1_TTY_OP_OSPEED      193
159 #define SSH2_TTY_OP_ISPEED      128
160 #define SSH2_TTY_OP_OSPEED      129
161
162 /* Helper functions for parsing tty-related config. */
163 static unsigned int ssh_tty_parse_specchar(char *s)
164 {
165     unsigned int ret;
166     if (*s) {
167         char *next = NULL;
168         ret = ctrlparse(s, &next);
169         if (!next) ret = s[0];
170     } else {
171         ret = 255; /* special value meaning "don't set" */
172     }
173     return ret;
174 }
175 static unsigned int ssh_tty_parse_boolean(char *s)
176 {
177     if (stricmp(s, "yes") == 0 ||
178         stricmp(s, "on") == 0 ||
179         stricmp(s, "true") == 0 ||
180         stricmp(s, "+") == 0)
181         return 1; /* true */
182     else if (stricmp(s, "no") == 0 ||
183              stricmp(s, "off") == 0 ||
184              stricmp(s, "false") == 0 ||
185              stricmp(s, "-") == 0)
186         return 0; /* false */
187     else
188         return (atoi(s) != 0);
189 }
190
191 #define translate(x) if (type == x) return #x
192 #define translatek(x,ctx) if (type == x && (pkt_kctx == ctx)) return #x
193 #define translatea(x,ctx) if (type == x && (pkt_actx == ctx)) return #x
194 static const char *ssh1_pkt_type(int type)
195 {
196     translate(SSH1_MSG_DISCONNECT);
197     translate(SSH1_SMSG_PUBLIC_KEY);
198     translate(SSH1_CMSG_SESSION_KEY);
199     translate(SSH1_CMSG_USER);
200     translate(SSH1_CMSG_AUTH_RSA);
201     translate(SSH1_SMSG_AUTH_RSA_CHALLENGE);
202     translate(SSH1_CMSG_AUTH_RSA_RESPONSE);
203     translate(SSH1_CMSG_AUTH_PASSWORD);
204     translate(SSH1_CMSG_REQUEST_PTY);
205     translate(SSH1_CMSG_WINDOW_SIZE);
206     translate(SSH1_CMSG_EXEC_SHELL);
207     translate(SSH1_CMSG_EXEC_CMD);
208     translate(SSH1_SMSG_SUCCESS);
209     translate(SSH1_SMSG_FAILURE);
210     translate(SSH1_CMSG_STDIN_DATA);
211     translate(SSH1_SMSG_STDOUT_DATA);
212     translate(SSH1_SMSG_STDERR_DATA);
213     translate(SSH1_CMSG_EOF);
214     translate(SSH1_SMSG_EXIT_STATUS);
215     translate(SSH1_MSG_CHANNEL_OPEN_CONFIRMATION);
216     translate(SSH1_MSG_CHANNEL_OPEN_FAILURE);
217     translate(SSH1_MSG_CHANNEL_DATA);
218     translate(SSH1_MSG_CHANNEL_CLOSE);
219     translate(SSH1_MSG_CHANNEL_CLOSE_CONFIRMATION);
220     translate(SSH1_SMSG_X11_OPEN);
221     translate(SSH1_CMSG_PORT_FORWARD_REQUEST);
222     translate(SSH1_MSG_PORT_OPEN);
223     translate(SSH1_CMSG_AGENT_REQUEST_FORWARDING);
224     translate(SSH1_SMSG_AGENT_OPEN);
225     translate(SSH1_MSG_IGNORE);
226     translate(SSH1_CMSG_EXIT_CONFIRMATION);
227     translate(SSH1_CMSG_X11_REQUEST_FORWARDING);
228     translate(SSH1_CMSG_AUTH_RHOSTS_RSA);
229     translate(SSH1_MSG_DEBUG);
230     translate(SSH1_CMSG_REQUEST_COMPRESSION);
231     translate(SSH1_CMSG_AUTH_TIS);
232     translate(SSH1_SMSG_AUTH_TIS_CHALLENGE);
233     translate(SSH1_CMSG_AUTH_TIS_RESPONSE);
234     translate(SSH1_CMSG_AUTH_CCARD);
235     translate(SSH1_SMSG_AUTH_CCARD_CHALLENGE);
236     translate(SSH1_CMSG_AUTH_CCARD_RESPONSE);
237     return "unknown";
238 }
239 static const char *ssh2_pkt_type(Pkt_KCtx pkt_kctx, Pkt_ACtx pkt_actx,
240                                  int type)
241 {
242     translatea(SSH2_MSG_USERAUTH_GSSAPI_RESPONSE,SSH2_PKTCTX_GSSAPI);
243     translatea(SSH2_MSG_USERAUTH_GSSAPI_TOKEN,SSH2_PKTCTX_GSSAPI);
244     translatea(SSH2_MSG_USERAUTH_GSSAPI_EXCHANGE_COMPLETE,SSH2_PKTCTX_GSSAPI);
245     translatea(SSH2_MSG_USERAUTH_GSSAPI_ERROR,SSH2_PKTCTX_GSSAPI);
246     translatea(SSH2_MSG_USERAUTH_GSSAPI_ERRTOK,SSH2_PKTCTX_GSSAPI);
247     translatea(SSH2_MSG_USERAUTH_GSSAPI_MIC, SSH2_PKTCTX_GSSAPI);
248     translate(SSH2_MSG_DISCONNECT);
249     translate(SSH2_MSG_IGNORE);
250     translate(SSH2_MSG_UNIMPLEMENTED);
251     translate(SSH2_MSG_DEBUG);
252     translate(SSH2_MSG_SERVICE_REQUEST);
253     translate(SSH2_MSG_SERVICE_ACCEPT);
254     translate(SSH2_MSG_KEXINIT);
255     translate(SSH2_MSG_NEWKEYS);
256     translatek(SSH2_MSG_KEXDH_INIT, SSH2_PKTCTX_DHGROUP);
257     translatek(SSH2_MSG_KEXDH_REPLY, SSH2_PKTCTX_DHGROUP);
258     translatek(SSH2_MSG_KEX_DH_GEX_REQUEST_OLD, SSH2_PKTCTX_DHGEX);
259     translatek(SSH2_MSG_KEX_DH_GEX_REQUEST, SSH2_PKTCTX_DHGEX);
260     translatek(SSH2_MSG_KEX_DH_GEX_GROUP, SSH2_PKTCTX_DHGEX);
261     translatek(SSH2_MSG_KEX_DH_GEX_INIT, SSH2_PKTCTX_DHGEX);
262     translatek(SSH2_MSG_KEX_DH_GEX_REPLY, SSH2_PKTCTX_DHGEX);
263     translatek(SSH2_MSG_KEXRSA_PUBKEY, SSH2_PKTCTX_RSAKEX);
264     translatek(SSH2_MSG_KEXRSA_SECRET, SSH2_PKTCTX_RSAKEX);
265     translatek(SSH2_MSG_KEXRSA_DONE, SSH2_PKTCTX_RSAKEX);
266     translatek(SSH2_MSG_KEX_ECDH_INIT, SSH2_PKTCTX_ECDHKEX);
267     translatek(SSH2_MSG_KEX_ECDH_REPLY, SSH2_PKTCTX_ECDHKEX);
268     translate(SSH2_MSG_USERAUTH_REQUEST);
269     translate(SSH2_MSG_USERAUTH_FAILURE);
270     translate(SSH2_MSG_USERAUTH_SUCCESS);
271     translate(SSH2_MSG_USERAUTH_BANNER);
272     translatea(SSH2_MSG_USERAUTH_PK_OK, SSH2_PKTCTX_PUBLICKEY);
273     translatea(SSH2_MSG_USERAUTH_PASSWD_CHANGEREQ, SSH2_PKTCTX_PASSWORD);
274     translatea(SSH2_MSG_USERAUTH_INFO_REQUEST, SSH2_PKTCTX_KBDINTER);
275     translatea(SSH2_MSG_USERAUTH_INFO_RESPONSE, SSH2_PKTCTX_KBDINTER);
276     translate(SSH2_MSG_GLOBAL_REQUEST);
277     translate(SSH2_MSG_REQUEST_SUCCESS);
278     translate(SSH2_MSG_REQUEST_FAILURE);
279     translate(SSH2_MSG_CHANNEL_OPEN);
280     translate(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION);
281     translate(SSH2_MSG_CHANNEL_OPEN_FAILURE);
282     translate(SSH2_MSG_CHANNEL_WINDOW_ADJUST);
283     translate(SSH2_MSG_CHANNEL_DATA);
284     translate(SSH2_MSG_CHANNEL_EXTENDED_DATA);
285     translate(SSH2_MSG_CHANNEL_EOF);
286     translate(SSH2_MSG_CHANNEL_CLOSE);
287     translate(SSH2_MSG_CHANNEL_REQUEST);
288     translate(SSH2_MSG_CHANNEL_SUCCESS);
289     translate(SSH2_MSG_CHANNEL_FAILURE);
290     return "unknown";
291 }
292 #undef translate
293 #undef translatec
294
295 /* Enumeration values for fields in SSH-1 packets */
296 enum {
297     PKT_END, PKT_INT, PKT_CHAR, PKT_DATA, PKT_STR, PKT_BIGNUM,
298 };
299
300 /*
301  * Coroutine mechanics for the sillier bits of the code. If these
302  * macros look impenetrable to you, you might find it helpful to
303  * read
304  * 
305  *   http://www.chiark.greenend.org.uk/~sgtatham/coroutines.html
306  * 
307  * which explains the theory behind these macros.
308  * 
309  * In particular, if you are getting `case expression not constant'
310  * errors when building with MS Visual Studio, this is because MS's
311  * Edit and Continue debugging feature causes their compiler to
312  * violate ANSI C. To disable Edit and Continue debugging:
313  * 
314  *  - right-click ssh.c in the FileView
315  *  - click Settings
316  *  - select the C/C++ tab and the General category
317  *  - under `Debug info:', select anything _other_ than `Program
318  *    Database for Edit and Continue'.
319  */
320 #define crBegin(v)      { int *crLine = &v; switch(v) { case 0:;
321 #define crBeginState    crBegin(s->crLine)
322 #define crStateP(t, v)                          \
323     struct t *s;                                \
324     if (!(v)) { s = (v) = snew(struct t); s->crLine = 0; }      \
325     s = (v);
326 #define crState(t)      crStateP(t, ssh->t)
327 #define crFinish(z)     } *crLine = 0; return (z); }
328 #define crFinishV       } *crLine = 0; return; }
329 #define crFinishFree(z) } sfree(s); return (z); }
330 #define crFinishFreeV   } sfree(s); return; }
331 #define crReturn(z)     \
332         do {\
333             *crLine =__LINE__; return (z); case __LINE__:;\
334         } while (0)
335 #define crReturnV       \
336         do {\
337             *crLine=__LINE__; return; case __LINE__:;\
338         } while (0)
339 #define crStop(z)       do{ *crLine = 0; return (z); }while(0)
340 #define crStopV         do{ *crLine = 0; return; }while(0)
341 #define crWaitUntil(c)  do { crReturn(0); } while (!(c))
342 #define crWaitUntilV(c) do { crReturnV; } while (!(c))
343
344 struct Packet;
345
346 static struct Packet *ssh1_pkt_init(int pkt_type);
347 static struct Packet *ssh2_pkt_init(int pkt_type);
348 static void ssh_pkt_ensure(struct Packet *, int length);
349 static void ssh_pkt_adddata(struct Packet *, const void *data, int len);
350 static void ssh_pkt_addbyte(struct Packet *, unsigned char value);
351 static void ssh2_pkt_addbool(struct Packet *, unsigned char value);
352 static void ssh_pkt_adduint32(struct Packet *, unsigned long value);
353 static void ssh_pkt_addstring_start(struct Packet *);
354 static void ssh_pkt_addstring_str(struct Packet *, const char *data);
355 static void ssh_pkt_addstring_data(struct Packet *, const char *data, int len);
356 static void ssh_pkt_addstring(struct Packet *, const char *data);
357 static unsigned char *ssh2_mpint_fmt(Bignum b, int *len);
358 static void ssh1_pkt_addmp(struct Packet *, Bignum b);
359 static void ssh2_pkt_addmp(struct Packet *, Bignum b);
360 static int ssh2_pkt_construct(Ssh, struct Packet *);
361 static void ssh2_pkt_send(Ssh, struct Packet *);
362 static void ssh2_pkt_send_noqueue(Ssh, struct Packet *);
363 static int do_ssh1_login(Ssh ssh, const unsigned char *in, int inlen,
364                          struct Packet *pktin);
365 static void do_ssh2_authconn(Ssh ssh, const unsigned char *in, int inlen,
366                              struct Packet *pktin);
367 static void ssh_channel_init(struct ssh_channel *c);
368 static struct ssh_channel *ssh_channel_msg(Ssh ssh, struct Packet *pktin);
369 static void ssh2_channel_check_close(struct ssh_channel *c);
370 static void ssh_channel_destroy(struct ssh_channel *c);
371 static void ssh_channel_unthrottle(struct ssh_channel *c, int bufsize);
372 static void ssh2_msg_something_unimplemented(Ssh ssh, struct Packet *pktin);
373
374 /*
375  * Buffer management constants. There are several of these for
376  * various different purposes:
377  * 
378  *  - SSH1_BUFFER_LIMIT is the amount of backlog that must build up
379  *    on a local data stream before we throttle the whole SSH
380  *    connection (in SSH-1 only). Throttling the whole connection is
381  *    pretty drastic so we set this high in the hope it won't
382  *    happen very often.
383  * 
384  *  - SSH_MAX_BACKLOG is the amount of backlog that must build up
385  *    on the SSH connection itself before we defensively throttle
386  *    _all_ local data streams. This is pretty drastic too (though
387  *    thankfully unlikely in SSH-2 since the window mechanism should
388  *    ensure that the server never has any need to throttle its end
389  *    of the connection), so we set this high as well.
390  * 
391  *  - OUR_V2_WINSIZE is the default window size we present on SSH-2
392  *    channels.
393  *
394  *  - OUR_V2_BIGWIN is the window size we advertise for the only
395  *    channel in a simple connection.  It must be <= INT_MAX.
396  *
397  *  - OUR_V2_MAXPKT is the official "maximum packet size" we send
398  *    to the remote side. This actually has nothing to do with the
399  *    size of the _packet_, but is instead a limit on the amount
400  *    of data we're willing to receive in a single SSH2 channel
401  *    data message.
402  *
403  *  - OUR_V2_PACKETLIMIT is actually the maximum size of SSH
404  *    _packet_ we're prepared to cope with.  It must be a multiple
405  *    of the cipher block size, and must be at least 35000.
406  */
407
408 #define SSH1_BUFFER_LIMIT 32768
409 #define SSH_MAX_BACKLOG 32768
410 #define OUR_V2_WINSIZE 16384
411 #define OUR_V2_BIGWIN 0x7fffffff
412 #define OUR_V2_MAXPKT 0x4000UL
413 #define OUR_V2_PACKETLIMIT 0x9000UL
414
415 struct ssh_signkey_with_user_pref_id {
416     const struct ssh_signkey *alg;
417     int id;
418 };
419 const static struct ssh_signkey_with_user_pref_id hostkey_algs[] = {
420     { &ssh_ecdsa_ed25519, HK_ED25519 },
421     { &ssh_ecdsa_nistp256, HK_ECDSA },
422     { &ssh_ecdsa_nistp384, HK_ECDSA },
423     { &ssh_ecdsa_nistp521, HK_ECDSA },
424     { &ssh_dss, HK_DSA },
425     { &ssh_rsa, HK_RSA },
426 };
427
428 const static struct ssh_mac *const macs[] = {
429     &ssh_hmac_sha256, &ssh_hmac_sha1, &ssh_hmac_sha1_96, &ssh_hmac_md5
430 };
431 const static struct ssh_mac *const buggymacs[] = {
432     &ssh_hmac_sha1_buggy, &ssh_hmac_sha1_96_buggy, &ssh_hmac_md5
433 };
434
435 static void *ssh_comp_none_init(void)
436 {
437     return NULL;
438 }
439 static void ssh_comp_none_cleanup(void *handle)
440 {
441 }
442 static int ssh_comp_none_block(void *handle, unsigned char *block, int len,
443                                unsigned char **outblock, int *outlen)
444 {
445     return 0;
446 }
447 static int ssh_comp_none_disable(void *handle)
448 {
449     return 0;
450 }
451 const static struct ssh_compress ssh_comp_none = {
452     "none", NULL,
453     ssh_comp_none_init, ssh_comp_none_cleanup, ssh_comp_none_block,
454     ssh_comp_none_init, ssh_comp_none_cleanup, ssh_comp_none_block,
455     ssh_comp_none_disable, NULL
456 };
457 extern const struct ssh_compress ssh_zlib;
458 const static struct ssh_compress *const compressions[] = {
459     &ssh_zlib, &ssh_comp_none
460 };
461
462 enum {                                 /* channel types */
463     CHAN_MAINSESSION,
464     CHAN_X11,
465     CHAN_AGENT,
466     CHAN_SOCKDATA,
467     /*
468      * CHAN_SHARING indicates a channel which is tracked here on
469      * behalf of a connection-sharing downstream. We do almost nothing
470      * with these channels ourselves: all messages relating to them
471      * get thrown straight to sshshare.c and passed on almost
472      * unmodified to downstream.
473      */
474     CHAN_SHARING,
475     /*
476      * CHAN_ZOMBIE is used to indicate a channel for which we've
477      * already destroyed the local data source: for instance, if a
478      * forwarded port experiences a socket error on the local side, we
479      * immediately destroy its local socket and turn the SSH channel
480      * into CHAN_ZOMBIE.
481      */
482     CHAN_ZOMBIE
483 };
484
485 typedef void (*handler_fn_t)(Ssh ssh, struct Packet *pktin);
486 typedef void (*chandler_fn_t)(Ssh ssh, struct Packet *pktin, void *ctx);
487 typedef void (*cchandler_fn_t)(struct ssh_channel *, struct Packet *, void *);
488
489 /*
490  * Each channel has a queue of outstanding CHANNEL_REQUESTS and their
491  * handlers.
492  */
493 struct outstanding_channel_request {
494     cchandler_fn_t handler;
495     void *ctx;
496     struct outstanding_channel_request *next;
497 };
498
499 /*
500  * 2-3-4 tree storing channels.
501  */
502 struct ssh_channel {
503     Ssh ssh;                           /* pointer back to main context */
504     unsigned remoteid, localid;
505     int type;
506     /* True if we opened this channel but server hasn't confirmed. */
507     int halfopen;
508     /*
509      * In SSH-1, this value contains four bits:
510      * 
511      *   1   We have sent SSH1_MSG_CHANNEL_CLOSE.
512      *   2   We have sent SSH1_MSG_CHANNEL_CLOSE_CONFIRMATION.
513      *   4   We have received SSH1_MSG_CHANNEL_CLOSE.
514      *   8   We have received SSH1_MSG_CHANNEL_CLOSE_CONFIRMATION.
515      * 
516      * A channel is completely finished with when all four bits are set.
517      *
518      * In SSH-2, the four bits mean:
519      *
520      *   1   We have sent SSH2_MSG_CHANNEL_EOF.
521      *   2   We have sent SSH2_MSG_CHANNEL_CLOSE.
522      *   4   We have received SSH2_MSG_CHANNEL_EOF.
523      *   8   We have received SSH2_MSG_CHANNEL_CLOSE.
524      *
525      * A channel is completely finished with when we have both sent
526      * and received CLOSE.
527      *
528      * The symbolic constants below use the SSH-2 terminology, which
529      * is a bit confusing in SSH-1, but we have to use _something_.
530      */
531 #define CLOSES_SENT_EOF    1
532 #define CLOSES_SENT_CLOSE  2
533 #define CLOSES_RCVD_EOF    4
534 #define CLOSES_RCVD_CLOSE  8
535     int closes;
536
537     /*
538      * This flag indicates that an EOF is pending on the outgoing side
539      * of the channel: that is, wherever we're getting the data for
540      * this channel has sent us some data followed by EOF. We can't
541      * actually send the EOF until we've finished sending the data, so
542      * we set this flag instead to remind us to do so once our buffer
543      * is clear.
544      */
545     int pending_eof;
546
547     /*
548      * True if this channel is causing the underlying connection to be
549      * throttled.
550      */
551     int throttling_conn;
552     union {
553         struct ssh2_data_channel {
554             bufchain outbuffer;
555             unsigned remwindow, remmaxpkt;
556             /* locwindow is signed so we can cope with excess data. */
557             int locwindow, locmaxwin;
558             /*
559              * remlocwin is the amount of local window that we think
560              * the remote end had available to it after it sent the
561              * last data packet or window adjust ack.
562              */
563             int remlocwin;
564             /*
565              * These store the list of channel requests that haven't
566              * been acked.
567              */
568             struct outstanding_channel_request *chanreq_head, *chanreq_tail;
569             enum { THROTTLED, UNTHROTTLING, UNTHROTTLED } throttle_state;
570         } v2;
571     } v;
572     union {
573         struct ssh_agent_channel {
574             unsigned char *message;
575             unsigned char msglen[4];
576             unsigned lensofar, totallen;
577             int outstanding_requests;
578         } a;
579         struct ssh_x11_channel {
580             struct X11Connection *xconn;
581             int initial;
582         } x11;
583         struct ssh_pfd_channel {
584             struct PortForwarding *pf;
585         } pfd;
586         struct ssh_sharing_channel {
587             void *ctx;
588         } sharing;
589     } u;
590 };
591
592 /*
593  * 2-3-4 tree storing remote->local port forwardings. SSH-1 and SSH-2
594  * use this structure in different ways, reflecting SSH-2's
595  * altogether saner approach to port forwarding.
596  * 
597  * In SSH-1, you arrange a remote forwarding by sending the server
598  * the remote port number, and the local destination host:port.
599  * When a connection comes in, the server sends you back that
600  * host:port pair, and you connect to it. This is a ready-made
601  * security hole if you're not on the ball: a malicious server
602  * could send you back _any_ host:port pair, so if you trustingly
603  * connect to the address it gives you then you've just opened the
604  * entire inside of your corporate network just by connecting
605  * through it to a dodgy SSH server. Hence, we must store a list of
606  * host:port pairs we _are_ trying to forward to, and reject a
607  * connection request from the server if it's not in the list.
608  * 
609  * In SSH-2, each side of the connection minds its own business and
610  * doesn't send unnecessary information to the other. You arrange a
611  * remote forwarding by sending the server just the remote port
612  * number. When a connection comes in, the server tells you which
613  * of its ports was connected to; and _you_ have to remember what
614  * local host:port pair went with that port number.
615  * 
616  * Hence, in SSH-1 this structure is indexed by destination
617  * host:port pair, whereas in SSH-2 it is indexed by source port.
618  */
619 struct ssh_portfwd; /* forward declaration */
620
621 struct ssh_rportfwd {
622     unsigned sport, dport;
623     char *shost, *dhost;
624     char *sportdesc;
625     void *share_ctx;
626     struct ssh_portfwd *pfrec;
627 };
628
629 static void free_rportfwd(struct ssh_rportfwd *pf)
630 {
631     if (pf) {
632         sfree(pf->sportdesc);
633         sfree(pf->shost);
634         sfree(pf->dhost);
635         sfree(pf);
636     }
637 }
638
639 /*
640  * Separately to the rportfwd tree (which is for looking up port
641  * open requests from the server), a tree of _these_ structures is
642  * used to keep track of all the currently open port forwardings,
643  * so that we can reconfigure in mid-session if the user requests
644  * it.
645  */
646 struct ssh_portfwd {
647     enum { DESTROY, KEEP, CREATE } status;
648     int type;
649     unsigned sport, dport;
650     char *saddr, *daddr;
651     char *sserv, *dserv;
652     struct ssh_rportfwd *remote;
653     int addressfamily;
654     struct PortListener *local;
655 };
656 #define free_portfwd(pf) ( \
657     ((pf) ? (sfree((pf)->saddr), sfree((pf)->daddr), \
658              sfree((pf)->sserv), sfree((pf)->dserv)) : (void)0 ), sfree(pf) )
659
660 struct Packet {
661     long length;            /* length of packet: see below */
662     long forcepad;          /* SSH-2: force padding to at least this length */
663     int type;               /* only used for incoming packets */
664     unsigned long sequence; /* SSH-2 incoming sequence number */
665     unsigned char *data;    /* allocated storage */
666     unsigned char *body;    /* offset of payload within `data' */
667     long savedpos;          /* dual-purpose saved packet position: see below */
668     long maxlen;            /* amount of storage allocated for `data' */
669     long encrypted_len;     /* for SSH-2 total-size counting */
670
671     /*
672      * A note on the 'length' and 'savedpos' fields above.
673      *
674      * Incoming packets are set up so that pkt->length is measured
675      * relative to pkt->body, which itself points to a few bytes after
676      * pkt->data (skipping some uninteresting header fields including
677      * the packet type code). The ssh_pkt_get* functions all expect
678      * this setup, and they also use pkt->savedpos to indicate how far
679      * through the packet being decoded they've got - and that, too,
680      * is an offset from pkt->body rather than pkt->data.
681      *
682      * During construction of an outgoing packet, however, pkt->length
683      * is measured relative to the base pointer pkt->data, and
684      * pkt->body is not really used for anything until the packet is
685      * ready for sending. In this mode, pkt->savedpos is reused as a
686      * temporary variable by the addstring functions, which write out
687      * a string length field and then keep going back and updating it
688      * as more data is appended to the subsequent string data field;
689      * pkt->savedpos stores the offset (again relative to pkt->data)
690      * of the start of the string data field.
691      */
692
693     /* Extra metadata used in SSH packet logging mode, allowing us to
694      * log in the packet header line that the packet came from a
695      * connection-sharing downstream and what if anything unusual was
696      * done to it. The additional_log_text field is expected to be a
697      * static string - it will not be freed. */
698     unsigned downstream_id;
699     const char *additional_log_text;
700 };
701
702 static void ssh1_protocol(Ssh ssh, const void *vin, int inlen,
703                           struct Packet *pktin);
704 static void ssh2_protocol(Ssh ssh, const void *vin, int inlen,
705                           struct Packet *pktin);
706 static void ssh2_bare_connection_protocol(Ssh ssh, const void *vin, int inlen,
707                                           struct Packet *pktin);
708 static void ssh1_protocol_setup(Ssh ssh);
709 static void ssh2_protocol_setup(Ssh ssh);
710 static void ssh2_bare_connection_protocol_setup(Ssh ssh);
711 static void ssh_size(void *handle, int width, int height);
712 static void ssh_special(void *handle, Telnet_Special);
713 static int ssh2_try_send(struct ssh_channel *c);
714 static int ssh_send_channel_data(struct ssh_channel *c,
715                                  const char *buf, int len);
716 static void ssh_throttle_all(Ssh ssh, int enable, int bufsize);
717 static void ssh2_set_window(struct ssh_channel *c, int newwin);
718 static int ssh_sendbuffer(void *handle);
719 static int ssh_do_close(Ssh ssh, int notify_exit);
720 static unsigned long ssh_pkt_getuint32(struct Packet *pkt);
721 static int ssh2_pkt_getbool(struct Packet *pkt);
722 static void ssh_pkt_getstring(struct Packet *pkt, char **p, int *length);
723 static void ssh2_timer(void *ctx, unsigned long now);
724 static void do_ssh2_transport(Ssh ssh, const void *vin, int inlen,
725                               struct Packet *pktin);
726 static void ssh2_msg_unexpected(Ssh ssh, struct Packet *pktin);
727
728 struct rdpkt1_state_tag {
729     long len, pad, biglen, to_read;
730     unsigned long realcrc, gotcrc;
731     unsigned char *p;
732     int i;
733     int chunk;
734     struct Packet *pktin;
735 };
736
737 struct rdpkt2_state_tag {
738     long len, pad, payload, packetlen, maclen;
739     int i;
740     int cipherblk;
741     unsigned long incoming_sequence;
742     struct Packet *pktin;
743 };
744
745 struct rdpkt2_bare_state_tag {
746     char length[4];
747     long packetlen;
748     int i;
749     unsigned long incoming_sequence;
750     struct Packet *pktin;
751 };
752
753 struct queued_handler;
754 struct queued_handler {
755     int msg1, msg2;
756     chandler_fn_t handler;
757     void *ctx;
758     struct queued_handler *next;
759 };
760
761 struct ssh_tag {
762     const struct plug_function_table *fn;
763     /* the above field _must_ be first in the structure */
764
765     char *v_c, *v_s;
766     void *exhash;
767
768     Socket s;
769
770     void *ldisc;
771     void *logctx;
772
773     unsigned char session_key[32];
774     int v1_compressing;
775     int v1_remote_protoflags;
776     int v1_local_protoflags;
777     int agentfwd_enabled;
778     int X11_fwd_enabled;
779     int remote_bugs;
780     const struct ssh_cipher *cipher;
781     void *v1_cipher_ctx;
782     void *crcda_ctx;
783     const struct ssh2_cipher *cscipher, *sccipher;
784     void *cs_cipher_ctx, *sc_cipher_ctx;
785     const struct ssh_mac *csmac, *scmac;
786     int csmac_etm, scmac_etm;
787     void *cs_mac_ctx, *sc_mac_ctx;
788     const struct ssh_compress *cscomp, *sccomp;
789     void *cs_comp_ctx, *sc_comp_ctx;
790     const struct ssh_kex *kex;
791     const struct ssh_signkey *hostkey;
792     char *hostkey_str; /* string representation, for easy checking in rekeys */
793     unsigned char v2_session_id[SSH2_KEX_MAX_HASH_LEN];
794     int v2_session_id_len;
795     void *kex_ctx;
796
797     int bare_connection;
798     int attempting_connshare;
799     void *connshare;
800
801     char *savedhost;
802     int savedport;
803     int send_ok;
804     int echoing, editing;
805
806     int session_started;
807     void *frontend;
808
809     int ospeed, ispeed;                /* temporaries */
810     int term_width, term_height;
811
812     tree234 *channels;                 /* indexed by local id */
813     struct ssh_channel *mainchan;      /* primary session channel */
814     int ncmode;                        /* is primary channel direct-tcpip? */
815     int exitcode;
816     int close_expected;
817     int clean_exit;
818
819     tree234 *rportfwds, *portfwds;
820
821     enum {
822         SSH_STATE_PREPACKET,
823         SSH_STATE_BEFORE_SIZE,
824         SSH_STATE_INTERMED,
825         SSH_STATE_SESSION,
826         SSH_STATE_CLOSED
827     } state;
828
829     int size_needed, eof_needed;
830     int sent_console_eof;
831     int got_pty;           /* affects EOF behaviour on main channel */
832
833     struct Packet **queue;
834     int queuelen, queuesize;
835     int queueing;
836     unsigned char *deferred_send_data;
837     int deferred_len, deferred_size;
838
839     /*
840      * Gross hack: pscp will try to start SFTP but fall back to
841      * scp1 if that fails. This variable is the means by which
842      * scp.c can reach into the SSH code and find out which one it
843      * got.
844      */
845     int fallback_cmd;
846
847     bufchain banner;    /* accumulates banners during do_ssh2_authconn */
848
849     Pkt_KCtx pkt_kctx;
850     Pkt_ACtx pkt_actx;
851
852     struct X11Display *x11disp;
853     struct X11FakeAuth *x11auth;
854     tree234 *x11authtree;
855
856     int version;
857     int conn_throttle_count;
858     int overall_bufsize;
859     int throttled_all;
860     int v1_stdout_throttling;
861     unsigned long v2_outgoing_sequence;
862
863     int ssh1_rdpkt_crstate;
864     int ssh2_rdpkt_crstate;
865     int ssh2_bare_rdpkt_crstate;
866     int ssh_gotdata_crstate;
867     int do_ssh1_connection_crstate;
868
869     void *do_ssh_init_state;
870     void *do_ssh1_login_state;
871     void *do_ssh2_transport_state;
872     void *do_ssh2_authconn_state;
873     void *do_ssh_connection_init_state;
874
875     struct rdpkt1_state_tag rdpkt1_state;
876     struct rdpkt2_state_tag rdpkt2_state;
877     struct rdpkt2_bare_state_tag rdpkt2_bare_state;
878
879     /* SSH-1 and SSH-2 use this for different things, but both use it */
880     int protocol_initial_phase_done;
881
882     void (*protocol) (Ssh ssh, const void *vin, int inlen,
883                       struct Packet *pkt);
884     struct Packet *(*s_rdpkt) (Ssh ssh, const unsigned char **data,
885                                int *datalen);
886     int (*do_ssh_init)(Ssh ssh, unsigned char c);
887
888     /*
889      * We maintain our own copy of a Conf structure here. That way,
890      * when we're passed a new one for reconfiguration, we can check
891      * the differences and potentially reconfigure port forwardings
892      * etc in mid-session.
893      */
894     Conf *conf;
895
896     /*
897      * Values cached out of conf so as to avoid the tree234 lookup
898      * cost every time they're used.
899      */
900     int logomitdata;
901
902     /*
903      * Dynamically allocated username string created during SSH
904      * login. Stored in here rather than in the coroutine state so
905      * that it'll be reliably freed if we shut down the SSH session
906      * at some unexpected moment.
907      */
908     char *username;
909
910     /*
911      * Used to transfer data back from async callbacks.
912      */
913     void *agent_response;
914     int agent_response_len;
915     int user_response;
916
917     /*
918      * The SSH connection can be set as `frozen', meaning we are
919      * not currently accepting incoming data from the network. This
920      * is slightly more serious than setting the _socket_ as
921      * frozen, because we may already have had data passed to us
922      * from the network which we need to delay processing until
923      * after the freeze is lifted, so we also need a bufchain to
924      * store that data.
925      */
926     int frozen;
927     bufchain queued_incoming_data;
928
929     /*
930      * Dispatch table for packet types that we may have to deal
931      * with at any time.
932      */
933     handler_fn_t packet_dispatch[256];
934
935     /*
936      * Queues of one-off handler functions for success/failure
937      * indications from a request.
938      */
939     struct queued_handler *qhead, *qtail;
940     handler_fn_t q_saved_handler1, q_saved_handler2;
941
942     /*
943      * This module deals with sending keepalives.
944      */
945     Pinger pinger;
946
947     /*
948      * Track incoming and outgoing data sizes and time, for
949      * size-based rekeys.
950      */
951     unsigned long incoming_data_size, outgoing_data_size, deferred_data_size;
952     unsigned long max_data_size;
953     int kex_in_progress;
954     unsigned long next_rekey, last_rekey;
955     const char *deferred_rekey_reason;
956
957     /*
958      * Fully qualified host name, which we need if doing GSSAPI.
959      */
960     char *fullhostname;
961
962 #ifndef NO_GSSAPI
963     /*
964      * GSSAPI libraries for this session.
965      */
966     struct ssh_gss_liblist *gsslibs;
967 #endif
968
969     /*
970      * The last list returned from get_specials.
971      */
972     struct telnet_special *specials;
973
974     /*
975      * List of host key algorithms for which we _don't_ have a stored
976      * host key. These are indices into the main hostkey_algs[] array
977      */
978     int uncert_hostkeys[lenof(hostkey_algs)];
979     int n_uncert_hostkeys;
980
981     /*
982      * Flag indicating that the current rekey is intended to finish
983      * with a newly cross-certified host key.
984      */
985     int cross_certifying;
986 };
987
988 static const char *ssh_pkt_type(Ssh ssh, int type)
989 {
990     if (ssh->version == 1)
991         return ssh1_pkt_type(type);
992     else
993         return ssh2_pkt_type(ssh->pkt_kctx, ssh->pkt_actx, type);
994 }
995
996 #define logevent(s) logevent(ssh->frontend, s)
997
998 /* logevent, only printf-formatted. */
999 static void logeventf(Ssh ssh, const char *fmt, ...)
1000 {
1001     va_list ap;
1002     char *buf;
1003
1004     va_start(ap, fmt);
1005     buf = dupvprintf(fmt, ap);
1006     va_end(ap);
1007     logevent(buf);
1008     sfree(buf);
1009 }
1010
1011 static void bomb_out(Ssh ssh, char *text)
1012 {
1013     ssh_do_close(ssh, FALSE);
1014     logevent(text);
1015     connection_fatal(ssh->frontend, "%s", text);
1016     sfree(text);
1017 }
1018
1019 #define bombout(msg) bomb_out(ssh, dupprintf msg)
1020
1021 /* Helper function for common bits of parsing ttymodes. */
1022 static void parse_ttymodes(Ssh ssh,
1023                            void (*do_mode)(void *data,
1024                                            const struct ssh_ttymode *mode,
1025                                            char *val),
1026                            void *data)
1027 {
1028     int i;
1029     const struct ssh_ttymode *mode;
1030     char *val;
1031     char default_val[2];
1032
1033     strcpy(default_val, "A");
1034
1035     for (i = 0; i < lenof(ssh_ttymodes); i++) {
1036         mode = ssh_ttymodes + i;
1037         val = conf_get_str_str_opt(ssh->conf, CONF_ttymodes, mode->mode);
1038         if (!val)
1039             val = default_val;
1040
1041         /*
1042          * val[0] is either 'V', indicating that an explicit value
1043          * follows it, or 'A' indicating that we should pass the
1044          * value through from the local environment via get_ttymode.
1045          */
1046         if (val[0] == 'A') {
1047             val = get_ttymode(ssh->frontend, mode->mode);
1048             if (val) {
1049                 do_mode(data, mode, val);
1050                 sfree(val);
1051             }
1052         } else
1053             do_mode(data, mode, val + 1);              /* skip the 'V' */
1054     }
1055 }
1056
1057 static int ssh_channelcmp(void *av, void *bv)
1058 {
1059     struct ssh_channel *a = (struct ssh_channel *) av;
1060     struct ssh_channel *b = (struct ssh_channel *) bv;
1061     if (a->localid < b->localid)
1062         return -1;
1063     if (a->localid > b->localid)
1064         return +1;
1065     return 0;
1066 }
1067 static int ssh_channelfind(void *av, void *bv)
1068 {
1069     unsigned *a = (unsigned *) av;
1070     struct ssh_channel *b = (struct ssh_channel *) bv;
1071     if (*a < b->localid)
1072         return -1;
1073     if (*a > b->localid)
1074         return +1;
1075     return 0;
1076 }
1077
1078 static int ssh_rportcmp_ssh1(void *av, void *bv)
1079 {
1080     struct ssh_rportfwd *a = (struct ssh_rportfwd *) av;
1081     struct ssh_rportfwd *b = (struct ssh_rportfwd *) bv;
1082     int i;
1083     if ( (i = strcmp(a->dhost, b->dhost)) != 0)
1084         return i < 0 ? -1 : +1;
1085     if (a->dport > b->dport)
1086         return +1;
1087     if (a->dport < b->dport)
1088         return -1;
1089     return 0;
1090 }
1091
1092 static int ssh_rportcmp_ssh2(void *av, void *bv)
1093 {
1094     struct ssh_rportfwd *a = (struct ssh_rportfwd *) av;
1095     struct ssh_rportfwd *b = (struct ssh_rportfwd *) bv;
1096     int i;
1097     if ( (i = strcmp(a->shost, b->shost)) != 0)
1098         return i < 0 ? -1 : +1;
1099     if (a->sport > b->sport)
1100         return +1;
1101     if (a->sport < b->sport)
1102         return -1;
1103     return 0;
1104 }
1105
1106 /*
1107  * Special form of strcmp which can cope with NULL inputs. NULL is
1108  * defined to sort before even the empty string.
1109  */
1110 static int nullstrcmp(const char *a, const char *b)
1111 {
1112     if (a == NULL && b == NULL)
1113         return 0;
1114     if (a == NULL)
1115         return -1;
1116     if (b == NULL)
1117         return +1;
1118     return strcmp(a, b);
1119 }
1120
1121 static int ssh_portcmp(void *av, void *bv)
1122 {
1123     struct ssh_portfwd *a = (struct ssh_portfwd *) av;
1124     struct ssh_portfwd *b = (struct ssh_portfwd *) bv;
1125     int i;
1126     if (a->type > b->type)
1127         return +1;
1128     if (a->type < b->type)
1129         return -1;
1130     if (a->addressfamily > b->addressfamily)
1131         return +1;
1132     if (a->addressfamily < b->addressfamily)
1133         return -1;
1134     if ( (i = nullstrcmp(a->saddr, b->saddr)) != 0)
1135         return i < 0 ? -1 : +1;
1136     if (a->sport > b->sport)
1137         return +1;
1138     if (a->sport < b->sport)
1139         return -1;
1140     if (a->type != 'D') {
1141         if ( (i = nullstrcmp(a->daddr, b->daddr)) != 0)
1142             return i < 0 ? -1 : +1;
1143         if (a->dport > b->dport)
1144             return +1;
1145         if (a->dport < b->dport)
1146             return -1;
1147     }
1148     return 0;
1149 }
1150
1151 static int alloc_channel_id(Ssh ssh)
1152 {
1153     const unsigned CHANNEL_NUMBER_OFFSET = 256;
1154     unsigned low, high, mid;
1155     int tsize;
1156     struct ssh_channel *c;
1157
1158     /*
1159      * First-fit allocation of channel numbers: always pick the
1160      * lowest unused one. To do this, binary-search using the
1161      * counted B-tree to find the largest channel ID which is in a
1162      * contiguous sequence from the beginning. (Precisely
1163      * everything in that sequence must have ID equal to its tree
1164      * index plus CHANNEL_NUMBER_OFFSET.)
1165      */
1166     tsize = count234(ssh->channels);
1167
1168     low = -1;
1169     high = tsize;
1170     while (high - low > 1) {
1171         mid = (high + low) / 2;
1172         c = index234(ssh->channels, mid);
1173         if (c->localid == mid + CHANNEL_NUMBER_OFFSET)
1174             low = mid;                 /* this one is fine */
1175         else
1176             high = mid;                /* this one is past it */
1177     }
1178     /*
1179      * Now low points to either -1, or the tree index of the
1180      * largest ID in the initial sequence.
1181      */
1182     {
1183         unsigned i = low + 1 + CHANNEL_NUMBER_OFFSET;
1184         assert(NULL == find234(ssh->channels, &i, ssh_channelfind));
1185     }
1186     return low + 1 + CHANNEL_NUMBER_OFFSET;
1187 }
1188
1189 static void c_write_stderr(int trusted, const char *buf, int len)
1190 {
1191     int i;
1192     for (i = 0; i < len; i++)
1193         if (buf[i] != '\r' && (trusted || buf[i] == '\n' || (buf[i] & 0x60)))
1194             fputc(buf[i], stderr);
1195 }
1196
1197 static void c_write(Ssh ssh, const char *buf, int len)
1198 {
1199     if (flags & FLAG_STDERR)
1200         c_write_stderr(1, buf, len);
1201     else
1202         from_backend(ssh->frontend, 1, buf, len);
1203 }
1204
1205 static void c_write_untrusted(Ssh ssh, const char *buf, int len)
1206 {
1207     if (flags & FLAG_STDERR)
1208         c_write_stderr(0, buf, len);
1209     else
1210         from_backend_untrusted(ssh->frontend, buf, len);
1211 }
1212
1213 static void c_write_str(Ssh ssh, const char *buf)
1214 {
1215     c_write(ssh, buf, strlen(buf));
1216 }
1217
1218 static void ssh_free_packet(struct Packet *pkt)
1219 {
1220     sfree(pkt->data);
1221     sfree(pkt);
1222 }
1223 static struct Packet *ssh_new_packet(void)
1224 {
1225     struct Packet *pkt = snew(struct Packet);
1226
1227     pkt->body = pkt->data = NULL;
1228     pkt->maxlen = 0;
1229
1230     return pkt;
1231 }
1232
1233 static void ssh1_log_incoming_packet(Ssh ssh, struct Packet *pkt)
1234 {
1235     int nblanks = 0;
1236     struct logblank_t blanks[4];
1237     char *str;
1238     int slen;
1239
1240     pkt->savedpos = 0;
1241
1242     if (ssh->logomitdata &&
1243         (pkt->type == SSH1_SMSG_STDOUT_DATA ||
1244          pkt->type == SSH1_SMSG_STDERR_DATA ||
1245          pkt->type == SSH1_MSG_CHANNEL_DATA)) {
1246         /* "Session data" packets - omit the data string. */
1247         if (pkt->type == SSH1_MSG_CHANNEL_DATA)
1248             ssh_pkt_getuint32(pkt);    /* skip channel id */
1249         blanks[nblanks].offset = pkt->savedpos + 4;
1250         blanks[nblanks].type = PKTLOG_OMIT;
1251         ssh_pkt_getstring(pkt, &str, &slen);
1252         if (str) {
1253             blanks[nblanks].len = slen;
1254             nblanks++;
1255         }
1256     }
1257     log_packet(ssh->logctx, PKT_INCOMING, pkt->type,
1258                ssh1_pkt_type(pkt->type),
1259                pkt->body, pkt->length, nblanks, blanks, NULL,
1260                0, NULL);
1261 }
1262
1263 static void ssh1_log_outgoing_packet(Ssh ssh, struct Packet *pkt)
1264 {
1265     int nblanks = 0;
1266     struct logblank_t blanks[4];
1267     char *str;
1268     int slen;
1269
1270     /*
1271      * For outgoing packets, pkt->length represents the length of the
1272      * whole packet starting at pkt->data (including some header), and
1273      * pkt->body refers to the point within that where the log-worthy
1274      * payload begins. However, incoming packets expect pkt->length to
1275      * represent only the payload length (that is, it's measured from
1276      * pkt->body not from pkt->data). Temporarily adjust our outgoing
1277      * packet to conform to the incoming-packet semantics, so that we
1278      * can analyse it with the ssh_pkt_get functions.
1279      */
1280     pkt->length -= (pkt->body - pkt->data);
1281     pkt->savedpos = 0;
1282
1283     if (ssh->logomitdata &&
1284         (pkt->type == SSH1_CMSG_STDIN_DATA ||
1285          pkt->type == SSH1_MSG_CHANNEL_DATA)) {
1286         /* "Session data" packets - omit the data string. */
1287         if (pkt->type == SSH1_MSG_CHANNEL_DATA)
1288             ssh_pkt_getuint32(pkt);    /* skip channel id */
1289         blanks[nblanks].offset = pkt->savedpos + 4;
1290         blanks[nblanks].type = PKTLOG_OMIT;
1291         ssh_pkt_getstring(pkt, &str, &slen);
1292         if (str) {
1293             blanks[nblanks].len = slen;
1294             nblanks++;
1295         }
1296     }
1297
1298     if ((pkt->type == SSH1_CMSG_AUTH_PASSWORD ||
1299          pkt->type == SSH1_CMSG_AUTH_TIS_RESPONSE ||
1300          pkt->type == SSH1_CMSG_AUTH_CCARD_RESPONSE) &&
1301         conf_get_int(ssh->conf, CONF_logomitpass)) {
1302         /* If this is a password or similar packet, blank the password(s). */
1303         blanks[nblanks].offset = 0;
1304         blanks[nblanks].len = pkt->length;
1305         blanks[nblanks].type = PKTLOG_BLANK;
1306         nblanks++;
1307     } else if (pkt->type == SSH1_CMSG_X11_REQUEST_FORWARDING &&
1308                conf_get_int(ssh->conf, CONF_logomitpass)) {
1309         /*
1310          * If this is an X forwarding request packet, blank the fake
1311          * auth data.
1312          *
1313          * Note that while we blank the X authentication data here, we
1314          * don't take any special action to blank the start of an X11
1315          * channel, so using MIT-MAGIC-COOKIE-1 and actually opening
1316          * an X connection without having session blanking enabled is
1317          * likely to leak your cookie into the log.
1318          */
1319         pkt->savedpos = 0;
1320         ssh_pkt_getstring(pkt, &str, &slen);
1321         blanks[nblanks].offset = pkt->savedpos;
1322         blanks[nblanks].type = PKTLOG_BLANK;
1323         ssh_pkt_getstring(pkt, &str, &slen);
1324         if (str) {
1325             blanks[nblanks].len = pkt->savedpos - blanks[nblanks].offset;
1326             nblanks++;
1327         }
1328     }
1329
1330     log_packet(ssh->logctx, PKT_OUTGOING, pkt->data[12],
1331                ssh1_pkt_type(pkt->data[12]),
1332                pkt->body, pkt->length,
1333                nblanks, blanks, NULL, 0, NULL);
1334
1335     /*
1336      * Undo the above adjustment of pkt->length, to put the packet
1337      * back in the state we found it.
1338      */
1339     pkt->length += (pkt->body - pkt->data);
1340 }
1341
1342 /*
1343  * Collect incoming data in the incoming packet buffer.
1344  * Decipher and verify the packet when it is completely read.
1345  * Drop SSH1_MSG_DEBUG and SSH1_MSG_IGNORE packets.
1346  * Update the *data and *datalen variables.
1347  * Return a Packet structure when a packet is completed.
1348  */
1349 static struct Packet *ssh1_rdpkt(Ssh ssh, const unsigned char **data,
1350                                  int *datalen)
1351 {
1352     struct rdpkt1_state_tag *st = &ssh->rdpkt1_state;
1353
1354     crBegin(ssh->ssh1_rdpkt_crstate);
1355
1356     st->pktin = ssh_new_packet();
1357
1358     st->pktin->type = 0;
1359     st->pktin->length = 0;
1360
1361     for (st->i = st->len = 0; st->i < 4; st->i++) {
1362         while ((*datalen) == 0)
1363             crReturn(NULL);
1364         st->len = (st->len << 8) + **data;
1365         (*data)++, (*datalen)--;
1366     }
1367
1368     st->pad = 8 - (st->len % 8);
1369     st->biglen = st->len + st->pad;
1370     st->pktin->length = st->len - 5;
1371
1372     if (st->biglen < 0) {
1373         bombout(("Extremely large packet length from server suggests"
1374                  " data stream corruption"));
1375         ssh_free_packet(st->pktin);
1376         crStop(NULL);
1377     }
1378
1379     st->pktin->maxlen = st->biglen;
1380     st->pktin->data = snewn(st->biglen + APIEXTRA, unsigned char);
1381
1382     st->to_read = st->biglen;
1383     st->p = st->pktin->data;
1384     while (st->to_read > 0) {
1385         st->chunk = st->to_read;
1386         while ((*datalen) == 0)
1387             crReturn(NULL);
1388         if (st->chunk > (*datalen))
1389             st->chunk = (*datalen);
1390         memcpy(st->p, *data, st->chunk);
1391         *data += st->chunk;
1392         *datalen -= st->chunk;
1393         st->p += st->chunk;
1394         st->to_read -= st->chunk;
1395     }
1396
1397     if (ssh->cipher && detect_attack(ssh->crcda_ctx, st->pktin->data,
1398                                      st->biglen, NULL)) {
1399         bombout(("Network attack (CRC compensation) detected!"));
1400         ssh_free_packet(st->pktin);
1401         crStop(NULL);
1402     }
1403
1404     if (ssh->cipher)
1405         ssh->cipher->decrypt(ssh->v1_cipher_ctx, st->pktin->data, st->biglen);
1406
1407     st->realcrc = crc32_compute(st->pktin->data, st->biglen - 4);
1408     st->gotcrc = GET_32BIT(st->pktin->data + st->biglen - 4);
1409     if (st->gotcrc != st->realcrc) {
1410         bombout(("Incorrect CRC received on packet"));
1411         ssh_free_packet(st->pktin);
1412         crStop(NULL);
1413     }
1414
1415     st->pktin->body = st->pktin->data + st->pad + 1;
1416
1417     if (ssh->v1_compressing) {
1418         unsigned char *decompblk;
1419         int decomplen;
1420         if (!zlib_decompress_block(ssh->sc_comp_ctx,
1421                                    st->pktin->body - 1, st->pktin->length + 1,
1422                                    &decompblk, &decomplen)) {
1423             bombout(("Zlib decompression encountered invalid data"));
1424             ssh_free_packet(st->pktin);
1425             crStop(NULL);
1426         }
1427
1428         if (st->pktin->maxlen < st->pad + decomplen) {
1429             st->pktin->maxlen = st->pad + decomplen;
1430             st->pktin->data = sresize(st->pktin->data,
1431                                       st->pktin->maxlen + APIEXTRA,
1432                                       unsigned char);
1433             st->pktin->body = st->pktin->data + st->pad + 1;
1434         }
1435
1436         memcpy(st->pktin->body - 1, decompblk, decomplen);
1437         sfree(decompblk);
1438         st->pktin->length = decomplen - 1;
1439     }
1440
1441     st->pktin->type = st->pktin->body[-1];
1442
1443     /*
1444      * Now pktin->body and pktin->length identify the semantic content
1445      * of the packet, excluding the initial type byte.
1446      */
1447
1448     if (ssh->logctx)
1449         ssh1_log_incoming_packet(ssh, st->pktin);
1450
1451     st->pktin->savedpos = 0;
1452
1453     crFinish(st->pktin);
1454 }
1455
1456 static void ssh2_log_incoming_packet(Ssh ssh, struct Packet *pkt)
1457 {
1458     int nblanks = 0;
1459     struct logblank_t blanks[4];
1460     char *str;
1461     int slen;
1462
1463     pkt->savedpos = 0;
1464
1465     if (ssh->logomitdata &&
1466         (pkt->type == SSH2_MSG_CHANNEL_DATA ||
1467          pkt->type == SSH2_MSG_CHANNEL_EXTENDED_DATA)) {
1468         /* "Session data" packets - omit the data string. */
1469         ssh_pkt_getuint32(pkt);    /* skip channel id */
1470         if (pkt->type == SSH2_MSG_CHANNEL_EXTENDED_DATA)
1471             ssh_pkt_getuint32(pkt);    /* skip extended data type */
1472         blanks[nblanks].offset = pkt->savedpos + 4;
1473         blanks[nblanks].type = PKTLOG_OMIT;
1474         ssh_pkt_getstring(pkt, &str, &slen);
1475         if (str) {
1476             blanks[nblanks].len = slen;
1477             nblanks++;
1478         }
1479     }
1480
1481     log_packet(ssh->logctx, PKT_INCOMING, pkt->type,
1482                ssh2_pkt_type(ssh->pkt_kctx, ssh->pkt_actx, pkt->type),
1483                pkt->body, pkt->length, nblanks, blanks, &pkt->sequence,
1484                0, NULL);
1485 }
1486
1487 static void ssh2_log_outgoing_packet(Ssh ssh, struct Packet *pkt)
1488 {
1489     int nblanks = 0;
1490     struct logblank_t blanks[4];
1491     char *str;
1492     int slen;
1493
1494     /*
1495      * For outgoing packets, pkt->length represents the length of the
1496      * whole packet starting at pkt->data (including some header), and
1497      * pkt->body refers to the point within that where the log-worthy
1498      * payload begins. However, incoming packets expect pkt->length to
1499      * represent only the payload length (that is, it's measured from
1500      * pkt->body not from pkt->data). Temporarily adjust our outgoing
1501      * packet to conform to the incoming-packet semantics, so that we
1502      * can analyse it with the ssh_pkt_get functions.
1503      */
1504     pkt->length -= (pkt->body - pkt->data);
1505     pkt->savedpos = 0;
1506
1507     if (ssh->logomitdata &&
1508         (pkt->type == SSH2_MSG_CHANNEL_DATA ||
1509          pkt->type == SSH2_MSG_CHANNEL_EXTENDED_DATA)) {
1510         /* "Session data" packets - omit the data string. */
1511         ssh_pkt_getuint32(pkt);    /* skip channel id */
1512         if (pkt->type == SSH2_MSG_CHANNEL_EXTENDED_DATA)
1513             ssh_pkt_getuint32(pkt);    /* skip extended data type */
1514         blanks[nblanks].offset = pkt->savedpos + 4;
1515         blanks[nblanks].type = PKTLOG_OMIT;
1516         ssh_pkt_getstring(pkt, &str, &slen);
1517         if (str) {
1518             blanks[nblanks].len = slen;
1519             nblanks++;
1520         }
1521     }
1522
1523     if (pkt->type == SSH2_MSG_USERAUTH_REQUEST &&
1524         conf_get_int(ssh->conf, CONF_logomitpass)) {
1525         /* If this is a password packet, blank the password(s). */
1526         pkt->savedpos = 0;
1527         ssh_pkt_getstring(pkt, &str, &slen);
1528         ssh_pkt_getstring(pkt, &str, &slen);
1529         ssh_pkt_getstring(pkt, &str, &slen);
1530         if (slen == 8 && !memcmp(str, "password", 8)) {
1531             ssh2_pkt_getbool(pkt);
1532             /* Blank the password field. */
1533             blanks[nblanks].offset = pkt->savedpos;
1534             blanks[nblanks].type = PKTLOG_BLANK;
1535             ssh_pkt_getstring(pkt, &str, &slen);
1536             if (str) {
1537                 blanks[nblanks].len = pkt->savedpos - blanks[nblanks].offset;
1538                 nblanks++;
1539                 /* If there's another password field beyond it (change of
1540                  * password), blank that too. */
1541                 ssh_pkt_getstring(pkt, &str, &slen);
1542                 if (str)
1543                     blanks[nblanks-1].len =
1544                         pkt->savedpos - blanks[nblanks].offset;
1545             }
1546         }
1547     } else if (ssh->pkt_actx == SSH2_PKTCTX_KBDINTER &&
1548                pkt->type == SSH2_MSG_USERAUTH_INFO_RESPONSE &&
1549                conf_get_int(ssh->conf, CONF_logomitpass)) {
1550         /* If this is a keyboard-interactive response packet, blank
1551          * the responses. */
1552         pkt->savedpos = 0;
1553         ssh_pkt_getuint32(pkt);
1554         blanks[nblanks].offset = pkt->savedpos;
1555         blanks[nblanks].type = PKTLOG_BLANK;
1556         while (1) {
1557             ssh_pkt_getstring(pkt, &str, &slen);
1558             if (!str)
1559                 break;
1560         }
1561         blanks[nblanks].len = pkt->savedpos - blanks[nblanks].offset;
1562         nblanks++;
1563     } else if (pkt->type == SSH2_MSG_CHANNEL_REQUEST &&
1564                conf_get_int(ssh->conf, CONF_logomitpass)) {
1565         /*
1566          * If this is an X forwarding request packet, blank the fake
1567          * auth data.
1568          *
1569          * Note that while we blank the X authentication data here, we
1570          * don't take any special action to blank the start of an X11
1571          * channel, so using MIT-MAGIC-COOKIE-1 and actually opening
1572          * an X connection without having session blanking enabled is
1573          * likely to leak your cookie into the log.
1574          */
1575         pkt->savedpos = 0;
1576         ssh_pkt_getuint32(pkt);
1577         ssh_pkt_getstring(pkt, &str, &slen);
1578         if (slen == 7 && !memcmp(str, "x11-req", 0)) {
1579             ssh2_pkt_getbool(pkt);
1580             ssh2_pkt_getbool(pkt);
1581             ssh_pkt_getstring(pkt, &str, &slen);
1582             blanks[nblanks].offset = pkt->savedpos;
1583             blanks[nblanks].type = PKTLOG_BLANK;
1584             ssh_pkt_getstring(pkt, &str, &slen);
1585             if (str) {
1586                 blanks[nblanks].len = pkt->savedpos - blanks[nblanks].offset;
1587                 nblanks++;
1588             }
1589         }
1590     }
1591
1592     log_packet(ssh->logctx, PKT_OUTGOING, pkt->data[5],
1593                ssh2_pkt_type(ssh->pkt_kctx, ssh->pkt_actx, pkt->data[5]),
1594                pkt->body, pkt->length, nblanks, blanks,
1595                &ssh->v2_outgoing_sequence,
1596                pkt->downstream_id, pkt->additional_log_text);
1597
1598     /*
1599      * Undo the above adjustment of pkt->length, to put the packet
1600      * back in the state we found it.
1601      */
1602     pkt->length += (pkt->body - pkt->data);
1603 }
1604
1605 static struct Packet *ssh2_rdpkt(Ssh ssh, const unsigned char **data,
1606                                  int *datalen)
1607 {
1608     struct rdpkt2_state_tag *st = &ssh->rdpkt2_state;
1609
1610     crBegin(ssh->ssh2_rdpkt_crstate);
1611
1612     st->pktin = ssh_new_packet();
1613
1614     st->pktin->type = 0;
1615     st->pktin->length = 0;
1616     if (ssh->sccipher)
1617         st->cipherblk = ssh->sccipher->blksize;
1618     else
1619         st->cipherblk = 8;
1620     if (st->cipherblk < 8)
1621         st->cipherblk = 8;
1622     st->maclen = ssh->scmac ? ssh->scmac->len : 0;
1623
1624     if (ssh->sccipher && (ssh->sccipher->flags & SSH_CIPHER_IS_CBC) &&
1625         ssh->scmac && !ssh->scmac_etm) {
1626         /*
1627          * When dealing with a CBC-mode cipher, we want to avoid the
1628          * possibility of an attacker's tweaking the ciphertext stream
1629          * so as to cause us to feed the same block to the block
1630          * cipher more than once and thus leak information
1631          * (VU#958563).  The way we do this is not to take any
1632          * decisions on the basis of anything we've decrypted until
1633          * we've verified it with a MAC.  That includes the packet
1634          * length, so we just read data and check the MAC repeatedly,
1635          * and when the MAC passes, see if the length we've got is
1636          * plausible.
1637          *
1638          * This defence is unnecessary in OpenSSH ETM mode, because
1639          * the whole point of ETM mode is that the attacker can't
1640          * tweak the ciphertext stream at all without the MAC
1641          * detecting it before we decrypt anything.
1642          */
1643
1644         /* May as well allocate the whole lot now. */
1645         st->pktin->data = snewn(OUR_V2_PACKETLIMIT + st->maclen + APIEXTRA,
1646                                 unsigned char);
1647
1648         /* Read an amount corresponding to the MAC. */
1649         for (st->i = 0; st->i < st->maclen; st->i++) {
1650             while ((*datalen) == 0)
1651                 crReturn(NULL);
1652             st->pktin->data[st->i] = *(*data)++;
1653             (*datalen)--;
1654         }
1655
1656         st->packetlen = 0;
1657         {
1658             unsigned char seq[4];
1659             ssh->scmac->start(ssh->sc_mac_ctx);
1660             PUT_32BIT(seq, st->incoming_sequence);
1661             ssh->scmac->bytes(ssh->sc_mac_ctx, seq, 4);
1662         }
1663
1664         for (;;) { /* Once around this loop per cipher block. */
1665             /* Read another cipher-block's worth, and tack it onto the end. */
1666             for (st->i = 0; st->i < st->cipherblk; st->i++) {
1667                 while ((*datalen) == 0)
1668                     crReturn(NULL);
1669                 st->pktin->data[st->packetlen+st->maclen+st->i] = *(*data)++;
1670                 (*datalen)--;
1671             }
1672             /* Decrypt one more block (a little further back in the stream). */
1673             ssh->sccipher->decrypt(ssh->sc_cipher_ctx,
1674                                    st->pktin->data + st->packetlen,
1675                                    st->cipherblk);
1676             /* Feed that block to the MAC. */
1677             ssh->scmac->bytes(ssh->sc_mac_ctx,
1678                               st->pktin->data + st->packetlen, st->cipherblk);
1679             st->packetlen += st->cipherblk;
1680             /* See if that gives us a valid packet. */
1681             if (ssh->scmac->verresult(ssh->sc_mac_ctx,
1682                                       st->pktin->data + st->packetlen) &&
1683                 ((st->len = toint(GET_32BIT(st->pktin->data))) ==
1684                  st->packetlen-4))
1685                     break;
1686             if (st->packetlen >= OUR_V2_PACKETLIMIT) {
1687                 bombout(("No valid incoming packet found"));
1688                 ssh_free_packet(st->pktin);
1689                 crStop(NULL);
1690             }       
1691         }
1692         st->pktin->maxlen = st->packetlen + st->maclen;
1693         st->pktin->data = sresize(st->pktin->data,
1694                                   st->pktin->maxlen + APIEXTRA,
1695                                   unsigned char);
1696     } else if (ssh->scmac && ssh->scmac_etm) {
1697         st->pktin->data = snewn(4 + APIEXTRA, unsigned char);
1698
1699         /*
1700          * OpenSSH encrypt-then-MAC mode: the packet length is
1701          * unencrypted, unless the cipher supports length encryption.
1702          */
1703         for (st->i = st->len = 0; st->i < 4; st->i++) {
1704             while ((*datalen) == 0)
1705                 crReturn(NULL);
1706             st->pktin->data[st->i] = *(*data)++;
1707             (*datalen)--;
1708         }
1709         /* Cipher supports length decryption, so do it */
1710         if (ssh->sccipher && (ssh->sccipher->flags & SSH_CIPHER_SEPARATE_LENGTH)) {
1711             /* Keep the packet the same though, so the MAC passes */
1712             unsigned char len[4];
1713             memcpy(len, st->pktin->data, 4);
1714             ssh->sccipher->decrypt_length(ssh->sc_cipher_ctx, len, 4, st->incoming_sequence);
1715             st->len = toint(GET_32BIT(len));
1716         } else {
1717             st->len = toint(GET_32BIT(st->pktin->data));
1718         }
1719
1720         /*
1721          * _Completely_ silly lengths should be stomped on before they
1722          * do us any more damage.
1723          */
1724         if (st->len < 0 || st->len > OUR_V2_PACKETLIMIT ||
1725             st->len % st->cipherblk != 0) {
1726             bombout(("Incoming packet length field was garbled"));
1727             ssh_free_packet(st->pktin);
1728             crStop(NULL);
1729         }
1730
1731         /*
1732          * So now we can work out the total packet length.
1733          */
1734         st->packetlen = st->len + 4;
1735
1736         /*
1737          * Allocate memory for the rest of the packet.
1738          */
1739         st->pktin->maxlen = st->packetlen + st->maclen;
1740         st->pktin->data = sresize(st->pktin->data,
1741                                   st->pktin->maxlen + APIEXTRA,
1742                                   unsigned char);
1743
1744         /*
1745          * Read the remainder of the packet.
1746          */
1747         for (st->i = 4; st->i < st->packetlen + st->maclen; st->i++) {
1748             while ((*datalen) == 0)
1749                 crReturn(NULL);
1750             st->pktin->data[st->i] = *(*data)++;
1751             (*datalen)--;
1752         }
1753
1754         /*
1755          * Check the MAC.
1756          */
1757         if (ssh->scmac
1758             && !ssh->scmac->verify(ssh->sc_mac_ctx, st->pktin->data,
1759                                    st->len + 4, st->incoming_sequence)) {
1760             bombout(("Incorrect MAC received on packet"));
1761             ssh_free_packet(st->pktin);
1762             crStop(NULL);
1763         }
1764
1765         /* Decrypt everything between the length field and the MAC. */
1766         if (ssh->sccipher)
1767             ssh->sccipher->decrypt(ssh->sc_cipher_ctx,
1768                                    st->pktin->data + 4,
1769                                    st->packetlen - 4);
1770     } else {
1771         st->pktin->data = snewn(st->cipherblk + APIEXTRA, unsigned char);
1772
1773         /*
1774          * Acquire and decrypt the first block of the packet. This will
1775          * contain the length and padding details.
1776          */
1777         for (st->i = st->len = 0; st->i < st->cipherblk; st->i++) {
1778             while ((*datalen) == 0)
1779                 crReturn(NULL);
1780             st->pktin->data[st->i] = *(*data)++;
1781             (*datalen)--;
1782         }
1783
1784         if (ssh->sccipher)
1785             ssh->sccipher->decrypt(ssh->sc_cipher_ctx,
1786                                    st->pktin->data, st->cipherblk);
1787
1788         /*
1789          * Now get the length figure.
1790          */
1791         st->len = toint(GET_32BIT(st->pktin->data));
1792
1793         /*
1794          * _Completely_ silly lengths should be stomped on before they
1795          * do us any more damage.
1796          */
1797         if (st->len < 0 || st->len > OUR_V2_PACKETLIMIT ||
1798             (st->len + 4) % st->cipherblk != 0) {
1799             bombout(("Incoming packet was garbled on decryption"));
1800             ssh_free_packet(st->pktin);
1801             crStop(NULL);
1802         }
1803
1804         /*
1805          * So now we can work out the total packet length.
1806          */
1807         st->packetlen = st->len + 4;
1808
1809         /*
1810          * Allocate memory for the rest of the packet.
1811          */
1812         st->pktin->maxlen = st->packetlen + st->maclen;
1813         st->pktin->data = sresize(st->pktin->data,
1814                                   st->pktin->maxlen + APIEXTRA,
1815                                   unsigned char);
1816
1817         /*
1818          * Read and decrypt the remainder of the packet.
1819          */
1820         for (st->i = st->cipherblk; st->i < st->packetlen + st->maclen;
1821              st->i++) {
1822             while ((*datalen) == 0)
1823                 crReturn(NULL);
1824             st->pktin->data[st->i] = *(*data)++;
1825             (*datalen)--;
1826         }
1827         /* Decrypt everything _except_ the MAC. */
1828         if (ssh->sccipher)
1829             ssh->sccipher->decrypt(ssh->sc_cipher_ctx,
1830                                    st->pktin->data + st->cipherblk,
1831                                    st->packetlen - st->cipherblk);
1832
1833         /*
1834          * Check the MAC.
1835          */
1836         if (ssh->scmac
1837             && !ssh->scmac->verify(ssh->sc_mac_ctx, st->pktin->data,
1838                                    st->len + 4, st->incoming_sequence)) {
1839             bombout(("Incorrect MAC received on packet"));
1840             ssh_free_packet(st->pktin);
1841             crStop(NULL);
1842         }
1843     }
1844     /* Get and sanity-check the amount of random padding. */
1845     st->pad = st->pktin->data[4];
1846     if (st->pad < 4 || st->len - st->pad < 1) {
1847         bombout(("Invalid padding length on received packet"));
1848         ssh_free_packet(st->pktin);
1849         crStop(NULL);
1850     }
1851     /*
1852      * This enables us to deduce the payload length.
1853      */
1854     st->payload = st->len - st->pad - 1;
1855
1856     st->pktin->length = st->payload + 5;
1857     st->pktin->encrypted_len = st->packetlen;
1858
1859     st->pktin->sequence = st->incoming_sequence++;
1860
1861     st->pktin->length = st->packetlen - st->pad;
1862     assert(st->pktin->length >= 0);
1863
1864     /*
1865      * Decompress packet payload.
1866      */
1867     {
1868         unsigned char *newpayload;
1869         int newlen;
1870         if (ssh->sccomp &&
1871             ssh->sccomp->decompress(ssh->sc_comp_ctx,
1872                                     st->pktin->data + 5, st->pktin->length - 5,
1873                                     &newpayload, &newlen)) {
1874             if (st->pktin->maxlen < newlen + 5) {
1875                 st->pktin->maxlen = newlen + 5;
1876                 st->pktin->data = sresize(st->pktin->data,
1877                                           st->pktin->maxlen + APIEXTRA,
1878                                           unsigned char);
1879             }
1880             st->pktin->length = 5 + newlen;
1881             memcpy(st->pktin->data + 5, newpayload, newlen);
1882             sfree(newpayload);
1883         }
1884     }
1885
1886     /*
1887      * RFC 4253 doesn't explicitly say that completely empty packets
1888      * with no type byte are forbidden, so treat them as deserving
1889      * an SSH_MSG_UNIMPLEMENTED.
1890      */
1891     if (st->pktin->length <= 5) { /* == 5 we hope, but robustness */
1892         ssh2_msg_something_unimplemented(ssh, st->pktin);
1893         crStop(NULL);
1894     }
1895     /*
1896      * pktin->body and pktin->length should identify the semantic
1897      * content of the packet, excluding the initial type byte.
1898      */
1899     st->pktin->type = st->pktin->data[5];
1900     st->pktin->body = st->pktin->data + 6;
1901     st->pktin->length -= 6;
1902     assert(st->pktin->length >= 0);    /* one last double-check */
1903
1904     if (ssh->logctx)
1905         ssh2_log_incoming_packet(ssh, st->pktin);
1906
1907     st->pktin->savedpos = 0;
1908
1909     crFinish(st->pktin);
1910 }
1911
1912 static struct Packet *ssh2_bare_connection_rdpkt(Ssh ssh,
1913                                                  const unsigned char **data,
1914                                                  int *datalen)
1915 {
1916     struct rdpkt2_bare_state_tag *st = &ssh->rdpkt2_bare_state;
1917
1918     crBegin(ssh->ssh2_bare_rdpkt_crstate);
1919
1920     /*
1921      * Read the packet length field.
1922      */
1923     for (st->i = 0; st->i < 4; st->i++) {
1924         while ((*datalen) == 0)
1925             crReturn(NULL);
1926         st->length[st->i] = *(*data)++;
1927         (*datalen)--;
1928     }
1929
1930     st->packetlen = toint(GET_32BIT_MSB_FIRST(st->length));
1931     if (st->packetlen <= 0 || st->packetlen >= OUR_V2_PACKETLIMIT) {
1932         bombout(("Invalid packet length received"));
1933         crStop(NULL);
1934     }
1935
1936     st->pktin = ssh_new_packet();
1937     st->pktin->data = snewn(st->packetlen, unsigned char);
1938
1939     st->pktin->encrypted_len = st->packetlen;
1940
1941     st->pktin->sequence = st->incoming_sequence++;
1942
1943     /*
1944      * Read the remainder of the packet.
1945      */
1946     for (st->i = 0; st->i < st->packetlen; st->i++) {
1947         while ((*datalen) == 0)
1948             crReturn(NULL);
1949         st->pktin->data[st->i] = *(*data)++;
1950         (*datalen)--;
1951     }
1952
1953     /*
1954      * pktin->body and pktin->length should identify the semantic
1955      * content of the packet, excluding the initial type byte.
1956      */
1957     st->pktin->type = st->pktin->data[0];
1958     st->pktin->body = st->pktin->data + 1;
1959     st->pktin->length = st->packetlen - 1;
1960
1961     /*
1962      * Log incoming packet, possibly omitting sensitive fields.
1963      */
1964     if (ssh->logctx)
1965         ssh2_log_incoming_packet(ssh, st->pktin);
1966
1967     st->pktin->savedpos = 0;
1968
1969     crFinish(st->pktin);
1970 }
1971
1972 static int s_wrpkt_prepare(Ssh ssh, struct Packet *pkt, int *offset_p)
1973 {
1974     int pad, biglen, i, pktoffs;
1975     unsigned long crc;
1976 #ifdef __SC__
1977     /*
1978      * XXX various versions of SC (including 8.8.4) screw up the
1979      * register allocation in this function and use the same register
1980      * (D6) for len and as a temporary, with predictable results.  The
1981      * following sledgehammer prevents this.
1982      */
1983     volatile
1984 #endif
1985     int len;
1986
1987     if (ssh->logctx)
1988         ssh1_log_outgoing_packet(ssh, pkt);
1989
1990     if (ssh->v1_compressing) {
1991         unsigned char *compblk;
1992         int complen;
1993         zlib_compress_block(ssh->cs_comp_ctx,
1994                             pkt->data + 12, pkt->length - 12,
1995                             &compblk, &complen);
1996         ssh_pkt_ensure(pkt, complen + 2);   /* just in case it's got bigger */
1997         memcpy(pkt->data + 12, compblk, complen);
1998         sfree(compblk);
1999         pkt->length = complen + 12;
2000     }
2001
2002     ssh_pkt_ensure(pkt, pkt->length + 4); /* space for CRC */
2003     pkt->length += 4;
2004     len = pkt->length - 4 - 8;  /* len(type+data+CRC) */
2005     pad = 8 - (len % 8);
2006     pktoffs = 8 - pad;
2007     biglen = len + pad;         /* len(padding+type+data+CRC) */
2008
2009     for (i = pktoffs; i < 4+8; i++)
2010         pkt->data[i] = random_byte();
2011     crc = crc32_compute(pkt->data + pktoffs + 4, biglen - 4); /* all ex len */
2012     PUT_32BIT(pkt->data + pktoffs + 4 + biglen - 4, crc);
2013     PUT_32BIT(pkt->data + pktoffs, len);
2014
2015     if (ssh->cipher)
2016         ssh->cipher->encrypt(ssh->v1_cipher_ctx,
2017                              pkt->data + pktoffs + 4, biglen);
2018
2019     if (offset_p) *offset_p = pktoffs;
2020     return biglen + 4;          /* len(length+padding+type+data+CRC) */
2021 }
2022
2023 static int s_write(Ssh ssh, void *data, int len)
2024 {
2025     if (ssh->logctx)
2026         log_packet(ssh->logctx, PKT_OUTGOING, -1, NULL, data, len,
2027                    0, NULL, NULL, 0, NULL);
2028     if (!ssh->s)
2029         return 0;
2030     return sk_write(ssh->s, (char *)data, len);
2031 }
2032
2033 static void s_wrpkt(Ssh ssh, struct Packet *pkt)
2034 {
2035     int len, backlog, offset;
2036     len = s_wrpkt_prepare(ssh, pkt, &offset);
2037     backlog = s_write(ssh, pkt->data + offset, len);
2038     if (backlog > SSH_MAX_BACKLOG)
2039         ssh_throttle_all(ssh, 1, backlog);
2040     ssh_free_packet(pkt);
2041 }
2042
2043 static void s_wrpkt_defer(Ssh ssh, struct Packet *pkt)
2044 {
2045     int len, offset;
2046     len = s_wrpkt_prepare(ssh, pkt, &offset);
2047     if (ssh->deferred_len + len > ssh->deferred_size) {
2048         ssh->deferred_size = ssh->deferred_len + len + 128;
2049         ssh->deferred_send_data = sresize(ssh->deferred_send_data,
2050                                           ssh->deferred_size,
2051                                           unsigned char);
2052     }
2053     memcpy(ssh->deferred_send_data + ssh->deferred_len,
2054            pkt->data + offset, len);
2055     ssh->deferred_len += len;
2056     ssh_free_packet(pkt);
2057 }
2058
2059 /*
2060  * Construct a SSH-1 packet with the specified contents.
2061  * (This all-at-once interface used to be the only one, but now SSH-1
2062  * packets can also be constructed incrementally.)
2063  */
2064 static struct Packet *construct_packet(Ssh ssh, int pkttype, va_list ap)
2065 {
2066     int argtype;
2067     Bignum bn;
2068     struct Packet *pkt;
2069
2070     pkt = ssh1_pkt_init(pkttype);
2071
2072     while ((argtype = va_arg(ap, int)) != PKT_END) {
2073         unsigned char *argp, argchar;
2074         char *sargp;
2075         unsigned long argint;
2076         int arglen;
2077         switch (argtype) {
2078           /* Actual fields in the packet */
2079           case PKT_INT:
2080             argint = va_arg(ap, int);
2081             ssh_pkt_adduint32(pkt, argint);
2082             break;
2083           case PKT_CHAR:
2084             argchar = (unsigned char) va_arg(ap, int);
2085             ssh_pkt_addbyte(pkt, argchar);
2086             break;
2087           case PKT_DATA:
2088             argp = va_arg(ap, unsigned char *);
2089             arglen = va_arg(ap, int);
2090             ssh_pkt_adddata(pkt, argp, arglen);
2091             break;
2092           case PKT_STR:
2093             sargp = va_arg(ap, char *);
2094             ssh_pkt_addstring(pkt, sargp);
2095             break;
2096           case PKT_BIGNUM:
2097             bn = va_arg(ap, Bignum);
2098             ssh1_pkt_addmp(pkt, bn);
2099             break;
2100         }
2101     }
2102
2103     return pkt;
2104 }
2105
2106 static void send_packet(Ssh ssh, int pkttype, ...)
2107 {
2108     struct Packet *pkt;
2109     va_list ap;
2110     va_start(ap, pkttype);
2111     pkt = construct_packet(ssh, pkttype, ap);
2112     va_end(ap);
2113     s_wrpkt(ssh, pkt);
2114 }
2115
2116 static void defer_packet(Ssh ssh, int pkttype, ...)
2117 {
2118     struct Packet *pkt;
2119     va_list ap;
2120     va_start(ap, pkttype);
2121     pkt = construct_packet(ssh, pkttype, ap);
2122     va_end(ap);
2123     s_wrpkt_defer(ssh, pkt);
2124 }
2125
2126 static int ssh_versioncmp(const char *a, const char *b)
2127 {
2128     char *ae, *be;
2129     unsigned long av, bv;
2130
2131     av = strtoul(a, &ae, 10);
2132     bv = strtoul(b, &be, 10);
2133     if (av != bv)
2134         return (av < bv ? -1 : +1);
2135     if (*ae == '.')
2136         ae++;
2137     if (*be == '.')
2138         be++;
2139     av = strtoul(ae, &ae, 10);
2140     bv = strtoul(be, &be, 10);
2141     if (av != bv)
2142         return (av < bv ? -1 : +1);
2143     return 0;
2144 }
2145
2146 /*
2147  * Utility routines for putting an SSH-protocol `string' and
2148  * `uint32' into a hash state.
2149  */
2150 static void hash_string(const struct ssh_hash *h, void *s, void *str, int len)
2151 {
2152     unsigned char lenblk[4];
2153     PUT_32BIT(lenblk, len);
2154     h->bytes(s, lenblk, 4);
2155     h->bytes(s, str, len);
2156 }
2157
2158 static void hash_uint32(const struct ssh_hash *h, void *s, unsigned i)
2159 {
2160     unsigned char intblk[4];
2161     PUT_32BIT(intblk, i);
2162     h->bytes(s, intblk, 4);
2163 }
2164
2165 /*
2166  * Packet construction functions. Mostly shared between SSH-1 and SSH-2.
2167  */
2168 static void ssh_pkt_ensure(struct Packet *pkt, int length)
2169 {
2170     if (pkt->maxlen < length) {
2171         unsigned char *body = pkt->body;
2172         int offset = body ? body - pkt->data : 0;
2173         pkt->maxlen = length + 256;
2174         pkt->data = sresize(pkt->data, pkt->maxlen + APIEXTRA, unsigned char);
2175         if (body) pkt->body = pkt->data + offset;
2176     }
2177 }
2178 static void ssh_pkt_adddata(struct Packet *pkt, const void *data, int len)
2179 {
2180     pkt->length += len;
2181     ssh_pkt_ensure(pkt, pkt->length);
2182     memcpy(pkt->data + pkt->length - len, data, len);
2183 }
2184 static void ssh_pkt_addbyte(struct Packet *pkt, unsigned char byte)
2185 {
2186     ssh_pkt_adddata(pkt, &byte, 1);
2187 }
2188 static void ssh2_pkt_addbool(struct Packet *pkt, unsigned char value)
2189 {
2190     ssh_pkt_adddata(pkt, &value, 1);
2191 }
2192 static void ssh_pkt_adduint32(struct Packet *pkt, unsigned long value)
2193 {
2194     unsigned char x[4];
2195     PUT_32BIT(x, value);
2196     ssh_pkt_adddata(pkt, x, 4);
2197 }
2198 static void ssh_pkt_addstring_start(struct Packet *pkt)
2199 {
2200     ssh_pkt_adduint32(pkt, 0);
2201     pkt->savedpos = pkt->length;
2202 }
2203 static void ssh_pkt_addstring_data(struct Packet *pkt, const char *data,
2204                                    int len)
2205 {
2206     ssh_pkt_adddata(pkt, data, len);
2207     PUT_32BIT(pkt->data + pkt->savedpos - 4, pkt->length - pkt->savedpos);
2208 }
2209 static void ssh_pkt_addstring_str(struct Packet *pkt, const char *data)
2210 {
2211   ssh_pkt_addstring_data(pkt, data, strlen(data));
2212 }
2213 static void ssh_pkt_addstring(struct Packet *pkt, const char *data)
2214 {
2215     ssh_pkt_addstring_start(pkt);
2216     ssh_pkt_addstring_str(pkt, data);
2217 }
2218 static void ssh1_pkt_addmp(struct Packet *pkt, Bignum b)
2219 {
2220     int len = ssh1_bignum_length(b);
2221     unsigned char *data = snewn(len, unsigned char);
2222     (void) ssh1_write_bignum(data, b);
2223     ssh_pkt_adddata(pkt, data, len);
2224     sfree(data);
2225 }
2226 static unsigned char *ssh2_mpint_fmt(Bignum b, int *len)
2227 {
2228     unsigned char *p;
2229     int i, n = (bignum_bitcount(b) + 7) / 8;
2230     p = snewn(n + 1, unsigned char);
2231     p[0] = 0;
2232     for (i = 1; i <= n; i++)
2233         p[i] = bignum_byte(b, n - i);
2234     i = 0;
2235     while (i <= n && p[i] == 0 && (p[i + 1] & 0x80) == 0)
2236         i++;
2237     memmove(p, p + i, n + 1 - i);
2238     *len = n + 1 - i;
2239     return p;
2240 }
2241 static void ssh2_pkt_addmp(struct Packet *pkt, Bignum b)
2242 {
2243     unsigned char *p;
2244     int len;
2245     p = ssh2_mpint_fmt(b, &len);
2246     ssh_pkt_addstring_start(pkt);
2247     ssh_pkt_addstring_data(pkt, (char *)p, len);
2248     sfree(p);
2249 }
2250
2251 static struct Packet *ssh1_pkt_init(int pkt_type)
2252 {
2253     struct Packet *pkt = ssh_new_packet();
2254     pkt->length = 4 + 8;            /* space for length + max padding */
2255     ssh_pkt_addbyte(pkt, pkt_type);
2256     pkt->body = pkt->data + pkt->length;
2257     pkt->type = pkt_type;
2258     pkt->downstream_id = 0;
2259     pkt->additional_log_text = NULL;
2260     return pkt;
2261 }
2262
2263 /* For legacy code (SSH-1 and -2 packet construction used to be separate) */
2264 #define ssh2_pkt_ensure(pkt, length) ssh_pkt_ensure(pkt, length)
2265 #define ssh2_pkt_adddata(pkt, data, len) ssh_pkt_adddata(pkt, data, len)
2266 #define ssh2_pkt_addbyte(pkt, byte) ssh_pkt_addbyte(pkt, byte)
2267 #define ssh2_pkt_adduint32(pkt, value) ssh_pkt_adduint32(pkt, value)
2268 #define ssh2_pkt_addstring_start(pkt) ssh_pkt_addstring_start(pkt)
2269 #define ssh2_pkt_addstring_str(pkt, data) ssh_pkt_addstring_str(pkt, data)
2270 #define ssh2_pkt_addstring_data(pkt, data, len) ssh_pkt_addstring_data(pkt, data, len)
2271 #define ssh2_pkt_addstring(pkt, data) ssh_pkt_addstring(pkt, data)
2272
2273 static struct Packet *ssh2_pkt_init(int pkt_type)
2274 {
2275     struct Packet *pkt = ssh_new_packet();
2276     pkt->length = 5; /* space for packet length + padding length */
2277     pkt->forcepad = 0;
2278     pkt->type = pkt_type;
2279     ssh_pkt_addbyte(pkt, (unsigned char) pkt_type);
2280     pkt->body = pkt->data + pkt->length; /* after packet type */
2281     pkt->downstream_id = 0;
2282     pkt->additional_log_text = NULL;
2283     return pkt;
2284 }
2285
2286 /*
2287  * Construct an SSH-2 final-form packet: compress it, encrypt it,
2288  * put the MAC on it. Final packet, ready to be sent, is stored in
2289  * pkt->data. Total length is returned.
2290  */
2291 static int ssh2_pkt_construct(Ssh ssh, struct Packet *pkt)
2292 {
2293     int cipherblk, maclen, padding, unencrypted_prefix, i;
2294
2295     if (ssh->logctx)
2296         ssh2_log_outgoing_packet(ssh, pkt);
2297
2298     if (ssh->bare_connection) {
2299         /*
2300          * Trivial packet construction for the bare connection
2301          * protocol.
2302          */
2303         PUT_32BIT(pkt->data + 1, pkt->length - 5);
2304         pkt->body = pkt->data + 1;
2305         ssh->v2_outgoing_sequence++;   /* only for diagnostics, really */
2306         return pkt->length - 1;
2307     }
2308
2309     /*
2310      * Compress packet payload.
2311      */
2312     {
2313         unsigned char *newpayload;
2314         int newlen;
2315         if (ssh->cscomp &&
2316             ssh->cscomp->compress(ssh->cs_comp_ctx, pkt->data + 5,
2317                                   pkt->length - 5,
2318                                   &newpayload, &newlen)) {
2319             pkt->length = 5;
2320             ssh2_pkt_adddata(pkt, newpayload, newlen);
2321             sfree(newpayload);
2322         }
2323     }
2324
2325     /*
2326      * Add padding. At least four bytes, and must also bring total
2327      * length (minus MAC) up to a multiple of the block size.
2328      * If pkt->forcepad is set, make sure the packet is at least that size
2329      * after padding.
2330      */
2331     cipherblk = ssh->cscipher ? ssh->cscipher->blksize : 8;  /* block size */
2332     cipherblk = cipherblk < 8 ? 8 : cipherblk;  /* or 8 if blksize < 8 */
2333     padding = 4;
2334     unencrypted_prefix = (ssh->csmac && ssh->csmac_etm) ? 4 : 0;
2335     if (pkt->length + padding < pkt->forcepad)
2336         padding = pkt->forcepad - pkt->length;
2337     padding +=
2338         (cipherblk - (pkt->length - unencrypted_prefix + padding) % cipherblk)
2339         % cipherblk;
2340     assert(padding <= 255);
2341     maclen = ssh->csmac ? ssh->csmac->len : 0;
2342     ssh2_pkt_ensure(pkt, pkt->length + padding + maclen);
2343     pkt->data[4] = padding;
2344     for (i = 0; i < padding; i++)
2345         pkt->data[pkt->length + i] = random_byte();
2346     PUT_32BIT(pkt->data, pkt->length + padding - 4);
2347
2348     /* Encrypt length if the scheme requires it */
2349     if (ssh->cscipher && (ssh->cscipher->flags & SSH_CIPHER_SEPARATE_LENGTH)) {
2350         ssh->cscipher->encrypt_length(ssh->cs_cipher_ctx, pkt->data, 4,
2351                                       ssh->v2_outgoing_sequence);
2352     }
2353
2354     if (ssh->csmac && ssh->csmac_etm) {
2355         /*
2356          * OpenSSH-defined encrypt-then-MAC protocol.
2357          */
2358         if (ssh->cscipher)
2359             ssh->cscipher->encrypt(ssh->cs_cipher_ctx,
2360                                    pkt->data + 4, pkt->length + padding - 4);
2361         ssh->csmac->generate(ssh->cs_mac_ctx, pkt->data,
2362                              pkt->length + padding,
2363                              ssh->v2_outgoing_sequence);
2364     } else {
2365         /*
2366          * SSH-2 standard protocol.
2367          */
2368         if (ssh->csmac)
2369             ssh->csmac->generate(ssh->cs_mac_ctx, pkt->data,
2370                                  pkt->length + padding,
2371                                  ssh->v2_outgoing_sequence);
2372         if (ssh->cscipher)
2373             ssh->cscipher->encrypt(ssh->cs_cipher_ctx,
2374                                    pkt->data, pkt->length + padding);
2375     }
2376
2377     ssh->v2_outgoing_sequence++;       /* whether or not we MACed */
2378     pkt->encrypted_len = pkt->length + padding;
2379
2380     /* Ready-to-send packet starts at pkt->data. We return length. */
2381     pkt->body = pkt->data;
2382     return pkt->length + padding + maclen;
2383 }
2384
2385 /*
2386  * Routines called from the main SSH code to send packets. There
2387  * are quite a few of these, because we have two separate
2388  * mechanisms for delaying the sending of packets:
2389  * 
2390  *  - In order to send an IGNORE message and a password message in
2391  *    a single fixed-length blob, we require the ability to
2392  *    concatenate the encrypted forms of those two packets _into_ a
2393  *    single blob and then pass it to our <network.h> transport
2394  *    layer in one go. Hence, there's a deferment mechanism which
2395  *    works after packet encryption.
2396  * 
2397  *  - In order to avoid sending any connection-layer messages
2398  *    during repeat key exchange, we have to queue up any such
2399  *    outgoing messages _before_ they are encrypted (and in
2400  *    particular before they're allocated sequence numbers), and
2401  *    then send them once we've finished.
2402  * 
2403  * I call these mechanisms `defer' and `queue' respectively, so as
2404  * to distinguish them reasonably easily.
2405  * 
2406  * The functions send_noqueue() and defer_noqueue() free the packet
2407  * structure they are passed. Every outgoing packet goes through
2408  * precisely one of these functions in its life; packets passed to
2409  * ssh2_pkt_send() or ssh2_pkt_defer() either go straight to one of
2410  * these or get queued, and then when the queue is later emptied
2411  * the packets are all passed to defer_noqueue().
2412  *
2413  * When using a CBC-mode cipher, it's necessary to ensure that an
2414  * attacker can't provide data to be encrypted using an IV that they
2415  * know.  We ensure this by prefixing each packet that might contain
2416  * user data with an SSH_MSG_IGNORE.  This is done using the deferral
2417  * mechanism, so in this case send_noqueue() ends up redirecting to
2418  * defer_noqueue().  If you don't like this inefficiency, don't use
2419  * CBC.
2420  */
2421
2422 static void ssh2_pkt_defer_noqueue(Ssh, struct Packet *, int);
2423 static void ssh_pkt_defersend(Ssh);
2424
2425 /*
2426  * Send an SSH-2 packet immediately, without queuing or deferring.
2427  */
2428 static void ssh2_pkt_send_noqueue(Ssh ssh, struct Packet *pkt)
2429 {
2430     int len;
2431     int backlog;
2432     if (ssh->cscipher != NULL && (ssh->cscipher->flags & SSH_CIPHER_IS_CBC)) {
2433         /* We need to send two packets, so use the deferral mechanism. */
2434         ssh2_pkt_defer_noqueue(ssh, pkt, FALSE);
2435         ssh_pkt_defersend(ssh);
2436         return;
2437     }
2438     len = ssh2_pkt_construct(ssh, pkt);
2439     backlog = s_write(ssh, pkt->body, len);
2440     if (backlog > SSH_MAX_BACKLOG)
2441         ssh_throttle_all(ssh, 1, backlog);
2442
2443     ssh->outgoing_data_size += pkt->encrypted_len;
2444     if (!ssh->kex_in_progress &&
2445         !ssh->bare_connection &&
2446         ssh->max_data_size != 0 &&
2447         ssh->outgoing_data_size > ssh->max_data_size)
2448         do_ssh2_transport(ssh, "too much data sent", -1, NULL);
2449
2450     ssh_free_packet(pkt);
2451 }
2452
2453 /*
2454  * Defer an SSH-2 packet.
2455  */
2456 static void ssh2_pkt_defer_noqueue(Ssh ssh, struct Packet *pkt, int noignore)
2457 {
2458     int len;
2459     if (ssh->cscipher != NULL && (ssh->cscipher->flags & SSH_CIPHER_IS_CBC) &&
2460         ssh->deferred_len == 0 && !noignore &&
2461         !(ssh->remote_bugs & BUG_CHOKES_ON_SSH2_IGNORE)) {
2462         /*
2463          * Interpose an SSH_MSG_IGNORE to ensure that user data don't
2464          * get encrypted with a known IV.
2465          */
2466         struct Packet *ipkt = ssh2_pkt_init(SSH2_MSG_IGNORE);
2467         ssh2_pkt_addstring_start(ipkt);
2468         ssh2_pkt_defer_noqueue(ssh, ipkt, TRUE);
2469     }
2470     len = ssh2_pkt_construct(ssh, pkt);
2471     if (ssh->deferred_len + len > ssh->deferred_size) {
2472         ssh->deferred_size = ssh->deferred_len + len + 128;
2473         ssh->deferred_send_data = sresize(ssh->deferred_send_data,
2474                                           ssh->deferred_size,
2475                                           unsigned char);
2476     }
2477     memcpy(ssh->deferred_send_data + ssh->deferred_len, pkt->body, len);
2478     ssh->deferred_len += len;
2479     ssh->deferred_data_size += pkt->encrypted_len;
2480     ssh_free_packet(pkt);
2481 }
2482
2483 /*
2484  * Queue an SSH-2 packet.
2485  */
2486 static void ssh2_pkt_queue(Ssh ssh, struct Packet *pkt)
2487 {
2488     assert(ssh->queueing);
2489
2490     if (ssh->queuelen >= ssh->queuesize) {
2491         ssh->queuesize = ssh->queuelen + 32;
2492         ssh->queue = sresize(ssh->queue, ssh->queuesize, struct Packet *);
2493     }
2494
2495     ssh->queue[ssh->queuelen++] = pkt;
2496 }
2497
2498 /*
2499  * Either queue or send a packet, depending on whether queueing is
2500  * set.
2501  */
2502 static void ssh2_pkt_send(Ssh ssh, struct Packet *pkt)
2503 {
2504     if (ssh->queueing)
2505         ssh2_pkt_queue(ssh, pkt);
2506     else
2507         ssh2_pkt_send_noqueue(ssh, pkt);
2508 }
2509
2510 /*
2511  * Either queue or defer a packet, depending on whether queueing is
2512  * set.
2513  */
2514 static void ssh2_pkt_defer(Ssh ssh, struct Packet *pkt)
2515 {
2516     if (ssh->queueing)
2517         ssh2_pkt_queue(ssh, pkt);
2518     else
2519         ssh2_pkt_defer_noqueue(ssh, pkt, FALSE);
2520 }
2521
2522 /*
2523  * Send the whole deferred data block constructed by
2524  * ssh2_pkt_defer() or SSH-1's defer_packet().
2525  * 
2526  * The expected use of the defer mechanism is that you call
2527  * ssh2_pkt_defer() a few times, then call ssh_pkt_defersend(). If
2528  * not currently queueing, this simply sets up deferred_send_data
2529  * and then sends it. If we _are_ currently queueing, the calls to
2530  * ssh2_pkt_defer() put the deferred packets on to the queue
2531  * instead, and therefore ssh_pkt_defersend() has no deferred data
2532  * to send. Hence, there's no need to make it conditional on
2533  * ssh->queueing.
2534  */
2535 static void ssh_pkt_defersend(Ssh ssh)
2536 {
2537     int backlog;
2538     backlog = s_write(ssh, ssh->deferred_send_data, ssh->deferred_len);
2539     ssh->deferred_len = ssh->deferred_size = 0;
2540     sfree(ssh->deferred_send_data);
2541     ssh->deferred_send_data = NULL;
2542     if (backlog > SSH_MAX_BACKLOG)
2543         ssh_throttle_all(ssh, 1, backlog);
2544
2545     if (ssh->version == 2) {
2546         ssh->outgoing_data_size += ssh->deferred_data_size;
2547         ssh->deferred_data_size = 0;
2548         if (!ssh->kex_in_progress &&
2549             !ssh->bare_connection &&
2550             ssh->max_data_size != 0 &&
2551             ssh->outgoing_data_size > ssh->max_data_size)
2552             do_ssh2_transport(ssh, "too much data sent", -1, NULL);
2553     }
2554 }
2555
2556 /*
2557  * Send a packet whose length needs to be disguised (typically
2558  * passwords or keyboard-interactive responses).
2559  */
2560 static void ssh2_pkt_send_with_padding(Ssh ssh, struct Packet *pkt,
2561                                        int padsize)
2562 {
2563 #if 0
2564     if (0) {
2565         /*
2566          * The simplest way to do this is to adjust the
2567          * variable-length padding field in the outgoing packet.
2568          * 
2569          * Currently compiled out, because some Cisco SSH servers
2570          * don't like excessively padded packets (bah, why's it
2571          * always Cisco?)
2572          */
2573         pkt->forcepad = padsize;
2574         ssh2_pkt_send(ssh, pkt);
2575     } else
2576 #endif
2577     {
2578         /*
2579          * If we can't do that, however, an alternative approach is
2580          * to use the pkt_defer mechanism to bundle the packet
2581          * tightly together with an SSH_MSG_IGNORE such that their
2582          * combined length is a constant. So first we construct the
2583          * final form of this packet and defer its sending.
2584          */
2585         ssh2_pkt_defer(ssh, pkt);
2586
2587         /*
2588          * Now construct an SSH_MSG_IGNORE which includes a string
2589          * that's an exact multiple of the cipher block size. (If
2590          * the cipher is NULL so that the block size is
2591          * unavailable, we don't do this trick at all, because we
2592          * gain nothing by it.)
2593          */
2594         if (ssh->cscipher &&
2595             !(ssh->remote_bugs & BUG_CHOKES_ON_SSH2_IGNORE)) {
2596             int stringlen, i;
2597
2598             stringlen = (256 - ssh->deferred_len);
2599             stringlen += ssh->cscipher->blksize - 1;
2600             stringlen -= (stringlen % ssh->cscipher->blksize);
2601             if (ssh->cscomp) {
2602                 /*
2603                  * Temporarily disable actual compression, so we
2604                  * can guarantee to get this string exactly the
2605                  * length we want it. The compression-disabling
2606                  * routine should return an integer indicating how
2607                  * many bytes we should adjust our string length
2608                  * by.
2609                  */
2610                 stringlen -=
2611                     ssh->cscomp->disable_compression(ssh->cs_comp_ctx);
2612             }
2613             pkt = ssh2_pkt_init(SSH2_MSG_IGNORE);
2614             ssh2_pkt_addstring_start(pkt);
2615             for (i = 0; i < stringlen; i++) {
2616                 char c = (char) random_byte();
2617                 ssh2_pkt_addstring_data(pkt, &c, 1);
2618             }
2619             ssh2_pkt_defer(ssh, pkt);
2620         }
2621         ssh_pkt_defersend(ssh);
2622     }
2623 }
2624
2625 /*
2626  * Send all queued SSH-2 packets. We send them by means of
2627  * ssh2_pkt_defer_noqueue(), in case they included a pair of
2628  * packets that needed to be lumped together.
2629  */
2630 static void ssh2_pkt_queuesend(Ssh ssh)
2631 {
2632     int i;
2633
2634     assert(!ssh->queueing);
2635
2636     for (i = 0; i < ssh->queuelen; i++)
2637         ssh2_pkt_defer_noqueue(ssh, ssh->queue[i], FALSE);
2638     ssh->queuelen = 0;
2639
2640     ssh_pkt_defersend(ssh);
2641 }
2642
2643 #if 0
2644 void bndebug(char *string, Bignum b)
2645 {
2646     unsigned char *p;
2647     int i, len;
2648     p = ssh2_mpint_fmt(b, &len);
2649     debug(("%s", string));
2650     for (i = 0; i < len; i++)
2651         debug((" %02x", p[i]));
2652     debug(("\n"));
2653     sfree(p);
2654 }
2655 #endif
2656
2657 static void hash_mpint(const struct ssh_hash *h, void *s, Bignum b)
2658 {
2659     unsigned char *p;
2660     int len;
2661     p = ssh2_mpint_fmt(b, &len);
2662     hash_string(h, s, p, len);
2663     sfree(p);
2664 }
2665
2666 /*
2667  * Packet decode functions for both SSH-1 and SSH-2.
2668  */
2669 static unsigned long ssh_pkt_getuint32(struct Packet *pkt)
2670 {
2671     unsigned long value;
2672     if (pkt->length - pkt->savedpos < 4)
2673         return 0;                      /* arrgh, no way to decline (FIXME?) */
2674     value = GET_32BIT(pkt->body + pkt->savedpos);
2675     pkt->savedpos += 4;
2676     return value;
2677 }
2678 static int ssh2_pkt_getbool(struct Packet *pkt)
2679 {
2680     unsigned long value;
2681     if (pkt->length - pkt->savedpos < 1)
2682         return 0;                      /* arrgh, no way to decline (FIXME?) */
2683     value = pkt->body[pkt->savedpos] != 0;
2684     pkt->savedpos++;
2685     return value;
2686 }
2687 static void ssh_pkt_getstring(struct Packet *pkt, char **p, int *length)
2688 {
2689     int len;
2690     *p = NULL;
2691     *length = 0;
2692     if (pkt->length - pkt->savedpos < 4)
2693         return;
2694     len = toint(GET_32BIT(pkt->body + pkt->savedpos));
2695     if (len < 0)
2696         return;
2697     *length = len;
2698     pkt->savedpos += 4;
2699     if (pkt->length - pkt->savedpos < *length)
2700         return;
2701     *p = (char *)(pkt->body + pkt->savedpos);
2702     pkt->savedpos += *length;
2703 }
2704 static void *ssh_pkt_getdata(struct Packet *pkt, int length)
2705 {
2706     if (pkt->length - pkt->savedpos < length)
2707         return NULL;
2708     pkt->savedpos += length;
2709     return pkt->body + (pkt->savedpos - length);
2710 }
2711 static int ssh1_pkt_getrsakey(struct Packet *pkt, struct RSAKey *key,
2712                               const unsigned char **keystr)
2713 {
2714     int j;
2715
2716     j = makekey(pkt->body + pkt->savedpos,
2717                 pkt->length - pkt->savedpos,
2718                 key, keystr, 0);
2719
2720     if (j < 0)
2721         return FALSE;
2722     
2723     pkt->savedpos += j;
2724     assert(pkt->savedpos < pkt->length);
2725
2726     return TRUE;
2727 }
2728 static Bignum ssh1_pkt_getmp(struct Packet *pkt)
2729 {
2730     int j;
2731     Bignum b;
2732
2733     j = ssh1_read_bignum(pkt->body + pkt->savedpos,
2734                          pkt->length - pkt->savedpos, &b);
2735
2736     if (j < 0)
2737         return NULL;
2738
2739     pkt->savedpos += j;
2740     return b;
2741 }
2742 static Bignum ssh2_pkt_getmp(struct Packet *pkt)
2743 {
2744     char *p;
2745     int length;
2746     Bignum b;
2747
2748     ssh_pkt_getstring(pkt, &p, &length);
2749     if (!p)
2750         return NULL;
2751     if (p[0] & 0x80)
2752         return NULL;
2753     b = bignum_from_bytes((unsigned char *)p, length);
2754     return b;
2755 }
2756
2757 /*
2758  * Helper function to add an SSH-2 signature blob to a packet.
2759  * Expects to be shown the public key blob as well as the signature
2760  * blob. Normally works just like ssh2_pkt_addstring, but will
2761  * fiddle with the signature packet if necessary for
2762  * BUG_SSH2_RSA_PADDING.
2763  */
2764 static void ssh2_add_sigblob(Ssh ssh, struct Packet *pkt,
2765                              void *pkblob_v, int pkblob_len,
2766                              void *sigblob_v, int sigblob_len)
2767 {
2768     unsigned char *pkblob = (unsigned char *)pkblob_v;
2769     unsigned char *sigblob = (unsigned char *)sigblob_v;
2770
2771     /* dmemdump(pkblob, pkblob_len); */
2772     /* dmemdump(sigblob, sigblob_len); */
2773
2774     /*
2775      * See if this is in fact an ssh-rsa signature and a buggy
2776      * server; otherwise we can just do this the easy way.
2777      */
2778     if ((ssh->remote_bugs & BUG_SSH2_RSA_PADDING) && pkblob_len > 4+7+4 &&
2779         (GET_32BIT(pkblob) == 7 && !memcmp(pkblob+4, "ssh-rsa", 7))) {
2780         int pos, len, siglen;
2781
2782         /*
2783          * Find the byte length of the modulus.
2784          */
2785
2786         pos = 4+7;                     /* skip over "ssh-rsa" */
2787         len = toint(GET_32BIT(pkblob+pos)); /* get length of exponent */
2788         if (len < 0 || len > pkblob_len - pos - 4)
2789             goto give_up;
2790         pos += 4 + len;                /* skip over exponent */
2791         if (pkblob_len - pos < 4)
2792             goto give_up;
2793         len = toint(GET_32BIT(pkblob+pos)); /* find length of modulus */
2794         if (len < 0 || len > pkblob_len - pos - 4)
2795             goto give_up;
2796         pos += 4;                      /* find modulus itself */
2797         while (len > 0 && pkblob[pos] == 0)
2798             len--, pos++;
2799         /* debug(("modulus length is %d\n", len)); */
2800
2801         /*
2802          * Now find the signature integer.
2803          */
2804         pos = 4+7;                     /* skip over "ssh-rsa" */
2805         if (sigblob_len < pos+4)
2806             goto give_up;
2807         siglen = toint(GET_32BIT(sigblob+pos));
2808         if (siglen != sigblob_len - pos - 4)
2809             goto give_up;
2810         /* debug(("signature length is %d\n", siglen)); */
2811
2812         if (len != siglen) {
2813             unsigned char newlen[4];
2814             ssh2_pkt_addstring_start(pkt);
2815             ssh2_pkt_addstring_data(pkt, (char *)sigblob, pos);
2816             /* dmemdump(sigblob, pos); */
2817             pos += 4;                  /* point to start of actual sig */
2818             PUT_32BIT(newlen, len);
2819             ssh2_pkt_addstring_data(pkt, (char *)newlen, 4);
2820             /* dmemdump(newlen, 4); */
2821             newlen[0] = 0;
2822             while (len-- > siglen) {
2823                 ssh2_pkt_addstring_data(pkt, (char *)newlen, 1);
2824                 /* dmemdump(newlen, 1); */
2825             }
2826             ssh2_pkt_addstring_data(pkt, (char *)(sigblob+pos), siglen);
2827             /* dmemdump(sigblob+pos, siglen); */
2828             return;
2829         }
2830
2831         /* Otherwise fall through and do it the easy way. We also come
2832          * here as a fallback if we discover above that the key blob
2833          * is misformatted in some way. */
2834       give_up:;
2835     }
2836
2837     ssh2_pkt_addstring_start(pkt);
2838     ssh2_pkt_addstring_data(pkt, (char *)sigblob, sigblob_len);
2839 }
2840
2841 /*
2842  * Examine the remote side's version string and compare it against
2843  * a list of known buggy implementations.
2844  */
2845 static void ssh_detect_bugs(Ssh ssh, char *vstring)
2846 {
2847     char *imp;                         /* pointer to implementation part */
2848     imp = vstring;
2849     imp += strcspn(imp, "-");
2850     if (*imp) imp++;
2851     imp += strcspn(imp, "-");
2852     if (*imp) imp++;
2853
2854     ssh->remote_bugs = 0;
2855
2856     /*
2857      * General notes on server version strings:
2858      *  - Not all servers reporting "Cisco-1.25" have all the bugs listed
2859      *    here -- in particular, we've heard of one that's perfectly happy
2860      *    with SSH1_MSG_IGNOREs -- but this string never seems to change,
2861      *    so we can't distinguish them.
2862      */
2863     if (conf_get_int(ssh->conf, CONF_sshbug_ignore1) == FORCE_ON ||
2864         (conf_get_int(ssh->conf, CONF_sshbug_ignore1) == AUTO &&
2865          (!strcmp(imp, "1.2.18") || !strcmp(imp, "1.2.19") ||
2866           !strcmp(imp, "1.2.20") || !strcmp(imp, "1.2.21") ||
2867           !strcmp(imp, "1.2.22") || !strcmp(imp, "Cisco-1.25") ||
2868           !strcmp(imp, "OSU_1.4alpha3") || !strcmp(imp, "OSU_1.5alpha4")))) {
2869         /*
2870          * These versions don't support SSH1_MSG_IGNORE, so we have
2871          * to use a different defence against password length
2872          * sniffing.
2873          */
2874         ssh->remote_bugs |= BUG_CHOKES_ON_SSH1_IGNORE;
2875         logevent("We believe remote version has SSH-1 ignore bug");
2876     }
2877
2878     if (conf_get_int(ssh->conf, CONF_sshbug_plainpw1) == FORCE_ON ||
2879         (conf_get_int(ssh->conf, CONF_sshbug_plainpw1) == AUTO &&
2880          (!strcmp(imp, "Cisco-1.25") || !strcmp(imp, "OSU_1.4alpha3")))) {
2881         /*
2882          * These versions need a plain password sent; they can't
2883          * handle having a null and a random length of data after
2884          * the password.
2885          */
2886         ssh->remote_bugs |= BUG_NEEDS_SSH1_PLAIN_PASSWORD;
2887         logevent("We believe remote version needs a plain SSH-1 password");
2888     }
2889
2890     if (conf_get_int(ssh->conf, CONF_sshbug_rsa1) == FORCE_ON ||
2891         (conf_get_int(ssh->conf, CONF_sshbug_rsa1) == AUTO &&
2892          (!strcmp(imp, "Cisco-1.25")))) {
2893         /*
2894          * These versions apparently have no clue whatever about
2895          * RSA authentication and will panic and die if they see
2896          * an AUTH_RSA message.
2897          */
2898         ssh->remote_bugs |= BUG_CHOKES_ON_RSA;
2899         logevent("We believe remote version can't handle SSH-1 RSA authentication");
2900     }
2901
2902     if (conf_get_int(ssh->conf, CONF_sshbug_hmac2) == FORCE_ON ||
2903         (conf_get_int(ssh->conf, CONF_sshbug_hmac2) == AUTO &&
2904          !wc_match("* VShell", imp) &&
2905          (wc_match("2.1.0*", imp) || wc_match("2.0.*", imp) ||
2906           wc_match("2.2.0*", imp) || wc_match("2.3.0*", imp) ||
2907           wc_match("2.1 *", imp)))) {
2908         /*
2909          * These versions have the HMAC bug.
2910          */
2911         ssh->remote_bugs |= BUG_SSH2_HMAC;
2912         logevent("We believe remote version has SSH-2 HMAC bug");
2913     }
2914
2915     if (conf_get_int(ssh->conf, CONF_sshbug_derivekey2) == FORCE_ON ||
2916         (conf_get_int(ssh->conf, CONF_sshbug_derivekey2) == AUTO &&
2917          !wc_match("* VShell", imp) &&
2918          (wc_match("2.0.0*", imp) || wc_match("2.0.10*", imp) ))) {
2919         /*
2920          * These versions have the key-derivation bug (failing to
2921          * include the literal shared secret in the hashes that
2922          * generate the keys).
2923          */
2924         ssh->remote_bugs |= BUG_SSH2_DERIVEKEY;
2925         logevent("We believe remote version has SSH-2 key-derivation bug");
2926     }
2927
2928     if (conf_get_int(ssh->conf, CONF_sshbug_rsapad2) == FORCE_ON ||
2929         (conf_get_int(ssh->conf, CONF_sshbug_rsapad2) == AUTO &&
2930          (wc_match("OpenSSH_2.[5-9]*", imp) ||
2931           wc_match("OpenSSH_3.[0-2]*", imp) ||
2932           wc_match("mod_sftp/0.[0-8]*", imp) ||
2933           wc_match("mod_sftp/0.9.[0-8]", imp)))) {
2934         /*
2935          * These versions have the SSH-2 RSA padding bug.
2936          */
2937         ssh->remote_bugs |= BUG_SSH2_RSA_PADDING;
2938         logevent("We believe remote version has SSH-2 RSA padding bug");
2939     }
2940
2941     if (conf_get_int(ssh->conf, CONF_sshbug_pksessid2) == FORCE_ON ||
2942         (conf_get_int(ssh->conf, CONF_sshbug_pksessid2) == AUTO &&
2943          wc_match("OpenSSH_2.[0-2]*", imp))) {
2944         /*
2945          * These versions have the SSH-2 session-ID bug in
2946          * public-key authentication.
2947          */
2948         ssh->remote_bugs |= BUG_SSH2_PK_SESSIONID;
2949         logevent("We believe remote version has SSH-2 public-key-session-ID bug");
2950     }
2951
2952     if (conf_get_int(ssh->conf, CONF_sshbug_rekey2) == FORCE_ON ||
2953         (conf_get_int(ssh->conf, CONF_sshbug_rekey2) == AUTO &&
2954          (wc_match("DigiSSH_2.0", imp) ||
2955           wc_match("OpenSSH_2.[0-4]*", imp) ||
2956           wc_match("OpenSSH_2.5.[0-3]*", imp) ||
2957           wc_match("Sun_SSH_1.0", imp) ||
2958           wc_match("Sun_SSH_1.0.1", imp) ||
2959           /* All versions <= 1.2.6 (they changed their format in 1.2.7) */
2960           wc_match("WeOnlyDo-*", imp)))) {
2961         /*
2962          * These versions have the SSH-2 rekey bug.
2963          */
2964         ssh->remote_bugs |= BUG_SSH2_REKEY;
2965         logevent("We believe remote version has SSH-2 rekey bug");
2966     }
2967
2968     if (conf_get_int(ssh->conf, CONF_sshbug_maxpkt2) == FORCE_ON ||
2969         (conf_get_int(ssh->conf, CONF_sshbug_maxpkt2) == AUTO &&
2970          (wc_match("1.36_sshlib GlobalSCAPE", imp) ||
2971           wc_match("1.36 sshlib: GlobalScape", imp)))) {
2972         /*
2973          * This version ignores our makpkt and needs to be throttled.
2974          */
2975         ssh->remote_bugs |= BUG_SSH2_MAXPKT;
2976         logevent("We believe remote version ignores SSH-2 maximum packet size");
2977     }
2978
2979     if (conf_get_int(ssh->conf, CONF_sshbug_ignore2) == FORCE_ON) {
2980         /*
2981          * Servers that don't support SSH2_MSG_IGNORE. Currently,
2982          * none detected automatically.
2983          */
2984         ssh->remote_bugs |= BUG_CHOKES_ON_SSH2_IGNORE;
2985         logevent("We believe remote version has SSH-2 ignore bug");
2986     }
2987
2988     if (conf_get_int(ssh->conf, CONF_sshbug_oldgex2) == FORCE_ON ||
2989         (conf_get_int(ssh->conf, CONF_sshbug_oldgex2) == AUTO &&
2990          (wc_match("OpenSSH_2.[235]*", imp)))) {
2991         /*
2992          * These versions only support the original (pre-RFC4419)
2993          * SSH-2 GEX request, and disconnect with a protocol error if
2994          * we use the newer version.
2995          */
2996         ssh->remote_bugs |= BUG_SSH2_OLDGEX;
2997         logevent("We believe remote version has outdated SSH-2 GEX");
2998     }
2999
3000     if (conf_get_int(ssh->conf, CONF_sshbug_winadj) == FORCE_ON) {
3001         /*
3002          * Servers that don't support our winadj request for one
3003          * reason or another. Currently, none detected automatically.
3004          */
3005         ssh->remote_bugs |= BUG_CHOKES_ON_WINADJ;
3006         logevent("We believe remote version has winadj bug");
3007     }
3008
3009     if (conf_get_int(ssh->conf, CONF_sshbug_chanreq) == FORCE_ON ||
3010         (conf_get_int(ssh->conf, CONF_sshbug_chanreq) == AUTO &&
3011          (wc_match("OpenSSH_[2-5].*", imp) ||
3012           wc_match("OpenSSH_6.[0-6]*", imp) ||
3013           wc_match("dropbear_0.[2-4][0-9]*", imp) ||
3014           wc_match("dropbear_0.5[01]*", imp)))) {
3015         /*
3016          * These versions have the SSH-2 channel request bug.
3017          * OpenSSH 6.7 and above do not:
3018          * https://bugzilla.mindrot.org/show_bug.cgi?id=1818
3019          * dropbear_0.52 and above do not:
3020          * https://secure.ucc.asn.au/hg/dropbear/rev/cd02449b709c
3021          */
3022         ssh->remote_bugs |= BUG_SENDS_LATE_REQUEST_REPLY;
3023         logevent("We believe remote version has SSH-2 channel request bug");
3024     }
3025 }
3026
3027 /*
3028  * The `software version' part of an SSH version string is required
3029  * to contain no spaces or minus signs.
3030  */
3031 static void ssh_fix_verstring(char *str)
3032 {
3033     /* Eat "<protoversion>-". */
3034     while (*str && *str != '-') str++;
3035     assert(*str == '-'); str++;
3036
3037     /* Convert minus signs and spaces in the remaining string into
3038      * underscores. */
3039     while (*str) {
3040         if (*str == '-' || *str == ' ')
3041             *str = '_';
3042         str++;
3043     }
3044 }
3045
3046 /*
3047  * Send an appropriate SSH version string.
3048  */
3049 static void ssh_send_verstring(Ssh ssh, const char *protoname, char *svers)
3050 {
3051     char *verstring;
3052
3053     if (ssh->version == 2) {
3054         /*
3055          * Construct a v2 version string.
3056          */
3057         verstring = dupprintf("%s2.0-%s\015\012", protoname, sshver);
3058     } else {
3059         /*
3060          * Construct a v1 version string.
3061          */
3062         assert(!strcmp(protoname, "SSH-")); /* no v1 bare connection protocol */
3063         verstring = dupprintf("SSH-%s-%s\012",
3064                               (ssh_versioncmp(svers, "1.5") <= 0 ?
3065                                svers : "1.5"),
3066                               sshver);
3067     }
3068
3069     ssh_fix_verstring(verstring + strlen(protoname));
3070 #ifdef FUZZING
3071     /* FUZZING make PuTTY insecure, so make live use difficult. */
3072     verstring[0] = 'I';
3073 #endif
3074
3075     if (ssh->version == 2) {
3076         size_t len;
3077         /*
3078          * Record our version string.
3079          */
3080         len = strcspn(verstring, "\015\012");
3081         ssh->v_c = snewn(len + 1, char);
3082         memcpy(ssh->v_c, verstring, len);
3083         ssh->v_c[len] = 0;
3084     }
3085
3086     logeventf(ssh, "We claim version: %.*s",
3087               strcspn(verstring, "\015\012"), verstring);
3088     s_write(ssh, verstring, strlen(verstring));
3089     sfree(verstring);
3090 }
3091
3092 static int do_ssh_init(Ssh ssh, unsigned char c)
3093 {
3094     static const char protoname[] = "SSH-";
3095
3096     struct do_ssh_init_state {
3097         int crLine;
3098         int vslen;
3099         char version[10];
3100         char *vstring;
3101         int vstrsize;
3102         int i;
3103         int proto1, proto2;
3104     };
3105     crState(do_ssh_init_state);
3106     
3107     crBeginState;
3108
3109     /* Search for a line beginning with the protocol name prefix in
3110      * the input. */
3111     for (;;) {
3112         for (s->i = 0; protoname[s->i]; s->i++) {
3113             if ((char)c != protoname[s->i]) goto no;
3114             crReturn(1);
3115         }
3116         break;
3117       no:
3118         while (c != '\012')
3119             crReturn(1);
3120         crReturn(1);
3121     }
3122
3123     ssh->session_started = TRUE;
3124
3125     s->vstrsize = sizeof(protoname) + 16;
3126     s->vstring = snewn(s->vstrsize, char);
3127     strcpy(s->vstring, protoname);
3128     s->vslen = strlen(protoname);
3129     s->i = 0;
3130     while (1) {
3131         if (s->vslen >= s->vstrsize - 1) {
3132             s->vstrsize += 16;
3133             s->vstring = sresize(s->vstring, s->vstrsize, char);
3134         }
3135         s->vstring[s->vslen++] = c;
3136         if (s->i >= 0) {
3137             if (c == '-') {
3138                 s->version[s->i] = '\0';
3139                 s->i = -1;
3140             } else if (s->i < sizeof(s->version) - 1)
3141                 s->version[s->i++] = c;
3142         } else if (c == '\012')
3143             break;
3144         crReturn(1);                   /* get another char */
3145     }
3146
3147     ssh->agentfwd_enabled = FALSE;
3148     ssh->rdpkt2_state.incoming_sequence = 0;
3149
3150     s->vstring[s->vslen] = 0;
3151     s->vstring[strcspn(s->vstring, "\015\012")] = '\0';/* remove EOL chars */
3152     logeventf(ssh, "Server version: %s", s->vstring);
3153     ssh_detect_bugs(ssh, s->vstring);
3154
3155     /*
3156      * Decide which SSH protocol version to support.
3157      */
3158
3159     /* Anything strictly below "2.0" means protocol 1 is supported. */
3160     s->proto1 = ssh_versioncmp(s->version, "2.0") < 0;
3161     /* Anything greater or equal to "1.99" means protocol 2 is supported. */
3162     s->proto2 = ssh_versioncmp(s->version, "1.99") >= 0;
3163
3164     if (conf_get_int(ssh->conf, CONF_sshprot) == 0) {
3165         if (!s->proto1) {
3166             bombout(("SSH protocol version 1 required by our configuration "
3167                      "but not provided by server"));
3168             crStop(0);
3169         }
3170     } else if (conf_get_int(ssh->conf, CONF_sshprot) == 3) {
3171         if (!s->proto2) {
3172             bombout(("SSH protocol version 2 required by our configuration "
3173                      "but server only provides (old, insecure) SSH-1"));
3174             crStop(0);
3175         }
3176     } else {
3177         /* No longer support values 1 or 2 for CONF_sshprot */
3178         assert(!"Unexpected value for CONF_sshprot");
3179     }
3180
3181     if (s->proto2 && (conf_get_int(ssh->conf, CONF_sshprot) >= 2 || !s->proto1))
3182         ssh->version = 2;
3183     else
3184         ssh->version = 1;
3185
3186     logeventf(ssh, "Using SSH protocol version %d", ssh->version);
3187
3188     /* Send the version string, if we haven't already */
3189     if (conf_get_int(ssh->conf, CONF_sshprot) != 3)
3190         ssh_send_verstring(ssh, protoname, s->version);
3191
3192     if (ssh->version == 2) {
3193         size_t len;
3194         /*
3195          * Record their version string.
3196          */
3197         len = strcspn(s->vstring, "\015\012");
3198         ssh->v_s = snewn(len + 1, char);
3199         memcpy(ssh->v_s, s->vstring, len);
3200         ssh->v_s[len] = 0;
3201             
3202         /*
3203          * Initialise SSH-2 protocol.
3204          */
3205         ssh->protocol = ssh2_protocol;
3206         ssh2_protocol_setup(ssh);
3207         ssh->s_rdpkt = ssh2_rdpkt;
3208     } else {
3209         /*
3210          * Initialise SSH-1 protocol.
3211          */
3212         ssh->protocol = ssh1_protocol;
3213         ssh1_protocol_setup(ssh);
3214         ssh->s_rdpkt = ssh1_rdpkt;
3215     }
3216     if (ssh->version == 2)
3217         do_ssh2_transport(ssh, NULL, -1, NULL);
3218
3219     update_specials_menu(ssh->frontend);
3220     ssh->state = SSH_STATE_BEFORE_SIZE;
3221     ssh->pinger = pinger_new(ssh->conf, &ssh_backend, ssh);
3222
3223     sfree(s->vstring);
3224
3225     crFinish(0);
3226 }
3227
3228 static int do_ssh_connection_init(Ssh ssh, unsigned char c)
3229 {
3230     /*
3231      * Ordinary SSH begins with the banner "SSH-x.y-...". This is just
3232      * the ssh-connection part, extracted and given a trivial binary
3233      * packet protocol, so we replace 'SSH-' at the start with a new
3234      * name. In proper SSH style (though of course this part of the
3235      * proper SSH protocol _isn't_ subject to this kind of
3236      * DNS-domain-based extension), we define the new name in our
3237      * extension space.
3238      */
3239     static const char protoname[] =
3240         "SSHCONNECTION@putty.projects.tartarus.org-";
3241
3242     struct do_ssh_connection_init_state {
3243         int crLine;
3244         int vslen;
3245         char version[10];
3246         char *vstring;
3247         int vstrsize;
3248         int i;
3249     };
3250     crState(do_ssh_connection_init_state);
3251     
3252     crBeginState;
3253
3254     /* Search for a line beginning with the protocol name prefix in
3255      * the input. */
3256     for (;;) {
3257         for (s->i = 0; protoname[s->i]; s->i++) {
3258             if ((char)c != protoname[s->i]) goto no;
3259             crReturn(1);
3260         }
3261         break;
3262       no:
3263         while (c != '\012')
3264             crReturn(1);
3265         crReturn(1);
3266     }
3267
3268     s->vstrsize = sizeof(protoname) + 16;
3269     s->vstring = snewn(s->vstrsize, char);
3270     strcpy(s->vstring, protoname);
3271     s->vslen = strlen(protoname);
3272     s->i = 0;
3273     while (1) {
3274         if (s->vslen >= s->vstrsize - 1) {
3275             s->vstrsize += 16;
3276             s->vstring = sresize(s->vstring, s->vstrsize, char);
3277         }
3278         s->vstring[s->vslen++] = c;
3279         if (s->i >= 0) {
3280             if (c == '-') {
3281                 s->version[s->i] = '\0';
3282                 s->i = -1;
3283             } else if (s->i < sizeof(s->version) - 1)
3284                 s->version[s->i++] = c;
3285         } else if (c == '\012')
3286             break;
3287         crReturn(1);                   /* get another char */
3288     }
3289
3290     ssh->agentfwd_enabled = FALSE;
3291     ssh->rdpkt2_bare_state.incoming_sequence = 0;
3292
3293     s->vstring[s->vslen] = 0;
3294     s->vstring[strcspn(s->vstring, "\015\012")] = '\0';/* remove EOL chars */
3295     logeventf(ssh, "Server version: %s", s->vstring);
3296     ssh_detect_bugs(ssh, s->vstring);
3297
3298     /*
3299      * Decide which SSH protocol version to support. This is easy in
3300      * bare ssh-connection mode: only 2.0 is legal.
3301      */
3302     if (ssh_versioncmp(s->version, "2.0") < 0) {
3303         bombout(("Server announces compatibility with SSH-1 in bare ssh-connection protocol"));
3304         crStop(0);
3305     }
3306     if (conf_get_int(ssh->conf, CONF_sshprot) == 0) {
3307         bombout(("Bare ssh-connection protocol cannot be run in SSH-1-only mode"));
3308         crStop(0);
3309     }
3310
3311     ssh->version = 2;
3312
3313     logeventf(ssh, "Using bare ssh-connection protocol");
3314
3315     /* Send the version string, if we haven't already */
3316     ssh_send_verstring(ssh, protoname, s->version);
3317
3318     /*
3319      * Initialise bare connection protocol.
3320      */
3321     ssh->protocol = ssh2_bare_connection_protocol;
3322     ssh2_bare_connection_protocol_setup(ssh);
3323     ssh->s_rdpkt = ssh2_bare_connection_rdpkt;
3324
3325     update_specials_menu(ssh->frontend);
3326     ssh->state = SSH_STATE_BEFORE_SIZE;
3327     ssh->pinger = pinger_new(ssh->conf, &ssh_backend, ssh);
3328
3329     /*
3330      * Get authconn (really just conn) under way.
3331      */
3332     do_ssh2_authconn(ssh, NULL, 0, NULL);
3333
3334     sfree(s->vstring);
3335
3336     crFinish(0);
3337 }
3338
3339 static void ssh_process_incoming_data(Ssh ssh,
3340                                       const unsigned char **data, int *datalen)
3341 {
3342     struct Packet *pktin;
3343
3344     pktin = ssh->s_rdpkt(ssh, data, datalen);
3345     if (pktin) {
3346         ssh->protocol(ssh, NULL, 0, pktin);
3347         ssh_free_packet(pktin);
3348     }
3349 }
3350
3351 static void ssh_queue_incoming_data(Ssh ssh,
3352                                     const unsigned char **data, int *datalen)
3353 {
3354     bufchain_add(&ssh->queued_incoming_data, *data, *datalen);
3355     *data += *datalen;
3356     *datalen = 0;
3357 }
3358
3359 static void ssh_process_queued_incoming_data(Ssh ssh)
3360 {
3361     void *vdata;
3362     const unsigned char *data;
3363     int len, origlen;
3364
3365     while (!ssh->frozen && bufchain_size(&ssh->queued_incoming_data)) {
3366         bufchain_prefix(&ssh->queued_incoming_data, &vdata, &len);
3367         data = vdata;
3368         origlen = len;
3369
3370         while (!ssh->frozen && len > 0)
3371             ssh_process_incoming_data(ssh, &data, &len);
3372
3373         if (origlen > len)
3374             bufchain_consume(&ssh->queued_incoming_data, origlen - len);
3375     }
3376 }
3377
3378 static void ssh_set_frozen(Ssh ssh, int frozen)
3379 {
3380     if (ssh->s)
3381         sk_set_frozen(ssh->s, frozen);
3382     ssh->frozen = frozen;
3383 }
3384
3385 static void ssh_gotdata(Ssh ssh, const unsigned char *data, int datalen)
3386 {
3387     /* Log raw data, if we're in that mode. */
3388     if (ssh->logctx)
3389         log_packet(ssh->logctx, PKT_INCOMING, -1, NULL, data, datalen,
3390                    0, NULL, NULL, 0, NULL);
3391
3392     crBegin(ssh->ssh_gotdata_crstate);
3393
3394     /*
3395      * To begin with, feed the characters one by one to the
3396      * protocol initialisation / selection function do_ssh_init().
3397      * When that returns 0, we're done with the initial greeting
3398      * exchange and can move on to packet discipline.
3399      */
3400     while (1) {
3401         int ret;                       /* need not be kept across crReturn */
3402         if (datalen == 0)
3403             crReturnV;                 /* more data please */
3404         ret = ssh->do_ssh_init(ssh, *data);
3405         data++;
3406         datalen--;
3407         if (ret == 0)
3408             break;
3409     }
3410
3411     /*
3412      * We emerge from that loop when the initial negotiation is
3413      * over and we have selected an s_rdpkt function. Now pass
3414      * everything to s_rdpkt, and then pass the resulting packets
3415      * to the proper protocol handler.
3416      */
3417
3418     while (1) {
3419         while (bufchain_size(&ssh->queued_incoming_data) > 0 || datalen > 0) {
3420             if (ssh->frozen) {
3421                 ssh_queue_incoming_data(ssh, &data, &datalen);
3422                 /* This uses up all data and cannot cause anything interesting
3423                  * to happen; indeed, for anything to happen at all, we must
3424                  * return, so break out. */
3425                 break;
3426             } else if (bufchain_size(&ssh->queued_incoming_data) > 0) {
3427                 /* This uses up some or all data, and may freeze the
3428                  * session. */
3429                 ssh_process_queued_incoming_data(ssh);
3430             } else {
3431                 /* This uses up some or all data, and may freeze the
3432                  * session. */
3433                 ssh_process_incoming_data(ssh, &data, &datalen);
3434             }
3435             /* FIXME this is probably EBW. */
3436             if (ssh->state == SSH_STATE_CLOSED)
3437                 return;
3438         }
3439         /* We're out of data. Go and get some more. */
3440         crReturnV;
3441     }
3442     crFinishV;
3443 }
3444
3445 static int ssh_do_close(Ssh ssh, int notify_exit)
3446 {
3447     int ret = 0;
3448     struct ssh_channel *c;
3449
3450     ssh->state = SSH_STATE_CLOSED;
3451     expire_timer_context(ssh);
3452     if (ssh->s) {
3453         sk_close(ssh->s);
3454         ssh->s = NULL;
3455         if (notify_exit)
3456             notify_remote_exit(ssh->frontend);
3457         else
3458             ret = 1;
3459     }
3460     /*
3461      * Now we must shut down any port- and X-forwarded channels going
3462      * through this connection.
3463      */
3464     if (ssh->channels) {
3465         while (NULL != (c = index234(ssh->channels, 0))) {
3466             switch (c->type) {
3467               case CHAN_X11:
3468                 x11_close(c->u.x11.xconn);
3469                 break;
3470               case CHAN_SOCKDATA:
3471                 pfd_close(c->u.pfd.pf);
3472                 break;
3473             }
3474             del234(ssh->channels, c); /* moving next one to index 0 */
3475             if (ssh->version == 2)
3476                 bufchain_clear(&c->v.v2.outbuffer);
3477             sfree(c);
3478         }
3479     }
3480     /*
3481      * Go through port-forwardings, and close any associated
3482      * listening sockets.
3483      */
3484     if (ssh->portfwds) {
3485         struct ssh_portfwd *pf;
3486         while (NULL != (pf = index234(ssh->portfwds, 0))) {
3487             /* Dispose of any listening socket. */
3488             if (pf->local)
3489                 pfl_terminate(pf->local);
3490             del234(ssh->portfwds, pf); /* moving next one to index 0 */
3491             free_portfwd(pf);
3492         }
3493         freetree234(ssh->portfwds);
3494         ssh->portfwds = NULL;
3495     }
3496
3497     /*
3498      * Also stop attempting to connection-share.
3499      */
3500     if (ssh->connshare) {
3501         sharestate_free(ssh->connshare);
3502         ssh->connshare = NULL;
3503     }
3504
3505     return ret;
3506 }
3507
3508 static void ssh_socket_log(Plug plug, int type, SockAddr addr, int port,
3509                            const char *error_msg, int error_code)
3510 {
3511     Ssh ssh = (Ssh) plug;
3512
3513     /*
3514      * While we're attempting connection sharing, don't loudly log
3515      * everything that happens. Real TCP connections need to be logged
3516      * when we _start_ trying to connect, because it might be ages
3517      * before they respond if something goes wrong; but connection
3518      * sharing is local and quick to respond, and it's sufficient to
3519      * simply wait and see whether it worked afterwards.
3520      */
3521
3522     if (!ssh->attempting_connshare)
3523         backend_socket_log(ssh->frontend, type, addr, port,
3524                            error_msg, error_code, ssh->conf,
3525                            ssh->session_started);
3526 }
3527
3528 void ssh_connshare_log(Ssh ssh, int event, const char *logtext,
3529                        const char *ds_err, const char *us_err)
3530 {
3531     if (event == SHARE_NONE) {
3532         /* In this case, 'logtext' is an error message indicating a
3533          * reason why connection sharing couldn't be set up _at all_.
3534          * Failing that, ds_err and us_err indicate why we couldn't be
3535          * a downstream and an upstream respectively. */
3536         if (logtext) {
3537             logeventf(ssh, "Could not set up connection sharing: %s", logtext);
3538         } else {
3539             if (ds_err)
3540                 logeventf(ssh, "Could not set up connection sharing"
3541                           " as downstream: %s", ds_err);
3542             if (us_err)
3543                 logeventf(ssh, "Could not set up connection sharing"
3544                           " as upstream: %s", us_err);
3545         }
3546     } else if (event == SHARE_DOWNSTREAM) {
3547         /* In this case, 'logtext' is a local endpoint address */
3548         logeventf(ssh, "Using existing shared connection at %s", logtext);
3549         /* Also we should mention this in the console window to avoid
3550          * confusing users as to why this window doesn't behave the
3551          * usual way. */
3552         if ((flags & FLAG_VERBOSE) || (flags & FLAG_INTERACTIVE)) {
3553             c_write_str(ssh,"Reusing a shared connection to this server.\r\n");
3554         }
3555     } else if (event == SHARE_UPSTREAM) {
3556         /* In this case, 'logtext' is a local endpoint address too */
3557         logeventf(ssh, "Sharing this connection at %s", logtext);
3558     }
3559 }
3560
3561 static int ssh_closing(Plug plug, const char *error_msg, int error_code,
3562                        int calling_back)
3563 {
3564     Ssh ssh = (Ssh) plug;
3565     int need_notify = ssh_do_close(ssh, FALSE);
3566
3567     if (!error_msg) {
3568         if (!ssh->close_expected)
3569             error_msg = "Server unexpectedly closed network connection";
3570         else
3571             error_msg = "Server closed network connection";
3572     }
3573
3574     if (ssh->close_expected && ssh->clean_exit && ssh->exitcode < 0)
3575         ssh->exitcode = 0;
3576
3577     if (need_notify)
3578         notify_remote_exit(ssh->frontend);
3579
3580     if (error_msg)
3581         logevent(error_msg);
3582     if (!ssh->close_expected || !ssh->clean_exit)
3583         connection_fatal(ssh->frontend, "%s", error_msg);
3584     return 0;
3585 }
3586
3587 static int ssh_receive(Plug plug, int urgent, char *data, int len)
3588 {
3589     Ssh ssh = (Ssh) plug;
3590     ssh_gotdata(ssh, (unsigned char *)data, len);
3591     if (ssh->state == SSH_STATE_CLOSED) {
3592         ssh_do_close(ssh, TRUE);
3593         return 0;
3594     }
3595     return 1;
3596 }
3597
3598 static void ssh_sent(Plug plug, int bufsize)
3599 {
3600     Ssh ssh = (Ssh) plug;
3601     /*
3602      * If the send backlog on the SSH socket itself clears, we
3603      * should unthrottle the whole world if it was throttled.
3604      */
3605     if (bufsize < SSH_MAX_BACKLOG)
3606         ssh_throttle_all(ssh, 0, bufsize);
3607 }
3608
3609 static void ssh_hostport_setup(const char *host, int port, Conf *conf,
3610                                char **savedhost, int *savedport,
3611                                char **loghost_ret)
3612 {
3613     char *loghost = conf_get_str(conf, CONF_loghost);
3614     if (loghost_ret)
3615         *loghost_ret = loghost;
3616
3617     if (*loghost) {
3618         char *tmphost;
3619         char *colon;
3620
3621         tmphost = dupstr(loghost);
3622         *savedport = 22;               /* default ssh port */
3623
3624         /*
3625          * A colon suffix on the hostname string also lets us affect
3626          * savedport. (Unless there are multiple colons, in which case
3627          * we assume this is an unbracketed IPv6 literal.)
3628          */
3629         colon = host_strrchr(tmphost, ':');
3630         if (colon && colon == host_strchr(tmphost, ':')) {
3631             *colon++ = '\0';
3632             if (*colon)
3633                 *savedport = atoi(colon);
3634         }
3635
3636         *savedhost = host_strduptrim(tmphost);
3637         sfree(tmphost);
3638     } else {
3639         *savedhost = host_strduptrim(host);
3640         if (port < 0)
3641             port = 22;                 /* default ssh port */
3642         *savedport = port;
3643     }
3644 }
3645
3646 static int ssh_test_for_upstream(const char *host, int port, Conf *conf)
3647 {
3648     char *savedhost;
3649     int savedport;
3650     int ret;
3651
3652     random_ref(); /* platform may need this to determine share socket name */
3653     ssh_hostport_setup(host, port, conf, &savedhost, &savedport, NULL);
3654     ret = ssh_share_test_for_upstream(savedhost, savedport, conf);
3655     sfree(savedhost);
3656     random_unref();
3657
3658     return ret;
3659 }
3660
3661 /*
3662  * Connect to specified host and port.
3663  * Returns an error message, or NULL on success.
3664  * Also places the canonical host name into `realhost'. It must be
3665  * freed by the caller.
3666  */
3667 static const char *connect_to_host(Ssh ssh, const char *host, int port,
3668                                    char **realhost, int nodelay, int keepalive)
3669 {
3670     static const struct plug_function_table fn_table = {
3671         ssh_socket_log,
3672         ssh_closing,
3673         ssh_receive,
3674         ssh_sent,
3675         NULL
3676     };
3677
3678     SockAddr addr;
3679     const char *err;
3680     char *loghost;
3681     int addressfamily, sshprot;
3682
3683     ssh_hostport_setup(host, port, ssh->conf,
3684                        &ssh->savedhost, &ssh->savedport, &loghost);
3685
3686     ssh->fn = &fn_table;               /* make 'ssh' usable as a Plug */
3687
3688     /*
3689      * Try connection-sharing, in case that means we don't open a
3690      * socket after all. ssh_connection_sharing_init will connect to a
3691      * previously established upstream if it can, and failing that,
3692      * establish a listening socket for _us_ to be the upstream. In
3693      * the latter case it will return NULL just as if it had done
3694      * nothing, because here we only need to care if we're a
3695      * downstream and need to do our connection setup differently.
3696      */
3697     ssh->connshare = NULL;
3698     ssh->attempting_connshare = TRUE;  /* affects socket logging behaviour */
3699     ssh->s = ssh_connection_sharing_init(ssh->savedhost, ssh->savedport,
3700                                          ssh->conf, ssh, &ssh->connshare);
3701     ssh->attempting_connshare = FALSE;
3702     if (ssh->s != NULL) {
3703         /*
3704          * We are a downstream.
3705          */
3706         ssh->bare_connection = TRUE;
3707         ssh->do_ssh_init = do_ssh_connection_init;
3708         ssh->fullhostname = NULL;
3709         *realhost = dupstr(host);      /* best we can do */
3710     } else {
3711         /*
3712          * We're not a downstream, so open a normal socket.
3713          */
3714         ssh->do_ssh_init = do_ssh_init;
3715
3716         /*
3717          * Try to find host.
3718          */
3719         addressfamily = conf_get_int(ssh->conf, CONF_addressfamily);
3720         addr = name_lookup(host, port, realhost, ssh->conf, addressfamily,
3721                            ssh->frontend, "SSH connection");
3722         if ((err = sk_addr_error(addr)) != NULL) {
3723             sk_addr_free(addr);
3724             return err;
3725         }
3726         ssh->fullhostname = dupstr(*realhost);   /* save in case of GSSAPI */
3727
3728         ssh->s = new_connection(addr, *realhost, port,
3729                                 0, 1, nodelay, keepalive,
3730                                 (Plug) ssh, ssh->conf);
3731         if ((err = sk_socket_error(ssh->s)) != NULL) {
3732             ssh->s = NULL;
3733             notify_remote_exit(ssh->frontend);
3734             return err;
3735         }
3736     }
3737
3738     /*
3739      * The SSH version number is always fixed (since we no longer support
3740      * fallback between versions), so set it now, and if it's SSH-2,
3741      * send the version string now too.
3742      */
3743     sshprot = conf_get_int(ssh->conf, CONF_sshprot);
3744     assert(sshprot == 0 || sshprot == 3);
3745     if (sshprot == 0)
3746         /* SSH-1 only */
3747         ssh->version = 1;
3748     if (sshprot == 3 && !ssh->bare_connection) {
3749         /* SSH-2 only */
3750         ssh->version = 2;
3751         ssh_send_verstring(ssh, "SSH-", NULL);
3752     }
3753
3754     /*
3755      * loghost, if configured, overrides realhost.
3756      */
3757     if (*loghost) {
3758         sfree(*realhost);
3759         *realhost = dupstr(loghost);
3760     }
3761
3762     return NULL;
3763 }
3764
3765 /*
3766  * Throttle or unthrottle the SSH connection.
3767  */
3768 static void ssh_throttle_conn(Ssh ssh, int adjust)
3769 {
3770     int old_count = ssh->conn_throttle_count;
3771     ssh->conn_throttle_count += adjust;
3772     assert(ssh->conn_throttle_count >= 0);
3773     if (ssh->conn_throttle_count && !old_count) {
3774         ssh_set_frozen(ssh, 1);
3775     } else if (!ssh->conn_throttle_count && old_count) {
3776         ssh_set_frozen(ssh, 0);
3777     }
3778 }
3779
3780 /*
3781  * Throttle or unthrottle _all_ local data streams (for when sends
3782  * on the SSH connection itself back up).
3783  */
3784 static void ssh_throttle_all(Ssh ssh, int enable, int bufsize)
3785 {
3786     int i;
3787     struct ssh_channel *c;
3788
3789     if (enable == ssh->throttled_all)
3790         return;
3791     ssh->throttled_all = enable;
3792     ssh->overall_bufsize = bufsize;
3793     if (!ssh->channels)
3794         return;
3795     for (i = 0; NULL != (c = index234(ssh->channels, i)); i++) {
3796         switch (c->type) {
3797           case CHAN_MAINSESSION:
3798             /*
3799              * This is treated separately, outside the switch.
3800              */
3801             break;
3802           case CHAN_X11:
3803             x11_override_throttle(c->u.x11.xconn, enable);
3804             break;
3805           case CHAN_AGENT:
3806             /* Agent channels require no buffer management. */
3807             break;
3808           case CHAN_SOCKDATA:
3809             pfd_override_throttle(c->u.pfd.pf, enable);
3810             break;
3811         }
3812     }
3813 }
3814
3815 static void ssh_agent_callback(void *sshv, void *reply, int replylen)
3816 {
3817     Ssh ssh = (Ssh) sshv;
3818
3819     ssh->agent_response = reply;
3820     ssh->agent_response_len = replylen;
3821
3822     if (ssh->version == 1)
3823         do_ssh1_login(ssh, NULL, -1, NULL);
3824     else
3825         do_ssh2_authconn(ssh, NULL, -1, NULL);
3826 }
3827
3828 static void ssh_dialog_callback(void *sshv, int ret)
3829 {
3830     Ssh ssh = (Ssh) sshv;
3831
3832     ssh->user_response = ret;
3833
3834     if (ssh->version == 1)
3835         do_ssh1_login(ssh, NULL, -1, NULL);
3836     else
3837         do_ssh2_transport(ssh, NULL, -1, NULL);
3838
3839     /*
3840      * This may have unfrozen the SSH connection, so do a
3841      * queued-data run.
3842      */
3843     ssh_process_queued_incoming_data(ssh);
3844 }
3845
3846 static void ssh_agentf_callback(void *cv, void *reply, int replylen)
3847 {
3848     struct ssh_channel *c = (struct ssh_channel *)cv;
3849     const void *sentreply = reply;
3850
3851     c->u.a.outstanding_requests--;
3852     if (!sentreply) {
3853         /* Fake SSH_AGENT_FAILURE. */
3854         sentreply = "\0\0\0\1\5";
3855         replylen = 5;
3856     }
3857     ssh_send_channel_data(c, sentreply, replylen);
3858     if (reply)
3859         sfree(reply);
3860     /*
3861      * If we've already seen an incoming EOF but haven't sent an
3862      * outgoing one, this may be the moment to send it.
3863      */
3864     if (c->u.a.outstanding_requests == 0 && (c->closes & CLOSES_RCVD_EOF))
3865         sshfwd_write_eof(c);
3866 }
3867
3868 /*
3869  * Client-initiated disconnection. Send a DISCONNECT if `wire_reason'
3870  * non-NULL, otherwise just close the connection. `client_reason' == NULL
3871  * => log `wire_reason'.
3872  */
3873 static void ssh_disconnect(Ssh ssh, const char *client_reason,
3874                            const char *wire_reason,
3875                            int code, int clean_exit)
3876 {
3877     char *error;
3878     if (!client_reason)
3879         client_reason = wire_reason;
3880     if (client_reason)
3881         error = dupprintf("Disconnected: %s", client_reason);
3882     else
3883         error = dupstr("Disconnected");
3884     if (wire_reason) {
3885         if (ssh->version == 1) {
3886             send_packet(ssh, SSH1_MSG_DISCONNECT, PKT_STR, wire_reason,
3887                         PKT_END);
3888         } else if (ssh->version == 2) {
3889             struct Packet *pktout = ssh2_pkt_init(SSH2_MSG_DISCONNECT);
3890             ssh2_pkt_adduint32(pktout, code);
3891             ssh2_pkt_addstring(pktout, wire_reason);
3892             ssh2_pkt_addstring(pktout, "en");   /* language tag */
3893             ssh2_pkt_send_noqueue(ssh, pktout);
3894         }
3895     }
3896     ssh->close_expected = TRUE;
3897     ssh->clean_exit = clean_exit;
3898     ssh_closing((Plug)ssh, error, 0, 0);
3899     sfree(error);
3900 }
3901
3902 int verify_ssh_manual_host_key(Ssh ssh, const char *fingerprint,
3903                                const struct ssh_signkey *ssh2keytype,
3904                                void *ssh2keydata)
3905 {
3906     if (!conf_get_str_nthstrkey(ssh->conf, CONF_ssh_manual_hostkeys, 0)) {
3907         return -1;                     /* no manual keys configured */
3908     }
3909
3910     if (fingerprint) {
3911         /*
3912          * The fingerprint string we've been given will have things
3913          * like 'ssh-rsa 2048' at the front of it. Strip those off and
3914          * narrow down to just the colon-separated hex block at the
3915          * end of the string.
3916          */
3917         const char *p = strrchr(fingerprint, ' ');
3918         fingerprint = p ? p+1 : fingerprint;
3919         /* Quick sanity checks, including making sure it's in lowercase */
3920         assert(strlen(fingerprint) == 16*3 - 1);
3921         assert(fingerprint[2] == ':');
3922         assert(fingerprint[strspn(fingerprint, "0123456789abcdef:")] == 0);
3923
3924         if (conf_get_str_str_opt(ssh->conf, CONF_ssh_manual_hostkeys,
3925                                  fingerprint))
3926             return 1;                  /* success */
3927     }
3928
3929     if (ssh2keydata) {
3930         /*
3931          * Construct the base64-encoded public key blob and see if
3932          * that's listed.
3933          */
3934         unsigned char *binblob;
3935         char *base64blob;
3936         int binlen, atoms, i;
3937         binblob = ssh2keytype->public_blob(ssh2keydata, &binlen);
3938         atoms = (binlen + 2) / 3;
3939         base64blob = snewn(atoms * 4 + 1, char);
3940         for (i = 0; i < atoms; i++)
3941             base64_encode_atom(binblob + 3*i, binlen - 3*i, base64blob + 4*i);
3942         base64blob[atoms * 4] = '\0';
3943         sfree(binblob);
3944         if (conf_get_str_str_opt(ssh->conf, CONF_ssh_manual_hostkeys,
3945                                  base64blob)) {
3946             sfree(base64blob);
3947             return 1;                  /* success */
3948         }
3949         sfree(base64blob);
3950     }
3951
3952     return 0;
3953 }
3954
3955 /*
3956  * Handle the key exchange and user authentication phases.
3957  */
3958 static int do_ssh1_login(Ssh ssh, const unsigned char *in, int inlen,
3959                          struct Packet *pktin)
3960 {
3961     int i, j, ret;
3962     unsigned char cookie[8], *ptr;
3963     struct MD5Context md5c;
3964     struct do_ssh1_login_state {
3965         int crLine;
3966         int len;
3967         unsigned char *rsabuf;
3968         const unsigned char *keystr1, *keystr2;
3969         unsigned long supported_ciphers_mask, supported_auths_mask;
3970         int tried_publickey, tried_agent;
3971         int tis_auth_refused, ccard_auth_refused;
3972         unsigned char session_id[16];
3973         int cipher_type;
3974         void *publickey_blob;
3975         int publickey_bloblen;
3976         char *publickey_comment;
3977         int privatekey_available, privatekey_encrypted;
3978         prompts_t *cur_prompt;
3979         char c;
3980         int pwpkt_type;
3981         unsigned char request[5], *response, *p;
3982         int responselen;
3983         int keyi, nkeys;
3984         int authed;
3985         struct RSAKey key;
3986         Bignum challenge;
3987         char *commentp;
3988         int commentlen;
3989         int dlgret;
3990         Filename *keyfile;
3991         struct RSAKey servkey, hostkey;
3992     };
3993     crState(do_ssh1_login_state);
3994
3995     crBeginState;
3996
3997     if (!pktin)
3998         crWaitUntil(pktin);
3999
4000     if (pktin->type != SSH1_SMSG_PUBLIC_KEY) {
4001         bombout(("Public key packet not received"));
4002         crStop(0);
4003     }
4004
4005     logevent("Received public keys");
4006
4007     ptr = ssh_pkt_getdata(pktin, 8);
4008     if (!ptr) {
4009         bombout(("SSH-1 public key packet stopped before random cookie"));
4010         crStop(0);
4011     }
4012     memcpy(cookie, ptr, 8);
4013
4014     if (!ssh1_pkt_getrsakey(pktin, &s->servkey, &s->keystr1) ||
4015         !ssh1_pkt_getrsakey(pktin, &s->hostkey, &s->keystr2)) { 
4016         bombout(("Failed to read SSH-1 public keys from public key packet"));
4017         crStop(0);
4018     }
4019
4020     /*
4021      * Log the host key fingerprint.
4022      */
4023     {
4024         char logmsg[80];
4025         logevent("Host key fingerprint is:");
4026         strcpy(logmsg, "      ");
4027         s->hostkey.comment = NULL;
4028         rsa_fingerprint(logmsg + strlen(logmsg),
4029                         sizeof(logmsg) - strlen(logmsg), &s->hostkey);
4030         logevent(logmsg);
4031     }
4032
4033     ssh->v1_remote_protoflags = ssh_pkt_getuint32(pktin);
4034     s->supported_ciphers_mask = ssh_pkt_getuint32(pktin);
4035     s->supported_auths_mask = ssh_pkt_getuint32(pktin);
4036     if ((ssh->remote_bugs & BUG_CHOKES_ON_RSA))
4037         s->supported_auths_mask &= ~(1 << SSH1_AUTH_RSA);
4038
4039     ssh->v1_local_protoflags =
4040         ssh->v1_remote_protoflags & SSH1_PROTOFLAGS_SUPPORTED;
4041     ssh->v1_local_protoflags |= SSH1_PROTOFLAG_SCREEN_NUMBER;
4042
4043     MD5Init(&md5c);
4044     MD5Update(&md5c, s->keystr2, s->hostkey.bytes);
4045     MD5Update(&md5c, s->keystr1, s->servkey.bytes);
4046     MD5Update(&md5c, cookie, 8);
4047     MD5Final(s->session_id, &md5c);
4048
4049     for (i = 0; i < 32; i++)
4050         ssh->session_key[i] = random_byte();
4051
4052     /*
4053      * Verify that the `bits' and `bytes' parameters match.
4054      */
4055     if (s->hostkey.bits > s->hostkey.bytes * 8 ||
4056         s->servkey.bits > s->servkey.bytes * 8) {
4057         bombout(("SSH-1 public keys were badly formatted"));
4058         crStop(0);
4059     }
4060
4061     s->len = (s->hostkey.bytes > s->servkey.bytes ?
4062               s->hostkey.bytes : s->servkey.bytes);
4063
4064     s->rsabuf = snewn(s->len, unsigned char);
4065
4066     /*
4067      * Verify the host key.
4068      */
4069     {
4070         /*
4071          * First format the key into a string.
4072          */
4073         int len = rsastr_len(&s->hostkey);
4074         char fingerprint[100];
4075         char *keystr = snewn(len, char);
4076         rsastr_fmt(keystr, &s->hostkey);
4077         rsa_fingerprint(fingerprint, sizeof(fingerprint), &s->hostkey);
4078
4079         /* First check against manually configured host keys. */
4080         s->dlgret = verify_ssh_manual_host_key(ssh, fingerprint, NULL, NULL);
4081         if (s->dlgret == 0) {          /* did not match */
4082             bombout(("Host key did not appear in manually configured list"));
4083             sfree(keystr);
4084             crStop(0);
4085         } else if (s->dlgret < 0) { /* none configured; use standard handling */
4086             ssh_set_frozen(ssh, 1);
4087             s->dlgret = verify_ssh_host_key(ssh->frontend,
4088                                             ssh->savedhost, ssh->savedport,
4089                                             "rsa", keystr, fingerprint,
4090                                             ssh_dialog_callback, ssh);
4091             sfree(keystr);
4092 #ifdef FUZZING
4093             s->dlgret = 1;
4094 #endif
4095             if (s->dlgret < 0) {
4096                 do {
4097                     crReturn(0);
4098                     if (pktin) {
4099                         bombout(("Unexpected data from server while waiting"
4100                                  " for user host key response"));
4101                         crStop(0);
4102                     }
4103                 } while (pktin || inlen > 0);
4104                 s->dlgret = ssh->user_response;
4105             }
4106             ssh_set_frozen(ssh, 0);
4107
4108             if (s->dlgret == 0) {
4109                 ssh_disconnect(ssh, "User aborted at host key verification",
4110                                NULL, 0, TRUE);
4111                 crStop(0);
4112             }
4113         } else {
4114             sfree(keystr);
4115         }
4116     }
4117
4118     for (i = 0; i < 32; i++) {
4119         s->rsabuf[i] = ssh->session_key[i];
4120         if (i < 16)
4121             s->rsabuf[i] ^= s->session_id[i];
4122     }
4123
4124     if (s->hostkey.bytes > s->servkey.bytes) {
4125         ret = rsaencrypt(s->rsabuf, 32, &s->servkey);
4126         if (ret)
4127             ret = rsaencrypt(s->rsabuf, s->servkey.bytes, &s->hostkey);
4128     } else {
4129         ret = rsaencrypt(s->rsabuf, 32, &s->hostkey);
4130         if (ret)
4131             ret = rsaencrypt(s->rsabuf, s->hostkey.bytes, &s->servkey);
4132     }
4133     if (!ret) {
4134         bombout(("SSH-1 public key encryptions failed due to bad formatting"));
4135         crStop(0);      
4136     }
4137
4138     logevent("Encrypted session key");
4139
4140     {
4141         int cipher_chosen = 0, warn = 0;
4142         const char *cipher_string = NULL;
4143         int i;
4144         for (i = 0; !cipher_chosen && i < CIPHER_MAX; i++) {
4145             int next_cipher = conf_get_int_int(ssh->conf,
4146                                                CONF_ssh_cipherlist, i);
4147             if (next_cipher == CIPHER_WARN) {
4148                 /* If/when we choose a cipher, warn about it */
4149                 warn = 1;
4150             } else if (next_cipher == CIPHER_AES) {
4151                 /* XXX Probably don't need to mention this. */
4152                 logevent("AES not supported in SSH-1, skipping");
4153             } else {
4154                 switch (next_cipher) {
4155                   case CIPHER_3DES:     s->cipher_type = SSH_CIPHER_3DES;
4156                                         cipher_string = "3DES"; break;
4157                   case CIPHER_BLOWFISH: s->cipher_type = SSH_CIPHER_BLOWFISH;
4158                                         cipher_string = "Blowfish"; break;
4159                   case CIPHER_DES:      s->cipher_type = SSH_CIPHER_DES;
4160                                         cipher_string = "single-DES"; break;
4161                 }
4162                 if (s->supported_ciphers_mask & (1 << s->cipher_type))
4163                     cipher_chosen = 1;
4164             }
4165         }
4166         if (!cipher_chosen) {
4167             if ((s->supported_ciphers_mask & (1 << SSH_CIPHER_3DES)) == 0)
4168                 bombout(("Server violates SSH-1 protocol by not "
4169                          "supporting 3DES encryption"));
4170             else
4171                 /* shouldn't happen */
4172                 bombout(("No supported ciphers found"));
4173             crStop(0);
4174         }
4175
4176         /* Warn about chosen cipher if necessary. */
4177         if (warn) {
4178             ssh_set_frozen(ssh, 1);
4179             s->dlgret = askalg(ssh->frontend, "cipher", cipher_string,
4180                                ssh_dialog_callback, ssh);
4181             if (s->dlgret < 0) {
4182                 do {
4183                     crReturn(0);
4184                     if (pktin) {
4185                         bombout(("Unexpected data from server while waiting"
4186                                  " for user response"));
4187                         crStop(0);
4188                     }
4189                 } while (pktin || inlen > 0);
4190                 s->dlgret = ssh->user_response;
4191             }
4192             ssh_set_frozen(ssh, 0);
4193             if (s->dlgret == 0) {
4194                 ssh_disconnect(ssh, "User aborted at cipher warning", NULL,
4195                                0, TRUE);
4196                 crStop(0);
4197             }
4198         }
4199     }
4200
4201     switch (s->cipher_type) {
4202       case SSH_CIPHER_3DES:
4203         logevent("Using 3DES encryption");
4204         break;
4205       case SSH_CIPHER_DES:
4206         logevent("Using single-DES encryption");
4207         break;
4208       case SSH_CIPHER_BLOWFISH:
4209         logevent("Using Blowfish encryption");
4210         break;
4211     }
4212
4213     send_packet(ssh, SSH1_CMSG_SESSION_KEY,
4214                 PKT_CHAR, s->cipher_type,
4215                 PKT_DATA, cookie, 8,
4216                 PKT_CHAR, (s->len * 8) >> 8, PKT_CHAR, (s->len * 8) & 0xFF,
4217                 PKT_DATA, s->rsabuf, s->len,
4218                 PKT_INT, ssh->v1_local_protoflags, PKT_END);
4219
4220     logevent("Trying to enable encryption...");
4221
4222     sfree(s->rsabuf);
4223
4224     ssh->cipher = (s->cipher_type == SSH_CIPHER_BLOWFISH ? &ssh_blowfish_ssh1 :
4225                    s->cipher_type == SSH_CIPHER_DES ? &ssh_des :
4226                    &ssh_3des);
4227     ssh->v1_cipher_ctx = ssh->cipher->make_context();
4228     ssh->cipher->sesskey(ssh->v1_cipher_ctx, ssh->session_key);
4229     logeventf(ssh, "Initialised %s encryption", ssh->cipher->text_name);
4230
4231     ssh->crcda_ctx = crcda_make_context();
4232     logevent("Installing CRC compensation attack detector");
4233
4234     if (s->servkey.modulus) {
4235         sfree(s->servkey.modulus);
4236         s->servkey.modulus = NULL;
4237     }
4238     if (s->servkey.exponent) {
4239         sfree(s->servkey.exponent);
4240         s->servkey.exponent = NULL;
4241     }
4242     if (s->hostkey.modulus) {
4243         sfree(s->hostkey.modulus);
4244         s->hostkey.modulus = NULL;
4245     }
4246     if (s->hostkey.exponent) {
4247         sfree(s->hostkey.exponent);
4248         s->hostkey.exponent = NULL;
4249     }
4250     crWaitUntil(pktin);
4251
4252     if (pktin->type != SSH1_SMSG_SUCCESS) {
4253         bombout(("Encryption not successfully enabled"));
4254         crStop(0);
4255     }
4256
4257     logevent("Successfully started encryption");
4258
4259     fflush(stdout); /* FIXME eh? */
4260     {
4261         if ((ssh->username = get_remote_username(ssh->conf)) == NULL) {
4262             int ret; /* need not be kept over crReturn */
4263             s->cur_prompt = new_prompts(ssh->frontend);
4264             s->cur_prompt->to_server = TRUE;
4265             s->cur_prompt->name = dupstr("SSH login name");
4266             add_prompt(s->cur_prompt, dupstr("login as: "), TRUE);
4267             ret = get_userpass_input(s->cur_prompt, NULL, 0);
4268             while (ret < 0) {
4269                 ssh->send_ok = 1;
4270                 crWaitUntil(!pktin);
4271                 ret = get_userpass_input(s->cur_prompt, in, inlen);
4272                 ssh->send_ok = 0;
4273             }
4274             if (!ret) {
4275                 /*
4276                  * Failed to get a username. Terminate.
4277                  */
4278                 free_prompts(s->cur_prompt);
4279                 ssh_disconnect(ssh, "No username provided", NULL, 0, TRUE);
4280                 crStop(0);
4281             }
4282             ssh->username = dupstr(s->cur_prompt->prompts[0]->result);
4283             free_prompts(s->cur_prompt);
4284         }
4285
4286         send_packet(ssh, SSH1_CMSG_USER, PKT_STR, ssh->username, PKT_END);
4287         {
4288             char *userlog = dupprintf("Sent username \"%s\"", ssh->username);
4289             logevent(userlog);
4290             if (flags & FLAG_INTERACTIVE &&
4291                 (!((flags & FLAG_STDERR) && (flags & FLAG_VERBOSE)))) {
4292                 c_write_str(ssh, userlog);
4293                 c_write_str(ssh, "\r\n");
4294             }
4295             sfree(userlog);
4296         }
4297     }
4298
4299     crWaitUntil(pktin);
4300
4301     if ((s->supported_auths_mask & (1 << SSH1_AUTH_RSA)) == 0) {
4302         /* We must not attempt PK auth. Pretend we've already tried it. */
4303         s->tried_publickey = s->tried_agent = 1;
4304     } else {
4305         s->tried_publickey = s->tried_agent = 0;
4306     }
4307     s->tis_auth_refused = s->ccard_auth_refused = 0;
4308     /*
4309      * Load the public half of any configured keyfile for later use.
4310      */
4311     s->keyfile = conf_get_filename(ssh->conf, CONF_keyfile);
4312     if (!filename_is_null(s->keyfile)) {
4313         int keytype;
4314         logeventf(ssh, "Reading key file \"%.150s\"",
4315                   filename_to_str(s->keyfile));
4316         keytype = key_type(s->keyfile);
4317         if (keytype == SSH_KEYTYPE_SSH1 ||
4318             keytype == SSH_KEYTYPE_SSH1_PUBLIC) {
4319             const char *error;
4320             if (rsakey_pubblob(s->keyfile,
4321                                &s->publickey_blob, &s->publickey_bloblen,
4322                                &s->publickey_comment, &error)) {
4323                 s->privatekey_available = (keytype == SSH_KEYTYPE_SSH1);
4324                 if (!s->privatekey_available)
4325                     logeventf(ssh, "Key file contains public key only");
4326                 s->privatekey_encrypted = rsakey_encrypted(s->keyfile,
4327                                                            NULL);
4328             } else {
4329                 char *msgbuf;
4330                 logeventf(ssh, "Unable to load key (%s)", error);
4331                 msgbuf = dupprintf("Unable to load key file "
4332                                    "\"%.150s\" (%s)\r\n",
4333                                    filename_to_str(s->keyfile),
4334                                    error);
4335                 c_write_str(ssh, msgbuf);
4336                 sfree(msgbuf);
4337                 s->publickey_blob = NULL;
4338             }
4339         } else {
4340             char *msgbuf;
4341             logeventf(ssh, "Unable to use this key file (%s)",
4342                       key_type_to_str(keytype));
4343             msgbuf = dupprintf("Unable to use key file \"%.150s\""
4344                                " (%s)\r\n",
4345                                filename_to_str(s->keyfile),
4346                                key_type_to_str(keytype));
4347             c_write_str(ssh, msgbuf);
4348             sfree(msgbuf);
4349             s->publickey_blob = NULL;
4350         }
4351     } else
4352         s->publickey_blob = NULL;
4353
4354     while (pktin->type == SSH1_SMSG_FAILURE) {
4355         s->pwpkt_type = SSH1_CMSG_AUTH_PASSWORD;
4356
4357         if (conf_get_int(ssh->conf, CONF_tryagent) && agent_exists() && !s->tried_agent) {
4358             /*
4359              * Attempt RSA authentication using Pageant.
4360              */
4361             void *r;
4362
4363             s->authed = FALSE;
4364             s->tried_agent = 1;
4365             logevent("Pageant is running. Requesting keys.");
4366
4367             /* Request the keys held by the agent. */
4368             PUT_32BIT(s->request, 1);
4369             s->request[4] = SSH1_AGENTC_REQUEST_RSA_IDENTITIES;
4370             if (!agent_query(s->request, 5, &r, &s->responselen,
4371                              ssh_agent_callback, ssh)) {
4372                 do {
4373                     crReturn(0);
4374                     if (pktin) {
4375                         bombout(("Unexpected data from server while waiting"
4376                                  " for agent response"));
4377                         crStop(0);
4378                     }
4379                 } while (pktin || inlen > 0);
4380                 r = ssh->agent_response;
4381                 s->responselen = ssh->agent_response_len;
4382             }
4383             s->response = (unsigned char *) r;
4384             if (s->response && s->responselen >= 5 &&
4385                 s->response[4] == SSH1_AGENT_RSA_IDENTITIES_ANSWER) {
4386                 s->p = s->response + 5;
4387                 s->nkeys = toint(GET_32BIT(s->p));
4388                 if (s->nkeys < 0) {
4389                     logeventf(ssh, "Pageant reported negative key count %d",
4390                               s->nkeys);
4391                     s->nkeys = 0;
4392                 }
4393                 s->p += 4;
4394                 logeventf(ssh, "Pageant has %d SSH-1 keys", s->nkeys);
4395                 for (s->keyi = 0; s->keyi < s->nkeys; s->keyi++) {
4396                     unsigned char *pkblob = s->p;
4397                     s->p += 4;
4398                     {
4399                         int n, ok = FALSE;
4400                         do {           /* do while (0) to make breaking easy */
4401                             n = ssh1_read_bignum
4402                                 (s->p, toint(s->responselen-(s->p-s->response)),
4403                                  &s->key.exponent);
4404                             if (n < 0)
4405                                 break;
4406                             s->p += n;
4407                             n = ssh1_read_bignum
4408                                 (s->p, toint(s->responselen-(s->p-s->response)),
4409                                  &s->key.modulus);
4410                             if (n < 0)
4411                                 break;
4412                             s->p += n;
4413                             if (s->responselen - (s->p-s->response) < 4)
4414                                 break;
4415                             s->commentlen = toint(GET_32BIT(s->p));
4416                             s->p += 4;
4417                             if (s->commentlen < 0 ||
4418                                 toint(s->responselen - (s->p-s->response)) <
4419                                 s->commentlen)
4420                                 break;
4421                             s->commentp = (char *)s->p;
4422                             s->p += s->commentlen;
4423                             ok = TRUE;
4424                         } while (0);
4425                         if (!ok) {
4426                             logevent("Pageant key list packet was truncated");
4427                             break;
4428                         }
4429                     }
4430                     if (s->publickey_blob) {
4431                         if (!memcmp(pkblob, s->publickey_blob,
4432                                     s->publickey_bloblen)) {
4433                             logeventf(ssh, "Pageant key #%d matches "
4434                                       "configured key file", s->keyi);
4435                             s->tried_publickey = 1;
4436                         } else
4437                             /* Skip non-configured key */
4438                             continue;
4439                     }
4440                     logeventf(ssh, "Trying Pageant key #%d", s->keyi);
4441                     send_packet(ssh, SSH1_CMSG_AUTH_RSA,
4442                                 PKT_BIGNUM, s->key.modulus, PKT_END);
4443                     crWaitUntil(pktin);
4444                     if (pktin->type != SSH1_SMSG_AUTH_RSA_CHALLENGE) {
4445                         logevent("Key refused");
4446                         continue;
4447                     }
4448                     logevent("Received RSA challenge");
4449                     if ((s->challenge = ssh1_pkt_getmp(pktin)) == NULL) {
4450                         bombout(("Server's RSA challenge was badly formatted"));
4451                         crStop(0);
4452                     }
4453
4454                     {
4455                         char *agentreq, *q, *ret;
4456                         void *vret;
4457                         int len, retlen;
4458                         len = 1 + 4;   /* message type, bit count */
4459                         len += ssh1_bignum_length(s->key.exponent);
4460                         len += ssh1_bignum_length(s->key.modulus);
4461                         len += ssh1_bignum_length(s->challenge);
4462                         len += 16;     /* session id */
4463                         len += 4;      /* response format */
4464                         agentreq = snewn(4 + len, char);
4465                         PUT_32BIT(agentreq, len);
4466                         q = agentreq + 4;
4467                         *q++ = SSH1_AGENTC_RSA_CHALLENGE;
4468                         PUT_32BIT(q, bignum_bitcount(s->key.modulus));
4469                         q += 4;
4470                         q += ssh1_write_bignum(q, s->key.exponent);
4471                         q += ssh1_write_bignum(q, s->key.modulus);
4472                         q += ssh1_write_bignum(q, s->challenge);
4473                         memcpy(q, s->session_id, 16);
4474                         q += 16;
4475                         PUT_32BIT(q, 1);        /* response format */
4476                         if (!agent_query(agentreq, len + 4, &vret, &retlen,
4477                                          ssh_agent_callback, ssh)) {
4478                             sfree(agentreq);
4479                             do {
4480                                 crReturn(0);
4481                                 if (pktin) {
4482                                     bombout(("Unexpected data from server"
4483                                              " while waiting for agent"
4484                                              " response"));
4485                                     crStop(0);
4486                                 }
4487                             } while (pktin || inlen > 0);
4488                             vret = ssh->agent_response;
4489                             retlen = ssh->agent_response_len;
4490                         } else
4491                             sfree(agentreq);
4492                         ret = vret;
4493                         if (ret) {
4494                             if (ret[4] == SSH1_AGENT_RSA_RESPONSE) {
4495                                 logevent("Sending Pageant's response");
4496                                 send_packet(ssh, SSH1_CMSG_AUTH_RSA_RESPONSE,
4497                                             PKT_DATA, ret + 5, 16,
4498                                             PKT_END);
4499                                 sfree(ret);
4500                                 crWaitUntil(pktin);
4501                                 if (pktin->type == SSH1_SMSG_SUCCESS) {
4502                                     logevent
4503                                         ("Pageant's response accepted");
4504                                     if (flags & FLAG_VERBOSE) {
4505                                         c_write_str(ssh, "Authenticated using"
4506                                                     " RSA key \"");
4507                                         c_write(ssh, s->commentp,
4508                                                 s->commentlen);
4509                                         c_write_str(ssh, "\" from agent\r\n");
4510                                     }
4511                                     s->authed = TRUE;
4512                                 } else
4513                                     logevent
4514                                         ("Pageant's response not accepted");
4515                             } else {
4516                                 logevent
4517                                     ("Pageant failed to answer challenge");
4518                                 sfree(ret);
4519                             }
4520                         } else {
4521                             logevent("No reply received from Pageant");
4522                         }
4523                     }
4524                     freebn(s->key.exponent);
4525                     freebn(s->key.modulus);
4526                     freebn(s->challenge);
4527                     if (s->authed)
4528                         break;
4529                 }
4530                 sfree(s->response);
4531                 if (s->publickey_blob && !s->tried_publickey)
4532                     logevent("Configured key file not in Pageant");
4533             } else {
4534                 logevent("Failed to get reply from Pageant");
4535             }
4536             if (s->authed)
4537                 break;
4538         }
4539         if (s->publickey_blob && s->privatekey_available &&
4540             !s->tried_publickey) {
4541             /*
4542              * Try public key authentication with the specified
4543              * key file.
4544              */
4545             int got_passphrase; /* need not be kept over crReturn */
4546             if (flags & FLAG_VERBOSE)
4547                 c_write_str(ssh, "Trying public key authentication.\r\n");
4548             s->keyfile = conf_get_filename(ssh->conf, CONF_keyfile);
4549             logeventf(ssh, "Trying public key \"%s\"",
4550                       filename_to_str(s->keyfile));
4551             s->tried_publickey = 1;
4552             got_passphrase = FALSE;
4553             while (!got_passphrase) {
4554                 /*
4555                  * Get a passphrase, if necessary.
4556                  */
4557                 char *passphrase = NULL;    /* only written after crReturn */
4558                 const char *error;
4559                 if (!s->privatekey_encrypted) {
4560                     if (flags & FLAG_VERBOSE)
4561                         c_write_str(ssh, "No passphrase required.\r\n");
4562                     passphrase = NULL;
4563                 } else {
4564                     int ret; /* need not be kept over crReturn */
4565                     s->cur_prompt = new_prompts(ssh->frontend);
4566                     s->cur_prompt->to_server = FALSE;
4567                     s->cur_prompt->name = dupstr("SSH key passphrase");
4568                     add_prompt(s->cur_prompt,
4569                                dupprintf("Passphrase for key \"%.100s\": ",
4570                                          s->publickey_comment), FALSE);
4571                     ret = get_userpass_input(s->cur_prompt, NULL, 0);
4572                     while (ret < 0) {
4573                         ssh->send_ok = 1;
4574                         crWaitUntil(!pktin);
4575                         ret = get_userpass_input(s->cur_prompt, in, inlen);
4576                         ssh->send_ok = 0;
4577                     }
4578                     if (!ret) {
4579                         /* Failed to get a passphrase. Terminate. */
4580                         free_prompts(s->cur_prompt);
4581                         ssh_disconnect(ssh, NULL, "Unable to authenticate",
4582                                        0, TRUE);
4583                         crStop(0);
4584                     }
4585                     passphrase = dupstr(s->cur_prompt->prompts[0]->result);
4586                     free_prompts(s->cur_prompt);
4587                 }
4588                 /*
4589                  * Try decrypting key with passphrase.
4590                  */
4591                 s->keyfile = conf_get_filename(ssh->conf, CONF_keyfile);
4592                 ret = loadrsakey(s->keyfile, &s->key, passphrase,
4593                                  &error);
4594                 if (passphrase) {
4595                     smemclr(passphrase, strlen(passphrase));
4596                     sfree(passphrase);
4597                 }
4598                 if (ret == 1) {
4599                     /* Correct passphrase. */
4600                     got_passphrase = TRUE;
4601                 } else if (ret == 0) {
4602                     c_write_str(ssh, "Couldn't load private key from ");
4603                     c_write_str(ssh, filename_to_str(s->keyfile));
4604                     c_write_str(ssh, " (");
4605                     c_write_str(ssh, error);
4606                     c_write_str(ssh, ").\r\n");
4607                     got_passphrase = FALSE;
4608                     break;             /* go and try something else */
4609                 } else if (ret == -1) {
4610                     c_write_str(ssh, "Wrong passphrase.\r\n"); /* FIXME */
4611                     got_passphrase = FALSE;
4612                     /* and try again */
4613                 } else {
4614                     assert(0 && "unexpected return from loadrsakey()");
4615                     got_passphrase = FALSE;   /* placate optimisers */
4616                 }
4617             }
4618
4619             if (got_passphrase) {
4620
4621                 /*
4622                  * Send a public key attempt.
4623                  */
4624                 send_packet(ssh, SSH1_CMSG_AUTH_RSA,
4625                             PKT_BIGNUM, s->key.modulus, PKT_END);
4626
4627                 crWaitUntil(pktin);
4628                 if (pktin->type == SSH1_SMSG_FAILURE) {
4629                     c_write_str(ssh, "Server refused our public key.\r\n");
4630                     continue;          /* go and try something else */
4631                 }
4632                 if (pktin->type != SSH1_SMSG_AUTH_RSA_CHALLENGE) {
4633                     bombout(("Bizarre response to offer of public key"));
4634                     crStop(0);
4635                 }
4636
4637                 {
4638                     int i;
4639                     unsigned char buffer[32];
4640                     Bignum challenge, response;
4641
4642                     if ((challenge = ssh1_pkt_getmp(pktin)) == NULL) {
4643                         bombout(("Server's RSA challenge was badly formatted"));
4644                         crStop(0);
4645                     }
4646                     response = rsadecrypt(challenge, &s->key);
4647                     freebn(s->key.private_exponent);/* burn the evidence */
4648
4649                     for (i = 0; i < 32; i++) {
4650                         buffer[i] = bignum_byte(response, 31 - i);
4651                     }
4652
4653                     MD5Init(&md5c);
4654                     MD5Update(&md5c, buffer, 32);
4655                     MD5Update(&md5c, s->session_id, 16);
4656                     MD5Final(buffer, &md5c);
4657
4658                     send_packet(ssh, SSH1_CMSG_AUTH_RSA_RESPONSE,
4659                                 PKT_DATA, buffer, 16, PKT_END);
4660
4661                     freebn(challenge);
4662                     freebn(response);
4663                 }
4664
4665                 crWaitUntil(pktin);
4666                 if (pktin->type == SSH1_SMSG_FAILURE) {
4667                     if (flags & FLAG_VERBOSE)
4668                         c_write_str(ssh, "Failed to authenticate with"
4669                                     " our public key.\r\n");
4670                     continue;          /* go and try something else */
4671                 } else if (pktin->type != SSH1_SMSG_SUCCESS) {
4672                     bombout(("Bizarre response to RSA authentication response"));
4673                     crStop(0);
4674                 }
4675
4676                 break;                 /* we're through! */
4677             }
4678
4679         }
4680
4681         /*
4682          * Otherwise, try various forms of password-like authentication.
4683          */
4684         s->cur_prompt = new_prompts(ssh->frontend);
4685
4686         if (conf_get_int(ssh->conf, CONF_try_tis_auth) &&
4687             (s->supported_auths_mask & (1 << SSH1_AUTH_TIS)) &&
4688             !s->tis_auth_refused) {
4689             s->pwpkt_type = SSH1_CMSG_AUTH_TIS_RESPONSE;
4690             logevent("Requested TIS authentication");
4691             send_packet(ssh, SSH1_CMSG_AUTH_TIS, PKT_END);
4692             crWaitUntil(pktin);
4693             if (pktin->type != SSH1_SMSG_AUTH_TIS_CHALLENGE) {
4694                 logevent("TIS authentication declined");
4695                 if (flags & FLAG_INTERACTIVE)
4696                     c_write_str(ssh, "TIS authentication refused.\r\n");
4697                 s->tis_auth_refused = 1;
4698                 continue;
4699             } else {
4700                 char *challenge;
4701                 int challengelen;
4702                 char *instr_suf, *prompt;
4703
4704                 ssh_pkt_getstring(pktin, &challenge, &challengelen);
4705                 if (!challenge) {
4706                     bombout(("TIS challenge packet was badly formed"));
4707                     crStop(0);
4708                 }
4709                 logevent("Received TIS challenge");
4710                 s->cur_prompt->to_server = TRUE;
4711                 s->cur_prompt->name = dupstr("SSH TIS authentication");
4712                 /* Prompt heuristic comes from OpenSSH */
4713                 if (memchr(challenge, '\n', challengelen)) {
4714                     instr_suf = dupstr("");
4715                     prompt = dupprintf("%.*s", challengelen, challenge);
4716                 } else {
4717                     instr_suf = dupprintf("%.*s", challengelen, challenge);
4718                     prompt = dupstr("Response: ");
4719                 }
4720                 s->cur_prompt->instruction =
4721                     dupprintf("Using TIS authentication.%s%s",
4722                               (*instr_suf) ? "\n" : "",
4723                               instr_suf);
4724                 s->cur_prompt->instr_reqd = TRUE;
4725                 add_prompt(s->cur_prompt, prompt, FALSE);
4726                 sfree(instr_suf);
4727             }
4728         }
4729         if (conf_get_int(ssh->conf, CONF_try_tis_auth) &&
4730             (s->supported_auths_mask & (1 << SSH1_AUTH_CCARD)) &&
4731             !s->ccard_auth_refused) {
4732             s->pwpkt_type = SSH1_CMSG_AUTH_CCARD_RESPONSE;
4733             logevent("Requested CryptoCard authentication");
4734             send_packet(ssh, SSH1_CMSG_AUTH_CCARD, PKT_END);
4735             crWaitUntil(pktin);
4736             if (pktin->type != SSH1_SMSG_AUTH_CCARD_CHALLENGE) {
4737                 logevent("CryptoCard authentication declined");
4738                 c_write_str(ssh, "CryptoCard authentication refused.\r\n");
4739                 s->ccard_auth_refused = 1;
4740                 continue;
4741             } else {
4742                 char *challenge;
4743                 int challengelen;
4744                 char *instr_suf, *prompt;
4745
4746                 ssh_pkt_getstring(pktin, &challenge, &challengelen);
4747                 if (!challenge) {
4748                     bombout(("CryptoCard challenge packet was badly formed"));
4749                     crStop(0);
4750                 }
4751                 logevent("Received CryptoCard challenge");
4752                 s->cur_prompt->to_server = TRUE;
4753                 s->cur_prompt->name = dupstr("SSH CryptoCard authentication");
4754                 s->cur_prompt->name_reqd = FALSE;
4755                 /* Prompt heuristic comes from OpenSSH */
4756                 if (memchr(challenge, '\n', challengelen)) {
4757                     instr_suf = dupstr("");
4758                     prompt = dupprintf("%.*s", challengelen, challenge);
4759                 } else {
4760                     instr_suf = dupprintf("%.*s", challengelen, challenge);
4761                     prompt = dupstr("Response: ");
4762                 }
4763                 s->cur_prompt->instruction =
4764                     dupprintf("Using CryptoCard authentication.%s%s",
4765                               (*instr_suf) ? "\n" : "",
4766                               instr_suf);
4767                 s->cur_prompt->instr_reqd = TRUE;
4768                 add_prompt(s->cur_prompt, prompt, FALSE);
4769                 sfree(instr_suf);
4770             }
4771         }
4772         if (s->pwpkt_type == SSH1_CMSG_AUTH_PASSWORD) {
4773             if ((s->supported_auths_mask & (1 << SSH1_AUTH_PASSWORD)) == 0) {
4774                 bombout(("No supported authentication methods available"));
4775                 crStop(0);
4776             }
4777             s->cur_prompt->to_server = TRUE;
4778             s->cur_prompt->name = dupstr("SSH password");
4779             add_prompt(s->cur_prompt, dupprintf("%s@%s's password: ",
4780                                                 ssh->username, ssh->savedhost),
4781                        FALSE);
4782         }
4783
4784         /*
4785          * Show password prompt, having first obtained it via a TIS
4786          * or CryptoCard exchange if we're doing TIS or CryptoCard
4787          * authentication.
4788          */
4789         {
4790             int ret; /* need not be kept over crReturn */
4791             ret = get_userpass_input(s->cur_prompt, NULL, 0);
4792             while (ret < 0) {
4793                 ssh->send_ok = 1;
4794                 crWaitUntil(!pktin);
4795                 ret = get_userpass_input(s->cur_prompt, in, inlen);
4796                 ssh->send_ok = 0;
4797             }
4798             if (!ret) {
4799                 /*
4800                  * Failed to get a password (for example
4801                  * because one was supplied on the command line
4802                  * which has already failed to work). Terminate.
4803                  */
4804                 free_prompts(s->cur_prompt);
4805                 ssh_disconnect(ssh, NULL, "Unable to authenticate", 0, TRUE);
4806                 crStop(0);
4807             }
4808         }
4809
4810         if (s->pwpkt_type == SSH1_CMSG_AUTH_PASSWORD) {
4811             /*
4812              * Defence against traffic analysis: we send a
4813              * whole bunch of packets containing strings of
4814              * different lengths. One of these strings is the
4815              * password, in a SSH1_CMSG_AUTH_PASSWORD packet.
4816              * The others are all random data in
4817              * SSH1_MSG_IGNORE packets. This way a passive
4818              * listener can't tell which is the password, and
4819              * hence can't deduce the password length.
4820              * 
4821              * Anybody with a password length greater than 16
4822              * bytes is going to have enough entropy in their
4823              * password that a listener won't find it _that_
4824              * much help to know how long it is. So what we'll
4825              * do is:
4826              * 
4827              *  - if password length < 16, we send 15 packets
4828              *    containing string lengths 1 through 15
4829              * 
4830              *  - otherwise, we let N be the nearest multiple
4831              *    of 8 below the password length, and send 8
4832              *    packets containing string lengths N through
4833              *    N+7. This won't obscure the order of
4834              *    magnitude of the password length, but it will
4835              *    introduce a bit of extra uncertainty.
4836              * 
4837              * A few servers can't deal with SSH1_MSG_IGNORE, at
4838              * least in this context. For these servers, we need
4839              * an alternative defence. We make use of the fact
4840              * that the password is interpreted as a C string:
4841              * so we can append a NUL, then some random data.
4842              * 
4843              * A few servers can deal with neither SSH1_MSG_IGNORE
4844              * here _nor_ a padded password string.
4845              * For these servers we are left with no defences
4846              * against password length sniffing.
4847              */
4848             if (!(ssh->remote_bugs & BUG_CHOKES_ON_SSH1_IGNORE) &&
4849                 !(ssh->remote_bugs & BUG_NEEDS_SSH1_PLAIN_PASSWORD)) {
4850                 /*
4851                  * The server can deal with SSH1_MSG_IGNORE, so
4852                  * we can use the primary defence.
4853                  */
4854                 int bottom, top, pwlen, i;
4855                 char *randomstr;
4856
4857                 pwlen = strlen(s->cur_prompt->prompts[0]->result);
4858                 if (pwlen < 16) {
4859                     bottom = 0;    /* zero length passwords are OK! :-) */
4860                     top = 15;
4861                 } else {
4862                     bottom = pwlen & ~7;
4863                     top = bottom + 7;
4864                 }
4865
4866                 assert(pwlen >= bottom && pwlen <= top);
4867
4868                 randomstr = snewn(top + 1, char);
4869
4870                 for (i = bottom; i <= top; i++) {
4871                     if (i == pwlen) {
4872                         defer_packet(ssh, s->pwpkt_type,
4873                                      PKT_STR,s->cur_prompt->prompts[0]->result,
4874                                      PKT_END);
4875                     } else {
4876                         for (j = 0; j < i; j++) {
4877                             do {
4878                                 randomstr[j] = random_byte();
4879                             } while (randomstr[j] == '\0');
4880                         }
4881                         randomstr[i] = '\0';
4882                         defer_packet(ssh, SSH1_MSG_IGNORE,
4883                                      PKT_STR, randomstr, PKT_END);
4884                     }
4885                 }
4886                 logevent("Sending password with camouflage packets");
4887                 ssh_pkt_defersend(ssh);
4888                 sfree(randomstr);
4889             } 
4890             else if (!(ssh->remote_bugs & BUG_NEEDS_SSH1_PLAIN_PASSWORD)) {
4891                 /*
4892                  * The server can't deal with SSH1_MSG_IGNORE
4893                  * but can deal with padded passwords, so we
4894                  * can use the secondary defence.
4895                  */
4896                 char string[64];
4897                 char *ss;
4898                 int len;
4899
4900                 len = strlen(s->cur_prompt->prompts[0]->result);
4901                 if (len < sizeof(string)) {
4902                     ss = string;
4903                     strcpy(string, s->cur_prompt->prompts[0]->result);
4904                     len++;             /* cover the zero byte */
4905                     while (len < sizeof(string)) {
4906                         string[len++] = (char) random_byte();
4907                     }
4908                 } else {
4909                     ss = s->cur_prompt->prompts[0]->result;
4910                 }
4911                 logevent("Sending length-padded password");
4912                 send_packet(ssh, s->pwpkt_type,
4913                             PKT_INT, len, PKT_DATA, ss, len,
4914                             PKT_END);
4915             } else {
4916                 /*
4917                  * The server is believed unable to cope with
4918                  * any of our password camouflage methods.
4919                  */
4920                 int len;
4921                 len = strlen(s->cur_prompt->prompts[0]->result);
4922                 logevent("Sending unpadded password");
4923                 send_packet(ssh, s->pwpkt_type,
4924                             PKT_INT, len,
4925                             PKT_DATA, s->cur_prompt->prompts[0]->result, len,
4926                             PKT_END);
4927             }
4928         } else {
4929             send_packet(ssh, s->pwpkt_type,
4930                         PKT_STR, s->cur_prompt->prompts[0]->result,
4931                         PKT_END);
4932         }
4933         logevent("Sent password");
4934         free_prompts(s->cur_prompt);
4935         crWaitUntil(pktin);
4936         if (pktin->type == SSH1_SMSG_FAILURE) {
4937             if (flags & FLAG_VERBOSE)
4938                 c_write_str(ssh, "Access denied\r\n");
4939             logevent("Authentication refused");
4940         } else if (pktin->type != SSH1_SMSG_SUCCESS) {
4941             bombout(("Strange packet received, type %d", pktin->type));
4942             crStop(0);
4943         }
4944     }
4945
4946     /* Clear up */
4947     if (s->publickey_blob) {
4948         sfree(s->publickey_blob);
4949         sfree(s->publickey_comment);
4950     }
4951
4952     logevent("Authentication successful");
4953
4954     crFinish(1);
4955 }
4956
4957 static void ssh_channel_try_eof(struct ssh_channel *c)
4958 {
4959     Ssh ssh = c->ssh;
4960     assert(c->pending_eof);          /* precondition for calling us */
4961     if (c->halfopen)
4962         return;                 /* can't close: not even opened yet */
4963     if (ssh->version == 2 && bufchain_size(&c->v.v2.outbuffer) > 0)
4964         return;              /* can't send EOF: pending outgoing data */
4965
4966     c->pending_eof = FALSE;            /* we're about to send it */
4967     if (ssh->version == 1) {
4968         send_packet(ssh, SSH1_MSG_CHANNEL_CLOSE, PKT_INT, c->remoteid,
4969                     PKT_END);
4970         c->closes |= CLOSES_SENT_EOF;
4971     } else {
4972         struct Packet *pktout;
4973         pktout = ssh2_pkt_init(SSH2_MSG_CHANNEL_EOF);
4974         ssh2_pkt_adduint32(pktout, c->remoteid);
4975         ssh2_pkt_send(ssh, pktout);
4976         c->closes |= CLOSES_SENT_EOF;
4977         ssh2_channel_check_close(c);
4978     }
4979 }
4980
4981 Conf *sshfwd_get_conf(struct ssh_channel *c)
4982 {
4983     Ssh ssh = c->ssh;
4984     return ssh->conf;
4985 }
4986
4987 void sshfwd_write_eof(struct ssh_channel *c)
4988 {
4989     Ssh ssh = c->ssh;
4990
4991     if (ssh->state == SSH_STATE_CLOSED)
4992         return;
4993
4994     if (c->closes & CLOSES_SENT_EOF)
4995         return;
4996
4997     c->pending_eof = TRUE;
4998     ssh_channel_try_eof(c);
4999 }
5000
5001 void sshfwd_unclean_close(struct ssh_channel *c, const char *err)
5002 {
5003     Ssh ssh = c->ssh;
5004
5005     if (ssh->state == SSH_STATE_CLOSED)
5006         return;
5007
5008     switch (c->type) {
5009       case CHAN_X11:
5010         x11_close(c->u.x11.xconn);
5011         logeventf(ssh, "Forwarded X11 connection terminated due to local "
5012                   "error: %s", err);
5013         break;
5014       case CHAN_SOCKDATA:
5015         pfd_close(c->u.pfd.pf);
5016         logeventf(ssh, "Forwarded port closed due to local error: %s", err);
5017         break;
5018     }
5019     c->type = CHAN_ZOMBIE;
5020     c->pending_eof = FALSE;   /* this will confuse a zombie channel */
5021
5022     ssh2_channel_check_close(c);
5023 }
5024
5025 int sshfwd_write(struct ssh_channel *c, char *buf, int len)
5026 {
5027     Ssh ssh = c->ssh;
5028
5029     if (ssh->state == SSH_STATE_CLOSED)
5030         return 0;
5031
5032     return ssh_send_channel_data(c, buf, len);
5033 }
5034
5035 void sshfwd_unthrottle(struct ssh_channel *c, int bufsize)
5036 {
5037     Ssh ssh = c->ssh;
5038
5039     if (ssh->state == SSH_STATE_CLOSED)
5040         return;
5041
5042     ssh_channel_unthrottle(c, bufsize);
5043 }
5044
5045 static void ssh_queueing_handler(Ssh ssh, struct Packet *pktin)
5046 {
5047     struct queued_handler *qh = ssh->qhead;
5048
5049     assert(qh != NULL);
5050
5051     assert(pktin->type == qh->msg1 || pktin->type == qh->msg2);
5052
5053     if (qh->msg1 > 0) {
5054         assert(ssh->packet_dispatch[qh->msg1] == ssh_queueing_handler);
5055         ssh->packet_dispatch[qh->msg1] = ssh->q_saved_handler1;
5056     }
5057     if (qh->msg2 > 0) {
5058         assert(ssh->packet_dispatch[qh->msg2] == ssh_queueing_handler);
5059         ssh->packet_dispatch[qh->msg2] = ssh->q_saved_handler2;
5060     }
5061
5062     if (qh->next) {
5063         ssh->qhead = qh->next;
5064
5065         if (ssh->qhead->msg1 > 0) {
5066             ssh->q_saved_handler1 = ssh->packet_dispatch[ssh->qhead->msg1];
5067             ssh->packet_dispatch[ssh->qhead->msg1] = ssh_queueing_handler;
5068         }
5069         if (ssh->qhead->msg2 > 0) {
5070             ssh->q_saved_handler2 = ssh->packet_dispatch[ssh->qhead->msg2];
5071             ssh->packet_dispatch[ssh->qhead->msg2] = ssh_queueing_handler;
5072         }
5073     } else {
5074         ssh->qhead = ssh->qtail = NULL;
5075     }
5076
5077     qh->handler(ssh, pktin, qh->ctx);
5078
5079     sfree(qh);
5080 }
5081
5082 static void ssh_queue_handler(Ssh ssh, int msg1, int msg2,
5083                               chandler_fn_t handler, void *ctx)
5084 {
5085     struct queued_handler *qh;
5086
5087     qh = snew(struct queued_handler);
5088     qh->msg1 = msg1;
5089     qh->msg2 = msg2;
5090     qh->handler = handler;
5091     qh->ctx = ctx;
5092     qh->next = NULL;
5093
5094     if (ssh->qtail == NULL) {
5095         ssh->qhead = qh;
5096
5097         if (qh->msg1 > 0) {
5098             ssh->q_saved_handler1 = ssh->packet_dispatch[ssh->qhead->msg1];
5099             ssh->packet_dispatch[qh->msg1] = ssh_queueing_handler;
5100         }
5101         if (qh->msg2 > 0) {
5102             ssh->q_saved_handler2 = ssh->packet_dispatch[ssh->qhead->msg2];
5103             ssh->packet_dispatch[qh->msg2] = ssh_queueing_handler;
5104         }
5105     } else {
5106         ssh->qtail->next = qh;
5107     }
5108     ssh->qtail = qh;
5109 }
5110
5111 static void ssh_rportfwd_succfail(Ssh ssh, struct Packet *pktin, void *ctx)
5112 {
5113     struct ssh_rportfwd *rpf, *pf = (struct ssh_rportfwd *)ctx;
5114
5115     if (pktin->type == (ssh->version == 1 ? SSH1_SMSG_SUCCESS :
5116                         SSH2_MSG_REQUEST_SUCCESS)) {
5117         logeventf(ssh, "Remote port forwarding from %s enabled",
5118                   pf->sportdesc);
5119     } else {
5120         logeventf(ssh, "Remote port forwarding from %s refused",
5121                   pf->sportdesc);
5122
5123         rpf = del234(ssh->rportfwds, pf);
5124         assert(rpf == pf);
5125         pf->pfrec->remote = NULL;
5126         free_rportfwd(pf);
5127     }
5128 }
5129
5130 int ssh_alloc_sharing_rportfwd(Ssh ssh, const char *shost, int sport,
5131                                void *share_ctx)
5132 {
5133     struct ssh_rportfwd *pf = snew(struct ssh_rportfwd);
5134     pf->dhost = NULL;
5135     pf->dport = 0;
5136     pf->share_ctx = share_ctx;
5137     pf->shost = dupstr(shost);
5138     pf->sport = sport;
5139     pf->sportdesc = NULL;
5140     if (!ssh->rportfwds) {
5141         assert(ssh->version == 2);
5142         ssh->rportfwds = newtree234(ssh_rportcmp_ssh2);
5143     }
5144     if (add234(ssh->rportfwds, pf) != pf) {
5145         sfree(pf->shost);
5146         sfree(pf);
5147         return FALSE;
5148     }
5149     return TRUE;
5150 }
5151
5152 static void ssh_sharing_global_request_response(Ssh ssh, struct Packet *pktin,
5153                                                 void *ctx)
5154 {
5155     share_got_pkt_from_server(ctx, pktin->type,
5156                               pktin->body, pktin->length);
5157 }
5158
5159 void ssh_sharing_queue_global_request(Ssh ssh, void *share_ctx)
5160 {
5161     ssh_queue_handler(ssh, SSH2_MSG_REQUEST_SUCCESS, SSH2_MSG_REQUEST_FAILURE,
5162                       ssh_sharing_global_request_response, share_ctx);
5163 }
5164
5165 static void ssh_setup_portfwd(Ssh ssh, Conf *conf)
5166 {
5167     struct ssh_portfwd *epf;
5168     int i;
5169     char *key, *val;
5170
5171     if (!ssh->portfwds) {
5172         ssh->portfwds = newtree234(ssh_portcmp);
5173     } else {
5174         /*
5175          * Go through the existing port forwardings and tag them
5176          * with status==DESTROY. Any that we want to keep will be
5177          * re-enabled (status==KEEP) as we go through the
5178          * configuration and find out which bits are the same as
5179          * they were before.
5180          */
5181         struct ssh_portfwd *epf;
5182         int i;
5183         for (i = 0; (epf = index234(ssh->portfwds, i)) != NULL; i++)
5184             epf->status = DESTROY;
5185     }
5186
5187     for (val = conf_get_str_strs(conf, CONF_portfwd, NULL, &key);
5188          val != NULL;
5189          val = conf_get_str_strs(conf, CONF_portfwd, key, &key)) {
5190         char *kp, *kp2, *vp, *vp2;
5191         char address_family, type;
5192         int sport,dport,sserv,dserv;
5193         char *sports, *dports, *saddr, *host;
5194
5195         kp = key;
5196
5197         address_family = 'A';
5198         type = 'L';
5199         if (*kp == 'A' || *kp == '4' || *kp == '6')
5200             address_family = *kp++;
5201         if (*kp == 'L' || *kp == 'R')
5202             type = *kp++;
5203
5204         if ((kp2 = host_strchr(kp, ':')) != NULL) {
5205             /*
5206              * There's a colon in the middle of the source port
5207              * string, which means that the part before it is
5208              * actually a source address.
5209              */
5210             char *saddr_tmp = dupprintf("%.*s", (int)(kp2 - kp), kp);
5211             saddr = host_strduptrim(saddr_tmp);
5212             sfree(saddr_tmp);
5213             sports = kp2+1;
5214         } else {
5215             saddr = NULL;
5216             sports = kp;
5217         }
5218         sport = atoi(sports);
5219         sserv = 0;
5220         if (sport == 0) {
5221             sserv = 1;
5222             sport = net_service_lookup(sports);
5223             if (!sport) {
5224                 logeventf(ssh, "Service lookup failed for source"
5225                           " port \"%s\"", sports);
5226             }
5227         }
5228
5229         if (type == 'L' && !strcmp(val, "D")) {
5230             /* dynamic forwarding */
5231             host = NULL;
5232             dports = NULL;
5233             dport = -1;
5234             dserv = 0;
5235             type = 'D';
5236         } else {
5237             /* ordinary forwarding */
5238             vp = val;
5239             vp2 = vp + host_strcspn(vp, ":");
5240             host = dupprintf("%.*s", (int)(vp2 - vp), vp);
5241             if (*vp2)
5242                 vp2++;
5243             dports = vp2;
5244             dport = atoi(dports);
5245             dserv = 0;
5246             if (dport == 0) {
5247                 dserv = 1;
5248                 dport = net_service_lookup(dports);
5249                 if (!dport) {
5250                     logeventf(ssh, "Service lookup failed for destination"
5251                               " port \"%s\"", dports);
5252                 }
5253             }
5254         }
5255
5256         if (sport && dport) {
5257             /* Set up a description of the source port. */
5258             struct ssh_portfwd *pfrec, *epfrec;
5259
5260             pfrec = snew(struct ssh_portfwd);
5261             pfrec->type = type;
5262             pfrec->saddr = saddr;
5263             pfrec->sserv = sserv ? dupstr(sports) : NULL;
5264             pfrec->sport = sport;
5265             pfrec->daddr = host;
5266             pfrec->dserv = dserv ? dupstr(dports) : NULL;
5267             pfrec->dport = dport;
5268             pfrec->local = NULL;
5269             pfrec->remote = NULL;
5270             pfrec->addressfamily = (address_family == '4' ? ADDRTYPE_IPV4 :
5271                                     address_family == '6' ? ADDRTYPE_IPV6 :
5272                                     ADDRTYPE_UNSPEC);
5273
5274             epfrec = add234(ssh->portfwds, pfrec);
5275             if (epfrec != pfrec) {
5276                 if (epfrec->status == DESTROY) {
5277                     /*
5278                      * We already have a port forwarding up and running
5279                      * with precisely these parameters. Hence, no need
5280                      * to do anything; simply re-tag the existing one
5281                      * as KEEP.
5282                      */
5283                     epfrec->status = KEEP;
5284                 }
5285                 /*
5286                  * Anything else indicates that there was a duplicate
5287                  * in our input, which we'll silently ignore.
5288                  */
5289                 free_portfwd(pfrec);
5290             } else {
5291                 pfrec->status = CREATE;
5292             }
5293         } else {
5294             sfree(saddr);
5295             sfree(host);
5296         }
5297     }
5298
5299     /*
5300      * Now go through and destroy any port forwardings which were
5301      * not re-enabled.
5302      */
5303     for (i = 0; (epf = index234(ssh->portfwds, i)) != NULL; i++)
5304         if (epf->status == DESTROY) {
5305             char *message;
5306
5307             message = dupprintf("%s port forwarding from %s%s%d",
5308                                 epf->type == 'L' ? "local" :
5309                                 epf->type == 'R' ? "remote" : "dynamic",
5310                                 epf->saddr ? epf->saddr : "",
5311                                 epf->saddr ? ":" : "",
5312                                 epf->sport);
5313
5314             if (epf->type != 'D') {
5315                 char *msg2 = dupprintf("%s to %s:%d", message,
5316                                        epf->daddr, epf->dport);
5317                 sfree(message);
5318                 message = msg2;
5319             }
5320
5321             logeventf(ssh, "Cancelling %s", message);
5322             sfree(message);
5323
5324             /* epf->remote or epf->local may be NULL if setting up a
5325              * forwarding failed. */
5326             if (epf->remote) {
5327                 struct ssh_rportfwd *rpf = epf->remote;
5328                 struct Packet *pktout;
5329
5330                 /*
5331                  * Cancel the port forwarding at the server
5332                  * end.
5333                  */
5334                 if (ssh->version == 1) {
5335                     /*
5336                      * We cannot cancel listening ports on the
5337                      * server side in SSH-1! There's no message
5338                      * to support it. Instead, we simply remove
5339                      * the rportfwd record from the local end
5340                      * so that any connections the server tries
5341                      * to make on it are rejected.
5342                      */
5343                 } else {
5344                     pktout = ssh2_pkt_init(SSH2_MSG_GLOBAL_REQUEST);
5345                     ssh2_pkt_addstring(pktout, "cancel-tcpip-forward");
5346                     ssh2_pkt_addbool(pktout, 0);/* _don't_ want reply */
5347                     if (epf->saddr) {
5348                         ssh2_pkt_addstring(pktout, epf->saddr);
5349                     } else if (conf_get_int(conf, CONF_rport_acceptall)) {
5350                         /* XXX: rport_acceptall may not represent
5351                          * what was used to open the original connection,
5352                          * since it's reconfigurable. */
5353                         ssh2_pkt_addstring(pktout, "");
5354                     } else {
5355                         ssh2_pkt_addstring(pktout, "localhost");
5356                     }
5357                     ssh2_pkt_adduint32(pktout, epf->sport);
5358                     ssh2_pkt_send(ssh, pktout);
5359                 }
5360
5361                 del234(ssh->rportfwds, rpf);
5362                 free_rportfwd(rpf);
5363             } else if (epf->local) {
5364                 pfl_terminate(epf->local);
5365             }
5366
5367             delpos234(ssh->portfwds, i);
5368             free_portfwd(epf);
5369             i--;                       /* so we don't skip one in the list */
5370         }
5371
5372     /*
5373      * And finally, set up any new port forwardings (status==CREATE).
5374      */
5375     for (i = 0; (epf = index234(ssh->portfwds, i)) != NULL; i++)
5376         if (epf->status == CREATE) {
5377             char *sportdesc, *dportdesc;
5378             sportdesc = dupprintf("%s%s%s%s%d%s",
5379                                   epf->saddr ? epf->saddr : "",
5380                                   epf->saddr ? ":" : "",
5381                                   epf->sserv ? epf->sserv : "",
5382                                   epf->sserv ? "(" : "",
5383                                   epf->sport,
5384                                   epf->sserv ? ")" : "");
5385             if (epf->type == 'D') {
5386                 dportdesc = NULL;
5387             } else {
5388                 dportdesc = dupprintf("%s:%s%s%d%s",
5389                                       epf->daddr,
5390                                       epf->dserv ? epf->dserv : "",
5391                                       epf->dserv ? "(" : "",
5392                                       epf->dport,
5393                                       epf->dserv ? ")" : "");
5394             }
5395
5396             if (epf->type == 'L') {
5397                 char *err = pfl_listen(epf->daddr, epf->dport,
5398                                        epf->saddr, epf->sport,
5399                                        ssh, conf, &epf->local,
5400                                        epf->addressfamily);
5401
5402                 logeventf(ssh, "Local %sport %s forwarding to %s%s%s",
5403                           epf->addressfamily == ADDRTYPE_IPV4 ? "IPv4 " :
5404                           epf->addressfamily == ADDRTYPE_IPV6 ? "IPv6 " : "",
5405                           sportdesc, dportdesc,
5406                           err ? " failed: " : "", err ? err : "");
5407                 if (err)
5408                     sfree(err);
5409             } else if (epf->type == 'D') {
5410                 char *err = pfl_listen(NULL, -1, epf->saddr, epf->sport,
5411                                        ssh, conf, &epf->local,
5412                                        epf->addressfamily);
5413
5414                 logeventf(ssh, "Local %sport %s SOCKS dynamic forwarding%s%s",
5415                           epf->addressfamily == ADDRTYPE_IPV4 ? "IPv4 " :
5416                           epf->addressfamily == ADDRTYPE_IPV6 ? "IPv6 " : "",
5417                           sportdesc,
5418                           err ? " failed: " : "", err ? err : "");
5419
5420                 if (err)
5421                     sfree(err);
5422             } else {
5423                 struct ssh_rportfwd *pf;
5424
5425                 /*
5426                  * Ensure the remote port forwardings tree exists.
5427                  */
5428                 if (!ssh->rportfwds) {
5429                     if (ssh->version == 1)
5430                         ssh->rportfwds = newtree234(ssh_rportcmp_ssh1);
5431                     else
5432                         ssh->rportfwds = newtree234(ssh_rportcmp_ssh2);
5433                 }
5434
5435                 pf = snew(struct ssh_rportfwd);
5436                 pf->share_ctx = NULL;
5437                 pf->dhost = dupstr(epf->daddr);
5438                 pf->dport = epf->dport;
5439                 if (epf->saddr) {
5440                     pf->shost = dupstr(epf->saddr);
5441                 } else if (conf_get_int(conf, CONF_rport_acceptall)) {
5442                     pf->shost = dupstr("");
5443                 } else {
5444                     pf->shost = dupstr("localhost");
5445                 }
5446                 pf->sport = epf->sport;
5447                 if (add234(ssh->rportfwds, pf) != pf) {
5448                     logeventf(ssh, "Duplicate remote port forwarding to %s:%d",
5449                               epf->daddr, epf->dport);
5450                     sfree(pf);
5451                 } else {
5452                     logeventf(ssh, "Requesting remote port %s"
5453                               " forward to %s", sportdesc, dportdesc);
5454
5455                     pf->sportdesc = sportdesc;
5456                     sportdesc = NULL;
5457                     epf->remote = pf;
5458                     pf->pfrec = epf;
5459
5460                     if (ssh->version == 1) {
5461                         send_packet(ssh, SSH1_CMSG_PORT_FORWARD_REQUEST,
5462                                     PKT_INT, epf->sport,
5463                                     PKT_STR, epf->daddr,
5464                                     PKT_INT, epf->dport,
5465                                     PKT_END);
5466                         ssh_queue_handler(ssh, SSH1_SMSG_SUCCESS,
5467                                           SSH1_SMSG_FAILURE,
5468                                           ssh_rportfwd_succfail, pf);
5469                     } else {
5470                         struct Packet *pktout;
5471                         pktout = ssh2_pkt_init(SSH2_MSG_GLOBAL_REQUEST);
5472                         ssh2_pkt_addstring(pktout, "tcpip-forward");
5473                         ssh2_pkt_addbool(pktout, 1);/* want reply */
5474                         ssh2_pkt_addstring(pktout, pf->shost);
5475                         ssh2_pkt_adduint32(pktout, pf->sport);
5476                         ssh2_pkt_send(ssh, pktout);
5477
5478                         ssh_queue_handler(ssh, SSH2_MSG_REQUEST_SUCCESS,
5479                                           SSH2_MSG_REQUEST_FAILURE,
5480                                           ssh_rportfwd_succfail, pf);
5481                     }
5482                 }
5483             }
5484             sfree(sportdesc);
5485             sfree(dportdesc);
5486         }
5487 }
5488
5489 static void ssh1_smsg_stdout_stderr_data(Ssh ssh, struct Packet *pktin)
5490 {
5491     char *string;
5492     int stringlen, bufsize;
5493
5494     ssh_pkt_getstring(pktin, &string, &stringlen);
5495     if (string == NULL) {
5496         bombout(("Incoming terminal data packet was badly formed"));
5497         return;
5498     }
5499
5500     bufsize = from_backend(ssh->frontend, pktin->type == SSH1_SMSG_STDERR_DATA,
5501                            string, stringlen);
5502     if (!ssh->v1_stdout_throttling && bufsize > SSH1_BUFFER_LIMIT) {
5503         ssh->v1_stdout_throttling = 1;
5504         ssh_throttle_conn(ssh, +1);
5505     }
5506 }
5507
5508 static void ssh1_smsg_x11_open(Ssh ssh, struct Packet *pktin)
5509 {
5510     /* Remote side is trying to open a channel to talk to our
5511      * X-Server. Give them back a local channel number. */
5512     struct ssh_channel *c;
5513     int remoteid = ssh_pkt_getuint32(pktin);
5514
5515     logevent("Received X11 connect request");
5516     /* Refuse if X11 forwarding is disabled. */
5517     if (!ssh->X11_fwd_enabled) {
5518         send_packet(ssh, SSH1_MSG_CHANNEL_OPEN_FAILURE,
5519                     PKT_INT, remoteid, PKT_END);
5520         logevent("Rejected X11 connect request");
5521     } else {
5522         c = snew(struct ssh_channel);
5523         c->ssh = ssh;
5524
5525         ssh_channel_init(c);
5526         c->u.x11.xconn = x11_init(ssh->x11authtree, c, NULL, -1);
5527         c->remoteid = remoteid;
5528         c->halfopen = FALSE;
5529         c->type = CHAN_X11;     /* identify channel type */
5530         send_packet(ssh, SSH1_MSG_CHANNEL_OPEN_CONFIRMATION,
5531                     PKT_INT, c->remoteid, PKT_INT,
5532                     c->localid, PKT_END);
5533         logevent("Opened X11 forward channel");
5534     }
5535 }
5536
5537 static void ssh1_smsg_agent_open(Ssh ssh, struct Packet *pktin)
5538 {
5539     /* Remote side is trying to open a channel to talk to our
5540      * agent. Give them back a local channel number. */
5541     struct ssh_channel *c;
5542     int remoteid = ssh_pkt_getuint32(pktin);
5543
5544     /* Refuse if agent forwarding is disabled. */
5545     if (!ssh->agentfwd_enabled) {
5546         send_packet(ssh, SSH1_MSG_CHANNEL_OPEN_FAILURE,
5547                     PKT_INT, remoteid, PKT_END);
5548     } else {
5549         c = snew(struct ssh_channel);
5550         c->ssh = ssh;
5551         ssh_channel_init(c);
5552         c->remoteid = remoteid;
5553         c->halfopen = FALSE;
5554         c->type = CHAN_AGENT;   /* identify channel type */
5555         c->u.a.lensofar = 0;
5556         c->u.a.message = NULL;
5557         c->u.a.outstanding_requests = 0;
5558         send_packet(ssh, SSH1_MSG_CHANNEL_OPEN_CONFIRMATION,
5559                     PKT_INT, c->remoteid, PKT_INT, c->localid,
5560                     PKT_END);
5561     }
5562 }
5563
5564 static void ssh1_msg_port_open(Ssh ssh, struct Packet *pktin)
5565 {
5566     /* Remote side is trying to open a channel to talk to a
5567      * forwarded port. Give them back a local channel number. */
5568     struct ssh_rportfwd pf, *pfp;
5569     int remoteid;
5570     int hostsize, port;
5571     char *host;
5572     char *err;
5573
5574     remoteid = ssh_pkt_getuint32(pktin);
5575     ssh_pkt_getstring(pktin, &host, &hostsize);
5576     port = ssh_pkt_getuint32(pktin);
5577
5578     pf.dhost = dupprintf("%.*s", hostsize, NULLTOEMPTY(host));
5579     pf.dport = port;
5580     pfp = find234(ssh->rportfwds, &pf, NULL);
5581
5582     if (pfp == NULL) {
5583         logeventf(ssh, "Rejected remote port open request for %s:%d",
5584                   pf.dhost, port);
5585         send_packet(ssh, SSH1_MSG_CHANNEL_OPEN_FAILURE,
5586                     PKT_INT, remoteid, PKT_END);
5587     } else {
5588         struct ssh_channel *c = snew(struct ssh_channel);
5589         c->ssh = ssh;
5590
5591         logeventf(ssh, "Received remote port open request for %s:%d",
5592                   pf.dhost, port);
5593         err = pfd_connect(&c->u.pfd.pf, pf.dhost, port,
5594                           c, ssh->conf, pfp->pfrec->addressfamily);
5595         if (err != NULL) {
5596             logeventf(ssh, "Port open failed: %s", err);
5597             sfree(err);
5598             sfree(c);
5599             send_packet(ssh, SSH1_MSG_CHANNEL_OPEN_FAILURE,
5600                         PKT_INT, remoteid, PKT_END);
5601         } else {
5602             ssh_channel_init(c);
5603             c->remoteid = remoteid;
5604             c->halfopen = FALSE;
5605             c->type = CHAN_SOCKDATA;    /* identify channel type */
5606             send_packet(ssh, SSH1_MSG_CHANNEL_OPEN_CONFIRMATION,
5607                         PKT_INT, c->remoteid, PKT_INT,
5608                         c->localid, PKT_END);
5609             logevent("Forwarded port opened successfully");
5610         }
5611     }
5612
5613     sfree(pf.dhost);
5614 }
5615
5616 static void ssh1_msg_channel_open_confirmation(Ssh ssh, struct Packet *pktin)
5617 {
5618     struct ssh_channel *c;
5619
5620     c = ssh_channel_msg(ssh, pktin);
5621     if (c && c->type == CHAN_SOCKDATA) {
5622         c->remoteid = ssh_pkt_getuint32(pktin);
5623         c->halfopen = FALSE;
5624         c->throttling_conn = 0;
5625         pfd_confirm(c->u.pfd.pf);
5626     }
5627
5628     if (c && c->pending_eof) {
5629         /*
5630          * We have a pending close on this channel,
5631          * which we decided on before the server acked
5632          * the channel open. So now we know the
5633          * remoteid, we can close it again.
5634          */
5635         ssh_channel_try_eof(c);
5636     }
5637 }
5638
5639 static void ssh1_msg_channel_open_failure(Ssh ssh, struct Packet *pktin)
5640 {
5641     struct ssh_channel *c;
5642
5643     c = ssh_channel_msg(ssh, pktin);
5644     if (c && c->type == CHAN_SOCKDATA) {
5645         logevent("Forwarded connection refused by server");
5646         pfd_close(c->u.pfd.pf);
5647         del234(ssh->channels, c);
5648         sfree(c);
5649     }
5650 }
5651
5652 static void ssh1_msg_channel_close(Ssh ssh, struct Packet *pktin)
5653 {
5654     /* Remote side closes a channel. */
5655     struct ssh_channel *c;
5656
5657     c = ssh_channel_msg(ssh, pktin);
5658     if (c) {
5659
5660         if (pktin->type == SSH1_MSG_CHANNEL_CLOSE &&
5661             !(c->closes & CLOSES_RCVD_EOF)) {
5662             /*
5663              * Received CHANNEL_CLOSE, which we translate into
5664              * outgoing EOF.
5665              */
5666             int send_close = FALSE;
5667
5668             c->closes |= CLOSES_RCVD_EOF;
5669
5670             switch (c->type) {
5671               case CHAN_X11:
5672                 assert(c->u.x11.xconn != NULL);
5673                 x11_send_eof(c->u.x11.xconn);
5674                 break;
5675               case CHAN_SOCKDATA:
5676                 assert(c->u.pfd.pf != NULL);
5677                 pfd_send_eof(c->u.pfd.pf);
5678                 break;
5679               case CHAN_AGENT:
5680                 send_close = TRUE;
5681                 break;
5682             }
5683
5684             if (send_close && !(c->closes & CLOSES_SENT_EOF)) {
5685                 send_packet(ssh, SSH1_MSG_CHANNEL_CLOSE, PKT_INT, c->remoteid,
5686                             PKT_END);
5687                 c->closes |= CLOSES_SENT_EOF;
5688             }
5689         }
5690
5691         if (pktin->type == SSH1_MSG_CHANNEL_CLOSE_CONFIRMATION &&
5692             !(c->closes & CLOSES_RCVD_CLOSE)) {
5693
5694             if (!(c->closes & CLOSES_SENT_EOF)) {
5695                 bombout(("Received CHANNEL_CLOSE_CONFIRMATION for channel %u"
5696                          " for which we never sent CHANNEL_CLOSE\n",
5697                          c->localid));
5698             }
5699
5700             c->closes |= CLOSES_RCVD_CLOSE;
5701         }
5702
5703         if (!((CLOSES_SENT_EOF | CLOSES_RCVD_EOF) & ~c->closes) &&
5704             !(c->closes & CLOSES_SENT_CLOSE)) {
5705             send_packet(ssh, SSH1_MSG_CHANNEL_CLOSE_CONFIRMATION,
5706                         PKT_INT, c->remoteid, PKT_END);
5707             c->closes |= CLOSES_SENT_CLOSE;
5708         }
5709
5710         if (!((CLOSES_SENT_CLOSE | CLOSES_RCVD_CLOSE) & ~c->closes))
5711             ssh_channel_destroy(c);
5712     }
5713 }
5714
5715 /*
5716  * Handle incoming data on an SSH-1 or SSH-2 agent-forwarding channel.
5717  */
5718 static int ssh_agent_channel_data(struct ssh_channel *c, char *data,
5719                                   int length)
5720 {
5721     while (length > 0) {
5722         if (c->u.a.lensofar < 4) {
5723             unsigned int l = min(4 - c->u.a.lensofar, (unsigned)length);
5724             memcpy(c->u.a.msglen + c->u.a.lensofar, data, l);
5725             data += l;
5726             length -= l;
5727             c->u.a.lensofar += l;
5728         }
5729         if (c->u.a.lensofar == 4) {
5730             c->u.a.totallen = 4 + GET_32BIT(c->u.a.msglen);
5731             c->u.a.message = snewn(c->u.a.totallen, unsigned char);
5732             memcpy(c->u.a.message, c->u.a.msglen, 4);
5733         }
5734         if (c->u.a.lensofar >= 4 && length > 0) {
5735             unsigned int l = min(c->u.a.totallen - c->u.a.lensofar,
5736                                  (unsigned)length);
5737             memcpy(c->u.a.message + c->u.a.lensofar, data, l);
5738             data += l;
5739             length -= l;
5740             c->u.a.lensofar += l;
5741         }
5742         if (c->u.a.lensofar == c->u.a.totallen) {
5743             void *reply;
5744             int replylen;
5745             c->u.a.outstanding_requests++;
5746             if (agent_query(c->u.a.message, c->u.a.totallen, &reply, &replylen,
5747                             ssh_agentf_callback, c))
5748                 ssh_agentf_callback(c, reply, replylen);
5749             sfree(c->u.a.message);
5750             c->u.a.message = NULL;
5751             c->u.a.lensofar = 0;
5752         }
5753     }
5754     return 0;   /* agent channels never back up */
5755 }
5756
5757 static int ssh_channel_data(struct ssh_channel *c, int is_stderr,
5758                             char *data,  int length)
5759 {
5760     switch (c->type) {
5761       case CHAN_MAINSESSION:
5762         return from_backend(c->ssh->frontend, is_stderr, data, length);
5763       case CHAN_X11:
5764         return x11_send(c->u.x11.xconn, data, length);
5765       case CHAN_SOCKDATA:
5766         return pfd_send(c->u.pfd.pf, data, length);
5767       case CHAN_AGENT:
5768         return ssh_agent_channel_data(c, data, length);
5769     }
5770     return 0;
5771 }
5772
5773 static void ssh1_msg_channel_data(Ssh ssh, struct Packet *pktin)
5774 {
5775     /* Data sent down one of our channels. */
5776     char *p;
5777     int len;
5778     struct ssh_channel *c;
5779
5780     c = ssh_channel_msg(ssh, pktin);
5781     ssh_pkt_getstring(pktin, &p, &len);
5782
5783     if (c) {
5784         int bufsize = ssh_channel_data(c, FALSE, p, len);
5785         if (!c->throttling_conn && bufsize > SSH1_BUFFER_LIMIT) {
5786             c->throttling_conn = 1;
5787             ssh_throttle_conn(ssh, +1);
5788         }
5789     }
5790 }
5791
5792 static void ssh1_smsg_exit_status(Ssh ssh, struct Packet *pktin)
5793 {
5794     ssh->exitcode = ssh_pkt_getuint32(pktin);
5795     logeventf(ssh, "Server sent command exit status %d", ssh->exitcode);
5796     send_packet(ssh, SSH1_CMSG_EXIT_CONFIRMATION, PKT_END);
5797     /*
5798      * In case `helpful' firewalls or proxies tack
5799      * extra human-readable text on the end of the
5800      * session which we might mistake for another
5801      * encrypted packet, we close the session once
5802      * we've sent EXIT_CONFIRMATION.
5803      */
5804     ssh_disconnect(ssh, NULL, NULL, 0, TRUE);
5805 }
5806
5807 /* Helper function to deal with sending tty modes for REQUEST_PTY */
5808 static void ssh1_send_ttymode(void *data,
5809                               const struct ssh_ttymode *mode, char *val)
5810 {
5811     struct Packet *pktout = (struct Packet *)data;
5812     unsigned int arg = 0;
5813
5814     switch (mode->type) {
5815       case TTY_OP_CHAR:
5816         arg = ssh_tty_parse_specchar(val);
5817         break;
5818       case TTY_OP_BOOL:
5819         arg = ssh_tty_parse_boolean(val);
5820         break;
5821     }
5822     ssh2_pkt_addbyte(pktout, mode->opcode);
5823     ssh2_pkt_addbyte(pktout, arg);
5824 }
5825
5826 int ssh_agent_forwarding_permitted(Ssh ssh)
5827 {
5828     return conf_get_int(ssh->conf, CONF_agentfwd) && agent_exists();
5829 }
5830
5831 static void do_ssh1_connection(Ssh ssh, const unsigned char *in, int inlen,
5832                                struct Packet *pktin)
5833 {
5834     crBegin(ssh->do_ssh1_connection_crstate);
5835
5836     ssh->packet_dispatch[SSH1_SMSG_STDOUT_DATA] = 
5837         ssh->packet_dispatch[SSH1_SMSG_STDERR_DATA] =
5838         ssh1_smsg_stdout_stderr_data;
5839
5840     ssh->packet_dispatch[SSH1_MSG_CHANNEL_OPEN_CONFIRMATION] =
5841         ssh1_msg_channel_open_confirmation;
5842     ssh->packet_dispatch[SSH1_MSG_CHANNEL_OPEN_FAILURE] =
5843         ssh1_msg_channel_open_failure;
5844     ssh->packet_dispatch[SSH1_MSG_CHANNEL_CLOSE] =
5845         ssh->packet_dispatch[SSH1_MSG_CHANNEL_CLOSE_CONFIRMATION] =
5846         ssh1_msg_channel_close;
5847     ssh->packet_dispatch[SSH1_MSG_CHANNEL_DATA] = ssh1_msg_channel_data;
5848     ssh->packet_dispatch[SSH1_SMSG_EXIT_STATUS] = ssh1_smsg_exit_status;
5849
5850     if (ssh_agent_forwarding_permitted(ssh)) {
5851         logevent("Requesting agent forwarding");
5852         send_packet(ssh, SSH1_CMSG_AGENT_REQUEST_FORWARDING, PKT_END);
5853         do {
5854             crReturnV;
5855         } while (!pktin);
5856         if (pktin->type != SSH1_SMSG_SUCCESS
5857             && pktin->type != SSH1_SMSG_FAILURE) {
5858             bombout(("Protocol confusion"));
5859             crStopV;
5860         } else if (pktin->type == SSH1_SMSG_FAILURE) {
5861             logevent("Agent forwarding refused");
5862         } else {
5863             logevent("Agent forwarding enabled");
5864             ssh->agentfwd_enabled = TRUE;
5865             ssh->packet_dispatch[SSH1_SMSG_AGENT_OPEN] = ssh1_smsg_agent_open;
5866         }
5867     }
5868
5869     if (conf_get_int(ssh->conf, CONF_x11_forward)) {
5870         ssh->x11disp =
5871             x11_setup_display(conf_get_str(ssh->conf, CONF_x11_display),
5872                               ssh->conf);
5873         if (!ssh->x11disp) {
5874             /* FIXME: return an error message from x11_setup_display */
5875             logevent("X11 forwarding not enabled: unable to"
5876                      " initialise X display");
5877         } else {
5878             ssh->x11auth = x11_invent_fake_auth
5879                 (ssh->x11authtree, conf_get_int(ssh->conf, CONF_x11_auth));
5880             ssh->x11auth->disp = ssh->x11disp;
5881
5882             logevent("Requesting X11 forwarding");
5883             if (ssh->v1_local_protoflags & SSH1_PROTOFLAG_SCREEN_NUMBER) {
5884                 send_packet(ssh, SSH1_CMSG_X11_REQUEST_FORWARDING,
5885                             PKT_STR, ssh->x11auth->protoname,
5886                             PKT_STR, ssh->x11auth->datastring,
5887                             PKT_INT, ssh->x11disp->screennum,
5888                             PKT_END);
5889             } else {
5890                 send_packet(ssh, SSH1_CMSG_X11_REQUEST_FORWARDING,
5891                             PKT_STR, ssh->x11auth->protoname,
5892                             PKT_STR, ssh->x11auth->datastring,
5893                             PKT_END);
5894             }
5895             do {
5896                 crReturnV;
5897             } while (!pktin);
5898             if (pktin->type != SSH1_SMSG_SUCCESS
5899                 && pktin->type != SSH1_SMSG_FAILURE) {
5900                 bombout(("Protocol confusion"));
5901                 crStopV;
5902             } else if (pktin->type == SSH1_SMSG_FAILURE) {
5903                 logevent("X11 forwarding refused");
5904             } else {
5905                 logevent("X11 forwarding enabled");
5906                 ssh->X11_fwd_enabled = TRUE;
5907                 ssh->packet_dispatch[SSH1_SMSG_X11_OPEN] = ssh1_smsg_x11_open;
5908             }
5909         }
5910     }
5911
5912     ssh_setup_portfwd(ssh, ssh->conf);
5913     ssh->packet_dispatch[SSH1_MSG_PORT_OPEN] = ssh1_msg_port_open;
5914
5915     if (!conf_get_int(ssh->conf, CONF_nopty)) {
5916         struct Packet *pkt;
5917         /* Unpick the terminal-speed string. */
5918         /* XXX perhaps we should allow no speeds to be sent. */
5919         ssh->ospeed = 38400; ssh->ispeed = 38400; /* last-resort defaults */
5920         sscanf(conf_get_str(ssh->conf, CONF_termspeed), "%d,%d", &ssh->ospeed, &ssh->ispeed);
5921         /* Send the pty request. */
5922         pkt = ssh1_pkt_init(SSH1_CMSG_REQUEST_PTY);
5923         ssh_pkt_addstring(pkt, conf_get_str(ssh->conf, CONF_termtype));
5924         ssh_pkt_adduint32(pkt, ssh->term_height);
5925         ssh_pkt_adduint32(pkt, ssh->term_width);
5926         ssh_pkt_adduint32(pkt, 0); /* width in pixels */
5927         ssh_pkt_adduint32(pkt, 0); /* height in pixels */
5928         parse_ttymodes(ssh, ssh1_send_ttymode, (void *)pkt);
5929         ssh_pkt_addbyte(pkt, SSH1_TTY_OP_ISPEED);
5930         ssh_pkt_adduint32(pkt, ssh->ispeed);
5931         ssh_pkt_addbyte(pkt, SSH1_TTY_OP_OSPEED);
5932         ssh_pkt_adduint32(pkt, ssh->ospeed);
5933         ssh_pkt_addbyte(pkt, SSH_TTY_OP_END);
5934         s_wrpkt(ssh, pkt);
5935         ssh->state = SSH_STATE_INTERMED;
5936         do {
5937             crReturnV;
5938         } while (!pktin);
5939         if (pktin->type != SSH1_SMSG_SUCCESS
5940             && pktin->type != SSH1_SMSG_FAILURE) {
5941             bombout(("Protocol confusion"));
5942             crStopV;
5943         } else if (pktin->type == SSH1_SMSG_FAILURE) {
5944             c_write_str(ssh, "Server refused to allocate pty\r\n");
5945             ssh->editing = ssh->echoing = 1;
5946         } else {
5947             logeventf(ssh, "Allocated pty (ospeed %dbps, ispeed %dbps)",
5948                       ssh->ospeed, ssh->ispeed);
5949             ssh->got_pty = TRUE;
5950         }
5951     } else {
5952         ssh->editing = ssh->echoing = 1;
5953     }
5954
5955     if (conf_get_int(ssh->conf, CONF_compression)) {
5956         send_packet(ssh, SSH1_CMSG_REQUEST_COMPRESSION, PKT_INT, 6, PKT_END);
5957         do {
5958             crReturnV;
5959         } while (!pktin);
5960         if (pktin->type != SSH1_SMSG_SUCCESS
5961             && pktin->type != SSH1_SMSG_FAILURE) {
5962             bombout(("Protocol confusion"));
5963             crStopV;
5964         } else if (pktin->type == SSH1_SMSG_FAILURE) {
5965             c_write_str(ssh, "Server refused to compress\r\n");
5966         }
5967         logevent("Started compression");
5968         ssh->v1_compressing = TRUE;
5969         ssh->cs_comp_ctx = zlib_compress_init();
5970         logevent("Initialised zlib (RFC1950) compression");
5971         ssh->sc_comp_ctx = zlib_decompress_init();
5972         logevent("Initialised zlib (RFC1950) decompression");
5973     }
5974
5975     /*
5976      * Start the shell or command.
5977      * 
5978      * Special case: if the first-choice command is an SSH-2
5979      * subsystem (hence not usable here) and the second choice
5980      * exists, we fall straight back to that.
5981      */
5982     {
5983         char *cmd = conf_get_str(ssh->conf, CONF_remote_cmd);
5984         
5985         if (conf_get_int(ssh->conf, CONF_ssh_subsys) &&
5986             conf_get_str(ssh->conf, CONF_remote_cmd2)) {
5987             cmd = conf_get_str(ssh->conf, CONF_remote_cmd2);
5988             ssh->fallback_cmd = TRUE;
5989         }
5990         if (*cmd)
5991             send_packet(ssh, SSH1_CMSG_EXEC_CMD, PKT_STR, cmd, PKT_END);
5992         else
5993             send_packet(ssh, SSH1_CMSG_EXEC_SHELL, PKT_END);
5994         logevent("Started session");
5995     }
5996
5997     ssh->state = SSH_STATE_SESSION;
5998     if (ssh->size_needed)
5999         ssh_size(ssh, ssh->term_width, ssh->term_height);
6000     if (ssh->eof_needed)
6001         ssh_special(ssh, TS_EOF);
6002
6003     if (ssh->ldisc)
6004         ldisc_echoedit_update(ssh->ldisc);  /* cause ldisc to notice changes */
6005     ssh->send_ok = 1;
6006     ssh->channels = newtree234(ssh_channelcmp);
6007     while (1) {
6008
6009         /*
6010          * By this point, most incoming packets are already being
6011          * handled by the dispatch table, and we need only pay
6012          * attention to the unusual ones.
6013          */
6014
6015         crReturnV;
6016         if (pktin) {
6017             if (pktin->type == SSH1_SMSG_SUCCESS) {
6018                 /* may be from EXEC_SHELL on some servers */
6019             } else if (pktin->type == SSH1_SMSG_FAILURE) {
6020                 /* may be from EXEC_SHELL on some servers
6021                  * if no pty is available or in other odd cases. Ignore */
6022             } else {
6023                 bombout(("Strange packet received: type %d", pktin->type));
6024                 crStopV;
6025             }
6026         } else {
6027             while (inlen > 0) {
6028                 int len = min(inlen, 512);
6029                 send_packet(ssh, SSH1_CMSG_STDIN_DATA,
6030                             PKT_INT, len, PKT_DATA, in, len,
6031                             PKT_END);
6032                 in += len;
6033                 inlen -= len;
6034             }
6035         }
6036     }
6037
6038     crFinishV;
6039 }
6040
6041 /*
6042  * Handle the top-level SSH-2 protocol.
6043  */
6044 static void ssh1_msg_debug(Ssh ssh, struct Packet *pktin)
6045 {
6046     char *msg;
6047     int msglen;
6048
6049     ssh_pkt_getstring(pktin, &msg, &msglen);
6050     logeventf(ssh, "Remote debug message: %.*s", msglen, NULLTOEMPTY(msg));
6051 }
6052
6053 static void ssh1_msg_disconnect(Ssh ssh, struct Packet *pktin)
6054 {
6055     /* log reason code in disconnect message */
6056     char *msg;
6057     int msglen;
6058
6059     ssh_pkt_getstring(pktin, &msg, &msglen);
6060     bombout(("Server sent disconnect message:\n\"%.*s\"",
6061              msglen, NULLTOEMPTY(msg)));
6062 }
6063
6064 static void ssh_msg_ignore(Ssh ssh, struct Packet *pktin)
6065 {
6066     /* Do nothing, because we're ignoring it! Duhh. */
6067 }
6068
6069 static void ssh1_protocol_setup(Ssh ssh)
6070 {
6071     int i;
6072
6073     /*
6074      * Most messages are handled by the coroutines.
6075      */
6076     for (i = 0; i < 256; i++)
6077         ssh->packet_dispatch[i] = NULL;
6078
6079     /*
6080      * These special message types we install handlers for.
6081      */
6082     ssh->packet_dispatch[SSH1_MSG_DISCONNECT] = ssh1_msg_disconnect;
6083     ssh->packet_dispatch[SSH1_MSG_IGNORE] = ssh_msg_ignore;
6084     ssh->packet_dispatch[SSH1_MSG_DEBUG] = ssh1_msg_debug;
6085 }
6086
6087 static void ssh1_protocol(Ssh ssh, const void *vin, int inlen,
6088                           struct Packet *pktin)
6089 {
6090     const unsigned char *in = (const unsigned char *)vin;
6091     if (ssh->state == SSH_STATE_CLOSED)
6092         return;
6093
6094     if (pktin && ssh->packet_dispatch[pktin->type]) {
6095         ssh->packet_dispatch[pktin->type](ssh, pktin);
6096         return;
6097     }
6098
6099     if (!ssh->protocol_initial_phase_done) {
6100         if (do_ssh1_login(ssh, in, inlen, pktin))
6101             ssh->protocol_initial_phase_done = TRUE;
6102         else
6103             return;
6104     }
6105
6106     do_ssh1_connection(ssh, in, inlen, pktin);
6107 }
6108
6109 /*
6110  * Utility routines for decoding comma-separated strings in KEXINIT.
6111  */
6112 static int first_in_commasep_string(char const *needle, char const *haystack,
6113                                     int haylen)
6114 {
6115     int needlen;
6116     if (!needle || !haystack)          /* protect against null pointers */
6117         return 0;
6118     needlen = strlen(needle);
6119
6120     if (haylen >= needlen &&       /* haystack is long enough */
6121         !memcmp(needle, haystack, needlen) &&   /* initial match */
6122         (haylen == needlen || haystack[needlen] == ',')
6123         /* either , or EOS follows */
6124         )
6125         return 1;
6126     return 0;
6127 }
6128
6129 static int in_commasep_string(char const *needle, char const *haystack,
6130                               int haylen)
6131 {
6132     char *p;
6133
6134     if (!needle || !haystack)          /* protect against null pointers */
6135         return 0;
6136     /*
6137      * Is it at the start of the string?
6138      */
6139     if (first_in_commasep_string(needle, haystack, haylen))
6140         return 1;
6141     /*
6142      * If not, search for the next comma and resume after that.
6143      * If no comma found, terminate.
6144      */
6145     p = memchr(haystack, ',', haylen);
6146     if (!p) return 0;
6147     /* + 1 to skip over comma */
6148     return in_commasep_string(needle, p + 1, haylen - (p + 1 - haystack));
6149 }
6150
6151 /*
6152  * Add a value to the comma-separated string at the end of the packet.
6153  */
6154 static void ssh2_pkt_addstring_commasep(struct Packet *pkt, const char *data)
6155 {
6156     if (pkt->length - pkt->savedpos > 0)
6157         ssh_pkt_addstring_str(pkt, ",");
6158     ssh_pkt_addstring_str(pkt, data);
6159 }
6160
6161
6162 /*
6163  * SSH-2 key derivation (RFC 4253 section 7.2).
6164  */
6165 static unsigned char *ssh2_mkkey(Ssh ssh, Bignum K, unsigned char *H,
6166                                  char chr, int keylen)
6167 {
6168     const struct ssh_hash *h = ssh->kex->hash;
6169     int keylen_padded;
6170     unsigned char *key;
6171     void *s, *s2;
6172
6173     if (keylen == 0)
6174         return NULL;
6175
6176     /* Round up to the next multiple of hash length. */
6177     keylen_padded = ((keylen + h->hlen - 1) / h->hlen) * h->hlen;
6178
6179     key = snewn(keylen_padded, unsigned char);
6180
6181     /* First hlen bytes. */
6182     s = h->init();
6183     if (!(ssh->remote_bugs & BUG_SSH2_DERIVEKEY))
6184         hash_mpint(h, s, K);
6185     h->bytes(s, H, h->hlen);
6186     h->bytes(s, &chr, 1);
6187     h->bytes(s, ssh->v2_session_id, ssh->v2_session_id_len);
6188     h->final(s, key);
6189
6190     /* Subsequent blocks of hlen bytes. */
6191     if (keylen_padded > h->hlen) {
6192         int offset;
6193
6194         s = h->init();
6195         if (!(ssh->remote_bugs & BUG_SSH2_DERIVEKEY))
6196             hash_mpint(h, s, K);
6197         h->bytes(s, H, h->hlen);
6198
6199         for (offset = h->hlen; offset < keylen_padded; offset += h->hlen) {
6200             h->bytes(s, key + offset - h->hlen, h->hlen);
6201             s2 = h->copy(s);
6202             h->final(s2, key + offset);
6203         }
6204
6205         h->free(s);
6206     }
6207
6208     /* Now clear any extra bytes of key material beyond the length
6209      * we're officially returning, because the caller won't know to
6210      * smemclr those. */
6211     if (keylen_padded > keylen)
6212         smemclr(key + keylen, keylen_padded - keylen);
6213
6214     return key;
6215 }
6216
6217 /*
6218  * Structure for constructing KEXINIT algorithm lists.
6219  */
6220 #define MAXKEXLIST 16
6221 struct kexinit_algorithm {
6222     const char *name;
6223     union {
6224         struct {
6225             const struct ssh_kex *kex;
6226             int warn;
6227         } kex;
6228         struct {
6229             const struct ssh_signkey *hostkey;
6230             int warn;
6231         } hk;
6232         struct {
6233             const struct ssh2_cipher *cipher;
6234             int warn;
6235         } cipher;
6236         struct {
6237             const struct ssh_mac *mac;
6238             int etm;
6239         } mac;
6240         const struct ssh_compress *comp;
6241     } u;
6242 };
6243
6244 /*
6245  * Find a slot in a KEXINIT algorithm list to use for a new algorithm.
6246  * If the algorithm is already in the list, return a pointer to its
6247  * entry, otherwise return an entry from the end of the list.
6248  * This assumes that every time a particular name is passed in, it
6249  * comes from the same string constant.  If this isn't true, this
6250  * function may need to be rewritten to use strcmp() instead.
6251  */
6252 static struct kexinit_algorithm *ssh2_kexinit_addalg(struct kexinit_algorithm
6253                                                      *list, const char *name)
6254 {
6255     int i;
6256
6257     for (i = 0; i < MAXKEXLIST; i++)
6258         if (list[i].name == NULL || list[i].name == name) {
6259             list[i].name = name;
6260             return &list[i];
6261         }
6262     assert(!"No space in KEXINIT list");
6263     return NULL;
6264 }
6265
6266 /*
6267  * Handle the SSH-2 transport layer.
6268  */
6269 static void do_ssh2_transport(Ssh ssh, const void *vin, int inlen,
6270                              struct Packet *pktin)
6271 {
6272     const unsigned char *in = (const unsigned char *)vin;
6273     enum kexlist {
6274         KEXLIST_KEX, KEXLIST_HOSTKEY, KEXLIST_CSCIPHER, KEXLIST_SCCIPHER,
6275         KEXLIST_CSMAC, KEXLIST_SCMAC, KEXLIST_CSCOMP, KEXLIST_SCCOMP,
6276         NKEXLIST
6277     };
6278     const char * kexlist_descr[NKEXLIST] = {
6279         "key exchange algorithm", "host key algorithm",
6280         "client-to-server cipher", "server-to-client cipher",
6281         "client-to-server MAC", "server-to-client MAC",
6282         "client-to-server compression method",
6283         "server-to-client compression method" };
6284     struct do_ssh2_transport_state {
6285         int crLine;
6286         int nbits, pbits, warn_kex, warn_hk, warn_cscipher, warn_sccipher;
6287         Bignum p, g, e, f, K;
6288         void *our_kexinit;
6289         int our_kexinitlen;
6290         int kex_init_value, kex_reply_value;
6291         const struct ssh_mac *const *maclist;
6292         int nmacs;
6293         const struct ssh2_cipher *cscipher_tobe;
6294         const struct ssh2_cipher *sccipher_tobe;
6295         const struct ssh_mac *csmac_tobe;
6296         const struct ssh_mac *scmac_tobe;
6297         int csmac_etm_tobe, scmac_etm_tobe;
6298         const struct ssh_compress *cscomp_tobe;
6299         const struct ssh_compress *sccomp_tobe;
6300         char *hostkeydata, *sigdata, *rsakeydata, *keystr, *fingerprint;
6301         int hostkeylen, siglen, rsakeylen;
6302         void *hkey;                    /* actual host key */
6303         void *rsakey;                  /* for RSA kex */
6304         void *eckey;                   /* for ECDH kex */
6305         unsigned char exchange_hash[SSH2_KEX_MAX_HASH_LEN];
6306         int n_preferred_kex;
6307         const struct ssh_kexes *preferred_kex[KEX_MAX];
6308         int n_preferred_hk;
6309         int preferred_hk[HK_MAX];
6310         int n_preferred_ciphers;
6311         const struct ssh2_ciphers *preferred_ciphers[CIPHER_MAX];
6312         const struct ssh_compress *preferred_comp;
6313         int userauth_succeeded;     /* for delayed compression */
6314         int pending_compression;
6315         int got_session_id, activated_authconn;
6316         struct Packet *pktout;
6317         int dlgret;
6318         int guessok;
6319         int ignorepkt;
6320         struct kexinit_algorithm kexlists[NKEXLIST][MAXKEXLIST];
6321     };
6322     crState(do_ssh2_transport_state);
6323
6324     assert(!ssh->bare_connection);
6325     assert(ssh->version == 2);
6326
6327     crBeginState;
6328
6329     s->cscipher_tobe = s->sccipher_tobe = NULL;
6330     s->csmac_tobe = s->scmac_tobe = NULL;
6331     s->cscomp_tobe = s->sccomp_tobe = NULL;
6332
6333     s->got_session_id = s->activated_authconn = FALSE;
6334     s->userauth_succeeded = FALSE;
6335     s->pending_compression = FALSE;
6336
6337     /*
6338      * Be prepared to work around the buggy MAC problem.
6339      */
6340     if (ssh->remote_bugs & BUG_SSH2_HMAC)
6341         s->maclist = buggymacs, s->nmacs = lenof(buggymacs);
6342     else
6343         s->maclist = macs, s->nmacs = lenof(macs);
6344
6345   begin_key_exchange:
6346     ssh->pkt_kctx = SSH2_PKTCTX_NOKEX;
6347     {
6348         int i, j, k, warn;
6349         struct kexinit_algorithm *alg;
6350
6351         /*
6352          * Set up the preferred key exchange. (NULL => warn below here)
6353          */
6354         s->n_preferred_kex = 0;
6355         for (i = 0; i < KEX_MAX; i++) {
6356             switch (conf_get_int_int(ssh->conf, CONF_ssh_kexlist, i)) {
6357               case KEX_DHGEX:
6358                 s->preferred_kex[s->n_preferred_kex++] =
6359                     &ssh_diffiehellman_gex;
6360                 break;
6361               case KEX_DHGROUP14:
6362                 s->preferred_kex[s->n_preferred_kex++] =
6363                     &ssh_diffiehellman_group14;
6364                 break;
6365               case KEX_DHGROUP1:
6366                 s->preferred_kex[s->n_preferred_kex++] =
6367                     &ssh_diffiehellman_group1;
6368                 break;
6369               case KEX_RSA:
6370                 s->preferred_kex[s->n_preferred_kex++] =
6371                     &ssh_rsa_kex;
6372                 break;
6373               case KEX_ECDH:
6374                 s->preferred_kex[s->n_preferred_kex++] =
6375                     &ssh_ecdh_kex;
6376                 break;
6377               case KEX_WARN:
6378                 /* Flag for later. Don't bother if it's the last in
6379                  * the list. */
6380                 if (i < KEX_MAX - 1) {
6381                     s->preferred_kex[s->n_preferred_kex++] = NULL;
6382                 }
6383                 break;
6384             }
6385         }
6386
6387         /*
6388          * Set up the preferred host key types. These are just the ids
6389          * in the enum in putty.h, so 'warn below here' is indicated
6390          * by HK_WARN.
6391          */
6392         s->n_preferred_hk = 0;
6393         for (i = 0; i < HK_MAX; i++) {
6394             int id = conf_get_int_int(ssh->conf, CONF_ssh_hklist, i);
6395             /* As above, don't bother with HK_WARN if it's last in the
6396              * list */
6397             if (id != HK_WARN || i < HK_MAX - 1)
6398                 s->preferred_hk[s->n_preferred_hk++] = id;
6399         }
6400
6401         /*
6402          * Set up the preferred ciphers. (NULL => warn below here)
6403          */
6404         s->n_preferred_ciphers = 0;
6405         for (i = 0; i < CIPHER_MAX; i++) {
6406             switch (conf_get_int_int(ssh->conf, CONF_ssh_cipherlist, i)) {
6407               case CIPHER_BLOWFISH:
6408                 s->preferred_ciphers[s->n_preferred_ciphers++] = &ssh2_blowfish;
6409                 break;
6410               case CIPHER_DES:
6411                 if (conf_get_int(ssh->conf, CONF_ssh2_des_cbc)) {
6412                     s->preferred_ciphers[s->n_preferred_ciphers++] = &ssh2_des;
6413                 }
6414                 break;
6415               case CIPHER_3DES:
6416                 s->preferred_ciphers[s->n_preferred_ciphers++] = &ssh2_3des;
6417                 break;
6418               case CIPHER_AES:
6419                 s->preferred_ciphers[s->n_preferred_ciphers++] = &ssh2_aes;
6420                 break;
6421               case CIPHER_ARCFOUR:
6422                 s->preferred_ciphers[s->n_preferred_ciphers++] = &ssh2_arcfour;
6423                 break;
6424               case CIPHER_CHACHA20:
6425                 s->preferred_ciphers[s->n_preferred_ciphers++] = &ssh2_ccp;
6426                 break;
6427               case CIPHER_WARN:
6428                 /* Flag for later. Don't bother if it's the last in
6429                  * the list. */
6430                 if (i < CIPHER_MAX - 1) {
6431                     s->preferred_ciphers[s->n_preferred_ciphers++] = NULL;
6432                 }
6433                 break;
6434             }
6435         }
6436
6437         /*
6438          * Set up preferred compression.
6439          */
6440         if (conf_get_int(ssh->conf, CONF_compression))
6441             s->preferred_comp = &ssh_zlib;
6442         else
6443             s->preferred_comp = &ssh_comp_none;
6444
6445         /*
6446          * Enable queueing of outgoing auth- or connection-layer
6447          * packets while we are in the middle of a key exchange.
6448          */
6449         ssh->queueing = TRUE;
6450
6451         /*
6452          * Flag that KEX is in progress.
6453          */
6454         ssh->kex_in_progress = TRUE;
6455
6456         for (i = 0; i < NKEXLIST; i++)
6457             for (j = 0; j < MAXKEXLIST; j++)
6458                 s->kexlists[i][j].name = NULL;
6459         /* List key exchange algorithms. */
6460         warn = FALSE;
6461         for (i = 0; i < s->n_preferred_kex; i++) {
6462             const struct ssh_kexes *k = s->preferred_kex[i];
6463             if (!k) warn = TRUE;
6464             else for (j = 0; j < k->nkexes; j++) {
6465                 alg = ssh2_kexinit_addalg(s->kexlists[KEXLIST_KEX],
6466                                           k->list[j]->name);
6467                 alg->u.kex.kex = k->list[j];
6468                 alg->u.kex.warn = warn;
6469             }
6470         }
6471         /* List server host key algorithms. */
6472         if (!s->got_session_id) {
6473             /*
6474              * In the first key exchange, we list all the algorithms
6475              * we're prepared to cope with, but prefer those algorithms
6476              * for which we have a host key for this host.
6477              *
6478              * If the host key algorithm is below the warning
6479              * threshold, we warn even if we did already have a key
6480              * for it, on the basis that if the user has just
6481              * reconfigured that host key type to be warned about,
6482              * they surely _do_ want to be alerted that a server
6483              * they're actually connecting to is using it.
6484              */
6485             warn = FALSE;
6486             for (i = 0; i < s->n_preferred_hk; i++) {
6487                 if (s->preferred_hk[i] == HK_WARN)
6488                     warn = TRUE;
6489                 for (j = 0; j < lenof(hostkey_algs); j++) {
6490                     if (hostkey_algs[j].id != s->preferred_hk[i])
6491                         continue;
6492                     if (have_ssh_host_key(ssh->savedhost, ssh->savedport,
6493                                           hostkey_algs[j].alg->keytype)) {
6494                         alg = ssh2_kexinit_addalg(s->kexlists[KEXLIST_HOSTKEY],
6495                                                   hostkey_algs[j].alg->name);
6496                         alg->u.hk.hostkey = hostkey_algs[j].alg;
6497                         alg->u.hk.warn = warn;
6498                     }
6499                 }
6500             }
6501             warn = FALSE;
6502             for (i = 0; i < s->n_preferred_hk; i++) {
6503                 if (s->preferred_hk[i] == HK_WARN)
6504                     warn = TRUE;
6505                 for (j = 0; j < lenof(hostkey_algs); j++) {
6506                     if (hostkey_algs[j].id != s->preferred_hk[i])
6507                         continue;
6508                     alg = ssh2_kexinit_addalg(s->kexlists[KEXLIST_HOSTKEY],
6509                                               hostkey_algs[j].alg->name);
6510                     alg->u.hk.hostkey = hostkey_algs[j].alg;
6511                     alg->u.hk.warn = warn;
6512                 }
6513             }
6514         } else {
6515             /*
6516              * In subsequent key exchanges, we list only the kex
6517              * algorithm that was selected in the first key exchange,
6518              * so that we keep getting the same host key and hence
6519              * don't have to interrupt the user's session to ask for
6520              * reverification.
6521              */
6522             assert(ssh->kex);
6523             alg = ssh2_kexinit_addalg(s->kexlists[KEXLIST_HOSTKEY],
6524                                       ssh->hostkey->name);
6525             alg->u.hk.hostkey = ssh->hostkey;
6526             alg->u.hk.warn = FALSE;
6527         }
6528         /* List encryption algorithms (client->server then server->client). */
6529         for (k = KEXLIST_CSCIPHER; k <= KEXLIST_SCCIPHER; k++) {
6530             warn = FALSE;
6531 #ifdef FUZZING
6532             alg = ssh2_kexinit_addalg(s->kexlists[k], "none");
6533             alg->u.cipher.cipher = NULL;
6534             alg->u.cipher.warn = warn;
6535 #endif /* FUZZING */
6536             for (i = 0; i < s->n_preferred_ciphers; i++) {
6537                 const struct ssh2_ciphers *c = s->preferred_ciphers[i];
6538                 if (!c) warn = TRUE;
6539                 else for (j = 0; j < c->nciphers; j++) {
6540                     alg = ssh2_kexinit_addalg(s->kexlists[k],
6541                                               c->list[j]->name);
6542                     alg->u.cipher.cipher = c->list[j];
6543                     alg->u.cipher.warn = warn;
6544                 }
6545             }
6546         }
6547         /* List MAC algorithms (client->server then server->client). */
6548         for (j = KEXLIST_CSMAC; j <= KEXLIST_SCMAC; j++) {
6549 #ifdef FUZZING
6550             alg = ssh2_kexinit_addalg(s->kexlists[j], "none");
6551             alg->u.mac.mac = NULL;
6552             alg->u.mac.etm = FALSE;
6553 #endif /* FUZZING */
6554             for (i = 0; i < s->nmacs; i++) {
6555                 alg = ssh2_kexinit_addalg(s->kexlists[j], s->maclist[i]->name);
6556                 alg->u.mac.mac = s->maclist[i];
6557                 alg->u.mac.etm = FALSE;
6558             }
6559             for (i = 0; i < s->nmacs; i++)
6560                 /* For each MAC, there may also be an ETM version,
6561                  * which we list second. */
6562                 if (s->maclist[i]->etm_name) {
6563                     alg = ssh2_kexinit_addalg(s->kexlists[j],
6564                                               s->maclist[i]->etm_name);
6565                     alg->u.mac.mac = s->maclist[i];
6566                     alg->u.mac.etm = TRUE;
6567                 }
6568         }
6569         /* List client->server compression algorithms,
6570          * then server->client compression algorithms. (We use the
6571          * same set twice.) */
6572         for (j = KEXLIST_CSCOMP; j <= KEXLIST_SCCOMP; j++) {
6573             assert(lenof(compressions) > 1);
6574             /* Prefer non-delayed versions */
6575             alg = ssh2_kexinit_addalg(s->kexlists[j], s->preferred_comp->name);
6576             alg->u.comp = s->preferred_comp;
6577             /* We don't even list delayed versions of algorithms until
6578              * they're allowed to be used, to avoid a race. See the end of
6579              * this function. */
6580             if (s->userauth_succeeded && s->preferred_comp->delayed_name) {
6581                 alg = ssh2_kexinit_addalg(s->kexlists[j],
6582                                           s->preferred_comp->delayed_name);
6583                 alg->u.comp = s->preferred_comp;
6584             }
6585             for (i = 0; i < lenof(compressions); i++) {
6586                 const struct ssh_compress *c = compressions[i];
6587                 alg = ssh2_kexinit_addalg(s->kexlists[j], c->name);
6588                 alg->u.comp = c;
6589                 if (s->userauth_succeeded && c->delayed_name) {
6590                     alg = ssh2_kexinit_addalg(s->kexlists[j], c->delayed_name);
6591                     alg->u.comp = c;
6592                 }
6593             }
6594         }
6595         /*
6596          * Construct and send our key exchange packet.
6597          */
6598         s->pktout = ssh2_pkt_init(SSH2_MSG_KEXINIT);
6599         for (i = 0; i < 16; i++)
6600             ssh2_pkt_addbyte(s->pktout, (unsigned char) random_byte());
6601         for (i = 0; i < NKEXLIST; i++) {
6602             ssh2_pkt_addstring_start(s->pktout);
6603             for (j = 0; j < MAXKEXLIST; j++) {
6604                 if (s->kexlists[i][j].name == NULL) break;
6605                 ssh2_pkt_addstring_commasep(s->pktout, s->kexlists[i][j].name);
6606             }
6607         }
6608         /* List client->server languages. Empty list. */
6609         ssh2_pkt_addstring_start(s->pktout);
6610         /* List server->client languages. Empty list. */
6611         ssh2_pkt_addstring_start(s->pktout);
6612         /* First KEX packet does _not_ follow, because we're not that brave. */
6613         ssh2_pkt_addbool(s->pktout, FALSE);
6614         /* Reserved. */
6615         ssh2_pkt_adduint32(s->pktout, 0);
6616     }
6617
6618     s->our_kexinitlen = s->pktout->length - 5;
6619     s->our_kexinit = snewn(s->our_kexinitlen, unsigned char);
6620     memcpy(s->our_kexinit, s->pktout->data + 5, s->our_kexinitlen); 
6621
6622     ssh2_pkt_send_noqueue(ssh, s->pktout);
6623
6624     if (!pktin)
6625         crWaitUntilV(pktin);
6626
6627     /*
6628      * Now examine the other side's KEXINIT to see what we're up
6629      * to.
6630      */
6631     {
6632         char *str;
6633         int i, j, len;
6634
6635         if (pktin->type != SSH2_MSG_KEXINIT) {
6636             bombout(("expected key exchange packet from server"));
6637             crStopV;
6638         }
6639         ssh->kex = NULL;
6640         ssh->hostkey = NULL;
6641         s->cscipher_tobe = NULL;
6642         s->sccipher_tobe = NULL;
6643         s->csmac_tobe = NULL;
6644         s->scmac_tobe = NULL;
6645         s->cscomp_tobe = NULL;
6646         s->sccomp_tobe = NULL;
6647         s->warn_kex = s->warn_hk = FALSE;
6648         s->warn_cscipher = s->warn_sccipher = FALSE;
6649
6650         pktin->savedpos += 16;          /* skip garbage cookie */
6651
6652         s->guessok = FALSE;
6653         for (i = 0; i < NKEXLIST; i++) {
6654             ssh_pkt_getstring(pktin, &str, &len);
6655             if (!str) {
6656                 bombout(("KEXINIT packet was incomplete"));
6657                 crStopV;
6658             }
6659
6660             /* If we've already selected a cipher which requires a
6661              * particular MAC, then just select that, and don't even
6662              * bother looking through the server's KEXINIT string for
6663              * MACs. */
6664             if (i == KEXLIST_CSMAC && s->cscipher_tobe &&
6665                 s->cscipher_tobe->required_mac) {
6666                 s->csmac_tobe = s->cscipher_tobe->required_mac;
6667                 s->csmac_etm_tobe = !!(s->csmac_tobe->etm_name);
6668                 goto matched;
6669             }
6670             if (i == KEXLIST_SCMAC && s->sccipher_tobe &&
6671                 s->sccipher_tobe->required_mac) {
6672                 s->scmac_tobe = s->sccipher_tobe->required_mac;
6673                 s->scmac_etm_tobe = !!(s->scmac_tobe->etm_name);
6674                 goto matched;
6675             }
6676
6677             for (j = 0; j < MAXKEXLIST; j++) {
6678                 struct kexinit_algorithm *alg = &s->kexlists[i][j];
6679                 if (alg->name == NULL) break;
6680                 if (in_commasep_string(alg->name, str, len)) {
6681                     /* We've found a matching algorithm. */
6682                     if (i == KEXLIST_KEX || i == KEXLIST_HOSTKEY) {
6683                         /* Check if we might need to ignore first kex pkt */
6684                         if (j != 0 ||
6685                             !first_in_commasep_string(alg->name, str, len))
6686                             s->guessok = FALSE;
6687                     }
6688                     if (i == KEXLIST_KEX) {
6689                         ssh->kex = alg->u.kex.kex;
6690                         s->warn_kex = alg->u.kex.warn;
6691                     } else if (i == KEXLIST_HOSTKEY) {
6692                         ssh->hostkey = alg->u.hk.hostkey;
6693                         s->warn_hk = alg->u.hk.warn;
6694                     } else if (i == KEXLIST_CSCIPHER) {
6695                         s->cscipher_tobe = alg->u.cipher.cipher;
6696                         s->warn_cscipher = alg->u.cipher.warn;
6697                     } else if (i == KEXLIST_SCCIPHER) {
6698                         s->sccipher_tobe = alg->u.cipher.cipher;
6699                         s->warn_sccipher = alg->u.cipher.warn;
6700                     } else if (i == KEXLIST_CSMAC) {
6701                         s->csmac_tobe = alg->u.mac.mac;
6702                         s->csmac_etm_tobe = alg->u.mac.etm;
6703                     } else if (i == KEXLIST_SCMAC) {
6704                         s->scmac_tobe = alg->u.mac.mac;
6705                         s->scmac_etm_tobe = alg->u.mac.etm;
6706                     } else if (i == KEXLIST_CSCOMP) {
6707                         s->cscomp_tobe = alg->u.comp;
6708                     } else if (i == KEXLIST_SCCOMP) {
6709                         s->sccomp_tobe = alg->u.comp;
6710                     }
6711                     goto matched;
6712                 }
6713                 if ((i == KEXLIST_CSCOMP || i == KEXLIST_SCCOMP) &&
6714                     in_commasep_string(alg->u.comp->delayed_name, str, len))
6715                     s->pending_compression = TRUE;  /* try this later */
6716             }
6717             bombout(("Couldn't agree a %s (available: %.*s)",
6718                      kexlist_descr[i], len, str));
6719             crStopV;
6720           matched:;
6721
6722             if (i == KEXLIST_HOSTKEY) {
6723                 int j;
6724
6725                 /*
6726                  * In addition to deciding which host key we're
6727                  * actually going to use, we should make a list of the
6728                  * host keys offered by the server which we _don't_
6729                  * have cached. These will be offered as cross-
6730                  * certification options by ssh_get_specials.
6731                  *
6732                  * We also count the key we're currently using for KEX
6733                  * as one we've already got, because by the time this
6734                  * menu becomes visible, it will be.
6735                  */
6736                 ssh->n_uncert_hostkeys = 0;
6737
6738                 for (j = 0; j < lenof(hostkey_algs); j++) {
6739                     if (hostkey_algs[j].alg != ssh->hostkey &&
6740                         in_commasep_string(hostkey_algs[j].alg->name,
6741                                            str, len) &&
6742                         !have_ssh_host_key(ssh->savedhost, ssh->savedport,
6743                                            hostkey_algs[j].alg->keytype)) {
6744                         ssh->uncert_hostkeys[ssh->n_uncert_hostkeys++] = j;
6745                     }
6746                 }
6747             }
6748         }
6749
6750         if (s->pending_compression) {
6751             logevent("Server supports delayed compression; "
6752                      "will try this later");
6753         }
6754         ssh_pkt_getstring(pktin, &str, &len);  /* client->server language */
6755         ssh_pkt_getstring(pktin, &str, &len);  /* server->client language */
6756         s->ignorepkt = ssh2_pkt_getbool(pktin) && !s->guessok;
6757
6758         ssh->exhash = ssh->kex->hash->init();
6759         hash_string(ssh->kex->hash, ssh->exhash, ssh->v_c, strlen(ssh->v_c));
6760         hash_string(ssh->kex->hash, ssh->exhash, ssh->v_s, strlen(ssh->v_s));
6761         hash_string(ssh->kex->hash, ssh->exhash,
6762             s->our_kexinit, s->our_kexinitlen);
6763         sfree(s->our_kexinit);
6764         /* Include the type byte in the hash of server's KEXINIT */
6765         hash_string(ssh->kex->hash, ssh->exhash,
6766                     pktin->body - 1, pktin->length + 1);
6767
6768         if (s->warn_kex) {
6769             ssh_set_frozen(ssh, 1);
6770             s->dlgret = askalg(ssh->frontend, "key-exchange algorithm",
6771                                ssh->kex->name,
6772                                ssh_dialog_callback, ssh);
6773             if (s->dlgret < 0) {
6774                 do {
6775                     crReturnV;
6776                     if (pktin) {
6777                         bombout(("Unexpected data from server while"
6778                                  " waiting for user response"));
6779                         crStopV;
6780                     }
6781                 } while (pktin || inlen > 0);
6782                 s->dlgret = ssh->user_response;
6783             }
6784             ssh_set_frozen(ssh, 0);
6785             if (s->dlgret == 0) {
6786                 ssh_disconnect(ssh, "User aborted at kex warning", NULL,
6787                                0, TRUE);
6788                 crStopV;
6789             }
6790         }
6791
6792         if (s->warn_hk) {
6793             int j, k;
6794             char *betteralgs;
6795
6796             ssh_set_frozen(ssh, 1);
6797
6798             /*
6799              * Change warning box wording depending on why we chose a
6800              * warning-level host key algorithm. If it's because
6801              * that's all we have *cached*, use the askhk mechanism,
6802              * and list the host keys we could usefully cross-certify.
6803              * Otherwise, use askalg for the standard wording.
6804              */
6805             betteralgs = NULL;
6806             for (j = 0; j < ssh->n_uncert_hostkeys; j++) {
6807                 const struct ssh_signkey_with_user_pref_id *hktype =
6808                     &hostkey_algs[ssh->uncert_hostkeys[j]];
6809                 int better = FALSE;
6810                 for (k = 0; k < HK_MAX; k++) {
6811                     int id = conf_get_int_int(ssh->conf, CONF_ssh_hklist, k);
6812                     if (id == HK_WARN) {
6813                         break;
6814                     } else if (id == hktype->id) {
6815                         better = TRUE;
6816                         break;
6817                     }
6818                 }
6819                 if (better) {
6820                     if (betteralgs) {
6821                         char *old_ba = betteralgs;
6822                         betteralgs = dupcat(betteralgs, ",",
6823                                             hktype->alg->name,
6824                                             (const char *)NULL);
6825                         sfree(old_ba);
6826                     } else {
6827                         betteralgs = dupstr(hktype->alg->name);
6828                     }
6829                 }
6830             }
6831             if (betteralgs) {
6832                 s->dlgret = askhk(ssh->frontend, ssh->hostkey->name,
6833                                   betteralgs, ssh_dialog_callback, ssh);
6834                 sfree(betteralgs);
6835             } else {
6836                 s->dlgret = askalg(ssh->frontend, "host key type",
6837                                    ssh->hostkey->name,
6838                                    ssh_dialog_callback, ssh);
6839             }
6840             if (s->dlgret < 0) {
6841                 do {
6842                     crReturnV;
6843                     if (pktin) {
6844                         bombout(("Unexpected data from server while"
6845                                  " waiting for user response"));
6846                         crStopV;
6847                     }
6848                 } while (pktin || inlen > 0);
6849                 s->dlgret = ssh->user_response;
6850             }
6851             ssh_set_frozen(ssh, 0);
6852             if (s->dlgret == 0) {
6853                 ssh_disconnect(ssh, "User aborted at host key warning", NULL,
6854                                0, TRUE);
6855                 crStopV;
6856             }
6857         }
6858
6859         if (s->warn_cscipher) {
6860             ssh_set_frozen(ssh, 1);
6861             s->dlgret = askalg(ssh->frontend,
6862                                "client-to-server cipher",
6863                                s->cscipher_tobe->name,
6864                                ssh_dialog_callback, ssh);
6865             if (s->dlgret < 0) {
6866                 do {
6867                     crReturnV;
6868                     if (pktin) {
6869                         bombout(("Unexpected data from server while"
6870                                  " waiting for user response"));
6871                         crStopV;
6872                     }
6873                 } while (pktin || inlen > 0);
6874                 s->dlgret = ssh->user_response;
6875             }
6876             ssh_set_frozen(ssh, 0);
6877             if (s->dlgret == 0) {
6878                 ssh_disconnect(ssh, "User aborted at cipher warning", NULL,
6879                                0, TRUE);
6880                 crStopV;
6881             }
6882         }
6883
6884         if (s->warn_sccipher) {
6885             ssh_set_frozen(ssh, 1);
6886             s->dlgret = askalg(ssh->frontend,
6887                                "server-to-client cipher",
6888                                s->sccipher_tobe->name,
6889                                ssh_dialog_callback, ssh);
6890             if (s->dlgret < 0) {
6891                 do {
6892                     crReturnV;
6893                     if (pktin) {
6894                         bombout(("Unexpected data from server while"
6895                                  " waiting for user response"));
6896                         crStopV;
6897                     }
6898                 } while (pktin || inlen > 0);
6899                 s->dlgret = ssh->user_response;
6900             }
6901             ssh_set_frozen(ssh, 0);
6902             if (s->dlgret == 0) {
6903                 ssh_disconnect(ssh, "User aborted at cipher warning", NULL,
6904                                0, TRUE);
6905                 crStopV;
6906             }
6907         }
6908
6909         if (s->ignorepkt) /* first_kex_packet_follows */
6910             crWaitUntilV(pktin);                /* Ignore packet */
6911     }
6912
6913     if (ssh->kex->main_type == KEXTYPE_DH) {
6914         /*
6915          * Work out the number of bits of key we will need from the
6916          * key exchange. We start with the maximum key length of
6917          * either cipher...
6918          */
6919         {
6920             int csbits, scbits;
6921
6922             csbits = s->cscipher_tobe ? s->cscipher_tobe->real_keybits : 0;
6923             scbits = s->sccipher_tobe ? s->sccipher_tobe->real_keybits : 0;
6924             s->nbits = (csbits > scbits ? csbits : scbits);
6925         }
6926         /* The keys only have hlen-bit entropy, since they're based on
6927          * a hash. So cap the key size at hlen bits. */
6928         if (s->nbits > ssh->kex->hash->hlen * 8)
6929             s->nbits = ssh->kex->hash->hlen * 8;
6930
6931         /*
6932          * If we're doing Diffie-Hellman group exchange, start by
6933          * requesting a group.
6934          */
6935         if (dh_is_gex(ssh->kex)) {
6936             logevent("Doing Diffie-Hellman group exchange");
6937             ssh->pkt_kctx = SSH2_PKTCTX_DHGEX;
6938             /*
6939              * Work out how big a DH group we will need to allow that
6940              * much data.
6941              */
6942             s->pbits = 512 << ((s->nbits - 1) / 64);
6943             if (s->pbits < DH_MIN_SIZE)
6944                 s->pbits = DH_MIN_SIZE;
6945             if (s->pbits > DH_MAX_SIZE)
6946                 s->pbits = DH_MAX_SIZE;
6947             if ((ssh->remote_bugs & BUG_SSH2_OLDGEX)) {
6948                 s->pktout = ssh2_pkt_init(SSH2_MSG_KEX_DH_GEX_REQUEST_OLD);
6949                 ssh2_pkt_adduint32(s->pktout, s->pbits);
6950             } else {
6951                 s->pktout = ssh2_pkt_init(SSH2_MSG_KEX_DH_GEX_REQUEST);
6952                 ssh2_pkt_adduint32(s->pktout, DH_MIN_SIZE);
6953                 ssh2_pkt_adduint32(s->pktout, s->pbits);
6954                 ssh2_pkt_adduint32(s->pktout, DH_MAX_SIZE);
6955             }
6956             ssh2_pkt_send_noqueue(ssh, s->pktout);
6957
6958             crWaitUntilV(pktin);
6959             if (pktin->type != SSH2_MSG_KEX_DH_GEX_GROUP) {
6960                 bombout(("expected key exchange group packet from server"));
6961                 crStopV;
6962             }
6963             s->p = ssh2_pkt_getmp(pktin);
6964             s->g = ssh2_pkt_getmp(pktin);
6965             if (!s->p || !s->g) {
6966                 bombout(("unable to read mp-ints from incoming group packet"));
6967                 crStopV;
6968             }
6969             ssh->kex_ctx = dh_setup_gex(s->p, s->g);
6970             s->kex_init_value = SSH2_MSG_KEX_DH_GEX_INIT;
6971             s->kex_reply_value = SSH2_MSG_KEX_DH_GEX_REPLY;
6972         } else {
6973             ssh->pkt_kctx = SSH2_PKTCTX_DHGROUP;
6974             ssh->kex_ctx = dh_setup_group(ssh->kex);
6975             s->kex_init_value = SSH2_MSG_KEXDH_INIT;
6976             s->kex_reply_value = SSH2_MSG_KEXDH_REPLY;
6977             logeventf(ssh, "Using Diffie-Hellman with standard group \"%s\"",
6978                       ssh->kex->groupname);
6979         }
6980
6981         logeventf(ssh, "Doing Diffie-Hellman key exchange with hash %s",
6982                   ssh->kex->hash->text_name);
6983         /*
6984          * Now generate and send e for Diffie-Hellman.
6985          */
6986         set_busy_status(ssh->frontend, BUSY_CPU); /* this can take a while */
6987         s->e = dh_create_e(ssh->kex_ctx, s->nbits * 2);
6988         s->pktout = ssh2_pkt_init(s->kex_init_value);
6989         ssh2_pkt_addmp(s->pktout, s->e);
6990         ssh2_pkt_send_noqueue(ssh, s->pktout);
6991
6992         set_busy_status(ssh->frontend, BUSY_WAITING); /* wait for server */
6993         crWaitUntilV(pktin);
6994         if (pktin->type != s->kex_reply_value) {
6995             bombout(("expected key exchange reply packet from server"));
6996             crStopV;
6997         }
6998         set_busy_status(ssh->frontend, BUSY_CPU); /* cogitate */
6999         ssh_pkt_getstring(pktin, &s->hostkeydata, &s->hostkeylen);
7000         if (!s->hostkeydata) {
7001             bombout(("unable to parse key exchange reply packet"));
7002             crStopV;
7003         }
7004         s->hkey = ssh->hostkey->newkey(ssh->hostkey,
7005                                        s->hostkeydata, s->hostkeylen);
7006         s->f = ssh2_pkt_getmp(pktin);
7007         if (!s->f) {
7008             bombout(("unable to parse key exchange reply packet"));
7009             crStopV;
7010         }
7011         ssh_pkt_getstring(pktin, &s->sigdata, &s->siglen);
7012         if (!s->sigdata) {
7013             bombout(("unable to parse key exchange reply packet"));
7014             crStopV;
7015         }
7016
7017         {
7018             const char *err = dh_validate_f(ssh->kex_ctx, s->f);
7019             if (err) {
7020                 bombout(("key exchange reply failed validation: %s", err));
7021                 crStopV;
7022             }
7023         }
7024         s->K = dh_find_K(ssh->kex_ctx, s->f);
7025
7026         /* We assume everything from now on will be quick, and it might
7027          * involve user interaction. */
7028         set_busy_status(ssh->frontend, BUSY_NOT);
7029
7030         hash_string(ssh->kex->hash, ssh->exhash, s->hostkeydata, s->hostkeylen);
7031         if (dh_is_gex(ssh->kex)) {
7032             if (!(ssh->remote_bugs & BUG_SSH2_OLDGEX))
7033                 hash_uint32(ssh->kex->hash, ssh->exhash, DH_MIN_SIZE);
7034             hash_uint32(ssh->kex->hash, ssh->exhash, s->pbits);
7035             if (!(ssh->remote_bugs & BUG_SSH2_OLDGEX))
7036                 hash_uint32(ssh->kex->hash, ssh->exhash, DH_MAX_SIZE);
7037             hash_mpint(ssh->kex->hash, ssh->exhash, s->p);
7038             hash_mpint(ssh->kex->hash, ssh->exhash, s->g);
7039         }
7040         hash_mpint(ssh->kex->hash, ssh->exhash, s->e);
7041         hash_mpint(ssh->kex->hash, ssh->exhash, s->f);
7042
7043         dh_cleanup(ssh->kex_ctx);
7044         freebn(s->f);
7045         if (dh_is_gex(ssh->kex)) {
7046             freebn(s->g);
7047             freebn(s->p);
7048         }
7049     } else if (ssh->kex->main_type == KEXTYPE_ECDH) {
7050
7051         logeventf(ssh, "Doing ECDH key exchange with curve %s and hash %s",
7052                   ssh_ecdhkex_curve_textname(ssh->kex),
7053                   ssh->kex->hash->text_name);
7054         ssh->pkt_kctx = SSH2_PKTCTX_ECDHKEX;
7055
7056         s->eckey = ssh_ecdhkex_newkey(ssh->kex);
7057         if (!s->eckey) {
7058             bombout(("Unable to generate key for ECDH"));
7059             crStopV;
7060         }
7061
7062         {
7063             char *publicPoint;
7064             int publicPointLength;
7065             publicPoint = ssh_ecdhkex_getpublic(s->eckey, &publicPointLength);
7066             if (!publicPoint) {
7067                 ssh_ecdhkex_freekey(s->eckey);
7068                 bombout(("Unable to encode public key for ECDH"));
7069                 crStopV;
7070             }
7071             s->pktout = ssh2_pkt_init(SSH2_MSG_KEX_ECDH_INIT);
7072             ssh2_pkt_addstring_start(s->pktout);
7073             ssh2_pkt_addstring_data(s->pktout, publicPoint, publicPointLength);
7074             sfree(publicPoint);
7075         }
7076
7077         ssh2_pkt_send_noqueue(ssh, s->pktout);
7078
7079         crWaitUntilV(pktin);
7080         if (pktin->type != SSH2_MSG_KEX_ECDH_REPLY) {
7081             ssh_ecdhkex_freekey(s->eckey);
7082             bombout(("expected ECDH reply packet from server"));
7083             crStopV;
7084         }
7085
7086         ssh_pkt_getstring(pktin, &s->hostkeydata, &s->hostkeylen);
7087         if (!s->hostkeydata) {
7088             bombout(("unable to parse ECDH reply packet"));
7089             crStopV;
7090         }
7091         hash_string(ssh->kex->hash, ssh->exhash, s->hostkeydata, s->hostkeylen);
7092         s->hkey = ssh->hostkey->newkey(ssh->hostkey,
7093                                        s->hostkeydata, s->hostkeylen);
7094
7095         {
7096             char *publicPoint;
7097             int publicPointLength;
7098             publicPoint = ssh_ecdhkex_getpublic(s->eckey, &publicPointLength);
7099             if (!publicPoint) {
7100                 ssh_ecdhkex_freekey(s->eckey);
7101                 bombout(("Unable to encode public key for ECDH hash"));
7102                 crStopV;
7103             }
7104             hash_string(ssh->kex->hash, ssh->exhash,
7105                         publicPoint, publicPointLength);
7106             sfree(publicPoint);
7107         }
7108
7109         {
7110             char *keydata;
7111             int keylen;
7112             ssh_pkt_getstring(pktin, &keydata, &keylen);
7113             if (!keydata) {
7114                 bombout(("unable to parse ECDH reply packet"));
7115                 crStopV;
7116             }
7117             hash_string(ssh->kex->hash, ssh->exhash, keydata, keylen);
7118             s->K = ssh_ecdhkex_getkey(s->eckey, keydata, keylen);
7119             if (!s->K) {
7120                 ssh_ecdhkex_freekey(s->eckey);
7121                 bombout(("point received in ECDH was not valid"));
7122                 crStopV;
7123             }
7124         }
7125
7126         ssh_pkt_getstring(pktin, &s->sigdata, &s->siglen);
7127         if (!s->sigdata) {
7128             bombout(("unable to parse key exchange reply packet"));
7129             crStopV;
7130         }
7131
7132         ssh_ecdhkex_freekey(s->eckey);
7133     } else {
7134         logeventf(ssh, "Doing RSA key exchange with hash %s",
7135                   ssh->kex->hash->text_name);
7136         ssh->pkt_kctx = SSH2_PKTCTX_RSAKEX;
7137         /*
7138          * RSA key exchange. First expect a KEXRSA_PUBKEY packet
7139          * from the server.
7140          */
7141         crWaitUntilV(pktin);
7142         if (pktin->type != SSH2_MSG_KEXRSA_PUBKEY) {
7143             bombout(("expected RSA public key packet from server"));
7144             crStopV;
7145         }
7146
7147         ssh_pkt_getstring(pktin, &s->hostkeydata, &s->hostkeylen);
7148         if (!s->hostkeydata) {
7149             bombout(("unable to parse RSA public key packet"));
7150             crStopV;
7151         }
7152         hash_string(ssh->kex->hash, ssh->exhash,
7153                     s->hostkeydata, s->hostkeylen);
7154         s->hkey = ssh->hostkey->newkey(ssh->hostkey,
7155                                        s->hostkeydata, s->hostkeylen);
7156
7157         {
7158             char *keydata;
7159             ssh_pkt_getstring(pktin, &keydata, &s->rsakeylen);
7160             if (!keydata) {
7161                 bombout(("unable to parse RSA public key packet"));
7162                 crStopV;
7163             }
7164             s->rsakeydata = snewn(s->rsakeylen, char);
7165             memcpy(s->rsakeydata, keydata, s->rsakeylen);
7166         }
7167
7168         s->rsakey = ssh_rsakex_newkey(s->rsakeydata, s->rsakeylen);
7169         if (!s->rsakey) {
7170             sfree(s->rsakeydata);
7171             bombout(("unable to parse RSA public key from server"));
7172             crStopV;
7173         }
7174
7175         hash_string(ssh->kex->hash, ssh->exhash, s->rsakeydata, s->rsakeylen);
7176
7177         /*
7178          * Next, set up a shared secret K, of precisely KLEN -
7179          * 2*HLEN - 49 bits, where KLEN is the bit length of the
7180          * RSA key modulus and HLEN is the bit length of the hash
7181          * we're using.
7182          */
7183         {
7184             int klen = ssh_rsakex_klen(s->rsakey);
7185             int nbits = klen - (2*ssh->kex->hash->hlen*8 + 49);
7186             int i, byte = 0;
7187             unsigned char *kstr1, *kstr2, *outstr;
7188             int kstr1len, kstr2len, outstrlen;
7189
7190             s->K = bn_power_2(nbits - 1);
7191
7192             for (i = 0; i < nbits; i++) {
7193                 if ((i & 7) == 0) {
7194                     byte = random_byte();
7195                 }
7196                 bignum_set_bit(s->K, i, (byte >> (i & 7)) & 1);
7197             }
7198
7199             /*
7200              * Encode this as an mpint.
7201              */
7202             kstr1 = ssh2_mpint_fmt(s->K, &kstr1len);
7203             kstr2 = snewn(kstr2len = 4 + kstr1len, unsigned char);
7204             PUT_32BIT(kstr2, kstr1len);
7205             memcpy(kstr2 + 4, kstr1, kstr1len);
7206
7207             /*
7208              * Encrypt it with the given RSA key.
7209              */
7210             outstrlen = (klen + 7) / 8;
7211             outstr = snewn(outstrlen, unsigned char);
7212             ssh_rsakex_encrypt(ssh->kex->hash, kstr2, kstr2len,
7213                                outstr, outstrlen, s->rsakey);
7214
7215             /*
7216              * And send it off in a return packet.
7217              */
7218             s->pktout = ssh2_pkt_init(SSH2_MSG_KEXRSA_SECRET);
7219             ssh2_pkt_addstring_start(s->pktout);
7220             ssh2_pkt_addstring_data(s->pktout, (char *)outstr, outstrlen);
7221             ssh2_pkt_send_noqueue(ssh, s->pktout);
7222
7223             hash_string(ssh->kex->hash, ssh->exhash, outstr, outstrlen);
7224
7225             sfree(kstr2);
7226             sfree(kstr1);
7227             sfree(outstr);
7228         }
7229
7230         ssh_rsakex_freekey(s->rsakey);
7231
7232         crWaitUntilV(pktin);
7233         if (pktin->type != SSH2_MSG_KEXRSA_DONE) {
7234             sfree(s->rsakeydata);
7235             bombout(("expected signature packet from server"));
7236             crStopV;
7237         }
7238
7239         ssh_pkt_getstring(pktin, &s->sigdata, &s->siglen);
7240         if (!s->sigdata) {
7241             bombout(("unable to parse signature packet"));
7242             crStopV;
7243         }
7244
7245         sfree(s->rsakeydata);
7246     }
7247
7248     hash_mpint(ssh->kex->hash, ssh->exhash, s->K);
7249     assert(ssh->kex->hash->hlen <= sizeof(s->exchange_hash));
7250     ssh->kex->hash->final(ssh->exhash, s->exchange_hash);
7251
7252     ssh->kex_ctx = NULL;
7253
7254 #if 0
7255     debug(("Exchange hash is:\n"));
7256     dmemdump(s->exchange_hash, ssh->kex->hash->hlen);
7257 #endif
7258
7259     if (!s->hkey) {
7260         bombout(("Server's host key is invalid"));
7261         crStopV;
7262     }
7263
7264     if (!ssh->hostkey->verifysig(s->hkey, s->sigdata, s->siglen,
7265                                  (char *)s->exchange_hash,
7266                                  ssh->kex->hash->hlen)) {
7267 #ifndef FUZZING
7268         bombout(("Server's host key did not match the signature supplied"));
7269         crStopV;
7270 #endif
7271     }
7272
7273     s->keystr = ssh->hostkey->fmtkey(s->hkey);
7274     if (!s->got_session_id) {
7275         /*
7276          * Make a note of any other host key formats that are available.
7277          */
7278         {
7279             int i, j, nkeys = 0;
7280             char *list = NULL;
7281             for (i = 0; i < lenof(hostkey_algs); i++) {
7282                 if (hostkey_algs[i].alg == ssh->hostkey)
7283                     continue;
7284
7285                 for (j = 0; j < ssh->n_uncert_hostkeys; j++)
7286                     if (ssh->uncert_hostkeys[j] == i)
7287                         break;
7288
7289                 if (j < ssh->n_uncert_hostkeys) {
7290                     char *newlist;
7291                     if (list)
7292                         newlist = dupprintf("%s/%s", list,
7293                                             hostkey_algs[i].alg->name);
7294                     else
7295                         newlist = dupprintf("%s", hostkey_algs[i].alg->name);
7296                     sfree(list);
7297                     list = newlist;
7298                     nkeys++;
7299                 }
7300             }
7301             if (list) {
7302                 logeventf(ssh,
7303                           "Server also has %s host key%s, but we "
7304                           "don't know %s", list,
7305                           nkeys > 1 ? "s" : "",
7306                           nkeys > 1 ? "any of them" : "it");
7307                 sfree(list);
7308             }
7309         }
7310
7311         /*
7312          * Authenticate remote host: verify host key. (We've already
7313          * checked the signature of the exchange hash.)
7314          */
7315         s->fingerprint = ssh2_fingerprint(ssh->hostkey, s->hkey);
7316         logevent("Host key fingerprint is:");
7317         logevent(s->fingerprint);
7318         /* First check against manually configured host keys. */
7319         s->dlgret = verify_ssh_manual_host_key(ssh, s->fingerprint,
7320                                                ssh->hostkey, s->hkey);
7321         if (s->dlgret == 0) {          /* did not match */
7322             bombout(("Host key did not appear in manually configured list"));
7323             crStopV;
7324         } else if (s->dlgret < 0) { /* none configured; use standard handling */
7325             ssh_set_frozen(ssh, 1);
7326             s->dlgret = verify_ssh_host_key(ssh->frontend,
7327                                             ssh->savedhost, ssh->savedport,
7328                                             ssh->hostkey->keytype, s->keystr,
7329                                             s->fingerprint,
7330                                             ssh_dialog_callback, ssh);
7331 #ifdef FUZZING
7332             s->dlgret = 1;
7333 #endif
7334             if (s->dlgret < 0) {
7335                 do {
7336                     crReturnV;
7337                     if (pktin) {
7338                         bombout(("Unexpected data from server while waiting"
7339                                  " for user host key response"));
7340                         crStopV;
7341                     }
7342                 } while (pktin || inlen > 0);
7343                 s->dlgret = ssh->user_response;
7344             }
7345             ssh_set_frozen(ssh, 0);
7346             if (s->dlgret == 0) {
7347                 ssh_disconnect(ssh, "Aborted at host key verification", NULL,
7348                                0, TRUE);
7349                 crStopV;
7350             }
7351         }
7352         sfree(s->fingerprint);
7353         /*
7354          * Save this host key, to check against the one presented in
7355          * subsequent rekeys.
7356          */
7357         ssh->hostkey_str = s->keystr;
7358     } else if (ssh->cross_certifying) {
7359         s->fingerprint = ssh2_fingerprint(ssh->hostkey, s->hkey);
7360         logevent("Storing additional host key for this host:");
7361         logevent(s->fingerprint);
7362         store_host_key(ssh->savedhost, ssh->savedport,
7363                        ssh->hostkey->keytype, s->keystr);
7364         ssh->cross_certifying = FALSE;
7365         /*
7366          * Don't forget to store the new key as the one we'll be
7367          * re-checking in future normal rekeys.
7368          */
7369         ssh->hostkey_str = s->keystr;
7370     } else {
7371         /*
7372          * In a rekey, we never present an interactive host key
7373          * verification request to the user. Instead, we simply
7374          * enforce that the key we're seeing this time is identical to
7375          * the one we saw before.
7376          */
7377         if (strcmp(ssh->hostkey_str, s->keystr)) {
7378 #ifndef FUZZING
7379             bombout(("Host key was different in repeat key exchange"));
7380             crStopV;
7381 #endif
7382         }
7383         sfree(s->keystr);
7384     }
7385     ssh->hostkey->freekey(s->hkey);
7386
7387     /*
7388      * The exchange hash from the very first key exchange is also
7389      * the session id, used in session key construction and
7390      * authentication.
7391      */
7392     if (!s->got_session_id) {
7393         assert(sizeof(s->exchange_hash) <= sizeof(ssh->v2_session_id));
7394         memcpy(ssh->v2_session_id, s->exchange_hash,
7395                sizeof(s->exchange_hash));
7396         ssh->v2_session_id_len = ssh->kex->hash->hlen;
7397         assert(ssh->v2_session_id_len <= sizeof(ssh->v2_session_id));
7398         s->got_session_id = TRUE;
7399     }
7400
7401     /*
7402      * Send SSH2_MSG_NEWKEYS.
7403      */
7404     s->pktout = ssh2_pkt_init(SSH2_MSG_NEWKEYS);
7405     ssh2_pkt_send_noqueue(ssh, s->pktout);
7406     ssh->outgoing_data_size = 0;       /* start counting from here */
7407
7408     /*
7409      * We've sent client NEWKEYS, so create and initialise
7410      * client-to-server session keys.
7411      */
7412     if (ssh->cs_cipher_ctx)
7413         ssh->cscipher->free_context(ssh->cs_cipher_ctx);
7414     ssh->cscipher = s->cscipher_tobe;
7415     if (ssh->cscipher) ssh->cs_cipher_ctx = ssh->cscipher->make_context();
7416
7417     if (ssh->cs_mac_ctx)
7418         ssh->csmac->free_context(ssh->cs_mac_ctx);
7419     ssh->csmac = s->csmac_tobe;
7420     ssh->csmac_etm = s->csmac_etm_tobe;
7421     if (ssh->csmac)
7422         ssh->cs_mac_ctx = ssh->csmac->make_context(ssh->cs_cipher_ctx);
7423
7424     if (ssh->cs_comp_ctx)
7425         ssh->cscomp->compress_cleanup(ssh->cs_comp_ctx);
7426     ssh->cscomp = s->cscomp_tobe;
7427     ssh->cs_comp_ctx = ssh->cscomp->compress_init();
7428
7429     /*
7430      * Set IVs on client-to-server keys. Here we use the exchange
7431      * hash from the _first_ key exchange.
7432      */
7433     if (ssh->cscipher) {
7434         unsigned char *key;
7435
7436         key = ssh2_mkkey(ssh, s->K, s->exchange_hash, 'C',
7437                          ssh->cscipher->padded_keybytes);
7438         ssh->cscipher->setkey(ssh->cs_cipher_ctx, key);
7439         smemclr(key, ssh->cscipher->padded_keybytes);
7440         sfree(key);
7441
7442         key = ssh2_mkkey(ssh, s->K, s->exchange_hash, 'A',
7443                          ssh->cscipher->blksize);
7444         ssh->cscipher->setiv(ssh->cs_cipher_ctx, key);
7445         smemclr(key, ssh->cscipher->blksize);
7446         sfree(key);
7447     }
7448     if (ssh->csmac) {
7449         unsigned char *key;
7450
7451         key = ssh2_mkkey(ssh, s->K, s->exchange_hash, 'E',
7452                          ssh->csmac->keylen);
7453         ssh->csmac->setkey(ssh->cs_mac_ctx, key);
7454         smemclr(key, ssh->csmac->keylen);
7455         sfree(key);
7456     }
7457
7458     if (ssh->cscipher)
7459         logeventf(ssh, "Initialised %.200s client->server encryption",
7460                   ssh->cscipher->text_name);
7461     if (ssh->csmac)
7462         logeventf(ssh, "Initialised %.200s client->server MAC algorithm%s%s",
7463                   ssh->csmac->text_name,
7464                   ssh->csmac_etm ? " (in ETM mode)" : "",
7465                   ssh->cscipher->required_mac ? " (required by cipher)" : "");
7466     if (ssh->cscomp->text_name)
7467         logeventf(ssh, "Initialised %s compression",
7468                   ssh->cscomp->text_name);
7469
7470     /*
7471      * Now our end of the key exchange is complete, we can send all
7472      * our queued higher-layer packets.
7473      */
7474     ssh->queueing = FALSE;
7475     ssh2_pkt_queuesend(ssh);
7476
7477     /*
7478      * Expect SSH2_MSG_NEWKEYS from server.
7479      */
7480     crWaitUntilV(pktin);
7481     if (pktin->type != SSH2_MSG_NEWKEYS) {
7482         bombout(("expected new-keys packet from server"));
7483         crStopV;
7484     }
7485     ssh->incoming_data_size = 0;       /* start counting from here */
7486
7487     /*
7488      * We've seen server NEWKEYS, so create and initialise
7489      * server-to-client session keys.
7490      */
7491     if (ssh->sc_cipher_ctx)
7492         ssh->sccipher->free_context(ssh->sc_cipher_ctx);
7493     if (s->sccipher_tobe) {
7494         ssh->sccipher = s->sccipher_tobe;
7495         ssh->sc_cipher_ctx = ssh->sccipher->make_context();
7496     }
7497
7498     if (ssh->sc_mac_ctx)
7499         ssh->scmac->free_context(ssh->sc_mac_ctx);
7500     if (s->scmac_tobe) {
7501         ssh->scmac = s->scmac_tobe;
7502         ssh->scmac_etm = s->scmac_etm_tobe;
7503         ssh->sc_mac_ctx = ssh->scmac->make_context(ssh->sc_cipher_ctx);
7504     }
7505
7506     if (ssh->sc_comp_ctx)
7507         ssh->sccomp->decompress_cleanup(ssh->sc_comp_ctx);
7508     ssh->sccomp = s->sccomp_tobe;
7509     ssh->sc_comp_ctx = ssh->sccomp->decompress_init();
7510
7511     /*
7512      * Set IVs on server-to-client keys. Here we use the exchange
7513      * hash from the _first_ key exchange.
7514      */
7515     if (ssh->sccipher) {
7516         unsigned char *key;
7517
7518         key = ssh2_mkkey(ssh, s->K, s->exchange_hash, 'D',
7519                          ssh->sccipher->padded_keybytes);
7520         ssh->sccipher->setkey(ssh->sc_cipher_ctx, key);
7521         smemclr(key, ssh->sccipher->padded_keybytes);
7522         sfree(key);
7523
7524         key = ssh2_mkkey(ssh, s->K, s->exchange_hash, 'B',
7525                          ssh->sccipher->blksize);
7526         ssh->sccipher->setiv(ssh->sc_cipher_ctx, key);
7527         smemclr(key, ssh->sccipher->blksize);
7528         sfree(key);
7529     }
7530     if (ssh->scmac) {
7531         unsigned char *key;
7532
7533         key = ssh2_mkkey(ssh, s->K, s->exchange_hash, 'F',
7534                          ssh->scmac->keylen);
7535         ssh->scmac->setkey(ssh->sc_mac_ctx, key);
7536         smemclr(key, ssh->scmac->keylen);
7537         sfree(key);
7538     }
7539     if (ssh->sccipher)
7540         logeventf(ssh, "Initialised %.200s server->client encryption",
7541                   ssh->sccipher->text_name);
7542     if (ssh->scmac)
7543         logeventf(ssh, "Initialised %.200s server->client MAC algorithm%s%s",
7544                   ssh->scmac->text_name,
7545                   ssh->scmac_etm ? " (in ETM mode)" : "",
7546                   ssh->sccipher->required_mac ? " (required by cipher)" : "");
7547     if (ssh->sccomp->text_name)
7548         logeventf(ssh, "Initialised %s decompression",
7549                   ssh->sccomp->text_name);
7550
7551     /*
7552      * Free shared secret.
7553      */
7554     freebn(s->K);
7555
7556     /*
7557      * Update the specials menu to list the remaining uncertified host
7558      * keys.
7559      */
7560     update_specials_menu(ssh->frontend);
7561
7562     /*
7563      * Key exchange is over. Loop straight back round if we have a
7564      * deferred rekey reason.
7565      */
7566     if (ssh->deferred_rekey_reason) {
7567         logevent(ssh->deferred_rekey_reason);
7568         pktin = NULL;
7569         ssh->deferred_rekey_reason = NULL;
7570         goto begin_key_exchange;
7571     }
7572
7573     /*
7574      * Otherwise, schedule a timer for our next rekey.
7575      */
7576     ssh->kex_in_progress = FALSE;
7577     ssh->last_rekey = GETTICKCOUNT();
7578     if (conf_get_int(ssh->conf, CONF_ssh_rekey_time) != 0)
7579         ssh->next_rekey = schedule_timer(conf_get_int(ssh->conf, CONF_ssh_rekey_time)*60*TICKSPERSEC,
7580                                          ssh2_timer, ssh);
7581
7582     /*
7583      * Now we're encrypting. Begin returning 1 to the protocol main
7584      * function so that other things can run on top of the
7585      * transport. If we ever see a KEXINIT, we must go back to the
7586      * start.
7587      * 
7588      * We _also_ go back to the start if we see pktin==NULL and
7589      * inlen negative, because this is a special signal meaning
7590      * `initiate client-driven rekey', and `in' contains a message
7591      * giving the reason for the rekey.
7592      *
7593      * inlen==-1 means always initiate a rekey;
7594      * inlen==-2 means that userauth has completed successfully and
7595      *   we should consider rekeying (for delayed compression).
7596      */
7597     while (!((pktin && pktin->type == SSH2_MSG_KEXINIT) ||
7598              (!pktin && inlen < 0))) {
7599         wait_for_rekey:
7600         if (!ssh->protocol_initial_phase_done) {
7601             ssh->protocol_initial_phase_done = TRUE;
7602             /*
7603              * Allow authconn to initialise itself.
7604              */
7605             do_ssh2_authconn(ssh, NULL, 0, NULL);
7606         }
7607         crReturnV;
7608     }
7609     if (pktin) {
7610         logevent("Server initiated key re-exchange");
7611     } else {
7612         if (inlen == -2) {
7613             /* 
7614              * authconn has seen a USERAUTH_SUCCEEDED. Time to enable
7615              * delayed compression, if it's available.
7616              *
7617              * draft-miller-secsh-compression-delayed-00 says that you
7618              * negotiate delayed compression in the first key exchange, and
7619              * both sides start compressing when the server has sent
7620              * USERAUTH_SUCCESS. This has a race condition -- the server
7621              * can't know when the client has seen it, and thus which incoming
7622              * packets it should treat as compressed.
7623              *
7624              * Instead, we do the initial key exchange without offering the
7625              * delayed methods, but note if the server offers them; when we
7626              * get here, if a delayed method was available that was higher
7627              * on our list than what we got, we initiate a rekey in which we
7628              * _do_ list the delayed methods (and hopefully get it as a
7629              * result). Subsequent rekeys will do the same.
7630              */
7631             assert(!s->userauth_succeeded); /* should only happen once */
7632             s->userauth_succeeded = TRUE;
7633             if (!s->pending_compression)
7634                 /* Can't see any point rekeying. */
7635                 goto wait_for_rekey;       /* this is utterly horrid */
7636             /* else fall through to rekey... */
7637             s->pending_compression = FALSE;
7638         }
7639         /*
7640          * Now we've decided to rekey.
7641          *
7642          * Special case: if the server bug is set that doesn't
7643          * allow rekeying, we give a different log message and
7644          * continue waiting. (If such a server _initiates_ a rekey,
7645          * we process it anyway!)
7646          */
7647         if ((ssh->remote_bugs & BUG_SSH2_REKEY)) {
7648             logeventf(ssh, "Server bug prevents key re-exchange (%s)",
7649                       (char *)in);
7650             /* Reset the counters, so that at least this message doesn't
7651              * hit the event log _too_ often. */
7652             ssh->outgoing_data_size = 0;
7653             ssh->incoming_data_size = 0;
7654             if (conf_get_int(ssh->conf, CONF_ssh_rekey_time) != 0) {
7655                 ssh->next_rekey =
7656                     schedule_timer(conf_get_int(ssh->conf, CONF_ssh_rekey_time)*60*TICKSPERSEC,
7657                                    ssh2_timer, ssh);
7658             }
7659             goto wait_for_rekey;       /* this is still utterly horrid */
7660         } else {
7661             logeventf(ssh, "Initiating key re-exchange (%s)", (char *)in);
7662         }
7663     }
7664     goto begin_key_exchange;
7665
7666     crFinishV;
7667 }
7668
7669 /*
7670  * Send data on an SSH channel.  In SSH-2, this involves buffering it
7671  * first.
7672  */
7673 static int ssh_send_channel_data(struct ssh_channel *c, const char *buf,
7674                                    int len)
7675 {
7676     if (c->ssh->version == 2) {
7677         bufchain_add(&c->v.v2.outbuffer, buf, len);
7678         return ssh2_try_send(c);
7679     } else {
7680         send_packet(c->ssh, SSH1_MSG_CHANNEL_DATA,
7681                     PKT_INT, c->remoteid,
7682                     PKT_INT, len,
7683                     PKT_DATA, buf, len,
7684                     PKT_END);
7685         /*
7686          * In SSH-1 we can return 0 here - implying that channels are
7687          * never individually throttled - because the only
7688          * circumstance that can cause throttling will be the whole
7689          * SSH connection backing up, in which case _everything_ will
7690          * be throttled as a whole.
7691          */
7692         return 0;
7693     }
7694 }
7695
7696 /*
7697  * Attempt to send data on an SSH-2 channel.
7698  */
7699 static int ssh2_try_send(struct ssh_channel *c)
7700 {
7701     Ssh ssh = c->ssh;
7702     struct Packet *pktout;
7703     int ret;
7704
7705     while (c->v.v2.remwindow > 0 && bufchain_size(&c->v.v2.outbuffer) > 0) {
7706         int len;
7707         void *data;
7708         bufchain_prefix(&c->v.v2.outbuffer, &data, &len);
7709         if ((unsigned)len > c->v.v2.remwindow)
7710             len = c->v.v2.remwindow;
7711         if ((unsigned)len > c->v.v2.remmaxpkt)
7712             len = c->v.v2.remmaxpkt;
7713         pktout = ssh2_pkt_init(SSH2_MSG_CHANNEL_DATA);
7714         ssh2_pkt_adduint32(pktout, c->remoteid);
7715         ssh2_pkt_addstring_start(pktout);
7716         ssh2_pkt_addstring_data(pktout, data, len);
7717         ssh2_pkt_send(ssh, pktout);
7718         bufchain_consume(&c->v.v2.outbuffer, len);
7719         c->v.v2.remwindow -= len;
7720     }
7721
7722     /*
7723      * After having sent as much data as we can, return the amount
7724      * still buffered.
7725      */
7726     ret = bufchain_size(&c->v.v2.outbuffer);
7727
7728     /*
7729      * And if there's no data pending but we need to send an EOF, send
7730      * it.
7731      */
7732     if (!ret && c->pending_eof)
7733         ssh_channel_try_eof(c);
7734
7735     return ret;
7736 }
7737
7738 static void ssh2_try_send_and_unthrottle(Ssh ssh, struct ssh_channel *c)
7739 {
7740     int bufsize;
7741     if (c->closes & CLOSES_SENT_EOF)
7742         return;                   /* don't send on channels we've EOFed */
7743     bufsize = ssh2_try_send(c);
7744     if (bufsize == 0) {
7745         switch (c->type) {
7746           case CHAN_MAINSESSION:
7747             /* stdin need not receive an unthrottle
7748              * notification since it will be polled */
7749             break;
7750           case CHAN_X11:
7751             x11_unthrottle(c->u.x11.xconn);
7752             break;
7753           case CHAN_AGENT:
7754             /* agent sockets are request/response and need no
7755              * buffer management */
7756             break;
7757           case CHAN_SOCKDATA:
7758             pfd_unthrottle(c->u.pfd.pf);
7759             break;
7760         }
7761     }
7762 }
7763
7764 static int ssh_is_simple(Ssh ssh)
7765 {
7766     /*
7767      * We use the 'simple' variant of the SSH protocol if we're asked
7768      * to, except not if we're also doing connection-sharing (either
7769      * tunnelling our packets over an upstream or expecting to be
7770      * tunnelled over ourselves), since then the assumption that we
7771      * have only one channel to worry about is not true after all.
7772      */
7773     return (conf_get_int(ssh->conf, CONF_ssh_simple) &&
7774             !ssh->bare_connection && !ssh->connshare);
7775 }
7776
7777 /*
7778  * Set up most of a new ssh_channel.
7779  */
7780 static void ssh_channel_init(struct ssh_channel *c)
7781 {
7782     Ssh ssh = c->ssh;
7783     c->localid = alloc_channel_id(ssh);
7784     c->closes = 0;
7785     c->pending_eof = FALSE;
7786     c->throttling_conn = FALSE;
7787     if (ssh->version == 2) {
7788         c->v.v2.locwindow = c->v.v2.locmaxwin = c->v.v2.remlocwin =
7789             ssh_is_simple(ssh) ? OUR_V2_BIGWIN : OUR_V2_WINSIZE;
7790         c->v.v2.chanreq_head = NULL;
7791         c->v.v2.throttle_state = UNTHROTTLED;
7792         bufchain_init(&c->v.v2.outbuffer);
7793     }
7794     add234(ssh->channels, c);
7795 }
7796
7797 /*
7798  * Construct the common parts of a CHANNEL_OPEN.
7799  */
7800 static struct Packet *ssh2_chanopen_init(struct ssh_channel *c,
7801                                          const char *type)
7802 {
7803     struct Packet *pktout;
7804
7805     pktout = ssh2_pkt_init(SSH2_MSG_CHANNEL_OPEN);
7806     ssh2_pkt_addstring(pktout, type);
7807     ssh2_pkt_adduint32(pktout, c->localid);
7808     ssh2_pkt_adduint32(pktout, c->v.v2.locwindow);/* our window size */
7809     ssh2_pkt_adduint32(pktout, OUR_V2_MAXPKT);      /* our max pkt size */
7810     return pktout;
7811 }
7812
7813 /*
7814  * CHANNEL_FAILURE doesn't come with any indication of what message
7815  * caused it, so we have to keep track of the outstanding
7816  * CHANNEL_REQUESTs ourselves.
7817  */
7818 static void ssh2_queue_chanreq_handler(struct ssh_channel *c,
7819                                        cchandler_fn_t handler, void *ctx)
7820 {
7821     struct outstanding_channel_request *ocr =
7822         snew(struct outstanding_channel_request);
7823
7824     assert(!(c->closes & (CLOSES_SENT_CLOSE | CLOSES_RCVD_CLOSE)));
7825     ocr->handler = handler;
7826     ocr->ctx = ctx;
7827     ocr->next = NULL;
7828     if (!c->v.v2.chanreq_head)
7829         c->v.v2.chanreq_head = ocr;
7830     else
7831         c->v.v2.chanreq_tail->next = ocr;
7832     c->v.v2.chanreq_tail = ocr;
7833 }
7834
7835 /*
7836  * Construct the common parts of a CHANNEL_REQUEST.  If handler is not
7837  * NULL then a reply will be requested and the handler will be called
7838  * when it arrives.  The returned packet is ready to have any
7839  * request-specific data added and be sent.  Note that if a handler is
7840  * provided, it's essential that the request actually be sent.
7841  *
7842  * The handler will usually be passed the response packet in pktin. If
7843  * pktin is NULL, this means that no reply will ever be forthcoming
7844  * (e.g. because the entire connection is being destroyed, or because
7845  * the server initiated channel closure before we saw the response)
7846  * and the handler should free any storage it's holding.
7847  */
7848 static struct Packet *ssh2_chanreq_init(struct ssh_channel *c,
7849                                         const char *type,
7850                                         cchandler_fn_t handler, void *ctx)
7851 {
7852     struct Packet *pktout;
7853
7854     assert(!(c->closes & (CLOSES_SENT_CLOSE | CLOSES_RCVD_CLOSE)));
7855     pktout = ssh2_pkt_init(SSH2_MSG_CHANNEL_REQUEST);
7856     ssh2_pkt_adduint32(pktout, c->remoteid);
7857     ssh2_pkt_addstring(pktout, type);
7858     ssh2_pkt_addbool(pktout, handler != NULL);
7859     if (handler != NULL)
7860         ssh2_queue_chanreq_handler(c, handler, ctx);
7861     return pktout;
7862 }
7863
7864 static void ssh_channel_unthrottle(struct ssh_channel *c, int bufsize)
7865 {
7866     Ssh ssh = c->ssh;
7867     int buflimit;
7868
7869     if (ssh->version == 1) {
7870         buflimit = SSH1_BUFFER_LIMIT;
7871     } else {
7872         if (ssh_is_simple(ssh))
7873             buflimit = 0;
7874         else
7875             buflimit = c->v.v2.locmaxwin;
7876         if (bufsize < buflimit)
7877             ssh2_set_window(c, buflimit - bufsize);
7878     }
7879     if (c->throttling_conn && bufsize <= buflimit) {
7880         c->throttling_conn = 0;
7881         ssh_throttle_conn(ssh, -1);
7882     }
7883 }
7884
7885 /*
7886  * Potentially enlarge the window on an SSH-2 channel.
7887  */
7888 static void ssh2_handle_winadj_response(struct ssh_channel *, struct Packet *,
7889                                         void *);
7890 static void ssh2_set_window(struct ssh_channel *c, int newwin)
7891 {
7892     Ssh ssh = c->ssh;
7893
7894     /*
7895      * Never send WINDOW_ADJUST for a channel that the remote side has
7896      * already sent EOF on; there's no point, since it won't be
7897      * sending any more data anyway. Ditto if _we've_ already sent
7898      * CLOSE.
7899      */
7900     if (c->closes & (CLOSES_RCVD_EOF | CLOSES_SENT_CLOSE))
7901         return;
7902
7903     /*
7904      * Also, never widen the window for an X11 channel when we're
7905      * still waiting to see its initial auth and may yet hand it off
7906      * to a downstream.
7907      */
7908     if (c->type == CHAN_X11 && c->u.x11.initial)
7909         return;
7910
7911     /*
7912      * If the remote end has a habit of ignoring maxpkt, limit the
7913      * window so that it has no choice (assuming it doesn't ignore the
7914      * window as well).
7915      */
7916     if ((ssh->remote_bugs & BUG_SSH2_MAXPKT) && newwin > OUR_V2_MAXPKT)
7917         newwin = OUR_V2_MAXPKT;
7918
7919     /*
7920      * Only send a WINDOW_ADJUST if there's significantly more window
7921      * available than the other end thinks there is.  This saves us
7922      * sending a WINDOW_ADJUST for every character in a shell session.
7923      *
7924      * "Significant" is arbitrarily defined as half the window size.
7925      */
7926     if (newwin / 2 >= c->v.v2.locwindow) {
7927         struct Packet *pktout;
7928         unsigned *up;
7929
7930         /*
7931          * In order to keep track of how much window the client
7932          * actually has available, we'd like it to acknowledge each
7933          * WINDOW_ADJUST.  We can't do that directly, so we accompany
7934          * it with a CHANNEL_REQUEST that has to be acknowledged.
7935          *
7936          * This is only necessary if we're opening the window wide.
7937          * If we're not, then throughput is being constrained by
7938          * something other than the maximum window size anyway.
7939          */
7940         if (newwin == c->v.v2.locmaxwin &&
7941             !(ssh->remote_bugs & BUG_CHOKES_ON_WINADJ)) {
7942             up = snew(unsigned);
7943             *up = newwin - c->v.v2.locwindow;
7944             pktout = ssh2_chanreq_init(c, "winadj@putty.projects.tartarus.org",
7945                                        ssh2_handle_winadj_response, up);
7946             ssh2_pkt_send(ssh, pktout);
7947
7948             if (c->v.v2.throttle_state != UNTHROTTLED)
7949                 c->v.v2.throttle_state = UNTHROTTLING;
7950         } else {
7951             /* Pretend the WINDOW_ADJUST was acked immediately. */
7952             c->v.v2.remlocwin = newwin;
7953             c->v.v2.throttle_state = THROTTLED;
7954         }
7955         pktout = ssh2_pkt_init(SSH2_MSG_CHANNEL_WINDOW_ADJUST);
7956         ssh2_pkt_adduint32(pktout, c->remoteid);
7957         ssh2_pkt_adduint32(pktout, newwin - c->v.v2.locwindow);
7958         ssh2_pkt_send(ssh, pktout);
7959         c->v.v2.locwindow = newwin;
7960     }
7961 }
7962
7963 /*
7964  * Find the channel associated with a message.  If there's no channel,
7965  * or it's not properly open, make a noise about it and return NULL.
7966  * If the channel is shared, pass the message on to downstream and
7967  * also return NULL (meaning the caller should ignore this message).
7968  */
7969 static struct ssh_channel *ssh_channel_msg(Ssh ssh, struct Packet *pktin)
7970 {
7971     unsigned localid = ssh_pkt_getuint32(pktin);
7972     struct ssh_channel *c;
7973     int halfopen_ok;
7974
7975     /* Is this message OK on a half-open connection? */
7976     if (ssh->version == 1)
7977         halfopen_ok = (pktin->type == SSH1_MSG_CHANNEL_OPEN_CONFIRMATION ||
7978                        pktin->type == SSH1_MSG_CHANNEL_OPEN_FAILURE);
7979     else
7980         halfopen_ok = (pktin->type == SSH2_MSG_CHANNEL_OPEN_CONFIRMATION ||
7981                        pktin->type == SSH2_MSG_CHANNEL_OPEN_FAILURE);
7982     c = find234(ssh->channels, &localid, ssh_channelfind);
7983     if (!c || (c->type != CHAN_SHARING && (c->halfopen != halfopen_ok))) {
7984         char *buf = dupprintf("Received %s for %s channel %u",
7985                               ssh_pkt_type(ssh, pktin->type),
7986                               !c ? "nonexistent" :
7987                               c->halfopen ? "half-open" : "open",
7988                               localid);
7989         ssh_disconnect(ssh, NULL, buf, SSH2_DISCONNECT_PROTOCOL_ERROR, FALSE);
7990         sfree(buf);
7991         return NULL;
7992     }
7993     if (c->type == CHAN_SHARING) {
7994         share_got_pkt_from_server(c->u.sharing.ctx, pktin->type,
7995                                   pktin->body, pktin->length);
7996         return NULL;
7997     }
7998     return c;
7999 }
8000
8001 static void ssh2_handle_winadj_response(struct ssh_channel *c,
8002                                         struct Packet *pktin, void *ctx)
8003 {
8004     unsigned *sizep = ctx;
8005
8006     /*
8007      * Winadj responses should always be failures. However, at least
8008      * one server ("boks_sshd") is known to return SUCCESS for channel
8009      * requests it's never heard of, such as "winadj@putty". Raised
8010      * with foxt.com as bug 090916-090424, but for the sake of a quiet
8011      * life, we don't worry about what kind of response we got.
8012      */
8013
8014     c->v.v2.remlocwin += *sizep;
8015     sfree(sizep);
8016     /*
8017      * winadj messages are only sent when the window is fully open, so
8018      * if we get an ack of one, we know any pending unthrottle is
8019      * complete.
8020      */
8021     if (c->v.v2.throttle_state == UNTHROTTLING)
8022         c->v.v2.throttle_state = UNTHROTTLED;
8023 }
8024
8025 static void ssh2_msg_channel_response(Ssh ssh, struct Packet *pktin)
8026 {
8027     struct ssh_channel *c = ssh_channel_msg(ssh, pktin);
8028     struct outstanding_channel_request *ocr;
8029
8030     if (!c) return;
8031     ocr = c->v.v2.chanreq_head;
8032     if (!ocr) {
8033         ssh2_msg_unexpected(ssh, pktin);
8034         return;
8035     }
8036     ocr->handler(c, pktin, ocr->ctx);
8037     c->v.v2.chanreq_head = ocr->next;
8038     sfree(ocr);
8039     /*
8040      * We may now initiate channel-closing procedures, if that
8041      * CHANNEL_REQUEST was the last thing outstanding before we send
8042      * CHANNEL_CLOSE.
8043      */
8044     ssh2_channel_check_close(c);
8045 }
8046
8047 static void ssh2_msg_channel_window_adjust(Ssh ssh, struct Packet *pktin)
8048 {
8049     struct ssh_channel *c;
8050     c = ssh_channel_msg(ssh, pktin);
8051     if (!c)
8052         return;
8053     if (!(c->closes & CLOSES_SENT_EOF)) {
8054         c->v.v2.remwindow += ssh_pkt_getuint32(pktin);
8055         ssh2_try_send_and_unthrottle(ssh, c);
8056     }
8057 }
8058
8059 static void ssh2_msg_channel_data(Ssh ssh, struct Packet *pktin)
8060 {
8061     char *data;
8062     int length;
8063     unsigned ext_type = 0; /* 0 means not extended */
8064     struct ssh_channel *c;
8065     c = ssh_channel_msg(ssh, pktin);
8066     if (!c)
8067         return;
8068     if (pktin->type == SSH2_MSG_CHANNEL_EXTENDED_DATA)
8069         ext_type = ssh_pkt_getuint32(pktin);
8070     ssh_pkt_getstring(pktin, &data, &length);
8071     if (data) {
8072         int bufsize;
8073         c->v.v2.locwindow -= length;
8074         c->v.v2.remlocwin -= length;
8075         if (ext_type != 0 && ext_type != SSH2_EXTENDED_DATA_STDERR)
8076             length = 0; /* Don't do anything with unknown extended data. */
8077         bufsize = ssh_channel_data(c, ext_type == SSH2_EXTENDED_DATA_STDERR,
8078                                    data, length);
8079         /*
8080          * If it looks like the remote end hit the end of its window,
8081          * and we didn't want it to do that, think about using a
8082          * larger window.
8083          */
8084         if (c->v.v2.remlocwin <= 0 && c->v.v2.throttle_state == UNTHROTTLED &&
8085             c->v.v2.locmaxwin < 0x40000000)
8086             c->v.v2.locmaxwin += OUR_V2_WINSIZE;
8087         /*
8088          * If we are not buffering too much data,
8089          * enlarge the window again at the remote side.
8090          * If we are buffering too much, we may still
8091          * need to adjust the window if the server's
8092          * sent excess data.
8093          */
8094         if (bufsize < c->v.v2.locmaxwin)
8095             ssh2_set_window(c, c->v.v2.locmaxwin - bufsize);
8096         /*
8097          * If we're either buffering way too much data, or if we're
8098          * buffering anything at all and we're in "simple" mode,
8099          * throttle the whole channel.
8100          */
8101         if ((bufsize > c->v.v2.locmaxwin || (ssh_is_simple(ssh) && bufsize>0))
8102             && !c->throttling_conn) {
8103             c->throttling_conn = 1;
8104             ssh_throttle_conn(ssh, +1);
8105         }
8106     }
8107 }
8108
8109 static void ssh_check_termination(Ssh ssh)
8110 {
8111     if (ssh->version == 2 &&
8112         !conf_get_int(ssh->conf, CONF_ssh_no_shell) &&
8113         (ssh->channels && count234(ssh->channels) == 0) &&
8114         !(ssh->connshare && share_ndownstreams(ssh->connshare) > 0)) {
8115         /*
8116          * We used to send SSH_MSG_DISCONNECT here, because I'd
8117          * believed that _every_ conforming SSH-2 connection had to
8118          * end with a disconnect being sent by at least one side;
8119          * apparently I was wrong and it's perfectly OK to
8120          * unceremoniously slam the connection shut when you're done,
8121          * and indeed OpenSSH feels this is more polite than sending a
8122          * DISCONNECT. So now we don't.
8123          */
8124         ssh_disconnect(ssh, "All channels closed", NULL, 0, TRUE);
8125     }
8126 }
8127
8128 void ssh_sharing_downstream_connected(Ssh ssh, unsigned id,
8129                                       const char *peerinfo)
8130 {
8131     if (peerinfo)
8132         logeventf(ssh, "Connection sharing downstream #%u connected from %s",
8133                   id, peerinfo);
8134     else
8135         logeventf(ssh, "Connection sharing downstream #%u connected", id);
8136 }
8137
8138 void ssh_sharing_downstream_disconnected(Ssh ssh, unsigned id)
8139 {
8140     logeventf(ssh, "Connection sharing downstream #%u disconnected", id);
8141     ssh_check_termination(ssh);
8142 }
8143
8144 void ssh_sharing_logf(Ssh ssh, unsigned id, const char *logfmt, ...)
8145 {
8146     va_list ap;
8147     char *buf;
8148
8149     va_start(ap, logfmt);
8150     buf = dupvprintf(logfmt, ap);
8151     va_end(ap);
8152     if (id)
8153         logeventf(ssh, "Connection sharing downstream #%u: %s", id, buf);
8154     else
8155         logeventf(ssh, "Connection sharing: %s", buf);
8156     sfree(buf);
8157 }
8158
8159 static void ssh_channel_destroy(struct ssh_channel *c)
8160 {
8161     Ssh ssh = c->ssh;
8162
8163     switch (c->type) {
8164       case CHAN_MAINSESSION:
8165         ssh->mainchan = NULL;
8166         update_specials_menu(ssh->frontend);
8167         break;
8168       case CHAN_X11:
8169         assert(c->u.x11.xconn != NULL);
8170         x11_close(c->u.x11.xconn);
8171         logevent("Forwarded X11 connection terminated");
8172         break;
8173       case CHAN_AGENT:
8174         sfree(c->u.a.message);
8175         break;
8176       case CHAN_SOCKDATA:
8177         assert(c->u.pfd.pf != NULL);
8178         pfd_close(c->u.pfd.pf);
8179         logevent("Forwarded port closed");
8180         break;
8181     }
8182
8183     del234(ssh->channels, c);
8184     if (ssh->version == 2) {
8185         bufchain_clear(&c->v.v2.outbuffer);
8186         assert(c->v.v2.chanreq_head == NULL);
8187     }
8188     sfree(c);
8189
8190     /*
8191      * If that was the last channel left open, we might need to
8192      * terminate.
8193      */
8194     ssh_check_termination(ssh);
8195 }
8196
8197 static void ssh2_channel_check_close(struct ssh_channel *c)
8198 {
8199     Ssh ssh = c->ssh;
8200     struct Packet *pktout;
8201
8202     assert(ssh->version == 2);
8203     if (c->halfopen) {
8204         /*
8205          * If we've sent out our own CHANNEL_OPEN but not yet seen
8206          * either OPEN_CONFIRMATION or OPEN_FAILURE in response, then
8207          * it's too early to be sending close messages of any kind.
8208          */
8209         return;
8210     }
8211
8212     if ((!((CLOSES_SENT_EOF | CLOSES_RCVD_EOF) & ~c->closes) ||
8213          c->type == CHAN_ZOMBIE) &&
8214         !c->v.v2.chanreq_head &&
8215         !(c->closes & CLOSES_SENT_CLOSE)) {
8216         /*
8217          * We have both sent and received EOF (or the channel is a
8218          * zombie), and we have no outstanding channel requests, which
8219          * means the channel is in final wind-up. But we haven't sent
8220          * CLOSE, so let's do so now.
8221          */
8222         pktout = ssh2_pkt_init(SSH2_MSG_CHANNEL_CLOSE);
8223         ssh2_pkt_adduint32(pktout, c->remoteid);
8224         ssh2_pkt_send(ssh, pktout);
8225         c->closes |= CLOSES_SENT_EOF | CLOSES_SENT_CLOSE;
8226     }
8227
8228     if (!((CLOSES_SENT_CLOSE | CLOSES_RCVD_CLOSE) & ~c->closes)) {
8229         assert(c->v.v2.chanreq_head == NULL);
8230         /*
8231          * We have both sent and received CLOSE, which means we're
8232          * completely done with the channel.
8233          */
8234         ssh_channel_destroy(c);
8235     }
8236 }
8237
8238 static void ssh2_channel_got_eof(struct ssh_channel *c)
8239 {
8240     if (c->closes & CLOSES_RCVD_EOF)
8241         return;                        /* already seen EOF */
8242     c->closes |= CLOSES_RCVD_EOF;
8243
8244     if (c->type == CHAN_X11) {
8245         x11_send_eof(c->u.x11.xconn);
8246     } else if (c->type == CHAN_AGENT) {
8247         if (c->u.a.outstanding_requests == 0) {
8248             /* Manufacture an outgoing EOF in response to the incoming one. */
8249             sshfwd_write_eof(c);
8250         }
8251     } else if (c->type == CHAN_SOCKDATA) {
8252         pfd_send_eof(c->u.pfd.pf);
8253     } else if (c->type == CHAN_MAINSESSION) {
8254         Ssh ssh = c->ssh;
8255
8256         if (!ssh->sent_console_eof &&
8257             (from_backend_eof(ssh->frontend) || ssh->got_pty)) {
8258             /*
8259              * Either from_backend_eof told us that the front end
8260              * wants us to close the outgoing side of the connection
8261              * as soon as we see EOF from the far end, or else we've
8262              * unilaterally decided to do that because we've allocated
8263              * a remote pty and hence EOF isn't a particularly
8264              * meaningful concept.
8265              */
8266             sshfwd_write_eof(c);
8267         }
8268         ssh->sent_console_eof = TRUE;
8269     }
8270
8271     ssh2_channel_check_close(c);
8272 }
8273
8274 static void ssh2_msg_channel_eof(Ssh ssh, struct Packet *pktin)
8275 {
8276     struct ssh_channel *c;
8277
8278     c = ssh_channel_msg(ssh, pktin);
8279     if (!c)
8280         return;
8281     ssh2_channel_got_eof(c);
8282 }
8283
8284 static void ssh2_msg_channel_close(Ssh ssh, struct Packet *pktin)
8285 {
8286     struct ssh_channel *c;
8287
8288     c = ssh_channel_msg(ssh, pktin);
8289     if (!c)
8290         return;
8291
8292     /*
8293      * When we receive CLOSE on a channel, we assume it comes with an
8294      * implied EOF if we haven't seen EOF yet.
8295      */
8296     ssh2_channel_got_eof(c);
8297
8298     if (!(ssh->remote_bugs & BUG_SENDS_LATE_REQUEST_REPLY)) {
8299         /*
8300          * It also means we stop expecting to see replies to any
8301          * outstanding channel requests, so clean those up too.
8302          * (ssh_chanreq_init will enforce by assertion that we don't
8303          * subsequently put anything back on this list.)
8304          */
8305         while (c->v.v2.chanreq_head) {
8306             struct outstanding_channel_request *ocr = c->v.v2.chanreq_head;
8307             ocr->handler(c, NULL, ocr->ctx);
8308             c->v.v2.chanreq_head = ocr->next;
8309             sfree(ocr);
8310         }
8311     }
8312
8313     /*
8314      * And we also send an outgoing EOF, if we haven't already, on the
8315      * assumption that CLOSE is a pretty forceful announcement that
8316      * the remote side is doing away with the entire channel. (If it
8317      * had wanted to send us EOF and continue receiving data from us,
8318      * it would have just sent CHANNEL_EOF.)
8319      */
8320     if (!(c->closes & CLOSES_SENT_EOF)) {
8321         /*
8322          * Make sure we don't read any more from whatever our local
8323          * data source is for this channel.
8324          */
8325         switch (c->type) {
8326           case CHAN_MAINSESSION:
8327             ssh->send_ok = 0;     /* stop trying to read from stdin */
8328             break;
8329           case CHAN_X11:
8330             x11_override_throttle(c->u.x11.xconn, 1);
8331             break;
8332           case CHAN_SOCKDATA:
8333             pfd_override_throttle(c->u.pfd.pf, 1);
8334             break;
8335         }
8336
8337         /*
8338          * Abandon any buffered data we still wanted to send to this
8339          * channel. Receiving a CHANNEL_CLOSE is an indication that
8340          * the server really wants to get on and _destroy_ this
8341          * channel, and it isn't going to send us any further
8342          * WINDOW_ADJUSTs to permit us to send pending stuff.
8343          */
8344         bufchain_clear(&c->v.v2.outbuffer);
8345
8346         /*
8347          * Send outgoing EOF.
8348          */
8349         sshfwd_write_eof(c);
8350     }
8351
8352     /*
8353      * Now process the actual close.
8354      */
8355     if (!(c->closes & CLOSES_RCVD_CLOSE)) {
8356         c->closes |= CLOSES_RCVD_CLOSE;
8357         ssh2_channel_check_close(c);
8358     }
8359 }
8360
8361 static void ssh2_msg_channel_open_confirmation(Ssh ssh, struct Packet *pktin)
8362 {
8363     struct ssh_channel *c;
8364
8365     c = ssh_channel_msg(ssh, pktin);
8366     if (!c)
8367         return;
8368     assert(c->halfopen); /* ssh_channel_msg will have enforced this */
8369     c->remoteid = ssh_pkt_getuint32(pktin);
8370     c->halfopen = FALSE;
8371     c->v.v2.remwindow = ssh_pkt_getuint32(pktin);
8372     c->v.v2.remmaxpkt = ssh_pkt_getuint32(pktin);
8373
8374     if (c->type == CHAN_SOCKDATA) {
8375         assert(c->u.pfd.pf != NULL);
8376         pfd_confirm(c->u.pfd.pf);
8377     } else if (c->type == CHAN_ZOMBIE) {
8378         /*
8379          * This case can occur if a local socket error occurred
8380          * between us sending out CHANNEL_OPEN and receiving
8381          * OPEN_CONFIRMATION. In this case, all we can do is
8382          * immediately initiate close proceedings now that we know the
8383          * server's id to put in the close message.
8384          */
8385         ssh2_channel_check_close(c);
8386     } else {
8387         /*
8388          * We never expect to receive OPEN_CONFIRMATION for any
8389          * *other* channel type (since only local-to-remote port
8390          * forwardings cause us to send CHANNEL_OPEN after the main
8391          * channel is live - all other auxiliary channel types are
8392          * initiated from the server end). It's safe to enforce this
8393          * by assertion rather than by ssh_disconnect, because the
8394          * real point is that we never constructed a half-open channel
8395          * structure in the first place with any type other than the
8396          * above.
8397          */
8398         assert(!"Funny channel type in ssh2_msg_channel_open_confirmation");
8399     }
8400
8401     if (c->pending_eof)
8402         ssh_channel_try_eof(c);        /* in case we had a pending EOF */
8403 }
8404
8405 static void ssh2_msg_channel_open_failure(Ssh ssh, struct Packet *pktin)
8406 {
8407     static const char *const reasons[] = {
8408         "<unknown reason code>",
8409             "Administratively prohibited",
8410             "Connect failed",
8411             "Unknown channel type",
8412             "Resource shortage",
8413     };
8414     unsigned reason_code;
8415     char *reason_string;
8416     int reason_length;
8417     struct ssh_channel *c;
8418
8419     c = ssh_channel_msg(ssh, pktin);
8420     if (!c)
8421         return;
8422     assert(c->halfopen); /* ssh_channel_msg will have enforced this */
8423
8424     if (c->type == CHAN_SOCKDATA) {
8425         reason_code = ssh_pkt_getuint32(pktin);
8426         if (reason_code >= lenof(reasons))
8427             reason_code = 0; /* ensure reasons[reason_code] in range */
8428         ssh_pkt_getstring(pktin, &reason_string, &reason_length);
8429         logeventf(ssh, "Forwarded connection refused by server: %s [%.*s]",
8430                   reasons[reason_code], reason_length,
8431                   NULLTOEMPTY(reason_string));
8432
8433         pfd_close(c->u.pfd.pf);
8434     } else if (c->type == CHAN_ZOMBIE) {
8435         /*
8436          * This case can occur if a local socket error occurred
8437          * between us sending out CHANNEL_OPEN and receiving
8438          * OPEN_FAILURE. In this case, we need do nothing except allow
8439          * the code below to throw the half-open channel away.
8440          */
8441     } else {
8442         /*
8443          * We never expect to receive OPEN_FAILURE for any *other*
8444          * channel type (since only local-to-remote port forwardings
8445          * cause us to send CHANNEL_OPEN after the main channel is
8446          * live - all other auxiliary channel types are initiated from
8447          * the server end). It's safe to enforce this by assertion
8448          * rather than by ssh_disconnect, because the real point is
8449          * that we never constructed a half-open channel structure in
8450          * the first place with any type other than the above.
8451          */
8452         assert(!"Funny channel type in ssh2_msg_channel_open_failure");
8453     }
8454
8455     del234(ssh->channels, c);
8456     sfree(c);
8457 }
8458
8459 static void ssh2_msg_channel_request(Ssh ssh, struct Packet *pktin)
8460 {
8461     char *type;
8462     int typelen, want_reply;
8463     int reply = SSH2_MSG_CHANNEL_FAILURE; /* default */
8464     struct ssh_channel *c;
8465     struct Packet *pktout;
8466
8467     c = ssh_channel_msg(ssh, pktin);
8468     if (!c)
8469         return;
8470     ssh_pkt_getstring(pktin, &type, &typelen);
8471     want_reply = ssh2_pkt_getbool(pktin);
8472
8473     if (c->closes & CLOSES_SENT_CLOSE) {
8474         /*
8475          * We don't reply to channel requests after we've sent
8476          * CHANNEL_CLOSE for the channel, because our reply might
8477          * cross in the network with the other side's CHANNEL_CLOSE
8478          * and arrive after they have wound the channel up completely.
8479          */
8480         want_reply = FALSE;
8481     }
8482
8483     /*
8484      * Having got the channel number, we now look at
8485      * the request type string to see if it's something
8486      * we recognise.
8487      */
8488     if (c == ssh->mainchan) {
8489         /*
8490          * We recognise "exit-status" and "exit-signal" on
8491          * the primary channel.
8492          */
8493         if (typelen == 11 &&
8494             !memcmp(type, "exit-status", 11)) {
8495
8496             ssh->exitcode = ssh_pkt_getuint32(pktin);
8497             logeventf(ssh, "Server sent command exit status %d",
8498                       ssh->exitcode);
8499             reply = SSH2_MSG_CHANNEL_SUCCESS;
8500
8501         } else if (typelen == 11 &&
8502                    !memcmp(type, "exit-signal", 11)) {
8503
8504             int is_plausible = TRUE, is_int = FALSE;
8505             char *fmt_sig = NULL, *fmt_msg = NULL;
8506             char *msg;
8507             int msglen = 0, core = FALSE;
8508             /* ICK: older versions of OpenSSH (e.g. 3.4p1)
8509              * provide an `int' for the signal, despite its
8510              * having been a `string' in the drafts of RFC 4254 since at
8511              * least 2001. (Fixed in session.c 1.147.) Try to
8512              * infer which we can safely parse it as. */
8513             {
8514                 unsigned char *p = pktin->body +
8515                     pktin->savedpos;
8516                 long len = pktin->length - pktin->savedpos;
8517                 unsigned long num = GET_32BIT(p); /* what is it? */
8518                 /* If it's 0, it hardly matters; assume string */
8519                 if (num == 0) {
8520                     is_int = FALSE;
8521                 } else {
8522                     int maybe_int = FALSE, maybe_str = FALSE;
8523 #define CHECK_HYPOTHESIS(offset, result)                                \
8524                     do                                                  \
8525                     {                                                   \
8526                         int q = toint(offset);                          \
8527                         if (q >= 0 && q+4 <= len) {                     \
8528                             q = toint(q + 4 + GET_32BIT(p+q));          \
8529                             if (q >= 0 && q+4 <= len &&                 \
8530                                 ((q = toint(q + 4 + GET_32BIT(p+q))) != 0) && \
8531                                 q == len)                               \
8532                                 result = TRUE;                          \
8533                         }                                               \
8534                     } while(0)
8535                     CHECK_HYPOTHESIS(4+1, maybe_int);
8536                     CHECK_HYPOTHESIS(4+num+1, maybe_str);
8537 #undef CHECK_HYPOTHESIS
8538                     if (maybe_int && !maybe_str)
8539                         is_int = TRUE;
8540                     else if (!maybe_int && maybe_str)
8541                         is_int = FALSE;
8542                     else
8543                         /* Crikey. Either or neither. Panic. */
8544                         is_plausible = FALSE;
8545                 }
8546             }
8547             ssh->exitcode = 128;       /* means `unknown signal' */
8548             if (is_plausible) {
8549                 if (is_int) {
8550                     /* Old non-standard OpenSSH. */
8551                     int signum = ssh_pkt_getuint32(pktin);
8552                     fmt_sig = dupprintf(" %d", signum);
8553                     ssh->exitcode = 128 + signum;
8554                 } else {
8555                     /* As per RFC 4254. */
8556                     char *sig;
8557                     int siglen;
8558                     ssh_pkt_getstring(pktin, &sig, &siglen);
8559                     /* Signal name isn't supposed to be blank, but
8560                      * let's cope gracefully if it is. */
8561                     if (siglen) {
8562                         fmt_sig = dupprintf(" \"%.*s\"",
8563                                             siglen, sig);
8564                     }
8565
8566                     /*
8567                      * Really hideous method of translating the
8568                      * signal description back into a locally
8569                      * meaningful number.
8570                      */
8571
8572                     if (0)
8573                         ;
8574 #define TRANSLATE_SIGNAL(s) \
8575     else if (siglen == lenof(#s)-1 && !memcmp(sig, #s, siglen)) \
8576         ssh->exitcode = 128 + SIG ## s
8577 #ifdef SIGABRT
8578                     TRANSLATE_SIGNAL(ABRT);
8579 #endif
8580 #ifdef SIGALRM
8581                     TRANSLATE_SIGNAL(ALRM);
8582 #endif
8583 #ifdef SIGFPE
8584                     TRANSLATE_SIGNAL(FPE);
8585 #endif
8586 #ifdef SIGHUP
8587                     TRANSLATE_SIGNAL(HUP);
8588 #endif
8589 #ifdef SIGILL
8590                     TRANSLATE_SIGNAL(ILL);
8591 #endif
8592 #ifdef SIGINT
8593                     TRANSLATE_SIGNAL(INT);
8594 #endif
8595 #ifdef SIGKILL
8596                     TRANSLATE_SIGNAL(KILL);
8597 #endif
8598 #ifdef SIGPIPE
8599                     TRANSLATE_SIGNAL(PIPE);
8600 #endif
8601 #ifdef SIGQUIT
8602                     TRANSLATE_SIGNAL(QUIT);
8603 #endif
8604 #ifdef SIGSEGV
8605                     TRANSLATE_SIGNAL(SEGV);
8606 #endif
8607 #ifdef SIGTERM
8608                     TRANSLATE_SIGNAL(TERM);
8609 #endif
8610 #ifdef SIGUSR1
8611                     TRANSLATE_SIGNAL(USR1);
8612 #endif
8613 #ifdef SIGUSR2
8614                     TRANSLATE_SIGNAL(USR2);
8615 #endif
8616 #undef TRANSLATE_SIGNAL
8617                     else
8618                         ssh->exitcode = 128;
8619                 }
8620                 core = ssh2_pkt_getbool(pktin);
8621                 ssh_pkt_getstring(pktin, &msg, &msglen);
8622                 if (msglen) {
8623                     fmt_msg = dupprintf(" (\"%.*s\")", msglen, msg);
8624                 }
8625                 /* ignore lang tag */
8626             } /* else don't attempt to parse */
8627             logeventf(ssh, "Server exited on signal%s%s%s",
8628                       fmt_sig ? fmt_sig : "",
8629                       core ? " (core dumped)" : "",
8630                       fmt_msg ? fmt_msg : "");
8631             sfree(fmt_sig);
8632             sfree(fmt_msg);
8633             reply = SSH2_MSG_CHANNEL_SUCCESS;
8634
8635         }
8636     } else {
8637         /*
8638          * This is a channel request we don't know
8639          * about, so we now either ignore the request
8640          * or respond with CHANNEL_FAILURE, depending
8641          * on want_reply.
8642          */
8643         reply = SSH2_MSG_CHANNEL_FAILURE;
8644     }
8645     if (want_reply) {
8646         pktout = ssh2_pkt_init(reply);
8647         ssh2_pkt_adduint32(pktout, c->remoteid);
8648         ssh2_pkt_send(ssh, pktout);
8649     }
8650 }
8651
8652 static void ssh2_msg_global_request(Ssh ssh, struct Packet *pktin)
8653 {
8654     char *type;
8655     int typelen, want_reply;
8656     struct Packet *pktout;
8657
8658     ssh_pkt_getstring(pktin, &type, &typelen);
8659     want_reply = ssh2_pkt_getbool(pktin);
8660
8661     /*
8662      * We currently don't support any global requests
8663      * at all, so we either ignore the request or
8664      * respond with REQUEST_FAILURE, depending on
8665      * want_reply.
8666      */
8667     if (want_reply) {
8668         pktout = ssh2_pkt_init(SSH2_MSG_REQUEST_FAILURE);
8669         ssh2_pkt_send(ssh, pktout);
8670     }
8671 }
8672
8673 struct X11FakeAuth *ssh_sharing_add_x11_display(Ssh ssh, int authtype,
8674                                                 void *share_cs,
8675                                                 void *share_chan)
8676 {
8677     struct X11FakeAuth *auth;
8678
8679     /*
8680      * Make up a new set of fake X11 auth data, and add it to the tree
8681      * of currently valid ones with an indication of the sharing
8682      * context that it's relevant to.
8683      */
8684     auth = x11_invent_fake_auth(ssh->x11authtree, authtype);
8685     auth->share_cs = share_cs;
8686     auth->share_chan = share_chan;
8687
8688     return auth;
8689 }
8690
8691 void ssh_sharing_remove_x11_display(Ssh ssh, struct X11FakeAuth *auth)
8692 {
8693     del234(ssh->x11authtree, auth);
8694     x11_free_fake_auth(auth);
8695 }
8696
8697 static void ssh2_msg_channel_open(Ssh ssh, struct Packet *pktin)
8698 {
8699     char *type;
8700     int typelen;
8701     char *peeraddr;
8702     int peeraddrlen;
8703     int peerport;
8704     const char *error = NULL;
8705     struct ssh_channel *c;
8706     unsigned remid, winsize, pktsize;
8707     unsigned our_winsize_override = 0;
8708     struct Packet *pktout;
8709
8710     ssh_pkt_getstring(pktin, &type, &typelen);
8711     c = snew(struct ssh_channel);
8712     c->ssh = ssh;
8713
8714     remid = ssh_pkt_getuint32(pktin);
8715     winsize = ssh_pkt_getuint32(pktin);
8716     pktsize = ssh_pkt_getuint32(pktin);
8717
8718     if (typelen == 3 && !memcmp(type, "x11", 3)) {
8719         char *addrstr;
8720
8721         ssh_pkt_getstring(pktin, &peeraddr, &peeraddrlen);
8722         addrstr = dupprintf("%.*s", peeraddrlen, NULLTOEMPTY(peeraddr));
8723         peerport = ssh_pkt_getuint32(pktin);
8724
8725         logeventf(ssh, "Received X11 connect request from %s:%d",
8726                   addrstr, peerport);
8727
8728         if (!ssh->X11_fwd_enabled && !ssh->connshare)
8729             error = "X11 forwarding is not enabled";
8730         else {
8731             c->u.x11.xconn = x11_init(ssh->x11authtree, c,
8732                                       addrstr, peerport);
8733             c->type = CHAN_X11;
8734             c->u.x11.initial = TRUE;
8735
8736             /*
8737              * If we are a connection-sharing upstream, then we should
8738              * initially present a very small window, adequate to take
8739              * the X11 initial authorisation packet but not much more.
8740              * Downstream will then present us a larger window (by
8741              * fiat of the connection-sharing protocol) and we can
8742              * guarantee to send a positive-valued WINDOW_ADJUST.
8743              */
8744             if (ssh->connshare)
8745                 our_winsize_override = 128;
8746
8747             logevent("Opened X11 forward channel");
8748         }
8749
8750         sfree(addrstr);
8751     } else if (typelen == 15 &&
8752                !memcmp(type, "forwarded-tcpip", 15)) {
8753         struct ssh_rportfwd pf, *realpf;
8754         char *shost;
8755         int shostlen;
8756         ssh_pkt_getstring(pktin, &shost, &shostlen);/* skip address */
8757         pf.shost = dupprintf("%.*s", shostlen, NULLTOEMPTY(shost));
8758         pf.sport = ssh_pkt_getuint32(pktin);
8759         ssh_pkt_getstring(pktin, &peeraddr, &peeraddrlen);
8760         peerport = ssh_pkt_getuint32(pktin);
8761         realpf = find234(ssh->rportfwds, &pf, NULL);
8762         logeventf(ssh, "Received remote port %s:%d open request "
8763                   "from %.*s:%d", pf.shost, pf.sport,
8764                   peeraddrlen, NULLTOEMPTY(peeraddr), peerport);
8765         sfree(pf.shost);
8766
8767         if (realpf == NULL) {
8768             error = "Remote port is not recognised";
8769         } else {
8770             char *err;
8771
8772             if (realpf->share_ctx) {
8773                 /*
8774                  * This port forwarding is on behalf of a
8775                  * connection-sharing downstream, so abandon our own
8776                  * channel-open procedure and just pass the message on
8777                  * to sshshare.c.
8778                  */
8779                 share_got_pkt_from_server(realpf->share_ctx, pktin->type,
8780                                           pktin->body, pktin->length);
8781                 sfree(c);
8782                 return;
8783             }
8784
8785             err = pfd_connect(&c->u.pfd.pf, realpf->dhost, realpf->dport,
8786                               c, ssh->conf, realpf->pfrec->addressfamily);
8787             logeventf(ssh, "Attempting to forward remote port to "
8788                       "%s:%d", realpf->dhost, realpf->dport);
8789             if (err != NULL) {
8790                 logeventf(ssh, "Port open failed: %s", err);
8791                 sfree(err);
8792                 error = "Port open failed";
8793             } else {
8794                 logevent("Forwarded port opened successfully");
8795                 c->type = CHAN_SOCKDATA;
8796             }
8797         }
8798     } else if (typelen == 22 &&
8799                !memcmp(type, "auth-agent@openssh.com", 22)) {
8800         if (!ssh->agentfwd_enabled)
8801             error = "Agent forwarding is not enabled";
8802         else {
8803             c->type = CHAN_AGENT;       /* identify channel type */
8804             c->u.a.lensofar = 0;
8805             c->u.a.message = NULL;
8806             c->u.a.outstanding_requests = 0;
8807         }
8808     } else {
8809         error = "Unsupported channel type requested";
8810     }
8811
8812     c->remoteid = remid;
8813     c->halfopen = FALSE;
8814     if (error) {
8815         pktout = ssh2_pkt_init(SSH2_MSG_CHANNEL_OPEN_FAILURE);
8816         ssh2_pkt_adduint32(pktout, c->remoteid);
8817         ssh2_pkt_adduint32(pktout, SSH2_OPEN_CONNECT_FAILED);
8818         ssh2_pkt_addstring(pktout, error);
8819         ssh2_pkt_addstring(pktout, "en");       /* language tag */
8820         ssh2_pkt_send(ssh, pktout);
8821         logeventf(ssh, "Rejected channel open: %s", error);
8822         sfree(c);
8823     } else {
8824         ssh_channel_init(c);
8825         c->v.v2.remwindow = winsize;
8826         c->v.v2.remmaxpkt = pktsize;
8827         if (our_winsize_override) {
8828             c->v.v2.locwindow = c->v.v2.locmaxwin = c->v.v2.remlocwin =
8829                 our_winsize_override;
8830         }
8831         pktout = ssh2_pkt_init(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION);
8832         ssh2_pkt_adduint32(pktout, c->remoteid);
8833         ssh2_pkt_adduint32(pktout, c->localid);
8834         ssh2_pkt_adduint32(pktout, c->v.v2.locwindow);
8835         ssh2_pkt_adduint32(pktout, OUR_V2_MAXPKT);      /* our max pkt size */
8836         ssh2_pkt_send(ssh, pktout);
8837     }
8838 }
8839
8840 void sshfwd_x11_sharing_handover(struct ssh_channel *c,
8841                                  void *share_cs, void *share_chan,
8842                                  const char *peer_addr, int peer_port,
8843                                  int endian, int protomajor, int protominor,
8844                                  const void *initial_data, int initial_len)
8845 {
8846     /*
8847      * This function is called when we've just discovered that an X
8848      * forwarding channel on which we'd been handling the initial auth
8849      * ourselves turns out to be destined for a connection-sharing
8850      * downstream. So we turn the channel into a CHAN_SHARING, meaning
8851      * that we completely stop tracking windows and buffering data and
8852      * just pass more or less unmodified SSH messages back and forth.
8853      */
8854     c->type = CHAN_SHARING;
8855     c->u.sharing.ctx = share_cs;
8856     share_setup_x11_channel(share_cs, share_chan,
8857                             c->localid, c->remoteid, c->v.v2.remwindow,
8858                             c->v.v2.remmaxpkt, c->v.v2.locwindow,
8859                             peer_addr, peer_port, endian,
8860                             protomajor, protominor,
8861                             initial_data, initial_len);
8862 }
8863
8864 void sshfwd_x11_is_local(struct ssh_channel *c)
8865 {
8866     /*
8867      * This function is called when we've just discovered that an X
8868      * forwarding channel is _not_ destined for a connection-sharing
8869      * downstream but we're going to handle it ourselves. We stop
8870      * presenting a cautiously small window and go into ordinary data
8871      * exchange mode.
8872      */
8873     c->u.x11.initial = FALSE;
8874     ssh2_set_window(c, ssh_is_simple(c->ssh) ? OUR_V2_BIGWIN : OUR_V2_WINSIZE);
8875 }
8876
8877 /*
8878  * Buffer banner messages for later display at some convenient point,
8879  * if we're going to display them.
8880  */
8881 static void ssh2_msg_userauth_banner(Ssh ssh, struct Packet *pktin)
8882 {
8883     /* Arbitrary limit to prevent unbounded inflation of buffer */
8884     if (conf_get_int(ssh->conf, CONF_ssh_show_banner) &&
8885         bufchain_size(&ssh->banner) <= 131072) {
8886         char *banner = NULL;
8887         int size = 0;
8888         ssh_pkt_getstring(pktin, &banner, &size);
8889         if (banner)
8890             bufchain_add(&ssh->banner, banner, size);
8891     }
8892 }
8893
8894 /* Helper function to deal with sending tty modes for "pty-req" */
8895 static void ssh2_send_ttymode(void *data,
8896                               const struct ssh_ttymode *mode, char *val)
8897 {
8898     struct Packet *pktout = (struct Packet *)data;
8899     unsigned int arg = 0;
8900
8901     switch (mode->type) {
8902       case TTY_OP_CHAR:
8903         arg = ssh_tty_parse_specchar(val);
8904         break;
8905       case TTY_OP_BOOL:
8906         arg = ssh_tty_parse_boolean(val);
8907         break;
8908     }
8909     ssh2_pkt_addbyte(pktout, mode->opcode);
8910     ssh2_pkt_adduint32(pktout, arg);
8911 }
8912
8913 static void ssh2_setup_x11(struct ssh_channel *c, struct Packet *pktin,
8914                            void *ctx)
8915 {
8916     struct ssh2_setup_x11_state {
8917         int crLine;
8918     };
8919     Ssh ssh = c->ssh;
8920     struct Packet *pktout;
8921     crStateP(ssh2_setup_x11_state, ctx);
8922
8923     crBeginState;
8924
8925     logevent("Requesting X11 forwarding");
8926     pktout = ssh2_chanreq_init(ssh->mainchan, "x11-req",
8927                                ssh2_setup_x11, s);
8928     ssh2_pkt_addbool(pktout, 0);               /* many connections */
8929     ssh2_pkt_addstring(pktout, ssh->x11auth->protoname);
8930     ssh2_pkt_addstring(pktout, ssh->x11auth->datastring);
8931     ssh2_pkt_adduint32(pktout, ssh->x11disp->screennum);
8932     ssh2_pkt_send(ssh, pktout);
8933
8934     /* Wait to be called back with either a response packet, or NULL
8935      * meaning clean up and free our data */
8936     crReturnV;
8937
8938     if (pktin) {
8939         if (pktin->type == SSH2_MSG_CHANNEL_SUCCESS) {
8940             logevent("X11 forwarding enabled");
8941             ssh->X11_fwd_enabled = TRUE;
8942         } else
8943             logevent("X11 forwarding refused");
8944     }
8945
8946     crFinishFreeV;
8947 }
8948
8949 static void ssh2_setup_agent(struct ssh_channel *c, struct Packet *pktin,
8950                                    void *ctx)
8951 {
8952     struct ssh2_setup_agent_state {
8953         int crLine;
8954     };
8955     Ssh ssh = c->ssh;
8956     struct Packet *pktout;
8957     crStateP(ssh2_setup_agent_state, ctx);
8958
8959     crBeginState;
8960
8961     logevent("Requesting OpenSSH-style agent forwarding");
8962     pktout = ssh2_chanreq_init(ssh->mainchan, "auth-agent-req@openssh.com",
8963                                ssh2_setup_agent, s);
8964     ssh2_pkt_send(ssh, pktout);
8965
8966     /* Wait to be called back with either a response packet, or NULL
8967      * meaning clean up and free our data */
8968     crReturnV;
8969
8970     if (pktin) {
8971         if (pktin->type == SSH2_MSG_CHANNEL_SUCCESS) {
8972             logevent("Agent forwarding enabled");
8973             ssh->agentfwd_enabled = TRUE;
8974         } else
8975             logevent("Agent forwarding refused");
8976     }
8977
8978     crFinishFreeV;
8979 }
8980
8981 static void ssh2_setup_pty(struct ssh_channel *c, struct Packet *pktin,
8982                                  void *ctx)
8983 {
8984     struct ssh2_setup_pty_state {
8985         int crLine;
8986     };
8987     Ssh ssh = c->ssh;
8988     struct Packet *pktout;
8989     crStateP(ssh2_setup_pty_state, ctx);
8990
8991     crBeginState;
8992
8993     /* Unpick the terminal-speed string. */
8994     /* XXX perhaps we should allow no speeds to be sent. */
8995     ssh->ospeed = 38400; ssh->ispeed = 38400; /* last-resort defaults */
8996     sscanf(conf_get_str(ssh->conf, CONF_termspeed), "%d,%d", &ssh->ospeed, &ssh->ispeed);
8997     /* Build the pty request. */
8998     pktout = ssh2_chanreq_init(ssh->mainchan, "pty-req",
8999                                ssh2_setup_pty, s);
9000     ssh2_pkt_addstring(pktout, conf_get_str(ssh->conf, CONF_termtype));
9001     ssh2_pkt_adduint32(pktout, ssh->term_width);
9002     ssh2_pkt_adduint32(pktout, ssh->term_height);
9003     ssh2_pkt_adduint32(pktout, 0);             /* pixel width */
9004     ssh2_pkt_adduint32(pktout, 0);             /* pixel height */
9005     ssh2_pkt_addstring_start(pktout);
9006     parse_ttymodes(ssh, ssh2_send_ttymode, (void *)pktout);
9007     ssh2_pkt_addbyte(pktout, SSH2_TTY_OP_ISPEED);
9008     ssh2_pkt_adduint32(pktout, ssh->ispeed);
9009     ssh2_pkt_addbyte(pktout, SSH2_TTY_OP_OSPEED);
9010     ssh2_pkt_adduint32(pktout, ssh->ospeed);
9011     ssh2_pkt_addstring_data(pktout, "\0", 1); /* TTY_OP_END */
9012     ssh2_pkt_send(ssh, pktout);
9013     ssh->state = SSH_STATE_INTERMED;
9014
9015     /* Wait to be called back with either a response packet, or NULL
9016      * meaning clean up and free our data */
9017     crReturnV;
9018
9019     if (pktin) {
9020         if (pktin->type == SSH2_MSG_CHANNEL_SUCCESS) {
9021             logeventf(ssh, "Allocated pty (ospeed %dbps, ispeed %dbps)",
9022                       ssh->ospeed, ssh->ispeed);
9023             ssh->got_pty = TRUE;
9024         } else {
9025             c_write_str(ssh, "Server refused to allocate pty\r\n");
9026             ssh->editing = ssh->echoing = 1;
9027         }
9028     }
9029
9030     crFinishFreeV;
9031 }
9032
9033 static void ssh2_setup_env(struct ssh_channel *c, struct Packet *pktin,
9034                            void *ctx)
9035 {
9036     struct ssh2_setup_env_state {
9037         int crLine;
9038         int num_env, env_left, env_ok;
9039     };
9040     Ssh ssh = c->ssh;
9041     struct Packet *pktout;
9042     crStateP(ssh2_setup_env_state, ctx);
9043
9044     crBeginState;
9045
9046     /*
9047      * Send environment variables.
9048      * 
9049      * Simplest thing here is to send all the requests at once, and
9050      * then wait for a whole bunch of successes or failures.
9051      */
9052     s->num_env = 0;
9053     {
9054         char *key, *val;
9055
9056         for (val = conf_get_str_strs(ssh->conf, CONF_environmt, NULL, &key);
9057              val != NULL;
9058              val = conf_get_str_strs(ssh->conf, CONF_environmt, key, &key)) {
9059             pktout = ssh2_chanreq_init(ssh->mainchan, "env", ssh2_setup_env, s);
9060             ssh2_pkt_addstring(pktout, key);
9061             ssh2_pkt_addstring(pktout, val);
9062             ssh2_pkt_send(ssh, pktout);
9063
9064             s->num_env++;
9065         }
9066         if (s->num_env)
9067             logeventf(ssh, "Sent %d environment variables", s->num_env);
9068     }
9069
9070     if (s->num_env) {
9071         s->env_ok = 0;
9072         s->env_left = s->num_env;
9073
9074         while (s->env_left > 0) {
9075             /* Wait to be called back with either a response packet,
9076              * or NULL meaning clean up and free our data */
9077             crReturnV;
9078             if (!pktin) goto out;
9079             if (pktin->type == SSH2_MSG_CHANNEL_SUCCESS)
9080                 s->env_ok++;
9081             s->env_left--;
9082         }
9083
9084         if (s->env_ok == s->num_env) {
9085             logevent("All environment variables successfully set");
9086         } else if (s->env_ok == 0) {
9087             logevent("All environment variables refused");
9088             c_write_str(ssh, "Server refused to set environment variables\r\n");
9089         } else {
9090             logeventf(ssh, "%d environment variables refused",
9091                       s->num_env - s->env_ok);
9092             c_write_str(ssh, "Server refused to set all environment variables\r\n");
9093         }
9094     }
9095   out:;
9096     crFinishFreeV;
9097 }
9098
9099 /*
9100  * Handle the SSH-2 userauth and connection layers.
9101  */
9102 static void ssh2_msg_authconn(Ssh ssh, struct Packet *pktin)
9103 {
9104     do_ssh2_authconn(ssh, NULL, 0, pktin);
9105 }
9106
9107 static void ssh2_response_authconn(struct ssh_channel *c, struct Packet *pktin,
9108                                    void *ctx)
9109 {
9110     if (pktin)
9111         do_ssh2_authconn(c->ssh, NULL, 0, pktin);
9112 }
9113
9114 static void do_ssh2_authconn(Ssh ssh, const unsigned char *in, int inlen,
9115                              struct Packet *pktin)
9116 {
9117     struct do_ssh2_authconn_state {
9118         int crLine;
9119         enum {
9120             AUTH_TYPE_NONE,
9121                 AUTH_TYPE_PUBLICKEY,
9122                 AUTH_TYPE_PUBLICKEY_OFFER_LOUD,
9123                 AUTH_TYPE_PUBLICKEY_OFFER_QUIET,
9124                 AUTH_TYPE_PASSWORD,
9125                 AUTH_TYPE_GSSAPI,      /* always QUIET */
9126                 AUTH_TYPE_KEYBOARD_INTERACTIVE,
9127                 AUTH_TYPE_KEYBOARD_INTERACTIVE_QUIET
9128         } type;
9129         int done_service_req;
9130         int gotit, need_pw, can_pubkey, can_passwd, can_keyb_inter;
9131         int tried_pubkey_config, done_agent;
9132 #ifndef NO_GSSAPI
9133         int can_gssapi;
9134         int tried_gssapi;
9135 #endif
9136         int kbd_inter_refused;
9137         int we_are_in, userauth_success;
9138         prompts_t *cur_prompt;
9139         int num_prompts;
9140         char *username;
9141         char *password;
9142         int got_username;
9143         void *publickey_blob;
9144         int publickey_bloblen;
9145         int privatekey_available, privatekey_encrypted;
9146         char *publickey_algorithm;
9147         char *publickey_comment;
9148         unsigned char agent_request[5], *agent_response, *agentp;
9149         int agent_responselen;
9150         unsigned char *pkblob_in_agent;
9151         int keyi, nkeys;
9152         char *pkblob, *alg, *commentp;
9153         int pklen, alglen, commentlen;
9154         int siglen, retlen, len;
9155         char *q, *agentreq, *ret;
9156         struct Packet *pktout;
9157         Filename *keyfile;
9158 #ifndef NO_GSSAPI
9159         struct ssh_gss_library *gsslib;
9160         Ssh_gss_ctx gss_ctx;
9161         Ssh_gss_buf gss_buf;
9162         Ssh_gss_buf gss_rcvtok, gss_sndtok;
9163         Ssh_gss_name gss_srv_name;
9164         Ssh_gss_stat gss_stat;
9165 #endif
9166     };
9167     crState(do_ssh2_authconn_state);
9168
9169     crBeginState;
9170
9171     /* Register as a handler for all the messages this coroutine handles. */
9172     ssh->packet_dispatch[SSH2_MSG_SERVICE_ACCEPT] = ssh2_msg_authconn;
9173     ssh->packet_dispatch[SSH2_MSG_USERAUTH_REQUEST] = ssh2_msg_authconn;
9174     ssh->packet_dispatch[SSH2_MSG_USERAUTH_FAILURE] = ssh2_msg_authconn;
9175     ssh->packet_dispatch[SSH2_MSG_USERAUTH_SUCCESS] = ssh2_msg_authconn;
9176     ssh->packet_dispatch[SSH2_MSG_USERAUTH_BANNER] = ssh2_msg_authconn;
9177     ssh->packet_dispatch[SSH2_MSG_USERAUTH_PK_OK] = ssh2_msg_authconn;
9178     /* ssh->packet_dispatch[SSH2_MSG_USERAUTH_PASSWD_CHANGEREQ] = ssh2_msg_authconn; duplicate case value */
9179     /* ssh->packet_dispatch[SSH2_MSG_USERAUTH_INFO_REQUEST] = ssh2_msg_authconn; duplicate case value */
9180     ssh->packet_dispatch[SSH2_MSG_USERAUTH_INFO_RESPONSE] = ssh2_msg_authconn;
9181     ssh->packet_dispatch[SSH2_MSG_GLOBAL_REQUEST] = ssh2_msg_authconn;
9182     ssh->packet_dispatch[SSH2_MSG_REQUEST_SUCCESS] = ssh2_msg_authconn;
9183     ssh->packet_dispatch[SSH2_MSG_REQUEST_FAILURE] = ssh2_msg_authconn;
9184     ssh->packet_dispatch[SSH2_MSG_CHANNEL_OPEN] = ssh2_msg_authconn;
9185     ssh->packet_dispatch[SSH2_MSG_CHANNEL_OPEN_CONFIRMATION] = ssh2_msg_authconn;
9186     ssh->packet_dispatch[SSH2_MSG_CHANNEL_OPEN_FAILURE] = ssh2_msg_authconn;
9187     ssh->packet_dispatch[SSH2_MSG_CHANNEL_WINDOW_ADJUST] = ssh2_msg_authconn;
9188     ssh->packet_dispatch[SSH2_MSG_CHANNEL_DATA] = ssh2_msg_authconn;
9189     ssh->packet_dispatch[SSH2_MSG_CHANNEL_EXTENDED_DATA] = ssh2_msg_authconn;
9190     ssh->packet_dispatch[SSH2_MSG_CHANNEL_EOF] = ssh2_msg_authconn;
9191     ssh->packet_dispatch[SSH2_MSG_CHANNEL_CLOSE] = ssh2_msg_authconn;
9192     
9193     s->done_service_req = FALSE;
9194     s->we_are_in = s->userauth_success = FALSE;
9195     s->agent_response = NULL;
9196 #ifndef NO_GSSAPI
9197     s->tried_gssapi = FALSE;
9198 #endif
9199
9200     if (!ssh->bare_connection) {
9201         if (!conf_get_int(ssh->conf, CONF_ssh_no_userauth)) {
9202             /*
9203              * Request userauth protocol, and await a response to it.
9204              */
9205             s->pktout = ssh2_pkt_init(SSH2_MSG_SERVICE_REQUEST);
9206             ssh2_pkt_addstring(s->pktout, "ssh-userauth");
9207             ssh2_pkt_send(ssh, s->pktout);
9208             crWaitUntilV(pktin);
9209             if (pktin->type == SSH2_MSG_SERVICE_ACCEPT)
9210                 s->done_service_req = TRUE;
9211         }
9212         if (!s->done_service_req) {
9213             /*
9214              * Request connection protocol directly, without authentication.
9215              */
9216             s->pktout = ssh2_pkt_init(SSH2_MSG_SERVICE_REQUEST);
9217             ssh2_pkt_addstring(s->pktout, "ssh-connection");
9218             ssh2_pkt_send(ssh, s->pktout);
9219             crWaitUntilV(pktin);
9220             if (pktin->type == SSH2_MSG_SERVICE_ACCEPT) {
9221                 s->we_are_in = TRUE; /* no auth required */
9222             } else {
9223                 bombout(("Server refused service request"));
9224                 crStopV;
9225             }
9226         }
9227     } else {
9228         s->we_are_in = TRUE;
9229     }
9230
9231     /* Arrange to be able to deal with any BANNERs that come in.
9232      * (We do this now as packets may come in during the next bit.) */
9233     bufchain_init(&ssh->banner);
9234     ssh->packet_dispatch[SSH2_MSG_USERAUTH_BANNER] =
9235         ssh2_msg_userauth_banner;
9236
9237     /*
9238      * Misc one-time setup for authentication.
9239      */
9240     s->publickey_blob = NULL;
9241     if (!s->we_are_in) {
9242
9243         /*
9244          * Load the public half of any configured public key file
9245          * for later use.
9246          */
9247         s->keyfile = conf_get_filename(ssh->conf, CONF_keyfile);
9248         if (!filename_is_null(s->keyfile)) {
9249             int keytype;
9250             logeventf(ssh, "Reading key file \"%.150s\"",
9251                       filename_to_str(s->keyfile));
9252             keytype = key_type(s->keyfile);
9253             if (keytype == SSH_KEYTYPE_SSH2 ||
9254                 keytype == SSH_KEYTYPE_SSH2_PUBLIC_RFC4716 ||
9255                 keytype == SSH_KEYTYPE_SSH2_PUBLIC_OPENSSH) {
9256                 const char *error;
9257                 s->publickey_blob =
9258                     ssh2_userkey_loadpub(s->keyfile,
9259                                          &s->publickey_algorithm,
9260                                          &s->publickey_bloblen, 
9261                                          &s->publickey_comment, &error);
9262                 if (s->publickey_blob) {
9263                     s->privatekey_available = (keytype == SSH_KEYTYPE_SSH2);
9264                     if (!s->privatekey_available)
9265                         logeventf(ssh, "Key file contains public key only");
9266                     s->privatekey_encrypted =
9267                         ssh2_userkey_encrypted(s->keyfile, NULL);
9268                 } else {
9269                     char *msgbuf;
9270                     logeventf(ssh, "Unable to load key (%s)", 
9271                               error);
9272                     msgbuf = dupprintf("Unable to load key file "
9273                                        "\"%.150s\" (%s)\r\n",
9274                                        filename_to_str(s->keyfile),
9275                                        error);
9276                     c_write_str(ssh, msgbuf);
9277                     sfree(msgbuf);
9278                 }
9279             } else {
9280                 char *msgbuf;
9281                 logeventf(ssh, "Unable to use this key file (%s)",
9282                           key_type_to_str(keytype));
9283                 msgbuf = dupprintf("Unable to use key file \"%.150s\""
9284                                    " (%s)\r\n",
9285                                    filename_to_str(s->keyfile),
9286                                    key_type_to_str(keytype));
9287                 c_write_str(ssh, msgbuf);
9288                 sfree(msgbuf);
9289                 s->publickey_blob = NULL;
9290             }
9291         }
9292
9293         /*
9294          * Find out about any keys Pageant has (but if there's a
9295          * public key configured, filter out all others).
9296          */
9297         s->nkeys = 0;
9298         s->agent_response = NULL;
9299         s->pkblob_in_agent = NULL;
9300         if (conf_get_int(ssh->conf, CONF_tryagent) && agent_exists()) {
9301
9302             void *r;
9303
9304             logevent("Pageant is running. Requesting keys.");
9305
9306             /* Request the keys held by the agent. */
9307             PUT_32BIT(s->agent_request, 1);
9308             s->agent_request[4] = SSH2_AGENTC_REQUEST_IDENTITIES;
9309             if (!agent_query(s->agent_request, 5, &r, &s->agent_responselen,
9310                              ssh_agent_callback, ssh)) {
9311                 do {
9312                     crReturnV;
9313                     if (pktin) {
9314                         bombout(("Unexpected data from server while"
9315                                  " waiting for agent response"));
9316                         crStopV;
9317                     }
9318                 } while (pktin || inlen > 0);
9319                 r = ssh->agent_response;
9320                 s->agent_responselen = ssh->agent_response_len;
9321             }
9322             s->agent_response = (unsigned char *) r;
9323             if (s->agent_response && s->agent_responselen >= 5 &&
9324                 s->agent_response[4] == SSH2_AGENT_IDENTITIES_ANSWER) {
9325                 int keyi;
9326                 unsigned char *p;
9327                 p = s->agent_response + 5;
9328                 s->nkeys = toint(GET_32BIT(p));
9329
9330                 /*
9331                  * Vet the Pageant response to ensure that the key
9332                  * count and blob lengths make sense.
9333                  */
9334                 if (s->nkeys < 0) {
9335                     logeventf(ssh, "Pageant response contained a negative"
9336                               " key count %d", s->nkeys);
9337                     s->nkeys = 0;
9338                     goto done_agent_query;
9339                 } else {
9340                     unsigned char *q = p + 4;
9341                     int lenleft = s->agent_responselen - 5 - 4;
9342
9343                     for (keyi = 0; keyi < s->nkeys; keyi++) {
9344                         int bloblen, commentlen;
9345                         if (lenleft < 4) {
9346                             logeventf(ssh, "Pageant response was truncated");
9347                             s->nkeys = 0;
9348                             goto done_agent_query;
9349                         }
9350                         bloblen = toint(GET_32BIT(q));
9351                         if (bloblen < 0 || bloblen > lenleft) {
9352                             logeventf(ssh, "Pageant response was truncated");
9353                             s->nkeys = 0;
9354                             goto done_agent_query;
9355                         }
9356                         lenleft -= 4 + bloblen;
9357                         q += 4 + bloblen;
9358                         commentlen = toint(GET_32BIT(q));
9359                         if (commentlen < 0 || commentlen > lenleft) {
9360                             logeventf(ssh, "Pageant response was truncated");
9361                             s->nkeys = 0;
9362                             goto done_agent_query;
9363                         }
9364                         lenleft -= 4 + commentlen;
9365                         q += 4 + commentlen;
9366                     }
9367                 }
9368
9369                 p += 4;
9370                 logeventf(ssh, "Pageant has %d SSH-2 keys", s->nkeys);
9371                 if (s->publickey_blob) {
9372                     /* See if configured key is in agent. */
9373                     for (keyi = 0; keyi < s->nkeys; keyi++) {
9374                         s->pklen = toint(GET_32BIT(p));
9375                         if (s->pklen == s->publickey_bloblen &&
9376                             !memcmp(p+4, s->publickey_blob,
9377                                     s->publickey_bloblen)) {
9378                             logeventf(ssh, "Pageant key #%d matches "
9379                                       "configured key file", keyi);
9380                             s->keyi = keyi;
9381                             s->pkblob_in_agent = p;
9382                             break;
9383                         }
9384                         p += 4 + s->pklen;
9385                         p += toint(GET_32BIT(p)) + 4; /* comment */
9386                     }
9387                     if (!s->pkblob_in_agent) {
9388                         logevent("Configured key file not in Pageant");
9389                         s->nkeys = 0;
9390                     }
9391                 }
9392             } else {
9393                 logevent("Failed to get reply from Pageant");
9394             }
9395           done_agent_query:;
9396         }
9397
9398     }
9399
9400     /*
9401      * We repeat this whole loop, including the username prompt,
9402      * until we manage a successful authentication. If the user
9403      * types the wrong _password_, they can be sent back to the
9404      * beginning to try another username, if this is configured on.
9405      * (If they specify a username in the config, they are never
9406      * asked, even if they do give a wrong password.)
9407      * 
9408      * I think this best serves the needs of
9409      * 
9410      *  - the people who have no configuration, no keys, and just
9411      *    want to try repeated (username,password) pairs until they
9412      *    type both correctly
9413      * 
9414      *  - people who have keys and configuration but occasionally
9415      *    need to fall back to passwords
9416      * 
9417      *  - people with a key held in Pageant, who might not have
9418      *    logged in to a particular machine before; so they want to
9419      *    type a username, and then _either_ their key will be
9420      *    accepted, _or_ they will type a password. If they mistype
9421      *    the username they will want to be able to get back and
9422      *    retype it!
9423      */
9424     s->got_username = FALSE;
9425     while (!s->we_are_in) {
9426         /*
9427          * Get a username.
9428          */
9429         if (s->got_username && !conf_get_int(ssh->conf, CONF_change_username)) {
9430             /*
9431              * We got a username last time round this loop, and
9432              * with change_username turned off we don't try to get
9433              * it again.
9434              */
9435         } else if ((ssh->username = get_remote_username(ssh->conf)) == NULL) {
9436             int ret; /* need not be kept over crReturn */
9437             s->cur_prompt = new_prompts(ssh->frontend);
9438             s->cur_prompt->to_server = TRUE;
9439             s->cur_prompt->name = dupstr("SSH login name");
9440             add_prompt(s->cur_prompt, dupstr("login as: "), TRUE); 
9441             ret = get_userpass_input(s->cur_prompt, NULL, 0);
9442             while (ret < 0) {
9443                 ssh->send_ok = 1;
9444                 crWaitUntilV(!pktin);
9445                 ret = get_userpass_input(s->cur_prompt, in, inlen);
9446                 ssh->send_ok = 0;
9447             }
9448             if (!ret) {
9449                 /*
9450                  * get_userpass_input() failed to get a username.
9451                  * Terminate.
9452                  */
9453                 free_prompts(s->cur_prompt);
9454                 ssh_disconnect(ssh, "No username provided", NULL, 0, TRUE);
9455                 crStopV;
9456             }
9457             ssh->username = dupstr(s->cur_prompt->prompts[0]->result);
9458             free_prompts(s->cur_prompt);
9459         } else {
9460             char *stuff;
9461             if ((flags & FLAG_VERBOSE) || (flags & FLAG_INTERACTIVE)) {
9462                 stuff = dupprintf("Using username \"%s\".\r\n", ssh->username);
9463                 c_write_str(ssh, stuff);
9464                 sfree(stuff);
9465             }
9466         }
9467         s->got_username = TRUE;
9468
9469         /*
9470          * Send an authentication request using method "none": (a)
9471          * just in case it succeeds, and (b) so that we know what
9472          * authentication methods we can usefully try next.
9473          */
9474         ssh->pkt_actx = SSH2_PKTCTX_NOAUTH;
9475
9476         s->pktout = ssh2_pkt_init(SSH2_MSG_USERAUTH_REQUEST);
9477         ssh2_pkt_addstring(s->pktout, ssh->username);
9478         ssh2_pkt_addstring(s->pktout, "ssh-connection");/* service requested */
9479         ssh2_pkt_addstring(s->pktout, "none");    /* method */
9480         ssh2_pkt_send(ssh, s->pktout);
9481         s->type = AUTH_TYPE_NONE;
9482         s->gotit = FALSE;
9483         s->we_are_in = FALSE;
9484
9485         s->tried_pubkey_config = FALSE;
9486         s->kbd_inter_refused = FALSE;
9487
9488         /* Reset agent request state. */
9489         s->done_agent = FALSE;
9490         if (s->agent_response) {
9491             if (s->pkblob_in_agent) {
9492                 s->agentp = s->pkblob_in_agent;
9493             } else {
9494                 s->agentp = s->agent_response + 5 + 4;
9495                 s->keyi = 0;
9496             }
9497         }
9498
9499         while (1) {
9500             char *methods = NULL;
9501             int methlen = 0;
9502
9503             /*
9504              * Wait for the result of the last authentication request.
9505              */
9506             if (!s->gotit)
9507                 crWaitUntilV(pktin);
9508             /*
9509              * Now is a convenient point to spew any banner material
9510              * that we've accumulated. (This should ensure that when
9511              * we exit the auth loop, we haven't any left to deal
9512              * with.)
9513              */
9514             {
9515                 int size = bufchain_size(&ssh->banner);
9516                 /*
9517                  * Don't show the banner if we're operating in
9518                  * non-verbose non-interactive mode. (It's probably
9519                  * a script, which means nobody will read the
9520                  * banner _anyway_, and moreover the printing of
9521                  * the banner will screw up processing on the
9522                  * output of (say) plink.)
9523                  */
9524                 if (size && (flags & (FLAG_VERBOSE | FLAG_INTERACTIVE))) {
9525                     char *banner = snewn(size, char);
9526                     bufchain_fetch(&ssh->banner, banner, size);
9527                     c_write_untrusted(ssh, banner, size);
9528                     sfree(banner);
9529                 }
9530                 bufchain_clear(&ssh->banner);
9531             }
9532             if (pktin->type == SSH2_MSG_USERAUTH_SUCCESS) {
9533                 logevent("Access granted");
9534                 s->we_are_in = s->userauth_success = TRUE;
9535                 break;
9536             }
9537
9538             if (pktin->type != SSH2_MSG_USERAUTH_FAILURE && s->type != AUTH_TYPE_GSSAPI) {
9539                 bombout(("Strange packet received during authentication: "
9540                          "type %d", pktin->type));
9541                 crStopV;
9542             }
9543
9544             s->gotit = FALSE;
9545
9546             /*
9547              * OK, we're now sitting on a USERAUTH_FAILURE message, so
9548              * we can look at the string in it and know what we can
9549              * helpfully try next.
9550              */
9551             if (pktin->type == SSH2_MSG_USERAUTH_FAILURE) {
9552                 ssh_pkt_getstring(pktin, &methods, &methlen);
9553                 if (!ssh2_pkt_getbool(pktin)) {
9554                     /*
9555                      * We have received an unequivocal Access
9556                      * Denied. This can translate to a variety of
9557                      * messages, or no message at all.
9558                      *
9559                      * For forms of authentication which are attempted
9560                      * implicitly, by which I mean without printing
9561                      * anything in the window indicating that we're
9562                      * trying them, we should never print 'Access
9563                      * denied'.
9564                      *
9565                      * If we do print a message saying that we're
9566                      * attempting some kind of authentication, it's OK
9567                      * to print a followup message saying it failed -
9568                      * but the message may sometimes be more specific
9569                      * than simply 'Access denied'.
9570                      *
9571                      * Additionally, if we'd just tried password
9572                      * authentication, we should break out of this
9573                      * whole loop so as to go back to the username
9574                      * prompt (iff we're configured to allow
9575                      * username change attempts).
9576                      */
9577                     if (s->type == AUTH_TYPE_NONE) {
9578                         /* do nothing */
9579                     } else if (s->type == AUTH_TYPE_PUBLICKEY_OFFER_LOUD ||
9580                                s->type == AUTH_TYPE_PUBLICKEY_OFFER_QUIET) {
9581                         if (s->type == AUTH_TYPE_PUBLICKEY_OFFER_LOUD)
9582                             c_write_str(ssh, "Server refused our key\r\n");
9583                         logevent("Server refused our key");
9584                     } else if (s->type == AUTH_TYPE_PUBLICKEY) {
9585                         /* This _shouldn't_ happen except by a
9586                          * protocol bug causing client and server to
9587                          * disagree on what is a correct signature. */
9588                         c_write_str(ssh, "Server refused public-key signature"
9589                                     " despite accepting key!\r\n");
9590                         logevent("Server refused public-key signature"
9591                                  " despite accepting key!");
9592                     } else if (s->type==AUTH_TYPE_KEYBOARD_INTERACTIVE_QUIET) {
9593                         /* quiet, so no c_write */
9594                         logevent("Server refused keyboard-interactive authentication");
9595                     } else if (s->type==AUTH_TYPE_GSSAPI) {
9596                         /* always quiet, so no c_write */
9597                         /* also, the code down in the GSSAPI block has
9598                          * already logged this in the Event Log */
9599                     } else if (s->type == AUTH_TYPE_KEYBOARD_INTERACTIVE) {
9600                         logevent("Keyboard-interactive authentication failed");
9601                         c_write_str(ssh, "Access denied\r\n");
9602                     } else {
9603                         assert(s->type == AUTH_TYPE_PASSWORD);
9604                         logevent("Password authentication failed");
9605                         c_write_str(ssh, "Access denied\r\n");
9606
9607                         if (conf_get_int(ssh->conf, CONF_change_username)) {
9608                             /* XXX perhaps we should allow
9609                              * keyboard-interactive to do this too? */
9610                             s->we_are_in = FALSE;
9611                             break;
9612                         }
9613                     }
9614                 } else {
9615                     c_write_str(ssh, "Further authentication required\r\n");
9616                     logevent("Further authentication required");
9617                 }
9618
9619                 s->can_pubkey =
9620                     in_commasep_string("publickey", methods, methlen);
9621                 s->can_passwd =
9622                     in_commasep_string("password", methods, methlen);
9623                 s->can_keyb_inter = conf_get_int(ssh->conf, CONF_try_ki_auth) &&
9624                     in_commasep_string("keyboard-interactive", methods, methlen);
9625 #ifndef NO_GSSAPI
9626                 if (conf_get_int(ssh->conf, CONF_try_gssapi_auth) &&
9627                     in_commasep_string("gssapi-with-mic", methods, methlen)) {
9628                     /* Try loading the GSS libraries and see if we
9629                      * have any. */
9630                     if (!ssh->gsslibs)
9631                         ssh->gsslibs = ssh_gss_setup(ssh->conf);
9632                     s->can_gssapi = (ssh->gsslibs->nlibraries > 0);
9633                 } else {
9634                     /* No point in even bothering to try to load the
9635                      * GSS libraries, if the user configuration and
9636                      * server aren't both prepared to attempt GSSAPI
9637                      * auth in the first place. */
9638                     s->can_gssapi = FALSE;
9639                 }
9640 #endif
9641             }
9642
9643             ssh->pkt_actx = SSH2_PKTCTX_NOAUTH;
9644
9645             if (s->can_pubkey && !s->done_agent && s->nkeys) {
9646
9647                 /*
9648                  * Attempt public-key authentication using a key from Pageant.
9649                  */
9650
9651                 ssh->pkt_actx = SSH2_PKTCTX_PUBLICKEY;
9652
9653                 logeventf(ssh, "Trying Pageant key #%d", s->keyi);
9654
9655                 /* Unpack key from agent response */
9656                 s->pklen = toint(GET_32BIT(s->agentp));
9657                 s->agentp += 4;
9658                 s->pkblob = (char *)s->agentp;
9659                 s->agentp += s->pklen;
9660                 s->alglen = toint(GET_32BIT(s->pkblob));
9661                 s->alg = s->pkblob + 4;
9662                 s->commentlen = toint(GET_32BIT(s->agentp));
9663                 s->agentp += 4;
9664                 s->commentp = (char *)s->agentp;
9665                 s->agentp += s->commentlen;
9666                 /* s->agentp now points at next key, if any */
9667
9668                 /* See if server will accept it */
9669                 s->pktout = ssh2_pkt_init(SSH2_MSG_USERAUTH_REQUEST);
9670                 ssh2_pkt_addstring(s->pktout, ssh->username);
9671                 ssh2_pkt_addstring(s->pktout, "ssh-connection");
9672                                                     /* service requested */
9673                 ssh2_pkt_addstring(s->pktout, "publickey");
9674                                                     /* method */
9675                 ssh2_pkt_addbool(s->pktout, FALSE); /* no signature included */
9676                 ssh2_pkt_addstring_start(s->pktout);
9677                 ssh2_pkt_addstring_data(s->pktout, s->alg, s->alglen);
9678                 ssh2_pkt_addstring_start(s->pktout);
9679                 ssh2_pkt_addstring_data(s->pktout, s->pkblob, s->pklen);
9680                 ssh2_pkt_send(ssh, s->pktout);
9681                 s->type = AUTH_TYPE_PUBLICKEY_OFFER_QUIET;
9682
9683                 crWaitUntilV(pktin);
9684                 if (pktin->type != SSH2_MSG_USERAUTH_PK_OK) {
9685
9686                     /* Offer of key refused. */
9687                     s->gotit = TRUE;
9688
9689                 } else {
9690                     
9691                     void *vret;
9692
9693                     if (flags & FLAG_VERBOSE) {
9694                         c_write_str(ssh, "Authenticating with "
9695                                     "public key \"");
9696                         c_write(ssh, s->commentp, s->commentlen);
9697                         c_write_str(ssh, "\" from agent\r\n");
9698                     }
9699
9700                     /*
9701                      * Server is willing to accept the key.
9702                      * Construct a SIGN_REQUEST.
9703                      */
9704                     s->pktout = ssh2_pkt_init(SSH2_MSG_USERAUTH_REQUEST);
9705                     ssh2_pkt_addstring(s->pktout, ssh->username);
9706                     ssh2_pkt_addstring(s->pktout, "ssh-connection");
9707                                                         /* service requested */
9708                     ssh2_pkt_addstring(s->pktout, "publickey");
9709                                                         /* method */
9710                     ssh2_pkt_addbool(s->pktout, TRUE);  /* signature included */
9711                     ssh2_pkt_addstring_start(s->pktout);
9712                     ssh2_pkt_addstring_data(s->pktout, s->alg, s->alglen);
9713                     ssh2_pkt_addstring_start(s->pktout);
9714                     ssh2_pkt_addstring_data(s->pktout, s->pkblob, s->pklen);
9715
9716                     /* Ask agent for signature. */
9717                     s->siglen = s->pktout->length - 5 + 4 +
9718                         ssh->v2_session_id_len;
9719                     if (ssh->remote_bugs & BUG_SSH2_PK_SESSIONID)
9720                         s->siglen -= 4;
9721                     s->len = 1;       /* message type */
9722                     s->len += 4 + s->pklen;     /* key blob */
9723                     s->len += 4 + s->siglen;    /* data to sign */
9724                     s->len += 4;      /* flags */
9725                     s->agentreq = snewn(4 + s->len, char);
9726                     PUT_32BIT(s->agentreq, s->len);
9727                     s->q = s->agentreq + 4;
9728                     *s->q++ = SSH2_AGENTC_SIGN_REQUEST;
9729                     PUT_32BIT(s->q, s->pklen);
9730                     s->q += 4;
9731                     memcpy(s->q, s->pkblob, s->pklen);
9732                     s->q += s->pklen;
9733                     PUT_32BIT(s->q, s->siglen);
9734                     s->q += 4;
9735                     /* Now the data to be signed... */
9736                     if (!(ssh->remote_bugs & BUG_SSH2_PK_SESSIONID)) {
9737                         PUT_32BIT(s->q, ssh->v2_session_id_len);
9738                         s->q += 4;
9739                     }
9740                     memcpy(s->q, ssh->v2_session_id,
9741                            ssh->v2_session_id_len);
9742                     s->q += ssh->v2_session_id_len;
9743                     memcpy(s->q, s->pktout->data + 5,
9744                            s->pktout->length - 5);
9745                     s->q += s->pktout->length - 5;
9746                     /* And finally the (zero) flags word. */
9747                     PUT_32BIT(s->q, 0);
9748                     if (!agent_query(s->agentreq, s->len + 4,
9749                                      &vret, &s->retlen,
9750                                      ssh_agent_callback, ssh)) {
9751                         do {
9752                             crReturnV;
9753                             if (pktin) {
9754                                 bombout(("Unexpected data from server"
9755                                          " while waiting for agent"
9756                                          " response"));
9757                                 crStopV;
9758                             }
9759                         } while (pktin || inlen > 0);
9760                         vret = ssh->agent_response;
9761                         s->retlen = ssh->agent_response_len;
9762                     }
9763                     s->ret = vret;
9764                     sfree(s->agentreq);
9765                     if (s->ret) {
9766                         if (s->retlen >= 9 &&
9767                             s->ret[4] == SSH2_AGENT_SIGN_RESPONSE &&
9768                             GET_32BIT(s->ret + 5) <= (unsigned)(s->retlen-9)) {
9769                             logevent("Sending Pageant's response");
9770                             ssh2_add_sigblob(ssh, s->pktout,
9771                                              s->pkblob, s->pklen,
9772                                              s->ret + 9,
9773                                              GET_32BIT(s->ret + 5));
9774                             ssh2_pkt_send(ssh, s->pktout);
9775                             s->type = AUTH_TYPE_PUBLICKEY;
9776                         } else {
9777                             /* FIXME: less drastic response */
9778                             bombout(("Pageant failed to answer challenge"));
9779                             crStopV;
9780                         }
9781                     }
9782                 }
9783
9784                 /* Do we have any keys left to try? */
9785                 if (s->pkblob_in_agent) {
9786                     s->done_agent = TRUE;
9787                     s->tried_pubkey_config = TRUE;
9788                 } else {
9789                     s->keyi++;
9790                     if (s->keyi >= s->nkeys)
9791                         s->done_agent = TRUE;
9792                 }
9793
9794             } else if (s->can_pubkey && s->publickey_blob &&
9795                        s->privatekey_available && !s->tried_pubkey_config) {
9796
9797                 struct ssh2_userkey *key;   /* not live over crReturn */
9798                 char *passphrase;           /* not live over crReturn */
9799
9800                 ssh->pkt_actx = SSH2_PKTCTX_PUBLICKEY;
9801
9802                 s->tried_pubkey_config = TRUE;
9803
9804                 /*
9805                  * Try the public key supplied in the configuration.
9806                  *
9807                  * First, offer the public blob to see if the server is
9808                  * willing to accept it.
9809                  */
9810                 s->pktout = ssh2_pkt_init(SSH2_MSG_USERAUTH_REQUEST);
9811                 ssh2_pkt_addstring(s->pktout, ssh->username);
9812                 ssh2_pkt_addstring(s->pktout, "ssh-connection");
9813                                                 /* service requested */
9814                 ssh2_pkt_addstring(s->pktout, "publickey");     /* method */
9815                 ssh2_pkt_addbool(s->pktout, FALSE);
9816                                                 /* no signature included */
9817                 ssh2_pkt_addstring(s->pktout, s->publickey_algorithm);
9818                 ssh2_pkt_addstring_start(s->pktout);
9819                 ssh2_pkt_addstring_data(s->pktout,
9820                                         (char *)s->publickey_blob,
9821                                         s->publickey_bloblen);
9822                 ssh2_pkt_send(ssh, s->pktout);
9823                 logevent("Offered public key");
9824
9825                 crWaitUntilV(pktin);
9826                 if (pktin->type != SSH2_MSG_USERAUTH_PK_OK) {
9827                     /* Key refused. Give up. */
9828                     s->gotit = TRUE; /* reconsider message next loop */
9829                     s->type = AUTH_TYPE_PUBLICKEY_OFFER_LOUD;
9830                     continue; /* process this new message */
9831                 }
9832                 logevent("Offer of public key accepted");
9833
9834                 /*
9835                  * Actually attempt a serious authentication using
9836                  * the key.
9837                  */
9838                 if (flags & FLAG_VERBOSE) {
9839                     c_write_str(ssh, "Authenticating with public key \"");
9840                     c_write_str(ssh, s->publickey_comment);
9841                     c_write_str(ssh, "\"\r\n");
9842                 }
9843                 key = NULL;
9844                 while (!key) {
9845                     const char *error;  /* not live over crReturn */
9846                     if (s->privatekey_encrypted) {
9847                         /*
9848                          * Get a passphrase from the user.
9849                          */
9850                         int ret; /* need not be kept over crReturn */
9851                         s->cur_prompt = new_prompts(ssh->frontend);
9852                         s->cur_prompt->to_server = FALSE;
9853                         s->cur_prompt->name = dupstr("SSH key passphrase");
9854                         add_prompt(s->cur_prompt,
9855                                    dupprintf("Passphrase for key \"%.100s\": ",
9856                                              s->publickey_comment),
9857                                    FALSE);
9858                         ret = get_userpass_input(s->cur_prompt, NULL, 0);
9859                         while (ret < 0) {
9860                             ssh->send_ok = 1;
9861                             crWaitUntilV(!pktin);
9862                             ret = get_userpass_input(s->cur_prompt,
9863                                                      in, inlen);
9864                             ssh->send_ok = 0;
9865                         }
9866                         if (!ret) {
9867                             /* Failed to get a passphrase. Terminate. */
9868                             free_prompts(s->cur_prompt);
9869                             ssh_disconnect(ssh, NULL,
9870                                            "Unable to authenticate",
9871                                            SSH2_DISCONNECT_AUTH_CANCELLED_BY_USER,
9872                                            TRUE);
9873                             crStopV;
9874                         }
9875                         passphrase =
9876                             dupstr(s->cur_prompt->prompts[0]->result);
9877                         free_prompts(s->cur_prompt);
9878                     } else {
9879                         passphrase = NULL; /* no passphrase needed */
9880                     }
9881
9882                     /*
9883                      * Try decrypting the key.
9884                      */
9885                     s->keyfile = conf_get_filename(ssh->conf, CONF_keyfile);
9886                     key = ssh2_load_userkey(s->keyfile, passphrase, &error);
9887                     if (passphrase) {
9888                         /* burn the evidence */
9889                         smemclr(passphrase, strlen(passphrase));
9890                         sfree(passphrase);
9891                     }
9892                     if (key == SSH2_WRONG_PASSPHRASE || key == NULL) {
9893                         if (passphrase &&
9894                             (key == SSH2_WRONG_PASSPHRASE)) {
9895                             c_write_str(ssh, "Wrong passphrase\r\n");
9896                             key = NULL;
9897                             /* and loop again */
9898                         } else {
9899                             c_write_str(ssh, "Unable to load private key (");
9900                             c_write_str(ssh, error);
9901                             c_write_str(ssh, ")\r\n");
9902                             key = NULL;
9903                             break; /* try something else */
9904                         }
9905                     }
9906                 }
9907
9908                 if (key) {
9909                     unsigned char *pkblob, *sigblob, *sigdata;
9910                     int pkblob_len, sigblob_len, sigdata_len;
9911                     int p;
9912
9913                     /*
9914                      * We have loaded the private key and the server
9915                      * has announced that it's willing to accept it.
9916                      * Hallelujah. Generate a signature and send it.
9917                      */
9918                     s->pktout = ssh2_pkt_init(SSH2_MSG_USERAUTH_REQUEST);
9919                     ssh2_pkt_addstring(s->pktout, ssh->username);
9920                     ssh2_pkt_addstring(s->pktout, "ssh-connection");
9921                                                     /* service requested */
9922                     ssh2_pkt_addstring(s->pktout, "publickey");
9923                                                     /* method */
9924                     ssh2_pkt_addbool(s->pktout, TRUE);
9925                                                     /* signature follows */
9926                     ssh2_pkt_addstring(s->pktout, key->alg->name);
9927                     pkblob = key->alg->public_blob(key->data,
9928                                                    &pkblob_len);
9929                     ssh2_pkt_addstring_start(s->pktout);
9930                     ssh2_pkt_addstring_data(s->pktout, (char *)pkblob,
9931                                             pkblob_len);
9932
9933                     /*
9934                      * The data to be signed is:
9935                      *
9936                      *   string  session-id
9937                      *
9938                      * followed by everything so far placed in the
9939                      * outgoing packet.
9940                      */
9941                     sigdata_len = s->pktout->length - 5 + 4 +
9942                         ssh->v2_session_id_len;
9943                     if (ssh->remote_bugs & BUG_SSH2_PK_SESSIONID)
9944                         sigdata_len -= 4;
9945                     sigdata = snewn(sigdata_len, unsigned char);
9946                     p = 0;
9947                     if (!(ssh->remote_bugs & BUG_SSH2_PK_SESSIONID)) {
9948                         PUT_32BIT(sigdata+p, ssh->v2_session_id_len);
9949                         p += 4;
9950                     }
9951                     memcpy(sigdata+p, ssh->v2_session_id,
9952                            ssh->v2_session_id_len);
9953                     p += ssh->v2_session_id_len;
9954                     memcpy(sigdata+p, s->pktout->data + 5,
9955                            s->pktout->length - 5);
9956                     p += s->pktout->length - 5;
9957                     assert(p == sigdata_len);
9958                     sigblob = key->alg->sign(key->data, (char *)sigdata,
9959                                              sigdata_len, &sigblob_len);
9960                     ssh2_add_sigblob(ssh, s->pktout, pkblob, pkblob_len,
9961                                      sigblob, sigblob_len);
9962                     sfree(pkblob);
9963                     sfree(sigblob);
9964                     sfree(sigdata);
9965
9966                     ssh2_pkt_send(ssh, s->pktout);
9967                     logevent("Sent public key signature");
9968                     s->type = AUTH_TYPE_PUBLICKEY;
9969                     key->alg->freekey(key->data);
9970                     sfree(key->comment);
9971                     sfree(key);
9972                 }
9973
9974 #ifndef NO_GSSAPI
9975             } else if (s->can_gssapi && !s->tried_gssapi) {
9976
9977                 /* GSSAPI Authentication */
9978
9979                 int micoffset, len;
9980                 char *data;
9981                 Ssh_gss_buf mic;
9982                 s->type = AUTH_TYPE_GSSAPI;
9983                 s->tried_gssapi = TRUE;
9984                 s->gotit = TRUE;
9985                 ssh->pkt_actx = SSH2_PKTCTX_GSSAPI;
9986
9987                 /*
9988                  * Pick the highest GSS library on the preference
9989                  * list.
9990                  */
9991                 {
9992                     int i, j;
9993                     s->gsslib = NULL;
9994                     for (i = 0; i < ngsslibs; i++) {
9995                         int want_id = conf_get_int_int(ssh->conf,
9996                                                        CONF_ssh_gsslist, i);
9997                         for (j = 0; j < ssh->gsslibs->nlibraries; j++)
9998                             if (ssh->gsslibs->libraries[j].id == want_id) {
9999                                 s->gsslib = &ssh->gsslibs->libraries[j];
10000                                 goto got_gsslib;   /* double break */
10001                             }
10002                     }
10003                     got_gsslib:
10004                     /*
10005                      * We always expect to have found something in
10006                      * the above loop: we only came here if there
10007                      * was at least one viable GSS library, and the
10008                      * preference list should always mention
10009                      * everything and only change the order.
10010                      */
10011                     assert(s->gsslib);
10012                 }
10013
10014                 if (s->gsslib->gsslogmsg)
10015                     logevent(s->gsslib->gsslogmsg);
10016
10017                 /* Sending USERAUTH_REQUEST with "gssapi-with-mic" method */
10018                 s->pktout = ssh2_pkt_init(SSH2_MSG_USERAUTH_REQUEST);
10019                 ssh2_pkt_addstring(s->pktout, ssh->username);
10020                 ssh2_pkt_addstring(s->pktout, "ssh-connection");
10021                 ssh2_pkt_addstring(s->pktout, "gssapi-with-mic");
10022                 logevent("Attempting GSSAPI authentication");
10023
10024                 /* add mechanism info */
10025                 s->gsslib->indicate_mech(s->gsslib, &s->gss_buf);
10026
10027                 /* number of GSSAPI mechanisms */
10028                 ssh2_pkt_adduint32(s->pktout,1);
10029
10030                 /* length of OID + 2 */
10031                 ssh2_pkt_adduint32(s->pktout, s->gss_buf.length + 2);
10032                 ssh2_pkt_addbyte(s->pktout, SSH2_GSS_OIDTYPE);
10033
10034                 /* length of OID */
10035                 ssh2_pkt_addbyte(s->pktout, (unsigned char) s->gss_buf.length);
10036
10037                 ssh_pkt_adddata(s->pktout, s->gss_buf.value,
10038                                 s->gss_buf.length);
10039                 ssh2_pkt_send(ssh, s->pktout);
10040                 crWaitUntilV(pktin);
10041                 if (pktin->type != SSH2_MSG_USERAUTH_GSSAPI_RESPONSE) {
10042                     logevent("GSSAPI authentication request refused");
10043                     continue;
10044                 }
10045
10046                 /* check returned packet ... */
10047
10048                 ssh_pkt_getstring(pktin, &data, &len);
10049                 s->gss_rcvtok.value = data;
10050                 s->gss_rcvtok.length = len;
10051                 if (s->gss_rcvtok.length != s->gss_buf.length + 2 ||
10052                     ((char *)s->gss_rcvtok.value)[0] != SSH2_GSS_OIDTYPE ||
10053                     ((char *)s->gss_rcvtok.value)[1] != s->gss_buf.length ||
10054                     memcmp((char *)s->gss_rcvtok.value + 2,
10055                            s->gss_buf.value,s->gss_buf.length) ) {
10056                     logevent("GSSAPI authentication - wrong response from server");
10057                     continue;
10058                 }
10059
10060                 /* now start running */
10061                 s->gss_stat = s->gsslib->import_name(s->gsslib,
10062                                                      ssh->fullhostname,
10063                                                      &s->gss_srv_name);
10064                 if (s->gss_stat != SSH_GSS_OK) {
10065                     if (s->gss_stat == SSH_GSS_BAD_HOST_NAME)
10066                         logevent("GSSAPI import name failed - Bad service name");
10067                     else
10068                         logevent("GSSAPI import name failed");
10069                     continue;
10070                 }
10071
10072                 /* fetch TGT into GSS engine */
10073                 s->gss_stat = s->gsslib->acquire_cred(s->gsslib, &s->gss_ctx);
10074
10075                 if (s->gss_stat != SSH_GSS_OK) {
10076                     logevent("GSSAPI authentication failed to get credentials");
10077                     s->gsslib->release_name(s->gsslib, &s->gss_srv_name);
10078                     continue;
10079                 }
10080
10081                 /* initial tokens are empty */
10082                 SSH_GSS_CLEAR_BUF(&s->gss_rcvtok);
10083                 SSH_GSS_CLEAR_BUF(&s->gss_sndtok);
10084
10085                 /* now enter the loop */
10086                 do {
10087                     s->gss_stat = s->gsslib->init_sec_context
10088                         (s->gsslib,
10089                          &s->gss_ctx,
10090                          s->gss_srv_name,
10091                          conf_get_int(ssh->conf, CONF_gssapifwd),
10092                          &s->gss_rcvtok,
10093                          &s->gss_sndtok);
10094
10095                     if (s->gss_stat!=SSH_GSS_S_COMPLETE &&
10096                         s->gss_stat!=SSH_GSS_S_CONTINUE_NEEDED) {
10097                         logevent("GSSAPI authentication initialisation failed");
10098
10099                         if (s->gsslib->display_status(s->gsslib, s->gss_ctx,
10100                                                       &s->gss_buf) == SSH_GSS_OK) {
10101                             logevent(s->gss_buf.value);
10102                             sfree(s->gss_buf.value);
10103                         }
10104
10105                         break;
10106                     }
10107                     logevent("GSSAPI authentication initialised");
10108
10109                     /* Client and server now exchange tokens until GSSAPI
10110                      * no longer says CONTINUE_NEEDED */
10111
10112                     if (s->gss_sndtok.length != 0) {
10113                         s->pktout = ssh2_pkt_init(SSH2_MSG_USERAUTH_GSSAPI_TOKEN);
10114                         ssh_pkt_addstring_start(s->pktout);
10115                         ssh_pkt_addstring_data(s->pktout,s->gss_sndtok.value,s->gss_sndtok.length);
10116                         ssh2_pkt_send(ssh, s->pktout);
10117                         s->gsslib->free_tok(s->gsslib, &s->gss_sndtok);
10118                     }
10119
10120                     if (s->gss_stat == SSH_GSS_S_CONTINUE_NEEDED) {
10121                         crWaitUntilV(pktin);
10122                         if (pktin->type != SSH2_MSG_USERAUTH_GSSAPI_TOKEN) {
10123                             logevent("GSSAPI authentication - bad server response");
10124                             s->gss_stat = SSH_GSS_FAILURE;
10125                             break;
10126                         }
10127                         ssh_pkt_getstring(pktin, &data, &len);
10128                         s->gss_rcvtok.value = data;
10129                         s->gss_rcvtok.length = len;
10130                     }
10131                 } while (s-> gss_stat == SSH_GSS_S_CONTINUE_NEEDED);
10132
10133                 if (s->gss_stat != SSH_GSS_OK) {
10134                     s->gsslib->release_name(s->gsslib, &s->gss_srv_name);
10135                     s->gsslib->release_cred(s->gsslib, &s->gss_ctx);
10136                     continue;
10137                 }
10138                 logevent("GSSAPI authentication loop finished OK");
10139
10140                 /* Now send the MIC */
10141
10142                 s->pktout = ssh2_pkt_init(0);
10143                 micoffset = s->pktout->length;
10144                 ssh_pkt_addstring_start(s->pktout);
10145                 ssh_pkt_addstring_data(s->pktout, (char *)ssh->v2_session_id, ssh->v2_session_id_len);
10146                 ssh_pkt_addbyte(s->pktout, SSH2_MSG_USERAUTH_REQUEST);
10147                 ssh_pkt_addstring(s->pktout, ssh->username);
10148                 ssh_pkt_addstring(s->pktout, "ssh-connection");
10149                 ssh_pkt_addstring(s->pktout, "gssapi-with-mic");
10150
10151                 s->gss_buf.value = (char *)s->pktout->data + micoffset;
10152                 s->gss_buf.length = s->pktout->length - micoffset;
10153
10154                 s->gsslib->get_mic(s->gsslib, s->gss_ctx, &s->gss_buf, &mic);
10155                 s->pktout = ssh2_pkt_init(SSH2_MSG_USERAUTH_GSSAPI_MIC);
10156                 ssh_pkt_addstring_start(s->pktout);
10157                 ssh_pkt_addstring_data(s->pktout, mic.value, mic.length);
10158                 ssh2_pkt_send(ssh, s->pktout);
10159                 s->gsslib->free_mic(s->gsslib, &mic);
10160
10161                 s->gotit = FALSE;
10162
10163                 s->gsslib->release_name(s->gsslib, &s->gss_srv_name);
10164                 s->gsslib->release_cred(s->gsslib, &s->gss_ctx);
10165                 continue;
10166 #endif
10167             } else if (s->can_keyb_inter && !s->kbd_inter_refused) {
10168
10169                 /*
10170                  * Keyboard-interactive authentication.
10171                  */
10172
10173                 s->type = AUTH_TYPE_KEYBOARD_INTERACTIVE;
10174
10175                 ssh->pkt_actx = SSH2_PKTCTX_KBDINTER;
10176
10177                 s->pktout = ssh2_pkt_init(SSH2_MSG_USERAUTH_REQUEST);
10178                 ssh2_pkt_addstring(s->pktout, ssh->username);
10179                 ssh2_pkt_addstring(s->pktout, "ssh-connection");
10180                                                         /* service requested */
10181                 ssh2_pkt_addstring(s->pktout, "keyboard-interactive");
10182                                                         /* method */
10183                 ssh2_pkt_addstring(s->pktout, "");      /* lang */
10184                 ssh2_pkt_addstring(s->pktout, "");      /* submethods */
10185                 ssh2_pkt_send(ssh, s->pktout);
10186                 
10187                 logevent("Attempting keyboard-interactive authentication");
10188
10189                 crWaitUntilV(pktin);
10190                 if (pktin->type != SSH2_MSG_USERAUTH_INFO_REQUEST) {
10191                     /* Server is not willing to do keyboard-interactive
10192                      * at all (or, bizarrely but legally, accepts the
10193                      * user without actually issuing any prompts).
10194                      * Give up on it entirely. */
10195                     s->gotit = TRUE;
10196                     s->type = AUTH_TYPE_KEYBOARD_INTERACTIVE_QUIET;
10197                     s->kbd_inter_refused = TRUE; /* don't try it again */
10198                     continue;
10199                 }
10200
10201                 /*
10202                  * Loop while the server continues to send INFO_REQUESTs.
10203                  */
10204                 while (pktin->type == SSH2_MSG_USERAUTH_INFO_REQUEST) {
10205
10206                     char *name, *inst, *lang;
10207                     int name_len, inst_len, lang_len;
10208                     int i;
10209
10210                     /*
10211                      * We've got a fresh USERAUTH_INFO_REQUEST.
10212                      * Get the preamble and start building a prompt.
10213                      */
10214                     ssh_pkt_getstring(pktin, &name, &name_len);
10215                     ssh_pkt_getstring(pktin, &inst, &inst_len);
10216                     ssh_pkt_getstring(pktin, &lang, &lang_len);
10217                     s->cur_prompt = new_prompts(ssh->frontend);
10218                     s->cur_prompt->to_server = TRUE;
10219
10220                     /*
10221                      * Get any prompt(s) from the packet.
10222                      */
10223                     s->num_prompts = ssh_pkt_getuint32(pktin);
10224                     for (i = 0; i < s->num_prompts; i++) {
10225                         char *prompt;
10226                         int prompt_len;
10227                         int echo;
10228                         static char noprompt[] =
10229                             "<server failed to send prompt>: ";
10230
10231                         ssh_pkt_getstring(pktin, &prompt, &prompt_len);
10232                         echo = ssh2_pkt_getbool(pktin);
10233                         if (!prompt_len) {
10234                             prompt = noprompt;
10235                             prompt_len = lenof(noprompt)-1;
10236                         }
10237                         add_prompt(s->cur_prompt,
10238                                    dupprintf("%.*s", prompt_len, prompt),
10239                                    echo);
10240                     }
10241
10242                     if (name_len) {
10243                         /* FIXME: better prefix to distinguish from
10244                          * local prompts? */
10245                         s->cur_prompt->name =
10246                             dupprintf("SSH server: %.*s", name_len, name);
10247                         s->cur_prompt->name_reqd = TRUE;
10248                     } else {
10249                         s->cur_prompt->name =
10250                             dupstr("SSH server authentication");
10251                         s->cur_prompt->name_reqd = FALSE;
10252                     }
10253                     /* We add a prefix to try to make it clear that a prompt
10254                      * has come from the server.
10255                      * FIXME: ugly to print "Using..." in prompt _every_
10256                      * time round. Can this be done more subtly? */
10257                     /* Special case: for reasons best known to themselves,
10258                      * some servers send k-i requests with no prompts and
10259                      * nothing to display. Keep quiet in this case. */
10260                     if (s->num_prompts || name_len || inst_len) {
10261                         s->cur_prompt->instruction =
10262                             dupprintf("Using keyboard-interactive authentication.%s%.*s",
10263                                       inst_len ? "\n" : "", inst_len, inst);
10264                         s->cur_prompt->instr_reqd = TRUE;
10265                     } else {
10266                         s->cur_prompt->instr_reqd = FALSE;
10267                     }
10268
10269                     /*
10270                      * Display any instructions, and get the user's
10271                      * response(s).
10272                      */
10273                     {
10274                         int ret; /* not live over crReturn */
10275                         ret = get_userpass_input(s->cur_prompt, NULL, 0);
10276                         while (ret < 0) {
10277                             ssh->send_ok = 1;
10278                             crWaitUntilV(!pktin);
10279                             ret = get_userpass_input(s->cur_prompt, in, inlen);
10280                             ssh->send_ok = 0;
10281                         }
10282                         if (!ret) {
10283                             /*
10284                              * Failed to get responses. Terminate.
10285                              */
10286                             free_prompts(s->cur_prompt);
10287                             ssh_disconnect(ssh, NULL, "Unable to authenticate",
10288                                            SSH2_DISCONNECT_AUTH_CANCELLED_BY_USER,
10289                                            TRUE);
10290                             crStopV;
10291                         }
10292                     }
10293
10294                     /*
10295                      * Send the response(s) to the server.
10296                      */
10297                     s->pktout = ssh2_pkt_init(SSH2_MSG_USERAUTH_INFO_RESPONSE);
10298                     ssh2_pkt_adduint32(s->pktout, s->num_prompts);
10299                     for (i=0; i < s->num_prompts; i++) {
10300                         ssh2_pkt_addstring(s->pktout,
10301                                            s->cur_prompt->prompts[i]->result);
10302                     }
10303                     ssh2_pkt_send_with_padding(ssh, s->pktout, 256);
10304
10305                     /*
10306                      * Free the prompts structure from this iteration.
10307                      * If there's another, a new one will be allocated
10308                      * when we return to the top of this while loop.
10309                      */
10310                     free_prompts(s->cur_prompt);
10311
10312                     /*
10313                      * Get the next packet in case it's another
10314                      * INFO_REQUEST.
10315                      */
10316                     crWaitUntilV(pktin);
10317
10318                 }
10319
10320                 /*
10321                  * We should have SUCCESS or FAILURE now.
10322                  */
10323                 s->gotit = TRUE;
10324
10325             } else if (s->can_passwd) {
10326
10327                 /*
10328                  * Plain old password authentication.
10329                  */
10330                 int ret; /* not live over crReturn */
10331                 int changereq_first_time; /* not live over crReturn */
10332
10333                 ssh->pkt_actx = SSH2_PKTCTX_PASSWORD;
10334
10335                 s->cur_prompt = new_prompts(ssh->frontend);
10336                 s->cur_prompt->to_server = TRUE;
10337                 s->cur_prompt->name = dupstr("SSH password");
10338                 add_prompt(s->cur_prompt, dupprintf("%s@%s's password: ",
10339                                                     ssh->username,
10340                                                     ssh->savedhost),
10341                            FALSE);
10342
10343                 ret = get_userpass_input(s->cur_prompt, NULL, 0);
10344                 while (ret < 0) {
10345                     ssh->send_ok = 1;
10346                     crWaitUntilV(!pktin);
10347                     ret = get_userpass_input(s->cur_prompt, in, inlen);
10348                     ssh->send_ok = 0;
10349                 }
10350                 if (!ret) {
10351                     /*
10352                      * Failed to get responses. Terminate.
10353                      */
10354                     free_prompts(s->cur_prompt);
10355                     ssh_disconnect(ssh, NULL, "Unable to authenticate",
10356                                    SSH2_DISCONNECT_AUTH_CANCELLED_BY_USER,
10357                                    TRUE);
10358                     crStopV;
10359                 }
10360                 /*
10361                  * Squirrel away the password. (We may need it later if
10362                  * asked to change it.)
10363                  */
10364                 s->password = dupstr(s->cur_prompt->prompts[0]->result);
10365                 free_prompts(s->cur_prompt);
10366
10367                 /*
10368                  * Send the password packet.
10369                  *
10370                  * We pad out the password packet to 256 bytes to make
10371                  * it harder for an attacker to find the length of the
10372                  * user's password.
10373                  *
10374                  * Anyone using a password longer than 256 bytes
10375                  * probably doesn't have much to worry about from
10376                  * people who find out how long their password is!
10377                  */
10378                 s->pktout = ssh2_pkt_init(SSH2_MSG_USERAUTH_REQUEST);
10379                 ssh2_pkt_addstring(s->pktout, ssh->username);
10380                 ssh2_pkt_addstring(s->pktout, "ssh-connection");
10381                                                         /* service requested */
10382                 ssh2_pkt_addstring(s->pktout, "password");
10383                 ssh2_pkt_addbool(s->pktout, FALSE);
10384                 ssh2_pkt_addstring(s->pktout, s->password);
10385                 ssh2_pkt_send_with_padding(ssh, s->pktout, 256);
10386                 logevent("Sent password");
10387                 s->type = AUTH_TYPE_PASSWORD;
10388
10389                 /*
10390                  * Wait for next packet, in case it's a password change
10391                  * request.
10392                  */
10393                 crWaitUntilV(pktin);
10394                 changereq_first_time = TRUE;
10395
10396                 while (pktin->type == SSH2_MSG_USERAUTH_PASSWD_CHANGEREQ) {
10397
10398                     /* 
10399                      * We're being asked for a new password
10400                      * (perhaps not for the first time).
10401                      * Loop until the server accepts it.
10402                      */
10403
10404                     int got_new = FALSE; /* not live over crReturn */
10405                     char *prompt;   /* not live over crReturn */
10406                     int prompt_len; /* not live over crReturn */
10407                     
10408                     {
10409                         const char *msg;
10410                         if (changereq_first_time)
10411                             msg = "Server requested password change";
10412                         else
10413                             msg = "Server rejected new password";
10414                         logevent(msg);
10415                         c_write_str(ssh, msg);
10416                         c_write_str(ssh, "\r\n");
10417                     }
10418
10419                     ssh_pkt_getstring(pktin, &prompt, &prompt_len);
10420
10421                     s->cur_prompt = new_prompts(ssh->frontend);
10422                     s->cur_prompt->to_server = TRUE;
10423                     s->cur_prompt->name = dupstr("New SSH password");
10424                     s->cur_prompt->instruction =
10425                         dupprintf("%.*s", prompt_len, NULLTOEMPTY(prompt));
10426                     s->cur_prompt->instr_reqd = TRUE;
10427                     /*
10428                      * There's no explicit requirement in the protocol
10429                      * for the "old" passwords in the original and
10430                      * password-change messages to be the same, and
10431                      * apparently some Cisco kit supports password change
10432                      * by the user entering a blank password originally
10433                      * and the real password subsequently, so,
10434                      * reluctantly, we prompt for the old password again.
10435                      *
10436                      * (On the other hand, some servers don't even bother
10437                      * to check this field.)
10438                      */
10439                     add_prompt(s->cur_prompt,
10440                                dupstr("Current password (blank for previously entered password): "),
10441                                FALSE);
10442                     add_prompt(s->cur_prompt, dupstr("Enter new password: "),
10443                                FALSE);
10444                     add_prompt(s->cur_prompt, dupstr("Confirm new password: "),
10445                                FALSE);
10446
10447                     /*
10448                      * Loop until the user manages to enter the same
10449                      * password twice.
10450                      */
10451                     while (!got_new) {
10452
10453                         ret = get_userpass_input(s->cur_prompt, NULL, 0);
10454                         while (ret < 0) {
10455                             ssh->send_ok = 1;
10456                             crWaitUntilV(!pktin);
10457                             ret = get_userpass_input(s->cur_prompt, in, inlen);
10458                             ssh->send_ok = 0;
10459                         }
10460                         if (!ret) {
10461                             /*
10462                              * Failed to get responses. Terminate.
10463                              */
10464                             /* burn the evidence */
10465                             free_prompts(s->cur_prompt);
10466                             smemclr(s->password, strlen(s->password));
10467                             sfree(s->password);
10468                             ssh_disconnect(ssh, NULL, "Unable to authenticate",
10469                                            SSH2_DISCONNECT_AUTH_CANCELLED_BY_USER,
10470                                            TRUE);
10471                             crStopV;
10472                         }
10473
10474                         /*
10475                          * If the user specified a new original password
10476                          * (IYSWIM), overwrite any previously specified
10477                          * one.
10478                          * (A side effect is that the user doesn't have to
10479                          * re-enter it if they louse up the new password.)
10480                          */
10481                         if (s->cur_prompt->prompts[0]->result[0]) {
10482                             smemclr(s->password, strlen(s->password));
10483                                 /* burn the evidence */
10484                             sfree(s->password);
10485                             s->password =
10486                                 dupstr(s->cur_prompt->prompts[0]->result);
10487                         }
10488
10489                         /*
10490                          * Check the two new passwords match.
10491                          */
10492                         got_new = (strcmp(s->cur_prompt->prompts[1]->result,
10493                                           s->cur_prompt->prompts[2]->result)
10494                                    == 0);
10495                         if (!got_new)
10496                             /* They don't. Silly user. */
10497                             c_write_str(ssh, "Passwords do not match\r\n");
10498
10499                     }
10500
10501                     /*
10502                      * Send the new password (along with the old one).
10503                      * (see above for padding rationale)
10504                      */
10505                     s->pktout = ssh2_pkt_init(SSH2_MSG_USERAUTH_REQUEST);
10506                     ssh2_pkt_addstring(s->pktout, ssh->username);
10507                     ssh2_pkt_addstring(s->pktout, "ssh-connection");
10508                                                         /* service requested */
10509                     ssh2_pkt_addstring(s->pktout, "password");
10510                     ssh2_pkt_addbool(s->pktout, TRUE);
10511                     ssh2_pkt_addstring(s->pktout, s->password);
10512                     ssh2_pkt_addstring(s->pktout,
10513                                        s->cur_prompt->prompts[1]->result);
10514                     free_prompts(s->cur_prompt);
10515                     ssh2_pkt_send_with_padding(ssh, s->pktout, 256);
10516                     logevent("Sent new password");
10517                     
10518                     /*
10519                      * Now see what the server has to say about it.
10520                      * (If it's CHANGEREQ again, it's not happy with the
10521                      * new password.)
10522                      */
10523                     crWaitUntilV(pktin);
10524                     changereq_first_time = FALSE;
10525
10526                 }
10527
10528                 /*
10529                  * We need to reexamine the current pktin at the top
10530                  * of the loop. Either:
10531                  *  - we weren't asked to change password at all, in
10532                  *    which case it's a SUCCESS or FAILURE with the
10533                  *    usual meaning
10534                  *  - we sent a new password, and the server was
10535                  *    either OK with it (SUCCESS or FAILURE w/partial
10536                  *    success) or unhappy with the _old_ password
10537                  *    (FAILURE w/o partial success)
10538                  * In any of these cases, we go back to the top of
10539                  * the loop and start again.
10540                  */
10541                 s->gotit = TRUE;
10542
10543                 /*
10544                  * We don't need the old password any more, in any
10545                  * case. Burn the evidence.
10546                  */
10547                 smemclr(s->password, strlen(s->password));
10548                 sfree(s->password);
10549
10550             } else {
10551                 char *str = dupprintf("No supported authentication methods available"
10552                                       " (server sent: %.*s)",
10553                                       methlen, methods);
10554
10555                 ssh_disconnect(ssh, str,
10556                                "No supported authentication methods available",
10557                                SSH2_DISCONNECT_NO_MORE_AUTH_METHODS_AVAILABLE,
10558                                FALSE);
10559                 sfree(str);
10560
10561                 crStopV;
10562
10563             }
10564
10565         }
10566     }
10567     ssh->packet_dispatch[SSH2_MSG_USERAUTH_BANNER] = NULL;
10568
10569     /* Clear up various bits and pieces from authentication. */
10570     if (s->publickey_blob) {
10571         sfree(s->publickey_algorithm);
10572         sfree(s->publickey_blob);
10573         sfree(s->publickey_comment);
10574     }
10575     if (s->agent_response)
10576         sfree(s->agent_response);
10577
10578     if (s->userauth_success && !ssh->bare_connection) {
10579         /*
10580          * We've just received USERAUTH_SUCCESS, and we haven't sent any
10581          * packets since. Signal the transport layer to consider enacting
10582          * delayed compression.
10583          *
10584          * (Relying on we_are_in is not sufficient, as
10585          * draft-miller-secsh-compression-delayed is quite clear that it
10586          * triggers on USERAUTH_SUCCESS specifically, and we_are_in can
10587          * become set for other reasons.)
10588          */
10589         do_ssh2_transport(ssh, "enabling delayed compression", -2, NULL);
10590     }
10591
10592     ssh->channels = newtree234(ssh_channelcmp);
10593
10594     /*
10595      * Set up handlers for some connection protocol messages, so we
10596      * don't have to handle them repeatedly in this coroutine.
10597      */
10598     ssh->packet_dispatch[SSH2_MSG_CHANNEL_WINDOW_ADJUST] =
10599         ssh2_msg_channel_window_adjust;
10600     ssh->packet_dispatch[SSH2_MSG_GLOBAL_REQUEST] =
10601         ssh2_msg_global_request;
10602
10603     /*
10604      * Create the main session channel.
10605      */
10606     if (conf_get_int(ssh->conf, CONF_ssh_no_shell)) {
10607         ssh->mainchan = NULL;
10608     } else {
10609         ssh->mainchan = snew(struct ssh_channel);
10610         ssh->mainchan->ssh = ssh;
10611         ssh_channel_init(ssh->mainchan);
10612
10613         if (*conf_get_str(ssh->conf, CONF_ssh_nc_host)) {
10614             /*
10615              * Just start a direct-tcpip channel and use it as the main
10616              * channel.
10617              */
10618             ssh_send_port_open(ssh->mainchan,
10619                                conf_get_str(ssh->conf, CONF_ssh_nc_host),
10620                                conf_get_int(ssh->conf, CONF_ssh_nc_port),
10621                                "main channel");
10622             ssh->ncmode = TRUE;
10623         } else {
10624             s->pktout = ssh2_chanopen_init(ssh->mainchan, "session");
10625             logevent("Opening session as main channel");
10626             ssh2_pkt_send(ssh, s->pktout);
10627             ssh->ncmode = FALSE;
10628         }
10629         crWaitUntilV(pktin);
10630         if (pktin->type != SSH2_MSG_CHANNEL_OPEN_CONFIRMATION) {
10631             bombout(("Server refused to open channel"));
10632             crStopV;
10633             /* FIXME: error data comes back in FAILURE packet */
10634         }
10635         if (ssh_pkt_getuint32(pktin) != ssh->mainchan->localid) {
10636             bombout(("Server's channel confirmation cited wrong channel"));
10637             crStopV;
10638         }
10639         ssh->mainchan->remoteid = ssh_pkt_getuint32(pktin);
10640         ssh->mainchan->halfopen = FALSE;
10641         ssh->mainchan->type = CHAN_MAINSESSION;
10642         ssh->mainchan->v.v2.remwindow = ssh_pkt_getuint32(pktin);
10643         ssh->mainchan->v.v2.remmaxpkt = ssh_pkt_getuint32(pktin);
10644         update_specials_menu(ssh->frontend);
10645         logevent("Opened main channel");
10646     }
10647
10648     /*
10649      * Now we have a channel, make dispatch table entries for
10650      * general channel-based messages.
10651      */
10652     ssh->packet_dispatch[SSH2_MSG_CHANNEL_DATA] =
10653     ssh->packet_dispatch[SSH2_MSG_CHANNEL_EXTENDED_DATA] =
10654         ssh2_msg_channel_data;
10655     ssh->packet_dispatch[SSH2_MSG_CHANNEL_EOF] = ssh2_msg_channel_eof;
10656     ssh->packet_dispatch[SSH2_MSG_CHANNEL_CLOSE] = ssh2_msg_channel_close;
10657     ssh->packet_dispatch[SSH2_MSG_CHANNEL_OPEN_CONFIRMATION] =
10658         ssh2_msg_channel_open_confirmation;
10659     ssh->packet_dispatch[SSH2_MSG_CHANNEL_OPEN_FAILURE] =
10660         ssh2_msg_channel_open_failure;
10661     ssh->packet_dispatch[SSH2_MSG_CHANNEL_REQUEST] =
10662         ssh2_msg_channel_request;
10663     ssh->packet_dispatch[SSH2_MSG_CHANNEL_OPEN] =
10664         ssh2_msg_channel_open;
10665     ssh->packet_dispatch[SSH2_MSG_CHANNEL_SUCCESS] = ssh2_msg_channel_response;
10666     ssh->packet_dispatch[SSH2_MSG_CHANNEL_FAILURE] = ssh2_msg_channel_response;
10667
10668     /*
10669      * Now the connection protocol is properly up and running, with
10670      * all those dispatch table entries, so it's safe to let
10671      * downstreams start trying to open extra channels through us.
10672      */
10673     if (ssh->connshare)
10674         share_activate(ssh->connshare, ssh->v_s);
10675
10676     if (ssh->mainchan && ssh_is_simple(ssh)) {
10677         /*
10678          * This message indicates to the server that we promise
10679          * not to try to run any other channel in parallel with
10680          * this one, so it's safe for it to advertise a very large
10681          * window and leave the flow control to TCP.
10682          */
10683         s->pktout = ssh2_chanreq_init(ssh->mainchan,
10684                                       "simple@putty.projects.tartarus.org",
10685                                       NULL, NULL);
10686         ssh2_pkt_send(ssh, s->pktout);
10687     }
10688
10689     /*
10690      * Enable port forwardings.
10691      */
10692     ssh_setup_portfwd(ssh, ssh->conf);
10693
10694     if (ssh->mainchan && !ssh->ncmode) {
10695         /*
10696          * Send the CHANNEL_REQUESTS for the main session channel.
10697          * Each one is handled by its own little asynchronous
10698          * co-routine.
10699          */
10700
10701         /* Potentially enable X11 forwarding. */
10702         if (conf_get_int(ssh->conf, CONF_x11_forward)) {
10703             ssh->x11disp =
10704                 x11_setup_display(conf_get_str(ssh->conf, CONF_x11_display),
10705                                   ssh->conf);
10706             if (!ssh->x11disp) {
10707                 /* FIXME: return an error message from x11_setup_display */
10708                 logevent("X11 forwarding not enabled: unable to"
10709                          " initialise X display");
10710             } else {
10711                 ssh->x11auth = x11_invent_fake_auth
10712                     (ssh->x11authtree, conf_get_int(ssh->conf, CONF_x11_auth));
10713                 ssh->x11auth->disp = ssh->x11disp;
10714
10715                 ssh2_setup_x11(ssh->mainchan, NULL, NULL);
10716             }
10717         }
10718
10719         /* Potentially enable agent forwarding. */
10720         if (ssh_agent_forwarding_permitted(ssh))
10721             ssh2_setup_agent(ssh->mainchan, NULL, NULL);
10722
10723         /* Now allocate a pty for the session. */
10724         if (!conf_get_int(ssh->conf, CONF_nopty))
10725             ssh2_setup_pty(ssh->mainchan, NULL, NULL);
10726
10727         /* Send environment variables. */
10728         ssh2_setup_env(ssh->mainchan, NULL, NULL);
10729
10730         /*
10731          * Start a shell or a remote command. We may have to attempt
10732          * this twice if the config data has provided a second choice
10733          * of command.
10734          */
10735         while (1) {
10736             int subsys;
10737             char *cmd;
10738
10739             if (ssh->fallback_cmd) {
10740                 subsys = conf_get_int(ssh->conf, CONF_ssh_subsys2);
10741                 cmd = conf_get_str(ssh->conf, CONF_remote_cmd2);
10742             } else {
10743                 subsys = conf_get_int(ssh->conf, CONF_ssh_subsys);
10744                 cmd = conf_get_str(ssh->conf, CONF_remote_cmd);
10745             }
10746
10747             if (subsys) {
10748                 s->pktout = ssh2_chanreq_init(ssh->mainchan, "subsystem",
10749                                               ssh2_response_authconn, NULL);
10750                 ssh2_pkt_addstring(s->pktout, cmd);
10751             } else if (*cmd) {
10752                 s->pktout = ssh2_chanreq_init(ssh->mainchan, "exec",
10753                                               ssh2_response_authconn, NULL);
10754                 ssh2_pkt_addstring(s->pktout, cmd);
10755             } else {
10756                 s->pktout = ssh2_chanreq_init(ssh->mainchan, "shell",
10757                                               ssh2_response_authconn, NULL);
10758             }
10759             ssh2_pkt_send(ssh, s->pktout);
10760
10761             crWaitUntilV(pktin);
10762
10763             if (pktin->type != SSH2_MSG_CHANNEL_SUCCESS) {
10764                 if (pktin->type != SSH2_MSG_CHANNEL_FAILURE) {
10765                     bombout(("Unexpected response to shell/command request:"
10766                              " packet type %d", pktin->type));
10767                     crStopV;
10768                 }
10769                 /*
10770                  * We failed to start the command. If this is the
10771                  * fallback command, we really are finished; if it's
10772                  * not, and if the fallback command exists, try falling
10773                  * back to it before complaining.
10774                  */
10775                 if (!ssh->fallback_cmd &&
10776                     *conf_get_str(ssh->conf, CONF_remote_cmd2)) {
10777                     logevent("Primary command failed; attempting fallback");
10778                     ssh->fallback_cmd = TRUE;
10779                     continue;
10780                 }
10781                 bombout(("Server refused to start a shell/command"));
10782                 crStopV;
10783             } else {
10784                 logevent("Started a shell/command");
10785             }
10786             break;
10787         }
10788     } else {
10789         ssh->editing = ssh->echoing = TRUE;
10790     }
10791
10792     ssh->state = SSH_STATE_SESSION;
10793     if (ssh->size_needed)
10794         ssh_size(ssh, ssh->term_width, ssh->term_height);
10795     if (ssh->eof_needed)
10796         ssh_special(ssh, TS_EOF);
10797
10798     /*
10799      * Transfer data!
10800      */
10801     if (ssh->ldisc)
10802         ldisc_echoedit_update(ssh->ldisc);  /* cause ldisc to notice changes */
10803     if (ssh->mainchan)
10804         ssh->send_ok = 1;
10805     while (1) {
10806         crReturnV;
10807         if (pktin) {
10808
10809             /*
10810              * _All_ the connection-layer packets we expect to
10811              * receive are now handled by the dispatch table.
10812              * Anything that reaches here must be bogus.
10813              */
10814
10815             bombout(("Strange packet received: type %d", pktin->type));
10816             crStopV;
10817         } else if (ssh->mainchan) {
10818             /*
10819              * We have spare data. Add it to the channel buffer.
10820              */
10821             ssh_send_channel_data(ssh->mainchan, (char *)in, inlen);
10822         }
10823     }
10824
10825     crFinishV;
10826 }
10827
10828 /*
10829  * Handlers for SSH-2 messages that might arrive at any moment.
10830  */
10831 static void ssh2_msg_disconnect(Ssh ssh, struct Packet *pktin)
10832 {
10833     /* log reason code in disconnect message */
10834     char *buf, *msg;
10835     int reason, msglen;
10836
10837     reason = ssh_pkt_getuint32(pktin);
10838     ssh_pkt_getstring(pktin, &msg, &msglen);
10839
10840     if (reason > 0 && reason < lenof(ssh2_disconnect_reasons)) {
10841         buf = dupprintf("Received disconnect message (%s)",
10842                         ssh2_disconnect_reasons[reason]);
10843     } else {
10844         buf = dupprintf("Received disconnect message (unknown"
10845                         " type %d)", reason);
10846     }
10847     logevent(buf);
10848     sfree(buf);
10849     buf = dupprintf("Disconnection message text: %.*s",
10850                     msglen, NULLTOEMPTY(msg));
10851     logevent(buf);
10852     bombout(("Server sent disconnect message\ntype %d (%s):\n\"%.*s\"",
10853              reason,
10854              (reason > 0 && reason < lenof(ssh2_disconnect_reasons)) ?
10855              ssh2_disconnect_reasons[reason] : "unknown",
10856              msglen, NULLTOEMPTY(msg)));
10857     sfree(buf);
10858 }
10859
10860 static void ssh2_msg_debug(Ssh ssh, struct Packet *pktin)
10861 {
10862     /* log the debug message */
10863     char *msg;
10864     int msglen;
10865
10866     /* XXX maybe we should actually take notice of the return value */
10867     ssh2_pkt_getbool(pktin);
10868     ssh_pkt_getstring(pktin, &msg, &msglen);
10869
10870     logeventf(ssh, "Remote debug message: %.*s", msglen, NULLTOEMPTY(msg));
10871 }
10872
10873 static void ssh2_msg_transport(Ssh ssh, struct Packet *pktin)
10874 {
10875     do_ssh2_transport(ssh, NULL, 0, pktin);
10876 }
10877
10878 /*
10879  * Called if we receive a packet that isn't allowed by the protocol.
10880  * This only applies to packets whose meaning PuTTY understands.
10881  * Entirely unknown packets are handled below.
10882  */
10883 static void ssh2_msg_unexpected(Ssh ssh, struct Packet *pktin)
10884 {
10885     char *buf = dupprintf("Server protocol violation: unexpected %s packet",
10886                           ssh2_pkt_type(ssh->pkt_kctx, ssh->pkt_actx,
10887                                         pktin->type));
10888     ssh_disconnect(ssh, NULL, buf, SSH2_DISCONNECT_PROTOCOL_ERROR, FALSE);
10889     sfree(buf);
10890 }
10891
10892 static void ssh2_msg_something_unimplemented(Ssh ssh, struct Packet *pktin)
10893 {
10894     struct Packet *pktout;
10895     pktout = ssh2_pkt_init(SSH2_MSG_UNIMPLEMENTED);
10896     ssh2_pkt_adduint32(pktout, pktin->sequence);
10897     /*
10898      * UNIMPLEMENTED messages MUST appear in the same order as the
10899      * messages they respond to. Hence, never queue them.
10900      */
10901     ssh2_pkt_send_noqueue(ssh, pktout);
10902 }
10903
10904 /*
10905  * Handle the top-level SSH-2 protocol.
10906  */
10907 static void ssh2_protocol_setup(Ssh ssh)
10908 {
10909     int i;
10910
10911     /*
10912      * Most messages cause SSH2_MSG_UNIMPLEMENTED.
10913      */
10914     for (i = 0; i < 256; i++)
10915         ssh->packet_dispatch[i] = ssh2_msg_something_unimplemented;
10916
10917     /*
10918      * Initially, we only accept transport messages (and a few generic
10919      * ones).  do_ssh2_authconn will add more when it starts.
10920      * Messages that are understood but not currently acceptable go to
10921      * ssh2_msg_unexpected.
10922      */
10923     ssh->packet_dispatch[SSH2_MSG_UNIMPLEMENTED] = ssh2_msg_unexpected;
10924     ssh->packet_dispatch[SSH2_MSG_SERVICE_REQUEST] = ssh2_msg_unexpected;
10925     ssh->packet_dispatch[SSH2_MSG_SERVICE_ACCEPT] = ssh2_msg_unexpected;
10926     ssh->packet_dispatch[SSH2_MSG_KEXINIT] = ssh2_msg_transport;
10927     ssh->packet_dispatch[SSH2_MSG_NEWKEYS] = ssh2_msg_transport;
10928     ssh->packet_dispatch[SSH2_MSG_KEXDH_INIT] = ssh2_msg_transport;
10929     ssh->packet_dispatch[SSH2_MSG_KEXDH_REPLY] = ssh2_msg_transport;
10930     /* ssh->packet_dispatch[SSH2_MSG_KEX_DH_GEX_REQUEST] = ssh2_msg_transport; duplicate case value */
10931     /* ssh->packet_dispatch[SSH2_MSG_KEX_DH_GEX_GROUP] = ssh2_msg_transport; duplicate case value */
10932     ssh->packet_dispatch[SSH2_MSG_KEX_DH_GEX_INIT] = ssh2_msg_transport;
10933     ssh->packet_dispatch[SSH2_MSG_KEX_DH_GEX_REPLY] = ssh2_msg_transport;
10934     ssh->packet_dispatch[SSH2_MSG_USERAUTH_REQUEST] = ssh2_msg_unexpected;
10935     ssh->packet_dispatch[SSH2_MSG_USERAUTH_FAILURE] = ssh2_msg_unexpected;
10936     ssh->packet_dispatch[SSH2_MSG_USERAUTH_SUCCESS] = ssh2_msg_unexpected;
10937     ssh->packet_dispatch[SSH2_MSG_USERAUTH_BANNER] = ssh2_msg_unexpected;
10938     ssh->packet_dispatch[SSH2_MSG_USERAUTH_PK_OK] = ssh2_msg_unexpected;
10939     /* ssh->packet_dispatch[SSH2_MSG_USERAUTH_PASSWD_CHANGEREQ] = ssh2_msg_unexpected; duplicate case value */
10940     /* ssh->packet_dispatch[SSH2_MSG_USERAUTH_INFO_REQUEST] = ssh2_msg_unexpected; duplicate case value */
10941     ssh->packet_dispatch[SSH2_MSG_USERAUTH_INFO_RESPONSE] = ssh2_msg_unexpected;
10942     ssh->packet_dispatch[SSH2_MSG_GLOBAL_REQUEST] = ssh2_msg_unexpected;
10943     ssh->packet_dispatch[SSH2_MSG_REQUEST_SUCCESS] = ssh2_msg_unexpected;
10944     ssh->packet_dispatch[SSH2_MSG_REQUEST_FAILURE] = ssh2_msg_unexpected;
10945     ssh->packet_dispatch[SSH2_MSG_CHANNEL_OPEN] = ssh2_msg_unexpected;
10946     ssh->packet_dispatch[SSH2_MSG_CHANNEL_OPEN_CONFIRMATION] = ssh2_msg_unexpected;
10947     ssh->packet_dispatch[SSH2_MSG_CHANNEL_OPEN_FAILURE] = ssh2_msg_unexpected;
10948     ssh->packet_dispatch[SSH2_MSG_CHANNEL_WINDOW_ADJUST] = ssh2_msg_unexpected;
10949     ssh->packet_dispatch[SSH2_MSG_CHANNEL_DATA] = ssh2_msg_unexpected;
10950     ssh->packet_dispatch[SSH2_MSG_CHANNEL_EXTENDED_DATA] = ssh2_msg_unexpected;
10951     ssh->packet_dispatch[SSH2_MSG_CHANNEL_EOF] = ssh2_msg_unexpected;
10952     ssh->packet_dispatch[SSH2_MSG_CHANNEL_CLOSE] = ssh2_msg_unexpected;
10953     ssh->packet_dispatch[SSH2_MSG_CHANNEL_REQUEST] = ssh2_msg_unexpected;
10954     ssh->packet_dispatch[SSH2_MSG_CHANNEL_SUCCESS] = ssh2_msg_unexpected;
10955     ssh->packet_dispatch[SSH2_MSG_CHANNEL_FAILURE] = ssh2_msg_unexpected;
10956
10957     /*
10958      * These messages have a special handler from the start.
10959      */
10960     ssh->packet_dispatch[SSH2_MSG_DISCONNECT] = ssh2_msg_disconnect;
10961     ssh->packet_dispatch[SSH2_MSG_IGNORE] = ssh_msg_ignore; /* shared with SSH-1 */
10962     ssh->packet_dispatch[SSH2_MSG_DEBUG] = ssh2_msg_debug;
10963 }
10964
10965 static void ssh2_bare_connection_protocol_setup(Ssh ssh)
10966 {
10967     int i;
10968
10969     /*
10970      * Most messages cause SSH2_MSG_UNIMPLEMENTED.
10971      */
10972     for (i = 0; i < 256; i++)
10973         ssh->packet_dispatch[i] = ssh2_msg_something_unimplemented;
10974
10975     /*
10976      * Initially, we set all ssh-connection messages to 'unexpected';
10977      * do_ssh2_authconn will fill things in properly. We also handle a
10978      * couple of messages from the transport protocol which aren't
10979      * related to key exchange (UNIMPLEMENTED, IGNORE, DEBUG,
10980      * DISCONNECT).
10981      */
10982     ssh->packet_dispatch[SSH2_MSG_GLOBAL_REQUEST] = ssh2_msg_unexpected;
10983     ssh->packet_dispatch[SSH2_MSG_REQUEST_SUCCESS] = ssh2_msg_unexpected;
10984     ssh->packet_dispatch[SSH2_MSG_REQUEST_FAILURE] = ssh2_msg_unexpected;
10985     ssh->packet_dispatch[SSH2_MSG_CHANNEL_OPEN] = ssh2_msg_unexpected;
10986     ssh->packet_dispatch[SSH2_MSG_CHANNEL_OPEN_CONFIRMATION] = ssh2_msg_unexpected;
10987     ssh->packet_dispatch[SSH2_MSG_CHANNEL_OPEN_FAILURE] = ssh2_msg_unexpected;
10988     ssh->packet_dispatch[SSH2_MSG_CHANNEL_WINDOW_ADJUST] = ssh2_msg_unexpected;
10989     ssh->packet_dispatch[SSH2_MSG_CHANNEL_DATA] = ssh2_msg_unexpected;
10990     ssh->packet_dispatch[SSH2_MSG_CHANNEL_EXTENDED_DATA] = ssh2_msg_unexpected;
10991     ssh->packet_dispatch[SSH2_MSG_CHANNEL_EOF] = ssh2_msg_unexpected;
10992     ssh->packet_dispatch[SSH2_MSG_CHANNEL_CLOSE] = ssh2_msg_unexpected;
10993     ssh->packet_dispatch[SSH2_MSG_CHANNEL_REQUEST] = ssh2_msg_unexpected;
10994     ssh->packet_dispatch[SSH2_MSG_CHANNEL_SUCCESS] = ssh2_msg_unexpected;
10995     ssh->packet_dispatch[SSH2_MSG_CHANNEL_FAILURE] = ssh2_msg_unexpected;
10996
10997     ssh->packet_dispatch[SSH2_MSG_UNIMPLEMENTED] = ssh2_msg_unexpected;
10998
10999     /*
11000      * These messages have a special handler from the start.
11001      */
11002     ssh->packet_dispatch[SSH2_MSG_DISCONNECT] = ssh2_msg_disconnect;
11003     ssh->packet_dispatch[SSH2_MSG_IGNORE] = ssh_msg_ignore;
11004     ssh->packet_dispatch[SSH2_MSG_DEBUG] = ssh2_msg_debug;
11005 }
11006
11007 static void ssh2_timer(void *ctx, unsigned long now)
11008 {
11009     Ssh ssh = (Ssh)ctx;
11010
11011     if (ssh->state == SSH_STATE_CLOSED)
11012         return;
11013
11014     if (!ssh->kex_in_progress && !ssh->bare_connection &&
11015         conf_get_int(ssh->conf, CONF_ssh_rekey_time) != 0 &&
11016         now == ssh->next_rekey) {
11017         do_ssh2_transport(ssh, "timeout", -1, NULL);
11018     }
11019 }
11020
11021 static void ssh2_protocol(Ssh ssh, const void *vin, int inlen,
11022                           struct Packet *pktin)
11023 {
11024     const unsigned char *in = (const unsigned char *)vin;
11025     if (ssh->state == SSH_STATE_CLOSED)
11026         return;
11027
11028     if (pktin) {
11029         ssh->incoming_data_size += pktin->encrypted_len;
11030         if (!ssh->kex_in_progress &&
11031             ssh->max_data_size != 0 &&
11032             ssh->incoming_data_size > ssh->max_data_size)
11033             do_ssh2_transport(ssh, "too much data received", -1, NULL);
11034     }
11035
11036     if (pktin)
11037         ssh->packet_dispatch[pktin->type](ssh, pktin);
11038     else if (!ssh->protocol_initial_phase_done)
11039         do_ssh2_transport(ssh, in, inlen, pktin);
11040     else
11041         do_ssh2_authconn(ssh, in, inlen, pktin);
11042 }
11043
11044 static void ssh2_bare_connection_protocol(Ssh ssh, const void *vin, int inlen,
11045                                           struct Packet *pktin)
11046 {
11047     const unsigned char *in = (const unsigned char *)vin;
11048     if (ssh->state == SSH_STATE_CLOSED)
11049         return;
11050
11051     if (pktin)
11052         ssh->packet_dispatch[pktin->type](ssh, pktin);
11053     else
11054         do_ssh2_authconn(ssh, in, inlen, pktin);
11055 }
11056
11057 static void ssh_cache_conf_values(Ssh ssh)
11058 {
11059     ssh->logomitdata = conf_get_int(ssh->conf, CONF_logomitdata);
11060 }
11061
11062 /*
11063  * Called to set up the connection.
11064  *
11065  * Returns an error message, or NULL on success.
11066  */
11067 static const char *ssh_init(void *frontend_handle, void **backend_handle,
11068                             Conf *conf,
11069                             const char *host, int port, char **realhost,
11070                             int nodelay, int keepalive)
11071 {
11072     const char *p;
11073     Ssh ssh;
11074
11075     ssh = snew(struct ssh_tag);
11076     ssh->conf = conf_copy(conf);
11077     ssh_cache_conf_values(ssh);
11078     ssh->version = 0;                  /* when not ready yet */
11079     ssh->s = NULL;
11080     ssh->cipher = NULL;
11081     ssh->v1_cipher_ctx = NULL;
11082     ssh->crcda_ctx = NULL;
11083     ssh->cscipher = NULL;
11084     ssh->cs_cipher_ctx = NULL;
11085     ssh->sccipher = NULL;
11086     ssh->sc_cipher_ctx = NULL;
11087     ssh->csmac = NULL;
11088     ssh->cs_mac_ctx = NULL;
11089     ssh->scmac = NULL;
11090     ssh->sc_mac_ctx = NULL;
11091     ssh->cscomp = NULL;
11092     ssh->cs_comp_ctx = NULL;
11093     ssh->sccomp = NULL;
11094     ssh->sc_comp_ctx = NULL;
11095     ssh->kex = NULL;
11096     ssh->kex_ctx = NULL;
11097     ssh->hostkey = NULL;
11098     ssh->hostkey_str = NULL;
11099     ssh->exitcode = -1;
11100     ssh->close_expected = FALSE;
11101     ssh->clean_exit = FALSE;
11102     ssh->state = SSH_STATE_PREPACKET;
11103     ssh->size_needed = FALSE;
11104     ssh->eof_needed = FALSE;
11105     ssh->ldisc = NULL;
11106     ssh->logctx = NULL;
11107     ssh->deferred_send_data = NULL;
11108     ssh->deferred_len = 0;
11109     ssh->deferred_size = 0;
11110     ssh->fallback_cmd = 0;
11111     ssh->pkt_kctx = SSH2_PKTCTX_NOKEX;
11112     ssh->pkt_actx = SSH2_PKTCTX_NOAUTH;
11113     ssh->x11disp = NULL;
11114     ssh->x11auth = NULL;
11115     ssh->x11authtree = newtree234(x11_authcmp);
11116     ssh->v1_compressing = FALSE;
11117     ssh->v2_outgoing_sequence = 0;
11118     ssh->ssh1_rdpkt_crstate = 0;
11119     ssh->ssh2_rdpkt_crstate = 0;
11120     ssh->ssh2_bare_rdpkt_crstate = 0;
11121     ssh->ssh_gotdata_crstate = 0;
11122     ssh->do_ssh1_connection_crstate = 0;
11123     ssh->do_ssh_init_state = NULL;
11124     ssh->do_ssh_connection_init_state = NULL;
11125     ssh->do_ssh1_login_state = NULL;
11126     ssh->do_ssh2_transport_state = NULL;
11127     ssh->do_ssh2_authconn_state = NULL;
11128     ssh->v_c = NULL;
11129     ssh->v_s = NULL;
11130     ssh->mainchan = NULL;
11131     ssh->throttled_all = 0;
11132     ssh->v1_stdout_throttling = 0;
11133     ssh->queue = NULL;
11134     ssh->queuelen = ssh->queuesize = 0;
11135     ssh->queueing = FALSE;
11136     ssh->qhead = ssh->qtail = NULL;
11137     ssh->deferred_rekey_reason = NULL;
11138     bufchain_init(&ssh->queued_incoming_data);
11139     ssh->frozen = FALSE;
11140     ssh->username = NULL;
11141     ssh->sent_console_eof = FALSE;
11142     ssh->got_pty = FALSE;
11143     ssh->bare_connection = FALSE;
11144     ssh->X11_fwd_enabled = FALSE;
11145     ssh->connshare = NULL;
11146     ssh->attempting_connshare = FALSE;
11147     ssh->session_started = FALSE;
11148     ssh->specials = NULL;
11149     ssh->n_uncert_hostkeys = 0;
11150     ssh->cross_certifying = FALSE;
11151
11152     *backend_handle = ssh;
11153
11154 #ifdef MSCRYPTOAPI
11155     if (crypto_startup() == 0)
11156         return "Microsoft high encryption pack not installed!";
11157 #endif
11158
11159     ssh->frontend = frontend_handle;
11160     ssh->term_width = conf_get_int(ssh->conf, CONF_width);
11161     ssh->term_height = conf_get_int(ssh->conf, CONF_height);
11162
11163     ssh->channels = NULL;
11164     ssh->rportfwds = NULL;
11165     ssh->portfwds = NULL;
11166
11167     ssh->send_ok = 0;
11168     ssh->editing = 0;
11169     ssh->echoing = 0;
11170     ssh->conn_throttle_count = 0;
11171     ssh->overall_bufsize = 0;
11172     ssh->fallback_cmd = 0;
11173
11174     ssh->protocol = NULL;
11175
11176     ssh->protocol_initial_phase_done = FALSE;
11177
11178     ssh->pinger = NULL;
11179
11180     ssh->incoming_data_size = ssh->outgoing_data_size =
11181         ssh->deferred_data_size = 0L;
11182     ssh->max_data_size = parse_blocksize(conf_get_str(ssh->conf,
11183                                                       CONF_ssh_rekey_data));
11184     ssh->kex_in_progress = FALSE;
11185
11186 #ifndef NO_GSSAPI
11187     ssh->gsslibs = NULL;
11188 #endif
11189
11190     random_ref(); /* do this now - may be needed by sharing setup code */
11191
11192     p = connect_to_host(ssh, host, port, realhost, nodelay, keepalive);
11193     if (p != NULL) {
11194         random_unref();
11195         return p;
11196     }
11197
11198     return NULL;
11199 }
11200
11201 static void ssh_free(void *handle)
11202 {
11203     Ssh ssh = (Ssh) handle;
11204     struct ssh_channel *c;
11205     struct ssh_rportfwd *pf;
11206     struct X11FakeAuth *auth;
11207
11208     if (ssh->v1_cipher_ctx)
11209         ssh->cipher->free_context(ssh->v1_cipher_ctx);
11210     if (ssh->cs_cipher_ctx)
11211         ssh->cscipher->free_context(ssh->cs_cipher_ctx);
11212     if (ssh->sc_cipher_ctx)
11213         ssh->sccipher->free_context(ssh->sc_cipher_ctx);
11214     if (ssh->cs_mac_ctx)
11215         ssh->csmac->free_context(ssh->cs_mac_ctx);
11216     if (ssh->sc_mac_ctx)
11217         ssh->scmac->free_context(ssh->sc_mac_ctx);
11218     if (ssh->cs_comp_ctx) {
11219         if (ssh->cscomp)
11220             ssh->cscomp->compress_cleanup(ssh->cs_comp_ctx);
11221         else
11222             zlib_compress_cleanup(ssh->cs_comp_ctx);
11223     }
11224     if (ssh->sc_comp_ctx) {
11225         if (ssh->sccomp)
11226             ssh->sccomp->decompress_cleanup(ssh->sc_comp_ctx);
11227         else
11228             zlib_decompress_cleanup(ssh->sc_comp_ctx);
11229     }
11230     if (ssh->kex_ctx)
11231         dh_cleanup(ssh->kex_ctx);
11232     sfree(ssh->savedhost);
11233
11234     while (ssh->queuelen-- > 0)
11235         ssh_free_packet(ssh->queue[ssh->queuelen]);
11236     sfree(ssh->queue);
11237
11238     while (ssh->qhead) {
11239         struct queued_handler *qh = ssh->qhead;
11240         ssh->qhead = qh->next;
11241         sfree(qh);
11242     }
11243     ssh->qhead = ssh->qtail = NULL;
11244
11245     if (ssh->channels) {
11246         while ((c = delpos234(ssh->channels, 0)) != NULL) {
11247             switch (c->type) {
11248               case CHAN_X11:
11249                 assert(c->u.x11.xconn != NULL);
11250                 x11_close(c->u.x11.xconn);
11251                 break;
11252               case CHAN_SOCKDATA:
11253                 assert(c->u.pfd.pf != NULL);
11254                 pfd_close(c->u.pfd.pf);
11255                 break;
11256             }
11257             if (ssh->version == 2) {
11258                 struct outstanding_channel_request *ocr, *nocr;
11259                 ocr = c->v.v2.chanreq_head;
11260                 while (ocr) {
11261                     ocr->handler(c, NULL, ocr->ctx);
11262                     nocr = ocr->next;
11263                     sfree(ocr);
11264                     ocr = nocr;
11265                 }
11266                 bufchain_clear(&c->v.v2.outbuffer);
11267             }
11268             sfree(c);
11269         }
11270         freetree234(ssh->channels);
11271         ssh->channels = NULL;
11272     }
11273
11274     if (ssh->connshare)
11275         sharestate_free(ssh->connshare);
11276
11277     if (ssh->rportfwds) {
11278         while ((pf = delpos234(ssh->rportfwds, 0)) != NULL)
11279             free_rportfwd(pf);
11280         freetree234(ssh->rportfwds);
11281         ssh->rportfwds = NULL;
11282     }
11283     sfree(ssh->deferred_send_data);
11284     if (ssh->x11disp)
11285         x11_free_display(ssh->x11disp);
11286     while ((auth = delpos234(ssh->x11authtree, 0)) != NULL)
11287         x11_free_fake_auth(auth);
11288     freetree234(ssh->x11authtree);
11289     sfree(ssh->do_ssh_init_state);
11290     sfree(ssh->do_ssh1_login_state);
11291     sfree(ssh->do_ssh2_transport_state);
11292     sfree(ssh->do_ssh2_authconn_state);
11293     sfree(ssh->v_c);
11294     sfree(ssh->v_s);
11295     sfree(ssh->fullhostname);
11296     sfree(ssh->hostkey_str);
11297     sfree(ssh->specials);
11298     if (ssh->crcda_ctx) {
11299         crcda_free_context(ssh->crcda_ctx);
11300         ssh->crcda_ctx = NULL;
11301     }
11302     if (ssh->s)
11303         ssh_do_close(ssh, TRUE);
11304     expire_timer_context(ssh);
11305     if (ssh->pinger)
11306         pinger_free(ssh->pinger);
11307     bufchain_clear(&ssh->queued_incoming_data);
11308     sfree(ssh->username);
11309     conf_free(ssh->conf);
11310 #ifndef NO_GSSAPI
11311     if (ssh->gsslibs)
11312         ssh_gss_cleanup(ssh->gsslibs);
11313 #endif
11314     sfree(ssh);
11315
11316     random_unref();
11317 }
11318
11319 /*
11320  * Reconfigure the SSH backend.
11321  */
11322 static void ssh_reconfig(void *handle, Conf *conf)
11323 {
11324     Ssh ssh = (Ssh) handle;
11325     const char *rekeying = NULL;
11326     int rekey_mandatory = FALSE;
11327     unsigned long old_max_data_size;
11328     int i, rekey_time;
11329
11330     pinger_reconfig(ssh->pinger, ssh->conf, conf);
11331     if (ssh->portfwds)
11332         ssh_setup_portfwd(ssh, conf);
11333
11334     rekey_time = conf_get_int(conf, CONF_ssh_rekey_time);
11335     if (conf_get_int(ssh->conf, CONF_ssh_rekey_time) != rekey_time &&
11336         rekey_time != 0) {
11337         unsigned long new_next = ssh->last_rekey + rekey_time*60*TICKSPERSEC;
11338         unsigned long now = GETTICKCOUNT();
11339
11340         if (now - ssh->last_rekey > rekey_time*60*TICKSPERSEC) {
11341             rekeying = "timeout shortened";
11342         } else {
11343             ssh->next_rekey = schedule_timer(new_next - now, ssh2_timer, ssh);
11344         }
11345     }
11346
11347     old_max_data_size = ssh->max_data_size;
11348     ssh->max_data_size = parse_blocksize(conf_get_str(ssh->conf,
11349                                                       CONF_ssh_rekey_data));
11350     if (old_max_data_size != ssh->max_data_size &&
11351         ssh->max_data_size != 0) {
11352         if (ssh->outgoing_data_size > ssh->max_data_size ||
11353             ssh->incoming_data_size > ssh->max_data_size)
11354             rekeying = "data limit lowered";
11355     }
11356
11357     if (conf_get_int(ssh->conf, CONF_compression) !=
11358         conf_get_int(conf, CONF_compression)) {
11359         rekeying = "compression setting changed";
11360         rekey_mandatory = TRUE;
11361     }
11362
11363     for (i = 0; i < CIPHER_MAX; i++)
11364         if (conf_get_int_int(ssh->conf, CONF_ssh_cipherlist, i) !=
11365             conf_get_int_int(conf, CONF_ssh_cipherlist, i)) {
11366         rekeying = "cipher settings changed";
11367         rekey_mandatory = TRUE;
11368     }
11369     if (conf_get_int(ssh->conf, CONF_ssh2_des_cbc) !=
11370         conf_get_int(conf, CONF_ssh2_des_cbc)) {
11371         rekeying = "cipher settings changed";
11372         rekey_mandatory = TRUE;
11373     }
11374
11375     conf_free(ssh->conf);
11376     ssh->conf = conf_copy(conf);
11377     ssh_cache_conf_values(ssh);
11378
11379     if (!ssh->bare_connection && rekeying) {
11380         if (!ssh->kex_in_progress) {
11381             do_ssh2_transport(ssh, rekeying, -1, NULL);
11382         } else if (rekey_mandatory) {
11383             ssh->deferred_rekey_reason = rekeying;
11384         }
11385     }
11386 }
11387
11388 /*
11389  * Called to send data down the SSH connection.
11390  */
11391 static int ssh_send(void *handle, const char *buf, int len)
11392 {
11393     Ssh ssh = (Ssh) handle;
11394
11395     if (ssh == NULL || ssh->s == NULL || ssh->protocol == NULL)
11396         return 0;
11397
11398     ssh->protocol(ssh, (const unsigned char *)buf, len, 0);
11399
11400     return ssh_sendbuffer(ssh);
11401 }
11402
11403 /*
11404  * Called to query the current amount of buffered stdin data.
11405  */
11406 static int ssh_sendbuffer(void *handle)
11407 {
11408     Ssh ssh = (Ssh) handle;
11409     int override_value;
11410
11411     if (ssh == NULL || ssh->s == NULL || ssh->protocol == NULL)
11412         return 0;
11413
11414     /*
11415      * If the SSH socket itself has backed up, add the total backup
11416      * size on that to any individual buffer on the stdin channel.
11417      */
11418     override_value = 0;
11419     if (ssh->throttled_all)
11420         override_value = ssh->overall_bufsize;
11421
11422     if (ssh->version == 1) {
11423         return override_value;
11424     } else if (ssh->version == 2) {
11425         if (!ssh->mainchan)
11426             return override_value;
11427         else
11428             return (override_value +
11429                     bufchain_size(&ssh->mainchan->v.v2.outbuffer));
11430     }
11431
11432     return 0;
11433 }
11434
11435 /*
11436  * Called to set the size of the window from SSH's POV.
11437  */
11438 static void ssh_size(void *handle, int width, int height)
11439 {
11440     Ssh ssh = (Ssh) handle;
11441     struct Packet *pktout;
11442
11443     ssh->term_width = width;
11444     ssh->term_height = height;
11445
11446     switch (ssh->state) {
11447       case SSH_STATE_BEFORE_SIZE:
11448       case SSH_STATE_PREPACKET:
11449       case SSH_STATE_CLOSED:
11450         break;                         /* do nothing */
11451       case SSH_STATE_INTERMED:
11452         ssh->size_needed = TRUE;       /* buffer for later */
11453         break;
11454       case SSH_STATE_SESSION:
11455         if (!conf_get_int(ssh->conf, CONF_nopty)) {
11456             if (ssh->version == 1) {
11457                 send_packet(ssh, SSH1_CMSG_WINDOW_SIZE,
11458                             PKT_INT, ssh->term_height,
11459                             PKT_INT, ssh->term_width,
11460                             PKT_INT, 0, PKT_INT, 0, PKT_END);
11461             } else if (ssh->mainchan) {
11462                 pktout = ssh2_chanreq_init(ssh->mainchan, "window-change",
11463                                            NULL, NULL);
11464                 ssh2_pkt_adduint32(pktout, ssh->term_width);
11465                 ssh2_pkt_adduint32(pktout, ssh->term_height);
11466                 ssh2_pkt_adduint32(pktout, 0);
11467                 ssh2_pkt_adduint32(pktout, 0);
11468                 ssh2_pkt_send(ssh, pktout);
11469             }
11470         }
11471         break;
11472     }
11473 }
11474
11475 /*
11476  * Return a list of the special codes that make sense in this
11477  * protocol.
11478  */
11479 static const struct telnet_special *ssh_get_specials(void *handle)
11480 {
11481     static const struct telnet_special ssh1_ignore_special[] = {
11482         {"IGNORE message", TS_NOP}
11483     };
11484     static const struct telnet_special ssh2_ignore_special[] = {
11485         {"IGNORE message", TS_NOP},
11486     };
11487     static const struct telnet_special ssh2_rekey_special[] = {
11488         {"Repeat key exchange", TS_REKEY},
11489     };
11490     static const struct telnet_special ssh2_session_specials[] = {
11491         {NULL, TS_SEP},
11492         {"Break", TS_BRK},
11493         /* These are the signal names defined by RFC 4254.
11494          * They include all the ISO C signals, but are a subset of the POSIX
11495          * required signals. */
11496         {"SIGINT (Interrupt)", TS_SIGINT},
11497         {"SIGTERM (Terminate)", TS_SIGTERM},
11498         {"SIGKILL (Kill)", TS_SIGKILL},
11499         {"SIGQUIT (Quit)", TS_SIGQUIT},
11500         {"SIGHUP (Hangup)", TS_SIGHUP},
11501         {"More signals", TS_SUBMENU},
11502           {"SIGABRT", TS_SIGABRT}, {"SIGALRM", TS_SIGALRM},
11503           {"SIGFPE",  TS_SIGFPE},  {"SIGILL",  TS_SIGILL},
11504           {"SIGPIPE", TS_SIGPIPE}, {"SIGSEGV", TS_SIGSEGV},
11505           {"SIGUSR1", TS_SIGUSR1}, {"SIGUSR2", TS_SIGUSR2},
11506         {NULL, TS_EXITMENU}
11507     };
11508     static const struct telnet_special specials_end[] = {
11509         {NULL, TS_EXITMENU}
11510     };
11511
11512     struct telnet_special *specials = NULL;
11513     int nspecials = 0, specialsize = 0;
11514
11515     Ssh ssh = (Ssh) handle;
11516
11517     sfree(ssh->specials);
11518
11519 #define ADD_SPECIALS(name) do                                           \
11520     {                                                                   \
11521         int len = lenof(name);                                          \
11522         if (nspecials + len > specialsize) {                            \
11523             specialsize = (nspecials + len) * 5 / 4 + 32;               \
11524             specials = sresize(specials, specialsize, struct telnet_special); \
11525         }                                                               \
11526         memcpy(specials+nspecials, name, len*sizeof(struct telnet_special)); \
11527         nspecials += len;                                               \
11528     } while (0)
11529
11530     if (ssh->version == 1) {
11531         /* Don't bother offering IGNORE if we've decided the remote
11532          * won't cope with it, since we wouldn't bother sending it if
11533          * asked anyway. */
11534         if (!(ssh->remote_bugs & BUG_CHOKES_ON_SSH1_IGNORE))
11535             ADD_SPECIALS(ssh1_ignore_special);
11536     } else if (ssh->version == 2) {
11537         if (!(ssh->remote_bugs & BUG_CHOKES_ON_SSH2_IGNORE))
11538             ADD_SPECIALS(ssh2_ignore_special);
11539         if (!(ssh->remote_bugs & BUG_SSH2_REKEY) && !ssh->bare_connection)
11540             ADD_SPECIALS(ssh2_rekey_special);
11541         if (ssh->mainchan)
11542             ADD_SPECIALS(ssh2_session_specials);
11543
11544         if (ssh->n_uncert_hostkeys) {
11545             static const struct telnet_special uncert_start[] = {
11546                 {NULL, TS_SEP},
11547                 {"Cache new host key type", TS_SUBMENU},
11548             };
11549             static const struct telnet_special uncert_end[] = {
11550                 {NULL, TS_EXITMENU},
11551             };
11552             int i;
11553
11554             ADD_SPECIALS(uncert_start);
11555             for (i = 0; i < ssh->n_uncert_hostkeys; i++) {
11556                 struct telnet_special uncert[1];
11557                 const struct ssh_signkey *alg =
11558                     hostkey_algs[ssh->uncert_hostkeys[i]].alg;
11559                 uncert[0].name = alg->name;
11560                 uncert[0].code = TS_LOCALSTART + ssh->uncert_hostkeys[i];
11561                 ADD_SPECIALS(uncert);
11562             }
11563             ADD_SPECIALS(uncert_end);
11564         }
11565     } /* else we're not ready yet */
11566
11567     if (nspecials)
11568         ADD_SPECIALS(specials_end);
11569
11570     ssh->specials = specials;
11571
11572     if (nspecials) {
11573         return specials;
11574     } else {
11575         return NULL;
11576     }
11577 #undef ADD_SPECIALS
11578 }
11579
11580 /*
11581  * Send special codes. TS_EOF is useful for `plink', so you
11582  * can send an EOF and collect resulting output (e.g. `plink
11583  * hostname sort').
11584  */
11585 static void ssh_special(void *handle, Telnet_Special code)
11586 {
11587     Ssh ssh = (Ssh) handle;
11588     struct Packet *pktout;
11589
11590     if (code == TS_EOF) {
11591         if (ssh->state != SSH_STATE_SESSION) {
11592             /*
11593              * Buffer the EOF in case we are pre-SESSION, so we can
11594              * send it as soon as we reach SESSION.
11595              */
11596             if (code == TS_EOF)
11597                 ssh->eof_needed = TRUE;
11598             return;
11599         }
11600         if (ssh->version == 1) {
11601             send_packet(ssh, SSH1_CMSG_EOF, PKT_END);
11602         } else if (ssh->mainchan) {
11603             sshfwd_write_eof(ssh->mainchan);
11604             ssh->send_ok = 0;          /* now stop trying to read from stdin */
11605         }
11606         logevent("Sent EOF message");
11607     } else if (code == TS_PING || code == TS_NOP) {
11608         if (ssh->state == SSH_STATE_CLOSED
11609             || ssh->state == SSH_STATE_PREPACKET) return;
11610         if (ssh->version == 1) {
11611             if (!(ssh->remote_bugs & BUG_CHOKES_ON_SSH1_IGNORE))
11612                 send_packet(ssh, SSH1_MSG_IGNORE, PKT_STR, "", PKT_END);
11613         } else {
11614             if (!(ssh->remote_bugs & BUG_CHOKES_ON_SSH2_IGNORE)) {
11615                 pktout = ssh2_pkt_init(SSH2_MSG_IGNORE);
11616                 ssh2_pkt_addstring_start(pktout);
11617                 ssh2_pkt_send_noqueue(ssh, pktout);
11618             }
11619         }
11620     } else if (code == TS_REKEY) {
11621         if (!ssh->kex_in_progress && !ssh->bare_connection &&
11622             ssh->version == 2) {
11623             do_ssh2_transport(ssh, "at user request", -1, NULL);
11624         }
11625     } else if (code >= TS_LOCALSTART) {
11626         ssh->hostkey = hostkey_algs[code - TS_LOCALSTART].alg;
11627         ssh->cross_certifying = TRUE;
11628         if (!ssh->kex_in_progress && !ssh->bare_connection &&
11629             ssh->version == 2) {
11630             do_ssh2_transport(ssh, "cross-certifying new host key", -1, NULL);
11631         }
11632     } else if (code == TS_BRK) {
11633         if (ssh->state == SSH_STATE_CLOSED
11634             || ssh->state == SSH_STATE_PREPACKET) return;
11635         if (ssh->version == 1) {
11636             logevent("Unable to send BREAK signal in SSH-1");
11637         } else if (ssh->mainchan) {
11638             pktout = ssh2_chanreq_init(ssh->mainchan, "break", NULL, NULL);
11639             ssh2_pkt_adduint32(pktout, 0);   /* default break length */
11640             ssh2_pkt_send(ssh, pktout);
11641         }
11642     } else {
11643         /* Is is a POSIX signal? */
11644         const char *signame = NULL;
11645         if (code == TS_SIGABRT) signame = "ABRT";
11646         if (code == TS_SIGALRM) signame = "ALRM";
11647         if (code == TS_SIGFPE)  signame = "FPE";
11648         if (code == TS_SIGHUP)  signame = "HUP";
11649         if (code == TS_SIGILL)  signame = "ILL";
11650         if (code == TS_SIGINT)  signame = "INT";
11651         if (code == TS_SIGKILL) signame = "KILL";
11652         if (code == TS_SIGPIPE) signame = "PIPE";
11653         if (code == TS_SIGQUIT) signame = "QUIT";
11654         if (code == TS_SIGSEGV) signame = "SEGV";
11655         if (code == TS_SIGTERM) signame = "TERM";
11656         if (code == TS_SIGUSR1) signame = "USR1";
11657         if (code == TS_SIGUSR2) signame = "USR2";
11658         /* The SSH-2 protocol does in principle support arbitrary named
11659          * signals, including signame@domain, but we don't support those. */
11660         if (signame) {
11661             /* It's a signal. */
11662             if (ssh->version == 2 && ssh->mainchan) {
11663                 pktout = ssh2_chanreq_init(ssh->mainchan, "signal", NULL, NULL);
11664                 ssh2_pkt_addstring(pktout, signame);
11665                 ssh2_pkt_send(ssh, pktout);
11666                 logeventf(ssh, "Sent signal SIG%s", signame);
11667             }
11668         } else {
11669             /* Never heard of it. Do nothing */
11670         }
11671     }
11672 }
11673
11674 void *new_sock_channel(void *handle, struct PortForwarding *pf)
11675 {
11676     Ssh ssh = (Ssh) handle;
11677     struct ssh_channel *c;
11678     c = snew(struct ssh_channel);
11679
11680     c->ssh = ssh;
11681     ssh_channel_init(c);
11682     c->halfopen = TRUE;
11683     c->type = CHAN_SOCKDATA;/* identify channel type */
11684     c->u.pfd.pf = pf;
11685     return c;
11686 }
11687
11688 unsigned ssh_alloc_sharing_channel(Ssh ssh, void *sharing_ctx)
11689 {
11690     struct ssh_channel *c;
11691     c = snew(struct ssh_channel);
11692
11693     c->ssh = ssh;
11694     ssh_channel_init(c);
11695     c->type = CHAN_SHARING;
11696     c->u.sharing.ctx = sharing_ctx;
11697     return c->localid;
11698 }
11699
11700 void ssh_delete_sharing_channel(Ssh ssh, unsigned localid)
11701 {
11702     struct ssh_channel *c;
11703
11704     c = find234(ssh->channels, &localid, ssh_channelfind);
11705     if (c)
11706         ssh_channel_destroy(c);
11707 }
11708
11709 void ssh_send_packet_from_downstream(Ssh ssh, unsigned id, int type,
11710                                      const void *data, int datalen,
11711                                      const char *additional_log_text)
11712 {
11713     struct Packet *pkt;
11714
11715     pkt = ssh2_pkt_init(type);
11716     pkt->downstream_id = id;
11717     pkt->additional_log_text = additional_log_text;
11718     ssh2_pkt_adddata(pkt, data, datalen);
11719     ssh2_pkt_send(ssh, pkt);
11720 }
11721
11722 /*
11723  * This is called when stdout/stderr (the entity to which
11724  * from_backend sends data) manages to clear some backlog.
11725  */
11726 static void ssh_unthrottle(void *handle, int bufsize)
11727 {
11728     Ssh ssh = (Ssh) handle;
11729
11730     if (ssh->version == 1) {
11731         if (ssh->v1_stdout_throttling && bufsize < SSH1_BUFFER_LIMIT) {
11732             ssh->v1_stdout_throttling = 0;
11733             ssh_throttle_conn(ssh, -1);
11734         }
11735     } else {
11736         if (ssh->mainchan)
11737             ssh_channel_unthrottle(ssh->mainchan, bufsize);
11738     }
11739
11740     /*
11741      * Now process any SSH connection data that was stashed in our
11742      * queue while we were frozen.
11743      */
11744     ssh_process_queued_incoming_data(ssh);
11745 }
11746
11747 void ssh_send_port_open(void *channel, const char *hostname, int port,
11748                         const char *org)
11749 {
11750     struct ssh_channel *c = (struct ssh_channel *)channel;
11751     Ssh ssh = c->ssh;
11752     struct Packet *pktout;
11753
11754     logeventf(ssh, "Opening connection to %s:%d for %s", hostname, port, org);
11755
11756     if (ssh->version == 1) {
11757         send_packet(ssh, SSH1_MSG_PORT_OPEN,
11758                     PKT_INT, c->localid,
11759                     PKT_STR, hostname,
11760                     PKT_INT, port,
11761                     /* PKT_STR, <org:orgport>, */
11762                     PKT_END);
11763     } else {
11764         pktout = ssh2_chanopen_init(c, "direct-tcpip");
11765         {
11766             char *trimmed_host = host_strduptrim(hostname);
11767             ssh2_pkt_addstring(pktout, trimmed_host);
11768             sfree(trimmed_host);
11769         }
11770         ssh2_pkt_adduint32(pktout, port);
11771         /*
11772          * We make up values for the originator data; partly it's
11773          * too much hassle to keep track, and partly I'm not
11774          * convinced the server should be told details like that
11775          * about my local network configuration.
11776          * The "originator IP address" is syntactically a numeric
11777          * IP address, and some servers (e.g., Tectia) get upset
11778          * if it doesn't match this syntax.
11779          */
11780         ssh2_pkt_addstring(pktout, "0.0.0.0");
11781         ssh2_pkt_adduint32(pktout, 0);
11782         ssh2_pkt_send(ssh, pktout);
11783     }
11784 }
11785
11786 static int ssh_connected(void *handle)
11787 {
11788     Ssh ssh = (Ssh) handle;
11789     return ssh->s != NULL;
11790 }
11791
11792 static int ssh_sendok(void *handle)
11793 {
11794     Ssh ssh = (Ssh) handle;
11795     return ssh->send_ok;
11796 }
11797
11798 static int ssh_ldisc(void *handle, int option)
11799 {
11800     Ssh ssh = (Ssh) handle;
11801     if (option == LD_ECHO)
11802         return ssh->echoing;
11803     if (option == LD_EDIT)
11804         return ssh->editing;
11805     return FALSE;
11806 }
11807
11808 static void ssh_provide_ldisc(void *handle, void *ldisc)
11809 {
11810     Ssh ssh = (Ssh) handle;
11811     ssh->ldisc = ldisc;
11812 }
11813
11814 static void ssh_provide_logctx(void *handle, void *logctx)
11815 {
11816     Ssh ssh = (Ssh) handle;
11817     ssh->logctx = logctx;
11818 }
11819
11820 static int ssh_return_exitcode(void *handle)
11821 {
11822     Ssh ssh = (Ssh) handle;
11823     if (ssh->s != NULL)
11824         return -1;
11825     else
11826         return (ssh->exitcode >= 0 ? ssh->exitcode : INT_MAX);
11827 }
11828
11829 /*
11830  * cfg_info for SSH is the protocol running in this session.
11831  * (1 or 2 for the full SSH-1 or SSH-2 protocol; -1 for the bare
11832  * SSH-2 connection protocol, i.e. a downstream; 0 for not-decided-yet.)
11833  */
11834 static int ssh_cfg_info(void *handle)
11835 {
11836     Ssh ssh = (Ssh) handle;
11837     if (ssh->version == 0)
11838         return 0; /* don't know yet */
11839     else if (ssh->bare_connection)
11840         return -1;
11841     else
11842         return ssh->version;
11843 }
11844
11845 /*
11846  * Gross hack: pscp will try to start SFTP but fall back to scp1 if
11847  * that fails. This variable is the means by which scp.c can reach
11848  * into the SSH code and find out which one it got.
11849  */
11850 extern int ssh_fallback_cmd(void *handle)
11851 {
11852     Ssh ssh = (Ssh) handle;
11853     return ssh->fallback_cmd;
11854 }
11855
11856 Backend ssh_backend = {
11857     ssh_init,
11858     ssh_free,
11859     ssh_reconfig,
11860     ssh_send,
11861     ssh_sendbuffer,
11862     ssh_size,
11863     ssh_special,
11864     ssh_get_specials,
11865     ssh_connected,
11866     ssh_return_exitcode,
11867     ssh_sendok,
11868     ssh_ldisc,
11869     ssh_provide_ldisc,
11870     ssh_provide_logctx,
11871     ssh_unthrottle,
11872     ssh_cfg_info,
11873     ssh_test_for_upstream,
11874     "ssh",
11875     PROT_SSH,
11876     22
11877 };