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