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