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