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