]> asedeno.scripts.mit.edu Git - PuTTY.git/blob - ssh.c
845b01ccfc5d4215d8ca82fa8329eff4202c29e1
[PuTTY.git] / ssh.c
1 #include <windows.h>
2 #include <stdio.h>
3 #include <stdlib.h>
4 #include <stdarg.h>
5 #include <assert.h>
6
7 #include "putty.h"
8 #include "tree234.h"
9 #include "ssh.h"
10
11 #ifndef FALSE
12 #define FALSE 0
13 #endif
14 #ifndef TRUE
15 #define TRUE 1
16 #endif
17
18 /* uncomment this for packet level debugging */
19 /* #define DUMP_PACKETS */
20
21 #define logevent(s) { logevent(s); \
22                       if ((flags & FLAG_STDERR) && (flags & FLAG_VERBOSE)) \
23                       { fprintf(stderr, "%s\n", s); fflush(stderr); } }
24
25 #define bombout(msg) ( ssh_state = SSH_STATE_CLOSED, \
26                           (s ? sk_close(s), s = NULL : 0), \
27                           connection_fatal msg )
28
29 #define SSH1_MSG_DISCONNECT                       1     /* 0x1 */
30 #define SSH1_SMSG_PUBLIC_KEY                      2     /* 0x2 */
31 #define SSH1_CMSG_SESSION_KEY                     3     /* 0x3 */
32 #define SSH1_CMSG_USER                            4     /* 0x4 */
33 #define SSH1_CMSG_AUTH_RSA                        6     /* 0x6 */
34 #define SSH1_SMSG_AUTH_RSA_CHALLENGE              7     /* 0x7 */
35 #define SSH1_CMSG_AUTH_RSA_RESPONSE               8     /* 0x8 */
36 #define SSH1_CMSG_AUTH_PASSWORD                   9     /* 0x9 */
37 #define SSH1_CMSG_REQUEST_PTY                     10    /* 0xa */
38 #define SSH1_CMSG_WINDOW_SIZE                     11    /* 0xb */
39 #define SSH1_CMSG_EXEC_SHELL                      12    /* 0xc */
40 #define SSH1_CMSG_EXEC_CMD                        13    /* 0xd */
41 #define SSH1_SMSG_SUCCESS                         14    /* 0xe */
42 #define SSH1_SMSG_FAILURE                         15    /* 0xf */
43 #define SSH1_CMSG_STDIN_DATA                      16    /* 0x10 */
44 #define SSH1_SMSG_STDOUT_DATA                     17    /* 0x11 */
45 #define SSH1_SMSG_STDERR_DATA                     18    /* 0x12 */
46 #define SSH1_CMSG_EOF                             19    /* 0x13 */
47 #define SSH1_SMSG_EXIT_STATUS                     20    /* 0x14 */
48 #define SSH1_MSG_CHANNEL_OPEN_CONFIRMATION        21    /* 0x15 */
49 #define SSH1_MSG_CHANNEL_OPEN_FAILURE             22    /* 0x16 */
50 #define SSH1_MSG_CHANNEL_DATA                     23    /* 0x17 */
51 #define SSH1_MSG_CHANNEL_CLOSE                    24    /* 0x18 */
52 #define SSH1_MSG_CHANNEL_CLOSE_CONFIRMATION       25    /* 0x19 */
53 #define SSH1_SMSG_X11_OPEN                        27    /* 0x1b */
54 #define SSH1_CMSG_PORT_FORWARD_REQUEST            28    /* 0x1c */
55 #define SSH1_MSG_PORT_OPEN                        29    /* 0x1d */
56 #define SSH1_CMSG_AGENT_REQUEST_FORWARDING        30    /* 0x1e */
57 #define SSH1_SMSG_AGENT_OPEN                      31    /* 0x1f */
58 #define SSH1_MSG_IGNORE                           32    /* 0x20 */
59 #define SSH1_CMSG_EXIT_CONFIRMATION               33    /* 0x21 */
60 #define SSH1_CMSG_X11_REQUEST_FORWARDING          34    /* 0x22 */
61 #define SSH1_CMSG_AUTH_RHOSTS_RSA                 35    /* 0x23 */
62 #define SSH1_MSG_DEBUG                            36    /* 0x24 */
63 #define SSH1_CMSG_REQUEST_COMPRESSION             37    /* 0x25 */
64 #define SSH1_CMSG_AUTH_TIS                        39    /* 0x27 */
65 #define SSH1_SMSG_AUTH_TIS_CHALLENGE              40    /* 0x28 */
66 #define SSH1_CMSG_AUTH_TIS_RESPONSE               41    /* 0x29 */
67 #define SSH1_CMSG_AUTH_CCARD                      70    /* 0x46 */
68 #define SSH1_SMSG_AUTH_CCARD_CHALLENGE            71    /* 0x47 */
69 #define SSH1_CMSG_AUTH_CCARD_RESPONSE             72    /* 0x48 */
70
71 #define SSH1_AUTH_TIS                             5     /* 0x5 */
72 #define SSH1_AUTH_CCARD                           16    /* 0x10 */
73
74 #define SSH1_PROTOFLAG_SCREEN_NUMBER              1     /* 0x1 */
75 /* Mask for protoflags we will echo back to server if seen */
76 #define SSH1_PROTOFLAGS_SUPPORTED                 0     /* 0x1 */
77
78 #define SSH2_MSG_DISCONNECT                       1     /* 0x1 */
79 #define SSH2_MSG_IGNORE                           2     /* 0x2 */
80 #define SSH2_MSG_UNIMPLEMENTED                    3     /* 0x3 */
81 #define SSH2_MSG_DEBUG                            4     /* 0x4 */
82 #define SSH2_MSG_SERVICE_REQUEST                  5     /* 0x5 */
83 #define SSH2_MSG_SERVICE_ACCEPT                   6     /* 0x6 */
84 #define SSH2_MSG_KEXINIT                          20    /* 0x14 */
85 #define SSH2_MSG_NEWKEYS                          21    /* 0x15 */
86 #define SSH2_MSG_KEXDH_INIT                       30    /* 0x1e */
87 #define SSH2_MSG_KEXDH_REPLY                      31    /* 0x1f */
88 #define SSH2_MSG_KEX_DH_GEX_REQUEST               30    /* 0x1e */
89 #define SSH2_MSG_KEX_DH_GEX_GROUP                 31    /* 0x1f */
90 #define SSH2_MSG_KEX_DH_GEX_INIT                  32    /* 0x20 */
91 #define SSH2_MSG_KEX_DH_GEX_REPLY                 33    /* 0x21 */
92 #define SSH2_MSG_USERAUTH_REQUEST                 50    /* 0x32 */
93 #define SSH2_MSG_USERAUTH_FAILURE                 51    /* 0x33 */
94 #define SSH2_MSG_USERAUTH_SUCCESS                 52    /* 0x34 */
95 #define SSH2_MSG_USERAUTH_BANNER                  53    /* 0x35 */
96 #define SSH2_MSG_USERAUTH_PK_OK                   60    /* 0x3c */
97 #define SSH2_MSG_USERAUTH_PASSWD_CHANGEREQ        60    /* 0x3c */
98 #define SSH2_MSG_USERAUTH_INFO_REQUEST            60    /* 0x3c */
99 #define SSH2_MSG_USERAUTH_INFO_RESPONSE           61    /* 0x3d */
100 #define SSH2_MSG_GLOBAL_REQUEST                   80    /* 0x50 */
101 #define SSH2_MSG_REQUEST_SUCCESS                  81    /* 0x51 */
102 #define SSH2_MSG_REQUEST_FAILURE                  82    /* 0x52 */
103 #define SSH2_MSG_CHANNEL_OPEN                     90    /* 0x5a */
104 #define SSH2_MSG_CHANNEL_OPEN_CONFIRMATION        91    /* 0x5b */
105 #define SSH2_MSG_CHANNEL_OPEN_FAILURE             92    /* 0x5c */
106 #define SSH2_MSG_CHANNEL_WINDOW_ADJUST            93    /* 0x5d */
107 #define SSH2_MSG_CHANNEL_DATA                     94    /* 0x5e */
108 #define SSH2_MSG_CHANNEL_EXTENDED_DATA            95    /* 0x5f */
109 #define SSH2_MSG_CHANNEL_EOF                      96    /* 0x60 */
110 #define SSH2_MSG_CHANNEL_CLOSE                    97    /* 0x61 */
111 #define SSH2_MSG_CHANNEL_REQUEST                  98    /* 0x62 */
112 #define SSH2_MSG_CHANNEL_SUCCESS                  99    /* 0x63 */
113 #define SSH2_MSG_CHANNEL_FAILURE                  100   /* 0x64 */
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
163 #define GET_32BIT(cp) \
164     (((unsigned long)(unsigned char)(cp)[0] << 24) | \
165     ((unsigned long)(unsigned char)(cp)[1] << 16) | \
166     ((unsigned long)(unsigned char)(cp)[2] << 8) | \
167     ((unsigned long)(unsigned char)(cp)[3]))
168
169 #define PUT_32BIT(cp, value) { \
170     (cp)[0] = (unsigned char)((value) >> 24); \
171     (cp)[1] = (unsigned char)((value) >> 16); \
172     (cp)[2] = (unsigned char)((value) >> 8); \
173     (cp)[3] = (unsigned char)(value); }
174
175 enum { PKT_END, PKT_INT, PKT_CHAR, PKT_DATA, PKT_STR, PKT_BIGNUM };
176
177 /* Coroutine mechanics for the sillier bits of the code */
178 #define crBegin1        static int crLine = 0;
179 #define crBegin2        switch(crLine) { case 0:;
180 #define crBegin         crBegin1; crBegin2;
181 #define crFinish(z)     } crLine = 0; return (z)
182 #define crFinishV       } crLine = 0; return
183 #define crReturn(z)     \
184         do {\
185             crLine=__LINE__; return (z); case __LINE__:;\
186         } while (0)
187 #define crReturnV       \
188         do {\
189             crLine=__LINE__; return; case __LINE__:;\
190         } while (0)
191 #define crStop(z)       do{ crLine = 0; return (z); }while(0)
192 #define crStopV         do{ crLine = 0; return; }while(0)
193 #define crWaitUntil(c)  do { crReturn(0); } while (!(c))
194 #define crWaitUntilV(c) do { crReturnV; } while (!(c))
195
196 extern char *x11_init(Socket *, char *, void *);
197 extern void x11_close(Socket);
198 extern int x11_send(Socket, char *, int);
199 extern void x11_invent_auth(char *, int, char *, int);
200 extern void x11_unthrottle(Socket s);
201 extern void x11_override_throttle(Socket s, int enable);
202
203 extern char *pfd_newconnect(Socket * s, char *hostname, int port, void *c);
204 extern char *pfd_addforward(char *desthost, int destport, int port);
205 extern void pfd_close(Socket s);
206 extern int pfd_send(Socket s, char *data, int len);
207 extern void pfd_confirm(Socket s);
208 extern void pfd_unthrottle(Socket s);
209 extern void pfd_override_throttle(Socket s, int enable);
210
211 /*
212  * Buffer management constants. There are several of these for
213  * various different purposes:
214  * 
215  *  - SSH1_BUFFER_LIMIT is the amount of backlog that must build up
216  *    on a local data stream before we throttle the whole SSH
217  *    connection (in SSH1 only). Throttling the whole connection is
218  *    pretty drastic so we set this high in the hope it won't
219  *    happen very often.
220  * 
221  *  - SSH_MAX_BACKLOG is the amount of backlog that must build up
222  *    on the SSH connection itself before we defensively throttle
223  *    _all_ local data streams. This is pretty drastic too (though
224  *    thankfully unlikely in SSH2 since the window mechanism should
225  *    ensure that the server never has any need to throttle its end
226  *    of the connection), so we set this high as well.
227  * 
228  *  - OUR_V2_WINSIZE is the maximum window size we present on SSH2
229  *    channels.
230  */
231
232 #define SSH1_BUFFER_LIMIT 32768
233 #define SSH_MAX_BACKLOG 32768
234 #define OUR_V2_WINSIZE 16384
235
236 /*
237  * Ciphers for SSH2. We miss out single-DES because it isn't
238  * supported; also 3DES and Blowfish are both done differently from
239  * SSH1. (3DES uses outer chaining; Blowfish has the opposite
240  * endianness and different-sized keys.)
241  */
242 const static struct ssh2_ciphers *ciphers[] = {
243     &ssh2_aes,
244     &ssh2_blowfish,
245     &ssh2_3des,
246 };
247
248 const static struct ssh_kex *kex_algs[] = {
249     &ssh_diffiehellman_gex,
250     &ssh_diffiehellman
251 };
252
253 const static struct ssh_signkey *hostkey_algs[] = { &ssh_rsa, &ssh_dss };
254
255 static void nullmac_key(unsigned char *key)
256 {
257 }
258 static void nullmac_generate(unsigned char *blk, int len,
259                              unsigned long seq)
260 {
261 }
262 static int nullmac_verify(unsigned char *blk, int len, unsigned long seq)
263 {
264     return 1;
265 }
266 const static struct ssh_mac ssh_mac_none = {
267     nullmac_key, nullmac_key, nullmac_generate, nullmac_verify, "none", 0
268 };
269 const static struct ssh_mac *macs[] = {
270     &ssh_sha1, &ssh_md5, &ssh_mac_none
271 };
272 const static struct ssh_mac *buggymacs[] = {
273     &ssh_sha1_buggy, &ssh_md5, &ssh_mac_none
274 };
275
276 static void ssh_comp_none_init(void)
277 {
278 }
279 static int ssh_comp_none_block(unsigned char *block, int len,
280                                unsigned char **outblock, int *outlen)
281 {
282     return 0;
283 }
284 static int ssh_comp_none_disable(void)
285 {
286     return 0;
287 }
288 const static struct ssh_compress ssh_comp_none = {
289     "none",
290     ssh_comp_none_init, ssh_comp_none_block,
291     ssh_comp_none_init, ssh_comp_none_block,
292     ssh_comp_none_disable
293 };
294 extern const struct ssh_compress ssh_zlib;
295 const static struct ssh_compress *compressions[] = {
296     &ssh_zlib, &ssh_comp_none
297 };
298
299 enum {                                 /* channel types */
300     CHAN_MAINSESSION,
301     CHAN_X11,
302     CHAN_AGENT,
303     CHAN_SOCKDATA,
304     CHAN_SOCKDATA_DORMANT              /* one the remote hasn't confirmed */
305 };
306
307 /*
308  * 2-3-4 tree storing channels.
309  */
310 struct ssh_channel {
311     unsigned remoteid, localid;
312     int type;
313     int closes;
314     union {
315         struct ssh1_data_channel {
316             int throttling;
317         } v1;
318         struct ssh2_data_channel {
319             bufchain outbuffer;
320             unsigned remwindow, remmaxpkt;
321             unsigned locwindow;
322         } v2;
323     } v;
324     union {
325         struct ssh_agent_channel {
326             unsigned char *message;
327             unsigned char msglen[4];
328             int lensofar, totallen;
329         } a;
330         struct ssh_x11_channel {
331             Socket s;
332         } x11;
333         struct ssh_pfd_channel {
334             Socket s;
335         } pfd;
336     } u;
337 };
338
339 /*
340  * 2-3-4 tree storing remote->local port forwardings. SSH 1 and SSH
341  * 2 use this structure in different ways, reflecting SSH 2's
342  * altogether saner approach to port forwarding.
343  * 
344  * In SSH 1, you arrange a remote forwarding by sending the server
345  * the remote port number, and the local destination host:port.
346  * When a connection comes in, the server sends you back that
347  * host:port pair, and you connect to it. This is a ready-made
348  * security hole if you're not on the ball: a malicious server
349  * could send you back _any_ host:port pair, so if you trustingly
350  * connect to the address it gives you then you've just opened the
351  * entire inside of your corporate network just by connecting
352  * through it to a dodgy SSH server. Hence, we must store a list of
353  * host:port pairs we _are_ trying to forward to, and reject a
354  * connection request from the server if it's not in the list.
355  * 
356  * In SSH 2, each side of the connection minds its own business and
357  * doesn't send unnecessary information to the other. You arrange a
358  * remote forwarding by sending the server just the remote port
359  * number. When a connection comes in, the server tells you which
360  * of its ports was connected to; and _you_ have to remember what
361  * local host:port pair went with that port number.
362  * 
363  * Hence: in SSH 1 this structure stores host:port pairs we intend
364  * to allow connections to, and is indexed by those host:port
365  * pairs. In SSH 2 it stores a mapping from source port to
366  * destination host:port pair, and is indexed by source port.
367  */
368 struct ssh_rportfwd {
369     unsigned sport, dport;
370     char dhost[256];
371 };
372
373 struct Packet {
374     long length;
375     int type;
376     unsigned char *data;
377     unsigned char *body;
378     long savedpos;
379     long maxlen;
380 };
381
382 static SHA_State exhash, exhashbase;
383
384 static Socket s = NULL;
385
386 static unsigned char session_key[32];
387 static int ssh1_compressing;
388 static int ssh1_remote_protoflags;
389 static int ssh1_local_protoflags;
390 static int ssh_agentfwd_enabled;
391 static int ssh_X11_fwd_enabled;
392 static int ssh_remote_bugs;
393 static const struct ssh_cipher *cipher = NULL;
394 static const struct ssh2_cipher *cscipher = NULL;
395 static const struct ssh2_cipher *sccipher = NULL;
396 static const struct ssh_mac *csmac = NULL;
397 static const struct ssh_mac *scmac = NULL;
398 static const struct ssh_compress *cscomp = NULL;
399 static const struct ssh_compress *sccomp = NULL;
400 static const struct ssh_kex *kex = NULL;
401 static const struct ssh_signkey *hostkey = NULL;
402 static unsigned char ssh2_session_id[20];
403 int (*ssh_get_line) (const char *prompt, char *str, int maxlen,
404                      int is_pw) = NULL;
405
406 static char *savedhost;
407 static int savedport;
408 static int ssh_send_ok;
409 static int ssh_echoing, ssh_editing;
410
411 static tree234 *ssh_channels;          /* indexed by local id */
412 static struct ssh_channel *mainchan;   /* primary session channel */
413
414 static tree234 *ssh_rportfwds;
415
416 static enum {
417     SSH_STATE_PREPACKET,
418     SSH_STATE_BEFORE_SIZE,
419     SSH_STATE_INTERMED,
420     SSH_STATE_SESSION,
421     SSH_STATE_CLOSED
422 } ssh_state = SSH_STATE_PREPACKET;
423
424 static int size_needed = FALSE, eof_needed = FALSE;
425
426 static struct Packet pktin = { 0, 0, NULL, NULL, 0 };
427 static struct Packet pktout = { 0, 0, NULL, NULL, 0 };
428 static unsigned char *deferred_send_data = NULL;
429 static int deferred_len = 0, deferred_size = 0;
430
431 /*
432  * Gross hack: pscp will try to start SFTP but fall back to scp1 if
433  * that fails. This variable is the means by which scp.c can reach
434  * into the SSH code and find out which one it got.
435  */
436 int ssh_fallback_cmd = 0;
437
438 static int ssh_version;
439 static int ssh1_throttle_count;
440 static int ssh_overall_bufsize;
441 static int ssh_throttled_all;
442 static int ssh1_stdout_throttling;
443 static void (*ssh_protocol) (unsigned char *in, int inlen, int ispkt);
444 static void ssh1_protocol(unsigned char *in, int inlen, int ispkt);
445 static void ssh2_protocol(unsigned char *in, int inlen, int ispkt);
446 static void ssh_size(void);
447 static void ssh_special(Telnet_Special);
448 static int ssh2_try_send(struct ssh_channel *c);
449 static void ssh2_add_channel_data(struct ssh_channel *c, char *buf,
450                                   int len);
451 static void ssh_throttle_all(int enable, int bufsize);
452 static void ssh2_set_window(struct ssh_channel *c, unsigned newwin);
453 static int (*s_rdpkt) (unsigned char **data, int *datalen);
454 static int ssh_sendbuffer(void);
455
456 static struct rdpkt1_state_tag {
457     long len, pad, biglen, to_read;
458     unsigned long realcrc, gotcrc;
459     unsigned char *p;
460     int i;
461     int chunk;
462 } rdpkt1_state;
463
464 static struct rdpkt2_state_tag {
465     long len, pad, payload, packetlen, maclen;
466     int i;
467     int cipherblk;
468     unsigned long incoming_sequence;
469 } rdpkt2_state;
470
471 static int ssh_channelcmp(void *av, void *bv)
472 {
473     struct ssh_channel *a = (struct ssh_channel *) av;
474     struct ssh_channel *b = (struct ssh_channel *) bv;
475     if (a->localid < b->localid)
476         return -1;
477     if (a->localid > b->localid)
478         return +1;
479     return 0;
480 }
481 static int ssh_channelfind(void *av, void *bv)
482 {
483     unsigned *a = (unsigned *) av;
484     struct ssh_channel *b = (struct ssh_channel *) bv;
485     if (*a < b->localid)
486         return -1;
487     if (*a > b->localid)
488         return +1;
489     return 0;
490 }
491
492 static int ssh_rportcmp_ssh1(void *av, void *bv)
493 {
494     struct ssh_rportfwd *a = (struct ssh_rportfwd *) av;
495     struct ssh_rportfwd *b = (struct ssh_rportfwd *) bv;
496     int i;
497     if ( (i = strcmp(a->dhost, b->dhost)) != 0)
498         return i < 0 ? -1 : +1;
499     if (a->dport > b->dport)
500         return +1;
501     if (a->dport < b->dport)
502         return -1;
503     return 0;
504 }
505
506 static int ssh_rportcmp_ssh2(void *av, void *bv)
507 {
508     struct ssh_rportfwd *a = (struct ssh_rportfwd *) av;
509     struct ssh_rportfwd *b = (struct ssh_rportfwd *) bv;
510
511     if (a->sport > b->sport)
512         return +1;
513     if (a->sport < b->sport)
514         return -1;
515     return 0;
516 }
517
518 static int alloc_channel_id(void)
519 {
520     const unsigned CHANNEL_NUMBER_OFFSET = 256;
521     unsigned low, high, mid;
522     int tsize;
523     struct ssh_channel *c;
524
525     /*
526      * First-fit allocation of channel numbers: always pick the
527      * lowest unused one. To do this, binary-search using the
528      * counted B-tree to find the largest channel ID which is in a
529      * contiguous sequence from the beginning. (Precisely
530      * everything in that sequence must have ID equal to its tree
531      * index plus CHANNEL_NUMBER_OFFSET.)
532      */
533     tsize = count234(ssh_channels);
534
535     low = -1;
536     high = tsize;
537     while (high - low > 1) {
538         mid = (high + low) / 2;
539         c = index234(ssh_channels, mid);
540         if (c->localid == mid + CHANNEL_NUMBER_OFFSET)
541             low = mid;                 /* this one is fine */
542         else
543             high = mid;                /* this one is past it */
544     }
545     /*
546      * Now low points to either -1, or the tree index of the
547      * largest ID in the initial sequence.
548      */
549     {
550         unsigned i = low + 1 + CHANNEL_NUMBER_OFFSET;
551         assert(NULL == find234(ssh_channels, &i, ssh_channelfind));
552     }
553     return low + 1 + CHANNEL_NUMBER_OFFSET;
554 }
555
556 static void c_write(char *buf, int len)
557 {
558     if ((flags & FLAG_STDERR)) {
559         int i;
560         for (i = 0; i < len; i++)
561             if (buf[i] != '\r')
562                 fputc(buf[i], stderr);
563         return;
564     }
565     from_backend(1, buf, len);
566 }
567
568 static void c_write_untrusted(char *buf, int len)
569 {
570     int i;
571     for (i = 0; i < len; i++) {
572         if (buf[i] == '\n')
573             c_write("\r\n", 2);
574         else if ((buf[i] & 0x60) || (buf[i] == '\r'))
575             c_write(buf + i, 1);
576     }
577 }
578
579 static void c_write_str(char *buf)
580 {
581     c_write(buf, strlen(buf));
582 }
583
584 /*
585  * Collect incoming data in the incoming packet buffer.
586  * Decipher and verify the packet when it is completely read.
587  * Drop SSH1_MSG_DEBUG and SSH1_MSG_IGNORE packets.
588  * Update the *data and *datalen variables.
589  * Return the additional nr of bytes needed, or 0 when
590  * a complete packet is available.
591  */
592 static int ssh1_rdpkt(unsigned char **data, int *datalen)
593 {
594     struct rdpkt1_state_tag *st = &rdpkt1_state;
595
596     crBegin;
597
598   next_packet:
599
600     pktin.type = 0;
601     pktin.length = 0;
602
603     for (st->i = st->len = 0; st->i < 4; st->i++) {
604         while ((*datalen) == 0)
605             crReturn(4 - st->i);
606         st->len = (st->len << 8) + **data;
607         (*data)++, (*datalen)--;
608     }
609
610 #ifdef FWHACK
611     if (st->len == 0x52656d6f) {       /* "Remo"te server has closed ... */
612         st->len = 0x300;               /* big enough to carry to end */
613     }
614 #endif
615
616     st->pad = 8 - (st->len % 8);
617     st->biglen = st->len + st->pad;
618     pktin.length = st->len - 5;
619
620     if (pktin.maxlen < st->biglen) {
621         pktin.maxlen = st->biglen;
622         pktin.data = (pktin.data == NULL ? smalloc(st->biglen + APIEXTRA) :
623                       srealloc(pktin.data, st->biglen + APIEXTRA));
624         if (!pktin.data)
625             fatalbox("Out of memory");
626     }
627
628     st->to_read = st->biglen;
629     st->p = pktin.data;
630     while (st->to_read > 0) {
631         st->chunk = st->to_read;
632         while ((*datalen) == 0)
633             crReturn(st->to_read);
634         if (st->chunk > (*datalen))
635             st->chunk = (*datalen);
636         memcpy(st->p, *data, st->chunk);
637         *data += st->chunk;
638         *datalen -= st->chunk;
639         st->p += st->chunk;
640         st->to_read -= st->chunk;
641     }
642
643     if (cipher)
644         cipher->decrypt(pktin.data, st->biglen);
645 #ifdef DUMP_PACKETS
646     debug(("Got packet len=%d pad=%d\n", st->len, st->pad));
647     dmemdump(pktin.data, st->biglen);
648 #endif
649
650     st->realcrc = crc32(pktin.data, st->biglen - 4);
651     st->gotcrc = GET_32BIT(pktin.data + st->biglen - 4);
652     if (st->gotcrc != st->realcrc) {
653         bombout(("Incorrect CRC received on packet"));
654         crReturn(0);
655     }
656
657     pktin.body = pktin.data + st->pad + 1;
658
659     if (ssh1_compressing) {
660         unsigned char *decompblk;
661         int decomplen;
662 #ifdef DUMP_PACKETS
663         debug(("Packet payload pre-decompression:\n"));
664         dmemdump(pktin.body - 1, pktin.length + 1);
665 #endif
666         zlib_decompress_block(pktin.body - 1, pktin.length + 1,
667                               &decompblk, &decomplen);
668
669         if (pktin.maxlen < st->pad + decomplen) {
670             pktin.maxlen = st->pad + decomplen;
671             pktin.data = srealloc(pktin.data, pktin.maxlen + APIEXTRA);
672             pktin.body = pktin.data + st->pad + 1;
673             if (!pktin.data)
674                 fatalbox("Out of memory");
675         }
676
677         memcpy(pktin.body - 1, decompblk, decomplen);
678         sfree(decompblk);
679         pktin.length = decomplen - 1;
680 #ifdef DUMP_PACKETS
681         debug(("Packet payload post-decompression:\n"));
682         dmemdump(pktin.body - 1, pktin.length + 1);
683 #endif
684     }
685
686     if (pktin.type == SSH1_SMSG_STDOUT_DATA ||
687         pktin.type == SSH1_SMSG_STDERR_DATA ||
688         pktin.type == SSH1_MSG_DEBUG ||
689         pktin.type == SSH1_SMSG_AUTH_TIS_CHALLENGE ||
690         pktin.type == SSH1_SMSG_AUTH_CCARD_CHALLENGE) {
691         long strlen = GET_32BIT(pktin.body);
692         if (strlen + 4 != pktin.length) {
693             bombout(("Received data packet with bogus string length"));
694             crReturn(0);
695         }
696     }
697
698     pktin.type = pktin.body[-1];
699
700     if (pktin.type == SSH1_MSG_DEBUG) {
701         /* log debug message */
702         char buf[80];
703         int strlen = GET_32BIT(pktin.body);
704         strcpy(buf, "Remote: ");
705         if (strlen > 70)
706             strlen = 70;
707         memcpy(buf + 8, pktin.body + 4, strlen);
708         buf[8 + strlen] = '\0';
709         logevent(buf);
710         goto next_packet;
711     } else if (pktin.type == SSH1_MSG_IGNORE) {
712         /* do nothing */
713         goto next_packet;
714     }
715
716     if (pktin.type == SSH1_MSG_DISCONNECT) {
717         /* log reason code in disconnect message */
718         char buf[256];
719         unsigned msglen = GET_32BIT(pktin.body);
720         unsigned nowlen;
721         strcpy(buf, "Remote sent disconnect: ");
722         nowlen = strlen(buf);
723         if (msglen > sizeof(buf) - nowlen - 1)
724             msglen = sizeof(buf) - nowlen - 1;
725         memcpy(buf + nowlen, pktin.body + 4, msglen);
726         buf[nowlen + msglen] = '\0';
727         logevent(buf);
728     }
729
730     crFinish(0);
731 }
732
733 static int ssh2_rdpkt(unsigned char **data, int *datalen)
734 {
735     struct rdpkt2_state_tag *st = &rdpkt2_state;
736
737     crBegin;
738
739   next_packet:
740     pktin.type = 0;
741     pktin.length = 0;
742     if (sccipher)
743         st->cipherblk = sccipher->blksize;
744     else
745         st->cipherblk = 8;
746     if (st->cipherblk < 8)
747         st->cipherblk = 8;
748
749     if (pktin.maxlen < st->cipherblk) {
750         pktin.maxlen = st->cipherblk;
751         pktin.data =
752             (pktin.data ==
753              NULL ? smalloc(st->cipherblk +
754                             APIEXTRA) : srealloc(pktin.data,
755                                                  st->cipherblk +
756                                                  APIEXTRA));
757         if (!pktin.data)
758             fatalbox("Out of memory");
759     }
760
761     /*
762      * Acquire and decrypt the first block of the packet. This will
763      * contain the length and padding details.
764      */
765     for (st->i = st->len = 0; st->i < st->cipherblk; st->i++) {
766         while ((*datalen) == 0)
767             crReturn(st->cipherblk - st->i);
768         pktin.data[st->i] = *(*data)++;
769         (*datalen)--;
770     }
771 #ifdef FWHACK
772     if (!memcmp(pktin.data, "Remo", 4)) {       /* "Remo"te server has closed ... */
773         /* FIXME */
774     }
775 #endif
776     if (sccipher)
777         sccipher->decrypt(pktin.data, st->cipherblk);
778
779     /*
780      * Now get the length and padding figures.
781      */
782     st->len = GET_32BIT(pktin.data);
783     st->pad = pktin.data[4];
784
785     /*
786      * This enables us to deduce the payload length.
787      */
788     st->payload = st->len - st->pad - 1;
789
790     pktin.length = st->payload + 5;
791
792     /*
793      * So now we can work out the total packet length.
794      */
795     st->packetlen = st->len + 4;
796     st->maclen = scmac ? scmac->len : 0;
797
798     /*
799      * Adjust memory allocation if packet is too big.
800      */
801     if (pktin.maxlen < st->packetlen + st->maclen) {
802         pktin.maxlen = st->packetlen + st->maclen;
803         pktin.data =
804             (pktin.data ==
805              NULL ? smalloc(pktin.maxlen + APIEXTRA) : srealloc(pktin.data,
806                                                                 pktin.maxlen
807                                                                 +
808                                                                 APIEXTRA));
809         if (!pktin.data)
810             fatalbox("Out of memory");
811     }
812
813     /*
814      * Read and decrypt the remainder of the packet.
815      */
816     for (st->i = st->cipherblk; st->i < st->packetlen + st->maclen;
817          st->i++) {
818         while ((*datalen) == 0)
819             crReturn(st->packetlen + st->maclen - st->i);
820         pktin.data[st->i] = *(*data)++;
821         (*datalen)--;
822     }
823     /* Decrypt everything _except_ the MAC. */
824     if (sccipher)
825         sccipher->decrypt(pktin.data + st->cipherblk,
826                           st->packetlen - st->cipherblk);
827
828 #ifdef DUMP_PACKETS
829     debug(("Got packet len=%d pad=%d\n", st->len, st->pad));
830     dmemdump(pktin.data, st->packetlen);
831 #endif
832
833     /*
834      * Check the MAC.
835      */
836     if (scmac
837         && !scmac->verify(pktin.data, st->len + 4,
838                           st->incoming_sequence)) {
839         bombout(("Incorrect MAC received on packet"));
840         crReturn(0);
841     }
842     st->incoming_sequence++;           /* whether or not we MACed */
843
844     /*
845      * Decompress packet payload.
846      */
847     {
848         unsigned char *newpayload;
849         int newlen;
850         if (sccomp && sccomp->decompress(pktin.data + 5, pktin.length - 5,
851                                          &newpayload, &newlen)) {
852             if (pktin.maxlen < newlen + 5) {
853                 pktin.maxlen = newlen + 5;
854                 pktin.data =
855                     (pktin.data ==
856                      NULL ? smalloc(pktin.maxlen +
857                                     APIEXTRA) : srealloc(pktin.data,
858                                                          pktin.maxlen +
859                                                          APIEXTRA));
860                 if (!pktin.data)
861                     fatalbox("Out of memory");
862             }
863             pktin.length = 5 + newlen;
864             memcpy(pktin.data + 5, newpayload, newlen);
865 #ifdef DUMP_PACKETS
866             debug(("Post-decompression payload:\n"));
867             dmemdump(pktin.data + 5, newlen);
868 #endif
869
870             sfree(newpayload);
871         }
872     }
873
874     pktin.savedpos = 6;
875     pktin.type = pktin.data[5];
876
877     if (pktin.type == SSH2_MSG_IGNORE || pktin.type == SSH2_MSG_DEBUG)
878         goto next_packet;              /* FIXME: print DEBUG message */
879
880     if (pktin.type == SSH2_MSG_DISCONNECT) {
881         /* log reason code in disconnect message */
882         char buf[256];
883         int reason = GET_32BIT(pktin.data + 6);
884         unsigned msglen = GET_32BIT(pktin.data + 10);
885         unsigned nowlen;
886         if (reason > 0 && reason < lenof(ssh2_disconnect_reasons)) {
887             sprintf(buf, "Received disconnect message (%s)",
888                     ssh2_disconnect_reasons[reason]);
889         } else {
890             sprintf(buf, "Received disconnect message (unknown type %d)",
891                     reason);
892         }
893         logevent(buf);
894         strcpy(buf, "Disconnection message text: ");
895         nowlen = strlen(buf);
896         if (msglen > sizeof(buf) - nowlen - 1)
897             msglen = sizeof(buf) - nowlen - 1;
898         memcpy(buf + nowlen, pktin.data + 14, msglen);
899         buf[nowlen + msglen] = '\0';
900         logevent(buf);
901     }
902
903     crFinish(0);
904 }
905
906 static void ssh1_pktout_size(int len)
907 {
908     int pad, biglen;
909
910     len += 5;                          /* type and CRC */
911     pad = 8 - (len % 8);
912     biglen = len + pad;
913
914     pktout.length = len - 5;
915     if (pktout.maxlen < biglen) {
916         pktout.maxlen = biglen;
917 #ifdef MSCRYPTOAPI
918         /* Allocate enough buffer space for extra block
919          * for MS CryptEncrypt() */
920         pktout.data = (pktout.data == NULL ? smalloc(biglen + 12) :
921                        srealloc(pktout.data, biglen + 12));
922 #else
923         pktout.data = (pktout.data == NULL ? smalloc(biglen + 4) :
924                        srealloc(pktout.data, biglen + 4));
925 #endif
926         if (!pktout.data)
927             fatalbox("Out of memory");
928     }
929     pktout.body = pktout.data + 4 + pad + 1;
930 }
931
932 static void s_wrpkt_start(int type, int len)
933 {
934     ssh1_pktout_size(len);
935     pktout.type = type;
936 }
937
938 static int s_wrpkt_prepare(void)
939 {
940     int pad, len, biglen, i;
941     unsigned long crc;
942
943     pktout.body[-1] = pktout.type;
944
945 #ifdef DUMP_PACKETS
946     debug(("Packet payload pre-compression:\n"));
947     dmemdump(pktout.body - 1, pktout.length + 1);
948 #endif
949
950     if (ssh1_compressing) {
951         unsigned char *compblk;
952         int complen;
953         zlib_compress_block(pktout.body - 1, pktout.length + 1,
954                             &compblk, &complen);
955         ssh1_pktout_size(complen - 1);
956         memcpy(pktout.body - 1, compblk, complen);
957         sfree(compblk);
958 #ifdef DUMP_PACKETS
959         debug(("Packet payload post-compression:\n"));
960         dmemdump(pktout.body - 1, pktout.length + 1);
961 #endif
962     }
963
964     len = pktout.length + 5;           /* type and CRC */
965     pad = 8 - (len % 8);
966     biglen = len + pad;
967
968     for (i = 0; i < pad; i++)
969         pktout.data[i + 4] = random_byte();
970     crc = crc32(pktout.data + 4, biglen - 4);
971     PUT_32BIT(pktout.data + biglen, crc);
972     PUT_32BIT(pktout.data, len);
973
974 #ifdef DUMP_PACKETS
975     debug(("Sending packet len=%d\n", biglen + 4));
976     dmemdump(pktout.data, biglen + 4);
977 #endif
978     if (cipher)
979         cipher->encrypt(pktout.data + 4, biglen);
980
981     return biglen + 4;
982 }
983
984 static void s_wrpkt(void)
985 {
986     int len, backlog;
987     len = s_wrpkt_prepare();
988     backlog = sk_write(s, pktout.data, len);
989     if (backlog > SSH_MAX_BACKLOG)
990         ssh_throttle_all(1, backlog);
991 }
992
993 static void s_wrpkt_defer(void)
994 {
995     int len;
996     len = s_wrpkt_prepare();
997     if (deferred_len + len > deferred_size) {
998         deferred_size = deferred_len + len + 128;
999         deferred_send_data = srealloc(deferred_send_data, deferred_size);
1000     }
1001     memcpy(deferred_send_data + deferred_len, pktout.data, len);
1002     deferred_len += len;
1003 }
1004
1005 /*
1006  * Construct a packet with the specified contents.
1007  */
1008 static void construct_packet(int pkttype, va_list ap1, va_list ap2)
1009 {
1010     unsigned char *p, *argp, argchar;
1011     unsigned long argint;
1012     int pktlen, argtype, arglen;
1013     Bignum bn;
1014
1015     pktlen = 0;
1016     while ((argtype = va_arg(ap1, int)) != PKT_END) {
1017         switch (argtype) {
1018           case PKT_INT:
1019             (void) va_arg(ap1, int);
1020             pktlen += 4;
1021             break;
1022           case PKT_CHAR:
1023             (void) va_arg(ap1, char);
1024             pktlen++;
1025             break;
1026           case PKT_DATA:
1027             (void) va_arg(ap1, unsigned char *);
1028             arglen = va_arg(ap1, int);
1029             pktlen += arglen;
1030             break;
1031           case PKT_STR:
1032             argp = va_arg(ap1, unsigned char *);
1033             arglen = strlen(argp);
1034             pktlen += 4 + arglen;
1035             break;
1036           case PKT_BIGNUM:
1037             bn = va_arg(ap1, Bignum);
1038             pktlen += ssh1_bignum_length(bn);
1039             break;
1040           default:
1041             assert(0);
1042         }
1043     }
1044
1045     s_wrpkt_start(pkttype, pktlen);
1046     p = pktout.body;
1047
1048     while ((argtype = va_arg(ap2, int)) != PKT_END) {
1049         switch (argtype) {
1050           case PKT_INT:
1051             argint = va_arg(ap2, int);
1052             PUT_32BIT(p, argint);
1053             p += 4;
1054             break;
1055           case PKT_CHAR:
1056             argchar = va_arg(ap2, unsigned char);
1057             *p = argchar;
1058             p++;
1059             break;
1060           case PKT_DATA:
1061             argp = va_arg(ap2, unsigned char *);
1062             arglen = va_arg(ap2, int);
1063             memcpy(p, argp, arglen);
1064             p += arglen;
1065             break;
1066           case PKT_STR:
1067             argp = va_arg(ap2, unsigned char *);
1068             arglen = strlen(argp);
1069             PUT_32BIT(p, arglen);
1070             memcpy(p + 4, argp, arglen);
1071             p += 4 + arglen;
1072             break;
1073           case PKT_BIGNUM:
1074             bn = va_arg(ap2, Bignum);
1075             p += ssh1_write_bignum(p, bn);
1076             break;
1077         }
1078     }
1079 }
1080
1081 static void send_packet(int pkttype, ...)
1082 {
1083     va_list ap1, ap2;
1084     va_start(ap1, pkttype);
1085     va_start(ap2, pkttype);
1086     construct_packet(pkttype, ap1, ap2);
1087     s_wrpkt();
1088 }
1089
1090 static void defer_packet(int pkttype, ...)
1091 {
1092     va_list ap1, ap2;
1093     va_start(ap1, pkttype);
1094     va_start(ap2, pkttype);
1095     construct_packet(pkttype, ap1, ap2);
1096     s_wrpkt_defer();
1097 }
1098
1099 static int ssh_versioncmp(char *a, char *b)
1100 {
1101     char *ae, *be;
1102     unsigned long av, bv;
1103
1104     av = strtoul(a, &ae, 10);
1105     bv = strtoul(b, &be, 10);
1106     if (av != bv)
1107         return (av < bv ? -1 : +1);
1108     if (*ae == '.')
1109         ae++;
1110     if (*be == '.')
1111         be++;
1112     av = strtoul(ae, &ae, 10);
1113     bv = strtoul(be, &be, 10);
1114     if (av != bv)
1115         return (av < bv ? -1 : +1);
1116     return 0;
1117 }
1118
1119
1120 /*
1121  * Utility routines for putting an SSH-protocol `string' and
1122  * `uint32' into a SHA state.
1123  */
1124 #include <stdio.h>
1125 static void sha_string(SHA_State * s, void *str, int len)
1126 {
1127     unsigned char lenblk[4];
1128     PUT_32BIT(lenblk, len);
1129     SHA_Bytes(s, lenblk, 4);
1130     SHA_Bytes(s, str, len);
1131 }
1132
1133 static void sha_uint32(SHA_State * s, unsigned i)
1134 {
1135     unsigned char intblk[4];
1136     PUT_32BIT(intblk, i);
1137     SHA_Bytes(s, intblk, 4);
1138 }
1139
1140 /*
1141  * SSH2 packet construction functions.
1142  */
1143 static void ssh2_pkt_ensure(int length)
1144 {
1145     if (pktout.maxlen < length) {
1146         pktout.maxlen = length + 256;
1147         pktout.data =
1148             (pktout.data ==
1149              NULL ? smalloc(pktout.maxlen +
1150                             APIEXTRA) : srealloc(pktout.data,
1151                                                  pktout.maxlen +
1152                                                  APIEXTRA));
1153         if (!pktout.data)
1154             fatalbox("Out of memory");
1155     }
1156 }
1157 static void ssh2_pkt_adddata(void *data, int len)
1158 {
1159     pktout.length += len;
1160     ssh2_pkt_ensure(pktout.length);
1161     memcpy(pktout.data + pktout.length - len, data, len);
1162 }
1163 static void ssh2_pkt_addbyte(unsigned char byte)
1164 {
1165     ssh2_pkt_adddata(&byte, 1);
1166 }
1167 static void ssh2_pkt_init(int pkt_type)
1168 {
1169     pktout.length = 5;
1170     ssh2_pkt_addbyte((unsigned char) pkt_type);
1171 }
1172 static void ssh2_pkt_addbool(unsigned char value)
1173 {
1174     ssh2_pkt_adddata(&value, 1);
1175 }
1176 static void ssh2_pkt_adduint32(unsigned long value)
1177 {
1178     unsigned char x[4];
1179     PUT_32BIT(x, value);
1180     ssh2_pkt_adddata(x, 4);
1181 }
1182 static void ssh2_pkt_addstring_start(void)
1183 {
1184     ssh2_pkt_adduint32(0);
1185     pktout.savedpos = pktout.length;
1186 }
1187 static void ssh2_pkt_addstring_str(char *data)
1188 {
1189     ssh2_pkt_adddata(data, strlen(data));
1190     PUT_32BIT(pktout.data + pktout.savedpos - 4,
1191               pktout.length - pktout.savedpos);
1192 }
1193 static void ssh2_pkt_addstring_data(char *data, int len)
1194 {
1195     ssh2_pkt_adddata(data, len);
1196     PUT_32BIT(pktout.data + pktout.savedpos - 4,
1197               pktout.length - pktout.savedpos);
1198 }
1199 static void ssh2_pkt_addstring(char *data)
1200 {
1201     ssh2_pkt_addstring_start();
1202     ssh2_pkt_addstring_str(data);
1203 }
1204 static char *ssh2_mpint_fmt(Bignum b, int *len)
1205 {
1206     unsigned char *p;
1207     int i, n = (bignum_bitcount(b) + 7) / 8;
1208     p = smalloc(n + 1);
1209     if (!p)
1210         fatalbox("out of memory");
1211     p[0] = 0;
1212     for (i = 1; i <= n; i++)
1213         p[i] = bignum_byte(b, n - i);
1214     i = 0;
1215     while (i <= n && p[i] == 0 && (p[i + 1] & 0x80) == 0)
1216         i++;
1217     memmove(p, p + i, n + 1 - i);
1218     *len = n + 1 - i;
1219     return p;
1220 }
1221 static void ssh2_pkt_addmp(Bignum b)
1222 {
1223     unsigned char *p;
1224     int len;
1225     p = ssh2_mpint_fmt(b, &len);
1226     ssh2_pkt_addstring_start();
1227     ssh2_pkt_addstring_data(p, len);
1228     sfree(p);
1229 }
1230
1231 /*
1232  * Construct an SSH2 final-form packet: compress it, encrypt it,
1233  * put the MAC on it. Final packet, ready to be sent, is stored in
1234  * pktout.data. Total length is returned.
1235  */
1236 static int ssh2_pkt_construct(void)
1237 {
1238     int cipherblk, maclen, padding, i;
1239     static unsigned long outgoing_sequence = 0;
1240
1241     /*
1242      * Compress packet payload.
1243      */
1244 #ifdef DUMP_PACKETS
1245     debug(("Pre-compression payload:\n"));
1246     dmemdump(pktout.data + 5, pktout.length - 5);
1247 #endif
1248     {
1249         unsigned char *newpayload;
1250         int newlen;
1251         if (cscomp && cscomp->compress(pktout.data + 5, pktout.length - 5,
1252                                        &newpayload, &newlen)) {
1253             pktout.length = 5;
1254             ssh2_pkt_adddata(newpayload, newlen);
1255             sfree(newpayload);
1256         }
1257     }
1258
1259     /*
1260      * Add padding. At least four bytes, and must also bring total
1261      * length (minus MAC) up to a multiple of the block size.
1262      */
1263     cipherblk = cscipher ? cscipher->blksize : 8;       /* block size */
1264     cipherblk = cipherblk < 8 ? 8 : cipherblk;  /* or 8 if blksize < 8 */
1265     padding = 4;
1266     padding +=
1267         (cipherblk - (pktout.length + padding) % cipherblk) % cipherblk;
1268     maclen = csmac ? csmac->len : 0;
1269     ssh2_pkt_ensure(pktout.length + padding + maclen);
1270     pktout.data[4] = padding;
1271     for (i = 0; i < padding; i++)
1272         pktout.data[pktout.length + i] = random_byte();
1273     PUT_32BIT(pktout.data, pktout.length + padding - 4);
1274     if (csmac)
1275         csmac->generate(pktout.data, pktout.length + padding,
1276                         outgoing_sequence);
1277     outgoing_sequence++;               /* whether or not we MACed */
1278
1279 #ifdef DUMP_PACKETS
1280     debug(("Sending packet len=%d\n", pktout.length + padding));
1281     dmemdump(pktout.data, pktout.length + padding);
1282 #endif
1283
1284     if (cscipher)
1285         cscipher->encrypt(pktout.data, pktout.length + padding);
1286
1287     /* Ready-to-send packet starts at pktout.data. We return length. */
1288     return pktout.length + padding + maclen;
1289 }
1290
1291 /*
1292  * Construct and send an SSH2 packet immediately.
1293  */
1294 static void ssh2_pkt_send(void)
1295 {
1296     int len;
1297     int backlog;
1298     len = ssh2_pkt_construct();
1299     backlog = sk_write(s, pktout.data, len);
1300     if (backlog > SSH_MAX_BACKLOG)
1301         ssh_throttle_all(1, backlog);
1302 }
1303
1304 /*
1305  * Construct an SSH2 packet and add it to a deferred data block.
1306  * Useful for sending multiple packets in a single sk_write() call,
1307  * to prevent a traffic-analysing listener from being able to work
1308  * out the length of any particular packet (such as the password
1309  * packet).
1310  * 
1311  * Note that because SSH2 sequence-numbers its packets, this can
1312  * NOT be used as an m4-style `defer' allowing packets to be
1313  * constructed in one order and sent in another.
1314  */
1315 static void ssh2_pkt_defer(void)
1316 {
1317     int len = ssh2_pkt_construct();
1318     if (deferred_len + len > deferred_size) {
1319         deferred_size = deferred_len + len + 128;
1320         deferred_send_data = srealloc(deferred_send_data, deferred_size);
1321     }
1322     memcpy(deferred_send_data + deferred_len, pktout.data, len);
1323     deferred_len += len;
1324 }
1325
1326 /*
1327  * Send the whole deferred data block constructed by
1328  * ssh2_pkt_defer() or SSH1's defer_packet().
1329  */
1330 static void ssh_pkt_defersend(void)
1331 {
1332     int backlog;
1333     backlog = sk_write(s, deferred_send_data, deferred_len);
1334     deferred_len = deferred_size = 0;
1335     sfree(deferred_send_data);
1336     deferred_send_data = NULL;
1337     if (backlog > SSH_MAX_BACKLOG)
1338         ssh_throttle_all(1, backlog);
1339 }
1340
1341 #if 0
1342 void bndebug(char *string, Bignum b)
1343 {
1344     unsigned char *p;
1345     int i, len;
1346     p = ssh2_mpint_fmt(b, &len);
1347     debug(("%s", string));
1348     for (i = 0; i < len; i++)
1349         debug((" %02x", p[i]));
1350     debug(("\n"));
1351     sfree(p);
1352 }
1353 #endif
1354
1355 static void sha_mpint(SHA_State * s, Bignum b)
1356 {
1357     unsigned char *p;
1358     int len;
1359     p = ssh2_mpint_fmt(b, &len);
1360     sha_string(s, p, len);
1361     sfree(p);
1362 }
1363
1364 /*
1365  * SSH2 packet decode functions.
1366  */
1367 static unsigned long ssh2_pkt_getuint32(void)
1368 {
1369     unsigned long value;
1370     if (pktin.length - pktin.savedpos < 4)
1371         return 0;                      /* arrgh, no way to decline (FIXME?) */
1372     value = GET_32BIT(pktin.data + pktin.savedpos);
1373     pktin.savedpos += 4;
1374     return value;
1375 }
1376 static int ssh2_pkt_getbool(void)
1377 {
1378     unsigned long value;
1379     if (pktin.length - pktin.savedpos < 1)
1380         return 0;                      /* arrgh, no way to decline (FIXME?) */
1381     value = pktin.data[pktin.savedpos] != 0;
1382     pktin.savedpos++;
1383     return value;
1384 }
1385 static void ssh2_pkt_getstring(char **p, int *length)
1386 {
1387     *p = NULL;
1388     if (pktin.length - pktin.savedpos < 4)
1389         return;
1390     *length = GET_32BIT(pktin.data + pktin.savedpos);
1391     pktin.savedpos += 4;
1392     if (pktin.length - pktin.savedpos < *length)
1393         return;
1394     *p = pktin.data + pktin.savedpos;
1395     pktin.savedpos += *length;
1396 }
1397 static Bignum ssh2_pkt_getmp(void)
1398 {
1399     char *p;
1400     int length;
1401     Bignum b;
1402
1403     ssh2_pkt_getstring(&p, &length);
1404     if (!p)
1405         return NULL;
1406     if (p[0] & 0x80) {
1407         bombout(("internal error: Can't handle negative mpints"));
1408         return NULL;
1409     }
1410     b = bignum_from_bytes(p, length);
1411     return b;
1412 }
1413
1414 /*
1415  * Examine the remote side's version string and compare it against
1416  * a list of known buggy implementations.
1417  */
1418 static void ssh_detect_bugs(char *vstring)
1419 {
1420     char *imp;                         /* pointer to implementation part */
1421     imp = vstring;
1422     imp += strcspn(imp, "-");
1423     if (*imp)
1424         imp++;
1425     imp += strcspn(imp, "-");
1426     if (*imp)
1427         imp++;
1428
1429     ssh_remote_bugs = 0;
1430
1431     if (!strcmp(imp, "1.2.18") || !strcmp(imp, "1.2.19") ||
1432         !strcmp(imp, "1.2.20") || !strcmp(imp, "1.2.21") ||
1433         !strcmp(imp, "1.2.22")) {
1434         /*
1435          * These versions don't support SSH1_MSG_IGNORE, so we have
1436          * to use a different defence against password length
1437          * sniffing.
1438          */
1439         ssh_remote_bugs |= BUG_CHOKES_ON_SSH1_IGNORE;
1440         logevent("We believe remote version has SSH1 ignore bug");
1441     }
1442
1443     if (!strncmp(imp, "2.1.0", 5) || !strncmp(imp, "2.0.", 4) ||
1444         !strncmp(imp, "2.2.0", 5) || !strncmp(imp, "2.3.0", 5) ||
1445         !strncmp(imp, "2.1 ", 4)) {
1446         /*
1447          * These versions have the HMAC bug.
1448          */
1449         ssh_remote_bugs |= BUG_SSH2_HMAC;
1450         logevent("We believe remote version has SSH2 HMAC bug");
1451     }
1452 }
1453
1454 static int do_ssh_init(unsigned char c)
1455 {
1456     static int vslen;
1457     static char version[10];
1458     static char *vstring;
1459     static int vstrsize;
1460     static char *vlog;
1461     static int i;
1462
1463     crBegin;
1464
1465     /* Search for the string "SSH-" in the input. */
1466     i = 0;
1467     while (1) {
1468         static const int transS[] = { 1, 2, 2, 1 };
1469         static const int transH[] = { 0, 0, 3, 0 };
1470         static const int transminus[] = { 0, 0, 0, -1 };
1471         if (c == 'S')
1472             i = transS[i];
1473         else if (c == 'H')
1474             i = transH[i];
1475         else if (c == '-')
1476             i = transminus[i];
1477         else
1478             i = 0;
1479         if (i < 0)
1480             break;
1481         crReturn(1);                   /* get another character */
1482     }
1483
1484     vstring = smalloc(16);
1485     vstrsize = 16;
1486     strcpy(vstring, "SSH-");
1487     vslen = 4;
1488     i = 0;
1489     while (1) {
1490         crReturn(1);                   /* get another char */
1491         if (vslen >= vstrsize - 1) {
1492             vstrsize += 16;
1493             vstring = srealloc(vstring, vstrsize);
1494         }
1495         vstring[vslen++] = c;
1496         if (i >= 0) {
1497             if (c == '-') {
1498                 version[i] = '\0';
1499                 i = -1;
1500             } else if (i < sizeof(version) - 1)
1501                 version[i++] = c;
1502         } else if (c == '\n')
1503             break;
1504     }
1505
1506     ssh_agentfwd_enabled = FALSE;
1507     rdpkt2_state.incoming_sequence = 0;
1508
1509     vstring[vslen] = 0;
1510     vlog = smalloc(20 + vslen);
1511     sprintf(vlog, "Server version: %s", vstring);
1512     ssh_detect_bugs(vstring);
1513     vlog[strcspn(vlog, "\r\n")] = '\0';
1514     logevent(vlog);
1515     sfree(vlog);
1516
1517     /*
1518      * Server version "1.99" means we can choose whether we use v1
1519      * or v2 protocol. Choice is based on cfg.sshprot.
1520      */
1521     if (ssh_versioncmp(version, cfg.sshprot == 1 ? "2.0" : "1.99") >= 0) {
1522         /*
1523          * This is a v2 server. Begin v2 protocol.
1524          */
1525         char verstring[80], vlog[100];
1526         sprintf(verstring, "SSH-2.0-%s", sshver);
1527         SHA_Init(&exhashbase);
1528         /*
1529          * Hash our version string and their version string.
1530          */
1531         sha_string(&exhashbase, verstring, strlen(verstring));
1532         sha_string(&exhashbase, vstring, strcspn(vstring, "\r\n"));
1533         sprintf(vlog, "We claim version: %s", verstring);
1534         logevent(vlog);
1535         strcat(verstring, "\n");
1536         logevent("Using SSH protocol version 2");
1537         sk_write(s, verstring, strlen(verstring));
1538         ssh_protocol = ssh2_protocol;
1539         ssh_version = 2;
1540         s_rdpkt = ssh2_rdpkt;
1541     } else {
1542         /*
1543          * This is a v1 server. Begin v1 protocol.
1544          */
1545         char verstring[80], vlog[100];
1546         sprintf(verstring, "SSH-%s-%s",
1547                 (ssh_versioncmp(version, "1.5") <= 0 ? version : "1.5"),
1548                 sshver);
1549         sprintf(vlog, "We claim version: %s", verstring);
1550         logevent(vlog);
1551         strcat(verstring, "\n");
1552         logevent("Using SSH protocol version 1");
1553         sk_write(s, verstring, strlen(verstring));
1554         ssh_protocol = ssh1_protocol;
1555         ssh_version = 1;
1556         s_rdpkt = ssh1_rdpkt;
1557     }
1558     ssh_state = SSH_STATE_BEFORE_SIZE;
1559
1560     sfree(vstring);
1561
1562     crFinish(0);
1563 }
1564
1565 static void ssh_gotdata(unsigned char *data, int datalen)
1566 {
1567     crBegin;
1568
1569     /*
1570      * To begin with, feed the characters one by one to the
1571      * protocol initialisation / selection function do_ssh_init().
1572      * When that returns 0, we're done with the initial greeting
1573      * exchange and can move on to packet discipline.
1574      */
1575     while (1) {
1576         int ret;
1577         if (datalen == 0)
1578             crReturnV;                 /* more data please */
1579         ret = do_ssh_init(*data);
1580         data++;
1581         datalen--;
1582         if (ret == 0)
1583             break;
1584     }
1585
1586     /*
1587      * We emerge from that loop when the initial negotiation is
1588      * over and we have selected an s_rdpkt function. Now pass
1589      * everything to s_rdpkt, and then pass the resulting packets
1590      * to the proper protocol handler.
1591      */
1592     if (datalen == 0)
1593         crReturnV;
1594     while (1) {
1595         while (datalen > 0) {
1596             if (s_rdpkt(&data, &datalen) == 0) {
1597                 ssh_protocol(NULL, 0, 1);
1598                 if (ssh_state == SSH_STATE_CLOSED) {
1599                     return;
1600                 }
1601             }
1602         }
1603         crReturnV;
1604     }
1605     crFinishV;
1606 }
1607
1608 static int ssh_closing(Plug plug, char *error_msg, int error_code,
1609                        int calling_back)
1610 {
1611     ssh_state = SSH_STATE_CLOSED;
1612     if (s) {
1613         sk_close(s);
1614         s = NULL;
1615     }
1616     if (error_msg) {
1617         /* A socket error has occurred. */
1618         connection_fatal(error_msg);
1619     } else {
1620         /* Otherwise, the remote side closed the connection normally. */
1621     }
1622     return 0;
1623 }
1624
1625 static int ssh_receive(Plug plug, int urgent, char *data, int len)
1626 {
1627     ssh_gotdata(data, len);
1628     if (ssh_state == SSH_STATE_CLOSED) {
1629         if (s) {
1630             sk_close(s);
1631             s = NULL;
1632         }
1633         return 0;
1634     }
1635     return 1;
1636 }
1637
1638 static void ssh_sent(Plug plug, int bufsize)
1639 {
1640     /*
1641      * If the send backlog on the SSH socket itself clears, we
1642      * should unthrottle the whole world if it was throttled.
1643      */
1644     if (bufsize < SSH_MAX_BACKLOG)
1645         ssh_throttle_all(0, bufsize);
1646 }
1647
1648 /*
1649  * Connect to specified host and port.
1650  * Returns an error message, or NULL on success.
1651  * Also places the canonical host name into `realhost'. It must be
1652  * freed by the caller.
1653  */
1654 static char *connect_to_host(char *host, int port, char **realhost)
1655 {
1656     static struct plug_function_table fn_table = {
1657         ssh_closing,
1658         ssh_receive,
1659         ssh_sent,
1660         NULL
1661     }, *fn_table_ptr = &fn_table;
1662
1663     SockAddr addr;
1664     char *err;
1665 #ifdef FWHACK
1666     char *FWhost;
1667     int FWport;
1668 #endif
1669
1670     savedhost = smalloc(1 + strlen(host));
1671     if (!savedhost)
1672         fatalbox("Out of memory");
1673     strcpy(savedhost, host);
1674
1675     if (port < 0)
1676         port = 22;                     /* default ssh port */
1677     savedport = port;
1678
1679 #ifdef FWHACK
1680     FWhost = host;
1681     FWport = port;
1682     host = FWSTR;
1683     port = 23;
1684 #endif
1685
1686     /*
1687      * Try to find host.
1688      */
1689     addr = sk_namelookup(host, realhost);
1690     if ((err = sk_addr_error(addr)))
1691         return err;
1692
1693 #ifdef FWHACK
1694     *realhost = strdup(FWhost);
1695 #endif
1696
1697     /*
1698      * Open socket.
1699      */
1700     s = sk_new(addr, port, 0, 1, &fn_table_ptr);
1701     if ((err = sk_socket_error(s)))
1702         return err;
1703
1704 #ifdef FWHACK
1705     sk_write(s, "connect ", 8);
1706     sk_write(s, FWhost, strlen(FWhost));
1707     {
1708         char buf[20];
1709         sprintf(buf, " %d\n", FWport);
1710         sk_write(s, buf, strlen(buf));
1711     }
1712 #endif
1713
1714     return NULL;
1715 }
1716
1717 /*
1718  * Throttle or unthrottle the SSH connection.
1719  */
1720 static void ssh1_throttle(int adjust)
1721 {
1722     int old_count = ssh1_throttle_count;
1723     ssh1_throttle_count += adjust;
1724     assert(ssh1_throttle_count >= 0);
1725     if (ssh1_throttle_count && !old_count) {
1726         sk_set_frozen(s, 1);
1727     } else if (!ssh1_throttle_count && old_count) {
1728         sk_set_frozen(s, 0);
1729     }
1730 }
1731
1732 /*
1733  * Throttle or unthrottle _all_ local data streams (for when sends
1734  * on the SSH connection itself back up).
1735  */
1736 static void ssh_throttle_all(int enable, int bufsize)
1737 {
1738     int i;
1739     struct ssh_channel *c;
1740
1741     if (enable == ssh_throttled_all)
1742         return;
1743     ssh_throttled_all = enable;
1744     ssh_overall_bufsize = bufsize;
1745     if (!ssh_channels)
1746         return;
1747     for (i = 0; NULL != (c = index234(ssh_channels, i)); i++) {
1748         switch (c->type) {
1749           case CHAN_MAINSESSION:
1750             /*
1751              * This is treated separately, outside the switch.
1752              */
1753             break;
1754           case CHAN_X11:
1755             x11_override_throttle(c->u.x11.s, enable);
1756             break;
1757           case CHAN_AGENT:
1758             /* Agent channels require no buffer management. */
1759             break;
1760           case CHAN_SOCKDATA:
1761             pfd_override_throttle(c->u.x11.s, enable);
1762             break;
1763         }
1764     }
1765 }
1766
1767 /*
1768  * Handle the key exchange and user authentication phases.
1769  */
1770 static int do_ssh1_login(unsigned char *in, int inlen, int ispkt)
1771 {
1772     int i, j;
1773     static int len;
1774     static unsigned char *rsabuf, *keystr1, *keystr2;
1775     unsigned char cookie[8];
1776     struct RSAKey servkey, hostkey;
1777     struct MD5Context md5c;
1778     static unsigned long supported_ciphers_mask, supported_auths_mask;
1779     static int tried_publickey;
1780     static unsigned char session_id[16];
1781     static int cipher_type;
1782     static char username[100];
1783
1784     crBegin;
1785
1786     if (!ispkt)
1787         crWaitUntil(ispkt);
1788
1789     if (pktin.type != SSH1_SMSG_PUBLIC_KEY) {
1790         bombout(("Public key packet not received"));
1791         crReturn(0);
1792     }
1793
1794     logevent("Received public keys");
1795
1796     memcpy(cookie, pktin.body, 8);
1797
1798     i = makekey(pktin.body + 8, &servkey, &keystr1, 0);
1799     j = makekey(pktin.body + 8 + i, &hostkey, &keystr2, 0);
1800
1801     /*
1802      * Log the host key fingerprint.
1803      */
1804     {
1805         char logmsg[80];
1806         logevent("Host key fingerprint is:");
1807         strcpy(logmsg, "      ");
1808         hostkey.comment = NULL;
1809         rsa_fingerprint(logmsg + strlen(logmsg),
1810                         sizeof(logmsg) - strlen(logmsg), &hostkey);
1811         logevent(logmsg);
1812     }
1813
1814     ssh1_remote_protoflags = GET_32BIT(pktin.body + 8 + i + j);
1815     supported_ciphers_mask = GET_32BIT(pktin.body + 12 + i + j);
1816     supported_auths_mask = GET_32BIT(pktin.body + 16 + i + j);
1817
1818     ssh1_local_protoflags =
1819         ssh1_remote_protoflags & SSH1_PROTOFLAGS_SUPPORTED;
1820     ssh1_local_protoflags |= SSH1_PROTOFLAG_SCREEN_NUMBER;
1821
1822     MD5Init(&md5c);
1823     MD5Update(&md5c, keystr2, hostkey.bytes);
1824     MD5Update(&md5c, keystr1, servkey.bytes);
1825     MD5Update(&md5c, pktin.body, 8);
1826     MD5Final(session_id, &md5c);
1827
1828     for (i = 0; i < 32; i++)
1829         session_key[i] = random_byte();
1830
1831     len = (hostkey.bytes > servkey.bytes ? hostkey.bytes : servkey.bytes);
1832
1833     rsabuf = smalloc(len);
1834     if (!rsabuf)
1835         fatalbox("Out of memory");
1836
1837     /*
1838      * Verify the host key.
1839      */
1840     {
1841         /*
1842          * First format the key into a string.
1843          */
1844         int len = rsastr_len(&hostkey);
1845         char fingerprint[100];
1846         char *keystr = smalloc(len);
1847         if (!keystr)
1848             fatalbox("Out of memory");
1849         rsastr_fmt(keystr, &hostkey);
1850         rsa_fingerprint(fingerprint, sizeof(fingerprint), &hostkey);
1851         verify_ssh_host_key(savedhost, savedport, "rsa", keystr,
1852                             fingerprint);
1853         sfree(keystr);
1854     }
1855
1856     for (i = 0; i < 32; i++) {
1857         rsabuf[i] = session_key[i];
1858         if (i < 16)
1859             rsabuf[i] ^= session_id[i];
1860     }
1861
1862     if (hostkey.bytes > servkey.bytes) {
1863         rsaencrypt(rsabuf, 32, &servkey);
1864         rsaencrypt(rsabuf, servkey.bytes, &hostkey);
1865     } else {
1866         rsaencrypt(rsabuf, 32, &hostkey);
1867         rsaencrypt(rsabuf, hostkey.bytes, &servkey);
1868     }
1869
1870     logevent("Encrypted session key");
1871
1872     {
1873         int cipher_chosen = 0, warn = 0;
1874         char *cipher_string = NULL;
1875         for (i = 0; !cipher_chosen && i < CIPHER_MAX; i++) {
1876             int next_cipher = cfg.ssh_cipherlist[i];
1877             if (next_cipher == CIPHER_WARN) {
1878                 /* If/when we choose a cipher, warn about it */
1879                 warn = 1;
1880             } else if (next_cipher == CIPHER_AES) {
1881                 /* XXX Probably don't need to mention this. */
1882                 logevent("AES not supported in SSH1, skipping");
1883             } else {
1884                 switch (next_cipher) {
1885                   case CIPHER_3DES:     cipher_type = SSH_CIPHER_3DES;
1886                                         cipher_string = "3DES"; break;
1887                   case CIPHER_BLOWFISH: cipher_type = SSH_CIPHER_BLOWFISH;
1888                                         cipher_string = "Blowfish"; break;
1889                   case CIPHER_DES:      cipher_type = SSH_CIPHER_DES;
1890                                         cipher_string = "single-DES"; break;
1891                 }
1892                 if (supported_ciphers_mask & (1 << cipher_type))
1893                     cipher_chosen = 1;
1894             }
1895         }
1896         if (!cipher_chosen) {
1897             if ((supported_ciphers_mask & (1 << SSH_CIPHER_3DES)) == 0)
1898                 bombout(("Server violates SSH 1 protocol by not "
1899                          "supporting 3DES encryption"));
1900             else
1901                 /* shouldn't happen */
1902                 bombout(("No supported ciphers found"));
1903             crReturn(0);
1904         }
1905
1906         /* Warn about chosen cipher if necessary. */
1907         if (warn)
1908             askcipher(cipher_string, 0);
1909     }
1910
1911     switch (cipher_type) {
1912       case SSH_CIPHER_3DES:
1913         logevent("Using 3DES encryption");
1914         break;
1915       case SSH_CIPHER_DES:
1916         logevent("Using single-DES encryption");
1917         break;
1918       case SSH_CIPHER_BLOWFISH:
1919         logevent("Using Blowfish encryption");
1920         break;
1921     }
1922
1923     send_packet(SSH1_CMSG_SESSION_KEY,
1924                 PKT_CHAR, cipher_type,
1925                 PKT_DATA, cookie, 8,
1926                 PKT_CHAR, (len * 8) >> 8, PKT_CHAR, (len * 8) & 0xFF,
1927                 PKT_DATA, rsabuf, len,
1928                 PKT_INT, ssh1_local_protoflags, PKT_END);
1929
1930     logevent("Trying to enable encryption...");
1931
1932     sfree(rsabuf);
1933
1934     cipher = cipher_type == SSH_CIPHER_BLOWFISH ? &ssh_blowfish_ssh1 :
1935         cipher_type == SSH_CIPHER_DES ? &ssh_des : &ssh_3des;
1936     cipher->sesskey(session_key);
1937
1938     crWaitUntil(ispkt);
1939
1940     if (pktin.type != SSH1_SMSG_SUCCESS) {
1941         bombout(("Encryption not successfully enabled"));
1942         crReturn(0);
1943     }
1944
1945     logevent("Successfully started encryption");
1946
1947     fflush(stdout);
1948     {
1949         static int pos = 0;
1950         static char c;
1951         if ((flags & FLAG_INTERACTIVE) && !*cfg.username) {
1952             if (ssh_get_line) {
1953                 if (!ssh_get_line("login as: ",
1954                                   username, sizeof(username), FALSE)) {
1955                     /*
1956                      * get_line failed to get a username.
1957                      * Terminate.
1958                      */
1959                     logevent("No username provided. Abandoning session.");
1960                     ssh_state = SSH_STATE_CLOSED;
1961                     crReturn(1);
1962                 }
1963             } else {
1964                 c_write_str("login as: ");
1965                 ssh_send_ok = 1;
1966                 while (pos >= 0) {
1967                     crWaitUntil(!ispkt);
1968                     while (inlen--)
1969                         switch (c = *in++) {
1970                           case 10:
1971                           case 13:
1972                             username[pos] = 0;
1973                             pos = -1;
1974                             break;
1975                           case 8:
1976                           case 127:
1977                             if (pos > 0) {
1978                                 c_write_str("\b \b");
1979                                 pos--;
1980                             }
1981                             break;
1982                           case 21:
1983                           case 27:
1984                             while (pos > 0) {
1985                                 c_write_str("\b \b");
1986                                 pos--;
1987                             }
1988                             break;
1989                           case 3:
1990                           case 4:
1991                             random_save_seed();
1992                             exit(0);
1993                             break;
1994                           default:
1995                             if (((c >= ' ' && c <= '~') ||
1996                                  ((unsigned char) c >= 160))
1997                                 && pos < sizeof(username)-1) {
1998                                 username[pos++] = c;
1999                                 c_write(&c, 1);
2000                             }
2001                             break;
2002                         }
2003                 }
2004                 c_write_str("\r\n");
2005                 username[strcspn(username, "\n\r")] = '\0';
2006             }
2007         } else {
2008             strncpy(username, cfg.username, 99);
2009             username[99] = '\0';
2010         }
2011
2012         send_packet(SSH1_CMSG_USER, PKT_STR, username, PKT_END);
2013         {
2014             char userlog[22 + sizeof(username)];
2015             sprintf(userlog, "Sent username \"%s\"", username);
2016             logevent(userlog);
2017             if (flags & FLAG_INTERACTIVE &&
2018                 (!((flags & FLAG_STDERR) && (flags & FLAG_VERBOSE)))) {
2019                 strcat(userlog, "\r\n");
2020                 c_write_str(userlog);
2021             }
2022         }
2023     }
2024
2025     crWaitUntil(ispkt);
2026
2027     tried_publickey = 0;
2028
2029     while (pktin.type == SSH1_SMSG_FAILURE) {
2030         static char password[100];
2031         static char prompt[200];
2032         static int pos;
2033         static char c;
2034         static int pwpkt_type;
2035         /*
2036          * Show password prompt, having first obtained it via a TIS
2037          * or CryptoCard exchange if we're doing TIS or CryptoCard
2038          * authentication.
2039          */
2040         pwpkt_type = SSH1_CMSG_AUTH_PASSWORD;
2041         if (agent_exists()) {
2042             /*
2043              * Attempt RSA authentication using Pageant.
2044              */
2045             static unsigned char request[5], *response, *p;
2046             static int responselen;
2047             static int i, nkeys;
2048             static int authed = FALSE;
2049             void *r;
2050
2051             logevent("Pageant is running. Requesting keys.");
2052
2053             /* Request the keys held by the agent. */
2054             PUT_32BIT(request, 1);
2055             request[4] = SSH1_AGENTC_REQUEST_RSA_IDENTITIES;
2056             agent_query(request, 5, &r, &responselen);
2057             response = (unsigned char *) r;
2058             if (response && responselen >= 5 &&
2059                 response[4] == SSH1_AGENT_RSA_IDENTITIES_ANSWER) {
2060                 p = response + 5;
2061                 nkeys = GET_32BIT(p);
2062                 p += 4;
2063                 {
2064                     char buf[64];
2065                     sprintf(buf, "Pageant has %d SSH1 keys", nkeys);
2066                     logevent(buf);
2067                 }
2068                 for (i = 0; i < nkeys; i++) {
2069                     static struct RSAKey key;
2070                     static Bignum challenge;
2071                     static char *commentp;
2072                     static int commentlen;
2073
2074                     {
2075                         char buf[64];
2076                         sprintf(buf, "Trying Pageant key #%d", i);
2077                         logevent(buf);
2078                     }
2079                     p += 4;
2080                     p += ssh1_read_bignum(p, &key.exponent);
2081                     p += ssh1_read_bignum(p, &key.modulus);
2082                     commentlen = GET_32BIT(p);
2083                     p += 4;
2084                     commentp = p;
2085                     p += commentlen;
2086                     send_packet(SSH1_CMSG_AUTH_RSA,
2087                                 PKT_BIGNUM, key.modulus, PKT_END);
2088                     crWaitUntil(ispkt);
2089                     if (pktin.type != SSH1_SMSG_AUTH_RSA_CHALLENGE) {
2090                         logevent("Key refused");
2091                         continue;
2092                     }
2093                     logevent("Received RSA challenge");
2094                     ssh1_read_bignum(pktin.body, &challenge);
2095                     {
2096                         char *agentreq, *q, *ret;
2097                         void *vret;
2098                         int len, retlen;
2099                         len = 1 + 4;   /* message type, bit count */
2100                         len += ssh1_bignum_length(key.exponent);
2101                         len += ssh1_bignum_length(key.modulus);
2102                         len += ssh1_bignum_length(challenge);
2103                         len += 16;     /* session id */
2104                         len += 4;      /* response format */
2105                         agentreq = smalloc(4 + len);
2106                         PUT_32BIT(agentreq, len);
2107                         q = agentreq + 4;
2108                         *q++ = SSH1_AGENTC_RSA_CHALLENGE;
2109                         PUT_32BIT(q, bignum_bitcount(key.modulus));
2110                         q += 4;
2111                         q += ssh1_write_bignum(q, key.exponent);
2112                         q += ssh1_write_bignum(q, key.modulus);
2113                         q += ssh1_write_bignum(q, challenge);
2114                         memcpy(q, session_id, 16);
2115                         q += 16;
2116                         PUT_32BIT(q, 1);        /* response format */
2117                         agent_query(agentreq, len + 4, &vret, &retlen);
2118                         ret = vret;
2119                         sfree(agentreq);
2120                         if (ret) {
2121                             if (ret[4] == SSH1_AGENT_RSA_RESPONSE) {
2122                                 logevent("Sending Pageant's response");
2123                                 send_packet(SSH1_CMSG_AUTH_RSA_RESPONSE,
2124                                             PKT_DATA, ret + 5, 16,
2125                                             PKT_END);
2126                                 sfree(ret);
2127                                 crWaitUntil(ispkt);
2128                                 if (pktin.type == SSH1_SMSG_SUCCESS) {
2129                                     logevent
2130                                         ("Pageant's response accepted");
2131                                     if (flags & FLAG_VERBOSE) {
2132                                         c_write_str
2133                                             ("Authenticated using RSA key \"");
2134                                         c_write(commentp, commentlen);
2135                                         c_write_str("\" from agent\r\n");
2136                                     }
2137                                     authed = TRUE;
2138                                 } else
2139                                     logevent
2140                                         ("Pageant's response not accepted");
2141                             } else {
2142                                 logevent
2143                                     ("Pageant failed to answer challenge");
2144                                 sfree(ret);
2145                             }
2146                         } else {
2147                             logevent("No reply received from Pageant");
2148                         }
2149                     }
2150                     freebn(key.exponent);
2151                     freebn(key.modulus);
2152                     freebn(challenge);
2153                     if (authed)
2154                         break;
2155                 }
2156             }
2157             if (authed)
2158                 break;
2159         }
2160         if (*cfg.keyfile && !tried_publickey)
2161             pwpkt_type = SSH1_CMSG_AUTH_RSA;
2162
2163         if (pktin.type == SSH1_SMSG_FAILURE &&
2164             cfg.try_tis_auth &&
2165             (supported_auths_mask & (1 << SSH1_AUTH_TIS))) {
2166             pwpkt_type = SSH1_CMSG_AUTH_TIS_RESPONSE;
2167             logevent("Requested TIS authentication");
2168             send_packet(SSH1_CMSG_AUTH_TIS, PKT_END);
2169             crWaitUntil(ispkt);
2170             if (pktin.type != SSH1_SMSG_AUTH_TIS_CHALLENGE) {
2171                 logevent("TIS authentication declined");
2172                 if (flags & FLAG_INTERACTIVE)
2173                     c_write_str("TIS authentication refused.\r\n");
2174             } else {
2175                 int challengelen = ((pktin.body[0] << 24) |
2176                                     (pktin.body[1] << 16) |
2177                                     (pktin.body[2] << 8) |
2178                                     (pktin.body[3]));
2179                 logevent("Received TIS challenge");
2180                 if (challengelen > sizeof(prompt) - 1)
2181                     challengelen = sizeof(prompt) - 1;  /* prevent overrun */
2182                 memcpy(prompt, pktin.body + 4, challengelen);
2183                 prompt[challengelen] = '\0';
2184             }
2185         }
2186         if (pktin.type == SSH1_SMSG_FAILURE &&
2187             cfg.try_tis_auth &&
2188             (supported_auths_mask & (1 << SSH1_AUTH_CCARD))) {
2189             pwpkt_type = SSH1_CMSG_AUTH_CCARD_RESPONSE;
2190             logevent("Requested CryptoCard authentication");
2191             send_packet(SSH1_CMSG_AUTH_CCARD, PKT_END);
2192             crWaitUntil(ispkt);
2193             if (pktin.type != SSH1_SMSG_AUTH_CCARD_CHALLENGE) {
2194                 logevent("CryptoCard authentication declined");
2195                 c_write_str("CryptoCard authentication refused.\r\n");
2196             } else {
2197                 int challengelen = ((pktin.body[0] << 24) |
2198                                     (pktin.body[1] << 16) |
2199                                     (pktin.body[2] << 8) |
2200                                     (pktin.body[3]));
2201                 logevent("Received CryptoCard challenge");
2202                 if (challengelen > sizeof(prompt) - 1)
2203                     challengelen = sizeof(prompt) - 1;  /* prevent overrun */
2204                 memcpy(prompt, pktin.body + 4, challengelen);
2205                 strncpy(prompt + challengelen, "\r\nResponse : ",
2206                         sizeof(prompt) - challengelen);
2207                 prompt[sizeof(prompt) - 1] = '\0';
2208             }
2209         }
2210         if (pwpkt_type == SSH1_CMSG_AUTH_PASSWORD) {
2211             sprintf(prompt, "%.90s@%.90s's password: ",
2212                     username, savedhost);
2213         }
2214         if (pwpkt_type == SSH1_CMSG_AUTH_RSA) {
2215             char *comment = NULL;
2216             if (flags & FLAG_VERBOSE)
2217                 c_write_str("Trying public key authentication.\r\n");
2218             if (!rsakey_encrypted(cfg.keyfile, &comment)) {
2219                 if (flags & FLAG_VERBOSE)
2220                     c_write_str("No passphrase required.\r\n");
2221                 goto tryauth;
2222             }
2223             sprintf(prompt, "Passphrase for key \"%.100s\": ", comment);
2224             sfree(comment);
2225         }
2226
2227         if (ssh_get_line) {
2228             if (!ssh_get_line(prompt, password, sizeof(password), TRUE)) {
2229                 /*
2230                  * get_line failed to get a password (for example
2231                  * because one was supplied on the command line
2232                  * which has already failed to work). Terminate.
2233                  */
2234                 send_packet(SSH1_MSG_DISCONNECT,
2235                             PKT_STR, "No more passwords available to try",
2236                             PKT_END);
2237                 connection_fatal("Unable to authenticate");
2238                 ssh_state = SSH_STATE_CLOSED;
2239                 crReturn(1);
2240             }
2241         } else {
2242             c_write_str(prompt);
2243             pos = 0;
2244             ssh_send_ok = 1;
2245             while (pos >= 0) {
2246                 crWaitUntil(!ispkt);
2247                 while (inlen--)
2248                     switch (c = *in++) {
2249                       case 10:
2250                       case 13:
2251                         password[pos] = 0;
2252                         pos = -1;
2253                         break;
2254                       case 8:
2255                       case 127:
2256                         if (pos > 0)
2257                             pos--;
2258                         break;
2259                       case 21:
2260                       case 27:
2261                         pos = 0;
2262                         break;
2263                       case 3:
2264                       case 4:
2265                         random_save_seed();
2266                         exit(0);
2267                         break;
2268                       default:
2269                         if (pos < sizeof(password)-1)
2270                             password[pos++] = c;
2271                         break;
2272                     }
2273             }
2274             c_write_str("\r\n");
2275         }
2276
2277       tryauth:
2278         if (pwpkt_type == SSH1_CMSG_AUTH_RSA) {
2279             /*
2280              * Try public key authentication with the specified
2281              * key file.
2282              */
2283             static struct RSAKey pubkey;
2284             static Bignum challenge, response;
2285             static int i;
2286             static unsigned char buffer[32];
2287
2288             tried_publickey = 1;
2289             i = loadrsakey(cfg.keyfile, &pubkey, password);
2290             if (i == 0) {
2291                 c_write_str("Couldn't load public key from ");
2292                 c_write_str(cfg.keyfile);
2293                 c_write_str(".\r\n");
2294                 continue;              /* go and try password */
2295             }
2296             if (i == -1) {
2297                 c_write_str("Wrong passphrase.\r\n");
2298                 tried_publickey = 0;
2299                 continue;              /* try again */
2300             }
2301
2302             /*
2303              * Send a public key attempt.
2304              */
2305             send_packet(SSH1_CMSG_AUTH_RSA,
2306                         PKT_BIGNUM, pubkey.modulus, PKT_END);
2307
2308             crWaitUntil(ispkt);
2309             if (pktin.type == SSH1_SMSG_FAILURE) {
2310                 c_write_str("Server refused our public key.\r\n");
2311                 continue;              /* go and try password */
2312             }
2313             if (pktin.type != SSH1_SMSG_AUTH_RSA_CHALLENGE) {
2314                 bombout(("Bizarre response to offer of public key"));
2315                 crReturn(0);
2316             }
2317             ssh1_read_bignum(pktin.body, &challenge);
2318             response = rsadecrypt(challenge, &pubkey);
2319             freebn(pubkey.private_exponent);    /* burn the evidence */
2320
2321             for (i = 0; i < 32; i++) {
2322                 buffer[i] = bignum_byte(response, 31 - i);
2323             }
2324
2325             MD5Init(&md5c);
2326             MD5Update(&md5c, buffer, 32);
2327             MD5Update(&md5c, session_id, 16);
2328             MD5Final(buffer, &md5c);
2329
2330             send_packet(SSH1_CMSG_AUTH_RSA_RESPONSE,
2331                         PKT_DATA, buffer, 16, PKT_END);
2332
2333             crWaitUntil(ispkt);
2334             if (pktin.type == SSH1_SMSG_FAILURE) {
2335                 if (flags & FLAG_VERBOSE)
2336                     c_write_str
2337                         ("Failed to authenticate with our public key.\r\n");
2338                 continue;              /* go and try password */
2339             } else if (pktin.type != SSH1_SMSG_SUCCESS) {
2340                 bombout(
2341                         ("Bizarre response to RSA authentication response"));
2342                 crReturn(0);
2343             }
2344
2345             break;                     /* we're through! */
2346         } else {
2347             if (pwpkt_type == SSH1_CMSG_AUTH_PASSWORD) {
2348                 /*
2349                  * Defence against traffic analysis: we send a
2350                  * whole bunch of packets containing strings of
2351                  * different lengths. One of these strings is the
2352                  * password, in a SSH1_CMSG_AUTH_PASSWORD packet.
2353                  * The others are all random data in
2354                  * SSH1_MSG_IGNORE packets. This way a passive
2355                  * listener can't tell which is the password, and
2356                  * hence can't deduce the password length.
2357                  * 
2358                  * Anybody with a password length greater than 16
2359                  * bytes is going to have enough entropy in their
2360                  * password that a listener won't find it _that_
2361                  * much help to know how long it is. So what we'll
2362                  * do is:
2363                  * 
2364                  *  - if password length < 16, we send 15 packets
2365                  *    containing string lengths 1 through 15
2366                  * 
2367                  *  - otherwise, we let N be the nearest multiple
2368                  *    of 8 below the password length, and send 8
2369                  *    packets containing string lengths N through
2370                  *    N+7. This won't obscure the order of
2371                  *    magnitude of the password length, but it will
2372                  *    introduce a bit of extra uncertainty.
2373                  * 
2374                  * A few servers (the old 1.2.18 through 1.2.22)
2375                  * can't deal with SSH1_MSG_IGNORE. For these
2376                  * servers, we need an alternative defence. We make
2377                  * use of the fact that the password is interpreted
2378                  * as a C string: so we can append a NUL, then some
2379                  * random data.
2380                  */
2381                 if (ssh_remote_bugs & BUG_CHOKES_ON_SSH1_IGNORE) {
2382                     char string[64];
2383                     char *s;
2384                     int len;
2385
2386                     len = strlen(password);
2387                     if (len < sizeof(string)) {
2388                         s = string;
2389                         strcpy(string, password);
2390                         len++;         /* cover the zero byte */
2391                         while (len < sizeof(string)) {
2392                             string[len++] = (char) random_byte();
2393                         }
2394                     } else {
2395                         s = password;
2396                     }
2397                     send_packet(pwpkt_type, PKT_INT, len,
2398                                 PKT_DATA, s, len, PKT_END);
2399                 } else {
2400                     int bottom, top, pwlen, i;
2401                     char *randomstr;
2402
2403                     pwlen = strlen(password);
2404                     if (pwlen < 16) {
2405                         bottom = 0;    /* zero length passwords are OK! :-) */
2406                         top = 15;
2407                     } else {
2408                         bottom = pwlen & ~7;
2409                         top = bottom + 7;
2410                     }
2411
2412                     assert(pwlen >= bottom && pwlen <= top);
2413
2414                     randomstr = smalloc(top + 1);
2415
2416                     for (i = bottom; i <= top; i++) {
2417                         if (i == pwlen)
2418                             defer_packet(pwpkt_type, PKT_STR, password,
2419                                          PKT_END);
2420                         else {
2421                             for (j = 0; j < i; j++) {
2422                                 do {
2423                                     randomstr[j] = random_byte();
2424                                 } while (randomstr[j] == '\0');
2425                             }
2426                             randomstr[i] = '\0';
2427                             defer_packet(SSH1_MSG_IGNORE,
2428                                          PKT_STR, randomstr, PKT_END);
2429                         }
2430                     }
2431                     ssh_pkt_defersend();
2432                 }
2433             } else {
2434                 send_packet(pwpkt_type, PKT_STR, password, PKT_END);
2435             }
2436         }
2437         logevent("Sent password");
2438         memset(password, 0, strlen(password));
2439         crWaitUntil(ispkt);
2440         if (pktin.type == SSH1_SMSG_FAILURE) {
2441             if (flags & FLAG_VERBOSE)
2442                 c_write_str("Access denied\r\n");
2443             logevent("Authentication refused");
2444         } else if (pktin.type == SSH1_MSG_DISCONNECT) {
2445             logevent("Received disconnect request");
2446             ssh_state = SSH_STATE_CLOSED;
2447             crReturn(1);
2448         } else if (pktin.type != SSH1_SMSG_SUCCESS) {
2449             bombout(("Strange packet received, type %d", pktin.type));
2450             crReturn(0);
2451         }
2452     }
2453
2454     logevent("Authentication successful");
2455
2456     crFinish(1);
2457 }
2458
2459 void sshfwd_close(struct ssh_channel *c)
2460 {
2461     if (c && !c->closes) {
2462         if (ssh_version == 1) {
2463             send_packet(SSH1_MSG_CHANNEL_CLOSE, PKT_INT, c->remoteid,
2464                         PKT_END);
2465         } else {
2466             ssh2_pkt_init(SSH2_MSG_CHANNEL_CLOSE);
2467             ssh2_pkt_adduint32(c->remoteid);
2468             ssh2_pkt_send();
2469         }
2470         c->closes = 1;
2471         if (c->type == CHAN_X11) {
2472             c->u.x11.s = NULL;
2473             logevent("Forwarded X11 connection terminated");
2474         } else if (c->type == CHAN_SOCKDATA) {
2475             c->u.pfd.s = NULL;
2476             logevent("Forwarded port closed");
2477         }
2478     }
2479 }
2480
2481 int sshfwd_write(struct ssh_channel *c, char *buf, int len)
2482 {
2483     if (ssh_version == 1) {
2484         send_packet(SSH1_MSG_CHANNEL_DATA,
2485                     PKT_INT, c->remoteid,
2486                     PKT_INT, len, PKT_DATA, buf, len, PKT_END);
2487         /*
2488          * In SSH1 we can return 0 here - implying that forwarded
2489          * connections are never individually throttled - because
2490          * the only circumstance that can cause throttling will be
2491          * the whole SSH connection backing up, in which case
2492          * _everything_ will be throttled as a whole.
2493          */
2494         return 0;
2495     } else {
2496         ssh2_add_channel_data(c, buf, len);
2497         return ssh2_try_send(c);
2498     }
2499 }
2500
2501 void sshfwd_unthrottle(struct ssh_channel *c, int bufsize)
2502 {
2503     if (ssh_version == 1) {
2504         if (c->v.v1.throttling && bufsize < SSH1_BUFFER_LIMIT) {
2505             c->v.v1.throttling = 0;
2506             ssh1_throttle(-1);
2507         }
2508     } else {
2509         ssh2_set_window(c, OUR_V2_WINSIZE - bufsize);
2510     }
2511 }
2512
2513 static void ssh1_protocol(unsigned char *in, int inlen, int ispkt)
2514 {
2515     crBegin;
2516
2517     random_init();
2518
2519     while (!do_ssh1_login(in, inlen, ispkt)) {
2520         crReturnV;
2521     }
2522     if (ssh_state == SSH_STATE_CLOSED)
2523         crReturnV;
2524
2525     if (cfg.agentfwd && agent_exists()) {
2526         logevent("Requesting agent forwarding");
2527         send_packet(SSH1_CMSG_AGENT_REQUEST_FORWARDING, PKT_END);
2528         do {
2529             crReturnV;
2530         } while (!ispkt);
2531         if (pktin.type != SSH1_SMSG_SUCCESS
2532             && pktin.type != SSH1_SMSG_FAILURE) {
2533             bombout(("Protocol confusion"));
2534             crReturnV;
2535         } else if (pktin.type == SSH1_SMSG_FAILURE) {
2536             logevent("Agent forwarding refused");
2537         } else {
2538             logevent("Agent forwarding enabled");
2539             ssh_agentfwd_enabled = TRUE;
2540         }
2541     }
2542
2543     if (cfg.x11_forward) {
2544         char proto[20], data[64];
2545         logevent("Requesting X11 forwarding");
2546         x11_invent_auth(proto, sizeof(proto), data, sizeof(data));
2547         if (ssh1_local_protoflags & SSH1_PROTOFLAG_SCREEN_NUMBER) {
2548             send_packet(SSH1_CMSG_X11_REQUEST_FORWARDING,
2549                         PKT_STR, proto, PKT_STR, data,
2550                         PKT_INT, 0, PKT_END);
2551         } else {
2552             send_packet(SSH1_CMSG_X11_REQUEST_FORWARDING,
2553                         PKT_STR, proto, PKT_STR, data, PKT_END);
2554         }
2555         do {
2556             crReturnV;
2557         } while (!ispkt);
2558         if (pktin.type != SSH1_SMSG_SUCCESS
2559             && pktin.type != SSH1_SMSG_FAILURE) {
2560             bombout(("Protocol confusion"));
2561             crReturnV;
2562         } else if (pktin.type == SSH1_SMSG_FAILURE) {
2563             logevent("X11 forwarding refused");
2564         } else {
2565             logevent("X11 forwarding enabled");
2566             ssh_X11_fwd_enabled = TRUE;
2567         }
2568     }
2569
2570     {
2571         char type, *e;
2572         int n;
2573         int sport,dport;
2574         char sports[256], dports[256], host[256];
2575         char buf[1024];
2576
2577         ssh_rportfwds = newtree234(ssh_rportcmp_ssh1);
2578         /* Add port forwardings. */
2579         e = cfg.portfwd;
2580         while (*e) {
2581             type = *e++;
2582             n = 0;
2583             while (*e && *e != '\t')
2584                 sports[n++] = *e++;
2585             sports[n] = 0;
2586             if (*e == '\t')
2587                 e++;
2588             n = 0;
2589             while (*e && *e != ':')
2590                 host[n++] = *e++;
2591             host[n] = 0;
2592             if (*e == ':')
2593                 e++;
2594             n = 0;
2595             while (*e)
2596                 dports[n++] = *e++;
2597             dports[n] = 0;
2598             e++;
2599             dport = atoi(dports);
2600             sport = atoi(sports);
2601             if (sport && dport) {
2602                 if (type == 'L') {
2603                     pfd_addforward(host, dport, sport);
2604                     sprintf(buf, "Local port %d forwarding to %s:%d",
2605                             sport, host, dport);
2606                     logevent(buf);
2607                 } else {
2608                     struct ssh_rportfwd *pf;
2609                     pf = smalloc(sizeof(*pf));
2610                     strcpy(pf->dhost, host);
2611                     pf->dport = dport;
2612                     if (add234(ssh_rportfwds, pf) != pf) {
2613                         sprintf(buf, 
2614                                 "Duplicate remote port forwarding to %s:%d",
2615                                 host, dport);
2616                         logevent(buf);
2617                         sfree(pf);
2618                     } else {
2619                         sprintf(buf, "Requesting remote port %d forward to %s:%d",
2620                                 sport, host, dport);
2621                         logevent(buf);
2622                         send_packet(SSH1_CMSG_PORT_FORWARD_REQUEST,
2623                                     PKT_INT, sport,
2624                                     PKT_STR, host,
2625                                     PKT_INT, dport,
2626                                     PKT_END);
2627                     }
2628                 }
2629             }
2630         }
2631     }
2632
2633     if (!cfg.nopty) {
2634         send_packet(SSH1_CMSG_REQUEST_PTY,
2635                     PKT_STR, cfg.termtype,
2636                     PKT_INT, rows, PKT_INT, cols,
2637                     PKT_INT, 0, PKT_INT, 0, PKT_CHAR, 0, PKT_END);
2638         ssh_state = SSH_STATE_INTERMED;
2639         do {
2640             crReturnV;
2641         } while (!ispkt);
2642         if (pktin.type != SSH1_SMSG_SUCCESS
2643             && pktin.type != SSH1_SMSG_FAILURE) {
2644             bombout(("Protocol confusion"));
2645             crReturnV;
2646         } else if (pktin.type == SSH1_SMSG_FAILURE) {
2647             c_write_str("Server refused to allocate pty\r\n");
2648             ssh_editing = ssh_echoing = 1;
2649         }
2650         logevent("Allocated pty");
2651     } else {
2652         ssh_editing = ssh_echoing = 1;
2653     }
2654
2655     if (cfg.compression) {
2656         send_packet(SSH1_CMSG_REQUEST_COMPRESSION, PKT_INT, 6, PKT_END);
2657         do {
2658             crReturnV;
2659         } while (!ispkt);
2660         if (pktin.type != SSH1_SMSG_SUCCESS
2661             && pktin.type != SSH1_SMSG_FAILURE) {
2662             bombout(("Protocol confusion"));
2663             crReturnV;
2664         } else if (pktin.type == SSH1_SMSG_FAILURE) {
2665             c_write_str("Server refused to compress\r\n");
2666         }
2667         logevent("Started compression");
2668         ssh1_compressing = TRUE;
2669         zlib_compress_init();
2670         zlib_decompress_init();
2671     }
2672
2673     /*
2674      * Start the shell or command.
2675      * 
2676      * Special case: if the first-choice command is an SSH2
2677      * subsystem (hence not usable here) and the second choice
2678      * exists, we fall straight back to that.
2679      */
2680     {
2681         char *cmd = cfg.remote_cmd_ptr;
2682         
2683         if (cfg.ssh_subsys && cfg.remote_cmd_ptr2) {
2684             cmd = cfg.remote_cmd_ptr2;
2685             ssh_fallback_cmd = TRUE;
2686         }
2687         if (*cmd)
2688             send_packet(SSH1_CMSG_EXEC_CMD, PKT_STR, cmd, PKT_END);
2689         else
2690             send_packet(SSH1_CMSG_EXEC_SHELL, PKT_END);
2691         logevent("Started session");
2692     }
2693
2694     ssh_state = SSH_STATE_SESSION;
2695     if (size_needed)
2696         ssh_size();
2697     if (eof_needed)
2698         ssh_special(TS_EOF);
2699
2700     ldisc_send(NULL, 0);               /* cause ldisc to notice changes */
2701     ssh_send_ok = 1;
2702     ssh_channels = newtree234(ssh_channelcmp);
2703     while (1) {
2704         crReturnV;
2705         if (ispkt) {
2706             if (pktin.type == SSH1_SMSG_STDOUT_DATA ||
2707                 pktin.type == SSH1_SMSG_STDERR_DATA) {
2708                 long len = GET_32BIT(pktin.body);
2709                 int bufsize =
2710                     from_backend(pktin.type == SSH1_SMSG_STDERR_DATA,
2711                                  pktin.body + 4, len);
2712                 if (!ssh1_stdout_throttling && bufsize > SSH1_BUFFER_LIMIT) {
2713                     ssh1_stdout_throttling = 1;
2714                     ssh1_throttle(+1);
2715                 }
2716             } else if (pktin.type == SSH1_MSG_DISCONNECT) {
2717                 ssh_state = SSH_STATE_CLOSED;
2718                 logevent("Received disconnect request");
2719                 crReturnV;
2720             } else if (pktin.type == SSH1_SMSG_X11_OPEN) {
2721                 /* Remote side is trying to open a channel to talk to our
2722                  * X-Server. Give them back a local channel number. */
2723                 struct ssh_channel *c;
2724
2725                 logevent("Received X11 connect request");
2726                 /* Refuse if X11 forwarding is disabled. */
2727                 if (!ssh_X11_fwd_enabled) {
2728                     send_packet(SSH1_MSG_CHANNEL_OPEN_FAILURE,
2729                                 PKT_INT, GET_32BIT(pktin.body), PKT_END);
2730                     logevent("Rejected X11 connect request");
2731                 } else {
2732                     c = smalloc(sizeof(struct ssh_channel));
2733
2734                     if (x11_init(&c->u.x11.s, cfg.x11_display, c) != NULL) {
2735                         logevent("opening X11 forward connection failed");
2736                         sfree(c);
2737                         send_packet(SSH1_MSG_CHANNEL_OPEN_FAILURE,
2738                                     PKT_INT, GET_32BIT(pktin.body),
2739                                     PKT_END);
2740                     } else {
2741                         logevent
2742                             ("opening X11 forward connection succeeded");
2743                         c->remoteid = GET_32BIT(pktin.body);
2744                         c->localid = alloc_channel_id();
2745                         c->closes = 0;
2746                         c->v.v1.throttling = 0;
2747                         c->type = CHAN_X11;     /* identify channel type */
2748                         add234(ssh_channels, c);
2749                         send_packet(SSH1_MSG_CHANNEL_OPEN_CONFIRMATION,
2750                                     PKT_INT, c->remoteid, PKT_INT,
2751                                     c->localid, PKT_END);
2752                         logevent("Opened X11 forward channel");
2753                     }
2754                 }
2755             } else if (pktin.type == SSH1_SMSG_AGENT_OPEN) {
2756                 /* Remote side is trying to open a channel to talk to our
2757                  * agent. Give them back a local channel number. */
2758                 struct ssh_channel *c;
2759
2760                 /* Refuse if agent forwarding is disabled. */
2761                 if (!ssh_agentfwd_enabled) {
2762                     send_packet(SSH1_MSG_CHANNEL_OPEN_FAILURE,
2763                                 PKT_INT, GET_32BIT(pktin.body), PKT_END);
2764                 } else {
2765                     c = smalloc(sizeof(struct ssh_channel));
2766                     c->remoteid = GET_32BIT(pktin.body);
2767                     c->localid = alloc_channel_id();
2768                     c->closes = 0;
2769                     c->v.v1.throttling = 0;
2770                     c->type = CHAN_AGENT;       /* identify channel type */
2771                     c->u.a.lensofar = 0;
2772                     add234(ssh_channels, c);
2773                     send_packet(SSH1_MSG_CHANNEL_OPEN_CONFIRMATION,
2774                                 PKT_INT, c->remoteid, PKT_INT, c->localid,
2775                                 PKT_END);
2776                 }
2777             } else if (pktin.type == SSH1_MSG_PORT_OPEN) {
2778                 /* Remote side is trying to open a channel to talk to a
2779                  * forwarded port. Give them back a local channel number. */
2780                 struct ssh_channel *c;
2781                 struct ssh_rportfwd pf;
2782                 int hostsize, port;
2783                 char host[256], buf[1024];
2784                 char *p, *h, *e;
2785                 c = smalloc(sizeof(struct ssh_channel));
2786
2787                 hostsize = GET_32BIT(pktin.body+4);
2788                 for(h = host, p = pktin.body+8; hostsize != 0; hostsize--) {
2789                     if (h+1 < host+sizeof(host))
2790                         *h++ = *p;
2791                     p++;
2792                 }
2793                 *h = 0;
2794                 port = GET_32BIT(p);
2795
2796                 strcpy(pf.dhost, host);
2797                 pf.dport = port;
2798
2799                 if (find234(ssh_rportfwds, &pf, NULL) == NULL) {
2800                     sprintf(buf, "Rejected remote port open request for %s:%d",
2801                             host, port);
2802                     logevent(buf);
2803                     send_packet(SSH1_MSG_CHANNEL_OPEN_FAILURE,
2804                                 PKT_INT, GET_32BIT(pktin.body), PKT_END);
2805                 } else {
2806                     sprintf(buf, "Received remote port open request for %s:%d",
2807                             host, port);
2808                     logevent(buf);
2809                     e = pfd_newconnect(&c->u.pfd.s, host, port, c);
2810                     if (e != NULL) {
2811                         char buf[256];
2812                         sprintf(buf, "Port open failed: %s", e);
2813                         logevent(buf);
2814                         sfree(c);
2815                         send_packet(SSH1_MSG_CHANNEL_OPEN_FAILURE,
2816                                     PKT_INT, GET_32BIT(pktin.body),
2817                                     PKT_END);
2818                     } else {
2819                         c->remoteid = GET_32BIT(pktin.body);
2820                         c->localid = alloc_channel_id();
2821                         c->closes = 0;
2822                         c->v.v1.throttling = 0;
2823                         c->type = CHAN_SOCKDATA;        /* identify channel type */
2824                         add234(ssh_channels, c);
2825                         send_packet(SSH1_MSG_CHANNEL_OPEN_CONFIRMATION,
2826                                     PKT_INT, c->remoteid, PKT_INT,
2827                                     c->localid, PKT_END);
2828                         logevent("Forwarded port opened successfully");
2829                     }
2830                 }
2831
2832             } else if (pktin.type == SSH1_MSG_CHANNEL_OPEN_CONFIRMATION) {
2833                 unsigned int remoteid = GET_32BIT(pktin.body);
2834                 unsigned int localid = GET_32BIT(pktin.body+4);
2835                 struct ssh_channel *c;
2836
2837                 c = find234(ssh_channels, &remoteid, ssh_channelfind);
2838                 if (c && c->type == CHAN_SOCKDATA_DORMANT) {
2839                     c->remoteid = localid;
2840                     c->type = CHAN_SOCKDATA;
2841                     pfd_confirm(c->u.pfd.s);
2842                 }
2843
2844             } else if (pktin.type == SSH1_MSG_CHANNEL_OPEN_FAILURE) {
2845                 unsigned int remoteid = GET_32BIT(pktin.body);
2846                 unsigned int localid = GET_32BIT(pktin.body+4);
2847                 struct ssh_channel *c;
2848
2849                 c = find234(ssh_channels, &remoteid, ssh_channelfind);
2850                 if (c && c->type == CHAN_SOCKDATA_DORMANT) {
2851                     logevent("Forwarded connection refused by server");
2852                     pfd_close(c->u.pfd.s);
2853                     del234(ssh_channels, c);
2854                     sfree(c);
2855                 }
2856
2857             } else if (pktin.type == SSH1_MSG_CHANNEL_CLOSE ||
2858                        pktin.type == SSH1_MSG_CHANNEL_CLOSE_CONFIRMATION) {
2859                 /* Remote side closes a channel. */
2860                 unsigned i = GET_32BIT(pktin.body);
2861                 struct ssh_channel *c;
2862                 c = find234(ssh_channels, &i, ssh_channelfind);
2863                 if (c) {
2864                     int closetype;
2865                     closetype =
2866                         (pktin.type == SSH1_MSG_CHANNEL_CLOSE ? 1 : 2);
2867                     if (!(c->closes & closetype))
2868                         send_packet(pktin.type, PKT_INT, c->remoteid,
2869                                     PKT_END);
2870                     if ((c->closes == 0) && (c->type == CHAN_X11)) {
2871                         logevent("Forwarded X11 connection terminated");
2872                         assert(c->u.x11.s != NULL);
2873                         x11_close(c->u.x11.s);
2874                         c->u.x11.s = NULL;
2875                     }
2876                     if ((c->closes == 0) && (c->type == CHAN_SOCKDATA)) {
2877                         logevent("Forwarded port closed");
2878                         assert(c->u.pfd.s != NULL);
2879                         pfd_close(c->u.pfd.s);
2880                         c->u.pfd.s = NULL;
2881                     }
2882                     c->closes |= closetype;
2883                     if (c->closes == 3) {
2884                         del234(ssh_channels, c);
2885                         sfree(c);
2886                     }
2887                 }
2888             } else if (pktin.type == SSH1_MSG_CHANNEL_DATA) {
2889                 /* Data sent down one of our channels. */
2890                 int i = GET_32BIT(pktin.body);
2891                 int len = GET_32BIT(pktin.body + 4);
2892                 unsigned char *p = pktin.body + 8;
2893                 struct ssh_channel *c;
2894                 c = find234(ssh_channels, &i, ssh_channelfind);
2895                 if (c) {
2896                     int bufsize;
2897                     switch (c->type) {
2898                       case CHAN_X11:
2899                         bufsize = x11_send(c->u.x11.s, p, len);
2900                         break;
2901                       case CHAN_SOCKDATA:
2902                         bufsize = pfd_send(c->u.pfd.s, p, len);
2903                         break;
2904                       case CHAN_AGENT:
2905                         /* Data for an agent message. Buffer it. */
2906                         while (len > 0) {
2907                             if (c->u.a.lensofar < 4) {
2908                                 int l = min(4 - c->u.a.lensofar, len);
2909                                 memcpy(c->u.a.msglen + c->u.a.lensofar, p,
2910                                        l);
2911                                 p += l;
2912                                 len -= l;
2913                                 c->u.a.lensofar += l;
2914                             }
2915                             if (c->u.a.lensofar == 4) {
2916                                 c->u.a.totallen =
2917                                     4 + GET_32BIT(c->u.a.msglen);
2918                                 c->u.a.message = smalloc(c->u.a.totallen);
2919                                 memcpy(c->u.a.message, c->u.a.msglen, 4);
2920                             }
2921                             if (c->u.a.lensofar >= 4 && len > 0) {
2922                                 int l =
2923                                     min(c->u.a.totallen - c->u.a.lensofar,
2924                                         len);
2925                                 memcpy(c->u.a.message + c->u.a.lensofar, p,
2926                                        l);
2927                                 p += l;
2928                                 len -= l;
2929                                 c->u.a.lensofar += l;
2930                             }
2931                             if (c->u.a.lensofar == c->u.a.totallen) {
2932                                 void *reply, *sentreply;
2933                                 int replylen;
2934                                 agent_query(c->u.a.message,
2935                                             c->u.a.totallen, &reply,
2936                                             &replylen);
2937                                 if (reply)
2938                                     sentreply = reply;
2939                                 else {
2940                                     /* Fake SSH_AGENT_FAILURE. */
2941                                     sentreply = "\0\0\0\1\5";
2942                                     replylen = 5;
2943                                 }
2944                                 send_packet(SSH1_MSG_CHANNEL_DATA,
2945                                             PKT_INT, c->remoteid,
2946                                             PKT_INT, replylen,
2947                                             PKT_DATA, sentreply, replylen,
2948                                             PKT_END);
2949                                 if (reply)
2950                                     sfree(reply);
2951                                 sfree(c->u.a.message);
2952                                 c->u.a.lensofar = 0;
2953                             }
2954                         }
2955                         bufsize = 0;   /* agent channels never back up */
2956                         break;
2957                     }
2958                     if (!c->v.v1.throttling && bufsize > SSH1_BUFFER_LIMIT) {
2959                         c->v.v1.throttling = 1;
2960                         ssh1_throttle(+1);
2961                     }
2962                 }
2963             } else if (pktin.type == SSH1_SMSG_SUCCESS) {
2964                 /* may be from EXEC_SHELL on some servers */
2965             } else if (pktin.type == SSH1_SMSG_FAILURE) {
2966                 /* may be from EXEC_SHELL on some servers
2967                  * if no pty is available or in other odd cases. Ignore */
2968             } else if (pktin.type == SSH1_SMSG_EXIT_STATUS) {
2969                 send_packet(SSH1_CMSG_EXIT_CONFIRMATION, PKT_END);
2970             } else {
2971                 bombout(("Strange packet received: type %d", pktin.type));
2972                 crReturnV;
2973             }
2974         } else {
2975             while (inlen > 0) {
2976                 int len = min(inlen, 512);
2977                 send_packet(SSH1_CMSG_STDIN_DATA,
2978                             PKT_INT, len, PKT_DATA, in, len, PKT_END);
2979                 in += len;
2980                 inlen -= len;
2981             }
2982         }
2983     }
2984
2985     crFinishV;
2986 }
2987
2988 /*
2989  * Utility routine for decoding comma-separated strings in KEXINIT.
2990  */
2991 static int in_commasep_string(char *needle, char *haystack, int haylen)
2992 {
2993     int needlen = strlen(needle);
2994     while (1) {
2995         /*
2996          * Is it at the start of the string?
2997          */
2998         if (haylen >= needlen &&       /* haystack is long enough */
2999             !memcmp(needle, haystack, needlen) &&       /* initial match */
3000             (haylen == needlen || haystack[needlen] == ',')
3001             /* either , or EOS follows */
3002             )
3003             return 1;
3004         /*
3005          * If not, search for the next comma and resume after that.
3006          * If no comma found, terminate.
3007          */
3008         while (haylen > 0 && *haystack != ',')
3009             haylen--, haystack++;
3010         if (haylen == 0)
3011             return 0;
3012         haylen--, haystack++;          /* skip over comma itself */
3013     }
3014 }
3015
3016 /*
3017  * SSH2 key creation method.
3018  */
3019 static void ssh2_mkkey(Bignum K, char *H, char *sessid, char chr,
3020                        char *keyspace)
3021 {
3022     SHA_State s;
3023     /* First 20 bytes. */
3024     SHA_Init(&s);
3025     sha_mpint(&s, K);
3026     SHA_Bytes(&s, H, 20);
3027     SHA_Bytes(&s, &chr, 1);
3028     SHA_Bytes(&s, sessid, 20);
3029     SHA_Final(&s, keyspace);
3030     /* Next 20 bytes. */
3031     SHA_Init(&s);
3032     sha_mpint(&s, K);
3033     SHA_Bytes(&s, H, 20);
3034     SHA_Bytes(&s, keyspace, 20);
3035     SHA_Final(&s, keyspace + 20);
3036 }
3037
3038 /*
3039  * Handle the SSH2 transport layer.
3040  */
3041 static int do_ssh2_transport(unsigned char *in, int inlen, int ispkt)
3042 {
3043     static int i, j, len, nbits, pbits, warn;
3044     static char *str;
3045     static Bignum p, g, e, f, K;
3046     static int kex_init_value, kex_reply_value;
3047     static const struct ssh_mac **maclist;
3048     static int nmacs;
3049     static const struct ssh2_cipher *cscipher_tobe = NULL;
3050     static const struct ssh2_cipher *sccipher_tobe = NULL;
3051     static const struct ssh_mac *csmac_tobe = NULL;
3052     static const struct ssh_mac *scmac_tobe = NULL;
3053     static const struct ssh_compress *cscomp_tobe = NULL;
3054     static const struct ssh_compress *sccomp_tobe = NULL;
3055     static char *hostkeydata, *sigdata, *keystr, *fingerprint;
3056     static int hostkeylen, siglen;
3057     static void *hkey;                 /* actual host key */
3058     static unsigned char exchange_hash[20];
3059     static unsigned char keyspace[40];
3060     static int n_preferred_ciphers;
3061     static const struct ssh2_ciphers *preferred_ciphers[CIPHER_MAX];
3062     static const struct ssh_compress *preferred_comp;
3063     static int first_kex;
3064
3065     crBegin;
3066     random_init();
3067     first_kex = 1;
3068
3069     /*
3070      * Set up the preferred ciphers. (NULL => warn below here)
3071      */
3072     n_preferred_ciphers = 0;
3073     for (i = 0; i < CIPHER_MAX; i++) {
3074         switch (cfg.ssh_cipherlist[i]) {
3075           case CIPHER_BLOWFISH:
3076             preferred_ciphers[n_preferred_ciphers] = &ssh2_blowfish;
3077             n_preferred_ciphers++;
3078             break;
3079           case CIPHER_DES:
3080             /* Not supported in SSH2; silently drop */
3081             break;
3082           case CIPHER_3DES:
3083             preferred_ciphers[n_preferred_ciphers] = &ssh2_3des;
3084             n_preferred_ciphers++;
3085             break;
3086           case CIPHER_AES:
3087             preferred_ciphers[n_preferred_ciphers] = &ssh2_aes;
3088             n_preferred_ciphers++;
3089             break;
3090           case CIPHER_WARN:
3091             /* Flag for later. Don't bother if it's the last in
3092              * the list. */
3093             if (i < CIPHER_MAX - 1) {
3094                 preferred_ciphers[n_preferred_ciphers] = NULL;
3095                 n_preferred_ciphers++;
3096             }
3097             break;
3098         }
3099     }
3100
3101     /*
3102      * Set up preferred compression.
3103      */
3104     if (cfg.compression)
3105         preferred_comp = &ssh_zlib;
3106     else
3107         preferred_comp = &ssh_comp_none;
3108
3109     /*
3110      * Be prepared to work around the buggy MAC problem.
3111      */
3112     if (cfg.buggymac || (ssh_remote_bugs & BUG_SSH2_HMAC))
3113         maclist = buggymacs, nmacs = lenof(buggymacs);
3114     else
3115         maclist = macs, nmacs = lenof(macs);
3116
3117   begin_key_exchange:
3118     /*
3119      * Construct and send our key exchange packet.
3120      */
3121     ssh2_pkt_init(SSH2_MSG_KEXINIT);
3122     for (i = 0; i < 16; i++)
3123         ssh2_pkt_addbyte((unsigned char) random_byte());
3124     /* List key exchange algorithms. */
3125     ssh2_pkt_addstring_start();
3126     for (i = 0; i < lenof(kex_algs); i++) {
3127         ssh2_pkt_addstring_str(kex_algs[i]->name);
3128         if (i < lenof(kex_algs) - 1)
3129             ssh2_pkt_addstring_str(",");
3130     }
3131     /* List server host key algorithms. */
3132     ssh2_pkt_addstring_start();
3133     for (i = 0; i < lenof(hostkey_algs); i++) {
3134         ssh2_pkt_addstring_str(hostkey_algs[i]->name);
3135         if (i < lenof(hostkey_algs) - 1)
3136             ssh2_pkt_addstring_str(",");
3137     }
3138     /* List client->server encryption algorithms. */
3139     ssh2_pkt_addstring_start();
3140     for (i = 0; i < n_preferred_ciphers; i++) {
3141         const struct ssh2_ciphers *c = preferred_ciphers[i];
3142         if (!c) continue;              /* warning flag */
3143         for (j = 0; j < c->nciphers; j++) {
3144             ssh2_pkt_addstring_str(c->list[j]->name);
3145             if (i < n_preferred_ciphers || j < c->nciphers - 1)
3146                 ssh2_pkt_addstring_str(",");
3147         }
3148     }
3149     /* List server->client encryption algorithms. */
3150     ssh2_pkt_addstring_start();
3151     for (i = 0; i < n_preferred_ciphers; i++) {
3152         const struct ssh2_ciphers *c = preferred_ciphers[i];
3153         if (!c) continue; /* warning flag */
3154         for (j = 0; j < c->nciphers; j++) {
3155             ssh2_pkt_addstring_str(c->list[j]->name);
3156             if (i < n_preferred_ciphers || j < c->nciphers - 1)
3157                 ssh2_pkt_addstring_str(",");
3158         }
3159     }
3160     /* List client->server MAC algorithms. */
3161     ssh2_pkt_addstring_start();
3162     for (i = 0; i < nmacs; i++) {
3163         ssh2_pkt_addstring_str(maclist[i]->name);
3164         if (i < nmacs - 1)
3165             ssh2_pkt_addstring_str(",");
3166     }
3167     /* List server->client MAC algorithms. */
3168     ssh2_pkt_addstring_start();
3169     for (i = 0; i < nmacs; i++) {
3170         ssh2_pkt_addstring_str(maclist[i]->name);
3171         if (i < nmacs - 1)
3172             ssh2_pkt_addstring_str(",");
3173     }
3174     /* List client->server compression algorithms. */
3175     ssh2_pkt_addstring_start();
3176     for (i = 0; i < lenof(compressions) + 1; i++) {
3177         const struct ssh_compress *c =
3178             i == 0 ? preferred_comp : compressions[i - 1];
3179         ssh2_pkt_addstring_str(c->name);
3180         if (i < lenof(compressions))
3181             ssh2_pkt_addstring_str(",");
3182     }
3183     /* List server->client compression algorithms. */
3184     ssh2_pkt_addstring_start();
3185     for (i = 0; i < lenof(compressions) + 1; i++) {
3186         const struct ssh_compress *c =
3187             i == 0 ? preferred_comp : compressions[i - 1];
3188         ssh2_pkt_addstring_str(c->name);
3189         if (i < lenof(compressions))
3190             ssh2_pkt_addstring_str(",");
3191     }
3192     /* List client->server languages. Empty list. */
3193     ssh2_pkt_addstring_start();
3194     /* List server->client languages. Empty list. */
3195     ssh2_pkt_addstring_start();
3196     /* First KEX packet does _not_ follow, because we're not that brave. */
3197     ssh2_pkt_addbool(FALSE);
3198     /* Reserved. */
3199     ssh2_pkt_adduint32(0);
3200
3201     exhash = exhashbase;
3202     sha_string(&exhash, pktout.data + 5, pktout.length - 5);
3203
3204     ssh2_pkt_send();
3205
3206     if (!ispkt)
3207         crWaitUntil(ispkt);
3208     sha_string(&exhash, pktin.data + 5, pktin.length - 5);
3209
3210     /*
3211      * Now examine the other side's KEXINIT to see what we're up
3212      * to.
3213      */
3214     if (pktin.type != SSH2_MSG_KEXINIT) {
3215         bombout(("expected key exchange packet from server"));
3216         crReturn(0);
3217     }
3218     kex = NULL;
3219     hostkey = NULL;
3220     cscipher_tobe = NULL;
3221     sccipher_tobe = NULL;
3222     csmac_tobe = NULL;
3223     scmac_tobe = NULL;
3224     cscomp_tobe = NULL;
3225     sccomp_tobe = NULL;
3226     pktin.savedpos += 16;              /* skip garbage cookie */
3227     ssh2_pkt_getstring(&str, &len);    /* key exchange algorithms */
3228     for (i = 0; i < lenof(kex_algs); i++) {
3229         if (in_commasep_string(kex_algs[i]->name, str, len)) {
3230             kex = kex_algs[i];
3231             break;
3232         }
3233     }
3234     ssh2_pkt_getstring(&str, &len);    /* host key algorithms */
3235     for (i = 0; i < lenof(hostkey_algs); i++) {
3236         if (in_commasep_string(hostkey_algs[i]->name, str, len)) {
3237             hostkey = hostkey_algs[i];
3238             break;
3239         }
3240     }
3241     ssh2_pkt_getstring(&str, &len);    /* client->server cipher */
3242     warn = 0;
3243     for (i = 0; i < n_preferred_ciphers; i++) {
3244         const struct ssh2_ciphers *c = preferred_ciphers[i];
3245         if (!c) {
3246             warn = 1;
3247         } else {
3248             for (j = 0; j < c->nciphers; j++) {
3249                 if (in_commasep_string(c->list[j]->name, str, len)) {
3250                     cscipher_tobe = c->list[j];
3251                     break;
3252                 }
3253             }
3254         }
3255         if (cscipher_tobe) {
3256             if (warn)
3257                 askcipher(cscipher_tobe->name, 1);
3258             break;
3259         }
3260     }
3261     ssh2_pkt_getstring(&str, &len);    /* server->client cipher */
3262     warn = 0;
3263     for (i = 0; i < n_preferred_ciphers; i++) {
3264         const struct ssh2_ciphers *c = preferred_ciphers[i];
3265         if (!c) {
3266             warn = 1;
3267         } else {
3268             for (j = 0; j < c->nciphers; j++) {
3269                 if (in_commasep_string(c->list[j]->name, str, len)) {
3270                     sccipher_tobe = c->list[j];
3271                     break;
3272                 }
3273             }
3274         }
3275         if (sccipher_tobe) {
3276             if (warn)
3277                 askcipher(sccipher_tobe->name, 2);
3278             break;
3279         }
3280     }
3281     ssh2_pkt_getstring(&str, &len);    /* client->server mac */
3282     for (i = 0; i < nmacs; i++) {
3283         if (in_commasep_string(maclist[i]->name, str, len)) {
3284             csmac_tobe = maclist[i];
3285             break;
3286         }
3287     }
3288     ssh2_pkt_getstring(&str, &len);    /* server->client mac */
3289     for (i = 0; i < nmacs; i++) {
3290         if (in_commasep_string(maclist[i]->name, str, len)) {
3291             scmac_tobe = maclist[i];
3292             break;
3293         }
3294     }
3295     ssh2_pkt_getstring(&str, &len);    /* client->server compression */
3296     for (i = 0; i < lenof(compressions) + 1; i++) {
3297         const struct ssh_compress *c =
3298             i == 0 ? preferred_comp : compressions[i - 1];
3299         if (in_commasep_string(c->name, str, len)) {
3300             cscomp_tobe = c;
3301             break;
3302         }
3303     }
3304     ssh2_pkt_getstring(&str, &len);    /* server->client compression */
3305     for (i = 0; i < lenof(compressions) + 1; i++) {
3306         const struct ssh_compress *c =
3307             i == 0 ? preferred_comp : compressions[i - 1];
3308         if (in_commasep_string(c->name, str, len)) {
3309             sccomp_tobe = c;
3310             break;
3311         }
3312     }
3313
3314     /*
3315      * Work out the number of bits of key we will need from the key
3316      * exchange. We start with the maximum key length of either
3317      * cipher...
3318      */
3319     {
3320         int csbits, scbits;
3321
3322         csbits = cscipher_tobe->keylen;
3323         scbits = sccipher_tobe->keylen;
3324         nbits = (csbits > scbits ? csbits : scbits);
3325     }
3326     /* The keys only have 160-bit entropy, since they're based on
3327      * a SHA-1 hash. So cap the key size at 160 bits. */
3328     if (nbits > 160)
3329         nbits = 160;
3330
3331     /*
3332      * If we're doing Diffie-Hellman group exchange, start by
3333      * requesting a group.
3334      */
3335     if (kex == &ssh_diffiehellman_gex) {
3336         logevent("Doing Diffie-Hellman group exchange");
3337         /*
3338          * Work out how big a DH group we will need to allow that
3339          * much data.
3340          */
3341         pbits = 512 << ((nbits - 1) / 64);
3342         ssh2_pkt_init(SSH2_MSG_KEX_DH_GEX_REQUEST);
3343         ssh2_pkt_adduint32(pbits);
3344         ssh2_pkt_send();
3345
3346         crWaitUntil(ispkt);
3347         if (pktin.type != SSH2_MSG_KEX_DH_GEX_GROUP) {
3348             bombout(("expected key exchange group packet from server"));
3349             crReturn(0);
3350         }
3351         p = ssh2_pkt_getmp();
3352         g = ssh2_pkt_getmp();
3353         dh_setup_group(p, g);
3354         kex_init_value = SSH2_MSG_KEX_DH_GEX_INIT;
3355         kex_reply_value = SSH2_MSG_KEX_DH_GEX_REPLY;
3356     } else {
3357         dh_setup_group1();
3358         kex_init_value = SSH2_MSG_KEXDH_INIT;
3359         kex_reply_value = SSH2_MSG_KEXDH_REPLY;
3360     }
3361
3362     logevent("Doing Diffie-Hellman key exchange");
3363     /*
3364      * Now generate and send e for Diffie-Hellman.
3365      */
3366     e = dh_create_e(nbits * 2);
3367     ssh2_pkt_init(kex_init_value);
3368     ssh2_pkt_addmp(e);
3369     ssh2_pkt_send();
3370
3371     crWaitUntil(ispkt);
3372     if (pktin.type != kex_reply_value) {
3373         bombout(("expected key exchange reply packet from server"));
3374         crReturn(0);
3375     }
3376     ssh2_pkt_getstring(&hostkeydata, &hostkeylen);
3377     f = ssh2_pkt_getmp();
3378     ssh2_pkt_getstring(&sigdata, &siglen);
3379
3380     K = dh_find_K(f);
3381
3382     sha_string(&exhash, hostkeydata, hostkeylen);
3383     if (kex == &ssh_diffiehellman_gex) {
3384         sha_uint32(&exhash, pbits);
3385         sha_mpint(&exhash, p);
3386         sha_mpint(&exhash, g);
3387     }
3388     sha_mpint(&exhash, e);
3389     sha_mpint(&exhash, f);
3390     sha_mpint(&exhash, K);
3391     SHA_Final(&exhash, exchange_hash);
3392
3393     dh_cleanup();
3394
3395 #if 0
3396     debug(("Exchange hash is:\n"));
3397     dmemdump(exchange_hash, 20);
3398 #endif
3399
3400     hkey = hostkey->newkey(hostkeydata, hostkeylen);
3401     if (!hkey ||
3402         !hostkey->verifysig(hkey, sigdata, siglen, exchange_hash, 20)) {
3403         bombout(("Server's host key did not match the signature supplied"));
3404         crReturn(0);
3405     }
3406
3407     /*
3408      * Expect SSH2_MSG_NEWKEYS from server.
3409      */
3410     crWaitUntil(ispkt);
3411     if (pktin.type != SSH2_MSG_NEWKEYS) {
3412         bombout(("expected new-keys packet from server"));
3413         crReturn(0);
3414     }
3415
3416     /*
3417      * Authenticate remote host: verify host key. (We've already
3418      * checked the signature of the exchange hash.)
3419      */
3420     keystr = hostkey->fmtkey(hkey);
3421     fingerprint = hostkey->fingerprint(hkey);
3422     verify_ssh_host_key(savedhost, savedport, hostkey->keytype,
3423                         keystr, fingerprint);
3424     if (first_kex) {                   /* don't bother logging this in rekeys */
3425         logevent("Host key fingerprint is:");
3426         logevent(fingerprint);
3427     }
3428     sfree(fingerprint);
3429     sfree(keystr);
3430     hostkey->freekey(hkey);
3431
3432     /*
3433      * Send SSH2_MSG_NEWKEYS.
3434      */
3435     ssh2_pkt_init(SSH2_MSG_NEWKEYS);
3436     ssh2_pkt_send();
3437
3438     /*
3439      * Create and initialise session keys.
3440      */
3441     cscipher = cscipher_tobe;
3442     sccipher = sccipher_tobe;
3443     csmac = csmac_tobe;
3444     scmac = scmac_tobe;
3445     cscomp = cscomp_tobe;
3446     sccomp = sccomp_tobe;
3447     cscomp->compress_init();
3448     sccomp->decompress_init();
3449     /*
3450      * Set IVs after keys. Here we use the exchange hash from the
3451      * _first_ key exchange.
3452      */
3453     if (first_kex)
3454         memcpy(ssh2_session_id, exchange_hash, sizeof(exchange_hash));
3455     ssh2_mkkey(K, exchange_hash, ssh2_session_id, 'C', keyspace);
3456     cscipher->setcskey(keyspace);
3457     ssh2_mkkey(K, exchange_hash, ssh2_session_id, 'D', keyspace);
3458     sccipher->setsckey(keyspace);
3459     ssh2_mkkey(K, exchange_hash, ssh2_session_id, 'A', keyspace);
3460     cscipher->setcsiv(keyspace);
3461     ssh2_mkkey(K, exchange_hash, ssh2_session_id, 'B', keyspace);
3462     sccipher->setsciv(keyspace);
3463     ssh2_mkkey(K, exchange_hash, ssh2_session_id, 'E', keyspace);
3464     csmac->setcskey(keyspace);
3465     ssh2_mkkey(K, exchange_hash, ssh2_session_id, 'F', keyspace);
3466     scmac->setsckey(keyspace);
3467
3468     /*
3469      * If this is the first key exchange phase, we must pass the
3470      * SSH2_MSG_NEWKEYS packet to the next layer, not because it
3471      * wants to see it but because it will need time to initialise
3472      * itself before it sees an actual packet. In subsequent key
3473      * exchange phases, we don't pass SSH2_MSG_NEWKEYS on, because
3474      * it would only confuse the layer above.
3475      */
3476     if (!first_kex) {
3477         crReturn(0);
3478     }
3479     first_kex = 0;
3480
3481     /*
3482      * Now we're encrypting. Begin returning 1 to the protocol main
3483      * function so that other things can run on top of the
3484      * transport. If we ever see a KEXINIT, we must go back to the
3485      * start.
3486      */
3487     while (!(ispkt && pktin.type == SSH2_MSG_KEXINIT)) {
3488         crReturn(1);
3489     }
3490     logevent("Server initiated key re-exchange");
3491     goto begin_key_exchange;
3492
3493     crFinish(1);
3494 }
3495
3496 /*
3497  * Add data to an SSH2 channel output buffer.
3498  */
3499 static void ssh2_add_channel_data(struct ssh_channel *c, char *buf,
3500                                   int len)
3501 {
3502     bufchain_add(&c->v.v2.outbuffer, buf, len);
3503 }
3504
3505 /*
3506  * Attempt to send data on an SSH2 channel.
3507  */
3508 static int ssh2_try_send(struct ssh_channel *c)
3509 {
3510     while (c->v.v2.remwindow > 0 && bufchain_size(&c->v.v2.outbuffer) > 0) {
3511         int len;
3512         void *data;
3513         bufchain_prefix(&c->v.v2.outbuffer, &data, &len);
3514         if ((unsigned)len > c->v.v2.remwindow)
3515             len = c->v.v2.remwindow;
3516         if ((unsigned)len > c->v.v2.remmaxpkt)
3517             len = c->v.v2.remmaxpkt;
3518         ssh2_pkt_init(SSH2_MSG_CHANNEL_DATA);
3519         ssh2_pkt_adduint32(c->remoteid);
3520         ssh2_pkt_addstring_start();
3521         ssh2_pkt_addstring_data(data, len);
3522         ssh2_pkt_send();
3523         bufchain_consume(&c->v.v2.outbuffer, len);
3524         c->v.v2.remwindow -= len;
3525     }
3526
3527     /*
3528      * After having sent as much data as we can, return the amount
3529      * still buffered.
3530      */
3531     return bufchain_size(&c->v.v2.outbuffer);
3532 }
3533
3534 /*
3535  * Potentially enlarge the window on an SSH2 channel.
3536  */
3537 static void ssh2_set_window(struct ssh_channel *c, unsigned newwin)
3538 {
3539     if (newwin > c->v.v2.locwindow) {
3540         ssh2_pkt_init(SSH2_MSG_CHANNEL_WINDOW_ADJUST);
3541         ssh2_pkt_adduint32(c->remoteid);
3542         ssh2_pkt_adduint32(newwin - c->v.v2.locwindow);
3543         ssh2_pkt_send();
3544         c->v.v2.locwindow = newwin;
3545     }
3546 }
3547
3548 /*
3549  * Handle the SSH2 userauth and connection layers.
3550  */
3551 static void do_ssh2_authconn(unsigned char *in, int inlen, int ispkt)
3552 {
3553     static enum {
3554         AUTH_INVALID, AUTH_PUBLICKEY_AGENT, AUTH_PUBLICKEY_FILE,
3555         AUTH_PASSWORD,
3556         AUTH_KEYBOARD_INTERACTIVE
3557     } method;
3558     static enum {
3559         AUTH_TYPE_NONE,
3560         AUTH_TYPE_PUBLICKEY,
3561         AUTH_TYPE_PUBLICKEY_OFFER_LOUD,
3562         AUTH_TYPE_PUBLICKEY_OFFER_QUIET,
3563         AUTH_TYPE_PASSWORD,
3564         AUTH_TYPE_KEYBOARD_INTERACTIVE,
3565         AUTH_TYPE_KEYBOARD_INTERACTIVE_QUIET
3566     } type;
3567     static int gotit, need_pw, can_pubkey, can_passwd, can_keyb_inter;
3568     static int tried_pubkey_config, tried_agent, tried_keyb_inter;
3569     static int kbd_inter_running;
3570     static int we_are_in;
3571     static int num_prompts, echo;
3572     static char username[100];
3573     static char pwprompt[200];
3574     static char password[100];
3575
3576     crBegin;
3577
3578     /*
3579      * Request userauth protocol, and await a response to it.
3580      */
3581     ssh2_pkt_init(SSH2_MSG_SERVICE_REQUEST);
3582     ssh2_pkt_addstring("ssh-userauth");
3583     ssh2_pkt_send();
3584     crWaitUntilV(ispkt);
3585     if (pktin.type != SSH2_MSG_SERVICE_ACCEPT) {
3586         bombout(("Server refused user authentication protocol"));
3587         crReturnV;
3588     }
3589
3590     /*
3591      * We repeat this whole loop, including the username prompt,
3592      * until we manage a successful authentication. If the user
3593      * types the wrong _password_, they are sent back to the
3594      * beginning to try another username. (If they specify a
3595      * username in the config, they are never asked, even if they
3596      * do give a wrong password.)
3597      * 
3598      * I think this best serves the needs of
3599      * 
3600      *  - the people who have no configuration, no keys, and just
3601      *    want to try repeated (username,password) pairs until they
3602      *    type both correctly
3603      * 
3604      *  - people who have keys and configuration but occasionally
3605      *    need to fall back to passwords
3606      * 
3607      *  - people with a key held in Pageant, who might not have
3608      *    logged in to a particular machine before; so they want to
3609      *    type a username, and then _either_ their key will be
3610      *    accepted, _or_ they will type a password. If they mistype
3611      *    the username they will want to be able to get back and
3612      *    retype it!
3613      */
3614     do {
3615         static int pos;
3616         static char c;
3617
3618         /*
3619          * Get a username.
3620          */
3621         pos = 0;
3622         if ((flags & FLAG_INTERACTIVE) && !*cfg.username) {
3623             if (ssh_get_line) {
3624                 if (!ssh_get_line("login as: ",
3625                                   username, sizeof(username), FALSE)) {
3626                     /*
3627                      * get_line failed to get a username.
3628                      * Terminate.
3629                      */
3630                     logevent("No username provided. Abandoning session.");
3631                     ssh_state = SSH_STATE_CLOSED;
3632                     crReturnV;
3633                 }
3634             } else {
3635                 c_write_str("login as: ");
3636                 ssh_send_ok = 1;
3637                 while (pos >= 0) {
3638                     crWaitUntilV(!ispkt);
3639                     while (inlen--)
3640                         switch (c = *in++) {
3641                           case 10:
3642                           case 13:
3643                             username[pos] = 0;
3644                             pos = -1;
3645                             break;
3646                           case 8:
3647                           case 127:
3648                             if (pos > 0) {
3649                                 c_write_str("\b \b");
3650                                 pos--;
3651                             }
3652                             break;
3653                           case 21:
3654                           case 27:
3655                             while (pos > 0) {
3656                                 c_write_str("\b \b");
3657                                 pos--;
3658                             }
3659                             break;
3660                           case 3:
3661                           case 4:
3662                             random_save_seed();
3663                             exit(0);
3664                             break;
3665                           default:
3666                             if (((c >= ' ' && c <= '~') ||
3667                                  ((unsigned char) c >= 160))
3668                                 && pos < sizeof(username)-1) {
3669                                 username[pos++] = c;
3670                                 c_write(&c, 1);
3671                             }
3672                             break;
3673                         }
3674                 }
3675             }
3676             c_write_str("\r\n");
3677             username[strcspn(username, "\n\r")] = '\0';
3678         } else {
3679             char stuff[200];
3680             strncpy(username, cfg.username, 99);
3681             username[99] = '\0';
3682             if ((flags & FLAG_VERBOSE) || (flags & FLAG_INTERACTIVE)) {
3683                 sprintf(stuff, "Using username \"%s\".\r\n", username);
3684                 c_write_str(stuff);
3685             }
3686         }
3687
3688         /*
3689          * Send an authentication request using method "none": (a)
3690          * just in case it succeeds, and (b) so that we know what
3691          * authentication methods we can usefully try next.
3692          */
3693         ssh2_pkt_init(SSH2_MSG_USERAUTH_REQUEST);
3694         ssh2_pkt_addstring(username);
3695         ssh2_pkt_addstring("ssh-connection");   /* service requested */
3696         ssh2_pkt_addstring("none");    /* method */
3697         ssh2_pkt_send();
3698         type = AUTH_TYPE_NONE;
3699         gotit = FALSE;
3700         we_are_in = FALSE;
3701
3702         tried_pubkey_config = FALSE;
3703         tried_agent = FALSE;
3704         tried_keyb_inter = FALSE;
3705         kbd_inter_running = FALSE;
3706
3707         while (1) {
3708             /*
3709              * Wait for the result of the last authentication request.
3710              */
3711             if (!gotit)
3712                 crWaitUntilV(ispkt);
3713             while (pktin.type == SSH2_MSG_USERAUTH_BANNER) {
3714                 char *banner;
3715                 int size;
3716                 /*
3717                  * Don't show the banner if we're operating in
3718                  * non-verbose non-interactive mode. (It's probably
3719                  * a script, which means nobody will read the
3720                  * banner _anyway_, and moreover the printing of
3721                  * the banner will screw up processing on the
3722                  * output of (say) plink.)
3723                  */
3724                 if (flags & (FLAG_VERBOSE | FLAG_INTERACTIVE)) {
3725                     ssh2_pkt_getstring(&banner, &size);
3726                     if (banner)
3727                         c_write_untrusted(banner, size);
3728                 }
3729                 crWaitUntilV(ispkt);
3730             }
3731             if (pktin.type == SSH2_MSG_USERAUTH_SUCCESS) {
3732                 logevent("Access granted");
3733                 we_are_in = TRUE;
3734                 break;
3735             }
3736
3737             if (kbd_inter_running &&
3738                 pktin.type == SSH2_MSG_USERAUTH_INFO_REQUEST) {
3739                 /*
3740                  * This is a further prompt in keyboard-interactive
3741                  * authentication. Do nothing.
3742                  */
3743             } else if (pktin.type != SSH2_MSG_USERAUTH_FAILURE) {
3744                 bombout(("Strange packet received during authentication: type %d",
3745                          pktin.type));
3746                 crReturnV;
3747             }
3748
3749             gotit = FALSE;
3750
3751             /*
3752              * OK, we're now sitting on a USERAUTH_FAILURE message, so
3753              * we can look at the string in it and know what we can
3754              * helpfully try next.
3755              */
3756             if (pktin.type == SSH2_MSG_USERAUTH_FAILURE) {
3757                 char *methods;
3758                 int methlen;
3759                 ssh2_pkt_getstring(&methods, &methlen);
3760                 kbd_inter_running = FALSE;
3761                 if (!ssh2_pkt_getbool()) {
3762                     /*
3763                      * We have received an unequivocal Access
3764                      * Denied. This can translate to a variety of
3765                      * messages:
3766                      * 
3767                      *  - if we'd just tried "none" authentication,
3768                      *    it's not worth printing anything at all
3769                      * 
3770                      *  - if we'd just tried a public key _offer_,
3771                      *    the message should be "Server refused our
3772                      *    key" (or no message at all if the key
3773                      *    came from Pageant)
3774                      * 
3775                      *  - if we'd just tried anything else, the
3776                      *    message really should be "Access denied".
3777                      * 
3778                      * Additionally, if we'd just tried password
3779                      * authentication, we should break out of this
3780                      * whole loop so as to go back to the username
3781                      * prompt.
3782                      */
3783                     if (type == AUTH_TYPE_NONE) {
3784                         /* do nothing */
3785                     } else if (type == AUTH_TYPE_PUBLICKEY_OFFER_LOUD ||
3786                                type == AUTH_TYPE_PUBLICKEY_OFFER_QUIET) {
3787                         if (type == AUTH_TYPE_PUBLICKEY_OFFER_LOUD)
3788                             c_write_str("Server refused our key\r\n");
3789                         logevent("Server refused public key");
3790                     } else if (type == AUTH_TYPE_KEYBOARD_INTERACTIVE_QUIET) {
3791                         /* server declined keyboard-interactive; ignore */
3792                     } else {
3793                         c_write_str("Access denied\r\n");
3794                         logevent("Access denied");
3795                         if (type == AUTH_TYPE_PASSWORD) {
3796                             we_are_in = FALSE;
3797                             break;
3798                         }
3799                     }
3800                 } else {
3801                     c_write_str("Further authentication required\r\n");
3802                     logevent("Further authentication required");
3803                 }
3804
3805                 can_pubkey =
3806                     in_commasep_string("publickey", methods, methlen);
3807                 can_passwd =
3808                     in_commasep_string("password", methods, methlen);
3809                 can_keyb_inter = 
3810                     in_commasep_string("keyboard-interactive", methods, methlen);
3811             }
3812
3813             method = 0;
3814
3815             if (!method && can_pubkey && agent_exists() && !tried_agent) {
3816                 /*
3817                  * Attempt public-key authentication using Pageant.
3818                  */
3819                 static unsigned char request[5], *response, *p;
3820                 static int responselen;
3821                 static int i, nkeys;
3822                 static int authed = FALSE;
3823                 void *r;
3824
3825                 tried_agent = TRUE;
3826
3827                 logevent("Pageant is running. Requesting keys.");
3828
3829                 /* Request the keys held by the agent. */
3830                 PUT_32BIT(request, 1);
3831                 request[4] = SSH2_AGENTC_REQUEST_IDENTITIES;
3832                 agent_query(request, 5, &r, &responselen);
3833                 response = (unsigned char *) r;
3834                 if (response && responselen >= 5 &&
3835                     response[4] == SSH2_AGENT_IDENTITIES_ANSWER) {
3836                     p = response + 5;
3837                     nkeys = GET_32BIT(p);
3838                     p += 4;
3839                     {
3840                         char buf[64];
3841                         sprintf(buf, "Pageant has %d SSH2 keys", nkeys);
3842                         logevent(buf);
3843                     }
3844                     for (i = 0; i < nkeys; i++) {
3845                         static char *pkblob, *alg, *commentp;
3846                         static int pklen, alglen, commentlen;
3847                         static int siglen, retlen, len;
3848                         static char *q, *agentreq, *ret;
3849                         void *vret;
3850
3851                         {
3852                             char buf[64];
3853                             sprintf(buf, "Trying Pageant key #%d", i);
3854                             logevent(buf);
3855                         }
3856                         pklen = GET_32BIT(p);
3857                         p += 4;
3858                         pkblob = p;
3859                         p += pklen;
3860                         alglen = GET_32BIT(pkblob);
3861                         alg = pkblob + 4;
3862                         commentlen = GET_32BIT(p);
3863                         p += 4;
3864                         commentp = p;
3865                         p += commentlen;
3866                         ssh2_pkt_init(SSH2_MSG_USERAUTH_REQUEST);
3867                         ssh2_pkt_addstring(username);
3868                         ssh2_pkt_addstring("ssh-connection");   /* service requested */
3869                         ssh2_pkt_addstring("publickey");        /* method */
3870                         ssh2_pkt_addbool(FALSE);        /* no signature included */
3871                         ssh2_pkt_addstring_start();
3872                         ssh2_pkt_addstring_data(alg, alglen);
3873                         ssh2_pkt_addstring_start();
3874                         ssh2_pkt_addstring_data(pkblob, pklen);
3875                         ssh2_pkt_send();
3876
3877                         crWaitUntilV(ispkt);
3878                         if (pktin.type != SSH2_MSG_USERAUTH_PK_OK) {
3879                             logevent("Key refused");
3880                             continue;
3881                         }
3882
3883                         if (flags & FLAG_VERBOSE) {
3884                             c_write_str
3885                                 ("Authenticating with public key \"");
3886                             c_write(commentp, commentlen);
3887                             c_write_str("\" from agent\r\n");
3888                         }
3889
3890                         /*
3891                          * Server is willing to accept the key.
3892                          * Construct a SIGN_REQUEST.
3893                          */
3894                         ssh2_pkt_init(SSH2_MSG_USERAUTH_REQUEST);
3895                         ssh2_pkt_addstring(username);
3896                         ssh2_pkt_addstring("ssh-connection");   /* service requested */
3897                         ssh2_pkt_addstring("publickey");        /* method */
3898                         ssh2_pkt_addbool(TRUE);
3899                         ssh2_pkt_addstring_start();
3900                         ssh2_pkt_addstring_data(alg, alglen);
3901                         ssh2_pkt_addstring_start();
3902                         ssh2_pkt_addstring_data(pkblob, pklen);
3903
3904                         siglen = pktout.length - 5 + 4 + 20;
3905                         len = 1;       /* message type */
3906                         len += 4 + pklen;       /* key blob */
3907                         len += 4 + siglen;      /* data to sign */
3908                         len += 4;      /* flags */
3909                         agentreq = smalloc(4 + len);
3910                         PUT_32BIT(agentreq, len);
3911                         q = agentreq + 4;
3912                         *q++ = SSH2_AGENTC_SIGN_REQUEST;
3913                         PUT_32BIT(q, pklen);
3914                         q += 4;
3915                         memcpy(q, pkblob, pklen);
3916                         q += pklen;
3917                         PUT_32BIT(q, siglen);
3918                         q += 4;
3919                         /* Now the data to be signed... */
3920                         PUT_32BIT(q, 20);
3921                         q += 4;
3922                         memcpy(q, ssh2_session_id, 20);
3923                         q += 20;
3924                         memcpy(q, pktout.data + 5, pktout.length - 5);
3925                         q += pktout.length - 5;
3926                         /* And finally the (zero) flags word. */
3927                         PUT_32BIT(q, 0);
3928                         agent_query(agentreq, len + 4, &vret, &retlen);
3929                         ret = vret;
3930                         sfree(agentreq);
3931                         if (ret) {
3932                             if (ret[4] == SSH2_AGENT_SIGN_RESPONSE) {
3933                                 logevent("Sending Pageant's response");
3934                                 ssh2_pkt_addstring_start();
3935                                 ssh2_pkt_addstring_data(ret + 9,
3936                                                         GET_32BIT(ret +
3937                                                                   5));
3938                                 ssh2_pkt_send();
3939                                 authed = TRUE;
3940                                 break;
3941                             } else {
3942                                 logevent
3943                                     ("Pageant failed to answer challenge");
3944                                 sfree(ret);
3945                             }
3946                         }
3947                     }
3948                     if (authed)
3949                         continue;
3950                 }
3951             }
3952
3953             if (!method && can_pubkey && *cfg.keyfile
3954                 && !tried_pubkey_config) {
3955                 unsigned char *pub_blob;
3956                 char *algorithm, *comment;
3957                 int pub_blob_len;
3958
3959                 tried_pubkey_config = TRUE;
3960
3961                 /*
3962                  * Try the public key supplied in the configuration.
3963                  *
3964                  * First, offer the public blob to see if the server is
3965                  * willing to accept it.
3966                  */
3967                 pub_blob = ssh2_userkey_loadpub(cfg.keyfile, &algorithm,
3968                                                 &pub_blob_len);
3969                 if (pub_blob) {
3970                     ssh2_pkt_init(SSH2_MSG_USERAUTH_REQUEST);
3971                     ssh2_pkt_addstring(username);
3972                     ssh2_pkt_addstring("ssh-connection");       /* service requested */
3973                     ssh2_pkt_addstring("publickey");    /* method */
3974                     ssh2_pkt_addbool(FALSE);    /* no signature included */
3975                     ssh2_pkt_addstring(algorithm);
3976                     ssh2_pkt_addstring_start();
3977                     ssh2_pkt_addstring_data(pub_blob, pub_blob_len);
3978                     ssh2_pkt_send();
3979                     logevent("Offered public key");     /* FIXME */
3980
3981                     crWaitUntilV(ispkt);
3982                     if (pktin.type != SSH2_MSG_USERAUTH_PK_OK) {
3983                         gotit = TRUE;
3984                         type = AUTH_TYPE_PUBLICKEY_OFFER_LOUD;
3985                         continue;      /* key refused; give up on it */
3986                     }
3987
3988                     logevent("Offer of public key accepted");
3989                     /*
3990                      * Actually attempt a serious authentication using
3991                      * the key.
3992                      */
3993                     if (ssh2_userkey_encrypted(cfg.keyfile, &comment)) {
3994                         sprintf(pwprompt,
3995                                 "Passphrase for key \"%.100s\": ",
3996                                 comment);
3997                         need_pw = TRUE;
3998                     } else {
3999                         need_pw = FALSE;
4000                     }
4001                     c_write_str("Authenticating with public key \"");
4002                     c_write_str(comment);
4003                     c_write_str("\"\r\n");
4004                     method = AUTH_PUBLICKEY_FILE;
4005                 }
4006             }
4007
4008             if (!method && can_keyb_inter && !tried_keyb_inter) {
4009                 method = AUTH_KEYBOARD_INTERACTIVE;
4010                 type = AUTH_TYPE_KEYBOARD_INTERACTIVE;
4011                 tried_keyb_inter = TRUE;
4012
4013                 ssh2_pkt_init(SSH2_MSG_USERAUTH_REQUEST);
4014                 ssh2_pkt_addstring(username);
4015                 ssh2_pkt_addstring("ssh-connection");   /* service requested */
4016                 ssh2_pkt_addstring("keyboard-interactive");     /* method */
4017                 ssh2_pkt_addstring(""); /* lang */
4018                 ssh2_pkt_addstring("");
4019                 ssh2_pkt_send();
4020
4021                 crWaitUntilV(ispkt);
4022                 if (pktin.type != SSH2_MSG_USERAUTH_INFO_REQUEST) {
4023                     if (pktin.type == SSH2_MSG_USERAUTH_FAILURE)
4024                         gotit = TRUE;
4025                     logevent("Keyboard-interactive authentication refused");
4026                     type = AUTH_TYPE_KEYBOARD_INTERACTIVE_QUIET;
4027                     continue;
4028                 }
4029
4030                 kbd_inter_running = TRUE;
4031             }
4032
4033             if (kbd_inter_running) {
4034                 method = AUTH_KEYBOARD_INTERACTIVE;
4035                 type = AUTH_TYPE_KEYBOARD_INTERACTIVE;
4036                 tried_keyb_inter = TRUE;
4037
4038                 /* We've got packet with that "interactive" info
4039                    dump banners, and set its prompt as ours */
4040                 {
4041                     char *name, *inst, *lang, *prompt;
4042                     int name_len, inst_len, lang_len, prompt_len;
4043                     ssh2_pkt_getstring(&name, &name_len);
4044                     ssh2_pkt_getstring(&inst, &inst_len);
4045                     ssh2_pkt_getstring(&lang, &lang_len);
4046                     if (name_len > 0)
4047                         c_write_untrusted(name, name_len);
4048                     if (inst_len > 0)
4049                         c_write_untrusted(inst, inst_len);
4050                     num_prompts = ssh2_pkt_getuint32();
4051
4052                     ssh2_pkt_getstring(&prompt, &prompt_len);
4053                     strncpy(pwprompt, prompt, sizeof(pwprompt));
4054                     need_pw = TRUE;
4055
4056                     echo = ssh2_pkt_getbool();
4057                 }
4058             }
4059
4060             if (!method && can_passwd) {
4061                 method = AUTH_PASSWORD;
4062                 sprintf(pwprompt, "%.90s@%.90s's password: ", username,
4063                         savedhost);
4064                 need_pw = TRUE;
4065             }
4066
4067             if (need_pw) {
4068                 if (ssh_get_line) {
4069                     if (!ssh_get_line(pwprompt, password,
4070                                       sizeof(password), TRUE)) {
4071                         /*
4072                          * get_line failed to get a password (for
4073                          * example because one was supplied on the
4074                          * command line which has already failed to
4075                          * work). Terminate.
4076                          */
4077                         ssh2_pkt_init(SSH2_MSG_DISCONNECT);
4078                         ssh2_pkt_adduint32(SSH2_DISCONNECT_BY_APPLICATION);
4079                         ssh2_pkt_addstring
4080                             ("No more passwords available to try");
4081                         ssh2_pkt_addstring("en");       /* language tag */
4082                         ssh2_pkt_send();
4083                         connection_fatal("Unable to authenticate");
4084                         ssh_state = SSH_STATE_CLOSED;
4085                         crReturnV;
4086                     }
4087                 } else {
4088                     static int pos = 0;
4089                     static char c;
4090
4091                     c_write_untrusted(pwprompt, strlen(pwprompt));
4092                     ssh_send_ok = 1;
4093
4094                     pos = 0;
4095                     while (pos >= 0) {
4096                         crWaitUntilV(!ispkt);
4097                         while (inlen--)
4098                             switch (c = *in++) {
4099                               case 10:
4100                               case 13:
4101                                 password[pos] = 0;
4102                                 pos = -1;
4103                                 break;
4104                               case 8:
4105                               case 127:
4106                                 if (pos > 0)
4107                                     pos--;
4108                                 break;
4109                               case 21:
4110                               case 27:
4111                                 pos = 0;
4112                                 break;
4113                               case 3:
4114                               case 4:
4115                                 random_save_seed();
4116                                 exit(0);
4117                                 break;
4118                               default:
4119                                 if (pos < sizeof(password)-1)
4120                                     password[pos++] = c;
4121                                 break;
4122                             }
4123                     }
4124                     c_write_str("\r\n");
4125                 }
4126             }
4127
4128             if (method == AUTH_PUBLICKEY_FILE) {
4129                 /*
4130                  * We have our passphrase. Now try the actual authentication.
4131                  */
4132                 struct ssh2_userkey *key;
4133
4134                 key = ssh2_load_userkey(cfg.keyfile, password);
4135                 if (key == SSH2_WRONG_PASSPHRASE || key == NULL) {
4136                     if (key == SSH2_WRONG_PASSPHRASE) {
4137                         c_write_str("Wrong passphrase\r\n");
4138                         tried_pubkey_config = FALSE;
4139                     } else {
4140                         c_write_str("Unable to load private key\r\n");
4141                         tried_pubkey_config = TRUE;
4142                     }
4143                     /* Send a spurious AUTH_NONE to return to the top. */
4144                     ssh2_pkt_init(SSH2_MSG_USERAUTH_REQUEST);
4145                     ssh2_pkt_addstring(username);
4146                     ssh2_pkt_addstring("ssh-connection");       /* service requested */
4147                     ssh2_pkt_addstring("none"); /* method */
4148                     ssh2_pkt_send();
4149                     type = AUTH_TYPE_NONE;
4150                 } else {
4151                     unsigned char *blob, *sigdata;
4152                     int blob_len, sigdata_len;
4153
4154                     /*
4155                      * We have loaded the private key and the server
4156                      * has announced that it's willing to accept it.
4157                      * Hallelujah. Generate a signature and send it.
4158                      */
4159                     ssh2_pkt_init(SSH2_MSG_USERAUTH_REQUEST);
4160                     ssh2_pkt_addstring(username);
4161                     ssh2_pkt_addstring("ssh-connection");       /* service requested */
4162                     ssh2_pkt_addstring("publickey");    /* method */
4163                     ssh2_pkt_addbool(TRUE);
4164                     ssh2_pkt_addstring(key->alg->name);
4165                     blob = key->alg->public_blob(key->data, &blob_len);
4166                     ssh2_pkt_addstring_start();
4167                     ssh2_pkt_addstring_data(blob, blob_len);
4168                     sfree(blob);
4169
4170                     /*
4171                      * The data to be signed is:
4172                      *
4173                      *   string  session-id
4174                      *
4175                      * followed by everything so far placed in the
4176                      * outgoing packet.
4177                      */
4178                     sigdata_len = pktout.length - 5 + 4 + 20;
4179                     sigdata = smalloc(sigdata_len);
4180                     PUT_32BIT(sigdata, 20);
4181                     memcpy(sigdata + 4, ssh2_session_id, 20);
4182                     memcpy(sigdata + 24, pktout.data + 5,
4183                            pktout.length - 5);
4184                     blob =
4185                         key->alg->sign(key->data, sigdata, sigdata_len,
4186                                        &blob_len);
4187                     ssh2_pkt_addstring_start();
4188                     ssh2_pkt_addstring_data(blob, blob_len);
4189                     sfree(blob);
4190                     sfree(sigdata);
4191
4192                     ssh2_pkt_send();
4193                     type = AUTH_TYPE_PUBLICKEY;
4194                 }
4195             } else if (method == AUTH_PASSWORD) {
4196                 /*
4197                  * We send the password packet lumped tightly together with
4198                  * an SSH_MSG_IGNORE packet. The IGNORE packet contains a
4199                  * string long enough to make the total length of the two
4200                  * packets constant. This should ensure that a passive
4201                  * listener doing traffic analyis can't work out the length
4202                  * of the password.
4203                  *
4204                  * For this to work, we need an assumption about the
4205                  * maximum length of the password packet. I think 256 is
4206                  * pretty conservative. Anyone using a password longer than
4207                  * that probably doesn't have much to worry about from
4208                  * people who find out how long their password is!
4209                  */
4210                 ssh2_pkt_init(SSH2_MSG_USERAUTH_REQUEST);
4211                 ssh2_pkt_addstring(username);
4212                 ssh2_pkt_addstring("ssh-connection");   /* service requested */
4213                 ssh2_pkt_addstring("password");
4214                 ssh2_pkt_addbool(FALSE);
4215                 ssh2_pkt_addstring(password);
4216                 ssh2_pkt_defer();
4217                 /*
4218                  * We'll include a string that's an exact multiple of the
4219                  * cipher block size. If the cipher is NULL for some
4220                  * reason, we don't do this trick at all because we gain
4221                  * nothing by it.
4222                  */
4223                 if (cscipher) {
4224                     int stringlen, i;
4225
4226                     stringlen = (256 - deferred_len);
4227                     stringlen += cscipher->blksize - 1;
4228                     stringlen -= (stringlen % cscipher->blksize);
4229                     if (cscomp) {
4230                         /*
4231                          * Temporarily disable actual compression,
4232                          * so we can guarantee to get this string
4233                          * exactly the length we want it. The
4234                          * compression-disabling routine should
4235                          * return an integer indicating how many
4236                          * bytes we should adjust our string length
4237                          * by.
4238                          */
4239                         stringlen -= cscomp->disable_compression();
4240                     }
4241                     ssh2_pkt_init(SSH2_MSG_IGNORE);
4242                     ssh2_pkt_addstring_start();
4243                     for (i = 0; i < stringlen; i++) {
4244                         char c = (char) random_byte();
4245                         ssh2_pkt_addstring_data(&c, 1);
4246                     }
4247                     ssh2_pkt_defer();
4248                 }
4249                 ssh_pkt_defersend();
4250                 logevent("Sent password");
4251                 type = AUTH_TYPE_PASSWORD;
4252             } else if (method == AUTH_KEYBOARD_INTERACTIVE) {
4253                 ssh2_pkt_init(SSH2_MSG_USERAUTH_INFO_RESPONSE);
4254                 ssh2_pkt_adduint32(num_prompts);
4255                 ssh2_pkt_addstring(password);
4256                 memset(password, 0, sizeof(password));
4257                 ssh2_pkt_send();
4258                 type = AUTH_TYPE_KEYBOARD_INTERACTIVE;
4259             } else {
4260                 c_write_str
4261                     ("No supported authentication methods left to try!\r\n");
4262                 logevent
4263                     ("No supported authentications offered. Disconnecting");
4264                 ssh2_pkt_init(SSH2_MSG_DISCONNECT);
4265                 ssh2_pkt_adduint32(SSH2_DISCONNECT_BY_APPLICATION);
4266                 ssh2_pkt_addstring
4267                     ("No supported authentication methods available");
4268                 ssh2_pkt_addstring("en");       /* language tag */
4269                 ssh2_pkt_send();
4270                 ssh_state = SSH_STATE_CLOSED;
4271                 crReturnV;
4272             }
4273         }
4274     } while (!we_are_in);
4275
4276     /*
4277      * Now we're authenticated for the connection protocol. The
4278      * connection protocol will automatically have started at this
4279      * point; there's no need to send SERVICE_REQUEST.
4280      */
4281
4282     /*
4283      * So now create a channel with a session in it.
4284      */
4285     ssh_channels = newtree234(ssh_channelcmp);
4286     mainchan = smalloc(sizeof(struct ssh_channel));
4287     mainchan->localid = alloc_channel_id();
4288     ssh2_pkt_init(SSH2_MSG_CHANNEL_OPEN);
4289     ssh2_pkt_addstring("session");
4290     ssh2_pkt_adduint32(mainchan->localid);
4291     mainchan->v.v2.locwindow = OUR_V2_WINSIZE;
4292     ssh2_pkt_adduint32(mainchan->v.v2.locwindow);      /* our window size */
4293     ssh2_pkt_adduint32(0x4000UL);      /* our max pkt size */
4294     ssh2_pkt_send();
4295     crWaitUntilV(ispkt);
4296     if (pktin.type != SSH2_MSG_CHANNEL_OPEN_CONFIRMATION) {
4297         bombout(("Server refused to open a session"));
4298         crReturnV;
4299         /* FIXME: error data comes back in FAILURE packet */
4300     }
4301     if (ssh2_pkt_getuint32() != mainchan->localid) {
4302         bombout(("Server's channel confirmation cited wrong channel"));
4303         crReturnV;
4304     }
4305     mainchan->remoteid = ssh2_pkt_getuint32();
4306     mainchan->type = CHAN_MAINSESSION;
4307     mainchan->closes = 0;
4308     mainchan->v.v2.remwindow = ssh2_pkt_getuint32();
4309     mainchan->v.v2.remmaxpkt = ssh2_pkt_getuint32();
4310     bufchain_init(&mainchan->v.v2.outbuffer);
4311     add234(ssh_channels, mainchan);
4312     logevent("Opened channel for session");
4313
4314     /*
4315      * Potentially enable X11 forwarding.
4316      */
4317     if (cfg.x11_forward) {
4318         char proto[20], data[64];
4319         logevent("Requesting X11 forwarding");
4320         x11_invent_auth(proto, sizeof(proto), data, sizeof(data));
4321         ssh2_pkt_init(SSH2_MSG_CHANNEL_REQUEST);
4322         ssh2_pkt_adduint32(mainchan->remoteid);
4323         ssh2_pkt_addstring("x11-req");
4324         ssh2_pkt_addbool(1);           /* want reply */
4325         ssh2_pkt_addbool(0);           /* many connections */
4326         ssh2_pkt_addstring(proto);
4327         ssh2_pkt_addstring(data);
4328         ssh2_pkt_adduint32(0);         /* screen number */
4329         ssh2_pkt_send();
4330
4331         do {
4332             crWaitUntilV(ispkt);
4333             if (pktin.type == SSH2_MSG_CHANNEL_WINDOW_ADJUST) {
4334                 unsigned i = ssh2_pkt_getuint32();
4335                 struct ssh_channel *c;
4336                 c = find234(ssh_channels, &i, ssh_channelfind);
4337                 if (!c)
4338                     continue;          /* nonexistent channel */
4339                 c->v.v2.remwindow += ssh2_pkt_getuint32();
4340             }
4341         } while (pktin.type == SSH2_MSG_CHANNEL_WINDOW_ADJUST);
4342
4343         if (pktin.type != SSH2_MSG_CHANNEL_SUCCESS) {
4344             if (pktin.type != SSH2_MSG_CHANNEL_FAILURE) {
4345                 bombout(("Server got confused by X11 forwarding request"));
4346                 crReturnV;
4347             }
4348             logevent("X11 forwarding refused");
4349         } else {
4350             logevent("X11 forwarding enabled");
4351             ssh_X11_fwd_enabled = TRUE;
4352         }
4353     }
4354
4355     /*
4356      * Enable port forwardings.
4357      */
4358     {
4359         static char *e;                /* preserve across crReturn */
4360         char type;
4361         int n;
4362         int sport,dport;
4363         char sports[256], dports[256], host[256];
4364         char buf[1024];
4365
4366         ssh_rportfwds = newtree234(ssh_rportcmp_ssh2);
4367         /* Add port forwardings. */
4368         e = cfg.portfwd;
4369         while (*e) {
4370             type = *e++;
4371             n = 0;
4372             while (*e && *e != '\t')
4373                 sports[n++] = *e++;
4374             sports[n] = 0;
4375             if (*e == '\t')
4376                 e++;
4377             n = 0;
4378             while (*e && *e != ':')
4379                 host[n++] = *e++;
4380             host[n] = 0;
4381             if (*e == ':')
4382                 e++;
4383             n = 0;
4384             while (*e)
4385                 dports[n++] = *e++;
4386             dports[n] = 0;
4387             e++;
4388             dport = atoi(dports);
4389             sport = atoi(sports);
4390             if (sport && dport) {
4391                 if (type == 'L') {
4392                     pfd_addforward(host, dport, sport);
4393                     sprintf(buf, "Local port %d forwarding to %s:%d",
4394                             sport, host, dport);
4395                     logevent(buf);
4396                 } else {
4397                     struct ssh_rportfwd *pf;
4398                     pf = smalloc(sizeof(*pf));
4399                     strcpy(pf->dhost, host);
4400                     pf->dport = dport;
4401                     pf->sport = sport;
4402                     if (add234(ssh_rportfwds, pf) != pf) {
4403                         sprintf(buf, 
4404                                 "Duplicate remote port forwarding to %s:%d",
4405                                 host, dport);
4406                         logevent(buf);
4407                         sfree(pf);
4408                     } else {
4409                         sprintf(buf, "Requesting remote port %d (forwarded to %s:%d)",
4410                                 sport, host, dport);
4411                         logevent(buf);
4412                         ssh2_pkt_init(SSH2_MSG_GLOBAL_REQUEST);
4413                         ssh2_pkt_addstring("tcpip-forward");
4414                         ssh2_pkt_addbool(1);/* want reply */
4415                         ssh2_pkt_addstring("127.0.0.1");
4416                         ssh2_pkt_adduint32(sport);
4417                         ssh2_pkt_send();
4418
4419                         do {
4420                             crWaitUntilV(ispkt);
4421                             if (pktin.type == SSH2_MSG_CHANNEL_WINDOW_ADJUST) {
4422                                 unsigned i = ssh2_pkt_getuint32();
4423                                 struct ssh_channel *c;
4424                                 c = find234(ssh_channels, &i, ssh_channelfind);
4425                                 if (!c)
4426                                     continue;/* nonexistent channel */
4427                                 c->v.v2.remwindow += ssh2_pkt_getuint32();
4428                             }
4429                         } while (pktin.type == SSH2_MSG_CHANNEL_WINDOW_ADJUST);
4430
4431                         if (pktin.type != SSH2_MSG_REQUEST_SUCCESS) {
4432                             if (pktin.type != SSH2_MSG_REQUEST_FAILURE) {
4433                                 bombout(("Server got confused by port forwarding request"));
4434                                 crReturnV;
4435                             }
4436                             logevent("Server refused this port forwarding");
4437                         } else {
4438                             logevent("Remote port forwarding enabled");
4439                         }
4440                     }
4441                 }
4442             }
4443         }
4444     }
4445
4446     /*
4447      * Potentially enable agent forwarding.
4448      */
4449     if (cfg.agentfwd && agent_exists()) {
4450         logevent("Requesting OpenSSH-style agent forwarding");
4451         ssh2_pkt_init(SSH2_MSG_CHANNEL_REQUEST);
4452         ssh2_pkt_adduint32(mainchan->remoteid);
4453         ssh2_pkt_addstring("auth-agent-req@openssh.com");
4454         ssh2_pkt_addbool(1);           /* want reply */
4455         ssh2_pkt_send();
4456
4457         do {
4458             crWaitUntilV(ispkt);
4459             if (pktin.type == SSH2_MSG_CHANNEL_WINDOW_ADJUST) {
4460                 unsigned i = ssh2_pkt_getuint32();
4461                 struct ssh_channel *c;
4462                 c = find234(ssh_channels, &i, ssh_channelfind);
4463                 if (!c)
4464                     continue;          /* nonexistent channel */
4465                 c->v.v2.remwindow += ssh2_pkt_getuint32();
4466             }
4467         } while (pktin.type == SSH2_MSG_CHANNEL_WINDOW_ADJUST);
4468
4469         if (pktin.type != SSH2_MSG_CHANNEL_SUCCESS) {
4470             if (pktin.type != SSH2_MSG_CHANNEL_FAILURE) {
4471                 bombout(
4472                         ("Server got confused by agent forwarding request"));
4473                 crReturnV;
4474             }
4475             logevent("Agent forwarding refused");
4476         } else {
4477             logevent("Agent forwarding enabled");
4478             ssh_agentfwd_enabled = TRUE;
4479         }
4480     }
4481
4482     /*
4483      * Now allocate a pty for the session.
4484      */
4485     if (!cfg.nopty) {
4486         ssh2_pkt_init(SSH2_MSG_CHANNEL_REQUEST);
4487         ssh2_pkt_adduint32(mainchan->remoteid); /* recipient channel */
4488         ssh2_pkt_addstring("pty-req");
4489         ssh2_pkt_addbool(1);           /* want reply */
4490         ssh2_pkt_addstring(cfg.termtype);
4491         ssh2_pkt_adduint32(cols);
4492         ssh2_pkt_adduint32(rows);
4493         ssh2_pkt_adduint32(0);         /* pixel width */
4494         ssh2_pkt_adduint32(0);         /* pixel height */
4495         ssh2_pkt_addstring_start();
4496         ssh2_pkt_addstring_data("\0", 1);       /* TTY_OP_END, no special options */
4497         ssh2_pkt_send();
4498         ssh_state = SSH_STATE_INTERMED;
4499
4500         do {
4501             crWaitUntilV(ispkt);
4502             if (pktin.type == SSH2_MSG_CHANNEL_WINDOW_ADJUST) {
4503                 unsigned i = ssh2_pkt_getuint32();
4504                 struct ssh_channel *c;
4505                 c = find234(ssh_channels, &i, ssh_channelfind);
4506                 if (!c)
4507                     continue;          /* nonexistent channel */
4508                 c->v.v2.remwindow += ssh2_pkt_getuint32();
4509             }
4510         } while (pktin.type == SSH2_MSG_CHANNEL_WINDOW_ADJUST);
4511
4512         if (pktin.type != SSH2_MSG_CHANNEL_SUCCESS) {
4513             if (pktin.type != SSH2_MSG_CHANNEL_FAILURE) {
4514                 bombout(("Server got confused by pty request"));
4515                 crReturnV;
4516             }
4517             c_write_str("Server refused to allocate pty\r\n");
4518             ssh_editing = ssh_echoing = 1;
4519         } else {
4520             logevent("Allocated pty");
4521         }
4522     } else {
4523         ssh_editing = ssh_echoing = 1;
4524     }
4525
4526     /*
4527      * Start a shell or a remote command. We may have to attempt
4528      * this twice if the config data has provided a second choice
4529      * of command.
4530      */
4531     while (1) {
4532         int subsys;
4533         char *cmd;
4534
4535         if (ssh_fallback_cmd) {
4536             subsys = cfg.ssh_subsys2;
4537             cmd = cfg.remote_cmd_ptr2;
4538         } else {
4539             subsys = cfg.ssh_subsys;
4540             cmd = cfg.remote_cmd_ptr;
4541         }
4542
4543         ssh2_pkt_init(SSH2_MSG_CHANNEL_REQUEST);
4544         ssh2_pkt_adduint32(mainchan->remoteid); /* recipient channel */
4545         if (subsys) {
4546             ssh2_pkt_addstring("subsystem");
4547             ssh2_pkt_addbool(1);               /* want reply */
4548             ssh2_pkt_addstring(cmd);
4549         } else if (*cmd) {
4550             ssh2_pkt_addstring("exec");
4551             ssh2_pkt_addbool(1);               /* want reply */
4552             ssh2_pkt_addstring(cmd);
4553         } else {
4554             ssh2_pkt_addstring("shell");
4555             ssh2_pkt_addbool(1);               /* want reply */
4556         }
4557         ssh2_pkt_send();
4558         do {
4559             crWaitUntilV(ispkt);
4560             if (pktin.type == SSH2_MSG_CHANNEL_WINDOW_ADJUST) {
4561                 unsigned i = ssh2_pkt_getuint32();
4562                 struct ssh_channel *c;
4563                 c = find234(ssh_channels, &i, ssh_channelfind);
4564                 if (!c)
4565                     continue;          /* nonexistent channel */
4566                 c->v.v2.remwindow += ssh2_pkt_getuint32();
4567             }
4568         } while (pktin.type == SSH2_MSG_CHANNEL_WINDOW_ADJUST);
4569         if (pktin.type != SSH2_MSG_CHANNEL_SUCCESS) {
4570             if (pktin.type != SSH2_MSG_CHANNEL_FAILURE) {
4571                 bombout(("Server got confused by shell/command request"));
4572                 crReturnV;
4573             }
4574             /*
4575              * We failed to start the command. If this is the
4576              * fallback command, we really are finished; if it's
4577              * not, and if the fallback command exists, try falling
4578              * back to it before complaining.
4579              */
4580             if (!ssh_fallback_cmd && cfg.remote_cmd_ptr2 != NULL) {
4581                 logevent("Primary command failed; attempting fallback");
4582                 ssh_fallback_cmd = TRUE;
4583                 continue;
4584             }
4585             bombout(("Server refused to start a shell/command"));
4586             crReturnV;
4587         } else {
4588             logevent("Started a shell/command");
4589         }
4590         break;
4591     }
4592
4593     ssh_state = SSH_STATE_SESSION;
4594     if (size_needed)
4595         ssh_size();
4596     if (eof_needed)
4597         ssh_special(TS_EOF);
4598
4599     /*
4600      * Transfer data!
4601      */
4602     ldisc_send(NULL, 0);               /* cause ldisc to notice changes */
4603     ssh_send_ok = 1;
4604     while (1) {
4605         static int try_send;
4606         crReturnV;
4607         try_send = FALSE;
4608         if (ispkt) {
4609             if (pktin.type == SSH2_MSG_CHANNEL_DATA ||
4610                 pktin.type == SSH2_MSG_CHANNEL_EXTENDED_DATA) {
4611                 char *data;
4612                 int length;
4613                 unsigned i = ssh2_pkt_getuint32();
4614                 struct ssh_channel *c;
4615                 c = find234(ssh_channels, &i, ssh_channelfind);
4616                 if (!c)
4617                     continue;          /* nonexistent channel */
4618                 if (pktin.type == SSH2_MSG_CHANNEL_EXTENDED_DATA &&
4619                     ssh2_pkt_getuint32() != SSH2_EXTENDED_DATA_STDERR)
4620                     continue;          /* extended but not stderr */
4621                 ssh2_pkt_getstring(&data, &length);
4622                 if (data) {
4623                     int bufsize;
4624                     c->v.v2.locwindow -= length;
4625                     switch (c->type) {
4626                       case CHAN_MAINSESSION:
4627                         bufsize =
4628                             from_backend(pktin.type ==
4629                                          SSH2_MSG_CHANNEL_EXTENDED_DATA,
4630                                          data, length);
4631                         break;
4632                       case CHAN_X11:
4633                         bufsize = x11_send(c->u.x11.s, data, length);
4634                         break;
4635                       case CHAN_SOCKDATA:
4636                         bufsize = pfd_send(c->u.pfd.s, data, length);
4637                         break;
4638                       case CHAN_AGENT:
4639                         while (length > 0) {
4640                             if (c->u.a.lensofar < 4) {
4641                                 int l = min(4 - c->u.a.lensofar, length);
4642                                 memcpy(c->u.a.msglen + c->u.a.lensofar,
4643                                        data, l);
4644                                 data += l;
4645                                 length -= l;
4646                                 c->u.a.lensofar += l;
4647                             }
4648                             if (c->u.a.lensofar == 4) {
4649                                 c->u.a.totallen =
4650                                     4 + GET_32BIT(c->u.a.msglen);
4651                                 c->u.a.message = smalloc(c->u.a.totallen);
4652                                 memcpy(c->u.a.message, c->u.a.msglen, 4);
4653                             }
4654                             if (c->u.a.lensofar >= 4 && length > 0) {
4655                                 int l =
4656                                     min(c->u.a.totallen - c->u.a.lensofar,
4657                                         length);
4658                                 memcpy(c->u.a.message + c->u.a.lensofar,
4659                                        data, l);
4660                                 data += l;
4661                                 length -= l;
4662                                 c->u.a.lensofar += l;
4663                             }
4664                             if (c->u.a.lensofar == c->u.a.totallen) {
4665                                 void *reply, *sentreply;
4666                                 int replylen;
4667                                 agent_query(c->u.a.message,
4668                                             c->u.a.totallen, &reply,
4669                                             &replylen);
4670                                 if (reply)
4671                                     sentreply = reply;
4672                                 else {
4673                                     /* Fake SSH_AGENT_FAILURE. */
4674                                     sentreply = "\0\0\0\1\5";
4675                                     replylen = 5;
4676                                 }
4677                                 ssh2_add_channel_data(c, sentreply,
4678                                                       replylen);
4679                                 try_send = TRUE;
4680                                 if (reply)
4681                                     sfree(reply);
4682                                 sfree(c->u.a.message);
4683                                 c->u.a.lensofar = 0;
4684                             }
4685                         }
4686                         bufsize = 0;
4687                         break;
4688                     }
4689                     /*
4690                      * If we are not buffering too much data,
4691                      * enlarge the window again at the remote side.
4692                      */
4693                     if (bufsize < OUR_V2_WINSIZE)
4694                         ssh2_set_window(c, OUR_V2_WINSIZE - bufsize);
4695                 }
4696             } else if (pktin.type == SSH2_MSG_DISCONNECT) {
4697                 ssh_state = SSH_STATE_CLOSED;
4698                 logevent("Received disconnect message");
4699                 crReturnV;
4700             } else if (pktin.type == SSH2_MSG_CHANNEL_REQUEST) {
4701                 continue;              /* exit status et al; ignore (FIXME?) */
4702             } else if (pktin.type == SSH2_MSG_CHANNEL_EOF) {
4703                 unsigned i = ssh2_pkt_getuint32();
4704                 struct ssh_channel *c;
4705
4706                 c = find234(ssh_channels, &i, ssh_channelfind);
4707                 if (!c)
4708                     continue;          /* nonexistent channel */
4709
4710                 if (c->type == CHAN_X11) {
4711                     /*
4712                      * Remote EOF on an X11 channel means we should
4713                      * wrap up and close the channel ourselves.
4714                      */
4715                     x11_close(c->u.x11.s);
4716                     sshfwd_close(c);
4717                 } else if (c->type == CHAN_AGENT) {
4718                     sshfwd_close(c);
4719                 } else if (c->type == CHAN_SOCKDATA) {
4720                     pfd_close(c->u.pfd.s);
4721                     sshfwd_close(c);
4722                 }
4723             } else if (pktin.type == SSH2_MSG_CHANNEL_CLOSE) {
4724                 unsigned i = ssh2_pkt_getuint32();
4725                 struct ssh_channel *c;
4726
4727                 c = find234(ssh_channels, &i, ssh_channelfind);
4728                 if (!c)
4729                     continue;          /* nonexistent channel */
4730                 /* Do pre-close processing on the channel. */
4731                 switch (c->type) {
4732                   case CHAN_MAINSESSION:
4733                     break;             /* nothing to see here, move along */
4734                   case CHAN_X11:
4735                     if (c->u.x11.s != NULL)
4736                         x11_close(c->u.x11.s);
4737                     sshfwd_close(c);
4738                     break;
4739                   case CHAN_AGENT:
4740                     sshfwd_close(c);
4741                     break;
4742                   case CHAN_SOCKDATA:
4743                     if (c->u.pfd.s != NULL)
4744                         pfd_close(c->u.pfd.s);
4745                     sshfwd_close(c);
4746                     break;
4747                 }
4748                 if (c->closes == 0) {
4749                     ssh2_pkt_init(SSH2_MSG_CHANNEL_CLOSE);
4750                     ssh2_pkt_adduint32(c->remoteid);
4751                     ssh2_pkt_send();
4752                 }
4753                 del234(ssh_channels, c);
4754                 bufchain_clear(&c->v.v2.outbuffer);
4755                 sfree(c);
4756
4757                 /*
4758                  * See if that was the last channel left open.
4759                  */
4760                 if (count234(ssh_channels) == 0) {
4761                     logevent("All channels closed. Disconnecting");
4762                     ssh2_pkt_init(SSH2_MSG_DISCONNECT);
4763                     ssh2_pkt_adduint32(SSH2_DISCONNECT_BY_APPLICATION);
4764                     ssh2_pkt_addstring("All open channels closed");
4765                     ssh2_pkt_addstring("en");   /* language tag */
4766                     ssh2_pkt_send();
4767                     ssh_state = SSH_STATE_CLOSED;
4768                     crReturnV;
4769                 }
4770                 continue;              /* remote sends close; ignore (FIXME) */
4771             } else if (pktin.type == SSH2_MSG_CHANNEL_WINDOW_ADJUST) {
4772                 unsigned i = ssh2_pkt_getuint32();
4773                 struct ssh_channel *c;
4774                 c = find234(ssh_channels, &i, ssh_channelfind);
4775                 if (!c)
4776                     continue;          /* nonexistent channel */
4777                 c->v.v2.remwindow += ssh2_pkt_getuint32();
4778                 try_send = TRUE;
4779             } else if (pktin.type == SSH2_MSG_CHANNEL_OPEN_CONFIRMATION) {
4780                 unsigned i = ssh2_pkt_getuint32();
4781                 struct ssh_channel *c;
4782                 c = find234(ssh_channels, &i, ssh_channelfind);
4783                 if (!c)
4784                     continue;          /* nonexistent channel */
4785                 if (c->type != CHAN_SOCKDATA_DORMANT)
4786                     continue;          /* dunno why they're confirming this */
4787                 c->remoteid = ssh2_pkt_getuint32();
4788                 c->type = CHAN_SOCKDATA;
4789                 c->closes = 0;
4790                 c->v.v2.remwindow = ssh2_pkt_getuint32();
4791                 c->v.v2.remmaxpkt = ssh2_pkt_getuint32();
4792                 bufchain_init(&c->v.v2.outbuffer);
4793                 pfd_confirm(c->u.pfd.s);
4794             } else if (pktin.type == SSH2_MSG_CHANNEL_OPEN_FAILURE) {
4795                 unsigned i = ssh2_pkt_getuint32();
4796                 struct ssh_channel *c;
4797                 c = find234(ssh_channels, &i, ssh_channelfind);
4798                 if (!c)
4799                     continue;          /* nonexistent channel */
4800                 if (c->type != CHAN_SOCKDATA_DORMANT)
4801                     continue;          /* dunno why they're failing this */
4802
4803                 logevent("Forwarded connection refused by server");
4804
4805                 pfd_close(c->u.pfd.s);
4806
4807                 del234(ssh_channels, c);
4808                 sfree(c);
4809             } else if (pktin.type == SSH2_MSG_CHANNEL_OPEN) {
4810                 char *type;
4811                 int typelen;
4812                 char *error = NULL;
4813                 struct ssh_channel *c;
4814                 unsigned remid, winsize, pktsize;
4815                 ssh2_pkt_getstring(&type, &typelen);
4816                 c = smalloc(sizeof(struct ssh_channel));
4817
4818                 remid = ssh2_pkt_getuint32();
4819                 winsize = ssh2_pkt_getuint32();
4820                 pktsize = ssh2_pkt_getuint32();
4821
4822                 if (typelen == 3 && !memcmp(type, "x11", 3)) {
4823                     if (!ssh_X11_fwd_enabled)
4824                         error = "X11 forwarding is not enabled";
4825                     else if (x11_init(&c->u.x11.s, cfg.x11_display, c) !=
4826                              NULL) {
4827                         error = "Unable to open an X11 connection";
4828                     } else {
4829                         c->type = CHAN_X11;
4830                     }
4831                 } else if (typelen == 15 &&
4832                            !memcmp(type, "forwarded-tcpip", 15)) {
4833                     struct ssh_rportfwd pf, *realpf;
4834                     char *dummy;
4835                     int dummylen;
4836                     ssh2_pkt_getstring(&dummy, &dummylen);/* skip address */
4837                     pf.sport = ssh2_pkt_getuint32();
4838                     realpf = find234(ssh_rportfwds, &pf, NULL);
4839                     if (realpf == NULL) {
4840                         error = "Remote port is not recognised";
4841                     } else {
4842                         char *e = pfd_newconnect(&c->u.pfd.s, realpf->dhost,
4843                                                  realpf->dport, c);
4844                         char buf[1024];
4845                         sprintf(buf, "Received remote port open request for %s:%d",
4846                                 realpf->dhost, realpf->dport);
4847                         logevent(buf);
4848                         if (e != NULL) {
4849                             sprintf(buf, "Port open failed: %s", e);
4850                             logevent(buf);
4851                             error = "Port open failed";
4852                         } else {
4853                             logevent("Forwarded port opened successfully");
4854                             c->type = CHAN_SOCKDATA;
4855                         }
4856                     }
4857                 } else if (typelen == 22 &&
4858                            !memcmp(type, "auth-agent@openssh.com", 3)) {
4859                     if (!ssh_agentfwd_enabled)
4860                         error = "Agent forwarding is not enabled";
4861                     else {
4862                         c->type = CHAN_AGENT;   /* identify channel type */
4863                         c->u.a.lensofar = 0;
4864                     }
4865                 } else {
4866                     error = "Unsupported channel type requested";
4867                 }
4868
4869                 c->remoteid = remid;
4870                 if (error) {
4871                     ssh2_pkt_init(SSH2_MSG_CHANNEL_OPEN_FAILURE);
4872                     ssh2_pkt_adduint32(c->remoteid);
4873                     ssh2_pkt_adduint32(SSH2_OPEN_CONNECT_FAILED);
4874                     ssh2_pkt_addstring(error);
4875                     ssh2_pkt_addstring("en");   /* language tag */
4876                     ssh2_pkt_send();
4877                     sfree(c);
4878                 } else {
4879                     c->localid = alloc_channel_id();
4880                     c->closes = 0;
4881                     c->v.v2.locwindow = OUR_V2_WINSIZE;
4882                     c->v.v2.remwindow = winsize;
4883                     c->v.v2.remmaxpkt = pktsize;
4884                     bufchain_init(&c->v.v2.outbuffer);
4885                     add234(ssh_channels, c);
4886                     ssh2_pkt_init(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION);
4887                     ssh2_pkt_adduint32(c->remoteid);
4888                     ssh2_pkt_adduint32(c->localid);
4889                     ssh2_pkt_adduint32(c->v.v2.locwindow);
4890                     ssh2_pkt_adduint32(0x4000UL);       /* our max pkt size */
4891                     ssh2_pkt_send();
4892                 }
4893             } else {
4894                 bombout(("Strange packet received: type %d", pktin.type));
4895                 crReturnV;
4896             }
4897         } else {
4898             /*
4899              * We have spare data. Add it to the channel buffer.
4900              */
4901             ssh2_add_channel_data(mainchan, in, inlen);
4902             try_send = TRUE;
4903         }
4904         if (try_send) {
4905             int i;
4906             struct ssh_channel *c;
4907             /*
4908              * Try to send data on all channels if we can.
4909              */
4910             for (i = 0; NULL != (c = index234(ssh_channels, i)); i++) {
4911                 int bufsize = ssh2_try_send(c);
4912                 if (bufsize == 0) {
4913                     switch (c->type) {
4914                       case CHAN_MAINSESSION:
4915                         /* stdin need not receive an unthrottle
4916                          * notification since it will be polled */
4917                         break;
4918                       case CHAN_X11:
4919                         x11_unthrottle(c->u.x11.s);
4920                         break;
4921                       case CHAN_AGENT:
4922                         /* agent sockets are request/response and need no
4923                          * buffer management */
4924                         break;
4925                       case CHAN_SOCKDATA:
4926                         pfd_unthrottle(c->u.pfd.s);
4927                         break;
4928                     }
4929                 }
4930             }
4931         }
4932     }
4933
4934     crFinishV;
4935 }
4936
4937 /*
4938  * Handle the top-level SSH2 protocol.
4939  */
4940 static void ssh2_protocol(unsigned char *in, int inlen, int ispkt)
4941 {
4942     if (do_ssh2_transport(in, inlen, ispkt) == 0)
4943         return;
4944     do_ssh2_authconn(in, inlen, ispkt);
4945 }
4946
4947 /*
4948  * Called to set up the connection.
4949  *
4950  * Returns an error message, or NULL on success.
4951  */
4952 static char *ssh_init(char *host, int port, char **realhost)
4953 {
4954     char *p;
4955
4956 #ifdef MSCRYPTOAPI
4957     if (crypto_startup() == 0)
4958         return "Microsoft high encryption pack not installed!";
4959 #endif
4960
4961     ssh_send_ok = 0;
4962     ssh_editing = 0;
4963     ssh_echoing = 0;
4964     ssh1_throttle_count = 0;
4965     ssh_overall_bufsize = 0;
4966     ssh_fallback_cmd = 0;
4967
4968     p = connect_to_host(host, port, realhost);
4969     if (p != NULL)
4970         return p;
4971
4972     return NULL;
4973 }
4974
4975 /*
4976  * Called to send data down the Telnet connection.
4977  */
4978 static int ssh_send(char *buf, int len)
4979 {
4980     if (s == NULL || ssh_protocol == NULL)
4981         return 0;
4982
4983     ssh_protocol(buf, len, 0);
4984
4985     return ssh_sendbuffer();
4986 }
4987
4988 /*
4989  * Called to query the current amount of buffered stdin data.
4990  */
4991 static int ssh_sendbuffer(void)
4992 {
4993     int override_value;
4994
4995     if (s == NULL || ssh_protocol == NULL)
4996         return 0;
4997
4998     /*
4999      * If the SSH socket itself has backed up, add the total backup
5000      * size on that to any individual buffer on the stdin channel.
5001      */
5002     override_value = 0;
5003     if (ssh_throttled_all)
5004         override_value = ssh_overall_bufsize;
5005
5006     if (ssh_version == 1) {
5007         return override_value;
5008     } else if (ssh_version == 2) {
5009         if (!mainchan || mainchan->closes > 0)
5010             return override_value;
5011         else
5012             return override_value + bufchain_size(&mainchan->v.v2.outbuffer);
5013     }
5014
5015     return 0;
5016 }
5017
5018 /*
5019  * Called to set the size of the window from SSH's POV.
5020  */
5021 static void ssh_size(void)
5022 {
5023     switch (ssh_state) {
5024       case SSH_STATE_BEFORE_SIZE:
5025       case SSH_STATE_PREPACKET:
5026       case SSH_STATE_CLOSED:
5027         break;                         /* do nothing */
5028       case SSH_STATE_INTERMED:
5029         size_needed = TRUE;            /* buffer for later */
5030         break;
5031       case SSH_STATE_SESSION:
5032         if (!cfg.nopty) {
5033             if (ssh_version == 1) {
5034                 send_packet(SSH1_CMSG_WINDOW_SIZE,
5035                             PKT_INT, rows, PKT_INT, cols,
5036                             PKT_INT, 0, PKT_INT, 0, PKT_END);
5037             } else {
5038                 ssh2_pkt_init(SSH2_MSG_CHANNEL_REQUEST);
5039                 ssh2_pkt_adduint32(mainchan->remoteid);
5040                 ssh2_pkt_addstring("window-change");
5041                 ssh2_pkt_addbool(0);
5042                 ssh2_pkt_adduint32(cols);
5043                 ssh2_pkt_adduint32(rows);
5044                 ssh2_pkt_adduint32(0);
5045                 ssh2_pkt_adduint32(0);
5046                 ssh2_pkt_send();
5047             }
5048         }
5049         break;
5050     }
5051 }
5052
5053 /*
5054  * Send Telnet special codes. TS_EOF is useful for `plink', so you
5055  * can send an EOF and collect resulting output (e.g. `plink
5056  * hostname sort').
5057  */
5058 static void ssh_special(Telnet_Special code)
5059 {
5060     if (code == TS_EOF) {
5061         if (ssh_state != SSH_STATE_SESSION) {
5062             /*
5063              * Buffer the EOF in case we are pre-SESSION, so we can
5064              * send it as soon as we reach SESSION.
5065              */
5066             if (code == TS_EOF)
5067                 eof_needed = TRUE;
5068             return;
5069         }
5070         if (ssh_version == 1) {
5071             send_packet(SSH1_CMSG_EOF, PKT_END);
5072         } else {
5073             ssh2_pkt_init(SSH2_MSG_CHANNEL_EOF);
5074             ssh2_pkt_adduint32(mainchan->remoteid);
5075             ssh2_pkt_send();
5076         }
5077         logevent("Sent EOF message");
5078     } else if (code == TS_PING) {
5079         if (ssh_state == SSH_STATE_CLOSED
5080             || ssh_state == SSH_STATE_PREPACKET) return;
5081         if (ssh_version == 1) {
5082             send_packet(SSH1_MSG_IGNORE, PKT_STR, "", PKT_END);
5083         } else {
5084             ssh2_pkt_init(SSH2_MSG_IGNORE);
5085             ssh2_pkt_addstring_start();
5086             ssh2_pkt_send();
5087         }
5088     } else {
5089         /* do nothing */
5090     }
5091 }
5092
5093 void *new_sock_channel(Socket s)
5094 {
5095     struct ssh_channel *c;
5096     c = smalloc(sizeof(struct ssh_channel));
5097
5098     if (c) {
5099         c->remoteid = -1;              /* to be set when open confirmed */
5100         c->localid = alloc_channel_id();
5101         c->closes = 0;
5102         c->type = CHAN_SOCKDATA_DORMANT;/* identify channel type */
5103         c->u.pfd.s = s;
5104         add234(ssh_channels, c);
5105     }
5106     return c;
5107 }
5108
5109 /*
5110  * This is called when stdout/stderr (the entity to which
5111  * from_backend sends data) manages to clear some backlog.
5112  */
5113 void ssh_unthrottle(int bufsize)
5114 {
5115     if (ssh_version == 1) {
5116         if (ssh1_stdout_throttling && bufsize < SSH1_BUFFER_LIMIT) {
5117             ssh1_stdout_throttling = 0;
5118             ssh1_throttle(-1);
5119         }
5120     } else {
5121         if (mainchan && mainchan->closes == 0)
5122             ssh2_set_window(mainchan, OUR_V2_WINSIZE - bufsize);
5123     }
5124 }
5125
5126 void ssh_send_port_open(void *channel, char *hostname, int port, char *org)
5127 {
5128     struct ssh_channel *c = (struct ssh_channel *)channel;
5129     char buf[1024];
5130
5131     sprintf(buf, "Opening forwarded connection to %.512s:%d", hostname, port);
5132     logevent(buf);
5133
5134     if (ssh_version == 1) {
5135         send_packet(SSH1_MSG_PORT_OPEN,
5136                     PKT_INT, c->localid,
5137                     PKT_STR, hostname,
5138                     PKT_INT, port,
5139                     //PKT_STR, <org:orgport>,
5140                     PKT_END);
5141     } else {
5142         ssh2_pkt_init(SSH2_MSG_CHANNEL_OPEN);
5143         ssh2_pkt_addstring("direct-tcpip");
5144         ssh2_pkt_adduint32(c->localid);
5145         c->v.v2.locwindow = OUR_V2_WINSIZE;
5146         ssh2_pkt_adduint32(c->v.v2.locwindow);/* our window size */
5147         ssh2_pkt_adduint32(0x4000UL);      /* our max pkt size */
5148         ssh2_pkt_addstring(hostname);
5149         ssh2_pkt_adduint32(port);
5150         /*
5151          * We make up values for the originator data; partly it's
5152          * too much hassle to keep track, and partly I'm not
5153          * convinced the server should be told details like that
5154          * about my local network configuration.
5155          */
5156         ssh2_pkt_addstring("client-side-connection");
5157         ssh2_pkt_adduint32(0);
5158         ssh2_pkt_send();
5159     }
5160 }
5161
5162
5163 static Socket ssh_socket(void)
5164 {
5165     return s;
5166 }
5167
5168 static int ssh_sendok(void)
5169 {
5170     return ssh_send_ok;
5171 }
5172
5173 static int ssh_ldisc(int option)
5174 {
5175     if (option == LD_ECHO)
5176         return ssh_echoing;
5177     if (option == LD_EDIT)
5178         return ssh_editing;
5179     return FALSE;
5180 }
5181
5182 Backend ssh_backend = {
5183     ssh_init,
5184     ssh_send,
5185     ssh_sendbuffer,
5186     ssh_size,
5187     ssh_special,
5188     ssh_socket,
5189     ssh_sendok,
5190     ssh_ldisc,
5191     ssh_unthrottle,
5192     22
5193 };