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