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