Currentish ssh.com supports single-DES in SSH2 as "des-cbc@ssh.com". It
[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;
692 int v2_outgoing_sequence;
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;
aa63ab7e 4282 unsigned 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/*
d39f364a 4656 * SSH2 key creation method.
4657 */
d8baa528 4658static void ssh2_mkkey(Ssh ssh, Bignum K, unsigned char *H,
4659 unsigned char *sessid, char chr,
4660 unsigned char *keyspace)
32874aea 4661{
d39f364a 4662 SHA_State s;
4663 /* First 20 bytes. */
4664 SHA_Init(&s);
51470298 4665 if (!(ssh->remote_bugs & BUG_SSH2_DERIVEKEY))
088bde77 4666 sha_mpint(&s, K);
d39f364a 4667 SHA_Bytes(&s, H, 20);
4668 SHA_Bytes(&s, &chr, 1);
5e0d7cb8 4669 SHA_Bytes(&s, sessid, 20);
d39f364a 4670 SHA_Final(&s, keyspace);
4671 /* Next 20 bytes. */
4672 SHA_Init(&s);
51470298 4673 if (!(ssh->remote_bugs & BUG_SSH2_DERIVEKEY))
088bde77 4674 sha_mpint(&s, K);
d39f364a 4675 SHA_Bytes(&s, H, 20);
4676 SHA_Bytes(&s, keyspace, 20);
32874aea 4677 SHA_Final(&s, keyspace + 20);
d39f364a 4678}
4679
4680/*
7cca0d81 4681 * Handle the SSH2 transport layer.
e5574168 4682 */
1c1a7262 4683static int do_ssh2_transport(Ssh ssh, void *vin, int inlen,
ff3187f6 4684 struct Packet *pktin)
e5574168 4685{
1c1a7262 4686 unsigned char *in = (unsigned char *)vin;
51470298 4687 struct do_ssh2_transport_state {
4688 int nbits, pbits, warn;
4689 Bignum p, g, e, f, K;
4690 int kex_init_value, kex_reply_value;
4691 const struct ssh_mac **maclist;
4692 int nmacs;
4693 const struct ssh2_cipher *cscipher_tobe;
4694 const struct ssh2_cipher *sccipher_tobe;
4695 const struct ssh_mac *csmac_tobe;
4696 const struct ssh_mac *scmac_tobe;
4697 const struct ssh_compress *cscomp_tobe;
4698 const struct ssh_compress *sccomp_tobe;
4699 char *hostkeydata, *sigdata, *keystr, *fingerprint;
4700 int hostkeylen, siglen;
4701 void *hkey; /* actual host key */
4702 unsigned char exchange_hash[20];
83e7d008 4703 int n_preferred_kex;
4704 const struct ssh_kex *preferred_kex[KEX_MAX];
51470298 4705 int n_preferred_ciphers;
4706 const struct ssh2_ciphers *preferred_ciphers[CIPHER_MAX];
4707 const struct ssh_compress *preferred_comp;
e13bba36 4708 int got_session_id, activated_authconn;
ff3187f6 4709 struct Packet *pktout;
51470298 4710 };
4711 crState(do_ssh2_transport_state);
4712
4713 crBegin(ssh->do_ssh2_transport_crstate);
4714
4715 s->cscipher_tobe = s->sccipher_tobe = NULL;
4716 s->csmac_tobe = s->scmac_tobe = NULL;
4717 s->cscomp_tobe = s->sccomp_tobe = NULL;
4718
e13bba36 4719 s->got_session_id = s->activated_authconn = FALSE;
e5574168 4720
e13bba36 4721 /*
4722 * Be prepared to work around the buggy MAC problem.
4723 */
4724 if (ssh->remote_bugs & BUG_SSH2_HMAC)
4725 s->maclist = buggymacs, s->nmacs = lenof(buggymacs);
4726 else
4727 s->maclist = macs, s->nmacs = lenof(macs);
4728
4729 begin_key_exchange:
149d2abc 4730 ssh->pkt_ctx &= ~SSH2_PKTCTX_KEX_MASK;
51470298 4731 {
e13bba36 4732 int i, j, commalist_started;
4733
51470298 4734 /*
83e7d008 4735 * Set up the preferred key exchange. (NULL => warn below here)
4736 */
4737 s->n_preferred_kex = 0;
4738 for (i = 0; i < KEX_MAX; i++) {
4739 switch (ssh->cfg.ssh_kexlist[i]) {
4740 case KEX_DHGEX:
4741 s->preferred_kex[s->n_preferred_kex++] =
4742 &ssh_diffiehellman_gex;
4743 break;
4744 case KEX_DHGROUP14:
4745 s->preferred_kex[s->n_preferred_kex++] =
4746 &ssh_diffiehellman_group14;
4747 break;
4748 case KEX_DHGROUP1:
4749 s->preferred_kex[s->n_preferred_kex++] =
4750 &ssh_diffiehellman_group1;
4751 break;
4752 case CIPHER_WARN:
4753 /* Flag for later. Don't bother if it's the last in
4754 * the list. */
4755 if (i < KEX_MAX - 1) {
4756 s->preferred_kex[s->n_preferred_kex++] = NULL;
4757 }
4758 break;
4759 }
4760 }
83e7d008 4761
83e7d008 4762 /*
51470298 4763 * Set up the preferred ciphers. (NULL => warn below here)
4764 */
4765 s->n_preferred_ciphers = 0;
4766 for (i = 0; i < CIPHER_MAX; i++) {
86916870 4767 switch (ssh->cfg.ssh_cipherlist[i]) {
51470298 4768 case CIPHER_BLOWFISH:
4769 s->preferred_ciphers[s->n_preferred_ciphers++] = &ssh2_blowfish;
4770 break;
4771 case CIPHER_DES:
86916870 4772 if (ssh->cfg.ssh2_des_cbc) {
51470298 4773 s->preferred_ciphers[s->n_preferred_ciphers++] = &ssh2_des;
4774 }
4775 break;
4776 case CIPHER_3DES:
4777 s->preferred_ciphers[s->n_preferred_ciphers++] = &ssh2_3des;
4778 break;
4779 case CIPHER_AES:
4780 s->preferred_ciphers[s->n_preferred_ciphers++] = &ssh2_aes;
4781 break;
4782 case CIPHER_WARN:
4783 /* Flag for later. Don't bother if it's the last in
4784 * the list. */
4785 if (i < CIPHER_MAX - 1) {
4786 s->preferred_ciphers[s->n_preferred_ciphers++] = NULL;
4787 }
4788 break;
ca20bfcf 4789 }
ca20bfcf 4790 }
7591b9ff 4791
e13bba36 4792 /*
4793 * Set up preferred compression.
4794 */
4795 if (ssh->cfg.compression)
4796 s->preferred_comp = &ssh_zlib;
4797 else
4798 s->preferred_comp = &ssh_comp_none;
51470298 4799
4800 /*
590f6a5f 4801 * Enable queueing of outgoing auth- or connection-layer
4802 * packets while we are in the middle of a key exchange.
4803 */
4804 ssh->queueing = TRUE;
4805
4806 /*
9442dd57 4807 * Flag that KEX is in progress.
4808 */
4809 ssh->kex_in_progress = TRUE;
4810
4811 /*
51470298 4812 * Construct and send our key exchange packet.
4813 */
ff3187f6 4814 s->pktout = ssh2_pkt_init(SSH2_MSG_KEXINIT);
51470298 4815 for (i = 0; i < 16; i++)
ff3187f6 4816 ssh2_pkt_addbyte(s->pktout, (unsigned char) random_byte());
51470298 4817 /* List key exchange algorithms. */
ff3187f6 4818 ssh2_pkt_addstring_start(s->pktout);
83e7d008 4819 commalist_started = 0;
4820 for (i = 0; i < s->n_preferred_kex; i++) {
4821 const struct ssh_kex *k = s->preferred_kex[i];
4822 if (!k) continue; /* warning flag */
4823 if (commalist_started)
ff3187f6 4824 ssh2_pkt_addstring_str(s->pktout, ",");
83e7d008 4825 ssh2_pkt_addstring_str(s->pktout, s->preferred_kex[i]->name);
4826 commalist_started = 1;
32874aea 4827 }
51470298 4828 /* List server host key algorithms. */
ff3187f6 4829 ssh2_pkt_addstring_start(s->pktout);
51470298 4830 for (i = 0; i < lenof(hostkey_algs); i++) {
ff3187f6 4831 ssh2_pkt_addstring_str(s->pktout, hostkey_algs[i]->name);
51470298 4832 if (i < lenof(hostkey_algs) - 1)
ff3187f6 4833 ssh2_pkt_addstring_str(s->pktout, ",");
32874aea 4834 }
51470298 4835 /* List client->server encryption algorithms. */
ff3187f6 4836 ssh2_pkt_addstring_start(s->pktout);
83e7d008 4837 commalist_started = 0;
51470298 4838 for (i = 0; i < s->n_preferred_ciphers; i++) {
4839 const struct ssh2_ciphers *c = s->preferred_ciphers[i];
4840 if (!c) continue; /* warning flag */
4841 for (j = 0; j < c->nciphers; j++) {
83e7d008 4842 if (commalist_started)
ff3187f6 4843 ssh2_pkt_addstring_str(s->pktout, ",");
4844 ssh2_pkt_addstring_str(s->pktout, c->list[j]->name);
83e7d008 4845 commalist_started = 1;
51470298 4846 }
4847 }
4848 /* List server->client encryption algorithms. */
ff3187f6 4849 ssh2_pkt_addstring_start(s->pktout);
83e7d008 4850 commalist_started = 0;
51470298 4851 for (i = 0; i < s->n_preferred_ciphers; i++) {
4852 const struct ssh2_ciphers *c = s->preferred_ciphers[i];
4853 if (!c) continue; /* warning flag */
4854 for (j = 0; j < c->nciphers; j++) {
83e7d008 4855 if (commalist_started)
ff3187f6 4856 ssh2_pkt_addstring_str(s->pktout, ",");
4857 ssh2_pkt_addstring_str(s->pktout, c->list[j]->name);
83e7d008 4858 commalist_started = 1;
51470298 4859 }
4860 }
4861 /* List client->server MAC algorithms. */
ff3187f6 4862 ssh2_pkt_addstring_start(s->pktout);
51470298 4863 for (i = 0; i < s->nmacs; i++) {
ff3187f6 4864 ssh2_pkt_addstring_str(s->pktout, s->maclist[i]->name);
51470298 4865 if (i < s->nmacs - 1)
ff3187f6 4866 ssh2_pkt_addstring_str(s->pktout, ",");
51470298 4867 }
4868 /* List server->client MAC algorithms. */
ff3187f6 4869 ssh2_pkt_addstring_start(s->pktout);
51470298 4870 for (i = 0; i < s->nmacs; i++) {
ff3187f6 4871 ssh2_pkt_addstring_str(s->pktout, s->maclist[i]->name);
51470298 4872 if (i < s->nmacs - 1)
ff3187f6 4873 ssh2_pkt_addstring_str(s->pktout, ",");
51470298 4874 }
4875 /* List client->server compression algorithms. */
ff3187f6 4876 ssh2_pkt_addstring_start(s->pktout);
f6e0abe2 4877 assert(lenof(compressions) > 1);
ff3187f6 4878 ssh2_pkt_addstring_str(s->pktout, s->preferred_comp->name);
f6e0abe2 4879 for (i = 0; i < lenof(compressions); i++) {
4880 const struct ssh_compress *c = compressions[i];
4881 if (c != s->preferred_comp) {
ff3187f6 4882 ssh2_pkt_addstring_str(s->pktout, ",");
4883 ssh2_pkt_addstring_str(s->pktout, c->name);
f6e0abe2 4884 }
51470298 4885 }
4886 /* List server->client compression algorithms. */
ff3187f6 4887 ssh2_pkt_addstring_start(s->pktout);
f6e0abe2 4888 assert(lenof(compressions) > 1);
ff3187f6 4889 ssh2_pkt_addstring_str(s->pktout, s->preferred_comp->name);
f6e0abe2 4890 for (i = 0; i < lenof(compressions); i++) {
4891 const struct ssh_compress *c = compressions[i];
4892 if (c != s->preferred_comp) {
ff3187f6 4893 ssh2_pkt_addstring_str(s->pktout, ",");
4894 ssh2_pkt_addstring_str(s->pktout, c->name);
f6e0abe2 4895 }
51470298 4896 }
4897 /* List client->server languages. Empty list. */
ff3187f6 4898 ssh2_pkt_addstring_start(s->pktout);
51470298 4899 /* List server->client languages. Empty list. */
ff3187f6 4900 ssh2_pkt_addstring_start(s->pktout);
51470298 4901 /* First KEX packet does _not_ follow, because we're not that brave. */
ff3187f6 4902 ssh2_pkt_addbool(s->pktout, FALSE);
51470298 4903 /* Reserved. */
ff3187f6 4904 ssh2_pkt_adduint32(s->pktout, 0);
e5574168 4905 }
0db56f73 4906
51470298 4907 ssh->exhash = ssh->exhashbase;
ff3187f6 4908 sha_string(&ssh->exhash, s->pktout->data + 5, s->pktout->length - 5);
0db56f73 4909
590f6a5f 4910 ssh2_pkt_send_noqueue(ssh, s->pktout);
e5574168 4911
ff3187f6 4912 if (!pktin)
4913 crWaitUntil(pktin);
4914 if (pktin->length > 5)
4915 sha_string(&ssh->exhash, pktin->data + 5, pktin->length - 5);
e5574168 4916
4917 /*
4918 * Now examine the other side's KEXINIT to see what we're up
4919 * to.
4920 */
51470298 4921 {
4922 char *str;
4923 int i, j, len;
4924
ff3187f6 4925 if (pktin->type != SSH2_MSG_KEXINIT) {
6b5cf8b4 4926 bombout(("expected key exchange packet from server"));
7ffdbc1a 4927 crStop(0);
32874aea 4928 }
51470298 4929 ssh->kex = NULL;
4930 ssh->hostkey = NULL;
4931 s->cscipher_tobe = NULL;
4932 s->sccipher_tobe = NULL;
4933 s->csmac_tobe = NULL;
4934 s->scmac_tobe = NULL;
4935 s->cscomp_tobe = NULL;
4936 s->sccomp_tobe = NULL;
ff3187f6 4937 pktin->savedpos += 16; /* skip garbage cookie */
4938 ssh_pkt_getstring(pktin, &str, &len); /* key exchange algorithms */
83e7d008 4939 s->warn = 0;
4940 for (i = 0; i < s->n_preferred_kex; i++) {
4941 const struct ssh_kex *k = s->preferred_kex[i];
4942 if (!k) {
4943 s->warn = 1;
4944 } else if (in_commasep_string(k->name, str, len)) {
4945 ssh->kex = k;
4946 }
4947 if (ssh->kex) {
bb348ab1 4948 if (s->warn) {
4949 sk_set_frozen(ssh->s, 1);
83e7d008 4950 askalg(ssh->frontend, "key-exchange algorithm",
4951 ssh->kex->name);
bb348ab1 4952 sk_set_frozen(ssh->s, 0);
4953 }
51470298 4954 break;
4955 }
32874aea 4956 }
83e7d008 4957 if (!ssh->kex) {
4958 bombout(("Couldn't agree a key exchange algorithm (available: %s)",
4959 str ? str : "(null)"));
4960 crStop(0);
4961 }
ff3187f6 4962 ssh_pkt_getstring(pktin, &str, &len); /* host key algorithms */
51470298 4963 for (i = 0; i < lenof(hostkey_algs); i++) {
4964 if (in_commasep_string(hostkey_algs[i]->name, str, len)) {
4965 ssh->hostkey = hostkey_algs[i];
4966 break;
4967 }
4968 }
ff3187f6 4969 ssh_pkt_getstring(pktin, &str, &len); /* client->server cipher */
51470298 4970 s->warn = 0;
4971 for (i = 0; i < s->n_preferred_ciphers; i++) {
4972 const struct ssh2_ciphers *c = s->preferred_ciphers[i];
4973 if (!c) {
4974 s->warn = 1;
4975 } else {
4976 for (j = 0; j < c->nciphers; j++) {
4977 if (in_commasep_string(c->list[j]->name, str, len)) {
4978 s->cscipher_tobe = c->list[j];
4979 break;
4980 }
ca20bfcf 4981 }
32874aea 4982 }
51470298 4983 if (s->cscipher_tobe) {
bb348ab1 4984 if (s->warn) {
4985 sk_set_frozen(ssh->s, 1);
83e7d008 4986 askalg(ssh->frontend, "client-to-server cipher",
4987 s->cscipher_tobe->name);
bb348ab1 4988 sk_set_frozen(ssh->s, 0);
4989 }
51470298 4990 break;
4991 }
32874aea 4992 }
51470298 4993 if (!s->cscipher_tobe) {
6b5cf8b4 4994 bombout(("Couldn't agree a client-to-server cipher (available: %s)",
57356d63 4995 str ? str : "(null)"));
7ffdbc1a 4996 crStop(0);
ca20bfcf 4997 }
0ef8f407 4998
ff3187f6 4999 ssh_pkt_getstring(pktin, &str, &len); /* server->client cipher */
51470298 5000 s->warn = 0;
5001 for (i = 0; i < s->n_preferred_ciphers; i++) {
5002 const struct ssh2_ciphers *c = s->preferred_ciphers[i];
5003 if (!c) {
5004 s->warn = 1;
5005 } else {
5006 for (j = 0; j < c->nciphers; j++) {
5007 if (in_commasep_string(c->list[j]->name, str, len)) {
5008 s->sccipher_tobe = c->list[j];
5009 break;
5010 }
ca20bfcf 5011 }
32874aea 5012 }
51470298 5013 if (s->sccipher_tobe) {
bb348ab1 5014 if (s->warn) {
5015 sk_set_frozen(ssh->s, 1);
83e7d008 5016 askalg(ssh->frontend, "server-to-client cipher",
5017 s->sccipher_tobe->name);
bb348ab1 5018 sk_set_frozen(ssh->s, 0);
5019 }
51470298 5020 break;
5021 }
32874aea 5022 }
51470298 5023 if (!s->sccipher_tobe) {
6b5cf8b4 5024 bombout(("Couldn't agree a server-to-client cipher (available: %s)",
57356d63 5025 str ? str : "(null)"));
7ffdbc1a 5026 crStop(0);
ca20bfcf 5027 }
0ef8f407 5028
ff3187f6 5029 ssh_pkt_getstring(pktin, &str, &len); /* client->server mac */
51470298 5030 for (i = 0; i < s->nmacs; i++) {
5031 if (in_commasep_string(s->maclist[i]->name, str, len)) {
5032 s->csmac_tobe = s->maclist[i];
5033 break;
5034 }
32874aea 5035 }
ff3187f6 5036 ssh_pkt_getstring(pktin, &str, &len); /* server->client mac */
51470298 5037 for (i = 0; i < s->nmacs; i++) {
5038 if (in_commasep_string(s->maclist[i]->name, str, len)) {
5039 s->scmac_tobe = s->maclist[i];
5040 break;
5041 }
32874aea 5042 }
ff3187f6 5043 ssh_pkt_getstring(pktin, &str, &len); /* client->server compression */
51470298 5044 for (i = 0; i < lenof(compressions) + 1; i++) {
5045 const struct ssh_compress *c =
5046 i == 0 ? s->preferred_comp : compressions[i - 1];
5047 if (in_commasep_string(c->name, str, len)) {
5048 s->cscomp_tobe = c;
5049 break;
5050 }
32874aea 5051 }
ff3187f6 5052 ssh_pkt_getstring(pktin, &str, &len); /* server->client compression */
51470298 5053 for (i = 0; i < lenof(compressions) + 1; i++) {
5054 const struct ssh_compress *c =
5055 i == 0 ? s->preferred_comp : compressions[i - 1];
5056 if (in_commasep_string(c->name, str, len)) {
5057 s->sccomp_tobe = c;
5058 break;
5059 }
32874aea 5060 }
e5574168 5061 }
e5574168 5062
5063 /*
7bd5a860 5064 * Work out the number of bits of key we will need from the key
5065 * exchange. We start with the maximum key length of either
5066 * cipher...
5067 */
5068 {
32874aea 5069 int csbits, scbits;
7bd5a860 5070
51470298 5071 csbits = s->cscipher_tobe->keylen;
5072 scbits = s->sccipher_tobe->keylen;
5073 s->nbits = (csbits > scbits ? csbits : scbits);
7bd5a860 5074 }
5075 /* The keys only have 160-bit entropy, since they're based on
5076 * a SHA-1 hash. So cap the key size at 160 bits. */
51470298 5077 if (s->nbits > 160)
5078 s->nbits = 160;
7bd5a860 5079
5080 /*
a92dd380 5081 * If we're doing Diffie-Hellman group exchange, start by
5082 * requesting a group.
e5574168 5083 */
d1aaf71d 5084 if (!ssh->kex->pdata) {
32874aea 5085 logevent("Doing Diffie-Hellman group exchange");
51470298 5086 ssh->pkt_ctx |= SSH2_PKTCTX_DHGEX;
32874aea 5087 /*
5088 * Work out how big a DH group we will need to allow that
5089 * much data.
7bd5a860 5090 */
51470298 5091 s->pbits = 512 << ((s->nbits - 1) / 64);
ff3187f6 5092 s->pktout = ssh2_pkt_init(SSH2_MSG_KEX_DH_GEX_REQUEST);
5093 ssh2_pkt_adduint32(s->pktout, s->pbits);
590f6a5f 5094 ssh2_pkt_send_noqueue(ssh, s->pktout);
32874aea 5095
ff3187f6 5096 crWaitUntil(pktin);
5097 if (pktin->type != SSH2_MSG_KEX_DH_GEX_GROUP) {
6b5cf8b4 5098 bombout(("expected key exchange group packet from server"));
7ffdbc1a 5099 crStop(0);
32874aea 5100 }
ff3187f6 5101 s->p = ssh2_pkt_getmp(pktin);
5102 s->g = ssh2_pkt_getmp(pktin);
5103 if (!s->p || !s->g) {
5104 bombout(("unable to read mp-ints from incoming group packet"));
5105 crStop(0);
5106 }
d1aaf71d 5107 ssh->kex_ctx = dh_setup_gex(s->p, s->g);
51470298 5108 s->kex_init_value = SSH2_MSG_KEX_DH_GEX_INIT;
5109 s->kex_reply_value = SSH2_MSG_KEX_DH_GEX_REPLY;
a92dd380 5110 } else {
d1aaf71d 5111 ssh->pkt_ctx |= SSH2_PKTCTX_DHGROUP;
5112 ssh->kex_ctx = dh_setup_group(ssh->kex);
51470298 5113 s->kex_init_value = SSH2_MSG_KEXDH_INIT;
5114 s->kex_reply_value = SSH2_MSG_KEXDH_REPLY;
d1aaf71d 5115 logeventf(ssh, "Using Diffie-Hellman with standard group \"%s\"",
5116 ssh->kex->groupname);
8d5de777 5117 }
e5574168 5118
a92dd380 5119 logevent("Doing Diffie-Hellman key exchange");
e5574168 5120 /*
a92dd380 5121 * Now generate and send e for Diffie-Hellman.
e5574168 5122 */
27cd7fc2 5123 s->e = dh_create_e(ssh->kex_ctx, s->nbits * 2);
ff3187f6 5124 s->pktout = ssh2_pkt_init(s->kex_init_value);
5125 ssh2_pkt_addmp(s->pktout, s->e);
590f6a5f 5126 ssh2_pkt_send_noqueue(ssh, s->pktout);
e5574168 5127
ff3187f6 5128 crWaitUntil(pktin);
5129 if (pktin->type != s->kex_reply_value) {
6b5cf8b4 5130 bombout(("expected key exchange reply packet from server"));
7ffdbc1a 5131 crStop(0);
7cca0d81 5132 }
ff3187f6 5133 ssh_pkt_getstring(pktin, &s->hostkeydata, &s->hostkeylen);
5134 s->f = ssh2_pkt_getmp(pktin);
5135 if (!s->f) {
5136 bombout(("unable to parse key exchange reply packet"));
5137 crStop(0);
5138 }
5139 ssh_pkt_getstring(pktin, &s->sigdata, &s->siglen);
e5574168 5140
27cd7fc2 5141 s->K = dh_find_K(ssh->kex_ctx, s->f);
e5574168 5142
51470298 5143 sha_string(&ssh->exhash, s->hostkeydata, s->hostkeylen);
5144 if (ssh->kex == &ssh_diffiehellman_gex) {
5145 sha_uint32(&ssh->exhash, s->pbits);
5146 sha_mpint(&ssh->exhash, s->p);
5147 sha_mpint(&ssh->exhash, s->g);
a92dd380 5148 }
51470298 5149 sha_mpint(&ssh->exhash, s->e);
5150 sha_mpint(&ssh->exhash, s->f);
5151 sha_mpint(&ssh->exhash, s->K);
5152 SHA_Final(&ssh->exhash, s->exchange_hash);
e5574168 5153
27cd7fc2 5154 dh_cleanup(ssh->kex_ctx);
fabd1805 5155 ssh->kex_ctx = NULL;
3709bfe9 5156
7cca0d81 5157#if 0
765c4200 5158 debug(("Exchange hash is:\n"));
51470298 5159 dmemdump(s->exchange_hash, 20);
7cca0d81 5160#endif
5161
51470298 5162 s->hkey = ssh->hostkey->newkey(s->hostkeydata, s->hostkeylen);
5163 if (!s->hkey ||
5164 !ssh->hostkey->verifysig(s->hkey, s->sigdata, s->siglen,
d8baa528 5165 (char *)s->exchange_hash, 20)) {
6b5cf8b4 5166 bombout(("Server's host key did not match the signature supplied"));
7ffdbc1a 5167 crStop(0);
8d5de777 5168 }
e5574168 5169
5170 /*
7cca0d81 5171 * Authenticate remote host: verify host key. (We've already
5172 * checked the signature of the exchange hash.)
e5574168 5173 */
51470298 5174 s->keystr = ssh->hostkey->fmtkey(s->hkey);
5175 s->fingerprint = ssh->hostkey->fingerprint(s->hkey);
bb348ab1 5176 sk_set_frozen(ssh->s, 1);
a8327734 5177 verify_ssh_host_key(ssh->frontend,
5178 ssh->savedhost, ssh->savedport, ssh->hostkey->keytype,
51470298 5179 s->keystr, s->fingerprint);
bb348ab1 5180 sk_set_frozen(ssh->s, 0);
e13bba36 5181 if (!s->got_session_id) { /* don't bother logging this in rekeys */
5e0d7cb8 5182 logevent("Host key fingerprint is:");
51470298 5183 logevent(s->fingerprint);
5e0d7cb8 5184 }
51470298 5185 sfree(s->fingerprint);
5186 sfree(s->keystr);
5187 ssh->hostkey->freekey(s->hkey);
d39f364a 5188
5189 /*
9442dd57 5190 * The exchange hash from the very first key exchange is also
5191 * the session id, used in session key construction and
5192 * authentication.
5193 */
e13bba36 5194 if (!s->got_session_id) {
9442dd57 5195 memcpy(ssh->v2_session_id, s->exchange_hash,
5196 sizeof(s->exchange_hash));
e13bba36 5197 s->got_session_id = TRUE;
5198 }
9442dd57 5199
5200 /*
7cca0d81 5201 * Send SSH2_MSG_NEWKEYS.
d39f364a 5202 */
ff3187f6 5203 s->pktout = ssh2_pkt_init(SSH2_MSG_NEWKEYS);
590f6a5f 5204 ssh2_pkt_send_noqueue(ssh, s->pktout);
9442dd57 5205 ssh->outgoing_data_size = 0; /* start counting from here */
5206
5207 /*
5208 * We've sent client NEWKEYS, so create and initialise
c64fe7d4 5209 * client-to-server session keys.
9442dd57 5210 */
5211 if (ssh->cs_cipher_ctx)
5212 ssh->cscipher->free_context(ssh->cs_cipher_ctx);
5213 ssh->cscipher = s->cscipher_tobe;
5214 ssh->cs_cipher_ctx = ssh->cscipher->make_context();
5215
5216 if (ssh->cs_mac_ctx)
5217 ssh->csmac->free_context(ssh->cs_mac_ctx);
5218 ssh->csmac = s->csmac_tobe;
5219 ssh->cs_mac_ctx = ssh->csmac->make_context();
5220
5221 if (ssh->cs_comp_ctx)
5222 ssh->cscomp->compress_cleanup(ssh->cs_comp_ctx);
5223 ssh->cscomp = s->cscomp_tobe;
5224 ssh->cs_comp_ctx = ssh->cscomp->compress_init();
5225
5226 /*
5227 * Set IVs on client-to-server keys. Here we use the exchange
5228 * hash from the _first_ key exchange.
5229 */
5230 {
5231 unsigned char keyspace[40];
5232 ssh2_mkkey(ssh,s->K,s->exchange_hash,ssh->v2_session_id,'C',keyspace);
5233 ssh->cscipher->setkey(ssh->cs_cipher_ctx, keyspace);
5234 ssh2_mkkey(ssh,s->K,s->exchange_hash,ssh->v2_session_id,'A',keyspace);
5235 ssh->cscipher->setiv(ssh->cs_cipher_ctx, keyspace);
5236 ssh2_mkkey(ssh,s->K,s->exchange_hash,ssh->v2_session_id,'E',keyspace);
5237 ssh->csmac->setkey(ssh->cs_mac_ctx, keyspace);
5238 }
5239
5240 logeventf(ssh, "Initialised %.200s client->server encryption",
5241 ssh->cscipher->text_name);
5242 logeventf(ssh, "Initialised %.200s client->server MAC algorithm",
5243 ssh->csmac->text_name);
5244 if (ssh->cscomp->text_name)
5245 logeventf(ssh, "Initialised %s compression",
5246 ssh->cscomp->text_name);
590f6a5f 5247
5248 /*
5249 * Now our end of the key exchange is complete, we can send all
5250 * our queued higher-layer packets.
5251 */
5252 ssh->queueing = FALSE;
5253 ssh2_pkt_queuesend(ssh);
d39f364a 5254
5255 /*
8406eaf9 5256 * Expect SSH2_MSG_NEWKEYS from server.
5257 */
ff3187f6 5258 crWaitUntil(pktin);
5259 if (pktin->type != SSH2_MSG_NEWKEYS) {
6b5cf8b4 5260 bombout(("expected new-keys packet from server"));
7ffdbc1a 5261 crStop(0);
8406eaf9 5262 }
9442dd57 5263 ssh->incoming_data_size = 0; /* start counting from here */
8406eaf9 5264
5265 /*
9442dd57 5266 * We've seen server NEWKEYS, so create and initialise
5267 * server-to-client session keys.
d39f364a 5268 */
371e569c 5269 if (ssh->sc_cipher_ctx)
5270 ssh->sccipher->free_context(ssh->sc_cipher_ctx);
51470298 5271 ssh->sccipher = s->sccipher_tobe;
371e569c 5272 ssh->sc_cipher_ctx = ssh->sccipher->make_context();
e0e1a00d 5273
e0e1a00d 5274 if (ssh->sc_mac_ctx)
5275 ssh->scmac->free_context(ssh->sc_mac_ctx);
51470298 5276 ssh->scmac = s->scmac_tobe;
e0e1a00d 5277 ssh->sc_mac_ctx = ssh->scmac->make_context();
5278
5366aed8 5279 if (ssh->sc_comp_ctx)
5280 ssh->sccomp->decompress_cleanup(ssh->sc_comp_ctx);
51470298 5281 ssh->sccomp = s->sccomp_tobe;
5366aed8 5282 ssh->sc_comp_ctx = ssh->sccomp->decompress_init();
5283
d39f364a 5284 /*
9442dd57 5285 * Set IVs on server-to-client keys. Here we use the exchange
5286 * hash from the _first_ key exchange.
d39f364a 5287 */
51470298 5288 {
5289 unsigned char keyspace[40];
51470298 5290 ssh2_mkkey(ssh,s->K,s->exchange_hash,ssh->v2_session_id,'D',keyspace);
371e569c 5291 ssh->sccipher->setkey(ssh->sc_cipher_ctx, keyspace);
51470298 5292 ssh2_mkkey(ssh,s->K,s->exchange_hash,ssh->v2_session_id,'B',keyspace);
371e569c 5293 ssh->sccipher->setiv(ssh->sc_cipher_ctx, keyspace);
51470298 5294 ssh2_mkkey(ssh,s->K,s->exchange_hash,ssh->v2_session_id,'F',keyspace);
e0e1a00d 5295 ssh->scmac->setkey(ssh->sc_mac_ctx, keyspace);
51470298 5296 }
57356d63 5297 logeventf(ssh, "Initialised %.200s server->client encryption",
5298 ssh->sccipher->text_name);
6c135243 5299 logeventf(ssh, "Initialised %.200s server->client MAC algorithm",
5300 ssh->scmac->text_name);
57356d63 5301 if (ssh->sccomp->text_name)
5302 logeventf(ssh, "Initialised %s decompression",
5303 ssh->sccomp->text_name);
9442dd57 5304
5305 /*
5306 * Free key exchange data.
5307 */
679539d7 5308 freebn(s->f);
679539d7 5309 freebn(s->K);
b3949e7e 5310 if (ssh->kex == &ssh_diffiehellman_gex) {
5311 freebn(s->g);
5312 freebn(s->p);
5313 }
d39f364a 5314
033b4cef 5315 /*
e13bba36 5316 * Key exchange is over. Loop straight back round if we have a
5317 * deferred rekey reason.
5318 */
5319 if (ssh->deferred_rekey_reason) {
5320 logevent(ssh->deferred_rekey_reason);
5321 pktin = NULL;
5322 ssh->deferred_rekey_reason = NULL;
5323 goto begin_key_exchange;
5324 }
5325
5326 /*
5327 * Otherwise, schedule a timer for our next rekey.
9442dd57 5328 */
5329 ssh->kex_in_progress = FALSE;
e6c1536e 5330 ssh->last_rekey = GETTICKCOUNT();
d57f70af 5331 if (ssh->cfg.ssh_rekey_time != 0)
5332 ssh->next_rekey = schedule_timer(ssh->cfg.ssh_rekey_time*60*TICKSPERSEC,
5333 ssh2_timer, ssh);
e13bba36 5334
9442dd57 5335 /*
0db56f73 5336 * If this is the first key exchange phase, we must pass the
5337 * SSH2_MSG_NEWKEYS packet to the next layer, not because it
5338 * wants to see it but because it will need time to initialise
5339 * itself before it sees an actual packet. In subsequent key
5340 * exchange phases, we don't pass SSH2_MSG_NEWKEYS on, because
5341 * it would only confuse the layer above.
5342 */
e13bba36 5343 if (s->activated_authconn) {
b09eaa88 5344 crReturn(1);
0db56f73 5345 }
e13bba36 5346 s->activated_authconn = TRUE;
0db56f73 5347
5348 /*
7cca0d81 5349 * Now we're encrypting. Begin returning 1 to the protocol main
5350 * function so that other things can run on top of the
5351 * transport. If we ever see a KEXINIT, we must go back to the
5352 * start.
9442dd57 5353 *
5354 * We _also_ go back to the start if we see pktin==NULL and
5355 * inlen==-1, because this is a special signal meaning
5356 * `initiate client-driven rekey', and `in' contains a message
5357 * giving the reason for the rekey.
033b4cef 5358 */
9442dd57 5359 while (!((pktin && pktin->type == SSH2_MSG_KEXINIT) ||
5360 (!pktin && inlen == -1))) {
f382c87d 5361 wait_for_rekey:
32874aea 5362 crReturn(1);
e96adf72 5363 }
9442dd57 5364 if (pktin) {
5365 logevent("Server initiated key re-exchange");
5366 } else {
f382c87d 5367 /*
5368 * Special case: if the server bug is set that doesn't
5369 * allow rekeying, we give a different log message and
5370 * continue waiting. (If such a server _initiates_ a rekey,
5371 * we process it anyway!)
5372 */
5373 if ((ssh->remote_bugs & BUG_SSH2_REKEY)) {
5374 logeventf(ssh, "Server bug prevents key re-exchange (%s)",
5375 (char *)in);
5376 /* Reset the counters, so that at least this message doesn't
5377 * hit the event log _too_ often. */
5378 ssh->outgoing_data_size = 0;
5379 ssh->incoming_data_size = 0;
5380 if (ssh->cfg.ssh_rekey_time != 0) {
5381 ssh->next_rekey =
5382 schedule_timer(ssh->cfg.ssh_rekey_time*60*TICKSPERSEC,
5383 ssh2_timer, ssh);
5384 }
5385 goto wait_for_rekey; /* this is utterly horrid */
5386 } else {
5387 logeventf(ssh, "Initiating key re-exchange (%s)", (char *)in);
f382c87d 5388 }
9442dd57 5389 }
7cca0d81 5390 goto begin_key_exchange;
e5574168 5391
5392 crFinish(1);
5393}
5394
7cca0d81 5395/*
783415f8 5396 * Add data to an SSH2 channel output buffer.
5397 */
32874aea 5398static void ssh2_add_channel_data(struct ssh_channel *c, char *buf,
5399 int len)
5400{
5471d09a 5401 bufchain_add(&c->v.v2.outbuffer, buf, len);
783415f8 5402}
5403
5404/*
5405 * Attempt to send data on an SSH2 channel.
5406 */
5471d09a 5407static int ssh2_try_send(struct ssh_channel *c)
32874aea 5408{
51470298 5409 Ssh ssh = c->ssh;
ff3187f6 5410 struct Packet *pktout;
51470298 5411
5471d09a 5412 while (c->v.v2.remwindow > 0 && bufchain_size(&c->v.v2.outbuffer) > 0) {
5413 int len;
5414 void *data;
5415 bufchain_prefix(&c->v.v2.outbuffer, &data, &len);
5416 if ((unsigned)len > c->v.v2.remwindow)
5417 len = c->v.v2.remwindow;
5418 if ((unsigned)len > c->v.v2.remmaxpkt)
5419 len = c->v.v2.remmaxpkt;
ff3187f6 5420 pktout = ssh2_pkt_init(SSH2_MSG_CHANNEL_DATA);
5421 ssh2_pkt_adduint32(pktout, c->remoteid);
5422 dont_log_data(ssh, pktout, PKTLOG_OMIT);
5423 ssh2_pkt_addstring_start(pktout);
5424 ssh2_pkt_addstring_data(pktout, data, len);
5425 end_log_omission(ssh, pktout);
5426 ssh2_pkt_send(ssh, pktout);
5471d09a 5427 bufchain_consume(&c->v.v2.outbuffer, len);
5428 c->v.v2.remwindow -= len;
5429 }
5430
5431 /*
5432 * After having sent as much data as we can, return the amount
5433 * still buffered.
5434 */
5435 return bufchain_size(&c->v.v2.outbuffer);
5436}
5437
5438/*
5439 * Potentially enlarge the window on an SSH2 channel.
5440 */
5441static void ssh2_set_window(struct ssh_channel *c, unsigned newwin)
5442{
51470298 5443 Ssh ssh = c->ssh;
5444
6b69f42e 5445 /*
5446 * Never send WINDOW_ADJUST for a channel that the remote side
5447 * already thinks it's closed; there's no point, since it won't
5448 * be sending any more data anyway.
5449 */
5450 if (c->closes != 0)
5451 return;
5452
d252310a 5453 /*
5454 * Only send a WINDOW_ADJUST if there's significantly more window
5455 * available than the other end thinks there is. This saves us
5456 * sending a WINDOW_ADJUST for every character in a shell session.
5457 *
5458 * "Significant" is arbitrarily defined as half the window size.
5459 */
5460 if (newwin > c->v.v2.locwindow * 2) {
ff3187f6 5461 struct Packet *pktout;
5462
5463 pktout = ssh2_pkt_init(SSH2_MSG_CHANNEL_WINDOW_ADJUST);
5464 ssh2_pkt_adduint32(pktout, c->remoteid);
5465 ssh2_pkt_adduint32(pktout, newwin - c->v.v2.locwindow);
5466 ssh2_pkt_send(ssh, pktout);
5471d09a 5467 c->v.v2.locwindow = newwin;
783415f8 5468 }
5469}
5470
51df0ab5 5471static void ssh2_msg_channel_window_adjust(Ssh ssh, struct Packet *pktin)
b09eaa88 5472{
5473 unsigned i = ssh_pkt_getuint32(pktin);
5474 struct ssh_channel *c;
5475 c = find234(ssh->channels, &i, ssh_channelfind);
5476 if (c && !c->closes)
5477 c->v.v2.remwindow += ssh_pkt_getuint32(pktin);
5478}
5479
51df0ab5 5480static void ssh2_msg_channel_data(Ssh ssh, struct Packet *pktin)
5481{
5482 char *data;
aa63ab7e 5483 unsigned int length;
51df0ab5 5484 unsigned i = ssh_pkt_getuint32(pktin);
5485 struct ssh_channel *c;
5486 c = find234(ssh->channels, &i, ssh_channelfind);
5487 if (!c)
5488 return; /* nonexistent channel */
5489 if (pktin->type == SSH2_MSG_CHANNEL_EXTENDED_DATA &&
5490 ssh_pkt_getuint32(pktin) != SSH2_EXTENDED_DATA_STDERR)
5491 return; /* extended but not stderr */
5492 ssh_pkt_getstring(pktin, &data, &length);
5493 if (data) {
5494 int bufsize = 0;
5495 c->v.v2.locwindow -= length;
5496 switch (c->type) {
5497 case CHAN_MAINSESSION:
5498 bufsize =
5499 from_backend(ssh->frontend, pktin->type ==
5500 SSH2_MSG_CHANNEL_EXTENDED_DATA,
5501 data, length);
5502 break;
5503 case CHAN_X11:
5504 bufsize = x11_send(c->u.x11.s, data, length);
5505 break;
5506 case CHAN_SOCKDATA:
5507 bufsize = pfd_send(c->u.pfd.s, data, length);
5508 break;
5509 case CHAN_AGENT:
5510 while (length > 0) {
5511 if (c->u.a.lensofar < 4) {
aa63ab7e 5512 unsigned int l = min(4 - c->u.a.lensofar, length);
51df0ab5 5513 memcpy(c->u.a.msglen + c->u.a.lensofar,
5514 data, l);
5515 data += l;
5516 length -= l;
5517 c->u.a.lensofar += l;
5518 }
5519 if (c->u.a.lensofar == 4) {
5520 c->u.a.totallen =
5521 4 + GET_32BIT(c->u.a.msglen);
5522 c->u.a.message = snewn(c->u.a.totallen,
5523 unsigned char);
5524 memcpy(c->u.a.message, c->u.a.msglen, 4);
5525 }
5526 if (c->u.a.lensofar >= 4 && length > 0) {
aa63ab7e 5527 unsigned int l =
51df0ab5 5528 min(c->u.a.totallen - c->u.a.lensofar,
5529 length);
5530 memcpy(c->u.a.message + c->u.a.lensofar,
5531 data, l);
5532 data += l;
5533 length -= l;
5534 c->u.a.lensofar += l;
5535 }
5536 if (c->u.a.lensofar == c->u.a.totallen) {
5537 void *reply;
5538 int replylen;
5539 if (agent_query(c->u.a.message,
5540 c->u.a.totallen,
5541 &reply, &replylen,
5542 ssh_agentf_callback, c))
5543 ssh_agentf_callback(c, reply, replylen);
5544 sfree(c->u.a.message);
5545 c->u.a.lensofar = 0;
5546 }
5547 }
5548 bufsize = 0;
5549 break;
5550 }
5551 /*
5552 * If we are not buffering too much data,
5553 * enlarge the window again at the remote side.
5554 */
5555 if (bufsize < OUR_V2_WINSIZE)
5556 ssh2_set_window(c, OUR_V2_WINSIZE - bufsize);
5557 }
5558}
5559
5560static void ssh2_msg_channel_eof(Ssh ssh, struct Packet *pktin)
5561{
5562 unsigned i = ssh_pkt_getuint32(pktin);
5563 struct ssh_channel *c;
5564
5565 c = find234(ssh->channels, &i, ssh_channelfind);
5566 if (!c)
5567 return; /* nonexistent channel */
5568
5569 if (c->type == CHAN_X11) {
5570 /*
5571 * Remote EOF on an X11 channel means we should
5572 * wrap up and close the channel ourselves.
5573 */
5574 x11_close(c->u.x11.s);
5575 sshfwd_close(c);
5576 } else if (c->type == CHAN_AGENT) {
5577 sshfwd_close(c);
5578 } else if (c->type == CHAN_SOCKDATA) {
5579 pfd_close(c->u.pfd.s);
5580 sshfwd_close(c);
5581 }
5582}
5583
5584static void ssh2_msg_channel_close(Ssh ssh, struct Packet *pktin)
5585{
5586 unsigned i = ssh_pkt_getuint32(pktin);
5587 struct ssh_channel *c;
5588 struct Packet *pktout;
5589
5590 c = find234(ssh->channels, &i, ssh_channelfind);
5591 if (!c || ((int)c->remoteid) == -1) {
5592 bombout(("Received CHANNEL_CLOSE for %s channel %d\n",
5593 c ? "half-open" : "nonexistent", i));
5594 return;
5595 }
5596 /* Do pre-close processing on the channel. */
5597 switch (c->type) {
5598 case CHAN_MAINSESSION:
5599 ssh->mainchan = NULL;
5600 update_specials_menu(ssh->frontend);
5601 break;
5602 case CHAN_X11:
5603 if (c->u.x11.s != NULL)
5604 x11_close(c->u.x11.s);
5605 sshfwd_close(c);
5606 break;
5607 case CHAN_AGENT:
5608 sshfwd_close(c);
5609 break;
5610 case CHAN_SOCKDATA:
5611 if (c->u.pfd.s != NULL)
5612 pfd_close(c->u.pfd.s);
5613 sshfwd_close(c);
5614 break;
5615 }
5616 if (c->closes == 0) {
5617 pktout = ssh2_pkt_init(SSH2_MSG_CHANNEL_CLOSE);
5618 ssh2_pkt_adduint32(pktout, c->remoteid);
5619 ssh2_pkt_send(ssh, pktout);
5620 }
5621 del234(ssh->channels, c);
5622 bufchain_clear(&c->v.v2.outbuffer);
5623 sfree(c);
5624
5625 /*
5626 * See if that was the last channel left open.
5627 * (This is only our termination condition if we're
5628 * not running in -N mode.)
5629 */
5630 if (!ssh->cfg.ssh_no_shell && count234(ssh->channels) == 0) {
5631 logevent("All channels closed. Disconnecting");
5632#if 0
5633 /*
5634 * We used to send SSH_MSG_DISCONNECT here,
5635 * because I'd believed that _every_ conforming
5636 * SSH2 connection had to end with a disconnect
5637 * being sent by at least one side; apparently
5638 * I was wrong and it's perfectly OK to
5639 * unceremoniously slam the connection shut
5640 * when you're done, and indeed OpenSSH feels
5641 * this is more polite than sending a
5642 * DISCONNECT. So now we don't.
5643 */
5644 s->pktout = ssh2_pkt_init(SSH2_MSG_DISCONNECT);
5645 ssh2_pkt_adduint32(s->pktout, SSH2_DISCONNECT_BY_APPLICATION);
5646 ssh2_pkt_addstring(s->pktout, "All open channels closed");
5647 ssh2_pkt_addstring(s->pktout, "en"); /* language tag */
5648 ssh2_pkt_send_noqueue(ssh, s->pktout);
5649#endif
ac934965 5650 ssh->close_expected = TRUE;
51df0ab5 5651 ssh_closing((Plug)ssh, NULL, 0, 0);
5652 }
5653}
5654
5655static void ssh2_msg_channel_open_confirmation(Ssh ssh, struct Packet *pktin)
5656{
5657 unsigned i = ssh_pkt_getuint32(pktin);
5658 struct ssh_channel *c;
5659 struct Packet *pktout;
5660
5661 c = find234(ssh->channels, &i, ssh_channelfind);
5662 if (!c)
5663 return; /* nonexistent channel */
5664 if (c->type != CHAN_SOCKDATA_DORMANT)
5665 return; /* dunno why they're confirming this */
5666 c->remoteid = ssh_pkt_getuint32(pktin);
5667 c->type = CHAN_SOCKDATA;
5668 c->v.v2.remwindow = ssh_pkt_getuint32(pktin);
5669 c->v.v2.remmaxpkt = ssh_pkt_getuint32(pktin);
5670 if (c->u.pfd.s)
5671 pfd_confirm(c->u.pfd.s);
5672 if (c->closes) {
5673 /*
5674 * We have a pending close on this channel,
5675 * which we decided on before the server acked
5676 * the channel open. So now we know the
5677 * remoteid, we can close it again.
5678 */
5679 pktout = ssh2_pkt_init(SSH2_MSG_CHANNEL_CLOSE);
5680 ssh2_pkt_adduint32(pktout, c->remoteid);
5681 ssh2_pkt_send(ssh, pktout);
5682 }
5683}
5684
5685static void ssh2_msg_channel_open_failure(Ssh ssh, struct Packet *pktin)
5686{
5687 static const char *const reasons[] = {
5688 "<unknown reason code>",
5689 "Administratively prohibited",
5690 "Connect failed",
5691 "Unknown channel type",
5692 "Resource shortage",
5693 };
5694 unsigned i = ssh_pkt_getuint32(pktin);
5695 unsigned reason_code;
5696 char *reason_string;
5697 int reason_length;
5698 char *message;
5699 struct ssh_channel *c;
5700 c = find234(ssh->channels, &i, ssh_channelfind);
5701 if (!c)
5702 return; /* nonexistent channel */
5703 if (c->type != CHAN_SOCKDATA_DORMANT)
5704 return; /* dunno why they're failing this */
5705
5706 reason_code = ssh_pkt_getuint32(pktin);
5707 if (reason_code >= lenof(reasons))
5708 reason_code = 0; /* ensure reasons[reason_code] in range */
5709 ssh_pkt_getstring(pktin, &reason_string, &reason_length);
5710 message = dupprintf("Forwarded connection refused by"
5711 " server: %s [%.*s]", reasons[reason_code],
5712 reason_length, reason_string);
5713 logevent(message);
5714 sfree(message);
5715
5716 pfd_close(c->u.pfd.s);
5717
5718 del234(ssh->channels, c);
5719 sfree(c);
5720}
5721
5722static void ssh2_msg_channel_request(Ssh ssh, struct Packet *pktin)
5723{
5724 unsigned localid;
5725 char *type;
5726 int typelen, want_reply;
5727 int reply = SSH2_MSG_CHANNEL_FAILURE; /* default */
5728 struct ssh_channel *c;
5729 struct Packet *pktout;
5730
5731 localid = ssh_pkt_getuint32(pktin);
5732 ssh_pkt_getstring(pktin, &type, &typelen);
5733 want_reply = ssh2_pkt_getbool(pktin);
5734
5735 /*
5736 * First, check that the channel exists. Otherwise,
5737 * we can instantly disconnect with a rude message.
5738 */
5739 c = find234(ssh->channels, &localid, ssh_channelfind);
5740 if (!c) {
5741 char buf[80];
5742 sprintf(buf, "Received channel request for nonexistent"
5743 " channel %d", localid);
5744 logevent(buf);
5745 pktout = ssh2_pkt_init(SSH2_MSG_DISCONNECT);
5746 ssh2_pkt_adduint32(pktout, SSH2_DISCONNECT_BY_APPLICATION);
5747 ssh2_pkt_addstring(pktout, buf);
5748 ssh2_pkt_addstring(pktout, "en"); /* language tag */
5749 ssh2_pkt_send_noqueue(ssh, pktout);
5750 connection_fatal(ssh->frontend, "%s", buf);
ac934965 5751 ssh->close_expected = TRUE;
51df0ab5 5752 ssh_closing((Plug)ssh, NULL, 0, 0);
5753 return;
5754 }
5755
5756 /*
5757 * Having got the channel number, we now look at
5758 * the request type string to see if it's something
5759 * we recognise.
5760 */
5761 if (c == ssh->mainchan) {
5762 /*
5763 * We recognise "exit-status" and "exit-signal" on
5764 * the primary channel.
5765 */
5766 if (typelen == 11 &&
5767 !memcmp(type, "exit-status", 11)) {
5768
5769 ssh->exitcode = ssh_pkt_getuint32(pktin);
5770 logeventf(ssh, "Server sent command exit status %d",
5771 ssh->exitcode);
5772 reply = SSH2_MSG_CHANNEL_SUCCESS;
5773
5774 } else if (typelen == 11 &&
5775 !memcmp(type, "exit-signal", 11)) {
5776
5777 int is_plausible = TRUE, is_int = FALSE;
5778 char *fmt_sig = "", *fmt_msg = "";
5779 char *msg;
5780 int msglen = 0, core = FALSE;
5781 /* ICK: older versions of OpenSSH (e.g. 3.4p1)
5782 * provide an `int' for the signal, despite its
5783 * having been a `string' in the drafts since at
5784 * least 2001. (Fixed in session.c 1.147.) Try to
5785 * infer which we can safely parse it as. */
5786 {
5787 unsigned char *p = pktin->body +
5788 pktin->savedpos;
5789 long len = pktin->length - pktin->savedpos;
5790 unsigned long num = GET_32BIT(p); /* what is it? */
5791 /* If it's 0, it hardly matters; assume string */
5792 if (num == 0) {
5793 is_int = FALSE;
5794 } else {
5795 int maybe_int = FALSE, maybe_str = FALSE;
5796#define CHECK_HYPOTHESIS(offset, result) \
5797 do { \
5798 long q = offset; \
5799 if (q >= 0 && q+4 <= len) { \
5800 q = q + 4 + GET_32BIT(p+q); \
5801 if (q >= 0 && q+4 <= len && \
5802 (q = q + 4 + GET_32BIT(p+q)) && q == len) \
5803 result = TRUE; \
5804 } \
5805 } while(0)
5806 CHECK_HYPOTHESIS(4+1, maybe_int);
5807 CHECK_HYPOTHESIS(4+num+1, maybe_str);
5808#undef CHECK_HYPOTHESIS
5809 if (maybe_int && !maybe_str)
5810 is_int = TRUE;
5811 else if (!maybe_int && maybe_str)
5812 is_int = FALSE;
5813 else
5814 /* Crikey. Either or neither. Panic. */
5815 is_plausible = FALSE;
5816 }
5817 }
5818 if (is_plausible) {
5819 if (is_int) {
5820 /* Old non-standard OpenSSH. */
5821 int signum = ssh_pkt_getuint32(pktin);
5822 fmt_sig = dupprintf(" %d", signum);
5823 } else {
5824 /* As per the drafts. */
5825 char *sig;
5826 int siglen;
5827 ssh_pkt_getstring(pktin, &sig, &siglen);
5828 /* Signal name isn't supposed to be blank, but
5829 * let's cope gracefully if it is. */
5830 if (siglen) {
5831 fmt_sig = dupprintf(" \"%.*s\"",
5832 siglen, sig);
5833 }
5834 }
5835 core = ssh2_pkt_getbool(pktin);
5836 ssh_pkt_getstring(pktin, &msg, &msglen);
5837 if (msglen) {
5838 fmt_msg = dupprintf(" (\"%.*s\")", msglen, msg);
5839 }
5840 /* ignore lang tag */
5841 } /* else don't attempt to parse */
5842 logeventf(ssh, "Server exited on signal%s%s%s",
5843 fmt_sig, core ? " (core dumped)" : "",
5844 fmt_msg);
5845 if (*fmt_sig) sfree(fmt_sig);
5846 if (*fmt_msg) sfree(fmt_msg);
5847 reply = SSH2_MSG_CHANNEL_SUCCESS;
5848
5849 }
5850 } else {
5851 /*
5852 * This is a channel request we don't know
5853 * about, so we now either ignore the request
5854 * or respond with CHANNEL_FAILURE, depending
5855 * on want_reply.
5856 */
5857 reply = SSH2_MSG_CHANNEL_FAILURE;
5858 }
5859 if (want_reply) {
5860 pktout = ssh2_pkt_init(reply);
5861 ssh2_pkt_adduint32(pktout, c->remoteid);
5862 ssh2_pkt_send(ssh, pktout);
5863 }
5864}
5865
5866static void ssh2_msg_global_request(Ssh ssh, struct Packet *pktin)
5867{
5868 char *type;
5869 int typelen, want_reply;
5870 struct Packet *pktout;
5871
5872 ssh_pkt_getstring(pktin, &type, &typelen);
5873 want_reply = ssh2_pkt_getbool(pktin);
5874
5875 /*
5876 * We currently don't support any global requests
5877 * at all, so we either ignore the request or
5878 * respond with REQUEST_FAILURE, depending on
5879 * want_reply.
5880 */
5881 if (want_reply) {
5882 pktout = ssh2_pkt_init(SSH2_MSG_REQUEST_FAILURE);
5883 ssh2_pkt_send(ssh, pktout);
5884 }
5885}
5886
5887static void ssh2_msg_channel_open(Ssh ssh, struct Packet *pktin)
5888{
5889 char *type;
5890 int typelen;
5891 char *peeraddr;
5892 int peeraddrlen;
5893 int peerport;
5894 char *error = NULL;
5895 struct ssh_channel *c;
5896 unsigned remid, winsize, pktsize;
5897 struct Packet *pktout;
5898
5899 ssh_pkt_getstring(pktin, &type, &typelen);
5900 c = snew(struct ssh_channel);
5901 c->ssh = ssh;
5902
5903 remid = ssh_pkt_getuint32(pktin);
5904 winsize = ssh_pkt_getuint32(pktin);
5905 pktsize = ssh_pkt_getuint32(pktin);
5906
5907 if (typelen == 3 && !memcmp(type, "x11", 3)) {
5908 char *addrstr;
5909
5910 ssh_pkt_getstring(pktin, &peeraddr, &peeraddrlen);
5911 addrstr = snewn(peeraddrlen+1, char);
5912 memcpy(addrstr, peeraddr, peeraddrlen);
5913 addrstr[peeraddrlen] = '\0';
5914 peerport = ssh_pkt_getuint32(pktin);
5915
5916 logeventf(ssh, "Received X11 connect request from %s:%d",
5917 addrstr, peerport);
5918
5919 if (!ssh->X11_fwd_enabled)
5920 error = "X11 forwarding is not enabled";
5921 else if (x11_init(&c->u.x11.s, ssh->cfg.x11_display, c,
5922 ssh->x11auth, addrstr, peerport,
5923 &ssh->cfg) != NULL) {
5924 error = "Unable to open an X11 connection";
5925 } else {
5926 logevent("Opening X11 forward connection succeeded");
5927 c->type = CHAN_X11;
5928 }
5929
5930 sfree(addrstr);
5931 } else if (typelen == 15 &&
5932 !memcmp(type, "forwarded-tcpip", 15)) {
5933 struct ssh_rportfwd pf, *realpf;
5934 char *dummy;
5935 int dummylen;
5936 ssh_pkt_getstring(pktin, &dummy, &dummylen);/* skip address */
5937 pf.sport = ssh_pkt_getuint32(pktin);
5938 ssh_pkt_getstring(pktin, &peeraddr, &peeraddrlen);
5939 peerport = ssh_pkt_getuint32(pktin);
5940 realpf = find234(ssh->rportfwds, &pf, NULL);
5941 logeventf(ssh, "Received remote port %d open request "
5942 "from %s:%d", pf.sport, peeraddr, peerport);
5943 if (realpf == NULL) {
5944 error = "Remote port is not recognised";
5945 } else {
5946 const char *e = pfd_newconnect(&c->u.pfd.s,
5947 realpf->dhost,
5948 realpf->dport, c,
05581745 5949 &ssh->cfg,
5950 realpf->pfrec->addressfamily);
51df0ab5 5951 logeventf(ssh, "Attempting to forward remote port to "
5952 "%s:%d", realpf->dhost, realpf->dport);
5953 if (e != NULL) {
5954 logeventf(ssh, "Port open failed: %s", e);
5955 error = "Port open failed";
5956 } else {
5957 logevent("Forwarded port opened successfully");
5958 c->type = CHAN_SOCKDATA;
5959 }
5960 }
5961 } else if (typelen == 22 &&
5962 !memcmp(type, "auth-agent@openssh.com", 3)) {
5963 if (!ssh->agentfwd_enabled)
5964 error = "Agent forwarding is not enabled";
5965 else {
5966 c->type = CHAN_AGENT; /* identify channel type */
5967 c->u.a.lensofar = 0;
5968 }
5969 } else {
5970 error = "Unsupported channel type requested";
5971 }
5972
5973 c->remoteid = remid;
5974 if (error) {
5975 pktout = ssh2_pkt_init(SSH2_MSG_CHANNEL_OPEN_FAILURE);
5976 ssh2_pkt_adduint32(pktout, c->remoteid);
5977 ssh2_pkt_adduint32(pktout, SSH2_OPEN_CONNECT_FAILED);
5978 ssh2_pkt_addstring(pktout, error);
5979 ssh2_pkt_addstring(pktout, "en"); /* language tag */
5980 ssh2_pkt_send(ssh, pktout);
5981 logeventf(ssh, "Rejected channel open: %s", error);
5982 sfree(c);
5983 } else {
5984 c->localid = alloc_channel_id(ssh);
5985 c->closes = 0;
5986 c->v.v2.locwindow = OUR_V2_WINSIZE;
5987 c->v.v2.remwindow = winsize;
5988 c->v.v2.remmaxpkt = pktsize;
5989 bufchain_init(&c->v.v2.outbuffer);
5990 add234(ssh->channels, c);
5991 pktout = ssh2_pkt_init(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION);
5992 ssh2_pkt_adduint32(pktout, c->remoteid);
5993 ssh2_pkt_adduint32(pktout, c->localid);
5994 ssh2_pkt_adduint32(pktout, c->v.v2.locwindow);
954d5c5a 5995 ssh2_pkt_adduint32(pktout, OUR_V2_MAXPKT); /* our max pkt size */
51df0ab5 5996 ssh2_pkt_send(ssh, pktout);
5997 }
5998}
5999
783415f8 6000/*
7cca0d81 6001 * Handle the SSH2 userauth and connection layers.
6002 */
ff3187f6 6003static void do_ssh2_authconn(Ssh ssh, unsigned char *in, int inlen,
6004 struct Packet *pktin)
7cca0d81 6005{
51470298 6006 struct do_ssh2_authconn_state {
6007 enum {
6008 AUTH_INVALID, AUTH_PUBLICKEY_AGENT, AUTH_PUBLICKEY_FILE,
6009 AUTH_PASSWORD,
6010 AUTH_KEYBOARD_INTERACTIVE
6011 } method;
6012 enum {
6013 AUTH_TYPE_NONE,
6014 AUTH_TYPE_PUBLICKEY,
6015 AUTH_TYPE_PUBLICKEY_OFFER_LOUD,
6016 AUTH_TYPE_PUBLICKEY_OFFER_QUIET,
6017 AUTH_TYPE_PASSWORD,
6018 AUTH_TYPE_KEYBOARD_INTERACTIVE,
6019 AUTH_TYPE_KEYBOARD_INTERACTIVE_QUIET
6020 } type;
6021 int gotit, need_pw, can_pubkey, can_passwd, can_keyb_inter;
6ac3a551 6022 int tried_pubkey_config, tried_agent;
6023 int kbd_inter_running, kbd_inter_refused;
51470298 6024 int we_are_in;
6025 int num_prompts, curr_prompt, echo;
6026 char username[100];
6027 int got_username;
85fdbe25 6028 char pwprompt[512];
51470298 6029 char password[100];
6030 void *publickey_blob;
6031 int publickey_bloblen;
6032 unsigned char request[5], *response, *p;
6033 int responselen;
6034 int keyi, nkeys;
6035 int authed;
6036 char *pkblob, *alg, *commentp;
6037 int pklen, alglen, commentlen;
6038 int siglen, retlen, len;
6039 char *q, *agentreq, *ret;
6040 int try_send;
73feed4f 6041 int num_env, env_left, env_ok;
ff3187f6 6042 struct Packet *pktout;
51470298 6043 };
6044 crState(do_ssh2_authconn_state);
6045
6046 crBegin(ssh->do_ssh2_authconn_crstate);
e5574168 6047
7cca0d81 6048 /*
6049 * Request userauth protocol, and await a response to it.
6050 */
ff3187f6 6051 s->pktout = ssh2_pkt_init(SSH2_MSG_SERVICE_REQUEST);
6052 ssh2_pkt_addstring(s->pktout, "ssh-userauth");
6053 ssh2_pkt_send(ssh, s->pktout);
6054 crWaitUntilV(pktin);
6055 if (pktin->type != SSH2_MSG_SERVICE_ACCEPT) {
6b5cf8b4 6056 bombout(("Server refused user authentication protocol"));
7ffdbc1a 6057 crStopV;
8d5de777 6058 }
7cca0d81 6059
6060 /*
1408a877 6061 * We repeat this whole loop, including the username prompt,
6062 * until we manage a successful authentication. If the user
51470298 6063 * types the wrong _password_, they can be sent back to the
6064 * beginning to try another username, if this is configured on.
6065 * (If they specify a username in the config, they are never
6066 * asked, even if they do give a wrong password.)
1408a877 6067 *
6068 * I think this best serves the needs of
6069 *
6070 * - the people who have no configuration, no keys, and just
6071 * want to try repeated (username,password) pairs until they
6072 * type both correctly
6073 *
6074 * - people who have keys and configuration but occasionally
6075 * need to fall back to passwords
6076 *
6077 * - people with a key held in Pageant, who might not have
6078 * logged in to a particular machine before; so they want to
6079 * type a username, and then _either_ their key will be
6080 * accepted, _or_ they will type a password. If they mistype
6081 * the username they will want to be able to get back and
6082 * retype it!
7cca0d81 6083 */
51470298 6084 s->username[0] = '\0';
6085 s->got_username = FALSE;
1408a877 6086 do {
1408a877 6087 /*
6088 * Get a username.
6089 */
86916870 6090 if (s->got_username && !ssh->cfg.change_username) {
5bb641e1 6091 /*
6092 * We got a username last time round this loop, and
6093 * with change_username turned off we don't try to get
6094 * it again.
6095 */
aa09f7d0 6096 } else if (!*ssh->cfg.username) {
c0a81592 6097 if (ssh_get_line && !ssh_getline_pw_only) {
32874aea 6098 if (!ssh_get_line("login as: ",
51470298 6099 s->username, sizeof(s->username), FALSE)) {
32874aea 6100 /*
6101 * get_line failed to get a username.
6102 * Terminate.
6103 */
6104 logevent("No username provided. Abandoning session.");
ac934965 6105 ssh->close_expected = TRUE;
3bb2f322 6106 ssh_closing((Plug)ssh, NULL, 0, 0);
7ffdbc1a 6107 crStopV;
32874aea 6108 }
6109 } else {
51470298 6110 int ret; /* need not be saved across crReturn */
6111 c_write_str(ssh, "login as: ");
6112 ssh->send_ok = 1;
6113 setup_userpass_input(ssh, s->username, sizeof(s->username), 1);
0405e71f 6114 do {
ff3187f6 6115 crWaitUntilV(!pktin);
51470298 6116 ret = process_userpass_input(ssh, in, inlen);
0405e71f 6117 } while (ret == 0);
6118 if (ret < 0)
6119 cleanup_exit(0);
4ca0c9d1 6120 c_write_str(ssh, "\r\n");
32874aea 6121 }
51470298 6122 s->username[strcspn(s->username, "\n\r")] = '\0';
7cca0d81 6123 } else {
57356d63 6124 char *stuff;
86916870 6125 strncpy(s->username, ssh->cfg.username, sizeof(s->username));
51470298 6126 s->username[sizeof(s->username)-1] = '\0';
65a22376 6127 if ((flags & FLAG_VERBOSE) || (flags & FLAG_INTERACTIVE)) {
57356d63 6128 stuff = dupprintf("Using username \"%s\".\r\n", s->username);
51470298 6129 c_write_str(ssh, stuff);
57356d63 6130 sfree(stuff);
7cca0d81 6131 }
6132 }
51470298 6133 s->got_username = TRUE;
7cca0d81 6134
65a22376 6135 /*
1408a877 6136 * Send an authentication request using method "none": (a)
6137 * just in case it succeeds, and (b) so that we know what
6138 * authentication methods we can usefully try next.
65a22376 6139 */
51470298 6140 ssh->pkt_ctx &= ~SSH2_PKTCTX_AUTH_MASK;
6141
ff3187f6 6142 s->pktout = ssh2_pkt_init(SSH2_MSG_USERAUTH_REQUEST);
6143 ssh2_pkt_addstring(s->pktout, s->username);
6144 ssh2_pkt_addstring(s->pktout, "ssh-connection");/* service requested */
6145 ssh2_pkt_addstring(s->pktout, "none"); /* method */
6146 ssh2_pkt_send(ssh, s->pktout);
51470298 6147 s->type = AUTH_TYPE_NONE;
6148 s->gotit = FALSE;
6149 s->we_are_in = FALSE;
6150
6151 s->tried_pubkey_config = FALSE;
6152 s->tried_agent = FALSE;
51470298 6153 s->kbd_inter_running = FALSE;
6ac3a551 6154 s->kbd_inter_refused = FALSE;
86916870 6155 /* Load the pub half of ssh->cfg.keyfile so we notice if it's in Pageant */
9a30e26b 6156 if (!filename_is_null(ssh->cfg.keyfile)) {
231ee168 6157 int keytype;
6c6d9ed9 6158 logeventf(ssh, "Reading private key file \"%.150s\"",
6159 filename_to_str(&ssh->cfg.keyfile));
9a30e26b 6160 keytype = key_type(&ssh->cfg.keyfile);
51470298 6161 if (keytype == SSH_KEYTYPE_SSH2) {
6162 s->publickey_blob =
9a30e26b 6163 ssh2_userkey_loadpub(&ssh->cfg.keyfile, NULL,
222d54dc 6164 &s->publickey_bloblen, NULL);
51470298 6165 } else {
57356d63 6166 char *msgbuf;
c2ad7d0d 6167 logeventf(ssh, "Unable to use this key file (%s)",
a8327734 6168 key_type_to_str(keytype));
57356d63 6169 msgbuf = dupprintf("Unable to use key file \"%.150s\""
6c6d9ed9 6170 " (%s)\r\n",
6171 filename_to_str(&ssh->cfg.keyfile),
57356d63 6172 key_type_to_str(keytype));
51470298 6173 c_write_str(ssh, msgbuf);
57356d63 6174 sfree(msgbuf);
51470298 6175 s->publickey_blob = NULL;
231ee168 6176 }
396778f1 6177 } else
51470298 6178 s->publickey_blob = NULL;
65a22376 6179
1408a877 6180 while (1) {
6181 /*
6182 * Wait for the result of the last authentication request.
6183 */
51470298 6184 if (!s->gotit)
ff3187f6 6185 crWaitUntilV(pktin);
6186 while (pktin->type == SSH2_MSG_USERAUTH_BANNER) {
32874aea 6187 char *banner;
6188 int size;
6189 /*
6190 * Don't show the banner if we're operating in
6191 * non-verbose non-interactive mode. (It's probably
6192 * a script, which means nobody will read the
6193 * banner _anyway_, and moreover the printing of
6194 * the banner will screw up processing on the
6195 * output of (say) plink.)
6196 */
6197 if (flags & (FLAG_VERBOSE | FLAG_INTERACTIVE)) {
ff3187f6 6198 ssh_pkt_getstring(pktin, &banner, &size);
32874aea 6199 if (banner)
51470298 6200 c_write_untrusted(ssh, banner, size);
32874aea 6201 }
ff3187f6 6202 crWaitUntilV(pktin);
1408a877 6203 }
ff3187f6 6204 if (pktin->type == SSH2_MSG_USERAUTH_SUCCESS) {
1408a877 6205 logevent("Access granted");
51470298 6206 s->we_are_in = TRUE;
1408a877 6207 break;
6208 }
65a22376 6209
51470298 6210 if (s->kbd_inter_running &&
ff3187f6 6211 pktin->type == SSH2_MSG_USERAUTH_INFO_REQUEST) {
b3186d64 6212 /*
45068b27 6213 * This is either a further set-of-prompts packet
6214 * in keyboard-interactive authentication, or it's
6215 * the same one and we came back here with `gotit'
6216 * set. In the former case, we must reset the
6217 * curr_prompt variable.
b3186d64 6218 */
51470298 6219 if (!s->gotit)
6220 s->curr_prompt = 0;
4c6e53e3 6221 } else if (pktin->type == SSH2_MSG_USERAUTH_PASSWD_CHANGEREQ) {
6222 /* FIXME: perhaps we should support this? */
6223 bombout(("PASSWD_CHANGEREQ not yet supported"));
6224 crStopV;
ff3187f6 6225 } else if (pktin->type != SSH2_MSG_USERAUTH_FAILURE) {
6b5cf8b4 6226 bombout(("Strange packet received during authentication: type %d",
ff3187f6 6227 pktin->type));
7ffdbc1a 6228 crStopV;
65a22376 6229 }
6230
51470298 6231 s->gotit = FALSE;
65a22376 6232
1408a877 6233 /*
6234 * OK, we're now sitting on a USERAUTH_FAILURE message, so
6235 * we can look at the string in it and know what we can
6236 * helpfully try next.
6237 */
ff3187f6 6238 if (pktin->type == SSH2_MSG_USERAUTH_FAILURE) {
1408a877 6239 char *methods;
6240 int methlen;
ff3187f6 6241 ssh_pkt_getstring(pktin, &methods, &methlen);
51470298 6242 s->kbd_inter_running = FALSE;
ff3187f6 6243 if (!ssh2_pkt_getbool(pktin)) {
1408a877 6244 /*
6245 * We have received an unequivocal Access
6246 * Denied. This can translate to a variety of
6247 * messages:
6248 *
6249 * - if we'd just tried "none" authentication,
6250 * it's not worth printing anything at all
6251 *
6252 * - if we'd just tried a public key _offer_,
6253 * the message should be "Server refused our
6254 * key" (or no message at all if the key
6255 * came from Pageant)
6256 *
6257 * - if we'd just tried anything else, the
6258 * message really should be "Access denied".
6259 *
6260 * Additionally, if we'd just tried password
6261 * authentication, we should break out of this
6262 * whole loop so as to go back to the username
91f57d1f 6263 * prompt (iff we're configured to allow
6264 * username change attempts).
1408a877 6265 */
51470298 6266 if (s->type == AUTH_TYPE_NONE) {
1408a877 6267 /* do nothing */
51470298 6268 } else if (s->type == AUTH_TYPE_PUBLICKEY_OFFER_LOUD ||
6269 s->type == AUTH_TYPE_PUBLICKEY_OFFER_QUIET) {
6270 if (s->type == AUTH_TYPE_PUBLICKEY_OFFER_LOUD)
6271 c_write_str(ssh, "Server refused our key\r\n");
1408a877 6272 logevent("Server refused public key");
51470298 6273 } else if (s->type==AUTH_TYPE_KEYBOARD_INTERACTIVE_QUIET) {
4bdf7c46 6274 /* server declined keyboard-interactive; ignore */
1408a877 6275 } else {
51470298 6276 c_write_str(ssh, "Access denied\r\n");
1408a877 6277 logevent("Access denied");
91f57d1f 6278 if (s->type == AUTH_TYPE_PASSWORD &&
6279 ssh->cfg.change_username) {
6c9dce7c 6280 /* XXX perhaps we should allow
6281 * keyboard-interactive to do this too? */
51470298 6282 s->we_are_in = FALSE;
1408a877 6283 break;
6284 }
6285 }
6286 } else {
51470298 6287 c_write_str(ssh, "Further authentication required\r\n");
1408a877 6288 logevent("Further authentication required");
6289 }
65a22376 6290
51470298 6291 s->can_pubkey =
32874aea 6292 in_commasep_string("publickey", methods, methlen);
51470298 6293 s->can_passwd =
32874aea 6294 in_commasep_string("password", methods, methlen);
86916870 6295 s->can_keyb_inter = ssh->cfg.try_ki_auth &&
761187b6 6296 in_commasep_string("keyboard-interactive", methods, methlen);
1408a877 6297 }
65a22376 6298
51470298 6299 s->method = 0;
6300 ssh->pkt_ctx &= ~SSH2_PKTCTX_AUTH_MASK;
954a9540 6301 s->need_pw = FALSE;
65a22376 6302
0405e71f 6303 /*
6304 * Most password/passphrase prompts will be
6305 * non-echoing, so we set this to 0 by default.
6306 * Exception is that some keyboard-interactive prompts
6307 * can be echoing, in which case we'll set this to 1.
6308 */
51470298 6309 s->echo = 0;
0405e71f 6310
51470298 6311 if (!s->method && s->can_pubkey &&
6312 agent_exists() && !s->tried_agent) {
1983e559 6313 /*
6314 * Attempt public-key authentication using Pageant.
6315 */
1983e559 6316 void *r;
51470298 6317 s->authed = FALSE;
1983e559 6318
51470298 6319 ssh->pkt_ctx &= ~SSH2_PKTCTX_AUTH_MASK;
6320 ssh->pkt_ctx |= SSH2_PKTCTX_PUBLICKEY;
00db133f 6321
51470298 6322 s->tried_agent = TRUE;
1983e559 6323
6324 logevent("Pageant is running. Requesting keys.");
6325
6326 /* Request the keys held by the agent. */
51470298 6327 PUT_32BIT(s->request, 1);
6328 s->request[4] = SSH2_AGENTC_REQUEST_IDENTITIES;
839f10db 6329 if (!agent_query(s->request, 5, &r, &s->responselen,
6330 ssh_agent_callback, ssh)) {
6331 do {
6332 crReturnV;
ff3187f6 6333 if (pktin) {
839f10db 6334 bombout(("Unexpected data from server while"
6335 " waiting for agent response"));
6336 crStopV;
6337 }
ff3187f6 6338 } while (pktin || inlen > 0);
839f10db 6339 r = ssh->agent_response;
6340 s->responselen = ssh->agent_response_len;
6341 }
51470298 6342 s->response = (unsigned char *) r;
6343 if (s->response && s->responselen >= 5 &&
6344 s->response[4] == SSH2_AGENT_IDENTITIES_ANSWER) {
6345 s->p = s->response + 5;
6346 s->nkeys = GET_32BIT(s->p);
6347 s->p += 4;
32874aea 6348 {
6349 char buf[64];
51470298 6350 sprintf(buf, "Pageant has %d SSH2 keys", s->nkeys);
32874aea 6351 logevent(buf);
6352 }
51470298 6353 for (s->keyi = 0; s->keyi < s->nkeys; s->keyi++) {
2d466ffd 6354 void *vret;
1983e559 6355
32874aea 6356 {
6357 char buf[64];
51470298 6358 sprintf(buf, "Trying Pageant key #%d", s->keyi);
32874aea 6359 logevent(buf);
6360 }
51470298 6361 s->pklen = GET_32BIT(s->p);
6362 s->p += 4;
6363 if (s->publickey_blob &&
6364 s->pklen == s->publickey_bloblen &&
6365 !memcmp(s->p, s->publickey_blob,
6366 s->publickey_bloblen)) {
396778f1 6367 logevent("This key matches configured key file");
51470298 6368 s->tried_pubkey_config = 1;
396778f1 6369 }
d8baa528 6370 s->pkblob = (char *)s->p;
51470298 6371 s->p += s->pklen;
6372 s->alglen = GET_32BIT(s->pkblob);
6373 s->alg = s->pkblob + 4;
6374 s->commentlen = GET_32BIT(s->p);
6375 s->p += 4;
d8baa528 6376 s->commentp = (char *)s->p;
51470298 6377 s->p += s->commentlen;
ff3187f6 6378 s->pktout = ssh2_pkt_init(SSH2_MSG_USERAUTH_REQUEST);
6379 ssh2_pkt_addstring(s->pktout, s->username);
6380 ssh2_pkt_addstring(s->pktout, "ssh-connection"); /* service requested */
6381 ssh2_pkt_addstring(s->pktout, "publickey"); /* method */
6382 ssh2_pkt_addbool(s->pktout, FALSE); /* no signature included */
6383 ssh2_pkt_addstring_start(s->pktout);
6384 ssh2_pkt_addstring_data(s->pktout, s->alg, s->alglen);
6385 ssh2_pkt_addstring_start(s->pktout);
6386 ssh2_pkt_addstring_data(s->pktout, s->pkblob, s->pklen);
6387 ssh2_pkt_send(ssh, s->pktout);
6388
6389 crWaitUntilV(pktin);
6390 if (pktin->type != SSH2_MSG_USERAUTH_PK_OK) {
1983e559 6391 logevent("Key refused");
6392 continue;
6393 }
6394
32874aea 6395 if (flags & FLAG_VERBOSE) {
51470298 6396 c_write_str(ssh, "Authenticating with "
6397 "public key \"");
6398 c_write(ssh, s->commentp, s->commentlen);
6399 c_write_str(ssh, "\" from agent\r\n");
32874aea 6400 }
1983e559 6401
6402 /*
6403 * Server is willing to accept the key.
6404 * Construct a SIGN_REQUEST.
6405 */
ff3187f6 6406 s->pktout = ssh2_pkt_init(SSH2_MSG_USERAUTH_REQUEST);
6407 ssh2_pkt_addstring(s->pktout, s->username);
6408 ssh2_pkt_addstring(s->pktout, "ssh-connection"); /* service requested */
6409 ssh2_pkt_addstring(s->pktout, "publickey"); /* method */
6410 ssh2_pkt_addbool(s->pktout, TRUE);
6411 ssh2_pkt_addstring_start(s->pktout);
6412 ssh2_pkt_addstring_data(s->pktout, s->alg, s->alglen);
6413 ssh2_pkt_addstring_start(s->pktout);
6414 ssh2_pkt_addstring_data(s->pktout, s->pkblob, s->pklen);
6415
6416 s->siglen = s->pktout->length - 5 + 4 + 20;
dda87a28 6417 if (ssh->remote_bugs & BUG_SSH2_PK_SESSIONID)
6418 s->siglen -= 4;
51470298 6419 s->len = 1; /* message type */
6420 s->len += 4 + s->pklen; /* key blob */
6421 s->len += 4 + s->siglen; /* data to sign */
6422 s->len += 4; /* flags */
3d88e64d 6423 s->agentreq = snewn(4 + s->len, char);
51470298 6424 PUT_32BIT(s->agentreq, s->len);
6425 s->q = s->agentreq + 4;
6426 *s->q++ = SSH2_AGENTC_SIGN_REQUEST;
6427 PUT_32BIT(s->q, s->pklen);
6428 s->q += 4;
6429 memcpy(s->q, s->pkblob, s->pklen);
6430 s->q += s->pklen;
6431 PUT_32BIT(s->q, s->siglen);
6432 s->q += 4;
1983e559 6433 /* Now the data to be signed... */
dda87a28 6434 if (!(ssh->remote_bugs & BUG_SSH2_PK_SESSIONID)) {
6435 PUT_32BIT(s->q, 20);
6436 s->q += 4;
6437 }
51470298 6438 memcpy(s->q, ssh->v2_session_id, 20);
6439 s->q += 20;
ff3187f6 6440 memcpy(s->q, s->pktout->data + 5,
6441 s->pktout->length - 5);
6442 s->q += s->pktout->length - 5;
1983e559 6443 /* And finally the (zero) flags word. */
51470298 6444 PUT_32BIT(s->q, 0);
839f10db 6445 if (!agent_query(s->agentreq, s->len + 4,
6446 &vret, &s->retlen,
6447 ssh_agent_callback, ssh)) {
6448 do {
6449 crReturnV;
ff3187f6 6450 if (pktin) {
839f10db 6451 bombout(("Unexpected data from server"
6452 " while waiting for agent"
6453 " response"));
6454 crStopV;
6455 }
ff3187f6 6456 } while (pktin || inlen > 0);
839f10db 6457 vret = ssh->agent_response;
6458 s->retlen = ssh->agent_response_len;
6459 }
51470298 6460 s->ret = vret;
6461 sfree(s->agentreq);
6462 if (s->ret) {
6463 if (s->ret[4] == SSH2_AGENT_SIGN_RESPONSE) {
1983e559 6464 logevent("Sending Pageant's response");
ff3187f6 6465 ssh2_add_sigblob(ssh, s->pktout,
6466 s->pkblob, s->pklen,
51470298 6467 s->ret + 9,
6468 GET_32BIT(s->ret + 5));
ff3187f6 6469 ssh2_pkt_send(ssh, s->pktout);
51470298 6470 s->authed = TRUE;
1983e559 6471 break;
6472 } else {
32874aea 6473 logevent
6474 ("Pageant failed to answer challenge");
51470298 6475 sfree(s->ret);
1983e559 6476 }
6477 }
6478 }
51470298 6479 if (s->authed)
1983e559 6480 continue;
6481 }
29b1d0b3 6482 sfree(s->response);
1983e559 6483 }
6484
51470298 6485 if (!s->method && s->can_pubkey && s->publickey_blob
6486 && !s->tried_pubkey_config) {
1408a877 6487 unsigned char *pub_blob;
6488 char *algorithm, *comment;
6489 int pub_blob_len;
65a22376 6490
51470298 6491 s->tried_pubkey_config = TRUE;
65a22376 6492
51470298 6493 ssh->pkt_ctx &= ~SSH2_PKTCTX_AUTH_MASK;
6494 ssh->pkt_ctx |= SSH2_PKTCTX_PUBLICKEY;
00db133f 6495
65a22376 6496 /*
1408a877 6497 * Try the public key supplied in the configuration.
6498 *
6499 * First, offer the public blob to see if the server is
6500 * willing to accept it.
65a22376 6501 */
d8baa528 6502 pub_blob =
9a30e26b 6503 (unsigned char *)ssh2_userkey_loadpub(&ssh->cfg.keyfile,
d8baa528 6504 &algorithm,
222d54dc 6505 &pub_blob_len,
6506 NULL);
1408a877 6507 if (pub_blob) {
ff3187f6 6508 s->pktout = ssh2_pkt_init(SSH2_MSG_USERAUTH_REQUEST);
6509 ssh2_pkt_addstring(s->pktout, s->username);
6510 ssh2_pkt_addstring(s->pktout, "ssh-connection"); /* service requested */
6511 ssh2_pkt_addstring(s->pktout, "publickey"); /* method */
6512 ssh2_pkt_addbool(s->pktout, FALSE); /* no signature included */
6513 ssh2_pkt_addstring(s->pktout, algorithm);
6514 ssh2_pkt_addstring_start(s->pktout);
6515 ssh2_pkt_addstring_data(s->pktout, (char *)pub_blob,
d8baa528 6516 pub_blob_len);
ff3187f6 6517 ssh2_pkt_send(ssh, s->pktout);
a03c9f9c 6518 logevent("Offered public key");
1408a877 6519
ff3187f6 6520 crWaitUntilV(pktin);
6521 if (pktin->type != SSH2_MSG_USERAUTH_PK_OK) {
51470298 6522 s->gotit = TRUE;
6523 s->type = AUTH_TYPE_PUBLICKEY_OFFER_LOUD;
32874aea 6524 continue; /* key refused; give up on it */
1408a877 6525 }
65a22376 6526
1408a877 6527 logevent("Offer of public key accepted");
65a22376 6528 /*
1408a877 6529 * Actually attempt a serious authentication using
6530 * the key.
65a22376 6531 */
9a30e26b 6532 if (ssh2_userkey_encrypted(&ssh->cfg.keyfile, &comment)) {
51470298 6533 sprintf(s->pwprompt,
32874aea 6534 "Passphrase for key \"%.100s\": ",
6535 comment);
51470298 6536 s->need_pw = TRUE;
1408a877 6537 } else {
51470298 6538 s->need_pw = FALSE;
1408a877 6539 }
4e520718 6540 if (flags & FLAG_VERBOSE) {
6541 c_write_str(ssh, "Authenticating with public key \"");
6542 c_write_str(ssh, comment);
6543 c_write_str(ssh, "\"\r\n");
6544 }
51470298 6545 s->method = AUTH_PUBLICKEY_FILE;
65a22376 6546 }
1408a877 6547 }
6548
6f64ce13 6549 if (!s->method && s->can_keyb_inter && !s->kbd_inter_refused &&
6550 !s->kbd_inter_running) {
51470298 6551 s->method = AUTH_KEYBOARD_INTERACTIVE;
6552 s->type = AUTH_TYPE_KEYBOARD_INTERACTIVE;
af659722 6553
51470298 6554 ssh->pkt_ctx &= ~SSH2_PKTCTX_AUTH_MASK;
6555 ssh->pkt_ctx |= SSH2_PKTCTX_KBDINTER;
00db133f 6556
ff3187f6 6557 s->pktout = ssh2_pkt_init(SSH2_MSG_USERAUTH_REQUEST);
6558 ssh2_pkt_addstring(s->pktout, s->username);
6559 ssh2_pkt_addstring(s->pktout, "ssh-connection"); /* service requested */
6560 ssh2_pkt_addstring(s->pktout, "keyboard-interactive"); /* method */
6561 ssh2_pkt_addstring(s->pktout, ""); /* lang */
6562 ssh2_pkt_addstring(s->pktout, "");
6563 ssh2_pkt_send(ssh, s->pktout);
6564
6565 crWaitUntilV(pktin);
6566 if (pktin->type != SSH2_MSG_USERAUTH_INFO_REQUEST) {
6567 if (pktin->type == SSH2_MSG_USERAUTH_FAILURE)
51470298 6568 s->gotit = TRUE;
af659722 6569 logevent("Keyboard-interactive authentication refused");
51470298 6570 s->type = AUTH_TYPE_KEYBOARD_INTERACTIVE_QUIET;
6ac3a551 6571 s->kbd_inter_refused = TRUE; /* don't try it again */
af659722 6572 continue;
6573 }
6574
51470298 6575 s->kbd_inter_running = TRUE;
6576 s->curr_prompt = 0;
af659722 6577 }
6578
51470298 6579 if (s->kbd_inter_running) {
6580 s->method = AUTH_KEYBOARD_INTERACTIVE;
6581 s->type = AUTH_TYPE_KEYBOARD_INTERACTIVE;
af659722 6582
51470298 6583 ssh->pkt_ctx &= ~SSH2_PKTCTX_AUTH_MASK;
6584 ssh->pkt_ctx |= SSH2_PKTCTX_KBDINTER;
00db133f 6585
51470298 6586 if (s->curr_prompt == 0) {
45068b27 6587 /*
6588 * We've got a fresh USERAUTH_INFO_REQUEST.
6589 * Display header data, and start going through
6590 * the prompts.
6591 */
6592 char *name, *inst, *lang;
6593 int name_len, inst_len, lang_len;
6594
ff3187f6 6595 ssh_pkt_getstring(pktin, &name, &name_len);
6596 ssh_pkt_getstring(pktin, &inst, &inst_len);
6597 ssh_pkt_getstring(pktin, &lang, &lang_len);
45068b27 6598 if (name_len > 0) {
51470298 6599 c_write_untrusted(ssh, name, name_len);
6600 c_write_str(ssh, "\r\n");
45068b27 6601 }
6602 if (inst_len > 0) {
51470298 6603 c_write_untrusted(ssh, inst, inst_len);
6604 c_write_str(ssh, "\r\n");
45068b27 6605 }
ff3187f6 6606 s->num_prompts = ssh_pkt_getuint32(pktin);
45068b27 6607 }
af659722 6608
45068b27 6609 /*
6610 * If there are prompts remaining in the packet,
6611 * display one and get a response.
6612 */
51470298 6613 if (s->curr_prompt < s->num_prompts) {
45068b27 6614 char *prompt;
6615 int prompt_len;
af659722 6616
ff3187f6 6617 ssh_pkt_getstring(pktin, &prompt, &prompt_len);
45068b27 6618 if (prompt_len > 0) {
85fdbe25 6619 static const char trunc[] = "<prompt truncated>: ";
6620 static const int prlen = sizeof(s->pwprompt) -
6621 lenof(trunc);
6622 if (prompt_len > prlen) {
6623 memcpy(s->pwprompt, prompt, prlen);
6624 strcpy(s->pwprompt + prlen, trunc);
6625 } else {
6626 memcpy(s->pwprompt, prompt, prompt_len);
6627 s->pwprompt[prompt_len] = '\0';
6628 }
45068b27 6629 } else {
51470298 6630 strcpy(s->pwprompt,
45068b27 6631 "<server failed to send prompt>: ");
6632 }
ff3187f6 6633 s->echo = ssh2_pkt_getbool(pktin);
51470298 6634 s->need_pw = TRUE;
45068b27 6635 } else
51470298 6636 s->need_pw = FALSE;
af659722 6637 }
6638
51470298 6639 if (!s->method && s->can_passwd) {
6640 s->method = AUTH_PASSWORD;
6641 ssh->pkt_ctx &= ~SSH2_PKTCTX_AUTH_MASK;
6642 ssh->pkt_ctx |= SSH2_PKTCTX_PASSWORD;
6643 sprintf(s->pwprompt, "%.90s@%.90s's password: ", s->username,
6644 ssh->savedhost);
6645 s->need_pw = TRUE;
1408a877 6646 }
6647
51470298 6648 if (s->need_pw) {
fa17a66e 6649 if (ssh_get_line) {
51470298 6650 if (!ssh_get_line(s->pwprompt, s->password,
6651 sizeof(s->password), TRUE)) {
1408a877 6652 /*
fa17a66e 6653 * get_line failed to get a password (for
6654 * example because one was supplied on the
6655 * command line which has already failed to
6656 * work). Terminate.
1408a877 6657 */
ff3187f6 6658 s->pktout = ssh2_pkt_init(SSH2_MSG_DISCONNECT);
6659 ssh2_pkt_adduint32(s->pktout,SSH2_DISCONNECT_BY_APPLICATION);
6660 ssh2_pkt_addstring(s->pktout, "No more passwords available"
51470298 6661 " to try");
ff3187f6 6662 ssh2_pkt_addstring(s->pktout, "en"); /* language tag */
590f6a5f 6663 ssh2_pkt_send_noqueue(ssh, s->pktout);
247308b5 6664 logevent("Unable to authenticate");
a8327734 6665 connection_fatal(ssh->frontend,
6666 "Unable to authenticate");
ac934965 6667 ssh->close_expected = TRUE;
3bb2f322 6668 ssh_closing((Plug)ssh, NULL, 0, 0);
7ffdbc1a 6669 crStopV;
1408a877 6670 }
6671 } else {
51470298 6672 int ret; /* need not be saved across crReturn */
6673 c_write_untrusted(ssh, s->pwprompt, strlen(s->pwprompt));
6674 ssh->send_ok = 1;
1408a877 6675
51470298 6676 setup_userpass_input(ssh, s->password,
6677 sizeof(s->password), s->echo);
0405e71f 6678 do {
ff3187f6 6679 crWaitUntilV(!pktin);
51470298 6680 ret = process_userpass_input(ssh, in, inlen);
0405e71f 6681 } while (ret == 0);
6682 if (ret < 0)
6683 cleanup_exit(0);
51470298 6684 c_write_str(ssh, "\r\n");
65a22376 6685 }
65a22376 6686 }
65a22376 6687
51470298 6688 if (s->method == AUTH_PUBLICKEY_FILE) {
1408a877 6689 /*
6690 * We have our passphrase. Now try the actual authentication.
6691 */
6692 struct ssh2_userkey *key;
222d54dc 6693 const char *error = NULL;
65a22376 6694
222d54dc 6695 key = ssh2_load_userkey(&ssh->cfg.keyfile, s->password,
6696 &error);
1408a877 6697 if (key == SSH2_WRONG_PASSPHRASE || key == NULL) {
6698 if (key == SSH2_WRONG_PASSPHRASE) {
51470298 6699 c_write_str(ssh, "Wrong passphrase\r\n");
6700 s->tried_pubkey_config = FALSE;
1408a877 6701 } else {
222d54dc 6702 c_write_str(ssh, "Unable to load private key (");
6703 c_write_str(ssh, error);
6704 c_write_str(ssh, ")\r\n");
51470298 6705 s->tried_pubkey_config = TRUE;
1408a877 6706 }
6707 /* Send a spurious AUTH_NONE to return to the top. */
ff3187f6 6708 s->pktout = ssh2_pkt_init(SSH2_MSG_USERAUTH_REQUEST);
6709 ssh2_pkt_addstring(s->pktout, s->username);
6710 ssh2_pkt_addstring(s->pktout, "ssh-connection"); /* service requested */
6711 ssh2_pkt_addstring(s->pktout, "none"); /* method */
6712 ssh2_pkt_send(ssh, s->pktout);
51470298 6713 s->type = AUTH_TYPE_NONE;
1408a877 6714 } else {
1dd353b5 6715 unsigned char *pkblob, *sigblob, *sigdata;
6716 int pkblob_len, sigblob_len, sigdata_len;
dda87a28 6717 int p;
65a22376 6718
1408a877 6719 /*
6720 * We have loaded the private key and the server
6721 * has announced that it's willing to accept it.
6722 * Hallelujah. Generate a signature and send it.
6723 */
ff3187f6 6724 s->pktout = ssh2_pkt_init(SSH2_MSG_USERAUTH_REQUEST);
6725 ssh2_pkt_addstring(s->pktout, s->username);
6726 ssh2_pkt_addstring(s->pktout, "ssh-connection"); /* service requested */
6727 ssh2_pkt_addstring(s->pktout, "publickey"); /* method */
6728 ssh2_pkt_addbool(s->pktout, TRUE);
6729 ssh2_pkt_addstring(s->pktout, key->alg->name);
1dd353b5 6730 pkblob = key->alg->public_blob(key->data, &pkblob_len);
ff3187f6 6731 ssh2_pkt_addstring_start(s->pktout);
6732 ssh2_pkt_addstring_data(s->pktout, (char *)pkblob, pkblob_len);
1408a877 6733
6734 /*
6735 * The data to be signed is:
6736 *
6737 * string session-id
6738 *
6739 * followed by everything so far placed in the
6740 * outgoing packet.
6741 */
ff3187f6 6742 sigdata_len = s->pktout->length - 5 + 4 + 20;
dda87a28 6743 if (ssh->remote_bugs & BUG_SSH2_PK_SESSIONID)
6744 sigdata_len -= 4;
92d60585 6745 sigdata = snewn(sigdata_len, unsigned char);
dda87a28 6746 p = 0;
6747 if (!(ssh->remote_bugs & BUG_SSH2_PK_SESSIONID)) {
6748 PUT_32BIT(sigdata+p, 20);
6749 p += 4;
6750 }
6751 memcpy(sigdata+p, ssh->v2_session_id, 20); p += 20;
ff3187f6 6752 memcpy(sigdata+p, s->pktout->data + 5,
6753 s->pktout->length - 5);
6754 p += s->pktout->length - 5;
dda87a28 6755 assert(p == sigdata_len);
d8baa528 6756 sigblob = key->alg->sign(key->data, (char *)sigdata,
1dd353b5 6757 sigdata_len, &sigblob_len);
ff3187f6 6758 ssh2_add_sigblob(ssh, s->pktout, pkblob, pkblob_len,
1dd353b5 6759 sigblob, sigblob_len);
6760 sfree(pkblob);
6761 sfree(sigblob);
1408a877 6762 sfree(sigdata);
6763
ff3187f6 6764 ssh2_pkt_send(ssh, s->pktout);
51470298 6765 s->type = AUTH_TYPE_PUBLICKEY;
75374b2f 6766 key->alg->freekey(key->data);
1408a877 6767 }
51470298 6768 } else if (s->method == AUTH_PASSWORD) {
65a22376 6769 /*
95d2d262 6770 * We pad out the password packet to 256 bytes to make
6771 * it harder for an attacker to find the length of the
6772 * user's password.
1408a877 6773 *
95d2d262 6774 * Anyone using a password longer than 256 bytes
6775 * probably doesn't have much to worry about from
1408a877 6776 * people who find out how long their password is!
65a22376 6777 */
ff3187f6 6778 s->pktout = ssh2_pkt_init(SSH2_MSG_USERAUTH_REQUEST);
95d2d262 6779 s->pktout->forcepad = 256;
ff3187f6 6780 ssh2_pkt_addstring(s->pktout, s->username);
6781 ssh2_pkt_addstring(s->pktout, "ssh-connection"); /* service requested */
6782 ssh2_pkt_addstring(s->pktout, "password");
6783 ssh2_pkt_addbool(s->pktout, FALSE);
6784 dont_log_password(ssh, s->pktout, PKTLOG_BLANK);
6785 ssh2_pkt_addstring(s->pktout, s->password);
1409c1b3 6786 memset(s->password, 0, sizeof(s->password));
ff3187f6 6787 end_log_omission(ssh, s->pktout);
95d2d262 6788 ssh2_pkt_send(ssh, s->pktout);
0d43337a 6789 logevent("Sent password");
51470298 6790 s->type = AUTH_TYPE_PASSWORD;
6791 } else if (s->method == AUTH_KEYBOARD_INTERACTIVE) {
6792 if (s->curr_prompt == 0) {
ff3187f6 6793 s->pktout = ssh2_pkt_init(SSH2_MSG_USERAUTH_INFO_RESPONSE);
6794 ssh2_pkt_adduint32(s->pktout, s->num_prompts);
45068b27 6795 }
51470298 6796 if (s->need_pw) { /* only add pw if we just got one! */
ff3187f6 6797 dont_log_password(ssh, s->pktout, PKTLOG_BLANK);
6798 ssh2_pkt_addstring(s->pktout, s->password);
51470298 6799 memset(s->password, 0, sizeof(s->password));
ff3187f6 6800 end_log_omission(ssh, s->pktout);
51470298 6801 s->curr_prompt++;
45068b27 6802 }
51470298 6803 if (s->curr_prompt >= s->num_prompts) {
ff3187f6 6804 ssh2_pkt_send(ssh, s->pktout);
45068b27 6805 } else {
6806 /*
6807 * If there are prompts remaining, we set
6808 * `gotit' so that we won't attempt to get
6809 * another packet. Then we go back round the
6810 * loop and will end up retrieving another
6811 * prompt out of the existing packet. Funky or
6812 * what?
6813 */
51470298 6814 s->gotit = TRUE;
45068b27 6815 }
51470298 6816 s->type = AUTH_TYPE_KEYBOARD_INTERACTIVE;
1408a877 6817 } else {
51470298 6818 c_write_str(ssh, "No supported authentication methods"
6819 " left to try!\r\n");
6820 logevent("No supported authentications offered."
6821 " Disconnecting");
ff3187f6 6822 s->pktout = ssh2_pkt_init(SSH2_MSG_DISCONNECT);
6823 ssh2_pkt_adduint32(s->pktout, SSH2_DISCONNECT_BY_APPLICATION);
6824 ssh2_pkt_addstring(s->pktout, "No supported authentication"
51470298 6825 " methods available");
ff3187f6 6826 ssh2_pkt_addstring(s->pktout, "en"); /* language tag */
590f6a5f 6827 ssh2_pkt_send_noqueue(ssh, s->pktout);
ac934965 6828 ssh->close_expected = TRUE;
3bb2f322 6829 ssh_closing((Plug)ssh, NULL, 0, 0);
7ffdbc1a 6830 crStopV;
65a22376 6831 }
65a22376 6832 }
51470298 6833 } while (!s->we_are_in);
7cca0d81 6834
6835 /*
6836 * Now we're authenticated for the connection protocol. The
6837 * connection protocol will automatically have started at this
6838 * point; there's no need to send SERVICE_REQUEST.
6839 */
6840
0ed48730 6841 ssh->channels = newtree234(ssh_channelcmp);
6842
7cca0d81 6843 /*
b09eaa88 6844 * Set up handlers for some connection protocol messages, so we
6845 * don't have to handle them repeatedly in this coroutine.
6846 */
6847 ssh->packet_dispatch[SSH2_MSG_CHANNEL_WINDOW_ADJUST] =
6848 ssh2_msg_channel_window_adjust;
51df0ab5 6849 ssh->packet_dispatch[SSH2_MSG_GLOBAL_REQUEST] =
6850 ssh2_msg_global_request;
b09eaa88 6851
6852 /*
0ed48730 6853 * Create the main session channel.
7cca0d81 6854 */
0ed48730 6855 if (!ssh->cfg.ssh_no_shell) {
6856 ssh->mainchan = snew(struct ssh_channel);
6857 ssh->mainchan->ssh = ssh;
6858 ssh->mainchan->localid = alloc_channel_id(ssh);
ff3187f6 6859 s->pktout = ssh2_pkt_init(SSH2_MSG_CHANNEL_OPEN);
6860 ssh2_pkt_addstring(s->pktout, "session");
6861 ssh2_pkt_adduint32(s->pktout, ssh->mainchan->localid);
0ed48730 6862 ssh->mainchan->v.v2.locwindow = OUR_V2_WINSIZE;
ff3187f6 6863 ssh2_pkt_adduint32(s->pktout, ssh->mainchan->v.v2.locwindow);/* our window size */
954d5c5a 6864 ssh2_pkt_adduint32(s->pktout, OUR_V2_MAXPKT); /* our max pkt size */
ff3187f6 6865 ssh2_pkt_send(ssh, s->pktout);
6866 crWaitUntilV(pktin);
6867 if (pktin->type != SSH2_MSG_CHANNEL_OPEN_CONFIRMATION) {
0ed48730 6868 bombout(("Server refused to open a session"));
6869 crStopV;
6870 /* FIXME: error data comes back in FAILURE packet */
6871 }
ff3187f6 6872 if (ssh_pkt_getuint32(pktin) != ssh->mainchan->localid) {
0ed48730 6873 bombout(("Server's channel confirmation cited wrong channel"));
6874 crStopV;
6875 }
ff3187f6 6876 ssh->mainchan->remoteid = ssh_pkt_getuint32(pktin);
0ed48730 6877 ssh->mainchan->type = CHAN_MAINSESSION;
6878 ssh->mainchan->closes = 0;
ff3187f6 6879 ssh->mainchan->v.v2.remwindow = ssh_pkt_getuint32(pktin);
6880 ssh->mainchan->v.v2.remmaxpkt = ssh_pkt_getuint32(pktin);
0ed48730 6881 bufchain_init(&ssh->mainchan->v.v2.outbuffer);
6882 add234(ssh->channels, ssh->mainchan);
62638676 6883 update_specials_menu(ssh->frontend);
0ed48730 6884 logevent("Opened channel for session");
6885 } else
6886 ssh->mainchan = NULL;
7cca0d81 6887
6888 /*
51df0ab5 6889 * Now we have a channel, make dispatch table entries for
6890 * general channel-based messages.
6891 */
6892 ssh->packet_dispatch[SSH2_MSG_CHANNEL_DATA] =
6893 ssh->packet_dispatch[SSH2_MSG_CHANNEL_EXTENDED_DATA] =
6894 ssh2_msg_channel_data;
6895 ssh->packet_dispatch[SSH2_MSG_CHANNEL_EOF] = ssh2_msg_channel_eof;
6896 ssh->packet_dispatch[SSH2_MSG_CHANNEL_CLOSE] = ssh2_msg_channel_close;
6897 ssh->packet_dispatch[SSH2_MSG_CHANNEL_OPEN_CONFIRMATION] =
6898 ssh2_msg_channel_open_confirmation;
6899 ssh->packet_dispatch[SSH2_MSG_CHANNEL_OPEN_FAILURE] =
6900 ssh2_msg_channel_open_failure;
6901 ssh->packet_dispatch[SSH2_MSG_CHANNEL_REQUEST] =
6902 ssh2_msg_channel_request;
6903 ssh->packet_dispatch[SSH2_MSG_CHANNEL_OPEN] =
6904 ssh2_msg_channel_open;
6905
6906 /*
783415f8 6907 * Potentially enable X11 forwarding.
6908 */
0ed48730 6909 if (ssh->mainchan && ssh->cfg.x11_forward) {
32874aea 6910 char proto[20], data[64];
6911 logevent("Requesting X11 forwarding");
302121de 6912 ssh->x11auth = x11_invent_auth(proto, sizeof(proto),
86916870 6913 data, sizeof(data), ssh->cfg.x11_auth);
6914 x11_get_real_auth(ssh->x11auth, ssh->cfg.x11_display);
ff3187f6 6915 s->pktout = ssh2_pkt_init(SSH2_MSG_CHANNEL_REQUEST);
6916 ssh2_pkt_adduint32(s->pktout, ssh->mainchan->remoteid);
6917 ssh2_pkt_addstring(s->pktout, "x11-req");
6918 ssh2_pkt_addbool(s->pktout, 1); /* want reply */
6919 ssh2_pkt_addbool(s->pktout, 0); /* many connections */
6920 ssh2_pkt_addstring(s->pktout, proto);
6921 ssh2_pkt_addstring(s->pktout, data);
6922 ssh2_pkt_adduint32(s->pktout, x11_get_screen_number(ssh->cfg.x11_display));
6923 ssh2_pkt_send(ssh, s->pktout);
32874aea 6924
b09eaa88 6925 crWaitUntilV(pktin);
32874aea 6926
ff3187f6 6927 if (pktin->type != SSH2_MSG_CHANNEL_SUCCESS) {
6928 if (pktin->type != SSH2_MSG_CHANNEL_FAILURE) {
6b5cf8b4 6929 bombout(("Unexpected response to X11 forwarding request:"
ff3187f6 6930 " packet type %d", pktin->type));
7ffdbc1a 6931 crStopV;
32874aea 6932 }
6933 logevent("X11 forwarding refused");
6934 } else {
6935 logevent("X11 forwarding enabled");
51470298 6936 ssh->X11_fwd_enabled = TRUE;
32874aea 6937 }
783415f8 6938 }
6939
6940 /*
bc240b21 6941 * Enable port forwardings.
6942 */
06fadff5 6943 ssh_setup_portfwd(ssh, &ssh->cfg);
bc240b21 6944
6945 /*
36c2a3e9 6946 * Potentially enable agent forwarding.
6947 */
0ed48730 6948 if (ssh->mainchan && ssh->cfg.agentfwd && agent_exists()) {
32874aea 6949 logevent("Requesting OpenSSH-style agent forwarding");
ff3187f6 6950 s->pktout = ssh2_pkt_init(SSH2_MSG_CHANNEL_REQUEST);
6951 ssh2_pkt_adduint32(s->pktout, ssh->mainchan->remoteid);
6952 ssh2_pkt_addstring(s->pktout, "auth-agent-req@openssh.com");
6953 ssh2_pkt_addbool(s->pktout, 1); /* want reply */
6954 ssh2_pkt_send(ssh, s->pktout);
32874aea 6955
b09eaa88 6956 crWaitUntilV(pktin);
32874aea 6957
ff3187f6 6958 if (pktin->type != SSH2_MSG_CHANNEL_SUCCESS) {
6959 if (pktin->type != SSH2_MSG_CHANNEL_FAILURE) {
6b5cf8b4 6960 bombout(("Unexpected response to agent forwarding request:"
ff3187f6 6961 " packet type %d", pktin->type));
7ffdbc1a 6962 crStopV;
32874aea 6963 }
6964 logevent("Agent forwarding refused");
6965 } else {
6966 logevent("Agent forwarding enabled");
51470298 6967 ssh->agentfwd_enabled = TRUE;
32874aea 6968 }
36c2a3e9 6969 }
6970
6971 /*
7cca0d81 6972 * Now allocate a pty for the session.
6973 */
0ed48730 6974 if (ssh->mainchan && !ssh->cfg.nopty) {
a5dd8467 6975 /* Unpick the terminal-speed string. */
6976 /* XXX perhaps we should allow no speeds to be sent. */
db219738 6977 ssh->ospeed = 38400; ssh->ispeed = 38400; /* last-resort defaults */
6978 sscanf(ssh->cfg.termspeed, "%d,%d", &ssh->ospeed, &ssh->ispeed);
a5dd8467 6979 /* Build the pty request. */
ff3187f6 6980 s->pktout = ssh2_pkt_init(SSH2_MSG_CHANNEL_REQUEST);
6981 ssh2_pkt_adduint32(s->pktout, ssh->mainchan->remoteid); /* recipient channel */
6982 ssh2_pkt_addstring(s->pktout, "pty-req");
6983 ssh2_pkt_addbool(s->pktout, 1); /* want reply */
6984 ssh2_pkt_addstring(s->pktout, ssh->cfg.termtype);
6985 ssh2_pkt_adduint32(s->pktout, ssh->term_width);
6986 ssh2_pkt_adduint32(s->pktout, ssh->term_height);
6987 ssh2_pkt_adduint32(s->pktout, 0); /* pixel width */
6988 ssh2_pkt_adduint32(s->pktout, 0); /* pixel height */
6989 ssh2_pkt_addstring_start(s->pktout);
6990 ssh2_pkt_addbyte(s->pktout, 128); /* TTY_OP_ISPEED */
6991 ssh2_pkt_adduint32(s->pktout, ssh->ispeed);
6992 ssh2_pkt_addbyte(s->pktout, 129); /* TTY_OP_OSPEED */
6993 ssh2_pkt_adduint32(s->pktout, ssh->ospeed);
6994 ssh2_pkt_addstring_data(s->pktout, "\0", 1); /* TTY_OP_END */
6995 ssh2_pkt_send(ssh, s->pktout);
51470298 6996 ssh->state = SSH_STATE_INTERMED;
32874aea 6997
b09eaa88 6998 crWaitUntilV(pktin);
32874aea 6999
ff3187f6 7000 if (pktin->type != SSH2_MSG_CHANNEL_SUCCESS) {
7001 if (pktin->type != SSH2_MSG_CHANNEL_FAILURE) {
6b5cf8b4 7002 bombout(("Unexpected response to pty request:"
ff3187f6 7003 " packet type %d", pktin->type));
7ffdbc1a 7004 crStopV;
32874aea 7005 }
51470298 7006 c_write_str(ssh, "Server refused to allocate pty\r\n");
7007 ssh->editing = ssh->echoing = 1;
32874aea 7008 } else {
a5dd8467 7009 logeventf(ssh, "Allocated pty (ospeed %dbps, ispeed %dbps)",
db219738 7010 ssh->ospeed, ssh->ispeed);
32874aea 7011 }
0965bee0 7012 } else {
51470298 7013 ssh->editing = ssh->echoing = 1;
7cca0d81 7014 }
7015
7016 /*
73feed4f 7017 * Send environment variables.
7018 *
7019 * Simplest thing here is to send all the requests at once, and
7020 * then wait for a whole bunch of successes or failures.
7021 */
7022 if (ssh->mainchan && *ssh->cfg.environmt) {
7023 char *e = ssh->cfg.environmt;
7024 char *var, *varend, *val;
7025
7026 s->num_env = 0;
7027
7028 while (*e) {
7029 var = e;
7030 while (*e && *e != '\t') e++;
7031 varend = e;
7032 if (*e == '\t') e++;
7033 val = e;
7034 while (*e) e++;
7035 e++;
7036
ff3187f6 7037 s->pktout = ssh2_pkt_init(SSH2_MSG_CHANNEL_REQUEST);
7038 ssh2_pkt_adduint32(s->pktout, ssh->mainchan->remoteid);
7039 ssh2_pkt_addstring(s->pktout, "env");
7040 ssh2_pkt_addbool(s->pktout, 1); /* want reply */
7041 ssh2_pkt_addstring_start(s->pktout);
7042 ssh2_pkt_addstring_data(s->pktout, var, varend-var);
7043 ssh2_pkt_addstring(s->pktout, val);
7044 ssh2_pkt_send(ssh, s->pktout);
73feed4f 7045
7046 s->num_env++;
7047 }
7048
7049 logeventf(ssh, "Sent %d environment variables", s->num_env);
7050
7051 s->env_ok = 0;
7052 s->env_left = s->num_env;
7053
7054 while (s->env_left > 0) {
b09eaa88 7055 crWaitUntilV(pktin);
73feed4f 7056
ff3187f6 7057 if (pktin->type != SSH2_MSG_CHANNEL_SUCCESS) {
7058 if (pktin->type != SSH2_MSG_CHANNEL_FAILURE) {
73feed4f 7059 bombout(("Unexpected response to environment request:"
ff3187f6 7060 " packet type %d", pktin->type));
73feed4f 7061 crStopV;
7062 }
7063 } else {
7064 s->env_ok++;
7065 }
7066
7067 s->env_left--;
7068 }
7069
7070 if (s->env_ok == s->num_env) {
7071 logevent("All environment variables successfully set");
7072 } else if (s->env_ok == 0) {
7073 logevent("All environment variables refused");
7074 c_write_str(ssh, "Server refused to set environment variables\r\n");
7075 } else {
7076 logeventf(ssh, "%d environment variables refused",
7077 s->num_env - s->env_ok);
7078 c_write_str(ssh, "Server refused to set all environment variables\r\n");
7079 }
7080 }
7081
7082 /*
fd5e5847 7083 * Start a shell or a remote command. We may have to attempt
7084 * this twice if the config data has provided a second choice
7085 * of command.
7cca0d81 7086 */
0ed48730 7087 if (ssh->mainchan) while (1) {
fd5e5847 7088 int subsys;
7089 char *cmd;
7090
51470298 7091 if (ssh->fallback_cmd) {
86916870 7092 subsys = ssh->cfg.ssh_subsys2;
7093 cmd = ssh->cfg.remote_cmd_ptr2;
fd5e5847 7094 } else {
86916870 7095 subsys = ssh->cfg.ssh_subsys;
7096 cmd = ssh->cfg.remote_cmd_ptr;
fd5e5847 7097 }
7098
ff3187f6 7099 s->pktout = ssh2_pkt_init(SSH2_MSG_CHANNEL_REQUEST);
7100 ssh2_pkt_adduint32(s->pktout, ssh->mainchan->remoteid); /* recipient channel */
fd5e5847 7101 if (subsys) {
ff3187f6 7102 ssh2_pkt_addstring(s->pktout, "subsystem");
7103 ssh2_pkt_addbool(s->pktout, 1); /* want reply */
7104 ssh2_pkt_addstring(s->pktout, cmd);
fd5e5847 7105 } else if (*cmd) {
ff3187f6 7106 ssh2_pkt_addstring(s->pktout, "exec");
7107 ssh2_pkt_addbool(s->pktout, 1); /* want reply */
7108 ssh2_pkt_addstring(s->pktout, cmd);
fd5e5847 7109 } else {
ff3187f6 7110 ssh2_pkt_addstring(s->pktout, "shell");
7111 ssh2_pkt_addbool(s->pktout, 1); /* want reply */
32874aea 7112 }
ff3187f6 7113 ssh2_pkt_send(ssh, s->pktout);
b09eaa88 7114
7115 crWaitUntilV(pktin);
7116
ff3187f6 7117 if (pktin->type != SSH2_MSG_CHANNEL_SUCCESS) {
7118 if (pktin->type != SSH2_MSG_CHANNEL_FAILURE) {
6b5cf8b4 7119 bombout(("Unexpected response to shell/command request:"
ff3187f6 7120 " packet type %d", pktin->type));
7ffdbc1a 7121 crStopV;
fd5e5847 7122 }
7123 /*
7124 * We failed to start the command. If this is the
7125 * fallback command, we really are finished; if it's
7126 * not, and if the fallback command exists, try falling
7127 * back to it before complaining.
7128 */
86916870 7129 if (!ssh->fallback_cmd && ssh->cfg.remote_cmd_ptr2 != NULL) {
fd5e5847 7130 logevent("Primary command failed; attempting fallback");
51470298 7131 ssh->fallback_cmd = TRUE;
fd5e5847 7132 continue;
7133 }
6b5cf8b4 7134 bombout(("Server refused to start a shell/command"));
7ffdbc1a 7135 crStopV;
fd5e5847 7136 } else {
7137 logevent("Started a shell/command");
32874aea 7138 }
fd5e5847 7139 break;
7cca0d81 7140 }
7141
51470298 7142 ssh->state = SSH_STATE_SESSION;
7143 if (ssh->size_needed)
7144 ssh_size(ssh, ssh->term_width, ssh->term_height);
7145 if (ssh->eof_needed)
7146 ssh_special(ssh, TS_EOF);
6e48c3fe 7147
7cca0d81 7148 /*
7149 * Transfer data!
7150 */
b9d7bcad 7151 if (ssh->ldisc)
7152 ldisc_send(ssh->ldisc, NULL, 0, 0);/* cause ldisc to notice changes */
0ed48730 7153 if (ssh->mainchan)
7154 ssh->send_ok = 1;
7cca0d81 7155 while (1) {
e5574168 7156 crReturnV;
51470298 7157 s->try_send = FALSE;
ff3187f6 7158 if (pktin) {
2b7540a7 7159
51df0ab5 7160 /*
7161 * _All_ the connection-layer packets we expect to
7162 * receive are now handled by the dispatch table.
7163 * Anything that reaches here must be bogus.
7164 */
32874aea 7165
51df0ab5 7166 bombout(("Strange packet received: type %d", pktin->type));
7167 crStopV;
0ed48730 7168 } else if (ssh->mainchan) {
32874aea 7169 /*
7170 * We have spare data. Add it to the channel buffer.
7171 */
d8baa528 7172 ssh2_add_channel_data(ssh->mainchan, (char *)in, inlen);
51470298 7173 s->try_send = TRUE;
32874aea 7174 }
51470298 7175 if (s->try_send) {
32874aea 7176 int i;
7177 struct ssh_channel *c;
7178 /*
7179 * Try to send data on all channels if we can.
7180 */
51470298 7181 for (i = 0; NULL != (c = index234(ssh->channels, i)); i++) {
a6253970 7182 int bufsize;
7183 if (c->closes)
7184 continue; /* don't send on closing channels */
7185 bufsize = ssh2_try_send(c);
5471d09a 7186 if (bufsize == 0) {
7187 switch (c->type) {
7188 case CHAN_MAINSESSION:
7189 /* stdin need not receive an unthrottle
7190 * notification since it will be polled */
7191 break;
7192 case CHAN_X11:
7193 x11_unthrottle(c->u.x11.s);
7194 break;
7195 case CHAN_AGENT:
7196 /* agent sockets are request/response and need no
7197 * buffer management */
7198 break;
7199 case CHAN_SOCKDATA:
7200 pfd_unthrottle(c->u.pfd.s);
7201 break;
7202 }
7203 }
7204 }
7cca0d81 7205 }
e5574168 7206 }
7207
7208 crFinishV;
7209}
7210
7211/*
b09eaa88 7212 * Handlers for SSH2 messages that might arrive at any moment.
7213 */
7214void ssh2_msg_disconnect(Ssh ssh, struct Packet *pktin)
7215{
7216 /* log reason code in disconnect message */
7217 char *buf, *msg;
7218 int nowlen, reason, msglen;
7219
7220 reason = ssh_pkt_getuint32(pktin);
7221 ssh_pkt_getstring(pktin, &msg, &msglen);
7222
7223 if (reason > 0 && reason < lenof(ssh2_disconnect_reasons)) {
7224 buf = dupprintf("Received disconnect message (%s)",
7225 ssh2_disconnect_reasons[reason]);
7226 } else {
7227 buf = dupprintf("Received disconnect message (unknown"
7228 " type %d)", reason);
7229 }
7230 logevent(buf);
7231 sfree(buf);
7232 buf = dupprintf("Disconnection message text: %n%.*s",
7233 &nowlen, msglen, msg);
7234 logevent(buf);
7235 bombout(("Server sent disconnect message\ntype %d (%s):\n\"%s\"",
7236 reason,
7237 (reason > 0 && reason < lenof(ssh2_disconnect_reasons)) ?
7238 ssh2_disconnect_reasons[reason] : "unknown",
7239 buf+nowlen));
7240 sfree(buf);
7241}
7242
7243void ssh2_msg_debug(Ssh ssh, struct Packet *pktin)
7244{
7245 /* log the debug message */
7246 char *buf, *msg;
7247 int msglen;
7248 int always_display;
7249
7250 /* XXX maybe we should actually take notice of this */
7251 always_display = ssh2_pkt_getbool(pktin);
7252 ssh_pkt_getstring(pktin, &msg, &msglen);
7253
7254 buf = dupprintf("Remote debug message: %.*s", msglen, msg);
7255 logevent(buf);
7256 sfree(buf);
7257}
7258
7259void ssh2_msg_something_unimplemented(Ssh ssh, struct Packet *pktin)
7260{
7261 struct Packet *pktout;
7262 pktout = ssh2_pkt_init(SSH2_MSG_UNIMPLEMENTED);
7263 ssh2_pkt_adduint32(pktout, pktin->sequence);
7264 /*
7265 * UNIMPLEMENTED messages MUST appear in the same order as the
7266 * messages they respond to. Hence, never queue them.
7267 */
7268 ssh2_pkt_send_noqueue(ssh, pktout);
7269}
7270
7271/*
7cca0d81 7272 * Handle the top-level SSH2 protocol.
7273 */
b09eaa88 7274static void ssh2_protocol_setup(Ssh ssh)
7275{
7276 int i;
7277
7278 /*
7279 * Most messages cause SSH2_MSG_UNIMPLEMENTED.
7280 */
7281 for (i = 0; i < 256; i++)
7282 ssh->packet_dispatch[i] = ssh2_msg_something_unimplemented;
7283
7284 /*
7285 * Any message we actually understand, we set to NULL so that
7286 * the coroutines will get it.
7287 */
7288 ssh->packet_dispatch[SSH2_MSG_UNIMPLEMENTED] = NULL;
7289 ssh->packet_dispatch[SSH2_MSG_SERVICE_REQUEST] = NULL;
7290 ssh->packet_dispatch[SSH2_MSG_SERVICE_ACCEPT] = NULL;
7291 ssh->packet_dispatch[SSH2_MSG_KEXINIT] = NULL;
7292 ssh->packet_dispatch[SSH2_MSG_NEWKEYS] = NULL;
7293 ssh->packet_dispatch[SSH2_MSG_KEXDH_INIT] = NULL;
7294 ssh->packet_dispatch[SSH2_MSG_KEXDH_REPLY] = NULL;
7295 /* ssh->packet_dispatch[SSH2_MSG_KEX_DH_GEX_REQUEST] = NULL; duplicate case value */
7296 /* ssh->packet_dispatch[SSH2_MSG_KEX_DH_GEX_GROUP] = NULL; duplicate case value */
7297 ssh->packet_dispatch[SSH2_MSG_KEX_DH_GEX_INIT] = NULL;
7298 ssh->packet_dispatch[SSH2_MSG_KEX_DH_GEX_REPLY] = NULL;
7299 ssh->packet_dispatch[SSH2_MSG_USERAUTH_REQUEST] = NULL;
7300 ssh->packet_dispatch[SSH2_MSG_USERAUTH_FAILURE] = NULL;
7301 ssh->packet_dispatch[SSH2_MSG_USERAUTH_SUCCESS] = NULL;
7302 ssh->packet_dispatch[SSH2_MSG_USERAUTH_BANNER] = NULL;
7303 ssh->packet_dispatch[SSH2_MSG_USERAUTH_PK_OK] = NULL;
7304 /* ssh->packet_dispatch[SSH2_MSG_USERAUTH_PASSWD_CHANGEREQ] = NULL; duplicate case value */
7305 /* ssh->packet_dispatch[SSH2_MSG_USERAUTH_INFO_REQUEST] = NULL; duplicate case value */
7306 ssh->packet_dispatch[SSH2_MSG_USERAUTH_INFO_RESPONSE] = NULL;
7307 ssh->packet_dispatch[SSH2_MSG_GLOBAL_REQUEST] = NULL;
7308 ssh->packet_dispatch[SSH2_MSG_REQUEST_SUCCESS] = NULL;
7309 ssh->packet_dispatch[SSH2_MSG_REQUEST_FAILURE] = NULL;
7310 ssh->packet_dispatch[SSH2_MSG_CHANNEL_OPEN] = NULL;
7311 ssh->packet_dispatch[SSH2_MSG_CHANNEL_OPEN_CONFIRMATION] = NULL;
7312 ssh->packet_dispatch[SSH2_MSG_CHANNEL_OPEN_FAILURE] = NULL;
7313 ssh->packet_dispatch[SSH2_MSG_CHANNEL_WINDOW_ADJUST] = NULL;
7314 ssh->packet_dispatch[SSH2_MSG_CHANNEL_DATA] = NULL;
7315 ssh->packet_dispatch[SSH2_MSG_CHANNEL_EXTENDED_DATA] = NULL;
7316 ssh->packet_dispatch[SSH2_MSG_CHANNEL_EOF] = NULL;
7317 ssh->packet_dispatch[SSH2_MSG_CHANNEL_CLOSE] = NULL;
7318 ssh->packet_dispatch[SSH2_MSG_CHANNEL_REQUEST] = NULL;
7319 ssh->packet_dispatch[SSH2_MSG_CHANNEL_SUCCESS] = NULL;
7320 ssh->packet_dispatch[SSH2_MSG_CHANNEL_FAILURE] = NULL;
7321
7322 /*
7323 * These special message types we install handlers for.
7324 */
7325 ssh->packet_dispatch[SSH2_MSG_DISCONNECT] = ssh2_msg_disconnect;
7326 ssh->packet_dispatch[SSH2_MSG_IGNORE] = ssh_msg_ignore; /* shared with ssh1 */
7327 ssh->packet_dispatch[SSH2_MSG_DEBUG] = ssh2_msg_debug;
7328}
7329
9442dd57 7330static void ssh2_timer(void *ctx, long now)
7331{
7332 Ssh ssh = (Ssh)ctx;
7333
e6c1536e 7334 if (!ssh->kex_in_progress && ssh->cfg.ssh_rekey_time != 0 &&
9442dd57 7335 now - ssh->next_rekey >= 0) {
f382c87d 7336 do_ssh2_transport(ssh, "timeout", -1, NULL);
9442dd57 7337 }
7338}
7339
1c1a7262 7340static void ssh2_protocol(Ssh ssh, void *vin, int inlen,
ff3187f6 7341 struct Packet *pktin)
7cca0d81 7342{
1c1a7262 7343 unsigned char *in = (unsigned char *)vin;
b09eaa88 7344 if (ssh->state == SSH_STATE_CLOSED)
7345 return;
7346
9442dd57 7347 if (pktin) {
7348 ssh->incoming_data_size += pktin->encrypted_len;
7349 if (!ssh->kex_in_progress &&
d57f70af 7350 ssh->max_data_size != 0 &&
7351 ssh->incoming_data_size > ssh->max_data_size)
f382c87d 7352 do_ssh2_transport(ssh, "too much data received", -1, NULL);
9442dd57 7353 }
7354
b09eaa88 7355 if (pktin && ssh->packet_dispatch[pktin->type]) {
7356 ssh->packet_dispatch[pktin->type](ssh, pktin);
32874aea 7357 return;
b09eaa88 7358 }
7359
7360 if (!ssh->protocol_initial_phase_done ||
7361 (pktin && pktin->type >= 20 && pktin->type < 50)) {
7362 if (do_ssh2_transport(ssh, in, inlen, pktin) &&
7363 !ssh->protocol_initial_phase_done) {
7364 ssh->protocol_initial_phase_done = TRUE;
7365 /*
7366 * Allow authconn to initialise itself.
7367 */
7368 do_ssh2_authconn(ssh, NULL, 0, NULL);
7369 }
7370 } else {
7371 do_ssh2_authconn(ssh, in, inlen, pktin);
7372 }
7cca0d81 7373}
7374
7375/*
8df7a775 7376 * Called to set up the connection.
374330e2 7377 *
7378 * Returns an error message, or NULL on success.
374330e2 7379 */
cbe2d68f 7380static const char *ssh_init(void *frontend_handle, void **backend_handle,
7381 Config *cfg,
79bf227b 7382 char *host, int port, char **realhost, int nodelay,
7383 int keepalive)
32874aea 7384{
cbe2d68f 7385 const char *p;
51470298 7386 Ssh ssh;
7387
3d88e64d 7388 ssh = snew(struct ssh_tag);
86916870 7389 ssh->cfg = *cfg; /* STRUCTURE COPY */
125105d1 7390 ssh->version = 0; /* when not ready yet */
51470298 7391 ssh->s = NULL;
7392 ssh->cipher = NULL;
371e569c 7393 ssh->v1_cipher_ctx = NULL;
0183b242 7394 ssh->crcda_ctx = NULL;
51470298 7395 ssh->cscipher = NULL;
371e569c 7396 ssh->cs_cipher_ctx = NULL;
51470298 7397 ssh->sccipher = NULL;
371e569c 7398 ssh->sc_cipher_ctx = NULL;
51470298 7399 ssh->csmac = NULL;
a8327734 7400 ssh->cs_mac_ctx = NULL;
51470298 7401 ssh->scmac = NULL;
e0e1a00d 7402 ssh->sc_mac_ctx = NULL;
51470298 7403 ssh->cscomp = NULL;
5366aed8 7404 ssh->cs_comp_ctx = NULL;
51470298 7405 ssh->sccomp = NULL;
5366aed8 7406 ssh->sc_comp_ctx = NULL;
51470298 7407 ssh->kex = NULL;
389aa499 7408 ssh->kex_ctx = NULL;
51470298 7409 ssh->hostkey = NULL;
7410 ssh->exitcode = -1;
ac934965 7411 ssh->close_expected = FALSE;
51470298 7412 ssh->state = SSH_STATE_PREPACKET;
7413 ssh->size_needed = FALSE;
7414 ssh->eof_needed = FALSE;
b9d7bcad 7415 ssh->ldisc = NULL;
a8327734 7416 ssh->logctx = NULL;
51470298 7417 ssh->deferred_send_data = NULL;
7418 ssh->deferred_len = 0;
7419 ssh->deferred_size = 0;
7420 ssh->fallback_cmd = 0;
7421 ssh->pkt_ctx = 0;
302121de 7422 ssh->x11auth = NULL;
be738459 7423 ssh->v1_compressing = FALSE;
51470298 7424 ssh->v2_outgoing_sequence = 0;
7425 ssh->ssh1_rdpkt_crstate = 0;
7426 ssh->ssh2_rdpkt_crstate = 0;
7427 ssh->do_ssh_init_crstate = 0;
7428 ssh->ssh_gotdata_crstate = 0;
b09eaa88 7429 ssh->do_ssh1_connection_crstate = 0;
51470298 7430 ssh->do_ssh1_login_crstate = 0;
7431 ssh->do_ssh2_transport_crstate = 0;
7432 ssh->do_ssh2_authconn_crstate = 0;
7433 ssh->do_ssh_init_state = NULL;
7434 ssh->do_ssh1_login_state = NULL;
7435 ssh->do_ssh2_transport_state = NULL;
7436 ssh->do_ssh2_authconn_state = NULL;
6571dbfd 7437 ssh->mainchan = NULL;
968d2d92 7438 ssh->throttled_all = 0;
7439 ssh->v1_stdout_throttling = 0;
590f6a5f 7440 ssh->queue = NULL;
7441 ssh->queuelen = ssh->queuesize = 0;
7442 ssh->queueing = FALSE;
06fadff5 7443 ssh->qhead = ssh->qtail = NULL;
e13bba36 7444 ssh->deferred_rekey_reason = NULL;
51470298 7445
7446 *backend_handle = ssh;
32874aea 7447
8f203108 7448#ifdef MSCRYPTOAPI
32874aea 7449 if (crypto_startup() == 0)
8f203108 7450 return "Microsoft high encryption pack not installed!";
7451#endif
374330e2 7452
51470298 7453 ssh->frontend = frontend_handle;
86916870 7454 ssh->term_width = ssh->cfg.width;
7455 ssh->term_height = ssh->cfg.height;
887035a5 7456
fabd1805 7457 ssh->channels = NULL;
7458 ssh->rportfwds = NULL;
f47a5ffb 7459 ssh->portfwds = NULL;
fabd1805 7460
51470298 7461 ssh->send_ok = 0;
7462 ssh->editing = 0;
7463 ssh->echoing = 0;
7464 ssh->v1_throttle_count = 0;
7465 ssh->overall_bufsize = 0;
7466 ssh->fallback_cmd = 0;
8df7a775 7467
3648d4c5 7468 ssh->protocol = NULL;
7469
b09eaa88 7470 ssh->protocol_initial_phase_done = FALSE;
7471
39934deb 7472 ssh->pinger = NULL;
7473
9442dd57 7474 ssh->incoming_data_size = ssh->outgoing_data_size =
7475 ssh->deferred_data_size = 0L;
d57f70af 7476 ssh->max_data_size = parse_blocksize(ssh->cfg.ssh_rekey_data);
9442dd57 7477 ssh->kex_in_progress = FALSE;
7478
79bf227b 7479 p = connect_to_host(ssh, host, port, realhost, nodelay, keepalive);
fb09bf1c 7480 if (p != NULL)
7481 return p;
374330e2 7482
5d17ccfc 7483 random_ref();
7484
374330e2 7485 return NULL;
7486}
7487
fabd1805 7488static void ssh_free(void *handle)
7489{
7490 Ssh ssh = (Ssh) handle;
7491 struct ssh_channel *c;
7492 struct ssh_rportfwd *pf;
7493
7494 if (ssh->v1_cipher_ctx)
7495 ssh->cipher->free_context(ssh->v1_cipher_ctx);
7496 if (ssh->cs_cipher_ctx)
7497 ssh->cscipher->free_context(ssh->cs_cipher_ctx);
7498 if (ssh->sc_cipher_ctx)
7499 ssh->sccipher->free_context(ssh->sc_cipher_ctx);
7500 if (ssh->cs_mac_ctx)
7501 ssh->csmac->free_context(ssh->cs_mac_ctx);
7502 if (ssh->sc_mac_ctx)
7503 ssh->scmac->free_context(ssh->sc_mac_ctx);
29b1d0b3 7504 if (ssh->cs_comp_ctx) {
7505 if (ssh->cscomp)
7506 ssh->cscomp->compress_cleanup(ssh->cs_comp_ctx);
7507 else
7508 zlib_compress_cleanup(ssh->cs_comp_ctx);
7509 }
7510 if (ssh->sc_comp_ctx) {
7511 if (ssh->sccomp)
7512 ssh->sccomp->decompress_cleanup(ssh->sc_comp_ctx);
7513 else
7514 zlib_decompress_cleanup(ssh->sc_comp_ctx);
7515 }
fabd1805 7516 if (ssh->kex_ctx)
7517 dh_cleanup(ssh->kex_ctx);
7518 sfree(ssh->savedhost);
7519
590f6a5f 7520 while (ssh->queuelen-- > 0)
7521 ssh_free_packet(ssh->queue[ssh->queuelen]);
7522 sfree(ssh->queue);
7523
06fadff5 7524 while (ssh->qhead) {
7525 struct queued_handler *qh = ssh->qhead;
7526 ssh->qhead = qh->next;
7527 sfree(ssh->qhead);
7528 }
7529 ssh->qhead = ssh->qtail = NULL;
7530
fabd1805 7531 if (ssh->channels) {
7532 while ((c = delpos234(ssh->channels, 0)) != NULL) {
7533 switch (c->type) {
7534 case CHAN_X11:
7535 if (c->u.x11.s != NULL)
7536 x11_close(c->u.x11.s);
7537 break;
7538 case CHAN_SOCKDATA:
7539 if (c->u.pfd.s != NULL)
7540 pfd_close(c->u.pfd.s);
7541 break;
7542 }
7543 sfree(c);
7544 }
7545 freetree234(ssh->channels);
cdb52705 7546 ssh->channels = NULL;
fabd1805 7547 }
7548
7549 if (ssh->rportfwds) {
7550 while ((pf = delpos234(ssh->rportfwds, 0)) != NULL)
7551 sfree(pf);
7552 freetree234(ssh->rportfwds);
cdb52705 7553 ssh->rportfwds = NULL;
fabd1805 7554 }
7555 sfree(ssh->deferred_send_data);
7556 if (ssh->x11auth)
7557 x11_free_auth(ssh->x11auth);
7558 sfree(ssh->do_ssh_init_state);
7559 sfree(ssh->do_ssh1_login_state);
7560 sfree(ssh->do_ssh2_transport_state);
7561 sfree(ssh->do_ssh2_authconn_state);
679539d7 7562 if (ssh->crcda_ctx) {
7563 crcda_free_context(ssh->crcda_ctx);
7564 ssh->crcda_ctx = NULL;
7565 }
fabd1805 7566 if (ssh->s)
ac934965 7567 ssh_do_close(ssh, TRUE);
9442dd57 7568 expire_timer_context(ssh);
39934deb 7569 if (ssh->pinger)
7570 pinger_free(ssh->pinger);
ee50e8b6 7571 sfree(ssh);
5d17ccfc 7572
7573 random_unref();
fabd1805 7574}
7575
374330e2 7576/*
86916870 7577 * Reconfigure the SSH backend.
86916870 7578 */
7579static void ssh_reconfig(void *handle, Config *cfg)
7580{
7581 Ssh ssh = (Ssh) handle;
e13bba36 7582 char *rekeying = NULL, rekey_mandatory = FALSE;
e6c1536e 7583 unsigned long old_max_data_size;
7584
39934deb 7585 pinger_reconfig(ssh->pinger, &ssh->cfg, cfg);
fda2feb1 7586 ssh_setup_portfwd(ssh, cfg);
e6c1536e 7587
7588 if (ssh->cfg.ssh_rekey_time != cfg->ssh_rekey_time &&
7589 cfg->ssh_rekey_time != 0) {
7590 long new_next = ssh->last_rekey + cfg->ssh_rekey_time*60*TICKSPERSEC;
7591 long now = GETTICKCOUNT();
7592
7593 if (new_next - now < 0) {
f382c87d 7594 rekeying = "timeout shortened";
e6c1536e 7595 } else {
7596 ssh->next_rekey = schedule_timer(new_next - now, ssh2_timer, ssh);
7597 }
7598 }
7599
7600 old_max_data_size = ssh->max_data_size;
7601 ssh->max_data_size = parse_blocksize(cfg->ssh_rekey_data);
7602 if (old_max_data_size != ssh->max_data_size &&
7603 ssh->max_data_size != 0) {
7604 if (ssh->outgoing_data_size > ssh->max_data_size ||
7605 ssh->incoming_data_size > ssh->max_data_size)
f382c87d 7606 rekeying = "data limit lowered";
e6c1536e 7607 }
7608
e13bba36 7609 if (ssh->cfg.compression != cfg->compression) {
f382c87d 7610 rekeying = "compression setting changed";
e13bba36 7611 rekey_mandatory = TRUE;
7612 }
7613
7614 if (ssh->cfg.ssh2_des_cbc != cfg->ssh2_des_cbc ||
7615 memcmp(ssh->cfg.ssh_cipherlist, cfg->ssh_cipherlist,
7616 sizeof(ssh->cfg.ssh_cipherlist))) {
f382c87d 7617 rekeying = "cipher settings changed";
e13bba36 7618 rekey_mandatory = TRUE;
e6c1536e 7619 }
7620
86916870 7621 ssh->cfg = *cfg; /* STRUCTURE COPY */
e13bba36 7622
7623 if (rekeying) {
7624 if (!ssh->kex_in_progress) {
7625 do_ssh2_transport(ssh, rekeying, -1, NULL);
7626 } else if (rekey_mandatory) {
7627 ssh->deferred_rekey_reason = rekeying;
7628 }
7629 }
86916870 7630}
7631
7632/*
374330e2 7633 * Called to send data down the Telnet connection.
7634 */
51470298 7635static int ssh_send(void *handle, char *buf, int len)
32874aea 7636{
51470298 7637 Ssh ssh = (Ssh) handle;
7638
7639 if (ssh == NULL || ssh->s == NULL || ssh->protocol == NULL)
5471d09a 7640 return 0;
374330e2 7641
d8baa528 7642 ssh->protocol(ssh, (unsigned char *)buf, len, 0);
5471d09a 7643
51470298 7644 return ssh_sendbuffer(ssh);
5471d09a 7645}
7646
7647/*
7648 * Called to query the current amount of buffered stdin data.
7649 */
51470298 7650static int ssh_sendbuffer(void *handle)
5471d09a 7651{
51470298 7652 Ssh ssh = (Ssh) handle;
5471d09a 7653 int override_value;
7654
51470298 7655 if (ssh == NULL || ssh->s == NULL || ssh->protocol == NULL)
5471d09a 7656 return 0;
7657
7658 /*
7659 * If the SSH socket itself has backed up, add the total backup
7660 * size on that to any individual buffer on the stdin channel.
7661 */
7662 override_value = 0;
51470298 7663 if (ssh->throttled_all)
7664 override_value = ssh->overall_bufsize;
5471d09a 7665
51470298 7666 if (ssh->version == 1) {
5471d09a 7667 return override_value;
51470298 7668 } else if (ssh->version == 2) {
7669 if (!ssh->mainchan || ssh->mainchan->closes > 0)
5471d09a 7670 return override_value;
7671 else
51470298 7672 return (override_value +
7673 bufchain_size(&ssh->mainchan->v.v2.outbuffer));
5471d09a 7674 }
7675
7676 return 0;
374330e2 7677}
7678
7679/*
6e48c3fe 7680 * Called to set the size of the window from SSH's POV.
374330e2 7681 */
51470298 7682static void ssh_size(void *handle, int width, int height)
32874aea 7683{
51470298 7684 Ssh ssh = (Ssh) handle;
ff3187f6 7685 struct Packet *pktout;
51470298 7686
7687 ssh->term_width = width;
7688 ssh->term_height = height;
f278d6f8 7689
51470298 7690 switch (ssh->state) {
374330e2 7691 case SSH_STATE_BEFORE_SIZE:
3687d221 7692 case SSH_STATE_PREPACKET:
21248260 7693 case SSH_STATE_CLOSED:
374330e2 7694 break; /* do nothing */
7695 case SSH_STATE_INTERMED:
51470298 7696 ssh->size_needed = TRUE; /* buffer for later */
374330e2 7697 break;
7698 case SSH_STATE_SESSION:
86916870 7699 if (!ssh->cfg.nopty) {
51470298 7700 if (ssh->version == 1) {
7701 send_packet(ssh, SSH1_CMSG_WINDOW_SIZE,
7702 PKT_INT, ssh->term_height,
7703 PKT_INT, ssh->term_width,
32874aea 7704 PKT_INT, 0, PKT_INT, 0, PKT_END);
0ed48730 7705 } else if (ssh->mainchan) {
ff3187f6 7706 pktout = ssh2_pkt_init(SSH2_MSG_CHANNEL_REQUEST);
7707 ssh2_pkt_adduint32(pktout, ssh->mainchan->remoteid);
7708 ssh2_pkt_addstring(pktout, "window-change");
7709 ssh2_pkt_addbool(pktout, 0);
7710 ssh2_pkt_adduint32(pktout, ssh->term_width);
7711 ssh2_pkt_adduint32(pktout, ssh->term_height);
7712 ssh2_pkt_adduint32(pktout, 0);
7713 ssh2_pkt_adduint32(pktout, 0);
7714 ssh2_pkt_send(ssh, pktout);
32874aea 7715 }
7716 }
7717 break;
374330e2 7718 }
7719}
7720
7721/*
125105d1 7722 * Return a list of the special codes that make sense in this
7723 * protocol.
7724 */
7725static const struct telnet_special *ssh_get_specials(void *handle)
7726{
786ba75e 7727 static const struct telnet_special ssh1_ignore_special[] = {
7728 {"IGNORE message", TS_NOP}
7729 };
7730 static const struct telnet_special ssh2_transport_specials[] = {
62638676 7731 {"IGNORE message", TS_NOP},
9442dd57 7732 {"Repeat key exchange", TS_REKEY},
62638676 7733 };
7734 static const struct telnet_special ssh2_session_specials[] = {
6f2d0cde 7735 {NULL, TS_SEP},
7736 {"Break", TS_BRK},
786ba75e 7737 /* These are the signal names defined by draft-ietf-secsh-connect-23.
6f2d0cde 7738 * They include all the ISO C signals, but are a subset of the POSIX
7739 * required signals. */
7740 {"SIGINT (Interrupt)", TS_SIGINT},
7741 {"SIGTERM (Terminate)", TS_SIGTERM},
7742 {"SIGKILL (Kill)", TS_SIGKILL},
7743 {"SIGQUIT (Quit)", TS_SIGQUIT},
7744 {"SIGHUP (Hangup)", TS_SIGHUP},
7745 {"More signals", TS_SUBMENU},
7746 {"SIGABRT", TS_SIGABRT}, {"SIGALRM", TS_SIGALRM},
7747 {"SIGFPE", TS_SIGFPE}, {"SIGILL", TS_SIGILL},
7748 {"SIGPIPE", TS_SIGPIPE}, {"SIGSEGV", TS_SIGSEGV},
7749 {"SIGUSR1", TS_SIGUSR1}, {"SIGUSR2", TS_SIGUSR2},
7750 {NULL, TS_EXITMENU}
62638676 7751 };
7752 static const struct telnet_special specials_end[] = {
6f2d0cde 7753 {NULL, TS_EXITMENU}
62638676 7754 };
786ba75e 7755 /* XXX review this length for any changes: */
7756 static struct telnet_special ssh_specials[lenof(ssh2_transport_specials) +
62638676 7757 lenof(ssh2_session_specials) +
7758 lenof(specials_end)];
125105d1 7759 Ssh ssh = (Ssh) handle;
62638676 7760 int i = 0;
7761#define ADD_SPECIALS(name) \
7762 do { \
7763 assert((i + lenof(name)) <= lenof(ssh_specials)); \
7764 memcpy(&ssh_specials[i], name, sizeof name); \
7765 i += lenof(name); \
7766 } while(0)
125105d1 7767
7768 if (ssh->version == 1) {
62638676 7769 /* Don't bother offering IGNORE if we've decided the remote
7770 * won't cope with it, since we wouldn't bother sending it if
7771 * asked anyway. */
7772 if (!(ssh->remote_bugs & BUG_CHOKES_ON_SSH1_IGNORE))
786ba75e 7773 ADD_SPECIALS(ssh1_ignore_special);
125105d1 7774 } else if (ssh->version == 2) {
786ba75e 7775 ADD_SPECIALS(ssh2_transport_specials);
62638676 7776 if (ssh->mainchan)
7777 ADD_SPECIALS(ssh2_session_specials);
7778 } /* else we're not ready yet */
7779
7780 if (i) {
7781 ADD_SPECIALS(specials_end);
7782 return ssh_specials;
7783 } else {
125105d1 7784 return NULL;
62638676 7785 }
7786#undef ADD_SPECIALS
125105d1 7787}
7788
7789/*
6abbf9e3 7790 * Send Telnet special codes. TS_EOF is useful for `plink', so you
7791 * can send an EOF and collect resulting output (e.g. `plink
7792 * hostname sort').
374330e2 7793 */
51470298 7794static void ssh_special(void *handle, Telnet_Special code)
32874aea 7795{
51470298 7796 Ssh ssh = (Ssh) handle;
ff3187f6 7797 struct Packet *pktout;
51470298 7798
6abbf9e3 7799 if (code == TS_EOF) {
51470298 7800 if (ssh->state != SSH_STATE_SESSION) {
32874aea 7801 /*
7802 * Buffer the EOF in case we are pre-SESSION, so we can
7803 * send it as soon as we reach SESSION.
7804 */
7805 if (code == TS_EOF)
51470298 7806 ssh->eof_needed = TRUE;
32874aea 7807 return;
7808 }
51470298 7809 if (ssh->version == 1) {
7810 send_packet(ssh, SSH1_CMSG_EOF, PKT_END);
0ed48730 7811 } else if (ssh->mainchan) {
ff3187f6 7812 struct Packet *pktout = ssh2_pkt_init(SSH2_MSG_CHANNEL_EOF);
7813 ssh2_pkt_adduint32(pktout, ssh->mainchan->remoteid);
7814 ssh2_pkt_send(ssh, pktout);
32874aea 7815 }
7816 logevent("Sent EOF message");
125105d1 7817 } else if (code == TS_PING || code == TS_NOP) {
51470298 7818 if (ssh->state == SSH_STATE_CLOSED
7819 || ssh->state == SSH_STATE_PREPACKET) return;
7820 if (ssh->version == 1) {
7821 if (!(ssh->remote_bugs & BUG_CHOKES_ON_SSH1_IGNORE))
7822 send_packet(ssh, SSH1_MSG_IGNORE, PKT_STR, "", PKT_END);
32874aea 7823 } else {
ff3187f6 7824 pktout = ssh2_pkt_init(SSH2_MSG_IGNORE);
7825 ssh2_pkt_addstring_start(pktout);
590f6a5f 7826 ssh2_pkt_send_noqueue(ssh, pktout);
32874aea 7827 }
9442dd57 7828 } else if (code == TS_REKEY) {
7829 if (!ssh->kex_in_progress && ssh->version == 2) {
f382c87d 7830 do_ssh2_transport(ssh, "at user request", -1, NULL);
9442dd57 7831 }
125105d1 7832 } else if (code == TS_BRK) {
7833 if (ssh->state == SSH_STATE_CLOSED
7834 || ssh->state == SSH_STATE_PREPACKET) return;
7835 if (ssh->version == 1) {
7836 logevent("Unable to send BREAK signal in SSH1");
0ed48730 7837 } else if (ssh->mainchan) {
ff3187f6 7838 pktout = ssh2_pkt_init(SSH2_MSG_CHANNEL_REQUEST);
7839 ssh2_pkt_adduint32(pktout, ssh->mainchan->remoteid);
7840 ssh2_pkt_addstring(pktout, "break");
7841 ssh2_pkt_addbool(pktout, 0);
7842 ssh2_pkt_adduint32(pktout, 0); /* default break length */
7843 ssh2_pkt_send(ssh, pktout);
125105d1 7844 }
6abbf9e3 7845 } else {
6f2d0cde 7846 /* Is is a POSIX signal? */
7847 char *signame = NULL;
7848 if (code == TS_SIGABRT) signame = "ABRT";
7849 if (code == TS_SIGALRM) signame = "ALRM";
7850 if (code == TS_SIGFPE) signame = "FPE";
7851 if (code == TS_SIGHUP) signame = "HUP";
7852 if (code == TS_SIGILL) signame = "ILL";
7853 if (code == TS_SIGINT) signame = "INT";
7854 if (code == TS_SIGKILL) signame = "KILL";
7855 if (code == TS_SIGPIPE) signame = "PIPE";
7856 if (code == TS_SIGQUIT) signame = "QUIT";
7857 if (code == TS_SIGSEGV) signame = "SEGV";
7858 if (code == TS_SIGTERM) signame = "TERM";
7859 if (code == TS_SIGUSR1) signame = "USR1";
7860 if (code == TS_SIGUSR2) signame = "USR2";
7861 /* The SSH-2 protocol does in principle support arbitrary named
7862 * signals, including signame@domain, but we don't support those. */
7863 if (signame) {
7864 /* It's a signal. */
7865 if (ssh->version == 2 && ssh->mainchan) {
ff3187f6 7866 pktout = ssh2_pkt_init(SSH2_MSG_CHANNEL_REQUEST);
7867 ssh2_pkt_adduint32(pktout, ssh->mainchan->remoteid);
7868 ssh2_pkt_addstring(pktout, "signal");
7869 ssh2_pkt_addbool(pktout, 0);
7870 ssh2_pkt_addstring(pktout, signame);
7871 ssh2_pkt_send(ssh, pktout);
6f2d0cde 7872 logeventf(ssh, "Sent signal SIG%s", signame);
7873 }
7874 } else {
7875 /* Never heard of it. Do nothing */
7876 }
6abbf9e3 7877 }
374330e2 7878}
7879
51470298 7880void *new_sock_channel(void *handle, Socket s)
d74d141c 7881{
51470298 7882 Ssh ssh = (Ssh) handle;
d74d141c 7883 struct ssh_channel *c;
3d88e64d 7884 c = snew(struct ssh_channel);
51470298 7885 c->ssh = ssh;
d74d141c 7886
7887 if (c) {
bc240b21 7888 c->remoteid = -1; /* to be set when open confirmed */
51470298 7889 c->localid = alloc_channel_id(ssh);
d74d141c 7890 c->closes = 0;
bc240b21 7891 c->type = CHAN_SOCKDATA_DORMANT;/* identify channel type */
d74d141c 7892 c->u.pfd.s = s;
013dd8c0 7893 bufchain_init(&c->v.v2.outbuffer);
51470298 7894 add234(ssh->channels, c);
d74d141c 7895 }
7896 return c;
7897}
7898
5471d09a 7899/*
7900 * This is called when stdout/stderr (the entity to which
7901 * from_backend sends data) manages to clear some backlog.
7902 */
ae9ae89f 7903static void ssh_unthrottle(void *handle, int bufsize)
5471d09a 7904{
51470298 7905 Ssh ssh = (Ssh) handle;
7906 if (ssh->version == 1) {
7907 if (ssh->v1_stdout_throttling && bufsize < SSH1_BUFFER_LIMIT) {
7908 ssh->v1_stdout_throttling = 0;
7909 ssh1_throttle(ssh, -1);
5471d09a 7910 }
7911 } else {
51470298 7912 if (ssh->mainchan && ssh->mainchan->closes == 0)
7913 ssh2_set_window(ssh->mainchan, OUR_V2_WINSIZE - bufsize);
5471d09a 7914 }
7915}
7916
6b78788a 7917void ssh_send_port_open(void *channel, char *hostname, int port, char *org)
d74d141c 7918{
7919 struct ssh_channel *c = (struct ssh_channel *)channel;
6b78788a 7920 Ssh ssh = c->ssh;
ff3187f6 7921 struct Packet *pktout;
d74d141c 7922
57356d63 7923 logeventf(ssh, "Opening forwarded connection to %s:%d", hostname, port);
d74d141c 7924
51470298 7925 if (ssh->version == 1) {
7926 send_packet(ssh, SSH1_MSG_PORT_OPEN,
bc240b21 7927 PKT_INT, c->localid,
7928 PKT_STR, hostname,
7929 PKT_INT, port,
31fb1866 7930 /* PKT_STR, <org:orgport>, */
bc240b21 7931 PKT_END);
7932 } else {
ff3187f6 7933 pktout = ssh2_pkt_init(SSH2_MSG_CHANNEL_OPEN);
7934 ssh2_pkt_addstring(pktout, "direct-tcpip");
7935 ssh2_pkt_adduint32(pktout, c->localid);
5471d09a 7936 c->v.v2.locwindow = OUR_V2_WINSIZE;
ff3187f6 7937 ssh2_pkt_adduint32(pktout, c->v.v2.locwindow);/* our window size */
954d5c5a 7938 ssh2_pkt_adduint32(pktout, OUR_V2_MAXPKT); /* our max pkt size */
ff3187f6 7939 ssh2_pkt_addstring(pktout, hostname);
7940 ssh2_pkt_adduint32(pktout, port);
bc240b21 7941 /*
7942 * We make up values for the originator data; partly it's
7943 * too much hassle to keep track, and partly I'm not
7944 * convinced the server should be told details like that
7945 * about my local network configuration.
7946 */
ff3187f6 7947 ssh2_pkt_addstring(pktout, "client-side-connection");
7948 ssh2_pkt_adduint32(pktout, 0);
7949 ssh2_pkt_send(ssh, pktout);
bc240b21 7950 }
d74d141c 7951}
7952
51470298 7953static Socket ssh_socket(void *handle)
32874aea 7954{
51470298 7955 Ssh ssh = (Ssh) handle;
7956 return ssh->s;
32874aea 7957}
8ccc75b0 7958
51470298 7959static int ssh_sendok(void *handle)
32874aea 7960{
51470298 7961 Ssh ssh = (Ssh) handle;
7962 return ssh->send_ok;
32874aea 7963}
fb09bf1c 7964
51470298 7965static int ssh_ldisc(void *handle, int option)
32874aea 7966{
51470298 7967 Ssh ssh = (Ssh) handle;
32874aea 7968 if (option == LD_ECHO)
51470298 7969 return ssh->echoing;
32874aea 7970 if (option == LD_EDIT)
51470298 7971 return ssh->editing;
0965bee0 7972 return FALSE;
7973}
7974
b9d7bcad 7975static void ssh_provide_ldisc(void *handle, void *ldisc)
7976{
7977 Ssh ssh = (Ssh) handle;
7978 ssh->ldisc = ldisc;
7979}
7980
a8327734 7981static void ssh_provide_logctx(void *handle, void *logctx)
7982{
7983 Ssh ssh = (Ssh) handle;
7984 ssh->logctx = logctx;
7985}
7986
51470298 7987static int ssh_return_exitcode(void *handle)
7988{
7989 Ssh ssh = (Ssh) handle;
3bb2f322 7990 if (ssh->s != NULL)
7991 return -1;
7992 else
7993 return (ssh->exitcode >= 0 ? ssh->exitcode : 0);
51470298 7994}
7995
7996/*
f89c3294 7997 * cfg_info for SSH is the currently running version of the
7998 * protocol. (1 for 1; 2 for 2; 0 for not-decided-yet.)
7999 */
8000static int ssh_cfg_info(void *handle)
8001{
8002 Ssh ssh = (Ssh) handle;
8003 return ssh->version;
8004}
8005
8006/*
51470298 8007 * Gross hack: pscp will try to start SFTP but fall back to scp1 if
8008 * that fails. This variable is the means by which scp.c can reach
8009 * into the SSH code and find out which one it got.
8010 */
8011extern int ssh_fallback_cmd(void *handle)
d8d6c7e5 8012{
51470298 8013 Ssh ssh = (Ssh) handle;
8014 return ssh->fallback_cmd;
d8d6c7e5 8015}
8016
374330e2 8017Backend ssh_backend = {
8018 ssh_init,
fabd1805 8019 ssh_free,
86916870 8020 ssh_reconfig,
374330e2 8021 ssh_send,
5471d09a 8022 ssh_sendbuffer,
374330e2 8023 ssh_size,
4017be6d 8024 ssh_special,
125105d1 8025 ssh_get_specials,
8ccc75b0 8026 ssh_socket,
d8d6c7e5 8027 ssh_return_exitcode,
97db3be4 8028 ssh_sendok,
0965bee0 8029 ssh_ldisc,
b9d7bcad 8030 ssh_provide_ldisc,
a8327734 8031 ssh_provide_logctx,
5471d09a 8032 ssh_unthrottle,
f89c3294 8033 ssh_cfg_info,
97db3be4 8034 22
bc240b21 8035};