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