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