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