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