Rationalise ordering of authentication operations. Still some work to do,
[u/mdw/putty] / ssh.c
1 #include <stdio.h>
2 #include <stdlib.h>
3 #include <stdarg.h>
4 #include <assert.h>
5 #ifndef AUTO_WINSOCK
6 #ifdef WINSOCK_TWO
7 #include <winsock2.h>
8 #else
9 #include <winsock.h>
10 #endif
11 #endif
12
13 #include "putty.h"
14 #include "tree234.h"
15 #include "ssh.h"
16 #include "scp.h"
17
18 #ifndef FALSE
19 #define FALSE 0
20 #endif
21 #ifndef TRUE
22 #define TRUE 1
23 #endif
24
25 #define logevent(s) { logevent(s); \
26 if ((flags & FLAG_STDERR) && (flags & FLAG_VERBOSE)) \
27 fprintf(stderr, "%s\n", s); }
28
29 #define bombout(msg) ( ssh_state == SSH_STATE_CLOSED, closesocket(s), \
30 s = INVALID_SOCKET, connection_fatal msg )
31
32 #define SSH1_MSG_DISCONNECT 1 /* 0x1 */
33 #define SSH1_SMSG_PUBLIC_KEY 2 /* 0x2 */
34 #define SSH1_CMSG_SESSION_KEY 3 /* 0x3 */
35 #define SSH1_CMSG_USER 4 /* 0x4 */
36 #define SSH1_CMSG_AUTH_RSA 6 /* 0x6 */
37 #define SSH1_SMSG_AUTH_RSA_CHALLENGE 7 /* 0x7 */
38 #define SSH1_CMSG_AUTH_RSA_RESPONSE 8 /* 0x8 */
39 #define SSH1_CMSG_AUTH_PASSWORD 9 /* 0x9 */
40 #define SSH1_CMSG_REQUEST_PTY 10 /* 0xa */
41 #define SSH1_CMSG_WINDOW_SIZE 11 /* 0xb */
42 #define SSH1_CMSG_EXEC_SHELL 12 /* 0xc */
43 #define SSH1_CMSG_EXEC_CMD 13 /* 0xd */
44 #define SSH1_SMSG_SUCCESS 14 /* 0xe */
45 #define SSH1_SMSG_FAILURE 15 /* 0xf */
46 #define SSH1_CMSG_STDIN_DATA 16 /* 0x10 */
47 #define SSH1_SMSG_STDOUT_DATA 17 /* 0x11 */
48 #define SSH1_SMSG_STDERR_DATA 18 /* 0x12 */
49 #define SSH1_CMSG_EOF 19 /* 0x13 */
50 #define SSH1_SMSG_EXIT_STATUS 20 /* 0x14 */
51 #define SSH1_MSG_CHANNEL_OPEN_CONFIRMATION 21 /* 0x15 */
52 #define SSH1_MSG_CHANNEL_OPEN_FAILURE 22 /* 0x16 */
53 #define SSH1_MSG_CHANNEL_DATA 23 /* 0x17 */
54 #define SSH1_MSG_CHANNEL_CLOSE 24 /* 0x18 */
55 #define SSH1_MSG_CHANNEL_CLOSE_CONFIRMATION 25 /* 0x19 */
56 #define SSH1_CMSG_AGENT_REQUEST_FORWARDING 30 /* 0x1e */
57 #define SSH1_SMSG_AGENT_OPEN 31 /* 0x1f */
58 #define SSH1_CMSG_EXIT_CONFIRMATION 33 /* 0x21 */
59 #define SSH1_MSG_IGNORE 32 /* 0x20 */
60 #define SSH1_MSG_DEBUG 36 /* 0x24 */
61 #define SSH1_CMSG_AUTH_TIS 39 /* 0x27 */
62 #define SSH1_SMSG_AUTH_TIS_CHALLENGE 40 /* 0x28 */
63 #define SSH1_CMSG_AUTH_TIS_RESPONSE 41 /* 0x29 */
64 #define SSH1_CMSG_AUTH_CCARD 70 /* 0x46 */
65 #define SSH1_SMSG_AUTH_CCARD_CHALLENGE 71 /* 0x47 */
66 #define SSH1_CMSG_AUTH_CCARD_RESPONSE 72 /* 0x48 */
67
68 #define SSH1_AUTH_TIS 5 /* 0x5 */
69 #define SSH1_AUTH_CCARD 16 /* 0x10 */
70
71 #define SSH_AGENTC_REQUEST_RSA_IDENTITIES 1 /* 0x1 */
72 #define SSH_AGENT_RSA_IDENTITIES_ANSWER 2 /* 0x2 */
73 #define SSH_AGENTC_RSA_CHALLENGE 3 /* 0x3 */
74 #define SSH_AGENT_RSA_RESPONSE 4 /* 0x4 */
75 #define SSH_AGENT_FAILURE 5 /* 0x5 */
76 #define SSH_AGENT_SUCCESS 6 /* 0x6 */
77 #define SSH_AGENTC_ADD_RSA_IDENTITY 7 /* 0x7 */
78 #define SSH_AGENTC_REMOVE_RSA_IDENTITY 8 /* 0x8 */
79
80 #define SSH2_MSG_DISCONNECT 1 /* 0x1 */
81 #define SSH2_MSG_IGNORE 2 /* 0x2 */
82 #define SSH2_MSG_UNIMPLEMENTED 3 /* 0x3 */
83 #define SSH2_MSG_DEBUG 4 /* 0x4 */
84 #define SSH2_MSG_SERVICE_REQUEST 5 /* 0x5 */
85 #define SSH2_MSG_SERVICE_ACCEPT 6 /* 0x6 */
86 #define SSH2_MSG_KEXINIT 20 /* 0x14 */
87 #define SSH2_MSG_NEWKEYS 21 /* 0x15 */
88 #define SSH2_MSG_KEXDH_INIT 30 /* 0x1e */
89 #define SSH2_MSG_KEXDH_REPLY 31 /* 0x1f */
90 #define SSH2_MSG_USERAUTH_REQUEST 50 /* 0x32 */
91 #define SSH2_MSG_USERAUTH_FAILURE 51 /* 0x33 */
92 #define SSH2_MSG_USERAUTH_SUCCESS 52 /* 0x34 */
93 #define SSH2_MSG_USERAUTH_BANNER 53 /* 0x35 */
94 #define SSH2_MSG_USERAUTH_PK_OK 60 /* 0x3c */
95 #define SSH2_MSG_USERAUTH_PASSWD_CHANGEREQ 60 /* 0x3c */
96 #define SSH2_MSG_GLOBAL_REQUEST 80 /* 0x50 */
97 #define SSH2_MSG_REQUEST_SUCCESS 81 /* 0x51 */
98 #define SSH2_MSG_REQUEST_FAILURE 82 /* 0x52 */
99 #define SSH2_MSG_CHANNEL_OPEN 90 /* 0x5a */
100 #define SSH2_MSG_CHANNEL_OPEN_CONFIRMATION 91 /* 0x5b */
101 #define SSH2_MSG_CHANNEL_OPEN_FAILURE 92 /* 0x5c */
102 #define SSH2_MSG_CHANNEL_WINDOW_ADJUST 93 /* 0x5d */
103 #define SSH2_MSG_CHANNEL_DATA 94 /* 0x5e */
104 #define SSH2_MSG_CHANNEL_EXTENDED_DATA 95 /* 0x5f */
105 #define SSH2_MSG_CHANNEL_EOF 96 /* 0x60 */
106 #define SSH2_MSG_CHANNEL_CLOSE 97 /* 0x61 */
107 #define SSH2_MSG_CHANNEL_REQUEST 98 /* 0x62 */
108 #define SSH2_MSG_CHANNEL_SUCCESS 99 /* 0x63 */
109 #define SSH2_MSG_CHANNEL_FAILURE 100 /* 0x64 */
110
111 #define SSH2_OPEN_ADMINISTRATIVELY_PROHIBITED 1 /* 0x1 */
112 #define SSH2_OPEN_CONNECT_FAILED 2 /* 0x2 */
113 #define SSH2_OPEN_UNKNOWN_CHANNEL_TYPE 3 /* 0x3 */
114 #define SSH2_OPEN_RESOURCE_SHORTAGE 4 /* 0x4 */
115
116 #define SSH2_EXTENDED_DATA_STDERR 1 /* 0x1 */
117
118 #define GET_32BIT(cp) \
119 (((unsigned long)(unsigned char)(cp)[0] << 24) | \
120 ((unsigned long)(unsigned char)(cp)[1] << 16) | \
121 ((unsigned long)(unsigned char)(cp)[2] << 8) | \
122 ((unsigned long)(unsigned char)(cp)[3]))
123
124 #define PUT_32BIT(cp, value) { \
125 (cp)[0] = (unsigned char)((value) >> 24); \
126 (cp)[1] = (unsigned char)((value) >> 16); \
127 (cp)[2] = (unsigned char)((value) >> 8); \
128 (cp)[3] = (unsigned char)(value); }
129
130 enum { PKT_END, PKT_INT, PKT_CHAR, PKT_DATA, PKT_STR, PKT_BIGNUM };
131
132 /* Coroutine mechanics for the sillier bits of the code */
133 #define crBegin1 static int crLine = 0;
134 #define crBegin2 switch(crLine) { case 0:;
135 #define crBegin crBegin1; crBegin2;
136 #define crFinish(z) } crLine = 0; return (z)
137 #define crFinishV } crLine = 0; return
138 #define crReturn(z) \
139 do {\
140 crLine=__LINE__; return (z); case __LINE__:;\
141 } while (0)
142 #define crReturnV \
143 do {\
144 crLine=__LINE__; return; case __LINE__:;\
145 } while (0)
146 #define crStop(z) do{ crLine = 0; return (z); }while(0)
147 #define crStopV do{ crLine = 0; return; }while(0)
148 #define crWaitUntil(c) do { crReturn(0); } while (!(c))
149 #define crWaitUntilV(c) do { crReturnV; } while (!(c))
150
151 extern struct ssh_cipher ssh_3des;
152 extern struct ssh_cipher ssh_3des_ssh2;
153 extern struct ssh_cipher ssh_des;
154 extern struct ssh_cipher ssh_blowfish_ssh1;
155 extern struct ssh_cipher ssh_blowfish_ssh2;
156
157 /*
158 * Ciphers for SSH2. We miss out single-DES because it isn't
159 * supported; also 3DES and Blowfish are both done differently from
160 * SSH1. (3DES uses outer chaining; Blowfish has the opposite
161 * endianness and different-sized keys.)
162 *
163 * The first entry in this array is set up to be whatever the user
164 * asks for as a cipher. Thereafter there is a fixed preference
165 * order of fallback ciphers.
166 */
167 struct ssh_cipher *ciphers[] = { NULL, &ssh_blowfish_ssh2, &ssh_3des_ssh2 };
168
169 extern struct ssh_kex ssh_diffiehellman;
170 struct ssh_kex *kex_algs[] = { &ssh_diffiehellman };
171
172 extern struct ssh_hostkey ssh_dss;
173 struct ssh_hostkey *hostkey_algs[] = { &ssh_dss };
174
175 extern struct ssh_mac ssh_sha1;
176
177 static SHA_State exhash;
178
179 static void nullmac_key(unsigned char *key) { }
180 static void nullmac_generate(unsigned char *blk, int len, unsigned long seq) { }
181 static int nullmac_verify(unsigned char *blk, int len, unsigned long seq) { return 1; }
182 struct ssh_mac ssh_mac_none = {
183 nullmac_key, nullmac_key, nullmac_generate, nullmac_verify, "none", 0
184 };
185 struct ssh_mac *macs[] = { &ssh_sha1, &ssh_mac_none };
186
187 struct ssh_compress ssh_comp_none = {
188 "none"
189 };
190 struct ssh_compress *compressions[] = { &ssh_comp_none };
191
192 static SOCKET s = INVALID_SOCKET;
193
194 static unsigned char session_key[32];
195 static struct ssh_cipher *cipher = NULL;
196 static struct ssh_cipher *cscipher = NULL;
197 static struct ssh_cipher *sccipher = NULL;
198 static struct ssh_mac *csmac = NULL;
199 static struct ssh_mac *scmac = NULL;
200 static struct ssh_compress *cscomp = NULL;
201 static struct ssh_compress *sccomp = NULL;
202 static struct ssh_kex *kex = NULL;
203 static struct ssh_hostkey *hostkey = NULL;
204 int (*ssh_get_password)(const char *prompt, char *str, int maxlen) = NULL;
205
206 static char *savedhost;
207 static int ssh_send_ok;
208
209 /*
210 * 2-3-4 tree storing channels.
211 */
212 struct ssh_channel {
213 unsigned remoteid, localid;
214 int type;
215 int closes;
216 union {
217 struct ssh_agent_channel {
218 unsigned char *message;
219 unsigned char msglen[4];
220 int lensofar, totallen;
221 } a;
222 struct ssh2_data_channel {
223 unsigned char *outbuffer;
224 unsigned outbuflen, outbufsize;
225 unsigned remwindow, remmaxpkt;
226 } v2;
227 } u;
228 };
229 static tree234 *ssh_channels; /* indexed by local id */
230 static int ssh_channelcmp(void *av, void *bv) {
231 struct ssh_channel *a = (struct ssh_channel *)av;
232 struct ssh_channel *b = (struct ssh_channel *)bv;
233 if (a->localid < b->localid) return -1;
234 if (a->localid > b->localid) return +1;
235 return 0;
236 }
237 static int ssh_channelfind(void *av, void *bv) {
238 unsigned *a = (unsigned *)av;
239 struct ssh_channel *b = (struct ssh_channel *)bv;
240 if (*a < b->localid) return -1;
241 if (*a > b->localid) return +1;
242 return 0;
243 }
244
245 static struct ssh_channel *mainchan; /* primary session channel */
246
247 static enum {
248 SSH_STATE_BEFORE_SIZE,
249 SSH_STATE_INTERMED,
250 SSH_STATE_SESSION,
251 SSH_STATE_CLOSED
252 } ssh_state = SSH_STATE_BEFORE_SIZE;
253
254 static int size_needed = FALSE;
255
256 static void s_write (char *buf, int len) {
257 while (len > 0) {
258 int i = send (s, buf, len, 0);
259 noise_ultralight(i);
260 if (i <= 0) {
261 bombout(("Lost connection while sending"));
262 return;
263 }
264 if (i > 0)
265 len -= i, buf += i;
266 }
267 }
268
269 static int s_read (char *buf, int len) {
270 int ret = 0;
271 while (len > 0) {
272 int i = recv (s, buf, len, 0);
273 noise_ultralight(i);
274 if (i > 0)
275 len -= i, buf += i, ret += i;
276 else
277 return i;
278 }
279 return ret;
280 }
281
282 static void c_write (char *buf, int len) {
283 if ((flags & FLAG_STDERR)) {
284 int i;
285 for (i = 0; i < len; i++)
286 if (buf[i] != '\r')
287 fputc(buf[i], stderr);
288 return;
289 }
290 while (len--)
291 c_write1(*buf++);
292 }
293
294 struct Packet {
295 long length;
296 int type;
297 unsigned char *data;
298 unsigned char *body;
299 long savedpos;
300 long maxlen;
301 };
302
303 static struct Packet pktin = { 0, 0, NULL, NULL, 0 };
304 static struct Packet pktout = { 0, 0, NULL, NULL, 0 };
305
306 static int ssh_version;
307 static void (*ssh_protocol)(unsigned char *in, int inlen, int ispkt);
308 static void ssh1_protocol(unsigned char *in, int inlen, int ispkt);
309 static void ssh2_protocol(unsigned char *in, int inlen, int ispkt);
310 static void ssh_size(void);
311
312 static int (*s_rdpkt)(unsigned char **data, int *datalen);
313
314 /*
315 * Collect incoming data in the incoming packet buffer.
316 * Decipher and verify the packet when it is completely read.
317 * Drop SSH1_MSG_DEBUG and SSH1_MSG_IGNORE packets.
318 * Update the *data and *datalen variables.
319 * Return the additional nr of bytes needed, or 0 when
320 * a complete packet is available.
321 */
322 static int ssh1_rdpkt(unsigned char **data, int *datalen)
323 {
324 static long len, pad, biglen, to_read;
325 static unsigned long realcrc, gotcrc;
326 static unsigned char *p;
327 static int i;
328
329 crBegin;
330
331 next_packet:
332
333 pktin.type = 0;
334 pktin.length = 0;
335
336 for (i = len = 0; i < 4; i++) {
337 while ((*datalen) == 0)
338 crReturn(4-i);
339 len = (len << 8) + **data;
340 (*data)++, (*datalen)--;
341 }
342
343 #ifdef FWHACK
344 if (len == 0x52656d6f) { /* "Remo"te server has closed ... */
345 len = 0x300; /* big enough to carry to end */
346 }
347 #endif
348
349 pad = 8 - (len % 8);
350 biglen = len + pad;
351 pktin.length = len - 5;
352
353 if (pktin.maxlen < biglen) {
354 pktin.maxlen = biglen;
355 pktin.data = (pktin.data == NULL ? malloc(biglen+APIEXTRA) :
356 realloc(pktin.data, biglen+APIEXTRA));
357 if (!pktin.data)
358 fatalbox("Out of memory");
359 }
360
361 to_read = biglen;
362 p = pktin.data;
363 while (to_read > 0) {
364 static int chunk;
365 chunk = to_read;
366 while ((*datalen) == 0)
367 crReturn(to_read);
368 if (chunk > (*datalen))
369 chunk = (*datalen);
370 memcpy(p, *data, chunk);
371 *data += chunk;
372 *datalen -= chunk;
373 p += chunk;
374 to_read -= chunk;
375 }
376
377 if (cipher)
378 cipher->decrypt(pktin.data, biglen);
379
380 pktin.type = pktin.data[pad];
381 pktin.body = pktin.data + pad + 1;
382
383 realcrc = crc32(pktin.data, biglen-4);
384 gotcrc = GET_32BIT(pktin.data+biglen-4);
385 if (gotcrc != realcrc) {
386 bombout(("Incorrect CRC received on packet"));
387 crReturn(0);
388 }
389
390 if (pktin.type == SSH1_SMSG_STDOUT_DATA ||
391 pktin.type == SSH1_SMSG_STDERR_DATA ||
392 pktin.type == SSH1_MSG_DEBUG ||
393 pktin.type == SSH1_SMSG_AUTH_TIS_CHALLENGE ||
394 pktin.type == SSH1_SMSG_AUTH_CCARD_CHALLENGE) {
395 long strlen = GET_32BIT(pktin.body);
396 if (strlen + 4 != pktin.length) {
397 bombout(("Received data packet with bogus string length"));
398 crReturn(0);
399 }
400 }
401
402 if (pktin.type == SSH1_MSG_DEBUG) {
403 /* log debug message */
404 char buf[80];
405 int strlen = GET_32BIT(pktin.body);
406 strcpy(buf, "Remote: ");
407 if (strlen > 70) strlen = 70;
408 memcpy(buf+8, pktin.body+4, strlen);
409 buf[8+strlen] = '\0';
410 logevent(buf);
411 goto next_packet;
412 } else if (pktin.type == SSH1_MSG_IGNORE) {
413 /* do nothing */
414 goto next_packet;
415 }
416
417 crFinish(0);
418 }
419
420 static int ssh2_rdpkt(unsigned char **data, int *datalen)
421 {
422 static long len, pad, payload, packetlen, maclen;
423 static int i;
424 static int cipherblk;
425 static unsigned long incoming_sequence = 0;
426
427 crBegin;
428
429 next_packet:
430
431 pktin.type = 0;
432 pktin.length = 0;
433
434 if (cipher)
435 cipherblk = cipher->blksize;
436 else
437 cipherblk = 8;
438 if (cipherblk < 8)
439 cipherblk = 8;
440
441 if (pktin.maxlen < cipherblk) {
442 pktin.maxlen = cipherblk;
443 pktin.data = (pktin.data == NULL ? malloc(cipherblk+APIEXTRA) :
444 realloc(pktin.data, cipherblk+APIEXTRA));
445 if (!pktin.data)
446 fatalbox("Out of memory");
447 }
448
449 /*
450 * Acquire and decrypt the first block of the packet. This will
451 * contain the length and padding details.
452 */
453 for (i = len = 0; i < cipherblk; i++) {
454 while ((*datalen) == 0)
455 crReturn(cipherblk-i);
456 pktin.data[i] = *(*data)++;
457 (*datalen)--;
458 }
459 #ifdef FWHACK
460 if (!memcmp(pktin.data, "Remo", 4)) {/* "Remo"te server has closed ... */
461 /* FIXME */
462 }
463 #endif
464 if (sccipher)
465 sccipher->decrypt(pktin.data, cipherblk);
466
467 /*
468 * Now get the length and padding figures.
469 */
470 len = GET_32BIT(pktin.data);
471 pad = pktin.data[4];
472
473 /*
474 * This enables us to deduce the payload length.
475 */
476 payload = len - pad - 1;
477
478 pktin.length = payload + 5;
479
480 /*
481 * So now we can work out the total packet length.
482 */
483 packetlen = len + 4;
484 maclen = scmac ? scmac->len : 0;
485
486 /*
487 * Adjust memory allocation if packet is too big.
488 */
489 if (pktin.maxlen < packetlen+maclen) {
490 pktin.maxlen = packetlen+maclen;
491 pktin.data = (pktin.data == NULL ? malloc(pktin.maxlen+APIEXTRA) :
492 realloc(pktin.data, pktin.maxlen+APIEXTRA));
493 if (!pktin.data)
494 fatalbox("Out of memory");
495 }
496
497 /*
498 * Read and decrypt the remainder of the packet.
499 */
500 for (i = cipherblk; i < packetlen + maclen; i++) {
501 while ((*datalen) == 0)
502 crReturn(packetlen + maclen - i);
503 pktin.data[i] = *(*data)++;
504 (*datalen)--;
505 }
506 /* Decrypt everything _except_ the MAC. */
507 if (sccipher)
508 sccipher->decrypt(pktin.data + cipherblk, packetlen - cipherblk);
509
510 #if 0
511 debug(("Got packet len=%d pad=%d\r\n", len, pad));
512 for (i = 0; i < packetlen; i++)
513 debug((" %02x", (unsigned char)pktin.data[i]));
514 debug(("\r\n"));
515 #endif
516
517 /*
518 * Check the MAC.
519 */
520 if (scmac && !scmac->verify(pktin.data, len+4, incoming_sequence)) {
521 bombout(("Incorrect MAC received on packet"));
522 crReturn(0);
523 }
524 incoming_sequence++; /* whether or not we MACed */
525
526 pktin.savedpos = 6;
527 pktin.type = pktin.data[5];
528
529 if (pktin.type == SSH2_MSG_IGNORE || pktin.type == SSH2_MSG_DEBUG)
530 goto next_packet; /* FIXME: print DEBUG message */
531
532 crFinish(0);
533 }
534
535 static void ssh_gotdata(unsigned char *data, int datalen)
536 {
537 while (datalen > 0) {
538 if ( s_rdpkt(&data, &datalen) == 0 ) {
539 ssh_protocol(NULL, 0, 1);
540 if (ssh_state == SSH_STATE_CLOSED) {
541 return;
542 }
543 }
544 }
545 }
546
547
548 static void s_wrpkt_start(int type, int len) {
549 int pad, biglen;
550
551 len += 5; /* type and CRC */
552 pad = 8 - (len%8);
553 biglen = len + pad;
554
555 pktout.length = len-5;
556 if (pktout.maxlen < biglen) {
557 pktout.maxlen = biglen;
558 #ifdef MSCRYPTOAPI
559 /* Allocate enough buffer space for extra block
560 * for MS CryptEncrypt() */
561 pktout.data = (pktout.data == NULL ? malloc(biglen+12) :
562 realloc(pktout.data, biglen+12));
563 #else
564 pktout.data = (pktout.data == NULL ? malloc(biglen+4) :
565 realloc(pktout.data, biglen+4));
566 #endif
567 if (!pktout.data)
568 fatalbox("Out of memory");
569 }
570
571 pktout.type = type;
572 pktout.body = pktout.data+4+pad+1;
573 }
574
575 static void s_wrpkt(void) {
576 int pad, len, biglen, i;
577 unsigned long crc;
578
579 len = pktout.length + 5; /* type and CRC */
580 pad = 8 - (len%8);
581 biglen = len + pad;
582
583 pktout.body[-1] = pktout.type;
584 for (i=0; i<pad; i++)
585 pktout.data[i+4] = random_byte();
586 crc = crc32(pktout.data+4, biglen-4);
587 PUT_32BIT(pktout.data+biglen, crc);
588 PUT_32BIT(pktout.data, len);
589
590 if (cipher)
591 cipher->encrypt(pktout.data+4, biglen);
592
593 s_write(pktout.data, biglen+4);
594 }
595
596 /*
597 * Construct a packet with the specified contents and
598 * send it to the server.
599 */
600 static void send_packet(int pkttype, ...)
601 {
602 va_list args;
603 unsigned char *p, *argp, argchar;
604 unsigned long argint;
605 int pktlen, argtype, arglen;
606 Bignum bn;
607
608 pktlen = 0;
609 va_start(args, pkttype);
610 while ((argtype = va_arg(args, int)) != PKT_END) {
611 switch (argtype) {
612 case PKT_INT:
613 (void) va_arg(args, int);
614 pktlen += 4;
615 break;
616 case PKT_CHAR:
617 (void) va_arg(args, char);
618 pktlen++;
619 break;
620 case PKT_DATA:
621 (void) va_arg(args, unsigned char *);
622 arglen = va_arg(args, int);
623 pktlen += arglen;
624 break;
625 case PKT_STR:
626 argp = va_arg(args, unsigned char *);
627 arglen = strlen(argp);
628 pktlen += 4 + arglen;
629 break;
630 case PKT_BIGNUM:
631 bn = va_arg(args, Bignum);
632 pktlen += ssh1_bignum_length(bn);
633 break;
634 default:
635 assert(0);
636 }
637 }
638 va_end(args);
639
640 s_wrpkt_start(pkttype, pktlen);
641 p = pktout.body;
642
643 va_start(args, pkttype);
644 while ((argtype = va_arg(args, int)) != PKT_END) {
645 switch (argtype) {
646 case PKT_INT:
647 argint = va_arg(args, int);
648 PUT_32BIT(p, argint);
649 p += 4;
650 break;
651 case PKT_CHAR:
652 argchar = va_arg(args, unsigned char);
653 *p = argchar;
654 p++;
655 break;
656 case PKT_DATA:
657 argp = va_arg(args, unsigned char *);
658 arglen = va_arg(args, int);
659 memcpy(p, argp, arglen);
660 p += arglen;
661 break;
662 case PKT_STR:
663 argp = va_arg(args, unsigned char *);
664 arglen = strlen(argp);
665 PUT_32BIT(p, arglen);
666 memcpy(p + 4, argp, arglen);
667 p += 4 + arglen;
668 break;
669 case PKT_BIGNUM:
670 bn = va_arg(args, Bignum);
671 p += ssh1_write_bignum(p, bn);
672 break;
673 }
674 }
675 va_end(args);
676
677 s_wrpkt();
678 }
679
680
681 /*
682 * Connect to specified host and port.
683 * Returns an error message, or NULL on success.
684 * Also places the canonical host name into `realhost'.
685 */
686 static char *connect_to_host(char *host, int port, char **realhost)
687 {
688 SOCKADDR_IN addr;
689 struct hostent *h;
690 unsigned long a;
691 #ifdef FWHACK
692 char *FWhost;
693 int FWport;
694 #endif
695
696 savedhost = malloc(1+strlen(host));
697 if (!savedhost)
698 fatalbox("Out of memory");
699 strcpy(savedhost, host);
700
701 if (port < 0)
702 port = 22; /* default ssh port */
703
704 #ifdef FWHACK
705 FWhost = host;
706 FWport = port;
707 host = FWSTR;
708 port = 23;
709 #endif
710
711 /*
712 * Try to find host.
713 */
714 if ( (a = inet_addr(host)) == (unsigned long) INADDR_NONE) {
715 if ( (h = gethostbyname(host)) == NULL)
716 switch (WSAGetLastError()) {
717 case WSAENETDOWN: return "Network is down";
718 case WSAHOST_NOT_FOUND: case WSANO_DATA:
719 return "Host does not exist";
720 case WSATRY_AGAIN: return "Host not found";
721 default: return "gethostbyname: unknown error";
722 }
723 memcpy (&a, h->h_addr, sizeof(a));
724 *realhost = h->h_name;
725 } else
726 *realhost = host;
727 #ifdef FWHACK
728 *realhost = FWhost;
729 #endif
730 a = ntohl(a);
731
732 /*
733 * Open socket.
734 */
735 s = socket(AF_INET, SOCK_STREAM, 0);
736 if (s == INVALID_SOCKET)
737 switch (WSAGetLastError()) {
738 case WSAENETDOWN: return "Network is down";
739 case WSAEAFNOSUPPORT: return "TCP/IP support not present";
740 default: return "socket(): unknown error";
741 }
742
743 /*
744 * Bind to local address.
745 */
746 addr.sin_family = AF_INET;
747 addr.sin_addr.s_addr = htonl(INADDR_ANY);
748 addr.sin_port = htons(0);
749 if (bind (s, (struct sockaddr *)&addr, sizeof(addr)) == SOCKET_ERROR)
750 switch (WSAGetLastError()) {
751 case WSAENETDOWN: return "Network is down";
752 default: return "bind(): unknown error";
753 }
754
755 /*
756 * Connect to remote address.
757 */
758 addr.sin_addr.s_addr = htonl(a);
759 addr.sin_port = htons((short)port);
760 if (connect (s, (struct sockaddr *)&addr, sizeof(addr)) == SOCKET_ERROR)
761 switch (WSAGetLastError()) {
762 case WSAENETDOWN: return "Network is down";
763 case WSAECONNREFUSED: return "Connection refused";
764 case WSAENETUNREACH: return "Network is unreachable";
765 case WSAEHOSTUNREACH: return "No route to host";
766 default: return "connect(): unknown error";
767 }
768
769 #ifdef FWHACK
770 send(s, "connect ", 8, 0);
771 send(s, FWhost, strlen(FWhost), 0);
772 {
773 char buf[20];
774 sprintf(buf, " %d\n", FWport);
775 send (s, buf, strlen(buf), 0);
776 }
777 #endif
778
779 return NULL;
780 }
781
782 static int ssh_versioncmp(char *a, char *b) {
783 char *ae, *be;
784 unsigned long av, bv;
785
786 av = strtoul(a, &ae, 10);
787 bv = strtoul(b, &be, 10);
788 if (av != bv) return (av < bv ? -1 : +1);
789 if (*ae == '.') ae++;
790 if (*be == '.') be++;
791 av = strtoul(ae, &ae, 10);
792 bv = strtoul(be, &be, 10);
793 if (av != bv) return (av < bv ? -1 : +1);
794 return 0;
795 }
796
797
798 /*
799 * Utility routine for putting an SSH-protocol `string' into a SHA
800 * state.
801 */
802 #include <stdio.h>
803 void sha_string(SHA_State *s, void *str, int len) {
804 unsigned char lenblk[4];
805 PUT_32BIT(lenblk, len);
806 SHA_Bytes(s, lenblk, 4);
807 SHA_Bytes(s, str, len);
808 }
809
810 /*
811 * SSH2 packet construction functions.
812 */
813 void ssh2_pkt_adddata(void *data, int len) {
814 pktout.length += len;
815 if (pktout.maxlen < pktout.length) {
816 pktout.maxlen = pktout.length + 256;
817 pktout.data = (pktout.data == NULL ? malloc(pktout.maxlen+APIEXTRA) :
818 realloc(pktout.data, pktout.maxlen+APIEXTRA));
819 if (!pktout.data)
820 fatalbox("Out of memory");
821 }
822 memcpy(pktout.data+pktout.length-len, data, len);
823 }
824 void ssh2_pkt_addbyte(unsigned char byte) {
825 ssh2_pkt_adddata(&byte, 1);
826 }
827 void ssh2_pkt_init(int pkt_type) {
828 pktout.length = 5;
829 ssh2_pkt_addbyte((unsigned char)pkt_type);
830 }
831 void ssh2_pkt_addbool(unsigned char value) {
832 ssh2_pkt_adddata(&value, 1);
833 }
834 void ssh2_pkt_adduint32(unsigned long value) {
835 unsigned char x[4];
836 PUT_32BIT(x, value);
837 ssh2_pkt_adddata(x, 4);
838 }
839 void ssh2_pkt_addstring_start(void) {
840 ssh2_pkt_adduint32(0);
841 pktout.savedpos = pktout.length;
842 }
843 void ssh2_pkt_addstring_str(char *data) {
844 ssh2_pkt_adddata(data, strlen(data));
845 PUT_32BIT(pktout.data + pktout.savedpos - 4,
846 pktout.length - pktout.savedpos);
847 }
848 void ssh2_pkt_addstring_data(char *data, int len) {
849 ssh2_pkt_adddata(data, len);
850 PUT_32BIT(pktout.data + pktout.savedpos - 4,
851 pktout.length - pktout.savedpos);
852 }
853 void ssh2_pkt_addstring(char *data) {
854 ssh2_pkt_addstring_start();
855 ssh2_pkt_addstring_str(data);
856 }
857 char *ssh2_mpint_fmt(Bignum b, int *len) {
858 unsigned char *p;
859 int i, n = b[0];
860 p = malloc(n * 2 + 1);
861 if (!p)
862 fatalbox("out of memory");
863 p[0] = 0;
864 for (i = 0; i < n; i++) {
865 p[i*2+1] = (b[n-i] >> 8) & 0xFF;
866 p[i*2+2] = (b[n-i] ) & 0xFF;
867 }
868 i = 0;
869 while (p[i] == 0 && (p[i+1] & 0x80) == 0)
870 i++;
871 memmove(p, p+i, n*2+1-i);
872 *len = n*2+1-i;
873 return p;
874 }
875 void ssh2_pkt_addmp(Bignum b) {
876 unsigned char *p;
877 int len;
878 p = ssh2_mpint_fmt(b, &len);
879 ssh2_pkt_addstring_start();
880 ssh2_pkt_addstring_data(p, len);
881 free(p);
882 }
883 void ssh2_pkt_send(void) {
884 int cipherblk, maclen, padding, i;
885 static unsigned long outgoing_sequence = 0;
886
887 /*
888 * Add padding. At least four bytes, and must also bring total
889 * length (minus MAC) up to a multiple of the block size.
890 */
891 cipherblk = cipher ? cipher->blksize : 8; /* block size */
892 cipherblk = cipherblk < 8 ? 8 : cipherblk; /* or 8 if blksize < 8 */
893 padding = 4;
894 padding += (cipherblk - (pktout.length + padding) % cipherblk) % cipherblk;
895 pktout.data[4] = padding;
896 for (i = 0; i < padding; i++)
897 pktout.data[pktout.length + i] = random_byte();
898 PUT_32BIT(pktout.data, pktout.length + padding - 4);
899 if (csmac)
900 csmac->generate(pktout.data, pktout.length + padding,
901 outgoing_sequence);
902 outgoing_sequence++; /* whether or not we MACed */
903
904 #if 0
905 debug(("Sending packet len=%d\r\n", pktout.length+padding));
906 for (i = 0; i < pktout.length+padding; i++)
907 debug((" %02x", (unsigned char)pktout.data[i]));
908 debug(("\r\n"));
909 #endif
910
911 if (cscipher)
912 cscipher->encrypt(pktout.data, pktout.length + padding);
913 maclen = csmac ? csmac->len : 0;
914
915 s_write(pktout.data, pktout.length + padding + maclen);
916 }
917
918 #if 0
919 void bndebug(char *string, Bignum b) {
920 unsigned char *p;
921 int i, len;
922 p = ssh2_mpint_fmt(b, &len);
923 debug(("%s", string));
924 for (i = 0; i < len; i++)
925 debug((" %02x", p[i]));
926 debug(("\r\n"));
927 free(p);
928 }
929 #endif
930
931 void sha_mpint(SHA_State *s, Bignum b) {
932 unsigned char *p;
933 int len;
934 p = ssh2_mpint_fmt(b, &len);
935 sha_string(s, p, len);
936 free(p);
937 }
938
939 /*
940 * SSH2 packet decode functions.
941 */
942 unsigned long ssh2_pkt_getuint32(void) {
943 unsigned long value;
944 if (pktin.length - pktin.savedpos < 4)
945 return 0; /* arrgh, no way to decline (FIXME?) */
946 value = GET_32BIT(pktin.data+pktin.savedpos);
947 pktin.savedpos += 4;
948 return value;
949 }
950 void ssh2_pkt_getstring(char **p, int *length) {
951 *p = NULL;
952 if (pktin.length - pktin.savedpos < 4)
953 return;
954 *length = GET_32BIT(pktin.data+pktin.savedpos);
955 pktin.savedpos += 4;
956 if (pktin.length - pktin.savedpos < *length)
957 return;
958 *p = pktin.data+pktin.savedpos;
959 pktin.savedpos += *length;
960 }
961 Bignum ssh2_pkt_getmp(void) {
962 char *p;
963 int i, j, length;
964 Bignum b;
965
966 ssh2_pkt_getstring(&p, &length);
967 if (!p)
968 return NULL;
969 if (p[0] & 0x80) {
970 bombout(("internal error: Can't handle negative mpints"));
971 return NULL;
972 }
973 b = newbn((length+1)/2);
974 for (i = 0; i < length; i++) {
975 j = length - 1 - i;
976 if (j & 1)
977 b[j/2+1] |= ((unsigned char)p[i]) << 8;
978 else
979 b[j/2+1] |= ((unsigned char)p[i]);
980 }
981 return b;
982 }
983
984 static int do_ssh_init(void) {
985 char c, *vsp;
986 char version[10];
987 char vstring[80];
988 char vlog[sizeof(vstring)+20];
989 int i;
990
991 #ifdef FWHACK
992 i = 0;
993 while (s_read(&c, 1) == 1) {
994 if (c == 'S' && i < 2) i++;
995 else if (c == 'S' && i == 2) i = 2;
996 else if (c == 'H' && i == 2) break;
997 else i = 0;
998 }
999 #else
1000 if (s_read(&c,1) != 1 || c != 'S') return 0;
1001 if (s_read(&c,1) != 1 || c != 'S') return 0;
1002 if (s_read(&c,1) != 1 || c != 'H') return 0;
1003 #endif
1004 strcpy(vstring, "SSH-");
1005 vsp = vstring+4;
1006 if (s_read(&c,1) != 1 || c != '-') return 0;
1007 i = 0;
1008 while (1) {
1009 if (s_read(&c,1) != 1)
1010 return 0;
1011 if (vsp < vstring+sizeof(vstring)-1)
1012 *vsp++ = c;
1013 if (i >= 0) {
1014 if (c == '-') {
1015 version[i] = '\0';
1016 i = -1;
1017 } else if (i < sizeof(version)-1)
1018 version[i++] = c;
1019 }
1020 else if (c == '\n')
1021 break;
1022 }
1023
1024 *vsp = 0;
1025 sprintf(vlog, "Server version: %s", vstring);
1026 vlog[strcspn(vlog, "\r\n")] = '\0';
1027 logevent(vlog);
1028
1029 /*
1030 * Server version "1.99" means we can choose whether we use v1
1031 * or v2 protocol. Choice is based on cfg.sshprot.
1032 */
1033 if (ssh_versioncmp(version, cfg.sshprot == 1 ? "2.0" : "1.99") >= 0) {
1034 /*
1035 * This is a v2 server. Begin v2 protocol.
1036 */
1037 char *verstring = "SSH-2.0-PuTTY";
1038 SHA_Init(&exhash);
1039 /*
1040 * Hash our version string and their version string.
1041 */
1042 sha_string(&exhash, verstring, strlen(verstring));
1043 sha_string(&exhash, vstring, strcspn(vstring, "\r\n"));
1044 sprintf(vstring, "%s\n", verstring);
1045 sprintf(vlog, "We claim version: %s", verstring);
1046 logevent(vlog);
1047 logevent("Using SSH protocol version 2");
1048 s_write(vstring, strlen(vstring));
1049 ssh_protocol = ssh2_protocol;
1050 ssh_version = 2;
1051 s_rdpkt = ssh2_rdpkt;
1052 } else {
1053 /*
1054 * This is a v1 server. Begin v1 protocol.
1055 */
1056 sprintf(vstring, "SSH-%s-PuTTY\n",
1057 (ssh_versioncmp(version, "1.5") <= 0 ? version : "1.5"));
1058 sprintf(vlog, "We claim version: %s", vstring);
1059 vlog[strcspn(vlog, "\r\n")] = '\0';
1060 logevent(vlog);
1061 logevent("Using SSH protocol version 1");
1062 s_write(vstring, strlen(vstring));
1063 ssh_protocol = ssh1_protocol;
1064 ssh_version = 1;
1065 s_rdpkt = ssh1_rdpkt;
1066 }
1067 ssh_send_ok = 0;
1068 return 1;
1069 }
1070
1071 /*
1072 * Handle the key exchange and user authentication phases.
1073 */
1074 static int do_ssh1_login(unsigned char *in, int inlen, int ispkt)
1075 {
1076 int i, j, len;
1077 unsigned char *rsabuf, *keystr1, *keystr2;
1078 unsigned char cookie[8];
1079 struct RSAKey servkey, hostkey;
1080 struct MD5Context md5c;
1081 static unsigned long supported_ciphers_mask, supported_auths_mask;
1082 static int tried_publickey;
1083 static unsigned char session_id[16];
1084 int cipher_type;
1085
1086 crBegin;
1087
1088 if (!ispkt) crWaitUntil(ispkt);
1089
1090 if (pktin.type != SSH1_SMSG_PUBLIC_KEY) {
1091 bombout(("Public key packet not received"));
1092 crReturn(0);
1093 }
1094
1095 logevent("Received public keys");
1096
1097 memcpy(cookie, pktin.body, 8);
1098
1099 i = makekey(pktin.body+8, &servkey, &keystr1, 0);
1100 j = makekey(pktin.body+8+i, &hostkey, &keystr2, 0);
1101
1102 /*
1103 * Hash the host key and print the hash in the log box. Just as
1104 * a last resort in case the registry's host key checking is
1105 * compromised, we'll allow the user some ability to verify
1106 * host keys by eye.
1107 */
1108 MD5Init(&md5c);
1109 MD5Update(&md5c, keystr2, hostkey.bytes);
1110 MD5Final(session_id, &md5c);
1111 {
1112 char logmsg[80];
1113 int i;
1114 logevent("Host key MD5 is:");
1115 strcpy(logmsg, " ");
1116 for (i = 0; i < 16; i++)
1117 sprintf(logmsg+strlen(logmsg), "%02x", session_id[i]);
1118 logevent(logmsg);
1119 }
1120
1121 supported_ciphers_mask = GET_32BIT(pktin.body+12+i+j);
1122 supported_auths_mask = GET_32BIT(pktin.body+16+i+j);
1123
1124 MD5Init(&md5c);
1125 MD5Update(&md5c, keystr2, hostkey.bytes);
1126 MD5Update(&md5c, keystr1, servkey.bytes);
1127 MD5Update(&md5c, pktin.body, 8);
1128 MD5Final(session_id, &md5c);
1129
1130 for (i=0; i<32; i++)
1131 session_key[i] = random_byte();
1132
1133 len = (hostkey.bytes > servkey.bytes ? hostkey.bytes : servkey.bytes);
1134
1135 rsabuf = malloc(len);
1136 if (!rsabuf)
1137 fatalbox("Out of memory");
1138
1139 /*
1140 * Verify the host key.
1141 */
1142 {
1143 /*
1144 * First format the key into a string.
1145 */
1146 int len = rsastr_len(&hostkey);
1147 char *keystr = malloc(len);
1148 if (!keystr)
1149 fatalbox("Out of memory");
1150 rsastr_fmt(keystr, &hostkey);
1151 verify_ssh_host_key(savedhost, keystr);
1152 free(keystr);
1153 }
1154
1155 for (i=0; i<32; i++) {
1156 rsabuf[i] = session_key[i];
1157 if (i < 16)
1158 rsabuf[i] ^= session_id[i];
1159 }
1160
1161 if (hostkey.bytes > servkey.bytes) {
1162 rsaencrypt(rsabuf, 32, &servkey);
1163 rsaencrypt(rsabuf, servkey.bytes, &hostkey);
1164 } else {
1165 rsaencrypt(rsabuf, 32, &hostkey);
1166 rsaencrypt(rsabuf, hostkey.bytes, &servkey);
1167 }
1168
1169 logevent("Encrypted session key");
1170
1171 cipher_type = cfg.cipher == CIPHER_BLOWFISH ? SSH_CIPHER_BLOWFISH :
1172 cfg.cipher == CIPHER_DES ? SSH_CIPHER_DES :
1173 SSH_CIPHER_3DES;
1174 if ((supported_ciphers_mask & (1 << cipher_type)) == 0) {
1175 c_write("Selected cipher not supported, falling back to 3DES\r\n", 53);
1176 cipher_type = SSH_CIPHER_3DES;
1177 }
1178 switch (cipher_type) {
1179 case SSH_CIPHER_3DES: logevent("Using 3DES encryption"); break;
1180 case SSH_CIPHER_DES: logevent("Using single-DES encryption"); break;
1181 case SSH_CIPHER_BLOWFISH: logevent("Using Blowfish encryption"); break;
1182 }
1183
1184 send_packet(SSH1_CMSG_SESSION_KEY,
1185 PKT_CHAR, cipher_type,
1186 PKT_DATA, cookie, 8,
1187 PKT_CHAR, (len*8) >> 8, PKT_CHAR, (len*8) & 0xFF,
1188 PKT_DATA, rsabuf, len,
1189 PKT_INT, 0,
1190 PKT_END);
1191
1192 logevent("Trying to enable encryption...");
1193
1194 free(rsabuf);
1195
1196 cipher = cipher_type == SSH_CIPHER_BLOWFISH ? &ssh_blowfish_ssh1 :
1197 cipher_type == SSH_CIPHER_DES ? &ssh_des :
1198 &ssh_3des;
1199 cipher->sesskey(session_key);
1200
1201 crWaitUntil(ispkt);
1202
1203 if (pktin.type != SSH1_SMSG_SUCCESS) {
1204 bombout(("Encryption not successfully enabled"));
1205 crReturn(0);
1206 }
1207
1208 logevent("Successfully started encryption");
1209
1210 fflush(stdout);
1211 {
1212 static char username[100];
1213 static int pos = 0;
1214 static char c;
1215 if ((flags & FLAG_INTERACTIVE) && !*cfg.username) {
1216 c_write("login as: ", 10);
1217 ssh_send_ok = 1;
1218 while (pos >= 0) {
1219 crWaitUntil(!ispkt);
1220 while (inlen--) switch (c = *in++) {
1221 case 10: case 13:
1222 username[pos] = 0;
1223 pos = -1;
1224 break;
1225 case 8: case 127:
1226 if (pos > 0) {
1227 c_write("\b \b", 3);
1228 pos--;
1229 }
1230 break;
1231 case 21: case 27:
1232 while (pos > 0) {
1233 c_write("\b \b", 3);
1234 pos--;
1235 }
1236 break;
1237 case 3: case 4:
1238 random_save_seed();
1239 exit(0);
1240 break;
1241 default:
1242 if (((c >= ' ' && c <= '~') ||
1243 ((unsigned char)c >= 160)) && pos < 40) {
1244 username[pos++] = c;
1245 c_write(&c, 1);
1246 }
1247 break;
1248 }
1249 }
1250 c_write("\r\n", 2);
1251 username[strcspn(username, "\n\r")] = '\0';
1252 } else {
1253 char stuff[200];
1254 strncpy(username, cfg.username, 99);
1255 username[99] = '\0';
1256 if ((flags & FLAG_VERBOSE) || (flags & FLAG_INTERACTIVE)) {
1257 sprintf(stuff, "Sent username \"%s\".\r\n", username);
1258 c_write(stuff, strlen(stuff));
1259 }
1260 }
1261
1262 send_packet(SSH1_CMSG_USER, PKT_STR, username, PKT_END);
1263 {
1264 char userlog[20+sizeof(username)];
1265 sprintf(userlog, "Sent username \"%s\"", username);
1266 logevent(userlog);
1267 }
1268 }
1269
1270 crWaitUntil(ispkt);
1271
1272 tried_publickey = 0;
1273
1274 while (pktin.type == SSH1_SMSG_FAILURE) {
1275 static char password[100];
1276 static char prompt[200];
1277 static int pos;
1278 static char c;
1279 static int pwpkt_type;
1280 /*
1281 * Show password prompt, having first obtained it via a TIS
1282 * or CryptoCard exchange if we're doing TIS or CryptoCard
1283 * authentication.
1284 */
1285 pwpkt_type = SSH1_CMSG_AUTH_PASSWORD;
1286 if (agent_exists()) {
1287 /*
1288 * Attempt RSA authentication using Pageant.
1289 */
1290 static unsigned char request[5], *response, *p;
1291 static int responselen;
1292 static int i, nkeys;
1293 static int authed = FALSE;
1294 void *r;
1295
1296 logevent("Pageant is running. Requesting keys.");
1297
1298 /* Request the keys held by the agent. */
1299 PUT_32BIT(request, 1);
1300 request[4] = SSH_AGENTC_REQUEST_RSA_IDENTITIES;
1301 agent_query(request, 5, &r, &responselen);
1302 response = (unsigned char *)r;
1303 if (response) {
1304 p = response + 5;
1305 nkeys = GET_32BIT(p); p += 4;
1306 { char buf[64]; sprintf(buf, "Pageant has %d keys", nkeys);
1307 logevent(buf); }
1308 for (i = 0; i < nkeys; i++) {
1309 static struct RSAKey key;
1310 static Bignum challenge;
1311 static char *commentp;
1312 static int commentlen;
1313
1314 { char buf[64]; sprintf(buf, "Trying Pageant key #%d", i);
1315 logevent(buf); }
1316 p += 4;
1317 p += ssh1_read_bignum(p, &key.exponent);
1318 p += ssh1_read_bignum(p, &key.modulus);
1319 commentlen = GET_32BIT(p); p += 4;
1320 commentp = p; p += commentlen;
1321 send_packet(SSH1_CMSG_AUTH_RSA,
1322 PKT_BIGNUM, key.modulus, PKT_END);
1323 crWaitUntil(ispkt);
1324 if (pktin.type != SSH1_SMSG_AUTH_RSA_CHALLENGE) {
1325 logevent("Key refused");
1326 continue;
1327 }
1328 logevent("Received RSA challenge");
1329 ssh1_read_bignum(pktin.body, &challenge);
1330 {
1331 char *agentreq, *q, *ret;
1332 int len, retlen;
1333 len = 1 + 4; /* message type, bit count */
1334 len += ssh1_bignum_length(key.exponent);
1335 len += ssh1_bignum_length(key.modulus);
1336 len += ssh1_bignum_length(challenge);
1337 len += 16; /* session id */
1338 len += 4; /* response format */
1339 agentreq = malloc(4 + len);
1340 PUT_32BIT(agentreq, len);
1341 q = agentreq + 4;
1342 *q++ = SSH_AGENTC_RSA_CHALLENGE;
1343 PUT_32BIT(q, ssh1_bignum_bitcount(key.modulus));
1344 q += 4;
1345 q += ssh1_write_bignum(q, key.exponent);
1346 q += ssh1_write_bignum(q, key.modulus);
1347 q += ssh1_write_bignum(q, challenge);
1348 memcpy(q, session_id, 16); q += 16;
1349 PUT_32BIT(q, 1); /* response format */
1350 agent_query(agentreq, len+4, &ret, &retlen);
1351 free(agentreq);
1352 if (ret) {
1353 if (ret[4] == SSH_AGENT_RSA_RESPONSE) {
1354 logevent("Sending Pageant's response");
1355 send_packet(SSH1_CMSG_AUTH_RSA_RESPONSE,
1356 PKT_DATA, ret+5, 16, PKT_END);
1357 free(ret);
1358 crWaitUntil(ispkt);
1359 if (pktin.type == SSH1_SMSG_SUCCESS) {
1360 logevent("Pageant's response accepted");
1361 c_write("Authenticated using RSA key \"",
1362 29);
1363 c_write(commentp, commentlen);
1364 c_write("\" from agent\r\n", 14);
1365 authed = TRUE;
1366 } else
1367 logevent("Pageant's response not accepted");
1368 } else {
1369 logevent("Pageant failed to answer challenge");
1370 free(ret);
1371 }
1372 } else {
1373 logevent("No reply received from Pageant");
1374 }
1375 }
1376 freebn(key.exponent);
1377 freebn(key.modulus);
1378 freebn(challenge);
1379 if (authed)
1380 break;
1381 }
1382 }
1383 if (authed)
1384 break;
1385 }
1386 if (*cfg.keyfile && !tried_publickey)
1387 pwpkt_type = SSH1_CMSG_AUTH_RSA;
1388
1389 if (pktin.type == SSH1_SMSG_FAILURE &&
1390 cfg.try_tis_auth &&
1391 (supported_auths_mask & (1<<SSH1_AUTH_TIS))) {
1392 pwpkt_type = SSH1_CMSG_AUTH_TIS_RESPONSE;
1393 logevent("Requested TIS authentication");
1394 send_packet(SSH1_CMSG_AUTH_TIS, PKT_END);
1395 crWaitUntil(ispkt);
1396 if (pktin.type != SSH1_SMSG_AUTH_TIS_CHALLENGE) {
1397 logevent("TIS authentication declined");
1398 if (flags & FLAG_INTERACTIVE)
1399 c_write("TIS authentication refused.\r\n", 29);
1400 } else {
1401 int challengelen = ((pktin.body[0] << 24) |
1402 (pktin.body[1] << 16) |
1403 (pktin.body[2] << 8) |
1404 (pktin.body[3]));
1405 logevent("Received TIS challenge");
1406 if (challengelen > sizeof(prompt)-1)
1407 challengelen = sizeof(prompt)-1; /* prevent overrun */
1408 memcpy(prompt, pktin.body+4, challengelen);
1409 prompt[challengelen] = '\0';
1410 }
1411 }
1412 if (pktin.type == SSH1_SMSG_FAILURE &&
1413 cfg.try_tis_auth &&
1414 (supported_auths_mask & (1<<SSH1_AUTH_CCARD))) {
1415 pwpkt_type = SSH1_CMSG_AUTH_CCARD_RESPONSE;
1416 logevent("Requested CryptoCard authentication");
1417 send_packet(SSH1_CMSG_AUTH_CCARD, PKT_END);
1418 crWaitUntil(ispkt);
1419 if (pktin.type != SSH1_SMSG_AUTH_CCARD_CHALLENGE) {
1420 logevent("CryptoCard authentication declined");
1421 c_write("CryptoCard authentication refused.\r\n", 29);
1422 } else {
1423 int challengelen = ((pktin.body[0] << 24) |
1424 (pktin.body[1] << 16) |
1425 (pktin.body[2] << 8) |
1426 (pktin.body[3]));
1427 logevent("Received CryptoCard challenge");
1428 if (challengelen > sizeof(prompt)-1)
1429 challengelen = sizeof(prompt)-1; /* prevent overrun */
1430 memcpy(prompt, pktin.body+4, challengelen);
1431 strncpy(prompt + challengelen, "\r\nResponse : ",
1432 sizeof(prompt)-challengelen);
1433 prompt[sizeof(prompt)-1] = '\0';
1434 }
1435 }
1436 if (pwpkt_type == SSH1_CMSG_AUTH_PASSWORD) {
1437 sprintf(prompt, "%.90s@%.90s's password: ",
1438 cfg.username, savedhost);
1439 }
1440 if (pwpkt_type == SSH1_CMSG_AUTH_RSA) {
1441 char *comment = NULL;
1442 if (flags & FLAG_VERBOSE)
1443 c_write("Trying public key authentication.\r\n", 35);
1444 if (!rsakey_encrypted(cfg.keyfile, &comment)) {
1445 if (flags & FLAG_VERBOSE)
1446 c_write("No passphrase required.\r\n", 25);
1447 goto tryauth;
1448 }
1449 sprintf(prompt, "Passphrase for key \"%.100s\": ", comment);
1450 free(comment);
1451 }
1452
1453 if (!(flags & FLAG_INTERACTIVE)) {
1454 if (!ssh_get_password(prompt, password, sizeof(password))) {
1455 /*
1456 * get_password failed to get a password (for
1457 * example because one was supplied on the command
1458 * line which has already failed to work).
1459 * Terminate.
1460 */
1461 logevent("No more passwords to try");
1462 ssh_state = SSH_STATE_CLOSED;
1463 crReturn(1);
1464 }
1465 } else {
1466 c_write(prompt, strlen(prompt));
1467 pos = 0;
1468 ssh_send_ok = 1;
1469 while (pos >= 0) {
1470 crWaitUntil(!ispkt);
1471 while (inlen--) switch (c = *in++) {
1472 case 10: case 13:
1473 password[pos] = 0;
1474 pos = -1;
1475 break;
1476 case 8: case 127:
1477 if (pos > 0)
1478 pos--;
1479 break;
1480 case 21: case 27:
1481 pos = 0;
1482 break;
1483 case 3: case 4:
1484 random_save_seed();
1485 exit(0);
1486 break;
1487 default:
1488 if (((c >= ' ' && c <= '~') ||
1489 ((unsigned char)c >= 160)) && pos < sizeof(password))
1490 password[pos++] = c;
1491 break;
1492 }
1493 }
1494 c_write("\r\n", 2);
1495 }
1496
1497 tryauth:
1498 if (pwpkt_type == SSH1_CMSG_AUTH_RSA) {
1499 /*
1500 * Try public key authentication with the specified
1501 * key file.
1502 */
1503 static struct RSAKey pubkey;
1504 static Bignum challenge, response;
1505 static int i;
1506 static unsigned char buffer[32];
1507
1508 tried_publickey = 1;
1509 i = loadrsakey(cfg.keyfile, &pubkey, password);
1510 if (i == 0) {
1511 c_write("Couldn't load public key from ", 30);
1512 c_write(cfg.keyfile, strlen(cfg.keyfile));
1513 c_write(".\r\n", 3);
1514 continue; /* go and try password */
1515 }
1516 if (i == -1) {
1517 c_write("Wrong passphrase.\r\n", 19);
1518 tried_publickey = 0;
1519 continue; /* try again */
1520 }
1521
1522 /*
1523 * Send a public key attempt.
1524 */
1525 send_packet(SSH1_CMSG_AUTH_RSA,
1526 PKT_BIGNUM, pubkey.modulus, PKT_END);
1527
1528 crWaitUntil(ispkt);
1529 if (pktin.type == SSH1_SMSG_FAILURE) {
1530 c_write("Server refused our public key.\r\n", 32);
1531 continue; /* go and try password */
1532 }
1533 if (pktin.type != SSH1_SMSG_AUTH_RSA_CHALLENGE) {
1534 bombout(("Bizarre response to offer of public key"));
1535 crReturn(0);
1536 }
1537 ssh1_read_bignum(pktin.body, &challenge);
1538 response = rsadecrypt(challenge, &pubkey);
1539 freebn(pubkey.private_exponent); /* burn the evidence */
1540
1541 for (i = 0; i < 32; i += 2) {
1542 buffer[i] = response[16-i/2] >> 8;
1543 buffer[i+1] = response[16-i/2] & 0xFF;
1544 }
1545
1546 MD5Init(&md5c);
1547 MD5Update(&md5c, buffer, 32);
1548 MD5Update(&md5c, session_id, 16);
1549 MD5Final(buffer, &md5c);
1550
1551 send_packet(SSH1_CMSG_AUTH_RSA_RESPONSE,
1552 PKT_DATA, buffer, 16, PKT_END);
1553
1554 crWaitUntil(ispkt);
1555 if (pktin.type == SSH1_SMSG_FAILURE) {
1556 if (flags & FLAG_VERBOSE)
1557 c_write("Failed to authenticate with our public key.\r\n",
1558 45);
1559 continue; /* go and try password */
1560 } else if (pktin.type != SSH1_SMSG_SUCCESS) {
1561 bombout(("Bizarre response to RSA authentication response"));
1562 crReturn(0);
1563 }
1564
1565 break; /* we're through! */
1566 } else {
1567 send_packet(pwpkt_type, PKT_STR, password, PKT_END);
1568 }
1569 logevent("Sent password");
1570 memset(password, 0, strlen(password));
1571 crWaitUntil(ispkt);
1572 if (pktin.type == SSH1_SMSG_FAILURE) {
1573 if (flags & FLAG_VERBOSE)
1574 c_write("Access denied\r\n", 15);
1575 logevent("Authentication refused");
1576 } else if (pktin.type == SSH1_MSG_DISCONNECT) {
1577 logevent("Received disconnect request");
1578 ssh_state = SSH_STATE_CLOSED;
1579 crReturn(1);
1580 } else if (pktin.type != SSH1_SMSG_SUCCESS) {
1581 bombout(("Strange packet received, type %d", pktin.type));
1582 crReturn(0);
1583 }
1584 }
1585
1586 logevent("Authentication successful");
1587
1588 crFinish(1);
1589 }
1590
1591 static void ssh1_protocol(unsigned char *in, int inlen, int ispkt) {
1592 crBegin;
1593
1594 random_init();
1595
1596 while (!do_ssh1_login(in, inlen, ispkt)) {
1597 crReturnV;
1598 }
1599 if (ssh_state == SSH_STATE_CLOSED)
1600 crReturnV;
1601
1602 if (cfg.agentfwd && agent_exists()) {
1603 logevent("Requesting agent forwarding");
1604 send_packet(SSH1_CMSG_AGENT_REQUEST_FORWARDING, PKT_END);
1605 do { crReturnV; } while (!ispkt);
1606 if (pktin.type != SSH1_SMSG_SUCCESS && pktin.type != SSH1_SMSG_FAILURE) {
1607 bombout(("Protocol confusion"));
1608 crReturnV;
1609 } else if (pktin.type == SSH1_SMSG_FAILURE) {
1610 logevent("Agent forwarding refused");
1611 } else
1612 logevent("Agent forwarding enabled");
1613 }
1614
1615 if (!cfg.nopty) {
1616 send_packet(SSH1_CMSG_REQUEST_PTY,
1617 PKT_STR, cfg.termtype,
1618 PKT_INT, rows, PKT_INT, cols,
1619 PKT_INT, 0, PKT_INT, 0,
1620 PKT_CHAR, 0,
1621 PKT_END);
1622 ssh_state = SSH_STATE_INTERMED;
1623 do { crReturnV; } while (!ispkt);
1624 if (pktin.type != SSH1_SMSG_SUCCESS && pktin.type != SSH1_SMSG_FAILURE) {
1625 bombout(("Protocol confusion"));
1626 crReturnV;
1627 } else if (pktin.type == SSH1_SMSG_FAILURE) {
1628 c_write("Server refused to allocate pty\r\n", 32);
1629 }
1630 logevent("Allocated pty");
1631 }
1632
1633 if (*cfg.remote_cmd)
1634 send_packet(SSH1_CMSG_EXEC_CMD, PKT_STR, cfg.remote_cmd, PKT_END);
1635 else
1636 send_packet(SSH1_CMSG_EXEC_SHELL, PKT_END);
1637 logevent("Started session");
1638
1639 ssh_state = SSH_STATE_SESSION;
1640 if (size_needed)
1641 ssh_size();
1642
1643 ssh_send_ok = 1;
1644 ssh_channels = newtree234(ssh_channelcmp);
1645 begin_session();
1646 while (1) {
1647 crReturnV;
1648 if (ispkt) {
1649 if (pktin.type == SSH1_SMSG_STDOUT_DATA ||
1650 pktin.type == SSH1_SMSG_STDERR_DATA) {
1651 long len = GET_32BIT(pktin.body);
1652 c_write(pktin.body+4, len);
1653 } else if (pktin.type == SSH1_MSG_DISCONNECT) {
1654 ssh_state = SSH_STATE_CLOSED;
1655 logevent("Received disconnect request");
1656 } else if (pktin.type == SSH1_SMSG_AGENT_OPEN) {
1657 /* Remote side is trying to open a channel to talk to our
1658 * agent. Give them back a local channel number. */
1659 unsigned i = 1;
1660 struct ssh_channel *c;
1661 enum234 e;
1662 for (c = first234(ssh_channels, &e); c; c = next234(&e)) {
1663 if (c->localid > i)
1664 break; /* found a free number */
1665 i = c->localid + 1;
1666 }
1667 c = malloc(sizeof(struct ssh_channel));
1668 c->remoteid = GET_32BIT(pktin.body);
1669 c->localid = i;
1670 c->closes = 0;
1671 c->type = SSH1_SMSG_AGENT_OPEN; /* identify channel type */
1672 add234(ssh_channels, c);
1673 send_packet(SSH1_MSG_CHANNEL_OPEN_CONFIRMATION,
1674 PKT_INT, c->remoteid, PKT_INT, c->localid,
1675 PKT_END);
1676 } else if (pktin.type == SSH1_MSG_CHANNEL_CLOSE ||
1677 pktin.type == SSH1_MSG_CHANNEL_CLOSE_CONFIRMATION) {
1678 /* Remote side closes a channel. */
1679 unsigned i = GET_32BIT(pktin.body);
1680 struct ssh_channel *c;
1681 c = find234(ssh_channels, &i, ssh_channelfind);
1682 if (c) {
1683 int closetype;
1684 closetype = (pktin.type == SSH1_MSG_CHANNEL_CLOSE ? 1 : 2);
1685 send_packet(pktin.type, PKT_INT, c->remoteid, PKT_END);
1686 c->closes |= closetype;
1687 if (c->closes == 3) {
1688 del234(ssh_channels, c);
1689 free(c);
1690 }
1691 }
1692 } else if (pktin.type == SSH1_MSG_CHANNEL_DATA) {
1693 /* Data sent down one of our channels. */
1694 int i = GET_32BIT(pktin.body);
1695 int len = GET_32BIT(pktin.body+4);
1696 unsigned char *p = pktin.body+8;
1697 struct ssh_channel *c;
1698 c = find234(ssh_channels, &i, ssh_channelfind);
1699 if (c) {
1700 switch(c->type) {
1701 case SSH1_SMSG_AGENT_OPEN:
1702 /* Data for an agent message. Buffer it. */
1703 while (len > 0) {
1704 if (c->u.a.lensofar < 4) {
1705 int l = min(4 - c->u.a.lensofar, len);
1706 memcpy(c->u.a.msglen + c->u.a.lensofar, p, l);
1707 p += l; len -= l; c->u.a.lensofar += l;
1708 }
1709 if (c->u.a.lensofar == 4) {
1710 c->u.a.totallen = 4 + GET_32BIT(c->u.a.msglen);
1711 c->u.a.message = malloc(c->u.a.totallen);
1712 memcpy(c->u.a.message, c->u.a.msglen, 4);
1713 }
1714 if (c->u.a.lensofar >= 4 && len > 0) {
1715 int l = min(c->u.a.totallen - c->u.a.lensofar, len);
1716 memcpy(c->u.a.message + c->u.a.lensofar, p, l);
1717 p += l; len -= l; c->u.a.lensofar += l;
1718 }
1719 if (c->u.a.lensofar == c->u.a.totallen) {
1720 void *reply, *sentreply;
1721 int replylen;
1722 agent_query(c->u.a.message, c->u.a.totallen,
1723 &reply, &replylen);
1724 if (reply)
1725 sentreply = reply;
1726 else {
1727 /* Fake SSH_AGENT_FAILURE. */
1728 sentreply = "\0\0\0\1\5";
1729 replylen = 5;
1730 }
1731 send_packet(SSH1_MSG_CHANNEL_DATA,
1732 PKT_INT, c->remoteid,
1733 PKT_INT, replylen,
1734 PKT_DATA, sentreply, replylen,
1735 PKT_END);
1736 if (reply)
1737 free(reply);
1738 free(c->u.a.message);
1739 c->u.a.lensofar = 0;
1740 }
1741 }
1742 break;
1743 }
1744 }
1745 } else if (pktin.type == SSH1_SMSG_SUCCESS) {
1746 /* may be from EXEC_SHELL on some servers */
1747 } else if (pktin.type == SSH1_SMSG_FAILURE) {
1748 /* may be from EXEC_SHELL on some servers
1749 * if no pty is available or in other odd cases. Ignore */
1750 } else if (pktin.type == SSH1_SMSG_EXIT_STATUS) {
1751 send_packet(SSH1_CMSG_EXIT_CONFIRMATION, PKT_END);
1752 } else {
1753 bombout(("Strange packet received: type %d", pktin.type));
1754 crReturnV;
1755 }
1756 } else {
1757 send_packet(SSH1_CMSG_STDIN_DATA,
1758 PKT_INT, inlen, PKT_DATA, in, inlen, PKT_END);
1759 }
1760 }
1761
1762 crFinishV;
1763 }
1764
1765 /*
1766 * Utility routine for decoding comma-separated strings in KEXINIT.
1767 */
1768 int in_commasep_string(char *needle, char *haystack, int haylen) {
1769 int needlen = strlen(needle);
1770 while (1) {
1771 /*
1772 * Is it at the start of the string?
1773 */
1774 if (haylen >= needlen && /* haystack is long enough */
1775 !memcmp(needle, haystack, needlen) && /* initial match */
1776 (haylen == needlen || haystack[needlen] == ',')
1777 /* either , or EOS follows */
1778 )
1779 return 1;
1780 /*
1781 * If not, search for the next comma and resume after that.
1782 * If no comma found, terminate.
1783 */
1784 while (haylen > 0 && *haystack != ',')
1785 haylen--, haystack++;
1786 if (haylen == 0)
1787 return 0;
1788 haylen--, haystack++; /* skip over comma itself */
1789 }
1790 }
1791
1792 /*
1793 * SSH2 key creation method.
1794 */
1795 void ssh2_mkkey(Bignum K, char *H, char chr, char *keyspace) {
1796 SHA_State s;
1797 /* First 20 bytes. */
1798 SHA_Init(&s);
1799 sha_mpint(&s, K);
1800 SHA_Bytes(&s, H, 20);
1801 SHA_Bytes(&s, &chr, 1);
1802 SHA_Bytes(&s, H, 20);
1803 SHA_Final(&s, keyspace);
1804 /* Next 20 bytes. */
1805 SHA_Init(&s);
1806 sha_mpint(&s, K);
1807 SHA_Bytes(&s, H, 20);
1808 SHA_Bytes(&s, keyspace, 20);
1809 SHA_Final(&s, keyspace+20);
1810 }
1811
1812 /*
1813 * Handle the SSH2 transport layer.
1814 */
1815 static int do_ssh2_transport(unsigned char *in, int inlen, int ispkt)
1816 {
1817 static int i, len;
1818 static char *str;
1819 static Bignum e, f, K;
1820 static struct ssh_cipher *cscipher_tobe = NULL;
1821 static struct ssh_cipher *sccipher_tobe = NULL;
1822 static struct ssh_mac *csmac_tobe = NULL;
1823 static struct ssh_mac *scmac_tobe = NULL;
1824 static struct ssh_compress *cscomp_tobe = NULL;
1825 static struct ssh_compress *sccomp_tobe = NULL;
1826 static char *hostkeydata, *sigdata, *keystr;
1827 static int hostkeylen, siglen;
1828 static unsigned char exchange_hash[20];
1829 static unsigned char keyspace[40];
1830
1831 crBegin;
1832 random_init();
1833
1834 /*
1835 * Set up the preferred cipher.
1836 */
1837 if (cfg.cipher == CIPHER_BLOWFISH) {
1838 ciphers[0] = &ssh_blowfish_ssh2;
1839 } else if (cfg.cipher == CIPHER_DES) {
1840 logevent("Single DES not supported in SSH2; using 3DES");
1841 ciphers[0] = &ssh_3des_ssh2;
1842 } else if (cfg.cipher == CIPHER_3DES) {
1843 ciphers[0] = &ssh_3des_ssh2;
1844 } else {
1845 /* Shouldn't happen, but we do want to initialise to _something_. */
1846 ciphers[0] = &ssh_3des_ssh2;
1847 }
1848
1849 begin_key_exchange:
1850 /*
1851 * Construct and send our key exchange packet.
1852 */
1853 ssh2_pkt_init(SSH2_MSG_KEXINIT);
1854 for (i = 0; i < 16; i++)
1855 ssh2_pkt_addbyte((unsigned char)random_byte());
1856 /* List key exchange algorithms. */
1857 ssh2_pkt_addstring_start();
1858 for (i = 0; i < lenof(kex_algs); i++) {
1859 ssh2_pkt_addstring_str(kex_algs[i]->name);
1860 if (i < lenof(kex_algs)-1)
1861 ssh2_pkt_addstring_str(",");
1862 }
1863 /* List server host key algorithms. */
1864 ssh2_pkt_addstring_start();
1865 for (i = 0; i < lenof(hostkey_algs); i++) {
1866 ssh2_pkt_addstring_str(hostkey_algs[i]->name);
1867 if (i < lenof(hostkey_algs)-1)
1868 ssh2_pkt_addstring_str(",");
1869 }
1870 /* List client->server encryption algorithms. */
1871 ssh2_pkt_addstring_start();
1872 for (i = 0; i < lenof(ciphers); i++) {
1873 ssh2_pkt_addstring_str(ciphers[i]->name);
1874 if (i < lenof(ciphers)-1)
1875 ssh2_pkt_addstring_str(",");
1876 }
1877 /* List server->client encryption algorithms. */
1878 ssh2_pkt_addstring_start();
1879 for (i = 0; i < lenof(ciphers); i++) {
1880 ssh2_pkt_addstring_str(ciphers[i]->name);
1881 if (i < lenof(ciphers)-1)
1882 ssh2_pkt_addstring_str(",");
1883 }
1884 /* List client->server MAC algorithms. */
1885 ssh2_pkt_addstring_start();
1886 for (i = 0; i < lenof(macs); i++) {
1887 ssh2_pkt_addstring_str(macs[i]->name);
1888 if (i < lenof(macs)-1)
1889 ssh2_pkt_addstring_str(",");
1890 }
1891 /* List server->client MAC algorithms. */
1892 ssh2_pkt_addstring_start();
1893 for (i = 0; i < lenof(macs); i++) {
1894 ssh2_pkt_addstring_str(macs[i]->name);
1895 if (i < lenof(macs)-1)
1896 ssh2_pkt_addstring_str(",");
1897 }
1898 /* List client->server compression algorithms. */
1899 ssh2_pkt_addstring_start();
1900 for (i = 0; i < lenof(compressions); i++) {
1901 ssh2_pkt_addstring_str(compressions[i]->name);
1902 if (i < lenof(compressions)-1)
1903 ssh2_pkt_addstring_str(",");
1904 }
1905 /* List server->client compression algorithms. */
1906 ssh2_pkt_addstring_start();
1907 for (i = 0; i < lenof(compressions); i++) {
1908 ssh2_pkt_addstring_str(compressions[i]->name);
1909 if (i < lenof(compressions)-1)
1910 ssh2_pkt_addstring_str(",");
1911 }
1912 /* List client->server languages. Empty list. */
1913 ssh2_pkt_addstring_start();
1914 /* List server->client languages. Empty list. */
1915 ssh2_pkt_addstring_start();
1916 /* First KEX packet does _not_ follow, because we're not that brave. */
1917 ssh2_pkt_addbool(FALSE);
1918 /* Reserved. */
1919 ssh2_pkt_adduint32(0);
1920 sha_string(&exhash, pktout.data+5, pktout.length-5);
1921 ssh2_pkt_send();
1922
1923 if (!ispkt) crWaitUntil(ispkt);
1924 sha_string(&exhash, pktin.data+5, pktin.length-5);
1925
1926 /*
1927 * Now examine the other side's KEXINIT to see what we're up
1928 * to.
1929 */
1930 if (pktin.type != SSH2_MSG_KEXINIT) {
1931 bombout(("expected key exchange packet from server"));
1932 crReturn(0);
1933 }
1934 kex = NULL; hostkey = NULL; cscipher_tobe = NULL; sccipher_tobe = NULL;
1935 csmac_tobe = NULL; scmac_tobe = NULL; cscomp_tobe = NULL; sccomp_tobe = NULL;
1936 pktin.savedpos += 16; /* skip garbage cookie */
1937 ssh2_pkt_getstring(&str, &len); /* key exchange algorithms */
1938 for (i = 0; i < lenof(kex_algs); i++) {
1939 if (in_commasep_string(kex_algs[i]->name, str, len)) {
1940 kex = kex_algs[i];
1941 break;
1942 }
1943 }
1944 ssh2_pkt_getstring(&str, &len); /* host key algorithms */
1945 for (i = 0; i < lenof(hostkey_algs); i++) {
1946 if (in_commasep_string(hostkey_algs[i]->name, str, len)) {
1947 hostkey = hostkey_algs[i];
1948 break;
1949 }
1950 }
1951 ssh2_pkt_getstring(&str, &len); /* client->server cipher */
1952 for (i = 0; i < lenof(ciphers); i++) {
1953 if (in_commasep_string(ciphers[i]->name, str, len)) {
1954 cscipher_tobe = ciphers[i];
1955 break;
1956 }
1957 }
1958 ssh2_pkt_getstring(&str, &len); /* server->client cipher */
1959 for (i = 0; i < lenof(ciphers); i++) {
1960 if (in_commasep_string(ciphers[i]->name, str, len)) {
1961 sccipher_tobe = ciphers[i];
1962 break;
1963 }
1964 }
1965 ssh2_pkt_getstring(&str, &len); /* client->server mac */
1966 for (i = 0; i < lenof(macs); i++) {
1967 if (in_commasep_string(macs[i]->name, str, len)) {
1968 csmac_tobe = macs[i];
1969 break;
1970 }
1971 }
1972 ssh2_pkt_getstring(&str, &len); /* server->client mac */
1973 for (i = 0; i < lenof(macs); i++) {
1974 if (in_commasep_string(macs[i]->name, str, len)) {
1975 scmac_tobe = macs[i];
1976 break;
1977 }
1978 }
1979 ssh2_pkt_getstring(&str, &len); /* client->server compression */
1980 for (i = 0; i < lenof(compressions); i++) {
1981 if (in_commasep_string(compressions[i]->name, str, len)) {
1982 cscomp_tobe = compressions[i];
1983 break;
1984 }
1985 }
1986 ssh2_pkt_getstring(&str, &len); /* server->client compression */
1987 for (i = 0; i < lenof(compressions); i++) {
1988 if (in_commasep_string(compressions[i]->name, str, len)) {
1989 sccomp_tobe = compressions[i];
1990 break;
1991 }
1992 }
1993
1994 /*
1995 * Currently we only support Diffie-Hellman and DSS, so let's
1996 * bomb out if those aren't selected.
1997 */
1998 if (kex != &ssh_diffiehellman || hostkey != &ssh_dss) {
1999 bombout(("internal fault: chaos in SSH 2 transport layer"));
2000 crReturn(0);
2001 }
2002
2003 /*
2004 * Now we begin the fun. Generate and send e for Diffie-Hellman.
2005 */
2006 e = dh_create_e();
2007 ssh2_pkt_init(SSH2_MSG_KEXDH_INIT);
2008 ssh2_pkt_addmp(e);
2009 ssh2_pkt_send();
2010
2011 crWaitUntil(ispkt);
2012 if (pktin.type != SSH2_MSG_KEXDH_REPLY) {
2013 bombout(("expected key exchange packet from server"));
2014 crReturn(0);
2015 }
2016 ssh2_pkt_getstring(&hostkeydata, &hostkeylen);
2017 f = ssh2_pkt_getmp();
2018 ssh2_pkt_getstring(&sigdata, &siglen);
2019
2020 K = dh_find_K(f);
2021
2022 sha_string(&exhash, hostkeydata, hostkeylen);
2023 sha_mpint(&exhash, e);
2024 sha_mpint(&exhash, f);
2025 sha_mpint(&exhash, K);
2026 SHA_Final(&exhash, exchange_hash);
2027
2028 #if 0
2029 debug(("Exchange hash is:\r\n"));
2030 for (i = 0; i < 20; i++)
2031 debug((" %02x", exchange_hash[i]));
2032 debug(("\r\n"));
2033 #endif
2034
2035 hostkey->setkey(hostkeydata, hostkeylen);
2036 if (!hostkey->verifysig(sigdata, siglen, exchange_hash, 20)) {
2037 bombout(("Server failed host key check"));
2038 crReturn(0);
2039 }
2040
2041 /*
2042 * Expect SSH2_MSG_NEWKEYS from server.
2043 */
2044 crWaitUntil(ispkt);
2045 if (pktin.type != SSH2_MSG_NEWKEYS) {
2046 bombout(("expected new-keys packet from server"));
2047 crReturn(0);
2048 }
2049
2050 /*
2051 * Authenticate remote host: verify host key. (We've already
2052 * checked the signature of the exchange hash.)
2053 */
2054 keystr = hostkey->fmtkey();
2055 verify_ssh_host_key(savedhost, keystr);
2056 free(keystr);
2057
2058 /*
2059 * Send SSH2_MSG_NEWKEYS.
2060 */
2061 ssh2_pkt_init(SSH2_MSG_NEWKEYS);
2062 ssh2_pkt_send();
2063
2064 /*
2065 * Create and initialise session keys.
2066 */
2067 cscipher = cscipher_tobe;
2068 sccipher = sccipher_tobe;
2069 csmac = csmac_tobe;
2070 scmac = scmac_tobe;
2071 cscomp = cscomp_tobe;
2072 sccomp = sccomp_tobe;
2073 /*
2074 * Set IVs after keys.
2075 */
2076 ssh2_mkkey(K, exchange_hash, 'C', keyspace); cscipher->setcskey(keyspace);
2077 ssh2_mkkey(K, exchange_hash, 'D', keyspace); cscipher->setsckey(keyspace);
2078 ssh2_mkkey(K, exchange_hash, 'A', keyspace); cscipher->setcsiv(keyspace);
2079 ssh2_mkkey(K, exchange_hash, 'B', keyspace); sccipher->setsciv(keyspace);
2080 ssh2_mkkey(K, exchange_hash, 'E', keyspace); csmac->setcskey(keyspace);
2081 ssh2_mkkey(K, exchange_hash, 'F', keyspace); scmac->setsckey(keyspace);
2082
2083 /*
2084 * Now we're encrypting. Begin returning 1 to the protocol main
2085 * function so that other things can run on top of the
2086 * transport. If we ever see a KEXINIT, we must go back to the
2087 * start.
2088 */
2089 do {
2090 crReturn(1);
2091 } while (!(ispkt && pktin.type == SSH2_MSG_KEXINIT));
2092 goto begin_key_exchange;
2093
2094 crFinish(1);
2095 }
2096
2097 /*
2098 * Handle the SSH2 userauth and connection layers.
2099 */
2100 static void do_ssh2_authconn(unsigned char *in, int inlen, int ispkt)
2101 {
2102 static unsigned long remote_winsize;
2103 static unsigned long remote_maxpkt;
2104
2105 crBegin;
2106
2107 /*
2108 * Request userauth protocol, and await a response to it.
2109 */
2110 ssh2_pkt_init(SSH2_MSG_SERVICE_REQUEST);
2111 ssh2_pkt_addstring("ssh-userauth");
2112 ssh2_pkt_send();
2113 crWaitUntilV(ispkt);
2114 if (pktin.type != SSH2_MSG_SERVICE_ACCEPT) {
2115 bombout(("Server refused user authentication protocol"));
2116 crReturnV;
2117 }
2118
2119 /*
2120 * FIXME: currently we support only password authentication.
2121 * (This places us technically in violation of the SSH2 spec.
2122 * We must fix this.)
2123 */
2124 while (1) {
2125 /*
2126 * Get a username and a password.
2127 */
2128 static char username[100];
2129 static char password[100];
2130 static int pos = 0;
2131 static char c;
2132
2133 if ((flags & FLAG_INTERACTIVE) && !*cfg.username) {
2134 c_write("login as: ", 10);
2135 ssh_send_ok = 1;
2136 while (pos >= 0) {
2137 crWaitUntilV(!ispkt);
2138 while (inlen--) switch (c = *in++) {
2139 case 10: case 13:
2140 username[pos] = 0;
2141 pos = -1;
2142 break;
2143 case 8: case 127:
2144 if (pos > 0) {
2145 c_write("\b \b", 3);
2146 pos--;
2147 }
2148 break;
2149 case 21: case 27:
2150 while (pos > 0) {
2151 c_write("\b \b", 3);
2152 pos--;
2153 }
2154 break;
2155 case 3: case 4:
2156 random_save_seed();
2157 exit(0);
2158 break;
2159 default:
2160 if (((c >= ' ' && c <= '~') ||
2161 ((unsigned char)c >= 160)) && pos < 40) {
2162 username[pos++] = c;
2163 c_write(&c, 1);
2164 }
2165 break;
2166 }
2167 }
2168 c_write("\r\n", 2);
2169 username[strcspn(username, "\n\r")] = '\0';
2170 } else {
2171 char stuff[200];
2172 strncpy(username, cfg.username, 99);
2173 username[99] = '\0';
2174 if ((flags & FLAG_VERBOSE) || (flags & FLAG_INTERACTIVE)) {
2175 sprintf(stuff, "Using username \"%s\".\r\n", username);
2176 c_write(stuff, strlen(stuff));
2177 }
2178 }
2179
2180 if (!(flags & FLAG_INTERACTIVE)) {
2181 char prompt[200];
2182 sprintf(prompt, "%s@%s's password: ", cfg.username, savedhost);
2183 if (!ssh_get_password(prompt, password, sizeof(password))) {
2184 /*
2185 * get_password failed to get a password (for
2186 * example because one was supplied on the command
2187 * line which has already failed to work).
2188 * Terminate.
2189 */
2190 logevent("No more passwords to try");
2191 ssh_state = SSH_STATE_CLOSED;
2192 crReturnV;
2193 }
2194 } else {
2195 c_write("password: ", 10);
2196 ssh_send_ok = 1;
2197
2198 pos = 0;
2199 while (pos >= 0) {
2200 crWaitUntilV(!ispkt);
2201 while (inlen--) switch (c = *in++) {
2202 case 10: case 13:
2203 password[pos] = 0;
2204 pos = -1;
2205 break;
2206 case 8: case 127:
2207 if (pos > 0)
2208 pos--;
2209 break;
2210 case 21: case 27:
2211 pos = 0;
2212 break;
2213 case 3: case 4:
2214 random_save_seed();
2215 exit(0);
2216 break;
2217 default:
2218 if (((c >= ' ' && c <= '~') ||
2219 ((unsigned char)c >= 160)) && pos < 40)
2220 password[pos++] = c;
2221 break;
2222 }
2223 }
2224 c_write("\r\n", 2);
2225 }
2226
2227 ssh2_pkt_init(SSH2_MSG_USERAUTH_REQUEST);
2228 ssh2_pkt_addstring(username);
2229 ssh2_pkt_addstring("ssh-connection"); /* service requested */
2230 ssh2_pkt_addstring("password");
2231 ssh2_pkt_addbool(FALSE);
2232 ssh2_pkt_addstring(password);
2233 ssh2_pkt_send();
2234
2235 crWaitUntilV(ispkt);
2236 if (pktin.type != SSH2_MSG_USERAUTH_SUCCESS) {
2237 c_write("Access denied\r\n", 15);
2238 logevent("Authentication refused");
2239 } else
2240 break;
2241 }
2242
2243 /*
2244 * Now we're authenticated for the connection protocol. The
2245 * connection protocol will automatically have started at this
2246 * point; there's no need to send SERVICE_REQUEST.
2247 */
2248
2249 /*
2250 * So now create a channel with a session in it.
2251 */
2252 mainchan = malloc(sizeof(struct ssh_channel));
2253 mainchan->localid = 100; /* as good as any */
2254 ssh2_pkt_init(SSH2_MSG_CHANNEL_OPEN);
2255 ssh2_pkt_addstring("session");
2256 ssh2_pkt_adduint32(mainchan->localid);
2257 ssh2_pkt_adduint32(0x7FFFFFFFUL); /* our window size */
2258 ssh2_pkt_adduint32(0x4000UL); /* our max pkt size */
2259 ssh2_pkt_send();
2260 crWaitUntilV(ispkt);
2261 if (pktin.type != SSH2_MSG_CHANNEL_OPEN_CONFIRMATION) {
2262 bombout(("Server refused to open a session"));
2263 crReturnV;
2264 /* FIXME: error data comes back in FAILURE packet */
2265 }
2266 if (ssh2_pkt_getuint32() != mainchan->localid) {
2267 bombout(("Server's channel confirmation cited wrong channel"));
2268 crReturnV;
2269 }
2270 mainchan->remoteid = ssh2_pkt_getuint32();
2271 mainchan->u.v2.remwindow = ssh2_pkt_getuint32();
2272 mainchan->u.v2.remmaxpkt = ssh2_pkt_getuint32();
2273 mainchan->u.v2.outbuffer = NULL;
2274 mainchan->u.v2.outbuflen = mainchan->u.v2.outbufsize = 0;
2275 logevent("Opened channel for session");
2276
2277 /*
2278 * Now allocate a pty for the session.
2279 */
2280 if (!cfg.nopty) {
2281 ssh2_pkt_init(SSH2_MSG_CHANNEL_REQUEST);
2282 ssh2_pkt_adduint32(mainchan->remoteid); /* recipient channel */
2283 ssh2_pkt_addstring("pty-req");
2284 ssh2_pkt_addbool(1); /* want reply */
2285 ssh2_pkt_addstring(cfg.termtype);
2286 ssh2_pkt_adduint32(cols);
2287 ssh2_pkt_adduint32(rows);
2288 ssh2_pkt_adduint32(0); /* pixel width */
2289 ssh2_pkt_adduint32(0); /* pixel height */
2290 ssh2_pkt_addstring_start();
2291 ssh2_pkt_addstring_data("\0", 1);/* TTY_OP_END, no special options */
2292 ssh2_pkt_send();
2293
2294 do {
2295 crWaitUntilV(ispkt);
2296 if (pktin.type == SSH2_MSG_CHANNEL_WINDOW_ADJUST) {
2297 /* FIXME: be able to handle other channels here */
2298 if (ssh2_pkt_getuint32() != mainchan->localid)
2299 continue; /* wrong channel */
2300 mainchan->u.v2.remwindow += ssh2_pkt_getuint32();
2301 }
2302 } while (pktin.type == SSH2_MSG_CHANNEL_WINDOW_ADJUST);
2303
2304 if (pktin.type != SSH2_MSG_CHANNEL_SUCCESS) {
2305 if (pktin.type != SSH2_MSG_CHANNEL_FAILURE) {
2306 bombout(("Server got confused by pty request"));
2307 crReturnV;
2308 }
2309 c_write("Server refused to allocate pty\r\n", 32);
2310 } else {
2311 logevent("Allocated pty");
2312 }
2313 }
2314
2315 /*
2316 * Start a shell or a remote command.
2317 */
2318 ssh2_pkt_init(SSH2_MSG_CHANNEL_REQUEST);
2319 ssh2_pkt_adduint32(mainchan->remoteid); /* recipient channel */
2320 if (*cfg.remote_cmd) {
2321 ssh2_pkt_addstring("exec");
2322 ssh2_pkt_addbool(1); /* want reply */
2323 ssh2_pkt_addstring(cfg.remote_cmd);
2324 } else {
2325 ssh2_pkt_addstring("shell");
2326 ssh2_pkt_addbool(1); /* want reply */
2327 }
2328 ssh2_pkt_send();
2329 do {
2330 crWaitUntilV(ispkt);
2331 if (pktin.type == SSH2_MSG_CHANNEL_WINDOW_ADJUST) {
2332 /* FIXME: be able to handle other channels here */
2333 if (ssh2_pkt_getuint32() != mainchan->localid)
2334 continue; /* wrong channel */
2335 mainchan->u.v2.remwindow += ssh2_pkt_getuint32();
2336 }
2337 } while (pktin.type == SSH2_MSG_CHANNEL_WINDOW_ADJUST);
2338 if (pktin.type != SSH2_MSG_CHANNEL_SUCCESS) {
2339 if (pktin.type != SSH2_MSG_CHANNEL_FAILURE) {
2340 bombout(("Server got confused by shell/command request"));
2341 crReturnV;
2342 }
2343 bombout(("Server refused to start a shell/command"));
2344 crReturnV;
2345 } else {
2346 logevent("Started a shell/command");
2347 }
2348
2349 /*
2350 * Transfer data!
2351 */
2352 ssh_send_ok = 1;
2353 begin_session();
2354 while (1) {
2355 static int try_send;
2356 crReturnV;
2357 try_send = FALSE;
2358 if (ispkt) {
2359 if (pktin.type == SSH2_MSG_CHANNEL_DATA ||
2360 pktin.type == SSH2_MSG_CHANNEL_EXTENDED_DATA) {
2361 char *data;
2362 int length;
2363 /* FIXME: be able to handle other channels here */
2364 if (ssh2_pkt_getuint32() != mainchan->localid)
2365 continue; /* wrong channel */
2366 if (pktin.type == SSH2_MSG_CHANNEL_EXTENDED_DATA &&
2367 ssh2_pkt_getuint32() != SSH2_EXTENDED_DATA_STDERR)
2368 continue; /* extended but not stderr */
2369 ssh2_pkt_getstring(&data, &length);
2370 if (data) {
2371 c_write(data, length);
2372 /*
2373 * Enlarge the window again at the remote side,
2374 * just in case it ever runs down and they fail
2375 * to send us any more data.
2376 */
2377 ssh2_pkt_init(SSH2_MSG_CHANNEL_WINDOW_ADJUST);
2378 ssh2_pkt_adduint32(mainchan->remoteid);
2379 ssh2_pkt_adduint32(length);
2380 ssh2_pkt_send();
2381 }
2382 } else if (pktin.type == SSH2_MSG_DISCONNECT) {
2383 ssh_state = SSH_STATE_CLOSED;
2384 logevent("Received disconnect message");
2385 } else if (pktin.type == SSH2_MSG_CHANNEL_REQUEST) {
2386 continue; /* exit status et al; ignore (FIXME?) */
2387 } else if (pktin.type == SSH2_MSG_CHANNEL_EOF) {
2388 continue; /* remote sends EOF; ignore */
2389 } else if (pktin.type == SSH2_MSG_CHANNEL_CLOSE) {
2390 /* FIXME: be able to handle other channels here */
2391 if (ssh2_pkt_getuint32() != mainchan->localid)
2392 continue; /* wrong channel */
2393 ssh2_pkt_init(SSH2_MSG_CHANNEL_CLOSE);
2394 ssh2_pkt_adduint32(mainchan->remoteid);
2395 ssh2_pkt_send();
2396 /* FIXME: mark the channel as closed */
2397 if (1 /* FIXME: "all channels are closed" */) {
2398 logevent("All channels closed. Disconnecting");
2399 ssh2_pkt_init(SSH2_MSG_DISCONNECT);
2400 ssh2_pkt_send();
2401 }
2402 continue; /* remote sends close; ignore (FIXME) */
2403 } else if (pktin.type == SSH2_MSG_CHANNEL_WINDOW_ADJUST) {
2404 /* FIXME: be able to handle other channels here */
2405 if (ssh2_pkt_getuint32() != mainchan->localid)
2406 continue; /* wrong channel */
2407 mainchan->u.v2.remwindow += ssh2_pkt_getuint32();
2408 try_send = TRUE;
2409 } else {
2410 bombout(("Strange packet received: type %d", pktin.type));
2411 crReturnV;
2412 }
2413 } else {
2414 /*
2415 * We have spare data. Add it to the channel buffer.
2416 */
2417 if (mainchan->u.v2.outbufsize <
2418 mainchan->u.v2.outbuflen + inlen) {
2419 mainchan->u.v2.outbufsize =
2420 mainchan->u.v2.outbuflen + inlen + 1024;
2421 mainchan->u.v2.outbuffer = srealloc(mainchan->u.v2.outbuffer,
2422 mainchan->u.v2.outbufsize);
2423 }
2424 memcpy(mainchan->u.v2.outbuffer + mainchan->u.v2.outbuflen,
2425 in, inlen);
2426 mainchan->u.v2.outbuflen += inlen;
2427 try_send = TRUE;
2428 }
2429 if (try_send) {
2430 /*
2431 * Try to send data on the channel if we can. (FIXME:
2432 * on _all_ channels.)
2433 */
2434 while (mainchan->u.v2.remwindow > 0 &&
2435 mainchan->u.v2.outbuflen > 0) {
2436 unsigned len = mainchan->u.v2.remwindow;
2437 if (len > mainchan->u.v2.outbuflen)
2438 len = mainchan->u.v2.outbuflen;
2439 if (len > mainchan->u.v2.remmaxpkt)
2440 len = mainchan->u.v2.remmaxpkt;
2441 ssh2_pkt_init(SSH2_MSG_CHANNEL_DATA);
2442 ssh2_pkt_adduint32(mainchan->remoteid);
2443 ssh2_pkt_addstring_start();
2444 ssh2_pkt_addstring_data(mainchan->u.v2.outbuffer, len);
2445 ssh2_pkt_send();
2446 mainchan->u.v2.outbuflen -= len;
2447 memmove(mainchan->u.v2.outbuffer, mainchan->u.v2.outbuffer+len,
2448 mainchan->u.v2.outbuflen);
2449 mainchan->u.v2.remwindow -= len;
2450 }
2451 }
2452 }
2453
2454 crFinishV;
2455 }
2456
2457 /*
2458 * Handle the top-level SSH2 protocol.
2459 */
2460 static void ssh2_protocol(unsigned char *in, int inlen, int ispkt)
2461 {
2462 if (do_ssh2_transport(in, inlen, ispkt) == 0)
2463 return;
2464 do_ssh2_authconn(in, inlen, ispkt);
2465 }
2466
2467 /*
2468 * Called to set up the connection. Will arrange for WM_NETEVENT
2469 * messages to be passed to the specified window, whose window
2470 * procedure should then call telnet_msg().
2471 *
2472 * Returns an error message, or NULL on success.
2473 */
2474 static char *ssh_init (HWND hwnd, char *host, int port, char **realhost) {
2475 char *p;
2476
2477 #ifdef MSCRYPTOAPI
2478 if(crypto_startup() == 0)
2479 return "Microsoft high encryption pack not installed!";
2480 #endif
2481
2482 p = connect_to_host(host, port, realhost);
2483 if (p != NULL)
2484 return p;
2485
2486 if (!do_ssh_init())
2487 return "Protocol initialisation error";
2488
2489 if (hwnd && WSAAsyncSelect (s, hwnd, WM_NETEVENT, FD_READ | FD_CLOSE) == SOCKET_ERROR)
2490 switch (WSAGetLastError()) {
2491 case WSAENETDOWN: return "Network is down";
2492 default: return "WSAAsyncSelect(): unknown error";
2493 }
2494
2495 return NULL;
2496 }
2497
2498 /*
2499 * Process a WM_NETEVENT message. Will return 0 if the connection
2500 * has closed, or <0 for a socket error.
2501 */
2502 static int ssh_msg (WPARAM wParam, LPARAM lParam) {
2503 int ret;
2504 char buf[256];
2505
2506 /*
2507 * Because reading less than the whole of the available pending
2508 * data can generate an FD_READ event, we need to allow for the
2509 * possibility that FD_READ may arrive with FD_CLOSE already in
2510 * the queue; so it's possible that we can get here even with s
2511 * invalid. If so, we return 1 and don't worry about it.
2512 */
2513 if (s == INVALID_SOCKET)
2514 return 1;
2515
2516 if (WSAGETSELECTERROR(lParam) != 0) {
2517 closesocket(s);
2518 s = INVALID_SOCKET;
2519 return -WSAGETSELECTERROR(lParam);
2520 }
2521
2522 switch (WSAGETSELECTEVENT(lParam)) {
2523 case FD_READ:
2524 case FD_CLOSE:
2525 ret = recv(s, buf, sizeof(buf), 0);
2526 if (ret < 0 && WSAGetLastError() == WSAEWOULDBLOCK)
2527 return 1;
2528 if (ret < 0) { /* any _other_ error */
2529 closesocket(s);
2530 s = INVALID_SOCKET;
2531 return -10000-WSAGetLastError();
2532 }
2533 if (ret == 0) {
2534 s = INVALID_SOCKET;
2535 return 0;
2536 }
2537 ssh_gotdata (buf, ret);
2538 if (ssh_state == SSH_STATE_CLOSED) {
2539 closesocket(s);
2540 s = INVALID_SOCKET;
2541 return 0;
2542 }
2543 return 1;
2544 }
2545 return 1; /* shouldn't happen, but WTF */
2546 }
2547
2548 /*
2549 * Called to send data down the Telnet connection.
2550 */
2551 static void ssh_send (char *buf, int len) {
2552 if (s == INVALID_SOCKET)
2553 return;
2554
2555 ssh_protocol(buf, len, 0);
2556 }
2557
2558 /*
2559 * Called to set the size of the window from Telnet's POV.
2560 */
2561 static void ssh_size(void) {
2562 switch (ssh_state) {
2563 case SSH_STATE_BEFORE_SIZE:
2564 case SSH_STATE_CLOSED:
2565 break; /* do nothing */
2566 case SSH_STATE_INTERMED:
2567 size_needed = TRUE; /* buffer for later */
2568 break;
2569 case SSH_STATE_SESSION:
2570 if (!cfg.nopty) {
2571 send_packet(SSH1_CMSG_WINDOW_SIZE,
2572 PKT_INT, rows, PKT_INT, cols,
2573 PKT_INT, 0, PKT_INT, 0, PKT_END);
2574 }
2575 }
2576 }
2577
2578 /*
2579 * Send Telnet special codes. TS_EOF is useful for `plink', so you
2580 * can send an EOF and collect resulting output (e.g. `plink
2581 * hostname sort').
2582 */
2583 static void ssh_special (Telnet_Special code) {
2584 if (code == TS_EOF) {
2585 if (ssh_version == 1) {
2586 send_packet(SSH1_CMSG_EOF, PKT_END);
2587 } else {
2588 ssh2_pkt_init(SSH2_MSG_CHANNEL_EOF);
2589 ssh2_pkt_adduint32(mainchan->remoteid);
2590 ssh2_pkt_send();
2591 }
2592 logevent("Sent EOF message");
2593 } else {
2594 /* do nothing */
2595 }
2596 }
2597
2598
2599 /*
2600 * Read and decrypt one incoming SSH packet.
2601 * (only used by pSCP)
2602 */
2603 static void get_packet(void)
2604 {
2605 unsigned char buf[4096], *p;
2606 long to_read;
2607 int len;
2608
2609 p = NULL;
2610 len = 0;
2611
2612 while ((to_read = s_rdpkt(&p, &len)) > 0) {
2613 if (to_read > sizeof(buf)) to_read = sizeof(buf);
2614 len = s_read(buf, to_read);
2615 if (len != to_read) {
2616 closesocket(s);
2617 s = INVALID_SOCKET;
2618 return;
2619 }
2620 p = buf;
2621 }
2622
2623 assert(len == 0);
2624 }
2625
2626 /*
2627 * Receive a block of data over the SSH link. Block until
2628 * all data is available. Return nr of bytes read (0 if lost connection).
2629 * (only used by pSCP)
2630 */
2631 int ssh_scp_recv(unsigned char *buf, int len)
2632 {
2633 static int pending_input_len = 0;
2634 static unsigned char *pending_input_ptr;
2635 int to_read = len;
2636
2637 if (pending_input_len >= to_read) {
2638 memcpy(buf, pending_input_ptr, to_read);
2639 pending_input_ptr += to_read;
2640 pending_input_len -= to_read;
2641 return len;
2642 }
2643
2644 if (pending_input_len > 0) {
2645 memcpy(buf, pending_input_ptr, pending_input_len);
2646 buf += pending_input_len;
2647 to_read -= pending_input_len;
2648 pending_input_len = 0;
2649 }
2650
2651 if (s == INVALID_SOCKET)
2652 return 0;
2653 while (to_read > 0) {
2654 get_packet();
2655 if (s == INVALID_SOCKET)
2656 return 0;
2657 if (pktin.type == SSH1_SMSG_STDOUT_DATA) {
2658 int plen = GET_32BIT(pktin.body);
2659 if (plen <= to_read) {
2660 memcpy(buf, pktin.body + 4, plen);
2661 buf += plen;
2662 to_read -= plen;
2663 } else {
2664 memcpy(buf, pktin.body + 4, to_read);
2665 pending_input_len = plen - to_read;
2666 pending_input_ptr = pktin.body + 4 + to_read;
2667 to_read = 0;
2668 }
2669 } else if (pktin.type == SSH1_SMSG_STDERR_DATA) {
2670 int plen = GET_32BIT(pktin.body);
2671 fwrite(pktin.body + 4, plen, 1, stderr);
2672 } else if (pktin.type == SSH1_MSG_DISCONNECT) {
2673 logevent("Received disconnect request");
2674 } else if (pktin.type == SSH1_SMSG_SUCCESS ||
2675 pktin.type == SSH1_SMSG_FAILURE) {
2676 /* ignore */
2677 } else if (pktin.type == SSH1_SMSG_EXIT_STATUS) {
2678 char logbuf[100];
2679 sprintf(logbuf, "Remote exit status: %d", GET_32BIT(pktin.body));
2680 logevent(logbuf);
2681 send_packet(SSH1_CMSG_EXIT_CONFIRMATION, PKT_END);
2682 logevent("Closing connection");
2683 closesocket(s);
2684 s = INVALID_SOCKET;
2685 } else {
2686 bombout(("Strange packet received: type %d", pktin.type));
2687 return 0;
2688 }
2689 }
2690
2691 return len;
2692 }
2693
2694 /*
2695 * Send a block of data over the SSH link.
2696 * Block until all data is sent.
2697 * (only used by pSCP)
2698 */
2699 void ssh_scp_send(unsigned char *buf, int len)
2700 {
2701 if (s == INVALID_SOCKET)
2702 return;
2703 send_packet(SSH1_CMSG_STDIN_DATA,
2704 PKT_INT, len, PKT_DATA, buf, len, PKT_END);
2705 }
2706
2707 /*
2708 * Send an EOF notification to the server.
2709 * (only used by pSCP)
2710 */
2711 void ssh_scp_send_eof(void)
2712 {
2713 if (s == INVALID_SOCKET)
2714 return;
2715 send_packet(SSH1_CMSG_EOF, PKT_END);
2716 }
2717
2718 /*
2719 * Set up the connection, login on the remote host and
2720 * start execution of a command.
2721 * Returns an error message, or NULL on success.
2722 * (only used by pSCP)
2723 */
2724 char *ssh_scp_init(char *host, int port, char *cmd, char **realhost)
2725 {
2726 char buf[160], *p;
2727
2728 #ifdef MSCRYPTOAPI
2729 if (crypto_startup() == 0)
2730 return "Microsoft high encryption pack not installed!";
2731 #endif
2732
2733 p = connect_to_host(host, port, realhost);
2734 if (p != NULL)
2735 return p;
2736
2737 random_init();
2738
2739 if (!do_ssh_init())
2740 return "Protocol initialisation error";
2741
2742 /* Exchange keys and login */
2743 do {
2744 get_packet();
2745 if (s == INVALID_SOCKET)
2746 return "Connection closed by remote host";
2747 } while (!do_ssh1_login(NULL, 0, 1));
2748
2749 if (ssh_state == SSH_STATE_CLOSED) {
2750 closesocket(s);
2751 s = INVALID_SOCKET;
2752 return "Session initialisation error";
2753 }
2754
2755 /* Execute command */
2756 sprintf(buf, "Sending command: %.100s", cmd);
2757 logevent(buf);
2758 send_packet(SSH1_CMSG_EXEC_CMD, PKT_STR, cmd, PKT_END);
2759
2760 return NULL;
2761 }
2762
2763 static SOCKET ssh_socket(void) { return s; }
2764
2765 static int ssh_sendok(void) { return ssh_send_ok; }
2766
2767 Backend ssh_backend = {
2768 ssh_init,
2769 ssh_msg,
2770 ssh_send,
2771 ssh_size,
2772 ssh_special,
2773 ssh_socket,
2774 ssh_sendok
2775 };