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