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