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