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