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