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