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