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