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