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