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