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