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