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