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