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