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