Fixed accelerator clash between "Conversions" menu and "key comment" control
[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 &&
831301f6 1816 (wc_match("2.1.0*", imp) || wc_match("2.0.*", imp) ||
1817 wc_match("2.2.0*", imp) || wc_match("2.3.0*", imp) ||
1818 wc_match("2.1 *", imp)))) {
32874aea 1819 /*
1820 * These versions have the HMAC bug.
1821 */
51470298 1822 ssh->remote_bugs |= BUG_SSH2_HMAC;
32874aea 1823 logevent("We believe remote version has SSH2 HMAC bug");
7d503c31 1824 }
1dd353b5 1825
5ecd7ad0 1826 if (ssh->cfg.sshbug_derivekey2 == FORCE_ON ||
1827 (ssh->cfg.sshbug_derivekey2 == AUTO &&
2856a1b9 1828 (wc_match("2.0.0*", imp) || wc_match("2.0.10*", imp) ))) {
088bde77 1829 /*
1830 * These versions have the key-derivation bug (failing to
1831 * include the literal shared secret in the hashes that
1832 * generate the keys).
1833 */
51470298 1834 ssh->remote_bugs |= BUG_SSH2_DERIVEKEY;
088bde77 1835 logevent("We believe remote version has SSH2 key-derivation bug");
1836 }
1837
5ecd7ad0 1838 if (ssh->cfg.sshbug_rsapad2 == FORCE_ON ||
1839 (ssh->cfg.sshbug_rsapad2 == AUTO &&
831301f6 1840 (wc_match("OpenSSH_2.[5-9]*", imp) ||
1841 wc_match("OpenSSH_3.[0-2]*", imp)))) {
1dd353b5 1842 /*
1843 * These versions have the SSH2 RSA padding bug.
1844 */
51470298 1845 ssh->remote_bugs |= BUG_SSH2_RSA_PADDING;
1dd353b5 1846 logevent("We believe remote version has SSH2 RSA padding bug");
1847 }
8e975795 1848
dda87a28 1849 if (ssh->cfg.sshbug_pksessid2 == FORCE_ON ||
1850 (ssh->cfg.sshbug_pksessid2 == AUTO &&
1851 wc_match("OpenSSH_2.[0-2]*", imp))) {
1852 /*
1853 * These versions have the SSH2 session-ID bug in
1854 * public-key authentication.
1855 */
1856 ssh->remote_bugs |= BUG_SSH2_PK_SESSIONID;
1857 logevent("We believe remote version has SSH2 public-key-session-ID bug");
1858 }
1859
5ecd7ad0 1860 if (ssh->cfg.sshbug_dhgex2 == FORCE_ON) {
8e975795 1861 /*
831301f6 1862 * User specified the SSH2 DH GEX bug.
8e975795 1863 */
51470298 1864 ssh->remote_bugs |= BUG_SSH2_DH_GEX;
8e975795 1865 logevent("We believe remote version has SSH2 DH group exchange bug");
1866 }
7d503c31 1867}
1868
51470298 1869static int do_ssh_init(Ssh ssh, unsigned char c)
32874aea 1870{
51470298 1871 struct do_ssh_init_state {
1872 int vslen;
1873 char version[10];
1874 char *vstring;
1875 int vstrsize;
1876 int i;
1877 int proto1, proto2;
1878 };
1879 crState(do_ssh_init_state);
374330e2 1880
51470298 1881 crBegin(ssh->do_ssh_init_crstate);
8df7a775 1882
1883 /* Search for the string "SSH-" in the input. */
51470298 1884 s->i = 0;
8df7a775 1885 while (1) {
1886 static const int transS[] = { 1, 2, 2, 1 };
1887 static const int transH[] = { 0, 0, 3, 0 };
1888 static const int transminus[] = { 0, 0, 0, -1 };
32874aea 1889 if (c == 'S')
51470298 1890 s->i = transS[s->i];
32874aea 1891 else if (c == 'H')
51470298 1892 s->i = transH[s->i];
32874aea 1893 else if (c == '-')
51470298 1894 s->i = transminus[s->i];
32874aea 1895 else
51470298 1896 s->i = 0;
1897 if (s->i < 0)
8df7a775 1898 break;
1899 crReturn(1); /* get another character */
374330e2 1900 }
8df7a775 1901
51470298 1902 s->vstrsize = 16;
3d88e64d 1903 s->vstring = snewn(s->vstrsize, char);
51470298 1904 strcpy(s->vstring, "SSH-");
1905 s->vslen = 4;
1906 s->i = 0;
374330e2 1907 while (1) {
8df7a775 1908 crReturn(1); /* get another char */
51470298 1909 if (s->vslen >= s->vstrsize - 1) {
1910 s->vstrsize += 16;
3d88e64d 1911 s->vstring = sresize(s->vstring, s->vstrsize, char);
32874aea 1912 }
51470298 1913 s->vstring[s->vslen++] = c;
1914 if (s->i >= 0) {
374330e2 1915 if (c == '-') {
51470298 1916 s->version[s->i] = '\0';
1917 s->i = -1;
1918 } else if (s->i < sizeof(s->version) - 1)
1919 s->version[s->i++] = c;
c4ffc4d0 1920 } else if (c == '\012')
374330e2 1921 break;
1922 }
1923
51470298 1924 ssh->agentfwd_enabled = FALSE;
1925 ssh->rdpkt2_state.incoming_sequence = 0;
960e736a 1926
51470298 1927 s->vstring[s->vslen] = 0;
1928 s->vstring[strcspn(s->vstring, "\r\n")] = '\0';/* remove EOL chars */
1929 {
1930 char *vlog;
3d88e64d 1931 vlog = snewn(20 + s->vslen, char);
51470298 1932 sprintf(vlog, "Server version: %s", s->vstring);
1933 logevent(vlog);
1934 sfree(vlog);
1935 }
1936 ssh_detect_bugs(ssh, s->vstring);
c5e9c988 1937
adf799dd 1938 /*
38d228a2 1939 * Decide which SSH protocol version to support.
adf799dd 1940 */
38d228a2 1941
1942 /* Anything strictly below "2.0" means protocol 1 is supported. */
51470298 1943 s->proto1 = ssh_versioncmp(s->version, "2.0") < 0;
38d228a2 1944 /* Anything greater or equal to "1.99" means protocol 2 is supported. */
51470298 1945 s->proto2 = ssh_versioncmp(s->version, "1.99") >= 0;
38d228a2 1946
86916870 1947 if (ssh->cfg.sshprot == 0 && !s->proto1) {
6b5cf8b4 1948 bombout(("SSH protocol version 1 required by user but not provided by server"));
7ffdbc1a 1949 crStop(0);
38d228a2 1950 }
86916870 1951 if (ssh->cfg.sshprot == 3 && !s->proto2) {
6b5cf8b4 1952 bombout(("SSH protocol version 2 required by user but not provided by server"));
7ffdbc1a 1953 crStop(0);
38d228a2 1954 }
1955
86916870 1956 if (s->proto2 && (ssh->cfg.sshprot >= 2 || !s->proto1)) {
32874aea 1957 /*
38d228a2 1958 * Use v2 protocol.
32874aea 1959 */
1960 char verstring[80], vlog[100];
1961 sprintf(verstring, "SSH-2.0-%s", sshver);
51470298 1962 SHA_Init(&ssh->exhashbase);
32874aea 1963 /*
1964 * Hash our version string and their version string.
1965 */
51470298 1966 sha_string(&ssh->exhashbase, verstring, strlen(verstring));
1967 sha_string(&ssh->exhashbase, s->vstring, strcspn(s->vstring, "\r\n"));
32874aea 1968 sprintf(vlog, "We claim version: %s", verstring);
1969 logevent(vlog);
c4ffc4d0 1970 strcat(verstring, "\012");
32874aea 1971 logevent("Using SSH protocol version 2");
51470298 1972 sk_write(ssh->s, verstring, strlen(verstring));
1973 ssh->protocol = ssh2_protocol;
1974 ssh->version = 2;
1975 ssh->s_rdpkt = ssh2_rdpkt;
e5574168 1976 } else {
32874aea 1977 /*
38d228a2 1978 * Use v1 protocol.
32874aea 1979 */
1980 char verstring[80], vlog[100];
1981 sprintf(verstring, "SSH-%s-%s",
51470298 1982 (ssh_versioncmp(s->version, "1.5") <= 0 ? s->version : "1.5"),
32874aea 1983 sshver);
1984 sprintf(vlog, "We claim version: %s", verstring);
1985 logevent(vlog);
c4ffc4d0 1986 strcat(verstring, "\012");
759712a6 1987
32874aea 1988 logevent("Using SSH protocol version 1");
51470298 1989 sk_write(ssh->s, verstring, strlen(verstring));
1990 ssh->protocol = ssh1_protocol;
1991 ssh->version = 1;
1992 ssh->s_rdpkt = ssh1_rdpkt;
e5574168 1993 }
125105d1 1994 update_specials_menu(ssh->frontend);
51470298 1995 ssh->state = SSH_STATE_BEFORE_SIZE;
8df7a775 1996
51470298 1997 sfree(s->vstring);
50526e47 1998
8df7a775 1999 crFinish(0);
2000}
2001
51470298 2002static void ssh_gotdata(Ssh ssh, unsigned char *data, int datalen)
8df7a775 2003{
51470298 2004 crBegin(ssh->ssh_gotdata_crstate);
8df7a775 2005
2006 /*
2007 * To begin with, feed the characters one by one to the
2008 * protocol initialisation / selection function do_ssh_init().
2009 * When that returns 0, we're done with the initial greeting
2010 * exchange and can move on to packet discipline.
2011 */
2012 while (1) {
51470298 2013 int ret; /* need not be kept across crReturn */
8df7a775 2014 if (datalen == 0)
2015 crReturnV; /* more data please */
51470298 2016 ret = do_ssh_init(ssh, *data);
32874aea 2017 data++;
2018 datalen--;
8df7a775 2019 if (ret == 0)
2020 break;
2021 }
2022
2023 /*
2024 * We emerge from that loop when the initial negotiation is
2025 * over and we have selected an s_rdpkt function. Now pass
2026 * everything to s_rdpkt, and then pass the resulting packets
2027 * to the proper protocol handler.
2028 */
2029 if (datalen == 0)
2030 crReturnV;
2031 while (1) {
2032 while (datalen > 0) {
51470298 2033 if (ssh->s_rdpkt(ssh, &data, &datalen) == 0) {
2034 if (ssh->state == SSH_STATE_CLOSED) {
e14d0f19 2035 return;
2036 }
51470298 2037 ssh->protocol(ssh, NULL, 0, 1);
2038 if (ssh->state == SSH_STATE_CLOSED) {
8df7a775 2039 return;
2040 }
2041 }
2042 }
2043 crReturnV;
2044 }
2045 crFinishV;
2046}
2047
36f94d1f 2048static void ssh_do_close(Ssh ssh)
32874aea 2049{
36f94d1f 2050 int i;
2051 struct ssh_channel *c;
2052
51470298 2053 ssh->state = SSH_STATE_CLOSED;
2054 if (ssh->s) {
2055 sk_close(ssh->s);
2056 ssh->s = NULL;
f3ab576e 2057 }
36f94d1f 2058 /*
2059 * Now we must shut down any port and X forwardings going
2060 * through this connection.
2061 */
74a98066 2062 if (ssh->channels) {
2063 for (i = 0; NULL != (c = index234(ssh->channels, i)); i++) {
2064 switch (c->type) {
2065 case CHAN_X11:
2066 x11_close(c->u.x11.s);
2067 break;
2068 case CHAN_SOCKDATA:
2069 pfd_close(c->u.pfd.s);
2070 break;
2071 }
2072 del234(ssh->channels, c);
2073 if (ssh->version == 2)
2074 bufchain_clear(&c->v.v2.outbuffer);
2075 sfree(c);
36f94d1f 2076 }
36f94d1f 2077 }
2078}
2079
cbe2d68f 2080static int ssh_closing(Plug plug, const char *error_msg, int error_code,
36f94d1f 2081 int calling_back)
2082{
2083 Ssh ssh = (Ssh) plug;
2084 ssh_do_close(ssh);
7e78000d 2085 if (error_msg) {
32874aea 2086 /* A socket error has occurred. */
247308b5 2087 logevent(error_msg);
971bcc0a 2088 connection_fatal(ssh->frontend, "%s", error_msg);
7e78000d 2089 } else {
2090 /* Otherwise, the remote side closed the connection normally. */
8df7a775 2091 }
7e78000d 2092 return 0;
2093}
2094
32874aea 2095static int ssh_receive(Plug plug, int urgent, char *data, int len)
2096{
51470298 2097 Ssh ssh = (Ssh) plug;
d8baa528 2098 ssh_gotdata(ssh, (unsigned char *)data, len);
51470298 2099 if (ssh->state == SSH_STATE_CLOSED) {
36f94d1f 2100 ssh_do_close(ssh);
32874aea 2101 return 0;
3257deae 2102 }
fef97f43 2103 return 1;
374330e2 2104}
2105
5471d09a 2106static void ssh_sent(Plug plug, int bufsize)
2107{
51470298 2108 Ssh ssh = (Ssh) plug;
5471d09a 2109 /*
2110 * If the send backlog on the SSH socket itself clears, we
2111 * should unthrottle the whole world if it was throttled.
2112 */
2113 if (bufsize < SSH_MAX_BACKLOG)
51470298 2114 ssh_throttle_all(ssh, 0, bufsize);
5471d09a 2115}
2116
fb09bf1c 2117/*
8df7a775 2118 * Connect to specified host and port.
2119 * Returns an error message, or NULL on success.
6e1ebb76 2120 * Also places the canonical host name into `realhost'. It must be
2121 * freed by the caller.
8df7a775 2122 */
cbe2d68f 2123static const char *connect_to_host(Ssh ssh, char *host, int port,
2124 char **realhost, int nodelay)
8df7a775 2125{
51470298 2126 static const struct plug_function_table fn_table = {
7e78000d 2127 ssh_closing,
5471d09a 2128 ssh_receive,
2129 ssh_sent,
2130 NULL
51470298 2131 };
7e78000d 2132
8df7a775 2133 SockAddr addr;
cbe2d68f 2134 const char *err;
8df7a775 2135
3d88e64d 2136 ssh->savedhost = snewn(1 + strlen(host), char);
51470298 2137 if (!ssh->savedhost)
8df7a775 2138 fatalbox("Out of memory");
51470298 2139 strcpy(ssh->savedhost, host);
8df7a775 2140
2141 if (port < 0)
2142 port = 22; /* default ssh port */
51470298 2143 ssh->savedport = port;
8df7a775 2144
2145 /*
2146 * Try to find host.
2147 */
57356d63 2148 logeventf(ssh, "Looking up host \"%s\"", host);
e8fa8f62 2149 addr = name_lookup(host, port, realhost, &ssh->cfg);
70e5d0fd 2150 if ((err = sk_addr_error(addr)) != NULL)
8df7a775 2151 return err;
2152
8df7a775 2153 /*
2154 * Open socket.
2155 */
3ad9d396 2156 {
57356d63 2157 char addrbuf[100];
3ad9d396 2158 sk_getaddr(addr, addrbuf, 100);
57356d63 2159 logeventf(ssh, "Connecting to %s port %d", addrbuf, port);
3ad9d396 2160 }
51470298 2161 ssh->fn = &fn_table;
e8fa8f62 2162 ssh->s = new_connection(addr, *realhost, port,
2163 0, 1, nodelay, (Plug) ssh, &ssh->cfg);
70e5d0fd 2164 if ((err = sk_socket_error(ssh->s)) != NULL) {
51470298 2165 ssh->s = NULL;
8df7a775 2166 return err;
67c4ba2e 2167 }
8df7a775 2168
8df7a775 2169 return NULL;
2170}
2171
2172/*
5471d09a 2173 * Throttle or unthrottle the SSH connection.
2174 */
51470298 2175static void ssh1_throttle(Ssh ssh, int adjust)
5471d09a 2176{
51470298 2177 int old_count = ssh->v1_throttle_count;
2178 ssh->v1_throttle_count += adjust;
2179 assert(ssh->v1_throttle_count >= 0);
2180 if (ssh->v1_throttle_count && !old_count) {
2181 sk_set_frozen(ssh->s, 1);
2182 } else if (!ssh->v1_throttle_count && old_count) {
2183 sk_set_frozen(ssh->s, 0);
5471d09a 2184 }
2185}
2186
2187/*
2188 * Throttle or unthrottle _all_ local data streams (for when sends
2189 * on the SSH connection itself back up).
2190 */
51470298 2191static void ssh_throttle_all(Ssh ssh, int enable, int bufsize)
5471d09a 2192{
2193 int i;
2194 struct ssh_channel *c;
2195
51470298 2196 if (enable == ssh->throttled_all)
5471d09a 2197 return;
51470298 2198 ssh->throttled_all = enable;
2199 ssh->overall_bufsize = bufsize;
2200 if (!ssh->channels)
5471d09a 2201 return;
51470298 2202 for (i = 0; NULL != (c = index234(ssh->channels, i)); i++) {
5471d09a 2203 switch (c->type) {
2204 case CHAN_MAINSESSION:
2205 /*
2206 * This is treated separately, outside the switch.
2207 */
2208 break;
2209 case CHAN_X11:
2210 x11_override_throttle(c->u.x11.s, enable);
2211 break;
2212 case CHAN_AGENT:
2213 /* Agent channels require no buffer management. */
2214 break;
2215 case CHAN_SOCKDATA:
36f94d1f 2216 pfd_override_throttle(c->u.pfd.s, enable);
5471d09a 2217 break;
2218 }
2219 }
2220}
2221
2222/*
51470298 2223 * Username and password input, abstracted off into routines
2224 * reusable in several places - even between SSH1 and SSH2.
0405e71f 2225 */
0405e71f 2226
2227/* Set up a username or password input loop on a given buffer. */
ae9ae89f 2228static void setup_userpass_input(Ssh ssh, char *buffer, int buflen, int echo)
0405e71f 2229{
51470298 2230 ssh->userpass_input_buffer = buffer;
2231 ssh->userpass_input_buflen = buflen;
2232 ssh->userpass_input_bufpos = 0;
2233 ssh->userpass_input_echo = echo;
0405e71f 2234}
2235
2236/*
2237 * Process some terminal data in the course of username/password
2238 * input. Returns >0 for success (line of input returned in
2239 * buffer), <0 for failure (user hit ^C/^D, bomb out and exit), 0
2240 * for inconclusive (keep waiting for more input please).
2241 */
ae9ae89f 2242static int process_userpass_input(Ssh ssh, unsigned char *in, int inlen)
0405e71f 2243{
2244 char c;
2245
2246 while (inlen--) {
2247 switch (c = *in++) {
2248 case 10:
2249 case 13:
51470298 2250 ssh->userpass_input_buffer[ssh->userpass_input_bufpos] = 0;
2251 ssh->userpass_input_buffer[ssh->userpass_input_buflen-1] = 0;
0405e71f 2252 return +1;
2253 break;
2254 case 8:
2255 case 127:
51470298 2256 if (ssh->userpass_input_bufpos > 0) {
2257 if (ssh->userpass_input_echo)
2258 c_write_str(ssh, "\b \b");
2259 ssh->userpass_input_bufpos--;
0405e71f 2260 }
2261 break;
2262 case 21:
2263 case 27:
51470298 2264 while (ssh->userpass_input_bufpos > 0) {
2265 if (ssh->userpass_input_echo)
2266 c_write_str(ssh, "\b \b");
2267 ssh->userpass_input_bufpos--;
0405e71f 2268 }
2269 break;
2270 case 3:
2271 case 4:
2272 return -1;
2273 break;
2274 default:
4692a14a 2275 /*
2276 * This simplistic check for printability is disabled
2277 * when we're doing password input, because some people
2278 * have control characters in their passwords.o
2279 */
2280 if ((!ssh->userpass_input_echo ||
2281 (c >= ' ' && c <= '~') ||
0405e71f 2282 ((unsigned char) c >= 160))
51470298 2283 && ssh->userpass_input_bufpos < ssh->userpass_input_buflen-1) {
2284 ssh->userpass_input_buffer[ssh->userpass_input_bufpos++] = c;
2285 if (ssh->userpass_input_echo)
2286 c_write(ssh, &c, 1);
0405e71f 2287 }
2288 break;
2289 }
2290 }
2291 return 0;
2292}
2293
f11d78f2 2294static void ssh_agent_callback(void *sshv, void *reply, int replylen)
839f10db 2295{
2296 Ssh ssh = (Ssh) sshv;
2297
2298 ssh->agent_response = reply;
2299 ssh->agent_response_len = replylen;
2300
2301 if (ssh->version == 1)
2302 do_ssh1_login(ssh, NULL, -1, 0);
2303 else
2304 do_ssh2_authconn(ssh, NULL, -1, 0);
2305}
2306
f11d78f2 2307static void ssh_agentf_callback(void *cv, void *reply, int replylen)
839f10db 2308{
2309 struct ssh_channel *c = (struct ssh_channel *)cv;
2310 Ssh ssh = c->ssh;
2311 void *sentreply = reply;
2312
2313 if (!sentreply) {
2314 /* Fake SSH_AGENT_FAILURE. */
2315 sentreply = "\0\0\0\1\5";
2316 replylen = 5;
2317 }
2318 if (ssh->version == 2) {
2319 ssh2_add_channel_data(c, sentreply, replylen);
2320 ssh2_try_send(c);
2321 } else {
2322 send_packet(ssh, SSH1_MSG_CHANNEL_DATA,
2323 PKT_INT, c->remoteid,
2324 PKT_INT, replylen,
2325 PKT_DATA, sentreply, replylen,
2326 PKT_END);
2327 }
2328 if (reply)
2329 sfree(reply);
2330}
2331
0405e71f 2332/*
fb09bf1c 2333 * Handle the key exchange and user authentication phases.
2334 */
51470298 2335static int do_ssh1_login(Ssh ssh, unsigned char *in, int inlen, int ispkt)
fb09bf1c 2336{
2d466ffd 2337 int i, j;
374330e2 2338 unsigned char cookie[8];
2339 struct RSAKey servkey, hostkey;
2340 struct MD5Context md5c;
51470298 2341 struct do_ssh1_login_state {
2342 int len;
2343 unsigned char *rsabuf, *keystr1, *keystr2;
2344 unsigned long supported_ciphers_mask, supported_auths_mask;
2345 int tried_publickey, tried_agent;
2346 int tis_auth_refused, ccard_auth_refused;
2347 unsigned char session_id[16];
2348 int cipher_type;
2349 char username[100];
2350 void *publickey_blob;
2351 int publickey_bloblen;
2352 char password[100];
2353 char prompt[200];
2354 int pos;
2355 char c;
2356 int pwpkt_type;
2357 unsigned char request[5], *response, *p;
2358 int responselen;
2359 int keyi, nkeys;
2360 int authed;
2361 struct RSAKey key;
2362 Bignum challenge;
2363 char *commentp;
2364 int commentlen;
2365 };
2366 crState(do_ssh1_login_state);
2367
2368 crBegin(ssh->do_ssh1_login_crstate);
374330e2 2369
32874aea 2370 if (!ispkt)
2371 crWaitUntil(ispkt);
374330e2 2372
51470298 2373 if (ssh->pktin.type != SSH1_SMSG_PUBLIC_KEY) {
6b5cf8b4 2374 bombout(("Public key packet not received"));
7ffdbc1a 2375 crStop(0);
8d5de777 2376 }
374330e2 2377
c5e9c988 2378 logevent("Received public keys");
374330e2 2379
51470298 2380 memcpy(cookie, ssh->pktin.body, 8);
374330e2 2381
51470298 2382 i = makekey(ssh->pktin.body + 8, &servkey, &s->keystr1, 0);
2383 j = makekey(ssh->pktin.body + 8 + i, &hostkey, &s->keystr2, 0);
374330e2 2384
c5e9c988 2385 /*
1c2a93c4 2386 * Log the host key fingerprint.
c5e9c988 2387 */
c5e9c988 2388 {
2389 char logmsg[80];
1c2a93c4 2390 logevent("Host key fingerprint is:");
c5e9c988 2391 strcpy(logmsg, " ");
32874aea 2392 hostkey.comment = NULL;
2393 rsa_fingerprint(logmsg + strlen(logmsg),
2394 sizeof(logmsg) - strlen(logmsg), &hostkey);
c5e9c988 2395 logevent(logmsg);
2396 }
2397
51470298 2398 ssh->v1_remote_protoflags = GET_32BIT(ssh->pktin.body + 8 + i + j);
2399 s->supported_ciphers_mask = GET_32BIT(ssh->pktin.body + 12 + i + j);
2400 s->supported_auths_mask = GET_32BIT(ssh->pktin.body + 16 + i + j);
bea1ef5f 2401
51470298 2402 ssh->v1_local_protoflags =
2403 ssh->v1_remote_protoflags & SSH1_PROTOFLAGS_SUPPORTED;
2404 ssh->v1_local_protoflags |= SSH1_PROTOFLAG_SCREEN_NUMBER;
b96dc54c 2405
c5e9c988 2406 MD5Init(&md5c);
51470298 2407 MD5Update(&md5c, s->keystr2, hostkey.bytes);
2408 MD5Update(&md5c, s->keystr1, servkey.bytes);
2409 MD5Update(&md5c, ssh->pktin.body, 8);
2410 MD5Final(s->session_id, &md5c);
374330e2 2411
32874aea 2412 for (i = 0; i < 32; i++)
51470298 2413 ssh->session_key[i] = random_byte();
374330e2 2414
51470298 2415 s->len = (hostkey.bytes > servkey.bytes ? hostkey.bytes : servkey.bytes);
374330e2 2416
3d88e64d 2417 s->rsabuf = snewn(s->len, unsigned char);
51470298 2418 if (!s->rsabuf)
374330e2 2419 fatalbox("Out of memory");
2420
89ee5268 2421 /*
2422 * Verify the host key.
2423 */
2424 {
32874aea 2425 /*
2426 * First format the key into a string.
2427 */
2428 int len = rsastr_len(&hostkey);
2429 char fingerprint[100];
3d88e64d 2430 char *keystr = snewn(len, char);
32874aea 2431 if (!keystr)
2432 fatalbox("Out of memory");
2433 rsastr_fmt(keystr, &hostkey);
2434 rsa_fingerprint(fingerprint, sizeof(fingerprint), &hostkey);
a8327734 2435 verify_ssh_host_key(ssh->frontend,
2436 ssh->savedhost, ssh->savedport, "rsa", keystr,
32874aea 2437 fingerprint);
2438 sfree(keystr);
2439 }
2440
2441 for (i = 0; i < 32; i++) {
51470298 2442 s->rsabuf[i] = ssh->session_key[i];
374330e2 2443 if (i < 16)
51470298 2444 s->rsabuf[i] ^= s->session_id[i];
374330e2 2445 }
2446
2447 if (hostkey.bytes > servkey.bytes) {
51470298 2448 rsaencrypt(s->rsabuf, 32, &servkey);
2449 rsaencrypt(s->rsabuf, servkey.bytes, &hostkey);
374330e2 2450 } else {
51470298 2451 rsaencrypt(s->rsabuf, 32, &hostkey);
2452 rsaencrypt(s->rsabuf, hostkey.bytes, &servkey);
374330e2 2453 }
2454
c5e9c988 2455 logevent("Encrypted session key");
2456
ca20bfcf 2457 {
2458 int cipher_chosen = 0, warn = 0;
2459 char *cipher_string = NULL;
51470298 2460 int i;
ca20bfcf 2461 for (i = 0; !cipher_chosen && i < CIPHER_MAX; i++) {
86916870 2462 int next_cipher = ssh->cfg.ssh_cipherlist[i];
ca20bfcf 2463 if (next_cipher == CIPHER_WARN) {
2464 /* If/when we choose a cipher, warn about it */
2465 warn = 1;
2466 } else if (next_cipher == CIPHER_AES) {
2467 /* XXX Probably don't need to mention this. */
2468 logevent("AES not supported in SSH1, skipping");
2469 } else {
2470 switch (next_cipher) {
51470298 2471 case CIPHER_3DES: s->cipher_type = SSH_CIPHER_3DES;
ca20bfcf 2472 cipher_string = "3DES"; break;
51470298 2473 case CIPHER_BLOWFISH: s->cipher_type = SSH_CIPHER_BLOWFISH;
ca20bfcf 2474 cipher_string = "Blowfish"; break;
51470298 2475 case CIPHER_DES: s->cipher_type = SSH_CIPHER_DES;
ca20bfcf 2476 cipher_string = "single-DES"; break;
2477 }
51470298 2478 if (s->supported_ciphers_mask & (1 << s->cipher_type))
ca20bfcf 2479 cipher_chosen = 1;
2480 }
2481 }
2482 if (!cipher_chosen) {
51470298 2483 if ((s->supported_ciphers_mask & (1 << SSH_CIPHER_3DES)) == 0)
6b5cf8b4 2484 bombout(("Server violates SSH 1 protocol by not "
ca20bfcf 2485 "supporting 3DES encryption"));
2486 else
2487 /* shouldn't happen */
6b5cf8b4 2488 bombout(("No supported ciphers found"));
7ffdbc1a 2489 crStop(0);
a99a05c0 2490 }
ca20bfcf 2491
2492 /* Warn about chosen cipher if necessary. */
2493 if (warn)
a8327734 2494 askcipher(ssh->frontend, cipher_string, 0);
bea1ef5f 2495 }
ca20bfcf 2496
51470298 2497 switch (s->cipher_type) {
32874aea 2498 case SSH_CIPHER_3DES:
2499 logevent("Using 3DES encryption");
2500 break;
2501 case SSH_CIPHER_DES:
2502 logevent("Using single-DES encryption");
2503 break;
2504 case SSH_CIPHER_BLOWFISH:
2505 logevent("Using Blowfish encryption");
2506 break;
c5e9c988 2507 }
bea1ef5f 2508
51470298 2509 send_packet(ssh, SSH1_CMSG_SESSION_KEY,
2510 PKT_CHAR, s->cipher_type,
32874aea 2511 PKT_DATA, cookie, 8,
51470298 2512 PKT_CHAR, (s->len * 8) >> 8, PKT_CHAR, (s->len * 8) & 0xFF,
2513 PKT_DATA, s->rsabuf, s->len,
2514 PKT_INT, ssh->v1_local_protoflags, PKT_END);
fb09bf1c 2515
c5e9c988 2516 logevent("Trying to enable encryption...");
374330e2 2517
51470298 2518 sfree(s->rsabuf);
374330e2 2519
51470298 2520 ssh->cipher = (s->cipher_type == SSH_CIPHER_BLOWFISH ? &ssh_blowfish_ssh1 :
2521 s->cipher_type == SSH_CIPHER_DES ? &ssh_des :
2522 &ssh_3des);
371e569c 2523 ssh->v1_cipher_ctx = ssh->cipher->make_context();
2524 ssh->cipher->sesskey(ssh->v1_cipher_ctx, ssh->session_key);
57356d63 2525 logeventf(ssh, "Initialised %s encryption", ssh->cipher->text_name);
374330e2 2526
0183b242 2527 ssh->crcda_ctx = crcda_make_context();
2528 logevent("Installing CRC compensation attack detector");
2529
fb09bf1c 2530 crWaitUntil(ispkt);
374330e2 2531
51470298 2532 if (ssh->pktin.type != SSH1_SMSG_SUCCESS) {
6b5cf8b4 2533 bombout(("Encryption not successfully enabled"));
7ffdbc1a 2534 crStop(0);
8d5de777 2535 }
374330e2 2536
c5e9c988 2537 logevent("Successfully started encryption");
2538
374330e2 2539 fflush(stdout);
2540 {
86916870 2541 if ((flags & FLAG_INTERACTIVE) && !*ssh->cfg.username) {
c0a81592 2542 if (ssh_get_line && !ssh_getline_pw_only) {
32874aea 2543 if (!ssh_get_line("login as: ",
51470298 2544 s->username, sizeof(s->username), FALSE)) {
32874aea 2545 /*
2546 * get_line failed to get a username.
2547 * Terminate.
2548 */
2549 logevent("No username provided. Abandoning session.");
3bb2f322 2550 ssh_closing((Plug)ssh, NULL, 0, 0);
7ffdbc1a 2551 crStop(1);
32874aea 2552 }
2553 } else {
51470298 2554 int ret; /* need not be kept over crReturn */
2555 c_write_str(ssh, "login as: ");
2556 ssh->send_ok = 1;
0405e71f 2557
51470298 2558 setup_userpass_input(ssh, s->username, sizeof(s->username), 1);
0405e71f 2559 do {
32874aea 2560 crWaitUntil(!ispkt);
51470298 2561 ret = process_userpass_input(ssh, in, inlen);
0405e71f 2562 } while (ret == 0);
2563 if (ret < 0)
2564 cleanup_exit(0);
51470298 2565 c_write_str(ssh, "\r\n");
32874aea 2566 }
2567 } else {
86916870 2568 strncpy(s->username, ssh->cfg.username, sizeof(s->username));
51470298 2569 s->username[sizeof(s->username)-1] = '\0';
374330e2 2570 }
fb09bf1c 2571
51470298 2572 send_packet(ssh, SSH1_CMSG_USER, PKT_STR, s->username, PKT_END);
c5e9c988 2573 {
51470298 2574 char userlog[22 + sizeof(s->username)];
2575 sprintf(userlog, "Sent username \"%s\"", s->username);
c5e9c988 2576 logevent(userlog);
32874aea 2577 if (flags & FLAG_INTERACTIVE &&
2578 (!((flags & FLAG_STDERR) && (flags & FLAG_VERBOSE)))) {
3c8e959b 2579 strcat(userlog, "\r\n");
51470298 2580 c_write_str(ssh, userlog);
3c8e959b 2581 }
c5e9c988 2582 }
374330e2 2583 }
2584
fb09bf1c 2585 crWaitUntil(ispkt);
374330e2 2586
51470298 2587 if ((ssh->remote_bugs & BUG_CHOKES_ON_RSA)) {
0df73905 2588 /* We must not attempt PK auth. Pretend we've already tried it. */
51470298 2589 s->tried_publickey = s->tried_agent = 1;
0df73905 2590 } else {
51470298 2591 s->tried_publickey = s->tried_agent = 0;
0df73905 2592 }
51470298 2593 s->tis_auth_refused = s->ccard_auth_refused = 0;
86916870 2594 /* Load the public half of ssh->cfg.keyfile so we notice if it's in Pageant */
9a30e26b 2595 if (!filename_is_null(ssh->cfg.keyfile)) {
2596 if (!rsakey_pubblob(&ssh->cfg.keyfile,
51470298 2597 &s->publickey_blob, &s->publickey_bloblen))
2598 s->publickey_blob = NULL;
396778f1 2599 } else
51470298 2600 s->publickey_blob = NULL;
7cca0d81 2601
51470298 2602 while (ssh->pktin.type == SSH1_SMSG_FAILURE) {
2603 s->pwpkt_type = SSH1_CMSG_AUTH_PASSWORD;
614a20a0 2604
51470298 2605 if (agent_exists() && !s->tried_agent) {
32874aea 2606 /*
2607 * Attempt RSA authentication using Pageant.
2608 */
32874aea 2609 void *r;
2610
51470298 2611 s->authed = FALSE;
2612 s->tried_agent = 1;
32874aea 2613 logevent("Pageant is running. Requesting keys.");
2614
2615 /* Request the keys held by the agent. */
51470298 2616 PUT_32BIT(s->request, 1);
2617 s->request[4] = SSH1_AGENTC_REQUEST_RSA_IDENTITIES;
839f10db 2618 if (!agent_query(s->request, 5, &r, &s->responselen,
2619 ssh_agent_callback, ssh)) {
2620 do {
2621 crReturn(0);
2622 if (ispkt) {
2623 bombout(("Unexpected data from server while waiting"
2624 " for agent response"));
2625 crStop(0);
2626 }
2627 } while (ispkt || inlen > 0);
2628 r = ssh->agent_response;
2629 s->responselen = ssh->agent_response_len;
2630 }
51470298 2631 s->response = (unsigned char *) r;
2632 if (s->response && s->responselen >= 5 &&
2633 s->response[4] == SSH1_AGENT_RSA_IDENTITIES_ANSWER) {
2634 s->p = s->response + 5;
2635 s->nkeys = GET_32BIT(s->p);
2636 s->p += 4;
32874aea 2637 {
2638 char buf[64];
51470298 2639 sprintf(buf, "Pageant has %d SSH1 keys", s->nkeys);
32874aea 2640 logevent(buf);
2641 }
51470298 2642 for (s->keyi = 0; s->keyi < s->nkeys; s->keyi++) {
32874aea 2643 {
2644 char buf[64];
51470298 2645 sprintf(buf, "Trying Pageant key #%d", s->keyi);
32874aea 2646 logevent(buf);
2647 }
51470298 2648 if (s->publickey_blob &&
2649 !memcmp(s->p, s->publickey_blob,
2650 s->publickey_bloblen)) {
396778f1 2651 logevent("This key matches configured key file");
51470298 2652 s->tried_publickey = 1;
396778f1 2653 }
51470298 2654 s->p += 4;
2655 s->p += ssh1_read_bignum(s->p, &s->key.exponent);
2656 s->p += ssh1_read_bignum(s->p, &s->key.modulus);
2657 s->commentlen = GET_32BIT(s->p);
2658 s->p += 4;
d8baa528 2659 s->commentp = (char *)s->p;
51470298 2660 s->p += s->commentlen;
2661 send_packet(ssh, SSH1_CMSG_AUTH_RSA,
2662 PKT_BIGNUM, s->key.modulus, PKT_END);
32874aea 2663 crWaitUntil(ispkt);
51470298 2664 if (ssh->pktin.type != SSH1_SMSG_AUTH_RSA_CHALLENGE) {
32874aea 2665 logevent("Key refused");
2666 continue;
2667 }
2668 logevent("Received RSA challenge");
51470298 2669 ssh1_read_bignum(ssh->pktin.body, &s->challenge);
32874aea 2670 {
2671 char *agentreq, *q, *ret;
2d466ffd 2672 void *vret;
32874aea 2673 int len, retlen;
2674 len = 1 + 4; /* message type, bit count */
51470298 2675 len += ssh1_bignum_length(s->key.exponent);
2676 len += ssh1_bignum_length(s->key.modulus);
2677 len += ssh1_bignum_length(s->challenge);
32874aea 2678 len += 16; /* session id */
2679 len += 4; /* response format */
3d88e64d 2680 agentreq = snewn(4 + len, char);
32874aea 2681 PUT_32BIT(agentreq, len);
2682 q = agentreq + 4;
2683 *q++ = SSH1_AGENTC_RSA_CHALLENGE;
51470298 2684 PUT_32BIT(q, bignum_bitcount(s->key.modulus));
32874aea 2685 q += 4;
51470298 2686 q += ssh1_write_bignum(q, s->key.exponent);
2687 q += ssh1_write_bignum(q, s->key.modulus);
2688 q += ssh1_write_bignum(q, s->challenge);
2689 memcpy(q, s->session_id, 16);
32874aea 2690 q += 16;
2691 PUT_32BIT(q, 1); /* response format */
839f10db 2692 if (!agent_query(agentreq, len + 4, &vret, &retlen,
2693 ssh_agent_callback, ssh)) {
2694 sfree(agentreq);
2695 do {
2696 crReturn(0);
2697 if (ispkt) {
2698 bombout(("Unexpected data from server"
2699 " while waiting for agent"
2700 " response"));
2701 crStop(0);
2702 }
2703 } while (ispkt || inlen > 0);
2704 vret = ssh->agent_response;
2705 retlen = ssh->agent_response_len;
2706 } else
2707 sfree(agentreq);
2d466ffd 2708 ret = vret;
32874aea 2709 if (ret) {
2710 if (ret[4] == SSH1_AGENT_RSA_RESPONSE) {
2711 logevent("Sending Pageant's response");
51470298 2712 send_packet(ssh, SSH1_CMSG_AUTH_RSA_RESPONSE,
32874aea 2713 PKT_DATA, ret + 5, 16,
2714 PKT_END);
2715 sfree(ret);
2716 crWaitUntil(ispkt);
51470298 2717 if (ssh->pktin.type == SSH1_SMSG_SUCCESS) {
32874aea 2718 logevent
2719 ("Pageant's response accepted");
2720 if (flags & FLAG_VERBOSE) {
51470298 2721 c_write_str(ssh, "Authenticated using"
2722 " RSA key \"");
2723 c_write(ssh, s->commentp,
2724 s->commentlen);
2725 c_write_str(ssh, "\" from agent\r\n");
32874aea 2726 }
51470298 2727 s->authed = TRUE;
32874aea 2728 } else
2729 logevent
2730 ("Pageant's response not accepted");
2731 } else {
2732 logevent
2733 ("Pageant failed to answer challenge");
2734 sfree(ret);
2735 }
2736 } else {
2737 logevent("No reply received from Pageant");
2738 }
2739 }
51470298 2740 freebn(s->key.exponent);
2741 freebn(s->key.modulus);
2742 freebn(s->challenge);
2743 if (s->authed)
32874aea 2744 break;
2745 }
2746 }
51470298 2747 if (s->authed)
32874aea 2748 break;
2749 }
9a30e26b 2750 if (!filename_is_null(ssh->cfg.keyfile) && !s->tried_publickey)
51470298 2751 s->pwpkt_type = SSH1_CMSG_AUTH_RSA;
32874aea 2752
86916870 2753 if (ssh->cfg.try_tis_auth &&
51470298 2754 (s->supported_auths_mask & (1 << SSH1_AUTH_TIS)) &&
2755 !s->tis_auth_refused) {
2756 s->pwpkt_type = SSH1_CMSG_AUTH_TIS_RESPONSE;
32874aea 2757 logevent("Requested TIS authentication");
51470298 2758 send_packet(ssh, SSH1_CMSG_AUTH_TIS, PKT_END);
32874aea 2759 crWaitUntil(ispkt);
51470298 2760 if (ssh->pktin.type != SSH1_SMSG_AUTH_TIS_CHALLENGE) {
32874aea 2761 logevent("TIS authentication declined");
2762 if (flags & FLAG_INTERACTIVE)
51470298 2763 c_write_str(ssh, "TIS authentication refused.\r\n");
2764 s->tis_auth_refused = 1;
614a20a0 2765 continue;
32874aea 2766 } else {
51470298 2767 int challengelen = GET_32BIT(ssh->pktin.body);
32874aea 2768 logevent("Received TIS challenge");
51470298 2769 if (challengelen > sizeof(s->prompt) - 1)
2770 challengelen = sizeof(s->prompt) - 1;/* prevent overrun */
2771 memcpy(s->prompt, ssh->pktin.body + 4, challengelen);
614a20a0 2772 /* Prompt heuristic comes from OpenSSH */
51470298 2773 strncpy(s->prompt + challengelen,
2774 memchr(s->prompt, '\n', challengelen) ?
614a20a0 2775 "": "\r\nResponse: ",
51470298 2776 (sizeof s->prompt) - challengelen);
2777 s->prompt[(sizeof s->prompt) - 1] = '\0';
32874aea 2778 }
2779 }
86916870 2780 if (ssh->cfg.try_tis_auth &&
51470298 2781 (s->supported_auths_mask & (1 << SSH1_AUTH_CCARD)) &&
2782 !s->ccard_auth_refused) {
2783 s->pwpkt_type = SSH1_CMSG_AUTH_CCARD_RESPONSE;
32874aea 2784 logevent("Requested CryptoCard authentication");
51470298 2785 send_packet(ssh, SSH1_CMSG_AUTH_CCARD, PKT_END);
32874aea 2786 crWaitUntil(ispkt);
51470298 2787 if (ssh->pktin.type != SSH1_SMSG_AUTH_CCARD_CHALLENGE) {
32874aea 2788 logevent("CryptoCard authentication declined");
51470298 2789 c_write_str(ssh, "CryptoCard authentication refused.\r\n");
2790 s->ccard_auth_refused = 1;
614a20a0 2791 continue;
32874aea 2792 } else {
51470298 2793 int challengelen = GET_32BIT(ssh->pktin.body);
32874aea 2794 logevent("Received CryptoCard challenge");
51470298 2795 if (challengelen > sizeof(s->prompt) - 1)
2796 challengelen = sizeof(s->prompt) - 1;/* prevent overrun */
2797 memcpy(s->prompt, ssh->pktin.body + 4, challengelen);
2798 strncpy(s->prompt + challengelen,
2799 memchr(s->prompt, '\n', challengelen) ?
614a20a0 2800 "" : "\r\nResponse: ",
51470298 2801 sizeof(s->prompt) - challengelen);
2802 s->prompt[sizeof(s->prompt) - 1] = '\0';
32874aea 2803 }
2804 }
51470298 2805 if (s->pwpkt_type == SSH1_CMSG_AUTH_PASSWORD) {
2806 sprintf(s->prompt, "%.90s@%.90s's password: ",
2807 s->username, ssh->savedhost);
32874aea 2808 }
51470298 2809 if (s->pwpkt_type == SSH1_CMSG_AUTH_RSA) {
32874aea 2810 char *comment = NULL;
231ee168 2811 int type;
2812 char msgbuf[256];
32874aea 2813 if (flags & FLAG_VERBOSE)
51470298 2814 c_write_str(ssh, "Trying public key authentication.\r\n");
6c6d9ed9 2815 logeventf(ssh, "Trying public key \"%s\"",
2816 filename_to_str(&ssh->cfg.keyfile));
9a30e26b 2817 type = key_type(&ssh->cfg.keyfile);
231ee168 2818 if (type != SSH_KEYTYPE_SSH1) {
2819 sprintf(msgbuf, "Key is of wrong type (%s)",
2820 key_type_to_str(type));
2821 logevent(msgbuf);
51470298 2822 c_write_str(ssh, msgbuf);
2823 c_write_str(ssh, "\r\n");
2824 s->tried_publickey = 1;
231ee168 2825 continue;
2826 }
9a30e26b 2827 if (!rsakey_encrypted(&ssh->cfg.keyfile, &comment)) {
32874aea 2828 if (flags & FLAG_VERBOSE)
51470298 2829 c_write_str(ssh, "No passphrase required.\r\n");
32874aea 2830 goto tryauth;
2831 }
51470298 2832 sprintf(s->prompt, "Passphrase for key \"%.100s\": ", comment);
32874aea 2833 sfree(comment);
2834 }
a52f067e 2835
614a20a0 2836 /*
2837 * Show password prompt, having first obtained it via a TIS
2838 * or CryptoCard exchange if we're doing TIS or CryptoCard
2839 * authentication.
2840 */
fa17a66e 2841 if (ssh_get_line) {
51470298 2842 if (!ssh_get_line(s->prompt, s->password,
2843 sizeof(s->password), TRUE)) {
32874aea 2844 /*
2845 * get_line failed to get a password (for example
2846 * because one was supplied on the command line
2847 * which has already failed to work). Terminate.
2848 */
51470298 2849 send_packet(ssh, SSH1_MSG_DISCONNECT,
2bc6a386 2850 PKT_STR, "No more passwords available to try",
2851 PKT_END);
247308b5 2852 logevent("Unable to authenticate");
a8327734 2853 connection_fatal(ssh->frontend, "Unable to authenticate");
3bb2f322 2854 ssh_closing((Plug)ssh, NULL, 0, 0);
7ffdbc1a 2855 crStop(1);
32874aea 2856 }
fb09bf1c 2857 } else {
614a20a0 2858 /* Prompt may have come from server. We've munged it a bit, so
2859 * we know it to be zero-terminated at least once. */
51470298 2860 int ret; /* need not be saved over crReturn */
2861 c_write_untrusted(ssh, s->prompt, strlen(s->prompt));
2862 s->pos = 0;
0405e71f 2863
51470298 2864 setup_userpass_input(ssh, s->password, sizeof(s->password), 0);
0405e71f 2865 do {
32874aea 2866 crWaitUntil(!ispkt);
51470298 2867 ret = process_userpass_input(ssh, in, inlen);
0405e71f 2868 } while (ret == 0);
2869 if (ret < 0)
2870 cleanup_exit(0);
51470298 2871 c_write_str(ssh, "\r\n");
32874aea 2872 }
2873
2874 tryauth:
51470298 2875 if (s->pwpkt_type == SSH1_CMSG_AUTH_RSA) {
32874aea 2876 /*
2877 * Try public key authentication with the specified
2878 * key file.
2879 */
51470298 2880 s->tried_publickey = 1;
2881
2882 {
9a30e26b 2883 int ret = loadrsakey(&ssh->cfg.keyfile, &s->key, s->password);
51470298 2884 if (ret == 0) {
2885 c_write_str(ssh, "Couldn't load private key from ");
9fab77dc 2886 c_write_str(ssh, filename_to_str(&ssh->cfg.keyfile));
51470298 2887 c_write_str(ssh, ".\r\n");
2888 continue; /* go and try password */
2889 }
2890 if (ret == -1) {
2891 c_write_str(ssh, "Wrong passphrase.\r\n");
2892 s->tried_publickey = 0;
2893 continue; /* try again */
2894 }
32874aea 2895 }
2896
2897 /*
2898 * Send a public key attempt.
2899 */
51470298 2900 send_packet(ssh, SSH1_CMSG_AUTH_RSA,
2901 PKT_BIGNUM, s->key.modulus, PKT_END);
32874aea 2902
2903 crWaitUntil(ispkt);
51470298 2904 if (ssh->pktin.type == SSH1_SMSG_FAILURE) {
2905 c_write_str(ssh, "Server refused our public key.\r\n");
32874aea 2906 continue; /* go and try password */
2907 }
51470298 2908 if (ssh->pktin.type != SSH1_SMSG_AUTH_RSA_CHALLENGE) {
6b5cf8b4 2909 bombout(("Bizarre response to offer of public key"));
7ffdbc1a 2910 crStop(0);
32874aea 2911 }
32874aea 2912
51470298 2913 {
2914 int i;
2915 unsigned char buffer[32];
2916 Bignum challenge, response;
2917
2918 ssh1_read_bignum(ssh->pktin.body, &challenge);
2919 response = rsadecrypt(challenge, &s->key);
2920 freebn(s->key.private_exponent);/* burn the evidence */
32874aea 2921
51470298 2922 for (i = 0; i < 32; i++) {
2923 buffer[i] = bignum_byte(response, 31 - i);
2924 }
2925
2926 MD5Init(&md5c);
2927 MD5Update(&md5c, buffer, 32);
2928 MD5Update(&md5c, s->session_id, 16);
2929 MD5Final(buffer, &md5c);
32874aea 2930
51470298 2931 send_packet(ssh, SSH1_CMSG_AUTH_RSA_RESPONSE,
2932 PKT_DATA, buffer, 16, PKT_END);
2933
2934 freebn(challenge);
2935 freebn(response);
2936 }
32874aea 2937
2938 crWaitUntil(ispkt);
51470298 2939 if (ssh->pktin.type == SSH1_SMSG_FAILURE) {
32874aea 2940 if (flags & FLAG_VERBOSE)
51470298 2941 c_write_str(ssh, "Failed to authenticate with"
2942 " our public key.\r\n");
32874aea 2943 continue; /* go and try password */
51470298 2944 } else if (ssh->pktin.type != SSH1_SMSG_SUCCESS) {
6b5cf8b4 2945 bombout(("Bizarre response to RSA authentication response"));
7ffdbc1a 2946 crStop(0);
32874aea 2947 }
2948
2949 break; /* we're through! */
2950 } else {
51470298 2951 if (s->pwpkt_type == SSH1_CMSG_AUTH_PASSWORD) {
32874aea 2952 /*
2953 * Defence against traffic analysis: we send a
2954 * whole bunch of packets containing strings of
2955 * different lengths. One of these strings is the
2956 * password, in a SSH1_CMSG_AUTH_PASSWORD packet.
2957 * The others are all random data in
2958 * SSH1_MSG_IGNORE packets. This way a passive
2959 * listener can't tell which is the password, and
2960 * hence can't deduce the password length.
2961 *
2962 * Anybody with a password length greater than 16
2963 * bytes is going to have enough entropy in their
2964 * password that a listener won't find it _that_
2965 * much help to know how long it is. So what we'll
2966 * do is:
2967 *
2968 * - if password length < 16, we send 15 packets
2969 * containing string lengths 1 through 15
2970 *
2971 * - otherwise, we let N be the nearest multiple
2972 * of 8 below the password length, and send 8
2973 * packets containing string lengths N through
2974 * N+7. This won't obscure the order of
2975 * magnitude of the password length, but it will
2976 * introduce a bit of extra uncertainty.
2977 *
2978 * A few servers (the old 1.2.18 through 1.2.22)
2979 * can't deal with SSH1_MSG_IGNORE. For these
2980 * servers, we need an alternative defence. We make
2981 * use of the fact that the password is interpreted
2982 * as a C string: so we can append a NUL, then some
2983 * random data.
bd358db1 2984 *
2985 * One server (a Cisco one) can deal with neither
2986 * SSH1_MSG_IGNORE _nor_ a padded password string.
2987 * For this server we are left with no defences
2988 * against password length sniffing.
32874aea 2989 */
51470298 2990 if (!(ssh->remote_bugs & BUG_CHOKES_ON_SSH1_IGNORE)) {
b17c8428 2991 /*
2992 * The server can deal with SSH1_MSG_IGNORE, so
2993 * we can use the primary defence.
2994 */
32874aea 2995 int bottom, top, pwlen, i;
2996 char *randomstr;
2997
51470298 2998 pwlen = strlen(s->password);
32874aea 2999 if (pwlen < 16) {
3000 bottom = 0; /* zero length passwords are OK! :-) */
3001 top = 15;
3002 } else {
3003 bottom = pwlen & ~7;
3004 top = bottom + 7;
3005 }
3006
3007 assert(pwlen >= bottom && pwlen <= top);
3008
3d88e64d 3009 randomstr = snewn(top + 1, char);
32874aea 3010
3011 for (i = bottom; i <= top; i++) {
3012 if (i == pwlen)
51470298 3013 defer_packet(ssh, s->pwpkt_type,
3014 PKT_STR, s->password, PKT_END);
32874aea 3015 else {
3016 for (j = 0; j < i; j++) {
3017 do {
3018 randomstr[j] = random_byte();
3019 } while (randomstr[j] == '\0');
3020 }
3021 randomstr[i] = '\0';
51470298 3022 defer_packet(ssh, SSH1_MSG_IGNORE,
32874aea 3023 PKT_STR, randomstr, PKT_END);
3024 }
3025 }
bd358db1 3026 logevent("Sending password with camouflage packets");
51470298 3027 ssh_pkt_defersend(ssh);
bd358db1 3028 }
51470298 3029 else if (!(ssh->remote_bugs & BUG_NEEDS_SSH1_PLAIN_PASSWORD)) {
b17c8428 3030 /*
3031 * The server can't deal with SSH1_MSG_IGNORE
3032 * but can deal with padded passwords, so we
3033 * can use the secondary defence.
3034 */
bd358db1 3035 char string[64];
51470298 3036 char *ss;
bd358db1 3037 int len;
3038
51470298 3039 len = strlen(s->password);
bd358db1 3040 if (len < sizeof(string)) {
51470298 3041 ss = string;
3042 strcpy(string, s->password);
bd358db1 3043 len++; /* cover the zero byte */
3044 while (len < sizeof(string)) {
3045 string[len++] = (char) random_byte();
3046 }
3047 } else {
51470298 3048 ss = s->password;
bd358db1 3049 }
3050 logevent("Sending length-padded password");
51470298 3051 send_packet(ssh, s->pwpkt_type, PKT_INT, len,
3052 PKT_DATA, ss, len, PKT_END);
bd358db1 3053 } else {
3054 /*
3055 * The server has _both_
3056 * BUG_CHOKES_ON_SSH1_IGNORE and
3057 * BUG_NEEDS_SSH1_PLAIN_PASSWORD. There is
3058 * therefore nothing we can do.
3059 */
3060 int len;
51470298 3061 len = strlen(s->password);
bd358db1 3062 logevent("Sending unpadded password");
51470298 3063 send_packet(ssh, s->pwpkt_type, PKT_INT, len,
3064 PKT_DATA, s->password, len, PKT_END);
32874aea 3065 }
3066 } else {
51470298 3067 send_packet(ssh, s->pwpkt_type, PKT_STR, s->password, PKT_END);
32874aea 3068 }
3069 }
c5e9c988 3070 logevent("Sent password");
51470298 3071 memset(s->password, 0, strlen(s->password));
fb09bf1c 3072 crWaitUntil(ispkt);
51470298 3073 if (ssh->pktin.type == SSH1_SMSG_FAILURE) {
32874aea 3074 if (flags & FLAG_VERBOSE)
51470298 3075 c_write_str(ssh, "Access denied\r\n");
c5e9c988 3076 logevent("Authentication refused");
51470298 3077 } else if (ssh->pktin.type != SSH1_SMSG_SUCCESS) {
6b5cf8b4 3078 bombout(("Strange packet received, type %d", ssh->pktin.type));
7ffdbc1a 3079 crStop(0);
374330e2 3080 }
3081 }
3082
c5e9c988 3083 logevent("Authentication successful");
3084
fb09bf1c 3085 crFinish(1);
3086}
3087
32874aea 3088void sshfwd_close(struct ssh_channel *c)
3089{
51470298 3090 Ssh ssh = c->ssh;
3091
36f94d1f 3092 if (ssh->state != SSH_STATE_SESSION) {
3093 assert(ssh->state == SSH_STATE_CLOSED);
3094 return;
3095 }
3096
80e48603 3097 if (c && !c->closes) {
4ed34d25 3098 /*
3099 * If the channel's remoteid is -1, we have sent
3100 * CHANNEL_OPEN for this channel, but it hasn't even been
3101 * acknowledged by the server. So we must set a close flag
3102 * on it now, and then when the server acks the channel
3103 * open, we can close it then.
3104 */
36cac739 3105 if (((int)c->remoteid) != -1) {
51470298 3106 if (ssh->version == 1) {
3107 send_packet(ssh, SSH1_MSG_CHANNEL_CLOSE, PKT_INT, c->remoteid,
4ed34d25 3108 PKT_END);
3109 } else {
51470298 3110 ssh2_pkt_init(ssh, SSH2_MSG_CHANNEL_CLOSE);
3111 ssh2_pkt_adduint32(ssh, c->remoteid);
3112 ssh2_pkt_send(ssh);
4ed34d25 3113 }
32874aea 3114 }
0357890f 3115 c->closes = 1; /* sent MSG_CLOSE */
32874aea 3116 if (c->type == CHAN_X11) {
3117 c->u.x11.s = NULL;
d74d141c 3118 logevent("Forwarded X11 connection terminated");
4ed34d25 3119 } else if (c->type == CHAN_SOCKDATA ||
3120 c->type == CHAN_SOCKDATA_DORMANT) {
d74d141c 3121 c->u.pfd.s = NULL;
3122 logevent("Forwarded port closed");
32874aea 3123 }
3124 }
3125}
3126
5471d09a 3127int sshfwd_write(struct ssh_channel *c, char *buf, int len)
32874aea 3128{
51470298 3129 Ssh ssh = c->ssh;
3130
36f94d1f 3131 if (ssh->state != SSH_STATE_SESSION) {
3132 assert(ssh->state == SSH_STATE_CLOSED);
3133 return 0;
3134 }
3135
51470298 3136 if (ssh->version == 1) {
3137 send_packet(ssh, SSH1_MSG_CHANNEL_DATA,
32874aea 3138 PKT_INT, c->remoteid,
3139 PKT_INT, len, PKT_DATA, buf, len, PKT_END);
5471d09a 3140 /*
3141 * In SSH1 we can return 0 here - implying that forwarded
3142 * connections are never individually throttled - because
3143 * the only circumstance that can cause throttling will be
3144 * the whole SSH connection backing up, in which case
3145 * _everything_ will be throttled as a whole.
3146 */
3147 return 0;
783415f8 3148 } else {
32874aea 3149 ssh2_add_channel_data(c, buf, len);
5471d09a 3150 return ssh2_try_send(c);
3151 }
3152}
3153
3154void sshfwd_unthrottle(struct ssh_channel *c, int bufsize)
3155{
51470298 3156 Ssh ssh = c->ssh;
3157
36f94d1f 3158 if (ssh->state != SSH_STATE_SESSION) {
3159 assert(ssh->state == SSH_STATE_CLOSED);
3160 return;
3161 }
3162
51470298 3163 if (ssh->version == 1) {
5471d09a 3164 if (c->v.v1.throttling && bufsize < SSH1_BUFFER_LIMIT) {
3165 c->v.v1.throttling = 0;
51470298 3166 ssh1_throttle(ssh, -1);
5471d09a 3167 }
3168 } else {
3169 ssh2_set_window(c, OUR_V2_WINSIZE - bufsize);
783415f8 3170 }
9c964e85 3171}
3172
51470298 3173static void ssh1_protocol(Ssh ssh, unsigned char *in, int inlen, int ispkt)
32874aea 3174{
51470298 3175 crBegin(ssh->ssh1_protocol_crstate);
fb09bf1c 3176
3177 random_init();
3178
51470298 3179 while (!do_ssh1_login(ssh, in, inlen, ispkt)) {
fb09bf1c 3180 crReturnV;
85ee8208 3181 }
51470298 3182 if (ssh->state == SSH_STATE_CLOSED)
32874aea 3183 crReturnV;
fb09bf1c 3184
86916870 3185 if (ssh->cfg.agentfwd && agent_exists()) {
32874aea 3186 logevent("Requesting agent forwarding");
51470298 3187 send_packet(ssh, SSH1_CMSG_AGENT_REQUEST_FORWARDING, PKT_END);
32874aea 3188 do {
3189 crReturnV;
3190 } while (!ispkt);
51470298 3191 if (ssh->pktin.type != SSH1_SMSG_SUCCESS
3192 && ssh->pktin.type != SSH1_SMSG_FAILURE) {
6b5cf8b4 3193 bombout(("Protocol confusion"));
7ffdbc1a 3194 crStopV;
51470298 3195 } else if (ssh->pktin.type == SSH1_SMSG_FAILURE) {
32874aea 3196 logevent("Agent forwarding refused");
3197 } else {
3198 logevent("Agent forwarding enabled");
51470298 3199 ssh->agentfwd_enabled = TRUE;
db7d555c 3200 }
dacbd0e8 3201 }
3202
86916870 3203 if (ssh->cfg.x11_forward) {
32874aea 3204 char proto[20], data[64];
3205 logevent("Requesting X11 forwarding");
302121de 3206 ssh->x11auth = x11_invent_auth(proto, sizeof(proto),
86916870 3207 data, sizeof(data), ssh->cfg.x11_auth);
3208 x11_get_real_auth(ssh->x11auth, ssh->cfg.x11_display);
51470298 3209 if (ssh->v1_local_protoflags & SSH1_PROTOFLAG_SCREEN_NUMBER) {
3210 send_packet(ssh, SSH1_CMSG_X11_REQUEST_FORWARDING,
32874aea 3211 PKT_STR, proto, PKT_STR, data,
86916870 3212 PKT_INT, x11_get_screen_number(ssh->cfg.x11_display),
421d6835 3213 PKT_END);
32874aea 3214 } else {
51470298 3215 send_packet(ssh, SSH1_CMSG_X11_REQUEST_FORWARDING,
32874aea 3216 PKT_STR, proto, PKT_STR, data, PKT_END);
3217 }
3218 do {
3219 crReturnV;
3220 } while (!ispkt);
51470298 3221 if (ssh->pktin.type != SSH1_SMSG_SUCCESS
3222 && ssh->pktin.type != SSH1_SMSG_FAILURE) {
6b5cf8b4 3223 bombout(("Protocol confusion"));
7ffdbc1a 3224 crStopV;
51470298 3225 } else if (ssh->pktin.type == SSH1_SMSG_FAILURE) {
32874aea 3226 logevent("X11 forwarding refused");
3227 } else {
3228 logevent("X11 forwarding enabled");
51470298 3229 ssh->X11_fwd_enabled = TRUE;
9c964e85 3230 }
3231 }
3232
d74d141c 3233 {
9bf696b1 3234 char type;
d74d141c 3235 int n;
a4fc0d74 3236 int sport,dport,sserv,dserv;
6ee9b735 3237 char sports[256], dports[256], saddr[256], host[256];
d74d141c 3238
51470298 3239 ssh->rportfwds = newtree234(ssh_rportcmp_ssh1);
d74d141c 3240 /* Add port forwardings. */
86916870 3241 ssh->portfwd_strptr = ssh->cfg.portfwd;
51470298 3242 while (*ssh->portfwd_strptr) {
3243 type = *ssh->portfwd_strptr++;
6ee9b735 3244 saddr[0] = '\0';
d74d141c 3245 n = 0;
6ee9b735 3246 while (*ssh->portfwd_strptr && *ssh->portfwd_strptr != '\t') {
3247 if (*ssh->portfwd_strptr == ':') {
3248 /*
3249 * We've seen a colon in the middle of the
3250 * source port number. This means that
3251 * everything we've seen until now is the
3252 * source _address_, so we'll move it into
3253 * saddr and start sports from the beginning
3254 * again.
3255 */
3256 ssh->portfwd_strptr++;
3257 sports[n] = '\0';
3258 strcpy(saddr, sports);
3259 n = 0;
3260 }
3261 if (n < 255) sports[n++] = *ssh->portfwd_strptr++;
3262 }
d74d141c 3263 sports[n] = 0;
820ebe3b 3264 if (type != 'D') {
3265 if (*ssh->portfwd_strptr == '\t')
3266 ssh->portfwd_strptr++;
3267 n = 0;
3268 while (*ssh->portfwd_strptr && *ssh->portfwd_strptr != ':') {
3269 if (n < 255) host[n++] = *ssh->portfwd_strptr++;
3270 }
3271 host[n] = 0;
3272 if (*ssh->portfwd_strptr == ':')
3273 ssh->portfwd_strptr++;
3274 n = 0;
3275 while (*ssh->portfwd_strptr) {
3276 if (n < 255) dports[n++] = *ssh->portfwd_strptr++;
3277 }
3278 dports[n] = 0;
51470298 3279 ssh->portfwd_strptr++;
820ebe3b 3280 dport = atoi(dports);
3281 dserv = 0;
3282 if (dport == 0) {
3283 dserv = 1;
3284 dport = net_service_lookup(dports);
3285 if (!dport) {
3286 logeventf(ssh, "Service lookup failed for"
3287 " destination port \"%s\"", dports);
3288 }
a4fc0d74 3289 }
820ebe3b 3290 } else {
3291 while (*ssh->portfwd_strptr) ssh->portfwd_strptr++;
7ffdbc1a 3292 dport = dserv = -1;
a4fc0d74 3293 }
d74d141c 3294 sport = atoi(sports);
a4fc0d74 3295 sserv = 0;
3296 if (sport == 0) {
3297 sserv = 1;
68a49acb 3298 sport = net_service_lookup(sports);
3299 if (!sport) {
57356d63 3300 logeventf(ssh, "Service lookup failed for source"
3301 " port \"%s\"", sports);
a4fc0d74 3302 }
3303 }
d74d141c 3304 if (sport && dport) {
3305 if (type == 'L') {
6ee9b735 3306 pfd_addforward(host, dport, *saddr ? saddr : NULL,
e8fa8f62 3307 sport, ssh, &ssh->cfg);
6ee9b735 3308 logeventf(ssh, "Local port %.*s%.*s%.*s%.*s%d%.*s"
3309 " forwarding to %s:%.*s%.*s%d%.*s",
3310 (int)(*saddr?strlen(saddr):0), *saddr?saddr:NULL,
3311 (int)(*saddr?1:0), ":",
57356d63 3312 (int)(sserv ? strlen(sports) : 0), sports,
3313 sserv, "(", sport, sserv, ")",
3314 host,
3315 (int)(dserv ? strlen(dports) : 0), dports,
3316 dserv, "(", dport, dserv, ")");
820ebe3b 3317 } else if (type == 'D') {
3318 pfd_addforward(NULL, -1, *saddr ? saddr : NULL,
3319 sport, ssh, &ssh->cfg);
3320 logeventf(ssh, "Local port %.*s%.*s%.*s%.*s%d%.*s"
3321 " doing SOCKS dynamic forwarding",
3322 (int)(*saddr?strlen(saddr):0), *saddr?saddr:NULL,
3323 (int)(*saddr?1:0), ":",
3324 (int)(sserv ? strlen(sports) : 0), sports,
3325 sserv, "(", sport, sserv, ")");
d74d141c 3326 } else {
3327 struct ssh_rportfwd *pf;
3d88e64d 3328 pf = snew(struct ssh_rportfwd);
bc240b21 3329 strcpy(pf->dhost, host);
3330 pf->dport = dport;
6ee9b735 3331 if (saddr) {
3332 logeventf(ssh,
3333 "SSH1 cannot handle source address spec \"%s:%d\"; ignoring",
3334 saddr, sport);
3335 }
51470298 3336 if (add234(ssh->rportfwds, pf) != pf) {
57356d63 3337 logeventf(ssh,
3338 "Duplicate remote port forwarding to %s:%d",
3339 host, dport);
bc240b21 3340 sfree(pf);
d74d141c 3341 } else {
57356d63 3342 logeventf(ssh, "Requesting remote port %.*s%.*s%d%.*s"
3343 " forward to %s:%.*s%.*s%d%.*s",
3344 (int)(sserv ? strlen(sports) : 0), sports,
3345 sserv, "(", sport, sserv, ")",
3346 host,
3347 (int)(dserv ? strlen(dports) : 0), dports,
3348 dserv, "(", dport, dserv, ")");
51470298 3349 send_packet(ssh, SSH1_CMSG_PORT_FORWARD_REQUEST,
d74d141c 3350 PKT_INT, sport,
3351 PKT_STR, host,
3352 PKT_INT, dport,
3353 PKT_END);
9bf696b1 3354 do {
3355 crReturnV;
3356 } while (!ispkt);
51470298 3357 if (ssh->pktin.type != SSH1_SMSG_SUCCESS
3358 && ssh->pktin.type != SSH1_SMSG_FAILURE) {
6b5cf8b4 3359 bombout(("Protocol confusion"));
7ffdbc1a 3360 crStopV;
51470298 3361 } else if (ssh->pktin.type == SSH1_SMSG_FAILURE) {
3362 c_write_str(ssh, "Server refused port"
3363 " forwarding\r\n");
9bf696b1 3364 }
3365 logevent("Remote port forwarding enabled");
d74d141c 3366 }
3367 }
3368 }
3369 }
3370 }
3371
86916870 3372 if (!ssh->cfg.nopty) {
51470298 3373 send_packet(ssh, SSH1_CMSG_REQUEST_PTY,
86916870 3374 PKT_STR, ssh->cfg.termtype,
51470298 3375 PKT_INT, ssh->term_height,
3376 PKT_INT, ssh->term_width,
32874aea 3377 PKT_INT, 0, PKT_INT, 0, PKT_CHAR, 0, PKT_END);
51470298 3378 ssh->state = SSH_STATE_INTERMED;
32874aea 3379 do {
3380 crReturnV;
3381 } while (!ispkt);
51470298 3382 if (ssh->pktin.type != SSH1_SMSG_SUCCESS
3383 && ssh->pktin.type != SSH1_SMSG_FAILURE) {
6b5cf8b4 3384 bombout(("Protocol confusion"));
7ffdbc1a 3385 crStopV;
51470298 3386 } else if (ssh->pktin.type == SSH1_SMSG_FAILURE) {
3387 c_write_str(ssh, "Server refused to allocate pty\r\n");
3388 ssh->editing = ssh->echoing = 1;
32874aea 3389 }
c5e9c988 3390 logevent("Allocated pty");
0965bee0 3391 } else {
51470298 3392 ssh->editing = ssh->echoing = 1;
374330e2 3393 }
3394
86916870 3395 if (ssh->cfg.compression) {
51470298 3396 send_packet(ssh, SSH1_CMSG_REQUEST_COMPRESSION, PKT_INT, 6, PKT_END);
32874aea 3397 do {
3398 crReturnV;
3399 } while (!ispkt);
51470298 3400 if (ssh->pktin.type != SSH1_SMSG_SUCCESS
3401 && ssh->pktin.type != SSH1_SMSG_FAILURE) {
6b5cf8b4 3402 bombout(("Protocol confusion"));
7ffdbc1a 3403 crStopV;
51470298 3404 } else if (ssh->pktin.type == SSH1_SMSG_FAILURE) {
3405 c_write_str(ssh, "Server refused to compress\r\n");
32874aea 3406 }
4ba9b64b 3407 logevent("Started compression");
51470298 3408 ssh->v1_compressing = TRUE;
5366aed8 3409 ssh->cs_comp_ctx = zlib_compress_init();
3410 logevent("Initialised zlib (RFC1950) compression");
3411 ssh->sc_comp_ctx = zlib_decompress_init();
3412 logevent("Initialised zlib (RFC1950) decompression");
4ba9b64b 3413 }
3414
fd5e5847 3415 /*
3416 * Start the shell or command.
3417 *
3418 * Special case: if the first-choice command is an SSH2
3419 * subsystem (hence not usable here) and the second choice
3420 * exists, we fall straight back to that.
3421 */
3422 {
86916870 3423 char *cmd = ssh->cfg.remote_cmd_ptr;
fd5e5847 3424
86916870 3425 if (ssh->cfg.ssh_subsys && ssh->cfg.remote_cmd_ptr2) {
3426 cmd = ssh->cfg.remote_cmd_ptr2;
51470298 3427 ssh->fallback_cmd = TRUE;
fd5e5847 3428 }
3429 if (*cmd)
51470298 3430 send_packet(ssh, SSH1_CMSG_EXEC_CMD, PKT_STR, cmd, PKT_END);
fd5e5847 3431 else
51470298 3432 send_packet(ssh, SSH1_CMSG_EXEC_SHELL, PKT_END);
fd5e5847 3433 logevent("Started session");
3434 }
374330e2 3435
51470298 3436 ssh->state = SSH_STATE_SESSION;
3437 if (ssh->size_needed)
3438 ssh_size(ssh, ssh->term_width, ssh->term_height);
3439 if (ssh->eof_needed)
3440 ssh_special(ssh, TS_EOF);
374330e2 3441
b9d7bcad 3442 if (ssh->ldisc)
3443 ldisc_send(ssh->ldisc, NULL, 0, 0);/* cause ldisc to notice changes */
51470298 3444 ssh->send_ok = 1;
3445 ssh->channels = newtree234(ssh_channelcmp);
374330e2 3446 while (1) {
3447 crReturnV;
3448 if (ispkt) {
51470298 3449 if (ssh->pktin.type == SSH1_SMSG_STDOUT_DATA ||
3450 ssh->pktin.type == SSH1_SMSG_STDERR_DATA) {
3451 long len = GET_32BIT(ssh->pktin.body);
5471d09a 3452 int bufsize =
51470298 3453 from_backend(ssh->frontend,
3454 ssh->pktin.type == SSH1_SMSG_STDERR_DATA,
d8baa528 3455 (char *)(ssh->pktin.body) + 4, len);
51470298 3456 if (!ssh->v1_stdout_throttling && bufsize > SSH1_BUFFER_LIMIT) {
3457 ssh->v1_stdout_throttling = 1;
3458 ssh1_throttle(ssh, +1);
5471d09a 3459 }
51470298 3460 } else if (ssh->pktin.type == SSH1_MSG_DISCONNECT) {
3bb2f322 3461 ssh_closing((Plug)ssh, NULL, 0, 0);
c5e9c988 3462 logevent("Received disconnect request");
7ffdbc1a 3463 crStopV;
51470298 3464 } else if (ssh->pktin.type == SSH1_SMSG_X11_OPEN) {
32874aea 3465 /* Remote side is trying to open a channel to talk to our
3466 * X-Server. Give them back a local channel number. */
3467 struct ssh_channel *c;
9c964e85 3468
3469 logevent("Received X11 connect request");
3470 /* Refuse if X11 forwarding is disabled. */
51470298 3471 if (!ssh->X11_fwd_enabled) {
3472 send_packet(ssh, SSH1_MSG_CHANNEL_OPEN_FAILURE,
3473 PKT_INT, GET_32BIT(ssh->pktin.body), PKT_END);
9c964e85 3474 logevent("Rejected X11 connect request");
3475 } else {
3d88e64d 3476 c = snew(struct ssh_channel);
51470298 3477 c->ssh = ssh;
9c964e85 3478
86916870 3479 if (x11_init(&c->u.x11.s, ssh->cfg.x11_display, c,
e8fa8f62 3480 ssh->x11auth, NULL, -1, &ssh->cfg) != NULL) {
32874aea 3481 logevent("opening X11 forward connection failed");
3482 sfree(c);
51470298 3483 send_packet(ssh, SSH1_MSG_CHANNEL_OPEN_FAILURE,
3484 PKT_INT, GET_32BIT(ssh->pktin.body),
32874aea 3485 PKT_END);
9c964e85 3486 } else {
32874aea 3487 logevent
3488 ("opening X11 forward connection succeeded");
51470298 3489 c->remoteid = GET_32BIT(ssh->pktin.body);
3490 c->localid = alloc_channel_id(ssh);
32874aea 3491 c->closes = 0;
5471d09a 3492 c->v.v1.throttling = 0;
32874aea 3493 c->type = CHAN_X11; /* identify channel type */
51470298 3494 add234(ssh->channels, c);
3495 send_packet(ssh, SSH1_MSG_CHANNEL_OPEN_CONFIRMATION,
32874aea 3496 PKT_INT, c->remoteid, PKT_INT,
3497 c->localid, PKT_END);
3498 logevent("Opened X11 forward channel");
9c964e85 3499 }
3500 }
51470298 3501 } else if (ssh->pktin.type == SSH1_SMSG_AGENT_OPEN) {
32874aea 3502 /* Remote side is trying to open a channel to talk to our
3503 * agent. Give them back a local channel number. */
3504 struct ssh_channel *c;
db7d555c 3505
3506 /* Refuse if agent forwarding is disabled. */
51470298 3507 if (!ssh->agentfwd_enabled) {
3508 send_packet(ssh, SSH1_MSG_CHANNEL_OPEN_FAILURE,
3509 PKT_INT, GET_32BIT(ssh->pktin.body), PKT_END);
db7d555c 3510 } else {
3d88e64d 3511 c = snew(struct ssh_channel);
51470298 3512 c->ssh = ssh;
3513 c->remoteid = GET_32BIT(ssh->pktin.body);
3514 c->localid = alloc_channel_id(ssh);
db7d555c 3515 c->closes = 0;
5471d09a 3516 c->v.v1.throttling = 0;
32874aea 3517 c->type = CHAN_AGENT; /* identify channel type */
db7d555c 3518 c->u.a.lensofar = 0;
51470298 3519 add234(ssh->channels, c);
3520 send_packet(ssh, SSH1_MSG_CHANNEL_OPEN_CONFIRMATION,
db7d555c 3521 PKT_INT, c->remoteid, PKT_INT, c->localid,
3522 PKT_END);
3523 }
51470298 3524 } else if (ssh->pktin.type == SSH1_MSG_PORT_OPEN) {
d74d141c 3525 /* Remote side is trying to open a channel to talk to a
3526 * forwarded port. Give them back a local channel number. */
3527 struct ssh_channel *c;
3528 struct ssh_rportfwd pf;
3529 int hostsize, port;
3530 char host[256], buf[1024];
cbe2d68f 3531 char *p, *h;
3532 const char *e;
3d88e64d 3533 c = snew(struct ssh_channel);
51470298 3534 c->ssh = ssh;
d74d141c 3535
51470298 3536 hostsize = GET_32BIT(ssh->pktin.body+4);
d8baa528 3537 for (h = host, p = (char *)(ssh->pktin.body+8);
3538 hostsize != 0; hostsize--) {
d74d141c 3539 if (h+1 < host+sizeof(host))
3540 *h++ = *p;
95bc8819 3541 p++;
d74d141c 3542 }
3543 *h = 0;
3544 port = GET_32BIT(p);
3545
bc240b21 3546 strcpy(pf.dhost, host);
3547 pf.dport = port;
d74d141c 3548
51470298 3549 if (find234(ssh->rportfwds, &pf, NULL) == NULL) {
d74d141c 3550 sprintf(buf, "Rejected remote port open request for %s:%d",
3551 host, port);
3552 logevent(buf);
51470298 3553 send_packet(ssh, SSH1_MSG_CHANNEL_OPEN_FAILURE,
3554 PKT_INT, GET_32BIT(ssh->pktin.body), PKT_END);
d74d141c 3555 } else {
3556 sprintf(buf, "Received remote port open request for %s:%d",
3557 host, port);
3558 logevent(buf);
e8fa8f62 3559 e = pfd_newconnect(&c->u.pfd.s, host, port, c, &ssh->cfg);
d74d141c 3560 if (e != NULL) {
3561 char buf[256];
3562 sprintf(buf, "Port open failed: %s", e);
3563 logevent(buf);
3564 sfree(c);
51470298 3565 send_packet(ssh, SSH1_MSG_CHANNEL_OPEN_FAILURE,
3566 PKT_INT, GET_32BIT(ssh->pktin.body),
d74d141c 3567 PKT_END);
3568 } else {
51470298 3569 c->remoteid = GET_32BIT(ssh->pktin.body);
3570 c->localid = alloc_channel_id(ssh);
d74d141c 3571 c->closes = 0;
5471d09a 3572 c->v.v1.throttling = 0;
d74d141c 3573 c->type = CHAN_SOCKDATA; /* identify channel type */
51470298 3574 add234(ssh->channels, c);
3575 send_packet(ssh, SSH1_MSG_CHANNEL_OPEN_CONFIRMATION,
d74d141c 3576 PKT_INT, c->remoteid, PKT_INT,
3577 c->localid, PKT_END);
3578 logevent("Forwarded port opened successfully");
3579 }
3580 }
3581
51470298 3582 } else if (ssh->pktin.type == SSH1_MSG_CHANNEL_OPEN_CONFIRMATION) {
3583 unsigned int remoteid = GET_32BIT(ssh->pktin.body);
3584 unsigned int localid = GET_32BIT(ssh->pktin.body+4);
bc240b21 3585 struct ssh_channel *c;
3586
51470298 3587 c = find234(ssh->channels, &remoteid, ssh_channelfind);
bc240b21 3588 if (c && c->type == CHAN_SOCKDATA_DORMANT) {
3589 c->remoteid = localid;
3590 c->type = CHAN_SOCKDATA;
7781f316 3591 c->v.v1.throttling = 0;
bc240b21 3592 pfd_confirm(c->u.pfd.s);
3593 }
d74d141c 3594
4ed34d25 3595 if (c && c->closes) {
3596 /*
3597 * We have a pending close on this channel,
3598 * which we decided on before the server acked
3599 * the channel open. So now we know the
3600 * remoteid, we can close it again.
3601 */
51470298 3602 send_packet(ssh, SSH1_MSG_CHANNEL_CLOSE,
3603 PKT_INT, c->remoteid, PKT_END);
4ed34d25 3604 }
3605
51470298 3606 } else if (ssh->pktin.type == SSH1_MSG_CHANNEL_OPEN_FAILURE) {
3607 unsigned int remoteid = GET_32BIT(ssh->pktin.body);
724cface 3608 struct ssh_channel *c;
3609
51470298 3610 c = find234(ssh->channels, &remoteid, ssh_channelfind);
724cface 3611 if (c && c->type == CHAN_SOCKDATA_DORMANT) {
3612 logevent("Forwarded connection refused by server");
3613 pfd_close(c->u.pfd.s);
51470298 3614 del234(ssh->channels, c);
724cface 3615 sfree(c);
3616 }
3617
51470298 3618 } else if (ssh->pktin.type == SSH1_MSG_CHANNEL_CLOSE ||
3619 ssh->pktin.type == SSH1_MSG_CHANNEL_CLOSE_CONFIRMATION) {
32874aea 3620 /* Remote side closes a channel. */
51470298 3621 unsigned i = GET_32BIT(ssh->pktin.body);
32874aea 3622 struct ssh_channel *c;
51470298 3623 c = find234(ssh->channels, &i, ssh_channelfind);
d0d844c1 3624 if (c && ((int)c->remoteid) != -1) {
32874aea 3625 int closetype;
3626 closetype =
51470298 3627 (ssh->pktin.type == SSH1_MSG_CHANNEL_CLOSE ? 1 : 2);
0357890f 3628
783415f8 3629 if ((c->closes == 0) && (c->type == CHAN_X11)) {
d74d141c 3630 logevent("Forwarded X11 connection terminated");
9c964e85 3631 assert(c->u.x11.s != NULL);
3632 x11_close(c->u.x11.s);
3633 c->u.x11.s = NULL;
3634 }
d74d141c 3635 if ((c->closes == 0) && (c->type == CHAN_SOCKDATA)) {
3636 logevent("Forwarded port closed");
3637 assert(c->u.pfd.s != NULL);
3638 pfd_close(c->u.pfd.s);
3639 c->u.pfd.s = NULL;
3640 }
0357890f 3641
3642 c->closes |= (closetype << 2); /* seen this message */
3643 if (!(c->closes & closetype)) {
51470298 3644 send_packet(ssh, ssh->pktin.type, PKT_INT, c->remoteid,
0357890f 3645 PKT_END);
3646 c->closes |= closetype; /* sent it too */
3647 }
3648
3649 if (c->closes == 15) {
51470298 3650 del234(ssh->channels, c);
32874aea 3651 sfree(c);
3652 }
d0d844c1 3653 } else {
6b5cf8b4 3654 bombout(("Received CHANNEL_CLOSE%s for %s channel %d\n",
51470298 3655 ssh->pktin.type == SSH1_MSG_CHANNEL_CLOSE ? "" :
d0d844c1 3656 "_CONFIRMATION", c ? "half-open" : "nonexistent",
3657 i));
7ffdbc1a 3658 crStopV;
32874aea 3659 }
51470298 3660 } else if (ssh->pktin.type == SSH1_MSG_CHANNEL_DATA) {
32874aea 3661 /* Data sent down one of our channels. */
51470298 3662 int i = GET_32BIT(ssh->pktin.body);
3663 int len = GET_32BIT(ssh->pktin.body + 4);
3664 unsigned char *p = ssh->pktin.body + 8;
32874aea 3665 struct ssh_channel *c;
51470298 3666 c = find234(ssh->channels, &i, ssh_channelfind);
32874aea 3667 if (c) {
7ffdbc1a 3668 int bufsize = 0;
32874aea 3669 switch (c->type) {
3670 case CHAN_X11:
d8baa528 3671 bufsize = x11_send(c->u.x11.s, (char *)p, len);
9c964e85 3672 break;
d74d141c 3673 case CHAN_SOCKDATA:
d8baa528 3674 bufsize = pfd_send(c->u.pfd.s, (char *)p, len);
bc240b21 3675 break;
32874aea 3676 case CHAN_AGENT:
3677 /* Data for an agent message. Buffer it. */
3678 while (len > 0) {
3679 if (c->u.a.lensofar < 4) {
3680 int l = min(4 - c->u.a.lensofar, len);
3681 memcpy(c->u.a.msglen + c->u.a.lensofar, p,
3682 l);
3683 p += l;
3684 len -= l;
3685 c->u.a.lensofar += l;
3686 }
3687 if (c->u.a.lensofar == 4) {
3688 c->u.a.totallen =
3689 4 + GET_32BIT(c->u.a.msglen);
3d88e64d 3690 c->u.a.message = snewn(c->u.a.totallen,
3691 unsigned char);
32874aea 3692 memcpy(c->u.a.message, c->u.a.msglen, 4);
3693 }
3694 if (c->u.a.lensofar >= 4 && len > 0) {
3695 int l =
3696 min(c->u.a.totallen - c->u.a.lensofar,
3697 len);
3698 memcpy(c->u.a.message + c->u.a.lensofar, p,
3699 l);
3700 p += l;
3701 len -= l;
3702 c->u.a.lensofar += l;
3703 }
3704 if (c->u.a.lensofar == c->u.a.totallen) {
839f10db 3705 void *reply;
32874aea 3706 int replylen;
839f10db 3707 if (agent_query(c->u.a.message,
3708 c->u.a.totallen,
3709 &reply, &replylen,
3710 ssh_agentf_callback, c))
3711 ssh_agentf_callback(c, reply, replylen);
32874aea 3712 sfree(c->u.a.message);
3713 c->u.a.lensofar = 0;
3714 }
3715 }
5471d09a 3716 bufsize = 0; /* agent channels never back up */
32874aea 3717 break;
3718 }
90347b95 3719 if (!c->v.v1.throttling && bufsize > SSH1_BUFFER_LIMIT) {
5471d09a 3720 c->v.v1.throttling = 1;
51470298 3721 ssh1_throttle(ssh, +1);
5471d09a 3722 }
32874aea 3723 }
51470298 3724 } else if (ssh->pktin.type == SSH1_SMSG_SUCCESS) {
972a41c8 3725 /* may be from EXEC_SHELL on some servers */
51470298 3726 } else if (ssh->pktin.type == SSH1_SMSG_FAILURE) {
972a41c8 3727 /* may be from EXEC_SHELL on some servers
374330e2 3728 * if no pty is available or in other odd cases. Ignore */
51470298 3729 } else if (ssh->pktin.type == SSH1_SMSG_EXIT_STATUS) {
d8d6c7e5 3730 char buf[100];
51470298 3731 ssh->exitcode = GET_32BIT(ssh->pktin.body);
d8d6c7e5 3732 sprintf(buf, "Server sent command exit status %d",
51470298 3733 ssh->exitcode);
d8d6c7e5 3734 logevent(buf);
51470298 3735 send_packet(ssh, SSH1_CMSG_EXIT_CONFIRMATION, PKT_END);
4252c9cc 3736 /*
3737 * In case `helpful' firewalls or proxies tack
3738 * extra human-readable text on the end of the
3739 * session which we might mistake for another
3740 * encrypted packet, we close the session once
3741 * we've sent EXIT_CONFIRMATION.
3742 */
3bb2f322 3743 ssh_closing((Plug)ssh, NULL, 0, 0);
7ffdbc1a 3744 crStopV;
374330e2 3745 } else {
6b5cf8b4 3746 bombout(("Strange packet received: type %d", ssh->pktin.type));
7ffdbc1a 3747 crStopV;
374330e2 3748 }
3749 } else {
8df7a775 3750 while (inlen > 0) {
3751 int len = min(inlen, 512);
51470298 3752 send_packet(ssh, SSH1_CMSG_STDIN_DATA,
8df7a775 3753 PKT_INT, len, PKT_DATA, in, len, PKT_END);
3754 in += len;
3755 inlen -= len;
3756 }
374330e2 3757 }
3758 }
3759
3760 crFinishV;
3761}
3762
3763/*
e5574168 3764 * Utility routine for decoding comma-separated strings in KEXINIT.
3765 */
32874aea 3766static int in_commasep_string(char *needle, char *haystack, int haylen)
3767{
57356d63 3768 int needlen;
3769 if (!needle || !haystack) /* protect against null pointers */
3770 return 0;
3771 needlen = strlen(needle);
e5574168 3772 while (1) {
32874aea 3773 /*
3774 * Is it at the start of the string?
3775 */
3776 if (haylen >= needlen && /* haystack is long enough */
3777 !memcmp(needle, haystack, needlen) && /* initial match */
3778 (haylen == needlen || haystack[needlen] == ',')
3779 /* either , or EOS follows */
3780 )
3781 return 1;
3782 /*
3783 * If not, search for the next comma and resume after that.
3784 * If no comma found, terminate.
3785 */
3786 while (haylen > 0 && *haystack != ',')
3787 haylen--, haystack++;
3788 if (haylen == 0)
3789 return 0;
3790 haylen--, haystack++; /* skip over comma itself */
e5574168 3791 }
3792}
3793
3794/*
d39f364a 3795 * SSH2 key creation method.
3796 */
d8baa528 3797static void ssh2_mkkey(Ssh ssh, Bignum K, unsigned char *H,
3798 unsigned char *sessid, char chr,
3799 unsigned char *keyspace)
32874aea 3800{
d39f364a 3801 SHA_State s;
3802 /* First 20 bytes. */
3803 SHA_Init(&s);
51470298 3804 if (!(ssh->remote_bugs & BUG_SSH2_DERIVEKEY))
088bde77 3805 sha_mpint(&s, K);
d39f364a 3806 SHA_Bytes(&s, H, 20);
3807 SHA_Bytes(&s, &chr, 1);
5e0d7cb8 3808 SHA_Bytes(&s, sessid, 20);
d39f364a 3809 SHA_Final(&s, keyspace);
3810 /* Next 20 bytes. */
3811 SHA_Init(&s);
51470298 3812 if (!(ssh->remote_bugs & BUG_SSH2_DERIVEKEY))
088bde77 3813 sha_mpint(&s, K);
d39f364a 3814 SHA_Bytes(&s, H, 20);
3815 SHA_Bytes(&s, keyspace, 20);
32874aea 3816 SHA_Final(&s, keyspace + 20);
d39f364a 3817}
3818
3819/*
7cca0d81 3820 * Handle the SSH2 transport layer.
e5574168 3821 */
51470298 3822static int do_ssh2_transport(Ssh ssh, unsigned char *in, int inlen, int ispkt)
e5574168 3823{
51470298 3824 struct do_ssh2_transport_state {
3825 int nbits, pbits, warn;
3826 Bignum p, g, e, f, K;
3827 int kex_init_value, kex_reply_value;
3828 const struct ssh_mac **maclist;
3829 int nmacs;
3830 const struct ssh2_cipher *cscipher_tobe;
3831 const struct ssh2_cipher *sccipher_tobe;
3832 const struct ssh_mac *csmac_tobe;
3833 const struct ssh_mac *scmac_tobe;
3834 const struct ssh_compress *cscomp_tobe;
3835 const struct ssh_compress *sccomp_tobe;
3836 char *hostkeydata, *sigdata, *keystr, *fingerprint;
3837 int hostkeylen, siglen;
3838 void *hkey; /* actual host key */
3839 unsigned char exchange_hash[20];
3840 int n_preferred_ciphers;
3841 const struct ssh2_ciphers *preferred_ciphers[CIPHER_MAX];
3842 const struct ssh_compress *preferred_comp;
3843 int first_kex;
3844 };
3845 crState(do_ssh2_transport_state);
3846
3847 crBegin(ssh->do_ssh2_transport_crstate);
3848
3849 s->cscipher_tobe = s->sccipher_tobe = NULL;
3850 s->csmac_tobe = s->scmac_tobe = NULL;
3851 s->cscomp_tobe = s->sccomp_tobe = NULL;
3852
7cca0d81 3853 random_init();
51470298 3854 s->first_kex = 1;
e5574168 3855
51470298 3856 {
3857 int i;
3858 /*
3859 * Set up the preferred ciphers. (NULL => warn below here)
3860 */
3861 s->n_preferred_ciphers = 0;
3862 for (i = 0; i < CIPHER_MAX; i++) {
86916870 3863 switch (ssh->cfg.ssh_cipherlist[i]) {
51470298 3864 case CIPHER_BLOWFISH:
3865 s->preferred_ciphers[s->n_preferred_ciphers++] = &ssh2_blowfish;
3866 break;
3867 case CIPHER_DES:
86916870 3868 if (ssh->cfg.ssh2_des_cbc) {
51470298 3869 s->preferred_ciphers[s->n_preferred_ciphers++] = &ssh2_des;
3870 }
3871 break;
3872 case CIPHER_3DES:
3873 s->preferred_ciphers[s->n_preferred_ciphers++] = &ssh2_3des;
3874 break;
3875 case CIPHER_AES:
3876 s->preferred_ciphers[s->n_preferred_ciphers++] = &ssh2_aes;
3877 break;
3878 case CIPHER_WARN:
3879 /* Flag for later. Don't bother if it's the last in
3880 * the list. */
3881 if (i < CIPHER_MAX - 1) {
3882 s->preferred_ciphers[s->n_preferred_ciphers++] = NULL;
3883 }
3884 break;
ca20bfcf 3885 }
ca20bfcf 3886 }
5e8358ad 3887 }
ca20bfcf 3888
3889 /*
3890 * Set up preferred compression.
3891 */
86916870 3892 if (ssh->cfg.compression)
51470298 3893 s->preferred_comp = &ssh_zlib;
4ba9b64b 3894 else
51470298 3895 s->preferred_comp = &ssh_comp_none;
5e8358ad 3896
7591b9ff 3897 /*
3898 * Be prepared to work around the buggy MAC problem.
3899 */
51470298 3900 if (ssh->remote_bugs & BUG_SSH2_HMAC)
3901 s->maclist = buggymacs, s->nmacs = lenof(buggymacs);
7591b9ff 3902 else
51470298 3903 s->maclist = macs, s->nmacs = lenof(macs);
7591b9ff 3904
32874aea 3905 begin_key_exchange:
51470298 3906 {
3907 int i, j, cipherstr_started;
3908
3909 /*
3910 * Construct and send our key exchange packet.
3911 */
3912 ssh2_pkt_init(ssh, SSH2_MSG_KEXINIT);
3913 for (i = 0; i < 16; i++)
3914 ssh2_pkt_addbyte(ssh, (unsigned char) random_byte());
3915 /* List key exchange algorithms. */
3916 ssh2_pkt_addstring_start(ssh);
3917 for (i = 0; i < lenof(kex_algs); i++) {
3918 if (kex_algs[i] == &ssh_diffiehellman_gex &&
3919 (ssh->remote_bugs & BUG_SSH2_DH_GEX))
3920 continue;
3921 ssh2_pkt_addstring_str(ssh, kex_algs[i]->name);
3922 if (i < lenof(kex_algs) - 1)
3923 ssh2_pkt_addstring_str(ssh, ",");
32874aea 3924 }
51470298 3925 /* List server host key algorithms. */
3926 ssh2_pkt_addstring_start(ssh);
3927 for (i = 0; i < lenof(hostkey_algs); i++) {
3928 ssh2_pkt_addstring_str(ssh, hostkey_algs[i]->name);
3929 if (i < lenof(hostkey_algs) - 1)
3930 ssh2_pkt_addstring_str(ssh, ",");
32874aea 3931 }
51470298 3932 /* List client->server encryption algorithms. */
3933 ssh2_pkt_addstring_start(ssh);
3934 cipherstr_started = 0;
3935 for (i = 0; i < s->n_preferred_ciphers; i++) {
3936 const struct ssh2_ciphers *c = s->preferred_ciphers[i];
3937 if (!c) continue; /* warning flag */
3938 for (j = 0; j < c->nciphers; j++) {
3939 if (cipherstr_started)
3940 ssh2_pkt_addstring_str(ssh, ",");
3941 ssh2_pkt_addstring_str(ssh, c->list[j]->name);
3942 cipherstr_started = 1;
3943 }
3944 }
3945 /* List server->client encryption algorithms. */
3946 ssh2_pkt_addstring_start(ssh);
3947 cipherstr_started = 0;
3948 for (i = 0; i < s->n_preferred_ciphers; i++) {
3949 const struct ssh2_ciphers *c = s->preferred_ciphers[i];
3950 if (!c) continue; /* warning flag */
3951 for (j = 0; j < c->nciphers; j++) {
3952 if (cipherstr_started)
3953 ssh2_pkt_addstring_str(ssh, ",");
3954 ssh2_pkt_addstring_str(ssh, c->list[j]->name);
3955 cipherstr_started = 1;
3956 }
3957 }
3958 /* List client->server MAC algorithms. */
3959 ssh2_pkt_addstring_start(ssh);
3960 for (i = 0; i < s->nmacs; i++) {
3961 ssh2_pkt_addstring_str(ssh, s->maclist[i]->name);
3962 if (i < s->nmacs - 1)
3963 ssh2_pkt_addstring_str(ssh, ",");
3964 }
3965 /* List server->client MAC algorithms. */
3966 ssh2_pkt_addstring_start(ssh);
3967 for (i = 0; i < s->nmacs; i++) {
3968 ssh2_pkt_addstring_str(ssh, s->maclist[i]->name);
3969 if (i < s->nmacs - 1)
3970 ssh2_pkt_addstring_str(ssh, ",");
3971 }
3972 /* List client->server compression algorithms. */
3973 ssh2_pkt_addstring_start(ssh);
3974 for (i = 0; i < lenof(compressions) + 1; i++) {
3975 const struct ssh_compress *c =
3976 i == 0 ? s->preferred_comp : compressions[i - 1];
3977 ssh2_pkt_addstring_str(ssh, c->name);
3978 if (i < lenof(compressions))
3979 ssh2_pkt_addstring_str(ssh, ",");
3980 }
3981 /* List server->client compression algorithms. */
3982 ssh2_pkt_addstring_start(ssh);
3983 for (i = 0; i < lenof(compressions) + 1; i++) {
3984 const struct ssh_compress *c =
3985 i == 0 ? s->preferred_comp : compressions[i - 1];
3986 ssh2_pkt_addstring_str(ssh, c->name);
3987 if (i < lenof(compressions))
3988 ssh2_pkt_addstring_str(ssh, ",");
3989 }
3990 /* List client->server languages. Empty list. */
3991 ssh2_pkt_addstring_start(ssh);
3992 /* List server->client languages. Empty list. */
3993 ssh2_pkt_addstring_start(ssh);
3994 /* First KEX packet does _not_ follow, because we're not that brave. */
3995 ssh2_pkt_addbool(ssh, FALSE);
3996 /* Reserved. */
3997 ssh2_pkt_adduint32(ssh, 0);
e5574168 3998 }
0db56f73 3999
51470298 4000 ssh->exhash = ssh->exhashbase;
4001 sha_string(&ssh->exhash, ssh->pktout.data + 5, ssh->pktout.length - 5);
0db56f73 4002
51470298 4003 ssh2_pkt_send(ssh);
e5574168 4004
32874aea 4005 if (!ispkt)
4006 crWaitUntil(ispkt);
57356d63 4007 if (ssh->pktin.length > 5)
4008 sha_string(&ssh->exhash, ssh->pktin.data + 5, ssh->pktin.length - 5);
e5574168 4009
4010 /*
4011 * Now examine the other side's KEXINIT to see what we're up
4012 * to.
4013 */
51470298 4014 {
4015 char *str;
4016 int i, j, len;
4017
4018 if (ssh->pktin.type != SSH2_MSG_KEXINIT) {
6b5cf8b4 4019 bombout(("expected key exchange packet from server"));
7ffdbc1a 4020 crStop(0);
32874aea 4021 }
51470298 4022 ssh->kex = NULL;
4023 ssh->hostkey = NULL;
4024 s->cscipher_tobe = NULL;
4025 s->sccipher_tobe = NULL;
4026 s->csmac_tobe = NULL;
4027 s->scmac_tobe = NULL;
4028 s->cscomp_tobe = NULL;
4029 s->sccomp_tobe = NULL;
4030 ssh->pktin.savedpos += 16; /* skip garbage cookie */
4031 ssh2_pkt_getstring(ssh, &str, &len); /* key exchange algorithms */
4032 for (i = 0; i < lenof(kex_algs); i++) {
4033 if (kex_algs[i] == &ssh_diffiehellman_gex &&
4034 (ssh->remote_bugs & BUG_SSH2_DH_GEX))
4035 continue;
4036 if (in_commasep_string(kex_algs[i]->name, str, len)) {
4037 ssh->kex = kex_algs[i];
4038 break;
4039 }
32874aea 4040 }
51470298 4041 ssh2_pkt_getstring(ssh, &str, &len); /* host key algorithms */
4042 for (i = 0; i < lenof(hostkey_algs); i++) {
4043 if (in_commasep_string(hostkey_algs[i]->name, str, len)) {
4044 ssh->hostkey = hostkey_algs[i];
4045 break;
4046 }
4047 }
4048 ssh2_pkt_getstring(ssh, &str, &len); /* client->server cipher */
4049 s->warn = 0;
4050 for (i = 0; i < s->n_preferred_ciphers; i++) {
4051 const struct ssh2_ciphers *c = s->preferred_ciphers[i];
4052 if (!c) {
4053 s->warn = 1;
4054 } else {
4055 for (j = 0; j < c->nciphers; j++) {
4056 if (in_commasep_string(c->list[j]->name, str, len)) {
4057 s->cscipher_tobe = c->list[j];
4058 break;
4059 }
ca20bfcf 4060 }
32874aea 4061 }
51470298 4062 if (s->cscipher_tobe) {
4063 if (s->warn)
a8327734 4064 askcipher(ssh->frontend, s->cscipher_tobe->name, 1);
51470298 4065 break;
4066 }
32874aea 4067 }
51470298 4068 if (!s->cscipher_tobe) {
6b5cf8b4 4069 bombout(("Couldn't agree a client-to-server cipher (available: %s)",
57356d63 4070 str ? str : "(null)"));
7ffdbc1a 4071 crStop(0);
ca20bfcf 4072 }
0ef8f407 4073
51470298 4074 ssh2_pkt_getstring(ssh, &str, &len); /* server->client cipher */
4075 s->warn = 0;
4076 for (i = 0; i < s->n_preferred_ciphers; i++) {
4077 const struct ssh2_ciphers *c = s->preferred_ciphers[i];
4078 if (!c) {
4079 s->warn = 1;
4080 } else {
4081 for (j = 0; j < c->nciphers; j++) {
4082 if (in_commasep_string(c->list[j]->name, str, len)) {
4083 s->sccipher_tobe = c->list[j];
4084 break;
4085 }
ca20bfcf 4086 }
32874aea 4087 }
51470298 4088 if (s->sccipher_tobe) {
4089 if (s->warn)
a8327734 4090 askcipher(ssh->frontend, s->sccipher_tobe->name, 2);
51470298 4091 break;
4092 }
32874aea 4093 }
51470298 4094 if (!s->sccipher_tobe) {
6b5cf8b4 4095 bombout(("Couldn't agree a server-to-client cipher (available: %s)",
57356d63 4096 str ? str : "(null)"));
7ffdbc1a 4097 crStop(0);
ca20bfcf 4098 }
0ef8f407 4099
51470298 4100 ssh2_pkt_getstring(ssh, &str, &len); /* client->server mac */
4101 for (i = 0; i < s->nmacs; i++) {
4102 if (in_commasep_string(s->maclist[i]->name, str, len)) {
4103 s->csmac_tobe = s->maclist[i];
4104 break;
4105 }
32874aea 4106 }
51470298 4107 ssh2_pkt_getstring(ssh, &str, &len); /* server->client mac */
4108 for (i = 0; i < s->nmacs; i++) {
4109 if (in_commasep_string(s->maclist[i]->name, str, len)) {
4110 s->scmac_tobe = s->maclist[i];
4111 break;
4112 }
32874aea 4113 }
51470298 4114 ssh2_pkt_getstring(ssh, &str, &len); /* client->server compression */
4115 for (i = 0; i < lenof(compressions) + 1; i++) {
4116 const struct ssh_compress *c =
4117 i == 0 ? s->preferred_comp : compressions[i - 1];
4118 if (in_commasep_string(c->name, str, len)) {
4119 s->cscomp_tobe = c;
4120 break;
4121 }
32874aea 4122 }
51470298 4123 ssh2_pkt_getstring(ssh, &str, &len); /* server->client compression */
4124 for (i = 0; i < lenof(compressions) + 1; i++) {
4125 const struct ssh_compress *c =
4126 i == 0 ? s->preferred_comp : compressions[i - 1];
4127 if (in_commasep_string(c->name, str, len)) {
4128 s->sccomp_tobe = c;
4129 break;
4130 }
32874aea 4131 }
e5574168 4132 }
e5574168 4133
4134 /*
7bd5a860 4135 * Work out the number of bits of key we will need from the key
4136 * exchange. We start with the maximum key length of either
4137 * cipher...
4138 */
4139 {
32874aea 4140 int csbits, scbits;
7bd5a860 4141
51470298 4142 csbits = s->cscipher_tobe->keylen;
4143 scbits = s->sccipher_tobe->keylen;
4144 s->nbits = (csbits > scbits ? csbits : scbits);
7bd5a860 4145 }
4146 /* The keys only have 160-bit entropy, since they're based on
4147 * a SHA-1 hash. So cap the key size at 160 bits. */
51470298 4148 if (s->nbits > 160)
4149 s->nbits = 160;
7bd5a860 4150
4151 /*
a92dd380 4152 * If we're doing Diffie-Hellman group exchange, start by
4153 * requesting a group.
e5574168 4154 */
51470298 4155 if (ssh->kex == &ssh_diffiehellman_gex) {
32874aea 4156 logevent("Doing Diffie-Hellman group exchange");
51470298 4157 ssh->pkt_ctx |= SSH2_PKTCTX_DHGEX;
32874aea 4158 /*
4159 * Work out how big a DH group we will need to allow that
4160 * much data.
7bd5a860 4161 */
51470298 4162 s->pbits = 512 << ((s->nbits - 1) / 64);
4163 ssh2_pkt_init(ssh, SSH2_MSG_KEX_DH_GEX_REQUEST);
4164 ssh2_pkt_adduint32(ssh, s->pbits);
4165 ssh2_pkt_send(ssh);
32874aea 4166
4167 crWaitUntil(ispkt);
51470298 4168 if (ssh->pktin.type != SSH2_MSG_KEX_DH_GEX_GROUP) {
6b5cf8b4 4169 bombout(("expected key exchange group packet from server"));
7ffdbc1a 4170 crStop(0);
32874aea 4171 }
51470298 4172 s->p = ssh2_pkt_getmp(ssh);
4173 s->g = ssh2_pkt_getmp(ssh);
27cd7fc2 4174 ssh->kex_ctx = dh_setup_group(s->p, s->g);
51470298 4175 s->kex_init_value = SSH2_MSG_KEX_DH_GEX_INIT;
4176 s->kex_reply_value = SSH2_MSG_KEX_DH_GEX_REPLY;
a92dd380 4177 } else {
51470298 4178 ssh->pkt_ctx |= SSH2_PKTCTX_DHGROUP1;
27cd7fc2 4179 ssh->kex_ctx = dh_setup_group1();
51470298 4180 s->kex_init_value = SSH2_MSG_KEXDH_INIT;
4181 s->kex_reply_value = SSH2_MSG_KEXDH_REPLY;
8d5de777 4182 }
e5574168 4183
a92dd380 4184 logevent("Doing Diffie-Hellman key exchange");
e5574168 4185 /*
a92dd380 4186 * Now generate and send e for Diffie-Hellman.
e5574168 4187 */
27cd7fc2 4188 s->e = dh_create_e(ssh->kex_ctx, s->nbits * 2);
51470298 4189 ssh2_pkt_init(ssh, s->kex_init_value);
4190 ssh2_pkt_addmp(ssh, s->e);
4191 ssh2_pkt_send(ssh);
e5574168 4192
4193 crWaitUntil(ispkt);
51470298 4194 if (ssh->pktin.type != s->kex_reply_value) {
6b5cf8b4 4195 bombout(("expected key exchange reply packet from server"));
7ffdbc1a 4196 crStop(0);
7cca0d81 4197 }
51470298 4198 ssh2_pkt_getstring(ssh, &s->hostkeydata, &s->hostkeylen);
4199 s->f = ssh2_pkt_getmp(ssh);
4200 ssh2_pkt_getstring(ssh, &s->sigdata, &s->siglen);
e5574168 4201
27cd7fc2 4202 s->K = dh_find_K(ssh->kex_ctx, s->f);
e5574168 4203
51470298 4204 sha_string(&ssh->exhash, s->hostkeydata, s->hostkeylen);
4205 if (ssh->kex == &ssh_diffiehellman_gex) {
4206 sha_uint32(&ssh->exhash, s->pbits);
4207 sha_mpint(&ssh->exhash, s->p);
4208 sha_mpint(&ssh->exhash, s->g);
a92dd380 4209 }
51470298 4210 sha_mpint(&ssh->exhash, s->e);
4211 sha_mpint(&ssh->exhash, s->f);
4212 sha_mpint(&ssh->exhash, s->K);
4213 SHA_Final(&ssh->exhash, s->exchange_hash);
e5574168 4214
27cd7fc2 4215 dh_cleanup(ssh->kex_ctx);
fabd1805 4216 ssh->kex_ctx = NULL;
3709bfe9 4217
7cca0d81 4218#if 0
765c4200 4219 debug(("Exchange hash is:\n"));
51470298 4220 dmemdump(s->exchange_hash, 20);
7cca0d81 4221#endif
4222
51470298 4223 s->hkey = ssh->hostkey->newkey(s->hostkeydata, s->hostkeylen);
4224 if (!s->hkey ||
4225 !ssh->hostkey->verifysig(s->hkey, s->sigdata, s->siglen,
d8baa528 4226 (char *)s->exchange_hash, 20)) {
6b5cf8b4 4227 bombout(("Server's host key did not match the signature supplied"));
7ffdbc1a 4228 crStop(0);
8d5de777 4229 }
e5574168 4230
4231 /*
7cca0d81 4232 * Authenticate remote host: verify host key. (We've already
4233 * checked the signature of the exchange hash.)
e5574168 4234 */
51470298 4235 s->keystr = ssh->hostkey->fmtkey(s->hkey);
4236 s->fingerprint = ssh->hostkey->fingerprint(s->hkey);
a8327734 4237 verify_ssh_host_key(ssh->frontend,
4238 ssh->savedhost, ssh->savedport, ssh->hostkey->keytype,
51470298 4239 s->keystr, s->fingerprint);
4240 if (s->first_kex) { /* don't bother logging this in rekeys */
5e0d7cb8 4241 logevent("Host key fingerprint is:");
51470298 4242 logevent(s->fingerprint);
5e0d7cb8 4243 }
51470298 4244 sfree(s->fingerprint);
4245 sfree(s->keystr);
4246 ssh->hostkey->freekey(s->hkey);
d39f364a 4247
4248 /*
7cca0d81 4249 * Send SSH2_MSG_NEWKEYS.
d39f364a 4250 */
51470298 4251 ssh2_pkt_init(ssh, SSH2_MSG_NEWKEYS);
4252 ssh2_pkt_send(ssh);
d39f364a 4253
4254 /*
8406eaf9 4255 * Expect SSH2_MSG_NEWKEYS from server.
4256 */
4257 crWaitUntil(ispkt);
51470298 4258 if (ssh->pktin.type != SSH2_MSG_NEWKEYS) {
6b5cf8b4 4259 bombout(("expected new-keys packet from server"));
7ffdbc1a 4260 crStop(0);
8406eaf9 4261 }
4262
4263 /*
d39f364a 4264 * Create and initialise session keys.
4265 */
371e569c 4266 if (ssh->cs_cipher_ctx)
4267 ssh->cscipher->free_context(ssh->cs_cipher_ctx);
51470298 4268 ssh->cscipher = s->cscipher_tobe;
371e569c 4269 ssh->cs_cipher_ctx = ssh->cscipher->make_context();
e0e1a00d 4270
371e569c 4271 if (ssh->sc_cipher_ctx)
4272 ssh->sccipher->free_context(ssh->sc_cipher_ctx);
51470298 4273 ssh->sccipher = s->sccipher_tobe;
371e569c 4274 ssh->sc_cipher_ctx = ssh->sccipher->make_context();
e0e1a00d 4275
4276 if (ssh->cs_mac_ctx)
4277 ssh->csmac->free_context(ssh->cs_mac_ctx);
51470298 4278 ssh->csmac = s->csmac_tobe;
e0e1a00d 4279 ssh->cs_mac_ctx = ssh->csmac->make_context();
4280
4281 if (ssh->sc_mac_ctx)
4282 ssh->scmac->free_context(ssh->sc_mac_ctx);
51470298 4283 ssh->scmac = s->scmac_tobe;
e0e1a00d 4284 ssh->sc_mac_ctx = ssh->scmac->make_context();
4285
5366aed8 4286 if (ssh->cs_comp_ctx)
4287 ssh->cscomp->compress_cleanup(ssh->cs_comp_ctx);
51470298 4288 ssh->cscomp = s->cscomp_tobe;
5366aed8 4289 ssh->cs_comp_ctx = ssh->cscomp->compress_init();
4290
4291 if (ssh->sc_comp_ctx)
4292 ssh->sccomp->decompress_cleanup(ssh->sc_comp_ctx);
51470298 4293 ssh->sccomp = s->sccomp_tobe;
5366aed8 4294 ssh->sc_comp_ctx = ssh->sccomp->decompress_init();
4295
d39f364a 4296 /*
5e0d7cb8 4297 * Set IVs after keys. Here we use the exchange hash from the
4298 * _first_ key exchange.
d39f364a 4299 */
51470298 4300 {
4301 unsigned char keyspace[40];
4302 if (s->first_kex)
4303 memcpy(ssh->v2_session_id, s->exchange_hash,
4304 sizeof(s->exchange_hash));
4305 ssh2_mkkey(ssh,s->K,s->exchange_hash,ssh->v2_session_id,'C',keyspace);
371e569c 4306 ssh->cscipher->setkey(ssh->cs_cipher_ctx, keyspace);
51470298 4307 ssh2_mkkey(ssh,s->K,s->exchange_hash,ssh->v2_session_id,'D',keyspace);
371e569c 4308 ssh->sccipher->setkey(ssh->sc_cipher_ctx, keyspace);
51470298 4309 ssh2_mkkey(ssh,s->K,s->exchange_hash,ssh->v2_session_id,'A',keyspace);
371e569c 4310 ssh->cscipher->setiv(ssh->cs_cipher_ctx, keyspace);
51470298 4311 ssh2_mkkey(ssh,s->K,s->exchange_hash,ssh->v2_session_id,'B',keyspace);
371e569c 4312 ssh->sccipher->setiv(ssh->sc_cipher_ctx, keyspace);
51470298 4313 ssh2_mkkey(ssh,s->K,s->exchange_hash,ssh->v2_session_id,'E',keyspace);
e0e1a00d 4314 ssh->csmac->setkey(ssh->cs_mac_ctx, keyspace);
51470298 4315 ssh2_mkkey(ssh,s->K,s->exchange_hash,ssh->v2_session_id,'F',keyspace);
e0e1a00d 4316 ssh->scmac->setkey(ssh->sc_mac_ctx, keyspace);
51470298 4317 }
57356d63 4318 logeventf(ssh, "Initialised %.200s client->server encryption",
4319 ssh->cscipher->text_name);
4320 logeventf(ssh, "Initialised %.200s server->client encryption",
4321 ssh->sccipher->text_name);
4322 if (ssh->cscomp->text_name)
4323 logeventf(ssh, "Initialised %s compression",
4324 ssh->cscomp->text_name);
4325 if (ssh->sccomp->text_name)
4326 logeventf(ssh, "Initialised %s decompression",
4327 ssh->sccomp->text_name);
d39f364a 4328
033b4cef 4329 /*
0db56f73 4330 * If this is the first key exchange phase, we must pass the
4331 * SSH2_MSG_NEWKEYS packet to the next layer, not because it
4332 * wants to see it but because it will need time to initialise
4333 * itself before it sees an actual packet. In subsequent key
4334 * exchange phases, we don't pass SSH2_MSG_NEWKEYS on, because
4335 * it would only confuse the layer above.
4336 */
51470298 4337 if (!s->first_kex) {
32874aea 4338 crReturn(0);
0db56f73 4339 }
51470298 4340 s->first_kex = 0;
0db56f73 4341
4342 /*
7cca0d81 4343 * Now we're encrypting. Begin returning 1 to the protocol main
4344 * function so that other things can run on top of the
4345 * transport. If we ever see a KEXINIT, we must go back to the
4346 * start.
033b4cef 4347 */
51470298 4348 while (!(ispkt && ssh->pktin.type == SSH2_MSG_KEXINIT)) {
32874aea 4349 crReturn(1);
e96adf72 4350 }
5e0d7cb8 4351 logevent("Server initiated key re-exchange");
7cca0d81 4352 goto begin_key_exchange;
e5574168 4353
4354 crFinish(1);
4355}
4356
7cca0d81 4357/*
783415f8 4358 * Add data to an SSH2 channel output buffer.
4359 */
32874aea 4360static void ssh2_add_channel_data(struct ssh_channel *c, char *buf,
4361 int len)
4362{
5471d09a 4363 bufchain_add(&c->v.v2.outbuffer, buf, len);
783415f8 4364}
4365
4366/*
4367 * Attempt to send data on an SSH2 channel.
4368 */
5471d09a 4369static int ssh2_try_send(struct ssh_channel *c)
32874aea 4370{
51470298 4371 Ssh ssh = c->ssh;
4372
5471d09a 4373 while (c->v.v2.remwindow > 0 && bufchain_size(&c->v.v2.outbuffer) > 0) {
4374 int len;
4375 void *data;
4376 bufchain_prefix(&c->v.v2.outbuffer, &data, &len);
4377 if ((unsigned)len > c->v.v2.remwindow)
4378 len = c->v.v2.remwindow;
4379 if ((unsigned)len > c->v.v2.remmaxpkt)
4380 len = c->v.v2.remmaxpkt;
51470298 4381 ssh2_pkt_init(ssh, SSH2_MSG_CHANNEL_DATA);
4382 ssh2_pkt_adduint32(ssh, c->remoteid);
4383 ssh2_pkt_addstring_start(ssh);
4384 ssh2_pkt_addstring_data(ssh, data, len);
4385 ssh2_pkt_send(ssh);
5471d09a 4386 bufchain_consume(&c->v.v2.outbuffer, len);
4387 c->v.v2.remwindow -= len;
4388 }
4389
4390 /*
4391 * After having sent as much data as we can, return the amount
4392 * still buffered.
4393 */
4394 return bufchain_size(&c->v.v2.outbuffer);
4395}
4396
4397/*
4398 * Potentially enlarge the window on an SSH2 channel.
4399 */
4400static void ssh2_set_window(struct ssh_channel *c, unsigned newwin)
4401{
51470298 4402 Ssh ssh = c->ssh;
4403
6b69f42e 4404 /*
4405 * Never send WINDOW_ADJUST for a channel that the remote side
4406 * already thinks it's closed; there's no point, since it won't
4407 * be sending any more data anyway.
4408 */
4409 if (c->closes != 0)
4410 return;
4411
5471d09a 4412 if (newwin > c->v.v2.locwindow) {
51470298 4413 ssh2_pkt_init(ssh, SSH2_MSG_CHANNEL_WINDOW_ADJUST);
4414 ssh2_pkt_adduint32(ssh, c->remoteid);
4415 ssh2_pkt_adduint32(ssh, newwin - c->v.v2.locwindow);
4416 ssh2_pkt_send(ssh);
5471d09a 4417 c->v.v2.locwindow = newwin;
783415f8 4418 }
4419}
4420
4421/*
7cca0d81 4422 * Handle the SSH2 userauth and connection layers.
4423 */
51470298 4424static void do_ssh2_authconn(Ssh ssh, unsigned char *in, int inlen, int ispkt)
7cca0d81 4425{
51470298 4426 struct do_ssh2_authconn_state {
4427 enum {
4428 AUTH_INVALID, AUTH_PUBLICKEY_AGENT, AUTH_PUBLICKEY_FILE,
4429 AUTH_PASSWORD,
4430 AUTH_KEYBOARD_INTERACTIVE
4431 } method;
4432 enum {
4433 AUTH_TYPE_NONE,
4434 AUTH_TYPE_PUBLICKEY,
4435 AUTH_TYPE_PUBLICKEY_OFFER_LOUD,
4436 AUTH_TYPE_PUBLICKEY_OFFER_QUIET,
4437 AUTH_TYPE_PASSWORD,
4438 AUTH_TYPE_KEYBOARD_INTERACTIVE,
4439 AUTH_TYPE_KEYBOARD_INTERACTIVE_QUIET
4440 } type;
4441 int gotit, need_pw, can_pubkey, can_passwd, can_keyb_inter;
4442 int tried_pubkey_config, tried_agent, tried_keyb_inter;
4443 int kbd_inter_running;
4444 int we_are_in;
4445 int num_prompts, curr_prompt, echo;
4446 char username[100];
4447 int got_username;
4448 char pwprompt[200];
4449 char password[100];
4450 void *publickey_blob;
4451 int publickey_bloblen;
4452 unsigned char request[5], *response, *p;
4453 int responselen;
4454 int keyi, nkeys;
4455 int authed;
4456 char *pkblob, *alg, *commentp;
4457 int pklen, alglen, commentlen;
4458 int siglen, retlen, len;
4459 char *q, *agentreq, *ret;
4460 int try_send;
4461 };
4462 crState(do_ssh2_authconn_state);
4463
4464 crBegin(ssh->do_ssh2_authconn_crstate);
e5574168 4465
7cca0d81 4466 /*
4467 * Request userauth protocol, and await a response to it.
4468 */
51470298 4469 ssh2_pkt_init(ssh, SSH2_MSG_SERVICE_REQUEST);
4470 ssh2_pkt_addstring(ssh, "ssh-userauth");
4471 ssh2_pkt_send(ssh);
7cca0d81 4472 crWaitUntilV(ispkt);
51470298 4473 if (ssh->pktin.type != SSH2_MSG_SERVICE_ACCEPT) {
6b5cf8b4 4474 bombout(("Server refused user authentication protocol"));
7ffdbc1a 4475 crStopV;
8d5de777 4476 }
7cca0d81 4477
4478 /*
1408a877 4479 * We repeat this whole loop, including the username prompt,
4480 * until we manage a successful authentication. If the user
51470298 4481 * types the wrong _password_, they can be sent back to the
4482 * beginning to try another username, if this is configured on.
4483 * (If they specify a username in the config, they are never
4484 * asked, even if they do give a wrong password.)
1408a877 4485 *
4486 * I think this best serves the needs of
4487 *
4488 * - the people who have no configuration, no keys, and just
4489 * want to try repeated (username,password) pairs until they
4490 * type both correctly
4491 *
4492 * - people who have keys and configuration but occasionally
4493 * need to fall back to passwords
4494 *
4495 * - people with a key held in Pageant, who might not have
4496 * logged in to a particular machine before; so they want to
4497 * type a username, and then _either_ their key will be
4498 * accepted, _or_ they will type a password. If they mistype
4499 * the username they will want to be able to get back and
4500 * retype it!
7cca0d81 4501 */
51470298 4502 s->username[0] = '\0';
4503 s->got_username = FALSE;
1408a877 4504 do {
1408a877 4505 /*
4506 * Get a username.
4507 */
86916870 4508 if (s->got_username && !ssh->cfg.change_username) {
5bb641e1 4509 /*
4510 * We got a username last time round this loop, and
4511 * with change_username turned off we don't try to get
4512 * it again.
4513 */
86916870 4514 } else if ((flags & FLAG_INTERACTIVE) && !*ssh->cfg.username) {
c0a81592 4515 if (ssh_get_line && !ssh_getline_pw_only) {
32874aea 4516 if (!ssh_get_line("login as: ",
51470298 4517 s->username, sizeof(s->username), FALSE)) {
32874aea 4518 /*
4519 * get_line failed to get a username.
4520 * Terminate.
4521 */
4522 logevent("No username provided. Abandoning session.");
3bb2f322 4523 ssh_closing((Plug)ssh, NULL, 0, 0);
7ffdbc1a 4524 crStopV;
32874aea 4525 }
4526 } else {
51470298 4527 int ret; /* need not be saved across crReturn */
4528 c_write_str(ssh, "login as: ");
4529 ssh->send_ok = 1;
4530 setup_userpass_input(ssh, s->username, sizeof(s->username), 1);
0405e71f 4531 do {
32874aea 4532 crWaitUntilV(!ispkt);
51470298 4533 ret = process_userpass_input(ssh, in, inlen);
0405e71f 4534 } while (ret == 0);
4535 if (ret < 0)
4536 cleanup_exit(0);
4ca0c9d1 4537 c_write_str(ssh, "\r\n");
32874aea 4538 }
51470298 4539 s->username[strcspn(s->username, "\n\r")] = '\0';
7cca0d81 4540 } else {
57356d63 4541 char *stuff;
86916870 4542 strncpy(s->username, ssh->cfg.username, sizeof(s->username));
51470298 4543 s->username[sizeof(s->username)-1] = '\0';
65a22376 4544 if ((flags & FLAG_VERBOSE) || (flags & FLAG_INTERACTIVE)) {
57356d63 4545 stuff = dupprintf("Using username \"%s\".\r\n", s->username);
51470298 4546 c_write_str(ssh, stuff);
57356d63 4547 sfree(stuff);
7cca0d81 4548 }
4549 }
51470298 4550 s->got_username = TRUE;
7cca0d81 4551
65a22376 4552 /*
1408a877 4553 * Send an authentication request using method "none": (a)
4554 * just in case it succeeds, and (b) so that we know what
4555 * authentication methods we can usefully try next.
65a22376 4556 */
51470298 4557 ssh->pkt_ctx &= ~SSH2_PKTCTX_AUTH_MASK;
4558
4559 ssh2_pkt_init(ssh, SSH2_MSG_USERAUTH_REQUEST);
4560 ssh2_pkt_addstring(ssh, s->username);
4561 ssh2_pkt_addstring(ssh, "ssh-connection");/* service requested */
4562 ssh2_pkt_addstring(ssh, "none"); /* method */
4563 ssh2_pkt_send(ssh);
4564 s->type = AUTH_TYPE_NONE;
4565 s->gotit = FALSE;
4566 s->we_are_in = FALSE;
4567
4568 s->tried_pubkey_config = FALSE;
4569 s->tried_agent = FALSE;
4570 s->tried_keyb_inter = FALSE;
4571 s->kbd_inter_running = FALSE;
86916870 4572 /* Load the pub half of ssh->cfg.keyfile so we notice if it's in Pageant */
9a30e26b 4573 if (!filename_is_null(ssh->cfg.keyfile)) {
231ee168 4574 int keytype;
6c6d9ed9 4575 logeventf(ssh, "Reading private key file \"%.150s\"",
4576 filename_to_str(&ssh->cfg.keyfile));
9a30e26b 4577 keytype = key_type(&ssh->cfg.keyfile);
51470298 4578 if (keytype == SSH_KEYTYPE_SSH2) {
4579 s->publickey_blob =
9a30e26b 4580 ssh2_userkey_loadpub(&ssh->cfg.keyfile, NULL,
51470298 4581 &s->publickey_bloblen);
4582 } else {
57356d63 4583 char *msgbuf;
c2ad7d0d 4584 logeventf(ssh, "Unable to use this key file (%s)",
a8327734 4585 key_type_to_str(keytype));
57356d63 4586 msgbuf = dupprintf("Unable to use key file \"%.150s\""
6c6d9ed9 4587 " (%s)\r\n",
4588 filename_to_str(&ssh->cfg.keyfile),
57356d63 4589 key_type_to_str(keytype));
51470298 4590 c_write_str(ssh, msgbuf);
57356d63 4591 sfree(msgbuf);
51470298 4592 s->publickey_blob = NULL;
231ee168 4593 }
396778f1 4594 } else
51470298 4595 s->publickey_blob = NULL;
65a22376 4596
1408a877 4597 while (1) {
4598 /*
4599 * Wait for the result of the last authentication request.
4600 */
51470298 4601 if (!s->gotit)
1408a877 4602 crWaitUntilV(ispkt);
51470298 4603 while (ssh->pktin.type == SSH2_MSG_USERAUTH_BANNER) {
32874aea 4604 char *banner;
4605 int size;
4606 /*
4607 * Don't show the banner if we're operating in
4608 * non-verbose non-interactive mode. (It's probably
4609 * a script, which means nobody will read the
4610 * banner _anyway_, and moreover the printing of
4611 * the banner will screw up processing on the
4612 * output of (say) plink.)
4613 */
4614 if (flags & (FLAG_VERBOSE | FLAG_INTERACTIVE)) {
51470298 4615 ssh2_pkt_getstring(ssh, &banner, &size);
32874aea 4616 if (banner)
51470298 4617 c_write_untrusted(ssh, banner, size);
32874aea 4618 }
1408a877 4619 crWaitUntilV(ispkt);
4620 }
51470298 4621 if (ssh->pktin.type == SSH2_MSG_USERAUTH_SUCCESS) {
1408a877 4622 logevent("Access granted");
51470298 4623 s->we_are_in = TRUE;
1408a877 4624 break;
4625 }
65a22376 4626
51470298 4627 if (s->kbd_inter_running &&
4628 ssh->pktin.type == SSH2_MSG_USERAUTH_INFO_REQUEST) {
b3186d64 4629 /*
45068b27 4630 * This is either a further set-of-prompts packet
4631 * in keyboard-interactive authentication, or it's
4632 * the same one and we came back here with `gotit'
4633 * set. In the former case, we must reset the
4634 * curr_prompt variable.
b3186d64 4635 */
51470298 4636 if (!s->gotit)
4637 s->curr_prompt = 0;
4638 } else if (ssh->pktin.type != SSH2_MSG_USERAUTH_FAILURE) {
6b5cf8b4 4639 bombout(("Strange packet received during authentication: type %d",
51470298 4640 ssh->pktin.type));
7ffdbc1a 4641 crStopV;
65a22376 4642 }
4643
51470298 4644 s->gotit = FALSE;
65a22376 4645
1408a877 4646 /*
4647 * OK, we're now sitting on a USERAUTH_FAILURE message, so
4648 * we can look at the string in it and know what we can
4649 * helpfully try next.
4650 */
51470298 4651 if (ssh->pktin.type == SSH2_MSG_USERAUTH_FAILURE) {
1408a877 4652 char *methods;
4653 int methlen;
51470298 4654 ssh2_pkt_getstring(ssh, &methods, &methlen);
4655 s->kbd_inter_running = FALSE;
4656 if (!ssh2_pkt_getbool(ssh)) {
1408a877 4657 /*
4658 * We have received an unequivocal Access
4659 * Denied. This can translate to a variety of
4660 * messages:
4661 *
4662 * - if we'd just tried "none" authentication,
4663 * it's not worth printing anything at all
4664 *
4665 * - if we'd just tried a public key _offer_,
4666 * the message should be "Server refused our
4667 * key" (or no message at all if the key
4668 * came from Pageant)
4669 *
4670 * - if we'd just tried anything else, the
4671 * message really should be "Access denied".
4672 *
4673 * Additionally, if we'd just tried password
4674 * authentication, we should break out of this
4675 * whole loop so as to go back to the username
4676 * prompt.
4677 */
51470298 4678 if (s->type == AUTH_TYPE_NONE) {
1408a877 4679 /* do nothing */
51470298 4680 } else if (s->type == AUTH_TYPE_PUBLICKEY_OFFER_LOUD ||
4681 s->type == AUTH_TYPE_PUBLICKEY_OFFER_QUIET) {
4682 if (s->type == AUTH_TYPE_PUBLICKEY_OFFER_LOUD)
4683 c_write_str(ssh, "Server refused our key\r\n");
1408a877 4684 logevent("Server refused public key");
51470298 4685 } else if (s->type==AUTH_TYPE_KEYBOARD_INTERACTIVE_QUIET) {
4bdf7c46 4686 /* server declined keyboard-interactive; ignore */
1408a877 4687 } else {
51470298 4688 c_write_str(ssh, "Access denied\r\n");
1408a877 4689 logevent("Access denied");
51470298 4690 if (s->type == AUTH_TYPE_PASSWORD) {
4691 s->we_are_in = FALSE;
1408a877 4692 break;
4693 }
4694 }
4695 } else {
51470298 4696 c_write_str(ssh, "Further authentication required\r\n");
1408a877 4697 logevent("Further authentication required");
4698 }
65a22376 4699
51470298 4700 s->can_pubkey =
32874aea 4701 in_commasep_string("publickey", methods, methlen);
51470298 4702 s->can_passwd =
32874aea 4703 in_commasep_string("password", methods, methlen);
86916870 4704 s->can_keyb_inter = ssh->cfg.try_ki_auth &&
761187b6 4705 in_commasep_string("keyboard-interactive", methods, methlen);
1408a877 4706 }
65a22376 4707
51470298 4708 s->method = 0;
4709 ssh->pkt_ctx &= ~SSH2_PKTCTX_AUTH_MASK;
65a22376 4710
0405e71f 4711 /*
4712 * Most password/passphrase prompts will be
4713 * non-echoing, so we set this to 0 by default.
4714 * Exception is that some keyboard-interactive prompts
4715 * can be echoing, in which case we'll set this to 1.
4716 */
51470298 4717 s->echo = 0;
0405e71f 4718
51470298 4719 if (!s->method && s->can_pubkey &&
4720 agent_exists() && !s->tried_agent) {
1983e559 4721 /*
4722 * Attempt public-key authentication using Pageant.
4723 */
1983e559 4724 void *r;
51470298 4725 s->authed = FALSE;
1983e559 4726
51470298 4727 ssh->pkt_ctx &= ~SSH2_PKTCTX_AUTH_MASK;
4728 ssh->pkt_ctx |= SSH2_PKTCTX_PUBLICKEY;
00db133f 4729
51470298 4730 s->tried_agent = TRUE;
1983e559 4731
4732 logevent("Pageant is running. Requesting keys.");
4733
4734 /* Request the keys held by the agent. */
51470298 4735 PUT_32BIT(s->request, 1);
4736 s->request[4] = SSH2_AGENTC_REQUEST_IDENTITIES;
839f10db 4737 if (!agent_query(s->request, 5, &r, &s->responselen,
4738 ssh_agent_callback, ssh)) {
4739 do {
4740 crReturnV;
4741 if (ispkt) {
4742 bombout(("Unexpected data from server while"
4743 " waiting for agent response"));
4744 crStopV;
4745 }
4746 } while (ispkt || inlen > 0);
4747 r = ssh->agent_response;
4748 s->responselen = ssh->agent_response_len;
4749 }
51470298 4750 s->response = (unsigned char *) r;
4751 if (s->response && s->responselen >= 5 &&
4752 s->response[4] == SSH2_AGENT_IDENTITIES_ANSWER) {
4753 s->p = s->response + 5;
4754 s->nkeys = GET_32BIT(s->p);
4755 s->p += 4;
32874aea 4756 {
4757 char buf[64];
51470298 4758 sprintf(buf, "Pageant has %d SSH2 keys", s->nkeys);
32874aea 4759 logevent(buf);
4760 }
51470298 4761 for (s->keyi = 0; s->keyi < s->nkeys; s->keyi++) {
2d466ffd 4762 void *vret;
1983e559 4763
32874aea 4764 {
4765 char buf[64];
51470298 4766 sprintf(buf, "Trying Pageant key #%d", s->keyi);
32874aea 4767 logevent(buf);
4768 }
51470298 4769 s->pklen = GET_32BIT(s->p);
4770 s->p += 4;
4771 if (s->publickey_blob &&
4772 s->pklen == s->publickey_bloblen &&
4773 !memcmp(s->p, s->publickey_blob,
4774 s->publickey_bloblen)) {
396778f1 4775 logevent("This key matches configured key file");
51470298 4776 s->tried_pubkey_config = 1;
396778f1 4777 }
d8baa528 4778 s->pkblob = (char *)s->p;
51470298 4779 s->p += s->pklen;
4780 s->alglen = GET_32BIT(s->pkblob);
4781 s->alg = s->pkblob + 4;
4782 s->commentlen = GET_32BIT(s->p);
4783 s->p += 4;
d8baa528 4784 s->commentp = (char *)s->p;
51470298 4785 s->p += s->commentlen;
4786 ssh2_pkt_init(ssh, SSH2_MSG_USERAUTH_REQUEST);
4787 ssh2_pkt_addstring(ssh, s->username);
4788 ssh2_pkt_addstring(ssh, "ssh-connection"); /* service requested */
4789 ssh2_pkt_addstring(ssh, "publickey"); /* method */
4790 ssh2_pkt_addbool(ssh, FALSE); /* no signature included */
4791 ssh2_pkt_addstring_start(ssh);
4792 ssh2_pkt_addstring_data(ssh, s->alg, s->alglen);
4793 ssh2_pkt_addstring_start(ssh);
4794 ssh2_pkt_addstring_data(ssh, s->pkblob, s->pklen);
4795 ssh2_pkt_send(ssh);
1983e559 4796
4797 crWaitUntilV(ispkt);
51470298 4798 if (ssh->pktin.type != SSH2_MSG_USERAUTH_PK_OK) {
1983e559 4799 logevent("Key refused");
4800 continue;
4801 }
4802
32874aea 4803 if (flags & FLAG_VERBOSE) {
51470298 4804 c_write_str(ssh, "Authenticating with "
4805 "public key \"");
4806 c_write(ssh, s->commentp, s->commentlen);
4807 c_write_str(ssh, "\" from agent\r\n");
32874aea 4808 }
1983e559 4809
4810 /*
4811 * Server is willing to accept the key.
4812 * Construct a SIGN_REQUEST.
4813 */
51470298 4814 ssh2_pkt_init(ssh, SSH2_MSG_USERAUTH_REQUEST);
4815 ssh2_pkt_addstring(ssh, s->username);
4816 ssh2_pkt_addstring(ssh, "ssh-connection"); /* service requested */
4817 ssh2_pkt_addstring(ssh, "publickey"); /* method */
4818 ssh2_pkt_addbool(ssh, TRUE);
4819 ssh2_pkt_addstring_start(ssh);
4820 ssh2_pkt_addstring_data(ssh, s->alg, s->alglen);
4821 ssh2_pkt_addstring_start(ssh);
4822 ssh2_pkt_addstring_data(ssh, s->pkblob, s->pklen);
4823
4824 s->siglen = ssh->pktout.length - 5 + 4 + 20;
dda87a28 4825 if (ssh->remote_bugs & BUG_SSH2_PK_SESSIONID)
4826 s->siglen -= 4;
51470298 4827 s->len = 1; /* message type */
4828 s->len += 4 + s->pklen; /* key blob */
4829 s->len += 4 + s->siglen; /* data to sign */
4830 s->len += 4; /* flags */
3d88e64d 4831 s->agentreq = snewn(4 + s->len, char);
51470298 4832 PUT_32BIT(s->agentreq, s->len);
4833 s->q = s->agentreq + 4;
4834 *s->q++ = SSH2_AGENTC_SIGN_REQUEST;
4835 PUT_32BIT(s->q, s->pklen);
4836 s->q += 4;
4837 memcpy(s->q, s->pkblob, s->pklen);
4838 s->q += s->pklen;
4839 PUT_32BIT(s->q, s->siglen);
4840 s->q += 4;
1983e559 4841 /* Now the data to be signed... */
dda87a28 4842 if (!(ssh->remote_bugs & BUG_SSH2_PK_SESSIONID)) {
4843 PUT_32BIT(s->q, 20);
4844 s->q += 4;
4845 }
51470298 4846 memcpy(s->q, ssh->v2_session_id, 20);
4847 s->q += 20;
4848 memcpy(s->q, ssh->pktout.data + 5,
4849 ssh->pktout.length - 5);
4850 s->q += ssh->pktout.length - 5;
1983e559 4851 /* And finally the (zero) flags word. */
51470298 4852 PUT_32BIT(s->q, 0);
839f10db 4853 if (!agent_query(s->agentreq, s->len + 4,
4854 &vret, &s->retlen,
4855 ssh_agent_callback, ssh)) {
4856 do {
4857 crReturnV;
4858 if (ispkt) {
4859 bombout(("Unexpected data from server"
4860 " while waiting for agent"
4861 " response"));
4862 crStopV;
4863 }
4864 } while (ispkt || inlen > 0);
4865 vret = ssh->agent_response;
4866 s->retlen = ssh->agent_response_len;
4867 }
51470298 4868 s->ret = vret;
4869 sfree(s->agentreq);
4870 if (s->ret) {
4871 if (s->ret[4] == SSH2_AGENT_SIGN_RESPONSE) {
1983e559 4872 logevent("Sending Pageant's response");
51470298 4873 ssh2_add_sigblob(ssh, s->pkblob, s->pklen,
4874 s->ret + 9,
4875 GET_32BIT(s->ret + 5));
4876 ssh2_pkt_send(ssh);
4877 s->authed = TRUE;
1983e559 4878 break;
4879 } else {
32874aea 4880 logevent
4881 ("Pageant failed to answer challenge");
51470298 4882 sfree(s->ret);
1983e559 4883 }
4884 }
4885 }
51470298 4886 if (s->authed)
1983e559 4887 continue;
4888 }
4889 }
4890
51470298 4891 if (!s->method && s->can_pubkey && s->publickey_blob
4892 && !s->tried_pubkey_config) {
1408a877 4893 unsigned char *pub_blob;
4894 char *algorithm, *comment;
4895 int pub_blob_len;
65a22376 4896
51470298 4897 s->tried_pubkey_config = TRUE;
65a22376 4898
51470298 4899 ssh->pkt_ctx &= ~SSH2_PKTCTX_AUTH_MASK;
4900 ssh->pkt_ctx |= SSH2_PKTCTX_PUBLICKEY;
00db133f 4901
65a22376 4902 /*
1408a877 4903 * Try the public key supplied in the configuration.
4904 *
4905 * First, offer the public blob to see if the server is
4906 * willing to accept it.
65a22376 4907 */
d8baa528 4908 pub_blob =
9a30e26b 4909 (unsigned char *)ssh2_userkey_loadpub(&ssh->cfg.keyfile,
d8baa528 4910 &algorithm,
4911 &pub_blob_len);
1408a877 4912 if (pub_blob) {
51470298 4913 ssh2_pkt_init(ssh, SSH2_MSG_USERAUTH_REQUEST);
4914 ssh2_pkt_addstring(ssh, s->username);
4915 ssh2_pkt_addstring(ssh, "ssh-connection"); /* service requested */
4916 ssh2_pkt_addstring(ssh, "publickey"); /* method */
4917 ssh2_pkt_addbool(ssh, FALSE); /* no signature included */
4918 ssh2_pkt_addstring(ssh, algorithm);
4919 ssh2_pkt_addstring_start(ssh);
d8baa528 4920 ssh2_pkt_addstring_data(ssh, (char *)pub_blob,
4921 pub_blob_len);
51470298 4922 ssh2_pkt_send(ssh);
32874aea 4923 logevent("Offered public key"); /* FIXME */
1408a877 4924
4925 crWaitUntilV(ispkt);
51470298 4926 if (ssh->pktin.type != SSH2_MSG_USERAUTH_PK_OK) {
4927 s->gotit = TRUE;
4928 s->type = AUTH_TYPE_PUBLICKEY_OFFER_LOUD;
32874aea 4929 continue; /* key refused; give up on it */
1408a877 4930 }
65a22376 4931
1408a877 4932 logevent("Offer of public key accepted");
65a22376 4933 /*
1408a877 4934 * Actually attempt a serious authentication using
4935 * the key.
65a22376 4936 */
9a30e26b 4937 if (ssh2_userkey_encrypted(&ssh->cfg.keyfile, &comment)) {
51470298 4938 sprintf(s->pwprompt,
32874aea 4939 "Passphrase for key \"%.100s\": ",
4940 comment);
51470298 4941 s->need_pw = TRUE;
1408a877 4942 } else {
51470298 4943 s->need_pw = FALSE;
1408a877 4944 }
51470298 4945 c_write_str(ssh, "Authenticating with public key \"");
4946 c_write_str(ssh, comment);
4947 c_write_str(ssh, "\"\r\n");
4948 s->method = AUTH_PUBLICKEY_FILE;
65a22376 4949 }
1408a877 4950 }
4951
51470298 4952 if (!s->method && s->can_keyb_inter && !s->tried_keyb_inter) {
4953 s->method = AUTH_KEYBOARD_INTERACTIVE;
4954 s->type = AUTH_TYPE_KEYBOARD_INTERACTIVE;
4955 s->tried_keyb_inter = TRUE;
af659722 4956
51470298 4957 ssh->pkt_ctx &= ~SSH2_PKTCTX_AUTH_MASK;
4958 ssh->pkt_ctx |= SSH2_PKTCTX_KBDINTER;
00db133f 4959
51470298 4960 ssh2_pkt_init(ssh, SSH2_MSG_USERAUTH_REQUEST);
4961 ssh2_pkt_addstring(ssh, s->username);
4962 ssh2_pkt_addstring(ssh, "ssh-connection"); /* service requested */
4963 ssh2_pkt_addstring(ssh, "keyboard-interactive"); /* method */
4964 ssh2_pkt_addstring(ssh, ""); /* lang */
4965 ssh2_pkt_addstring(ssh, "");
4966 ssh2_pkt_send(ssh);
af659722 4967
4968 crWaitUntilV(ispkt);
51470298 4969 if (ssh->pktin.type != SSH2_MSG_USERAUTH_INFO_REQUEST) {
4970 if (ssh->pktin.type == SSH2_MSG_USERAUTH_FAILURE)
4971 s->gotit = TRUE;
af659722 4972 logevent("Keyboard-interactive authentication refused");
51470298 4973 s->type = AUTH_TYPE_KEYBOARD_INTERACTIVE_QUIET;
af659722 4974 continue;
4975 }
4976
51470298 4977 s->kbd_inter_running = TRUE;
4978 s->curr_prompt = 0;
af659722 4979 }
4980
51470298 4981 if (s->kbd_inter_running) {
4982 s->method = AUTH_KEYBOARD_INTERACTIVE;
4983 s->type = AUTH_TYPE_KEYBOARD_INTERACTIVE;
4984 s->tried_keyb_inter = TRUE;
af659722 4985
51470298 4986 ssh->pkt_ctx &= ~SSH2_PKTCTX_AUTH_MASK;
4987 ssh->pkt_ctx |= SSH2_PKTCTX_KBDINTER;
00db133f 4988
51470298 4989 if (s->curr_prompt == 0) {
45068b27 4990 /*
4991 * We've got a fresh USERAUTH_INFO_REQUEST.
4992 * Display header data, and start going through
4993 * the prompts.
4994 */
4995 char *name, *inst, *lang;
4996 int name_len, inst_len, lang_len;
4997
51470298 4998 ssh2_pkt_getstring(ssh, &name, &name_len);
4999 ssh2_pkt_getstring(ssh, &inst, &inst_len);
5000 ssh2_pkt_getstring(ssh, &lang, &lang_len);
45068b27 5001 if (name_len > 0) {
51470298 5002 c_write_untrusted(ssh, name, name_len);
5003 c_write_str(ssh, "\r\n");
45068b27 5004 }
5005 if (inst_len > 0) {
51470298 5006 c_write_untrusted(ssh, inst, inst_len);
5007 c_write_str(ssh, "\r\n");
45068b27 5008 }
51470298 5009 s->num_prompts = ssh2_pkt_getuint32(ssh);
45068b27 5010 }
af659722 5011
45068b27 5012 /*
5013 * If there are prompts remaining in the packet,
5014 * display one and get a response.
5015 */
51470298 5016 if (s->curr_prompt < s->num_prompts) {
45068b27 5017 char *prompt;
5018 int prompt_len;
af659722 5019
51470298 5020 ssh2_pkt_getstring(ssh, &prompt, &prompt_len);
45068b27 5021 if (prompt_len > 0) {
51470298 5022 strncpy(s->pwprompt, prompt, sizeof(s->pwprompt));
5023 s->pwprompt[prompt_len < sizeof(s->pwprompt) ?
5024 prompt_len : sizeof(s->pwprompt)-1] = '\0';
45068b27 5025 } else {
51470298 5026 strcpy(s->pwprompt,
45068b27 5027 "<server failed to send prompt>: ");
5028 }
51470298 5029 s->echo = ssh2_pkt_getbool(ssh);
5030 s->need_pw = TRUE;
45068b27 5031 } else
51470298 5032 s->need_pw = FALSE;
af659722 5033 }
5034
51470298 5035 if (!s->method && s->can_passwd) {
5036 s->method = AUTH_PASSWORD;
5037 ssh->pkt_ctx &= ~SSH2_PKTCTX_AUTH_MASK;
5038 ssh->pkt_ctx |= SSH2_PKTCTX_PASSWORD;
5039 sprintf(s->pwprompt, "%.90s@%.90s's password: ", s->username,
5040 ssh->savedhost);
5041 s->need_pw = TRUE;
1408a877 5042 }
5043
51470298 5044 if (s->need_pw) {
fa17a66e 5045 if (ssh_get_line) {
51470298 5046 if (!ssh_get_line(s->pwprompt, s->password,
5047 sizeof(s->password), TRUE)) {
1408a877 5048 /*
fa17a66e 5049 * get_line failed to get a password (for
5050 * example because one was supplied on the
5051 * command line which has already failed to
5052 * work). Terminate.
1408a877 5053 */
51470298 5054 ssh2_pkt_init(ssh, SSH2_MSG_DISCONNECT);
5055 ssh2_pkt_adduint32(ssh,SSH2_DISCONNECT_BY_APPLICATION);
5056 ssh2_pkt_addstring(ssh, "No more passwords available"
5057 " to try");
5058 ssh2_pkt_addstring(ssh, "en"); /* language tag */
5059 ssh2_pkt_send(ssh);
247308b5 5060 logevent("Unable to authenticate");
a8327734 5061 connection_fatal(ssh->frontend,
5062 "Unable to authenticate");
3bb2f322 5063 ssh_closing((Plug)ssh, NULL, 0, 0);
7ffdbc1a 5064 crStopV;
1408a877 5065 }
5066 } else {
51470298 5067 int ret; /* need not be saved across crReturn */
5068 c_write_untrusted(ssh, s->pwprompt, strlen(s->pwprompt));
5069 ssh->send_ok = 1;
1408a877 5070
51470298 5071 setup_userpass_input(ssh, s->password,
5072 sizeof(s->password), s->echo);
0405e71f 5073 do {
1408a877 5074 crWaitUntilV(!ispkt);
51470298 5075 ret = process_userpass_input(ssh, in, inlen);
0405e71f 5076 } while (ret == 0);
5077 if (ret < 0)
5078 cleanup_exit(0);
51470298 5079 c_write_str(ssh, "\r\n");
65a22376 5080 }
65a22376 5081 }
65a22376 5082
51470298 5083 if (s->method == AUTH_PUBLICKEY_FILE) {
1408a877 5084 /*
5085 * We have our passphrase. Now try the actual authentication.
5086 */
5087 struct ssh2_userkey *key;
65a22376 5088
9a30e26b 5089 key = ssh2_load_userkey(&ssh->cfg.keyfile, s->password);
1408a877 5090 if (key == SSH2_WRONG_PASSPHRASE || key == NULL) {
5091 if (key == SSH2_WRONG_PASSPHRASE) {
51470298 5092 c_write_str(ssh, "Wrong passphrase\r\n");
5093 s->tried_pubkey_config = FALSE;
1408a877 5094 } else {
51470298 5095 c_write_str(ssh, "Unable to load private key\r\n");
5096 s->tried_pubkey_config = TRUE;
1408a877 5097 }
5098 /* Send a spurious AUTH_NONE to return to the top. */
51470298 5099 ssh2_pkt_init(ssh, SSH2_MSG_USERAUTH_REQUEST);
5100 ssh2_pkt_addstring(ssh, s->username);
5101 ssh2_pkt_addstring(ssh, "ssh-connection"); /* service requested */
5102 ssh2_pkt_addstring(ssh, "none"); /* method */
5103 ssh2_pkt_send(ssh);
5104 s->type = AUTH_TYPE_NONE;
1408a877 5105 } else {
1dd353b5 5106 unsigned char *pkblob, *sigblob, *sigdata;
5107 int pkblob_len, sigblob_len, sigdata_len;
dda87a28 5108 int p;
65a22376 5109
1408a877 5110 /*
5111 * We have loaded the private key and the server
5112 * has announced that it's willing to accept it.
5113 * Hallelujah. Generate a signature and send it.
5114 */
51470298 5115 ssh2_pkt_init(ssh, SSH2_MSG_USERAUTH_REQUEST);
5116 ssh2_pkt_addstring(ssh, s->username);
5117 ssh2_pkt_addstring(ssh, "ssh-connection"); /* service requested */
5118 ssh2_pkt_addstring(ssh, "publickey"); /* method */
5119 ssh2_pkt_addbool(ssh, TRUE);
5120 ssh2_pkt_addstring(ssh, key->alg->name);
1dd353b5 5121 pkblob = key->alg->public_blob(key->data, &pkblob_len);
51470298 5122 ssh2_pkt_addstring_start(ssh);
d8baa528 5123 ssh2_pkt_addstring_data(ssh, (char *)pkblob, pkblob_len);
1408a877 5124
5125 /*
5126 * The data to be signed is:
5127 *
5128 * string session-id
5129 *
5130 * followed by everything so far placed in the
5131 * outgoing packet.
5132 */
51470298 5133 sigdata_len = ssh->pktout.length - 5 + 4 + 20;
dda87a28 5134 if (ssh->remote_bugs & BUG_SSH2_PK_SESSIONID)
5135 sigdata_len -= 4;
92d60585 5136 sigdata = snewn(sigdata_len, unsigned char);
dda87a28 5137 p = 0;
5138 if (!(ssh->remote_bugs & BUG_SSH2_PK_SESSIONID)) {
5139 PUT_32BIT(sigdata+p, 20);
5140 p += 4;
5141 }
5142 memcpy(sigdata+p, ssh->v2_session_id, 20); p += 20;
5143 memcpy(sigdata+p, ssh->pktout.data + 5,
51470298 5144 ssh->pktout.length - 5);
dda87a28 5145 p += ssh->pktout.length - 5;
5146 assert(p == sigdata_len);
d8baa528 5147 sigblob = key->alg->sign(key->data, (char *)sigdata,
1dd353b5 5148 sigdata_len, &sigblob_len);
51470298 5149 ssh2_add_sigblob(ssh, pkblob, pkblob_len,
1dd353b5 5150 sigblob, sigblob_len);
5151 sfree(pkblob);
5152 sfree(sigblob);
1408a877 5153 sfree(sigdata);
5154
51470298 5155 ssh2_pkt_send(ssh);
5156 s->type = AUTH_TYPE_PUBLICKEY;
1408a877 5157 }
51470298 5158 } else if (s->method == AUTH_PASSWORD) {
65a22376 5159 /*
1408a877 5160 * We send the password packet lumped tightly together with
5161 * an SSH_MSG_IGNORE packet. The IGNORE packet contains a
5162 * string long enough to make the total length of the two
5163 * packets constant. This should ensure that a passive
5164 * listener doing traffic analyis can't work out the length
5165 * of the password.
5166 *
5167 * For this to work, we need an assumption about the
5168 * maximum length of the password packet. I think 256 is
5169 * pretty conservative. Anyone using a password longer than
5170 * that probably doesn't have much to worry about from
5171 * people who find out how long their password is!
65a22376 5172 */
51470298 5173 ssh2_pkt_init(ssh, SSH2_MSG_USERAUTH_REQUEST);
5174 ssh2_pkt_addstring(ssh, s->username);
5175 ssh2_pkt_addstring(ssh, "ssh-connection"); /* service requested */
5176 ssh2_pkt_addstring(ssh, "password");
5177 ssh2_pkt_addbool(ssh, FALSE);
5178 ssh2_pkt_addstring(ssh, s->password);
1409c1b3 5179 memset(s->password, 0, sizeof(s->password));
51470298 5180 ssh2_pkt_defer(ssh);
65a22376 5181 /*
1408a877 5182 * We'll include a string that's an exact multiple of the
5183 * cipher block size. If the cipher is NULL for some
5184 * reason, we don't do this trick at all because we gain
5185 * nothing by it.
65a22376 5186 */
51470298 5187 if (ssh->cscipher) {
32874aea 5188 int stringlen, i;
5189
51470298 5190 stringlen = (256 - ssh->deferred_len);
5191 stringlen += ssh->cscipher->blksize - 1;
5192 stringlen -= (stringlen % ssh->cscipher->blksize);
5193 if (ssh->cscomp) {
32874aea 5194 /*
5195 * Temporarily disable actual compression,
5196 * so we can guarantee to get this string
5197 * exactly the length we want it. The
5198 * compression-disabling routine should
5199 * return an integer indicating how many
5200 * bytes we should adjust our string length
5201 * by.
5202 */
5366aed8 5203 stringlen -=
5204 ssh->cscomp->disable_compression(ssh->cs_comp_ctx);
32874aea 5205 }
51470298 5206 ssh2_pkt_init(ssh, SSH2_MSG_IGNORE);
5207 ssh2_pkt_addstring_start(ssh);
6e9e9520 5208 for (i = 0; i < stringlen; i++) {
32874aea 5209 char c = (char) random_byte();
51470298 5210 ssh2_pkt_addstring_data(ssh, &c, 1);
65a22376 5211 }
51470298 5212 ssh2_pkt_defer(ssh);
65a22376 5213 }
51470298 5214 ssh_pkt_defersend(ssh);
0d43337a 5215 logevent("Sent password");
51470298 5216 s->type = AUTH_TYPE_PASSWORD;
5217 } else if (s->method == AUTH_KEYBOARD_INTERACTIVE) {
5218 if (s->curr_prompt == 0) {
5219 ssh2_pkt_init(ssh, SSH2_MSG_USERAUTH_INFO_RESPONSE);
5220 ssh2_pkt_adduint32(ssh, s->num_prompts);
45068b27 5221 }
51470298 5222 if (s->need_pw) { /* only add pw if we just got one! */
5223 ssh2_pkt_addstring(ssh, s->password);
5224 memset(s->password, 0, sizeof(s->password));
5225 s->curr_prompt++;
45068b27 5226 }
51470298 5227 if (s->curr_prompt >= s->num_prompts) {
5228 ssh2_pkt_send(ssh);
45068b27 5229 } else {
5230 /*
5231 * If there are prompts remaining, we set
5232 * `gotit' so that we won't attempt to get
5233 * another packet. Then we go back round the
5234 * loop and will end up retrieving another
5235 * prompt out of the existing packet. Funky or
5236 * what?
5237 */
51470298 5238 s->gotit = TRUE;
45068b27 5239 }
51470298 5240 s->type = AUTH_TYPE_KEYBOARD_INTERACTIVE;
1408a877 5241 } else {
51470298 5242 c_write_str(ssh, "No supported authentication methods"
5243 " left to try!\r\n");
5244 logevent("No supported authentications offered."
5245 " Disconnecting");
5246 ssh2_pkt_init(ssh, SSH2_MSG_DISCONNECT);
5247 ssh2_pkt_adduint32(ssh, SSH2_DISCONNECT_BY_APPLICATION);
5248 ssh2_pkt_addstring(ssh, "No supported authentication"
5249 " methods available");
5250 ssh2_pkt_addstring(ssh, "en"); /* language tag */
5251 ssh2_pkt_send(ssh);
3bb2f322 5252 ssh_closing((Plug)ssh, NULL, 0, 0);
7ffdbc1a 5253 crStopV;
65a22376 5254 }
65a22376 5255 }
51470298 5256 } while (!s->we_are_in);
7cca0d81 5257
5258 /*
5259 * Now we're authenticated for the connection protocol. The
5260 * connection protocol will automatically have started at this
5261 * point; there's no need to send SERVICE_REQUEST.
5262 */
5263
5264 /*
5265 * So now create a channel with a session in it.
5266 */
51470298 5267 ssh->channels = newtree234(ssh_channelcmp);
3d88e64d 5268 ssh->mainchan = snew(struct ssh_channel);
51470298 5269 ssh->mainchan->ssh = ssh;
5270 ssh->mainchan->localid = alloc_channel_id(ssh);
5271 ssh2_pkt_init(ssh, SSH2_MSG_CHANNEL_OPEN);
5272 ssh2_pkt_addstring(ssh, "session");
5273 ssh2_pkt_adduint32(ssh, ssh->mainchan->localid);
5274 ssh->mainchan->v.v2.locwindow = OUR_V2_WINSIZE;
5275 ssh2_pkt_adduint32(ssh, ssh->mainchan->v.v2.locwindow);/* our window size */
5276 ssh2_pkt_adduint32(ssh, 0x4000UL); /* our max pkt size */
5277 ssh2_pkt_send(ssh);
7cca0d81 5278 crWaitUntilV(ispkt);
51470298 5279 if (ssh->pktin.type != SSH2_MSG_CHANNEL_OPEN_CONFIRMATION) {
6b5cf8b4 5280 bombout(("Server refused to open a session"));
7ffdbc1a 5281 crStopV;
32874aea 5282 /* FIXME: error data comes back in FAILURE packet */
7cca0d81 5283 }
51470298 5284 if (ssh2_pkt_getuint32(ssh) != ssh->mainchan->localid) {
6b5cf8b4 5285 bombout(("Server's channel confirmation cited wrong channel"));
7ffdbc1a 5286 crStopV;
7cca0d81 5287 }
51470298 5288 ssh->mainchan->remoteid = ssh2_pkt_getuint32(ssh);
5289 ssh->mainchan->type = CHAN_MAINSESSION;
5290 ssh->mainchan->closes = 0;
5291 ssh->mainchan->v.v2.remwindow = ssh2_pkt_getuint32(ssh);
5292 ssh->mainchan->v.v2.remmaxpkt = ssh2_pkt_getuint32(ssh);
5293 bufchain_init(&ssh->mainchan->v.v2.outbuffer);
5294 add234(ssh->channels, ssh->mainchan);
7cca0d81 5295 logevent("Opened channel for session");
5296
5297 /*
783415f8 5298 * Potentially enable X11 forwarding.
5299 */
86916870 5300 if (ssh->cfg.x11_forward) {
32874aea 5301 char proto[20], data[64];
5302 logevent("Requesting X11 forwarding");
302121de 5303 ssh->x11auth = x11_invent_auth(proto, sizeof(proto),
86916870 5304 data, sizeof(data), ssh->cfg.x11_auth);
5305 x11_get_real_auth(ssh->x11auth, ssh->cfg.x11_display);
51470298 5306 ssh2_pkt_init(ssh, SSH2_MSG_CHANNEL_REQUEST);
5307 ssh2_pkt_adduint32(ssh, ssh->mainchan->remoteid);
5308 ssh2_pkt_addstring(ssh, "x11-req");
5309 ssh2_pkt_addbool(ssh, 1); /* want reply */
5310 ssh2_pkt_addbool(ssh, 0); /* many connections */
5311 ssh2_pkt_addstring(ssh, proto);
5312 ssh2_pkt_addstring(ssh, data);
86916870 5313 ssh2_pkt_adduint32(ssh, x11_get_screen_number(ssh->cfg.x11_display));
51470298 5314 ssh2_pkt_send(ssh);
32874aea 5315
5316 do {
5317 crWaitUntilV(ispkt);
51470298 5318 if (ssh->pktin.type == SSH2_MSG_CHANNEL_WINDOW_ADJUST) {
5319 unsigned i = ssh2_pkt_getuint32(ssh);
32874aea 5320 struct ssh_channel *c;
51470298 5321 c = find234(ssh->channels, &i, ssh_channelfind);
32874aea 5322 if (!c)
5323 continue; /* nonexistent channel */
51470298 5324 c->v.v2.remwindow += ssh2_pkt_getuint32(ssh);
32874aea 5325 }
51470298 5326 } while (ssh->pktin.type == SSH2_MSG_CHANNEL_WINDOW_ADJUST);
32874aea 5327
51470298 5328 if (ssh->pktin.type != SSH2_MSG_CHANNEL_SUCCESS) {
5329 if (ssh->pktin.type != SSH2_MSG_CHANNEL_FAILURE) {
6b5cf8b4 5330 bombout(("Unexpected response to X11 forwarding request:"
51470298 5331 " packet type %d", ssh->pktin.type));
7ffdbc1a 5332 crStopV;
32874aea 5333 }
5334 logevent("X11 forwarding refused");
5335 } else {
5336 logevent("X11 forwarding enabled");
51470298 5337 ssh->X11_fwd_enabled = TRUE;
32874aea 5338 }
783415f8 5339 }
5340
5341 /*
bc240b21 5342 * Enable port forwardings.
5343 */
5344 {
bc240b21 5345 char type;
5346 int n;
a4fc0d74 5347 int sport,dport,sserv,dserv;
6ee9b735 5348 char sports[256], dports[256], saddr[256], host[256];
bc240b21 5349
51470298 5350 ssh->rportfwds = newtree234(ssh_rportcmp_ssh2);
bc240b21 5351 /* Add port forwardings. */
86916870 5352 ssh->portfwd_strptr = ssh->cfg.portfwd;
51470298 5353 while (*ssh->portfwd_strptr) {
5354 type = *ssh->portfwd_strptr++;
6ee9b735 5355 saddr[0] = '\0';
bc240b21 5356 n = 0;
6ee9b735 5357 while (*ssh->portfwd_strptr && *ssh->portfwd_strptr != '\t') {
5358 if (*ssh->portfwd_strptr == ':') {
5359 /*
5360 * We've seen a colon in the middle of the
5361 * source port number. This means that
5362 * everything we've seen until now is the
5363 * source _address_, so we'll move it into
5364 * saddr and start sports from the beginning
5365 * again.
5366 */
5367 ssh->portfwd_strptr++;
5368 sports[n] = '\0';
5369 strcpy(saddr, sports);
5370 n = 0;
5371 }
5372 if (n < 255) sports[n++] = *ssh->portfwd_strptr++;
5373 }
bc240b21 5374 sports[n] = 0;
820ebe3b 5375 if (type != 'D') {
5376 if (*ssh->portfwd_strptr == '\t')
5377 ssh->portfwd_strptr++;
5378 n = 0;
5379 while (*ssh->portfwd_strptr && *ssh->portfwd_strptr != ':') {
5380 if (n < 255) host[n++] = *ssh->portfwd_strptr++;
5381 }
5382 host[n] = 0;
5383 if (*ssh->portfwd_strptr == ':')
5384 ssh->portfwd_strptr++;
5385 n = 0;
5386 while (*ssh->portfwd_strptr) {
5387 if (n < 255) dports[n++] = *ssh->portfwd_strptr++;
5388 }
5389 dports[n] = 0;
51470298 5390 ssh->portfwd_strptr++;
820ebe3b 5391 dport = atoi(dports);
5392 dserv = 0;
5393 if (dport == 0) {
5394 dserv = 1;
5395 dport = net_service_lookup(dports);
5396 if (!dport) {
5397 logeventf(ssh, "Service lookup failed for destination"
5398 " port \"%s\"", dports);
5399 }
a4fc0d74 5400 }
820ebe3b 5401 } else {
5402 while (*ssh->portfwd_strptr) ssh->portfwd_strptr++;
7ffdbc1a 5403 dport = dserv = -1;
a4fc0d74 5404 }
bc240b21 5405 sport = atoi(sports);
a4fc0d74 5406 sserv = 0;
5407 if (sport == 0) {
5408 sserv = 1;
68a49acb 5409 sport = net_service_lookup(sports);
5410 if (!sport) {
57356d63 5411 logeventf(ssh, "Service lookup failed for source"
5412 " port \"%s\"", sports);
a4fc0d74 5413 }
5414 }
bc240b21 5415 if (sport && dport) {
5416 if (type == 'L') {
6ee9b735 5417 pfd_addforward(host, dport, *saddr ? saddr : NULL,
e8fa8f62 5418 sport, ssh, &ssh->cfg);
6ee9b735 5419 logeventf(ssh, "Local port %.*s%.*s%.*s%.*s%d%.*s"
5420 " forwarding to %s:%.*s%.*s%d%.*s",
5421 (int)(*saddr?strlen(saddr):0), *saddr?saddr:NULL,
5422 (int)(*saddr?1:0), ":",
57356d63 5423 (int)(sserv ? strlen(sports) : 0), sports,
5424 sserv, "(", sport, sserv, ")",
5425 host,
5426 (int)(dserv ? strlen(dports) : 0), dports,
5427 dserv, "(", dport, dserv, ")");
820ebe3b 5428 } else if (type == 'D') {
5429 pfd_addforward(NULL, -1, *saddr ? saddr : NULL,
5430 sport, ssh, &ssh->cfg);
5431 logeventf(ssh, "Local port %.*s%.*s%.*s%.*s%d%.*s"
5432 " doing SOCKS dynamic forwarding",
5433 (int)(*saddr?strlen(saddr):0), *saddr?saddr:NULL,
5434 (int)(*saddr?1:0), ":",
5435 (int)(sserv ? strlen(sports) : 0), sports,
5436 sserv, "(", sport, sserv, ")");
bc240b21 5437 } else {
5438 struct ssh_rportfwd *pf;
3d88e64d 5439 pf = snew(struct ssh_rportfwd);
bc240b21 5440 strcpy(pf->dhost, host);
5441 pf->dport = dport;
5442 pf->sport = sport;
51470298 5443 if (add234(ssh->rportfwds, pf) != pf) {
57356d63 5444 logeventf(ssh, "Duplicate remote port forwarding"
5445 " to %s:%d", host, dport);
bc240b21 5446 sfree(pf);
5447 } else {
6ee9b735 5448 logeventf(ssh, "Requesting remote port "
5449 "%.*s%.*s%.*s%.*s%d%.*s"
57356d63 5450 " forward to %s:%.*s%.*s%d%.*s",
6ee9b735 5451 (int)(*saddr?strlen(saddr):0),
5452 *saddr?saddr:NULL,
5453 (int)(*saddr?1:0), ":",
57356d63 5454 (int)(sserv ? strlen(sports) : 0), sports,
5455 sserv, "(", sport, sserv, ")",
5456 host,
5457 (int)(dserv ? strlen(dports) : 0), dports,
5458 dserv, "(", dport, dserv, ")");
51470298 5459 ssh2_pkt_init(ssh, SSH2_MSG_GLOBAL_REQUEST);
5460 ssh2_pkt_addstring(ssh, "tcpip-forward");
5461 ssh2_pkt_addbool(ssh, 1);/* want reply */
6ee9b735 5462 if (*saddr)
5463 ssh2_pkt_addstring(ssh, saddr);
86916870 5464 if (ssh->cfg.rport_acceptall)
51470298 5465 ssh2_pkt_addstring(ssh, "0.0.0.0");
beefa433 5466 else
51470298 5467 ssh2_pkt_addstring(ssh, "127.0.0.1");
5468 ssh2_pkt_adduint32(ssh, sport);
5469 ssh2_pkt_send(ssh);
bc240b21 5470
5471 do {
5472 crWaitUntilV(ispkt);
51470298 5473 if (ssh->pktin.type == SSH2_MSG_CHANNEL_WINDOW_ADJUST) {
5474 unsigned i = ssh2_pkt_getuint32(ssh);
bc240b21 5475 struct ssh_channel *c;
51470298 5476 c = find234(ssh->channels, &i, ssh_channelfind);
bc240b21 5477 if (!c)
5478 continue;/* nonexistent channel */
51470298 5479 c->v.v2.remwindow += ssh2_pkt_getuint32(ssh);
bc240b21 5480 }
51470298 5481 } while (ssh->pktin.type == SSH2_MSG_CHANNEL_WINDOW_ADJUST);
bc240b21 5482
51470298 5483 if (ssh->pktin.type != SSH2_MSG_REQUEST_SUCCESS) {
5484 if (ssh->pktin.type != SSH2_MSG_REQUEST_FAILURE) {
6b5cf8b4 5485 bombout(("Unexpected response to port "
c9886e66 5486 "forwarding request: packet type %d",
51470298 5487 ssh->pktin.type));
7ffdbc1a 5488 crStopV;
bc240b21 5489 }
5490 logevent("Server refused this port forwarding");
5491 } else {
5492 logevent("Remote port forwarding enabled");
5493 }
5494 }
5495 }
5496 }
5497 }
5498 }
5499
5500 /*
36c2a3e9 5501 * Potentially enable agent forwarding.
5502 */
86916870 5503 if (ssh->cfg.agentfwd && agent_exists()) {
32874aea 5504 logevent("Requesting OpenSSH-style agent forwarding");
51470298 5505 ssh2_pkt_init(ssh, SSH2_MSG_CHANNEL_REQUEST);
5506 ssh2_pkt_adduint32(ssh, ssh->mainchan->remoteid);
5507 ssh2_pkt_addstring(ssh, "auth-agent-req@openssh.com");
5508 ssh2_pkt_addbool(ssh, 1); /* want reply */
5509 ssh2_pkt_send(ssh);
32874aea 5510
5511 do {
5512 crWaitUntilV(ispkt);
51470298 5513 if (ssh->pktin.type == SSH2_MSG_CHANNEL_WINDOW_ADJUST) {
5514 unsigned i = ssh2_pkt_getuint32(ssh);
32874aea 5515 struct ssh_channel *c;
51470298 5516 c = find234(ssh->channels, &i, ssh_channelfind);
32874aea 5517 if (!c)
5518 continue; /* nonexistent channel */
51470298 5519 c->v.v2.remwindow += ssh2_pkt_getuint32(ssh);
32874aea 5520 }
51470298 5521 } while (ssh->pktin.type == SSH2_MSG_CHANNEL_WINDOW_ADJUST);
32874aea 5522
51470298 5523 if (ssh->pktin.type != SSH2_MSG_CHANNEL_SUCCESS) {
5524 if (ssh->pktin.type != SSH2_MSG_CHANNEL_FAILURE) {
6b5cf8b4 5525 bombout(("Unexpected response to agent forwarding request:"
51470298 5526 " packet type %d", ssh->pktin.type));
7ffdbc1a 5527 crStopV;
32874aea 5528 }
5529 logevent("Agent forwarding refused");
5530 } else {
5531 logevent("Agent forwarding enabled");
51470298 5532 ssh->agentfwd_enabled = TRUE;
32874aea 5533 }
36c2a3e9 5534 }
5535
5536 /*
7cca0d81 5537 * Now allocate a pty for the session.
5538 */
86916870 5539 if (!ssh->cfg.nopty) {
51470298 5540 ssh2_pkt_init(ssh, SSH2_MSG_CHANNEL_REQUEST);
5541 ssh2_pkt_adduint32(ssh, ssh->mainchan->remoteid); /* recipient channel */
5542 ssh2_pkt_addstring(ssh, "pty-req");
5543 ssh2_pkt_addbool(ssh, 1); /* want reply */
86916870 5544 ssh2_pkt_addstring(ssh, ssh->cfg.termtype);
51470298 5545 ssh2_pkt_adduint32(ssh, ssh->term_width);
5546 ssh2_pkt_adduint32(ssh, ssh->term_height);
5547 ssh2_pkt_adduint32(ssh, 0); /* pixel width */
5548 ssh2_pkt_adduint32(ssh, 0); /* pixel height */
5549 ssh2_pkt_addstring_start(ssh);
5550 ssh2_pkt_addstring_data(ssh, "\0", 1); /* TTY_OP_END, no special options */
5551 ssh2_pkt_send(ssh);
5552 ssh->state = SSH_STATE_INTERMED;
32874aea 5553
5554 do {
5555 crWaitUntilV(ispkt);
51470298 5556 if (ssh->pktin.type == SSH2_MSG_CHANNEL_WINDOW_ADJUST) {
5557 unsigned i = ssh2_pkt_getuint32(ssh);
32874aea 5558 struct ssh_channel *c;
51470298 5559 c = find234(ssh->channels, &i, ssh_channelfind);
32874aea 5560 if (!c)
5561 continue; /* nonexistent channel */
51470298 5562 c->v.v2.remwindow += ssh2_pkt_getuint32(ssh);
32874aea 5563 }
51470298 5564 } while (ssh->pktin.type == SSH2_MSG_CHANNEL_WINDOW_ADJUST);
32874aea 5565
51470298 5566 if (ssh->pktin.type != SSH2_MSG_CHANNEL_SUCCESS) {
5567 if (ssh->pktin.type != SSH2_MSG_CHANNEL_FAILURE) {
6b5cf8b4 5568 bombout(("Unexpected response to pty request:"
51470298 5569 " packet type %d", ssh->pktin.type));
7ffdbc1a 5570 crStopV;
32874aea 5571 }
51470298 5572 c_write_str(ssh, "Server refused to allocate pty\r\n");
5573 ssh->editing = ssh->echoing = 1;
32874aea 5574 } else {
5575 logevent("Allocated pty");
5576 }
0965bee0 5577 } else {
51470298 5578 ssh->editing = ssh->echoing = 1;
7cca0d81 5579 }
5580
5581 /*
fd5e5847 5582 * Start a shell or a remote command. We may have to attempt
5583 * this twice if the config data has provided a second choice
5584 * of command.
7cca0d81 5585 */
fd5e5847 5586 while (1) {
5587 int subsys;
5588 char *cmd;
5589
51470298 5590 if (ssh->fallback_cmd) {
86916870 5591 subsys = ssh->cfg.ssh_subsys2;
5592 cmd = ssh->cfg.remote_cmd_ptr2;
fd5e5847 5593 } else {
86916870 5594 subsys = ssh->cfg.ssh_subsys;
5595 cmd = ssh->cfg.remote_cmd_ptr;
fd5e5847 5596 }
5597
51470298 5598 ssh2_pkt_init(ssh, SSH2_MSG_CHANNEL_REQUEST);
5599 ssh2_pkt_adduint32(ssh, ssh->mainchan->remoteid); /* recipient channel */
fd5e5847 5600 if (subsys) {
51470298 5601 ssh2_pkt_addstring(ssh, "subsystem");
5602 ssh2_pkt_addbool(ssh, 1); /* want reply */
5603 ssh2_pkt_addstring(ssh, cmd);
fd5e5847 5604 } else if (*cmd) {
51470298 5605 ssh2_pkt_addstring(ssh, "exec");
5606 ssh2_pkt_addbool(ssh, 1); /* want reply */
5607 ssh2_pkt_addstring(ssh, cmd);
fd5e5847 5608 } else {
51470298 5609 ssh2_pkt_addstring(ssh, "shell");
5610 ssh2_pkt_addbool(ssh, 1); /* want reply */
32874aea 5611 }
51470298 5612 ssh2_pkt_send(ssh);
fd5e5847 5613 do {
5614 crWaitUntilV(ispkt);
51470298 5615 if (ssh->pktin.type == SSH2_MSG_CHANNEL_WINDOW_ADJUST) {
5616 unsigned i = ssh2_pkt_getuint32(ssh);
fd5e5847 5617 struct ssh_channel *c;
51470298 5618 c = find234(ssh->channels, &i, ssh_channelfind);
fd5e5847 5619 if (!c)
5620 continue; /* nonexistent channel */
51470298 5621 c->v.v2.remwindow += ssh2_pkt_getuint32(ssh);
fd5e5847 5622 }
51470298 5623 } while (ssh->pktin.type == SSH2_MSG_CHANNEL_WINDOW_ADJUST);
5624 if (ssh->pktin.type != SSH2_MSG_CHANNEL_SUCCESS) {
5625 if (ssh->pktin.type != SSH2_MSG_CHANNEL_FAILURE) {
6b5cf8b4 5626 bombout(("Unexpected response to shell/command request:"
51470298 5627 " packet type %d", ssh->pktin.type));
7ffdbc1a 5628 crStopV;
fd5e5847 5629 }
5630 /*
5631 * We failed to start the command. If this is the
5632 * fallback command, we really are finished; if it's
5633 * not, and if the fallback command exists, try falling
5634 * back to it before complaining.
5635 */
86916870 5636 if (!ssh->fallback_cmd && ssh->cfg.remote_cmd_ptr2 != NULL) {
fd5e5847 5637 logevent("Primary command failed; attempting fallback");
51470298 5638 ssh->fallback_cmd = TRUE;
fd5e5847 5639 continue;
5640 }
6b5cf8b4 5641 bombout(("Server refused to start a shell/command"));
7ffdbc1a 5642 crStopV;
fd5e5847 5643 } else {
5644 logevent("Started a shell/command");
32874aea 5645 }
fd5e5847 5646 break;
7cca0d81 5647 }
5648
51470298 5649 ssh->state = SSH_STATE_SESSION;
5650 if (ssh->size_needed)
5651 ssh_size(ssh, ssh->term_width, ssh->term_height);
5652 if (ssh->eof_needed)
5653 ssh_special(ssh, TS_EOF);
6e48c3fe 5654
7cca0d81 5655 /*
5656 * Transfer data!
5657 */
b9d7bcad 5658 if (ssh->ldisc)
5659 ldisc_send(ssh->ldisc, NULL, 0, 0);/* cause ldisc to notice changes */
51470298 5660 ssh->send_ok = 1;
7cca0d81 5661 while (1) {
e5574168 5662 crReturnV;
51470298 5663 s->try_send = FALSE;
7cca0d81 5664 if (ispkt) {
51470298 5665 if (ssh->pktin.type == SSH2_MSG_CHANNEL_DATA ||
5666 ssh->pktin.type == SSH2_MSG_CHANNEL_EXTENDED_DATA) {
32874aea 5667 char *data;
5668 int length;
51470298 5669 unsigned i = ssh2_pkt_getuint32(ssh);
32874aea 5670 struct ssh_channel *c;
51470298 5671 c = find234(ssh->channels, &i, ssh_channelfind);
32874aea 5672 if (!c)
5673 continue; /* nonexistent channel */
51470298 5674 if (ssh->pktin.type == SSH2_MSG_CHANNEL_EXTENDED_DATA &&
5675 ssh2_pkt_getuint32(ssh) != SSH2_EXTENDED_DATA_STDERR)
32874aea 5676 continue; /* extended but not stderr */
51470298 5677 ssh2_pkt_getstring(ssh, &data, &length);
32874aea 5678 if (data) {
7ffdbc1a 5679 int bufsize = 0;
5471d09a 5680 c->v.v2.locwindow -= length;
32874aea 5681 switch (c->type) {
5682 case CHAN_MAINSESSION:
5471d09a 5683 bufsize =
51470298 5684 from_backend(ssh->frontend, ssh->pktin.type ==
5471d09a 5685 SSH2_MSG_CHANNEL_EXTENDED_DATA,
5686 data, length);
32874aea 5687 break;
5688 case CHAN_X11:
5471d09a 5689 bufsize = x11_send(c->u.x11.s, data, length);
32874aea 5690 break;
d74d141c 5691 case CHAN_SOCKDATA:
5471d09a 5692 bufsize = pfd_send(c->u.pfd.s, data, length);
bc240b21 5693 break;
36c2a3e9 5694 case CHAN_AGENT:
32874aea 5695 while (length > 0) {
5696 if (c->u.a.lensofar < 4) {
5697 int l = min(4 - c->u.a.lensofar, length);
5698 memcpy(c->u.a.msglen + c->u.a.lensofar,
5699 data, l);
5700 data += l;
5701 length -= l;
5702 c->u.a.lensofar += l;
5703 }
5704 if (c->u.a.lensofar == 4) {
5705 c->u.a.totallen =
5706 4 + GET_32BIT(c->u.a.msglen);
3d88e64d 5707 c->u.a.message = snewn(c->u.a.totallen,
5708 unsigned char);
32874aea 5709 memcpy(c->u.a.message, c->u.a.msglen, 4);
5710 }
5711 if (c->u.a.lensofar >= 4 && length > 0) {
5712 int l =
5713 min(c->u.a.totallen - c->u.a.lensofar,
5714 length);
5715 memcpy(c->u.a.message + c->u.a.lensofar,
5716 data, l);
5717 data += l;
5718 length -= l;
5719 c->u.a.lensofar += l;
5720 }
5721 if (c->u.a.lensofar == c->u.a.totallen) {
839f10db 5722 void *reply;
32874aea 5723 int replylen;
839f10db 5724 if (agent_query(c->u.a.message,
5725 c->u.a.totallen,
5726 &reply, &replylen,
5727 ssh_agentf_callback, c))
5728 ssh_agentf_callback(c, reply, replylen);
32874aea 5729 sfree(c->u.a.message);
5730 c->u.a.lensofar = 0;
5731 }
5732 }
5471d09a 5733 bufsize = 0;
32874aea 5734 break;
5735 }
5736 /*
5471d09a 5737 * If we are not buffering too much data,
5738 * enlarge the window again at the remote side.
32874aea 5739 */
5471d09a 5740 if (bufsize < OUR_V2_WINSIZE)
5741 ssh2_set_window(c, OUR_V2_WINSIZE - bufsize);
32874aea 5742 }
51470298 5743 } else if (ssh->pktin.type == SSH2_MSG_CHANNEL_EOF) {
5744 unsigned i = ssh2_pkt_getuint32(ssh);
32874aea 5745 struct ssh_channel *c;
5746
51470298 5747 c = find234(ssh->channels, &i, ssh_channelfind);
32874aea 5748 if (!c)
5749 continue; /* nonexistent channel */
5750
5751 if (c->type == CHAN_X11) {
5752 /*
5753 * Remote EOF on an X11 channel means we should
5754 * wrap up and close the channel ourselves.
5755 */
5756 x11_close(c->u.x11.s);
5757 sshfwd_close(c);
5758 } else if (c->type == CHAN_AGENT) {
36c2a3e9 5759 sshfwd_close(c);
d74d141c 5760 } else if (c->type == CHAN_SOCKDATA) {
bc240b21 5761 pfd_close(c->u.pfd.s);
5762 sshfwd_close(c);
36c2a3e9 5763 }
51470298 5764 } else if (ssh->pktin.type == SSH2_MSG_CHANNEL_CLOSE) {
5765 unsigned i = ssh2_pkt_getuint32(ssh);
32874aea 5766 struct ssh_channel *c;
5767
51470298 5768 c = find234(ssh->channels, &i, ssh_channelfind);
d0d844c1 5769 if (!c || ((int)c->remoteid) == -1) {
6b5cf8b4 5770 bombout(("Received CHANNEL_CLOSE for %s channel %d\n",
d0d844c1 5771 c ? "half-open" : "nonexistent", i));
7ffdbc1a 5772 crStopV;
d0d844c1 5773 }
32874aea 5774 /* Do pre-close processing on the channel. */
5775 switch (c->type) {
5776 case CHAN_MAINSESSION:
5777 break; /* nothing to see here, move along */
5778 case CHAN_X11:
92f157bd 5779 if (c->u.x11.s != NULL)
5780 x11_close(c->u.x11.s);
5781 sshfwd_close(c);
32874aea 5782 break;
5783 case CHAN_AGENT:
92f157bd 5784 sshfwd_close(c);
32874aea 5785 break;
d74d141c 5786 case CHAN_SOCKDATA:
92f157bd 5787 if (c->u.pfd.s != NULL)
5788 pfd_close(c->u.pfd.s);
5789 sshfwd_close(c);
bc240b21 5790 break;
32874aea 5791 }
92f157bd 5792 if (c->closes == 0) {
51470298 5793 ssh2_pkt_init(ssh, SSH2_MSG_CHANNEL_CLOSE);
5794 ssh2_pkt_adduint32(ssh, c->remoteid);
5795 ssh2_pkt_send(ssh);
92f157bd 5796 }
51470298 5797 del234(ssh->channels, c);
5471d09a 5798 bufchain_clear(&c->v.v2.outbuffer);
32874aea 5799 sfree(c);
5800
5801 /*
5802 * See if that was the last channel left open.
5803 */
51470298 5804 if (count234(ssh->channels) == 0) {
3bb2f322 5805 logevent("All channels closed. Disconnecting");
ca2914d1 5806#if 0
5807 /*
5808 * We used to send SSH_MSG_DISCONNECT here,
5809 * because I'd believed that _every_ conforming
5810 * SSH2 connection had to end with a disconnect
5811 * being sent by at least one side; apparently
5812 * I was wrong and it's perfectly OK to
5813 * unceremoniously slam the connection shut
5814 * when you're done, and indeed OpenSSH feels
5815 * this is more polite than sending a
5816 * DISCONNECT. So now we don't.
5817 */
51470298 5818 ssh2_pkt_init(ssh, SSH2_MSG_DISCONNECT);
5819 ssh2_pkt_adduint32(ssh, SSH2_DISCONNECT_BY_APPLICATION);
5820 ssh2_pkt_addstring(ssh, "All open channels closed");
5821 ssh2_pkt_addstring(ssh, "en"); /* language tag */
5822 ssh2_pkt_send(ssh);
ca2914d1 5823#endif
3bb2f322 5824 ssh_closing((Plug)ssh, NULL, 0, 0);
7ffdbc1a 5825 crStopV;
32874aea 5826 }
5827 continue; /* remote sends close; ignore (FIXME) */
51470298 5828 } else if (ssh->pktin.type == SSH2_MSG_CHANNEL_WINDOW_ADJUST) {
5829 unsigned i = ssh2_pkt_getuint32(ssh);
32874aea 5830 struct ssh_channel *c;
51470298 5831 c = find234(ssh->channels, &i, ssh_channelfind);
a6253970 5832 if (!c || c->closes)
5833 continue; /* nonexistent or closing channel */
51470298 5834 c->v.v2.remwindow += ssh2_pkt_getuint32(ssh);
5835 s->try_send = TRUE;
5836 } else if (ssh->pktin.type == SSH2_MSG_CHANNEL_OPEN_CONFIRMATION) {
5837 unsigned i = ssh2_pkt_getuint32(ssh);
bc240b21 5838 struct ssh_channel *c;
51470298 5839 c = find234(ssh->channels, &i, ssh_channelfind);
bc240b21 5840 if (!c)
5841 continue; /* nonexistent channel */
5842 if (c->type != CHAN_SOCKDATA_DORMANT)
5843 continue; /* dunno why they're confirming this */
51470298 5844 c->remoteid = ssh2_pkt_getuint32(ssh);
bc240b21 5845 c->type = CHAN_SOCKDATA;
51470298 5846 c->v.v2.remwindow = ssh2_pkt_getuint32(ssh);
5847 c->v.v2.remmaxpkt = ssh2_pkt_getuint32(ssh);
4ed34d25 5848 if (c->u.pfd.s)
5849 pfd_confirm(c->u.pfd.s);
5850 if (c->closes) {
5851 /*
5852 * We have a pending close on this channel,
5853 * which we decided on before the server acked
5854 * the channel open. So now we know the
5855 * remoteid, we can close it again.
5856 */
51470298 5857 ssh2_pkt_init(ssh, SSH2_MSG_CHANNEL_CLOSE);
5858 ssh2_pkt_adduint32(ssh, c->remoteid);
5859 ssh2_pkt_send(ssh);
4ed34d25 5860 }
51470298 5861 } else if (ssh->pktin.type == SSH2_MSG_CHANNEL_OPEN_FAILURE) {
5862 unsigned i = ssh2_pkt_getuint32(ssh);
724cface 5863 struct ssh_channel *c;
51470298 5864 c = find234(ssh->channels, &i, ssh_channelfind);
724cface 5865 if (!c)
5866 continue; /* nonexistent channel */
5867 if (c->type != CHAN_SOCKDATA_DORMANT)
5868 continue; /* dunno why they're failing this */
5869
5870 logevent("Forwarded connection refused by server");
5871
5872 pfd_close(c->u.pfd.s);
5873
51470298 5874 del234(ssh->channels, c);
724cface 5875 sfree(c);
51470298 5876 } else if (ssh->pktin.type == SSH2_MSG_CHANNEL_REQUEST) {
ebb0a590 5877 unsigned localid;
5878 char *type;
5879 int typelen, want_reply;
5880 struct ssh_channel *c;
5881
51470298 5882 localid = ssh2_pkt_getuint32(ssh);
5883 ssh2_pkt_getstring(ssh, &type, &typelen);
5884 want_reply = ssh2_pkt_getbool(ssh);
ebb0a590 5885
5886 /*
5887 * First, check that the channel exists. Otherwise,
5888 * we can instantly disconnect with a rude message.
5889 */
51470298 5890 c = find234(ssh->channels, &localid, ssh_channelfind);
ebb0a590 5891 if (!c) {
5892 char buf[80];
5893 sprintf(buf, "Received channel request for nonexistent"
5894 " channel %d", localid);
5895 logevent(buf);
51470298 5896 ssh2_pkt_init(ssh, SSH2_MSG_DISCONNECT);
5897 ssh2_pkt_adduint32(ssh, SSH2_DISCONNECT_BY_APPLICATION);
5898 ssh2_pkt_addstring(ssh, buf);
5899 ssh2_pkt_addstring(ssh, "en"); /* language tag */
5900 ssh2_pkt_send(ssh);
6b5cf8b4 5901 connection_fatal(ssh->frontend, "%s", buf);
3bb2f322 5902 ssh_closing((Plug)ssh, NULL, 0, 0);
7ffdbc1a 5903 crStopV;
ebb0a590 5904 }
5905
5906 /*
d8d6c7e5 5907 * Having got the channel number, we now look at
5908 * the request type string to see if it's something
5909 * we recognise.
ebb0a590 5910 */
d8d6c7e5 5911 if (typelen == 11 && !memcmp(type, "exit-status", 11) &&
51470298 5912 c == ssh->mainchan) {
d8d6c7e5 5913 /* We recognise "exit-status" on the primary channel. */
5914 char buf[100];
51470298 5915 ssh->exitcode = ssh2_pkt_getuint32(ssh);
d8d6c7e5 5916 sprintf(buf, "Server sent command exit status %d",
51470298 5917 ssh->exitcode);
d8d6c7e5 5918 logevent(buf);
5919 if (want_reply) {
51470298 5920 ssh2_pkt_init(ssh, SSH2_MSG_CHANNEL_SUCCESS);
5921 ssh2_pkt_adduint32(ssh, c->remoteid);
5922 ssh2_pkt_send(ssh);
d8d6c7e5 5923 }
5924 } else {
5925 /*
5926 * This is a channel request we don't know
5927 * about, so we now either ignore the request
5928 * or respond with CHANNEL_FAILURE, depending
5929 * on want_reply.
5930 */
5931 if (want_reply) {
51470298 5932 ssh2_pkt_init(ssh, SSH2_MSG_CHANNEL_FAILURE);
5933 ssh2_pkt_adduint32(ssh, c->remoteid);
5934 ssh2_pkt_send(ssh);
d8d6c7e5 5935 }
ebb0a590 5936 }
51470298 5937 } else if (ssh->pktin.type == SSH2_MSG_GLOBAL_REQUEST) {
697d4856 5938 char *type;
5939 int typelen, want_reply;
5940
51470298 5941 ssh2_pkt_getstring(ssh, &type, &typelen);
5942 want_reply = ssh2_pkt_getbool(ssh);
697d4856 5943
5944 /*
5945 * We currently don't support any global requests
5946 * at all, so we either ignore the request or
5947 * respond with REQUEST_FAILURE, depending on
5948 * want_reply.
5949 */
5950 if (want_reply) {
51470298 5951 ssh2_pkt_init(ssh, SSH2_MSG_REQUEST_FAILURE);
5952 ssh2_pkt_send(ssh);
697d4856 5953 }
51470298 5954 } else if (ssh->pktin.type == SSH2_MSG_CHANNEL_OPEN) {
32874aea 5955 char *type;
5956 int typelen;
b3ebaa28 5957 char *peeraddr;
5958 int peeraddrlen;
2e5b14c0 5959 int peerport;
32874aea 5960 char *error = NULL;
5961 struct ssh_channel *c;
bc240b21 5962 unsigned remid, winsize, pktsize;
51470298 5963 ssh2_pkt_getstring(ssh, &type, &typelen);
3d88e64d 5964 c = snew(struct ssh_channel);
51470298 5965 c->ssh = ssh;
32874aea 5966
51470298 5967 remid = ssh2_pkt_getuint32(ssh);
5968 winsize = ssh2_pkt_getuint32(ssh);
5969 pktsize = ssh2_pkt_getuint32(ssh);
bc240b21 5970
32874aea 5971 if (typelen == 3 && !memcmp(type, "x11", 3)) {
df85f78b 5972 char *addrstr;
5973
5974 ssh2_pkt_getstring(ssh, &peeraddr, &peeraddrlen);
5975 addrstr = snewn(peeraddrlen+1, char);
b3ebaa28 5976 memcpy(addrstr, peeraddr, peeraddrlen);
5977 peeraddr[peeraddrlen] = '\0';
2e5b14c0 5978 peerport = ssh2_pkt_getuint32(ssh);
b3ebaa28 5979
51470298 5980 if (!ssh->X11_fwd_enabled)
32874aea 5981 error = "X11 forwarding is not enabled";
86916870 5982 else if (x11_init(&c->u.x11.s, ssh->cfg.x11_display, c,
2e5b14c0 5983 ssh->x11auth, addrstr, peerport,
e8fa8f62 5984 &ssh->cfg) != NULL) {
32874aea 5985 error = "Unable to open an X11 connection";
5986 } else {
5987 c->type = CHAN_X11;
5988 }
b3ebaa28 5989
5990 sfree(addrstr);
bc240b21 5991 } else if (typelen == 15 &&
5992 !memcmp(type, "forwarded-tcpip", 15)) {
5993 struct ssh_rportfwd pf, *realpf;
5994 char *dummy;
5995 int dummylen;
51470298 5996 ssh2_pkt_getstring(ssh, &dummy, &dummylen);/* skip address */
5997 pf.sport = ssh2_pkt_getuint32(ssh);
2e5b14c0 5998 ssh2_pkt_getstring(ssh, &peeraddr, &peeraddrlen);
5999 peerport = ssh2_pkt_getuint32(ssh);
51470298 6000 realpf = find234(ssh->rportfwds, &pf, NULL);
bc240b21 6001 if (realpf == NULL) {
6002 error = "Remote port is not recognised";
6003 } else {
cbe2d68f 6004 const char *e = pfd_newconnect(&c->u.pfd.s,
6005 realpf->dhost,
6006 realpf->dport, c,
6007 &ssh->cfg);
57356d63 6008 logeventf(ssh, "Received remote port open request"
6009 " for %s:%d", realpf->dhost, realpf->dport);
bc240b21 6010 if (e != NULL) {
57356d63 6011 logeventf(ssh, "Port open failed: %s", e);
bc240b21 6012 error = "Port open failed";
6013 } else {
6014 logevent("Forwarded port opened successfully");
6015 c->type = CHAN_SOCKDATA;
6016 }
6017 }
32874aea 6018 } else if (typelen == 22 &&
36c2a3e9 6019 !memcmp(type, "auth-agent@openssh.com", 3)) {
51470298 6020 if (!ssh->agentfwd_enabled)
32874aea 6021 error = "Agent forwarding is not enabled";
36c2a3e9 6022 else {
32874aea 6023 c->type = CHAN_AGENT; /* identify channel type */
36c2a3e9 6024 c->u.a.lensofar = 0;
32874aea 6025 }
6026 } else {
6027 error = "Unsupported channel type requested";
6028 }
6029
bc240b21 6030 c->remoteid = remid;
32874aea 6031 if (error) {
51470298 6032 ssh2_pkt_init(ssh, SSH2_MSG_CHANNEL_OPEN_FAILURE);
6033 ssh2_pkt_adduint32(ssh, c->remoteid);
6034 ssh2_pkt_adduint32(ssh, SSH2_OPEN_CONNECT_FAILED);
6035 ssh2_pkt_addstring(ssh, error);
6036 ssh2_pkt_addstring(ssh, "en"); /* language tag */
6037 ssh2_pkt_send(ssh);
32874aea 6038 sfree(c);
6039 } else {
51470298 6040 c->localid = alloc_channel_id(ssh);
32874aea 6041 c->closes = 0;
5471d09a 6042 c->v.v2.locwindow = OUR_V2_WINSIZE;
6043 c->v.v2.remwindow = winsize;
6044 c->v.v2.remmaxpkt = pktsize;
6045 bufchain_init(&c->v.v2.outbuffer);
51470298 6046 add234(ssh->channels, c);
6047 ssh2_pkt_init(ssh, SSH2_MSG_CHANNEL_OPEN_CONFIRMATION);
6048 ssh2_pkt_adduint32(ssh, c->remoteid);
6049 ssh2_pkt_adduint32(ssh, c->localid);
6050 ssh2_pkt_adduint32(ssh, c->v.v2.locwindow);
6051 ssh2_pkt_adduint32(ssh, 0x4000UL); /* our max pkt size */
6052 ssh2_pkt_send(ssh);
32874aea 6053 }
7cca0d81 6054 } else {
6b5cf8b4 6055 bombout(("Strange packet received: type %d", ssh->pktin.type));
7ffdbc1a 6056 crStopV;
7cca0d81 6057 }
6058 } else {
32874aea 6059 /*
6060 * We have spare data. Add it to the channel buffer.
6061 */
d8baa528 6062 ssh2_add_channel_data(ssh->mainchan, (char *)in, inlen);
51470298 6063 s->try_send = TRUE;
32874aea 6064 }
51470298 6065 if (s->try_send) {
32874aea 6066 int i;
6067 struct ssh_channel *c;
6068 /*
6069 * Try to send data on all channels if we can.
6070 */
51470298 6071 for (i = 0; NULL != (c = index234(ssh->channels, i)); i++) {
a6253970 6072 int bufsize;
6073 if (c->closes)
6074 continue; /* don't send on closing channels */
6075 bufsize = ssh2_try_send(c);
5471d09a 6076 if (bufsize == 0) {
6077 switch (c->type) {
6078 case CHAN_MAINSESSION:
6079 /* stdin need not receive an unthrottle
6080 * notification since it will be polled */
6081 break;
6082 case CHAN_X11:
6083 x11_unthrottle(c->u.x11.s);
6084 break;
6085 case CHAN_AGENT:
6086 /* agent sockets are request/response and need no
6087 * buffer management */
6088 break;
6089 case CHAN_SOCKDATA:
6090 pfd_unthrottle(c->u.pfd.s);
6091 break;
6092 }
6093 }
6094 }
7cca0d81 6095 }
e5574168 6096 }
6097
6098 crFinishV;
6099}
6100
6101/*
7cca0d81 6102 * Handle the top-level SSH2 protocol.
6103 */
51470298 6104static void ssh2_protocol(Ssh ssh, unsigned char *in, int inlen, int ispkt)
7cca0d81 6105{
51470298 6106 if (do_ssh2_transport(ssh, in, inlen, ispkt) == 0)
32874aea 6107 return;
51470298 6108 do_ssh2_authconn(ssh, in, inlen, ispkt);
7cca0d81 6109}
6110
6111/*
8df7a775 6112 * Called to set up the connection.
374330e2 6113 *
6114 * Returns an error message, or NULL on success.
374330e2 6115 */
cbe2d68f 6116static const char *ssh_init(void *frontend_handle, void **backend_handle,
6117 Config *cfg,
6118 char *host, int port, char **realhost, int nodelay)
32874aea 6119{
cbe2d68f 6120 const char *p;
51470298 6121 Ssh ssh;
6122
3d88e64d 6123 ssh = snew(struct ssh_tag);
86916870 6124 ssh->cfg = *cfg; /* STRUCTURE COPY */
125105d1 6125 ssh->version = 0; /* when not ready yet */
51470298 6126 ssh->s = NULL;
6127 ssh->cipher = NULL;
371e569c 6128 ssh->v1_cipher_ctx = NULL;
0183b242 6129 ssh->crcda_ctx = NULL;
51470298 6130 ssh->cscipher = NULL;
371e569c 6131 ssh->cs_cipher_ctx = NULL;
51470298 6132 ssh->sccipher = NULL;
371e569c 6133 ssh->sc_cipher_ctx = NULL;
51470298 6134 ssh->csmac = NULL;
a8327734 6135 ssh->cs_mac_ctx = NULL;
51470298 6136 ssh->scmac = NULL;
e0e1a00d 6137 ssh->sc_mac_ctx = NULL;
51470298 6138 ssh->cscomp = NULL;
5366aed8 6139 ssh->cs_comp_ctx = NULL;
51470298 6140 ssh->sccomp = NULL;
5366aed8 6141 ssh->sc_comp_ctx = NULL;
51470298 6142 ssh->kex = NULL;
389aa499 6143 ssh->kex_ctx = NULL;
51470298 6144 ssh->hostkey = NULL;
6145 ssh->exitcode = -1;
6146 ssh->state = SSH_STATE_PREPACKET;
6147 ssh->size_needed = FALSE;
6148 ssh->eof_needed = FALSE;
b9d7bcad 6149 ssh->ldisc = NULL;
a8327734 6150 ssh->logctx = NULL;
51470298 6151 {
6152 static const struct Packet empty = { 0, 0, NULL, NULL, 0 };
6153 ssh->pktin = ssh->pktout = empty;
6154 }
6155 ssh->deferred_send_data = NULL;
6156 ssh->deferred_len = 0;
6157 ssh->deferred_size = 0;
6158 ssh->fallback_cmd = 0;
6159 ssh->pkt_ctx = 0;
302121de 6160 ssh->x11auth = NULL;
be738459 6161 ssh->v1_compressing = FALSE;
51470298 6162 ssh->v2_outgoing_sequence = 0;
6163 ssh->ssh1_rdpkt_crstate = 0;
6164 ssh->ssh2_rdpkt_crstate = 0;
6165 ssh->do_ssh_init_crstate = 0;
6166 ssh->ssh_gotdata_crstate = 0;
6167 ssh->ssh1_protocol_crstate = 0;
6168 ssh->do_ssh1_login_crstate = 0;
6169 ssh->do_ssh2_transport_crstate = 0;
6170 ssh->do_ssh2_authconn_crstate = 0;
6171 ssh->do_ssh_init_state = NULL;
6172 ssh->do_ssh1_login_state = NULL;
6173 ssh->do_ssh2_transport_state = NULL;
6174 ssh->do_ssh2_authconn_state = NULL;
6571dbfd 6175 ssh->mainchan = NULL;
968d2d92 6176 ssh->throttled_all = 0;
6177 ssh->v1_stdout_throttling = 0;
51470298 6178
6179 *backend_handle = ssh;
32874aea 6180
8f203108 6181#ifdef MSCRYPTOAPI
32874aea 6182 if (crypto_startup() == 0)
8f203108 6183 return "Microsoft high encryption pack not installed!";
6184#endif
374330e2 6185
51470298 6186 ssh->frontend = frontend_handle;
86916870 6187 ssh->term_width = ssh->cfg.width;
6188 ssh->term_height = ssh->cfg.height;
887035a5 6189
fabd1805 6190 ssh->channels = NULL;
6191 ssh->rportfwds = NULL;
6192
51470298 6193 ssh->send_ok = 0;
6194 ssh->editing = 0;
6195 ssh->echoing = 0;
6196 ssh->v1_throttle_count = 0;
6197 ssh->overall_bufsize = 0;
6198 ssh->fallback_cmd = 0;
8df7a775 6199
3648d4c5 6200 ssh->protocol = NULL;
6201
51470298 6202 p = connect_to_host(ssh, host, port, realhost, nodelay);
fb09bf1c 6203 if (p != NULL)
6204 return p;
374330e2 6205
374330e2 6206 return NULL;
6207}
6208
fabd1805 6209static void ssh_free(void *handle)
6210{
6211 Ssh ssh = (Ssh) handle;
6212 struct ssh_channel *c;
6213 struct ssh_rportfwd *pf;
6214
6215 if (ssh->v1_cipher_ctx)
6216 ssh->cipher->free_context(ssh->v1_cipher_ctx);
6217 if (ssh->cs_cipher_ctx)
6218 ssh->cscipher->free_context(ssh->cs_cipher_ctx);
6219 if (ssh->sc_cipher_ctx)
6220 ssh->sccipher->free_context(ssh->sc_cipher_ctx);
6221 if (ssh->cs_mac_ctx)
6222 ssh->csmac->free_context(ssh->cs_mac_ctx);
6223 if (ssh->sc_mac_ctx)
6224 ssh->scmac->free_context(ssh->sc_mac_ctx);
6225 if (ssh->cs_comp_ctx)
6226 ssh->cscomp->compress_cleanup(ssh->cs_comp_ctx);
6227 if (ssh->sc_comp_ctx)
6228 ssh->sccomp->compress_cleanup(ssh->sc_comp_ctx);
6229 if (ssh->kex_ctx)
6230 dh_cleanup(ssh->kex_ctx);
6231 sfree(ssh->savedhost);
6232
6233 if (ssh->channels) {
6234 while ((c = delpos234(ssh->channels, 0)) != NULL) {
6235 switch (c->type) {
6236 case CHAN_X11:
6237 if (c->u.x11.s != NULL)
6238 x11_close(c->u.x11.s);
6239 break;
6240 case CHAN_SOCKDATA:
6241 if (c->u.pfd.s != NULL)
6242 pfd_close(c->u.pfd.s);
6243 break;
6244 }
6245 sfree(c);
6246 }
6247 freetree234(ssh->channels);
6248 }
6249
6250 if (ssh->rportfwds) {
6251 while ((pf = delpos234(ssh->rportfwds, 0)) != NULL)
6252 sfree(pf);
6253 freetree234(ssh->rportfwds);
6254 }
6255 sfree(ssh->deferred_send_data);
6256 if (ssh->x11auth)
6257 x11_free_auth(ssh->x11auth);
6258 sfree(ssh->do_ssh_init_state);
6259 sfree(ssh->do_ssh1_login_state);
6260 sfree(ssh->do_ssh2_transport_state);
6261 sfree(ssh->do_ssh2_authconn_state);
6262
6263 if (ssh->s)
36f94d1f 6264 ssh_do_close(ssh);
fabd1805 6265 sfree(ssh);
6266}
6267
374330e2 6268/*
86916870 6269 * Reconfigure the SSH backend.
6270 *
6271 * Currently, this function does nothing very useful. In future,
6272 * however, we could do some handy things with it. For example, we
6273 * could make the port forwarding configurer active in the Change
6274 * Settings box, and this routine could close down existing
6275 * forwardings and open up new ones in response to changes.
6276 */
6277static void ssh_reconfig(void *handle, Config *cfg)
6278{
6279 Ssh ssh = (Ssh) handle;
6280 ssh->cfg = *cfg; /* STRUCTURE COPY */
6281}
6282
6283/*
374330e2 6284 * Called to send data down the Telnet connection.
6285 */
51470298 6286static int ssh_send(void *handle, char *buf, int len)
32874aea 6287{
51470298 6288 Ssh ssh = (Ssh) handle;
6289
6290 if (ssh == NULL || ssh->s == NULL || ssh->protocol == NULL)
5471d09a 6291 return 0;
374330e2 6292
d8baa528 6293 ssh->protocol(ssh, (unsigned char *)buf, len, 0);
5471d09a 6294
51470298 6295 return ssh_sendbuffer(ssh);
5471d09a 6296}
6297
6298/*
6299 * Called to query the current amount of buffered stdin data.
6300 */
51470298 6301static int ssh_sendbuffer(void *handle)
5471d09a 6302{
51470298 6303 Ssh ssh = (Ssh) handle;
5471d09a 6304 int override_value;
6305
51470298 6306 if (ssh == NULL || ssh->s == NULL || ssh->protocol == NULL)
5471d09a 6307 return 0;
6308
6309 /*
6310 * If the SSH socket itself has backed up, add the total backup
6311 * size on that to any individual buffer on the stdin channel.
6312 */
6313 override_value = 0;
51470298 6314 if (ssh->throttled_all)
6315 override_value = ssh->overall_bufsize;
5471d09a 6316
51470298 6317 if (ssh->version == 1) {
5471d09a 6318 return override_value;
51470298 6319 } else if (ssh->version == 2) {
6320 if (!ssh->mainchan || ssh->mainchan->closes > 0)
5471d09a 6321 return override_value;
6322 else
51470298 6323 return (override_value +
6324 bufchain_size(&ssh->mainchan->v.v2.outbuffer));
5471d09a 6325 }
6326
6327 return 0;
374330e2 6328}
6329
6330/*
6e48c3fe 6331 * Called to set the size of the window from SSH's POV.
374330e2 6332 */
51470298 6333static void ssh_size(void *handle, int width, int height)
32874aea 6334{
51470298 6335 Ssh ssh = (Ssh) handle;
6336
6337 ssh->term_width = width;
6338 ssh->term_height = height;
f278d6f8 6339
51470298 6340 switch (ssh->state) {
374330e2 6341 case SSH_STATE_BEFORE_SIZE:
3687d221 6342 case SSH_STATE_PREPACKET:
21248260 6343 case SSH_STATE_CLOSED:
374330e2 6344 break; /* do nothing */
6345 case SSH_STATE_INTERMED:
51470298 6346 ssh->size_needed = TRUE; /* buffer for later */
374330e2 6347 break;
6348 case SSH_STATE_SESSION:
86916870 6349 if (!ssh->cfg.nopty) {
51470298 6350 if (ssh->version == 1) {
6351 send_packet(ssh, SSH1_CMSG_WINDOW_SIZE,
6352 PKT_INT, ssh->term_height,
6353 PKT_INT, ssh->term_width,
32874aea 6354 PKT_INT, 0, PKT_INT, 0, PKT_END);
6355 } else {
51470298 6356 ssh2_pkt_init(ssh, SSH2_MSG_CHANNEL_REQUEST);
6357 ssh2_pkt_adduint32(ssh, ssh->mainchan->remoteid);
6358 ssh2_pkt_addstring(ssh, "window-change");
6359 ssh2_pkt_addbool(ssh, 0);
6360 ssh2_pkt_adduint32(ssh, ssh->term_width);
6361 ssh2_pkt_adduint32(ssh, ssh->term_height);
6362 ssh2_pkt_adduint32(ssh, 0);
6363 ssh2_pkt_adduint32(ssh, 0);
6364 ssh2_pkt_send(ssh);
32874aea 6365 }
6366 }
6367 break;
374330e2 6368 }
6369}
6370
6371/*
125105d1 6372 * Return a list of the special codes that make sense in this
6373 * protocol.
6374 */
6375static const struct telnet_special *ssh_get_specials(void *handle)
6376{
6377 Ssh ssh = (Ssh) handle;
6378
6379 if (ssh->version == 1) {
6380 static const struct telnet_special ssh1_specials[] = {
6381 {"IGNORE message", TS_NOP},
6382 {NULL, 0}
6383 };
6384 return ssh1_specials;
6385 } else if (ssh->version == 2) {
6386 static const struct telnet_special ssh2_specials[] = {
6387 {"Break", TS_BRK},
6388 {"IGNORE message", TS_NOP},
6389 {NULL, 0}
6390 };
6391 return ssh2_specials;
6392 } else
6393 return NULL;
6394}
6395
6396/*
6abbf9e3 6397 * Send Telnet special codes. TS_EOF is useful for `plink', so you
6398 * can send an EOF and collect resulting output (e.g. `plink
6399 * hostname sort').
374330e2 6400 */
51470298 6401static void ssh_special(void *handle, Telnet_Special code)
32874aea 6402{
51470298 6403 Ssh ssh = (Ssh) handle;
6404
6abbf9e3 6405 if (code == TS_EOF) {
51470298 6406 if (ssh->state != SSH_STATE_SESSION) {
32874aea 6407 /*
6408 * Buffer the EOF in case we are pre-SESSION, so we can
6409 * send it as soon as we reach SESSION.
6410 */
6411 if (code == TS_EOF)
51470298 6412 ssh->eof_needed = TRUE;
32874aea 6413 return;
6414 }
51470298 6415 if (ssh->version == 1) {
6416 send_packet(ssh, SSH1_CMSG_EOF, PKT_END);
32874aea 6417 } else {
51470298 6418 ssh2_pkt_init(ssh, SSH2_MSG_CHANNEL_EOF);
6419 ssh2_pkt_adduint32(ssh, ssh->mainchan->remoteid);
6420 ssh2_pkt_send(ssh);
32874aea 6421 }
6422 logevent("Sent EOF message");
125105d1 6423 } else if (code == TS_PING || code == TS_NOP) {
51470298 6424 if (ssh->state == SSH_STATE_CLOSED
6425 || ssh->state == SSH_STATE_PREPACKET) return;
6426 if (ssh->version == 1) {
6427 if (!(ssh->remote_bugs & BUG_CHOKES_ON_SSH1_IGNORE))
6428 send_packet(ssh, SSH1_MSG_IGNORE, PKT_STR, "", PKT_END);
32874aea 6429 } else {
51470298 6430 ssh2_pkt_init(ssh, SSH2_MSG_IGNORE);
6431 ssh2_pkt_addstring_start(ssh);
6432 ssh2_pkt_send(ssh);
32874aea 6433 }
125105d1 6434 } else if (code == TS_BRK) {
6435 if (ssh->state == SSH_STATE_CLOSED
6436 || ssh->state == SSH_STATE_PREPACKET) return;
6437 if (ssh->version == 1) {
6438 logevent("Unable to send BREAK signal in SSH1");
6439 } else {
6440 ssh2_pkt_init(ssh, SSH2_MSG_CHANNEL_REQUEST);
6441 ssh2_pkt_adduint32(ssh, ssh->mainchan->remoteid);
6442 ssh2_pkt_addstring(ssh, "break");
6443 ssh2_pkt_addbool(ssh, 0);
6444 ssh2_pkt_adduint32(ssh, 0); /* default break length */
6445 ssh2_pkt_send(ssh);
6446 }
6abbf9e3 6447 } else {
32874aea 6448 /* do nothing */
6abbf9e3 6449 }
374330e2 6450}
6451
51470298 6452void *new_sock_channel(void *handle, Socket s)
d74d141c 6453{
51470298 6454 Ssh ssh = (Ssh) handle;
d74d141c 6455 struct ssh_channel *c;
3d88e64d 6456 c = snew(struct ssh_channel);
51470298 6457 c->ssh = ssh;
d74d141c 6458
6459 if (c) {
bc240b21 6460 c->remoteid = -1; /* to be set when open confirmed */
51470298 6461 c->localid = alloc_channel_id(ssh);
d74d141c 6462 c->closes = 0;
bc240b21 6463 c->type = CHAN_SOCKDATA_DORMANT;/* identify channel type */
d74d141c 6464 c->u.pfd.s = s;
013dd8c0 6465 bufchain_init(&c->v.v2.outbuffer);
51470298 6466 add234(ssh->channels, c);
d74d141c 6467 }
6468 return c;
6469}
6470
5471d09a 6471/*
6472 * This is called when stdout/stderr (the entity to which
6473 * from_backend sends data) manages to clear some backlog.
6474 */
ae9ae89f 6475static void ssh_unthrottle(void *handle, int bufsize)
5471d09a 6476{
51470298 6477 Ssh ssh = (Ssh) handle;
6478 if (ssh->version == 1) {
6479 if (ssh->v1_stdout_throttling && bufsize < SSH1_BUFFER_LIMIT) {
6480 ssh->v1_stdout_throttling = 0;
6481 ssh1_throttle(ssh, -1);
5471d09a 6482 }
6483 } else {
51470298 6484 if (ssh->mainchan && ssh->mainchan->closes == 0)
6485 ssh2_set_window(ssh->mainchan, OUR_V2_WINSIZE - bufsize);
5471d09a 6486 }
6487}
6488
6b78788a 6489void ssh_send_port_open(void *channel, char *hostname, int port, char *org)
d74d141c 6490{
6491 struct ssh_channel *c = (struct ssh_channel *)channel;
6b78788a 6492 Ssh ssh = c->ssh;
d74d141c 6493
57356d63 6494 logeventf(ssh, "Opening forwarded connection to %s:%d", hostname, port);
d74d141c 6495
51470298 6496 if (ssh->version == 1) {
6497 send_packet(ssh, SSH1_MSG_PORT_OPEN,
bc240b21 6498 PKT_INT, c->localid,
6499 PKT_STR, hostname,
6500 PKT_INT, port,
6501 //PKT_STR, <org:orgport>,
6502 PKT_END);
6503 } else {
51470298 6504 ssh2_pkt_init(ssh, SSH2_MSG_CHANNEL_OPEN);
6505 ssh2_pkt_addstring(ssh, "direct-tcpip");
6506 ssh2_pkt_adduint32(ssh, c->localid);
5471d09a 6507 c->v.v2.locwindow = OUR_V2_WINSIZE;
51470298 6508 ssh2_pkt_adduint32(ssh, c->v.v2.locwindow);/* our window size */
6509 ssh2_pkt_adduint32(ssh, 0x4000UL); /* our max pkt size */
6510 ssh2_pkt_addstring(ssh, hostname);
6511 ssh2_pkt_adduint32(ssh, port);
bc240b21 6512 /*
6513 * We make up values for the originator data; partly it's
6514 * too much hassle to keep track, and partly I'm not
6515 * convinced the server should be told details like that
6516 * about my local network configuration.
6517 */
51470298 6518 ssh2_pkt_addstring(ssh, "client-side-connection");
6519 ssh2_pkt_adduint32(ssh, 0);
6520 ssh2_pkt_send(ssh);
bc240b21 6521 }
d74d141c 6522}
6523
6524
51470298 6525static Socket ssh_socket(void *handle)
32874aea 6526{
51470298 6527 Ssh ssh = (Ssh) handle;
6528 return ssh->s;
32874aea 6529}
8ccc75b0 6530
51470298 6531static int ssh_sendok(void *handle)
32874aea 6532{
51470298 6533 Ssh ssh = (Ssh) handle;
6534 return ssh->send_ok;
32874aea 6535}
fb09bf1c 6536
51470298 6537static int ssh_ldisc(void *handle, int option)
32874aea 6538{
51470298 6539 Ssh ssh = (Ssh) handle;
32874aea 6540 if (option == LD_ECHO)
51470298 6541 return ssh->echoing;
32874aea 6542 if (option == LD_EDIT)
51470298 6543 return ssh->editing;
0965bee0 6544 return FALSE;
6545}
6546
b9d7bcad 6547static void ssh_provide_ldisc(void *handle, void *ldisc)
6548{
6549 Ssh ssh = (Ssh) handle;
6550 ssh->ldisc = ldisc;
6551}
6552
a8327734 6553static void ssh_provide_logctx(void *handle, void *logctx)
6554{
6555 Ssh ssh = (Ssh) handle;
6556 ssh->logctx = logctx;
6557}
6558
51470298 6559static int ssh_return_exitcode(void *handle)
6560{
6561 Ssh ssh = (Ssh) handle;
3bb2f322 6562 if (ssh->s != NULL)
6563 return -1;
6564 else
6565 return (ssh->exitcode >= 0 ? ssh->exitcode : 0);
51470298 6566}
6567
6568/*
6569 * Gross hack: pscp will try to start SFTP but fall back to scp1 if
6570 * that fails. This variable is the means by which scp.c can reach
6571 * into the SSH code and find out which one it got.
6572 */
6573extern int ssh_fallback_cmd(void *handle)
d8d6c7e5 6574{
51470298 6575 Ssh ssh = (Ssh) handle;
6576 return ssh->fallback_cmd;
d8d6c7e5 6577}
6578
374330e2 6579Backend ssh_backend = {
6580 ssh_init,
fabd1805 6581 ssh_free,
86916870 6582 ssh_reconfig,
374330e2 6583 ssh_send,
5471d09a 6584 ssh_sendbuffer,
374330e2 6585 ssh_size,
4017be6d 6586 ssh_special,
125105d1 6587 ssh_get_specials,
8ccc75b0 6588 ssh_socket,
d8d6c7e5 6589 ssh_return_exitcode,
97db3be4 6590 ssh_sendok,
0965bee0 6591 ssh_ldisc,
b9d7bcad 6592 ssh_provide_ldisc,
a8327734 6593 ssh_provide_logctx,
5471d09a 6594 ssh_unthrottle,
97db3be4 6595 22
bc240b21 6596};