Matt Harden's (modified) patch to do getservbyname() lookups on port-
[u/mdw/putty] / ssh.c
1 #include <windows.h>
2 #include <stdio.h>
3 #include <stdlib.h>
4 #include <stdarg.h>
5 #include <assert.h>
6
7 #include "putty.h"
8 #include "tree234.h"
9 #include "ssh.h"
10
11 #ifndef FALSE
12 #define FALSE 0
13 #endif
14 #ifndef TRUE
15 #define TRUE 1
16 #endif
17
18 #define logevent(s) { logevent(s); \
19 if ((flags & FLAG_STDERR) && (flags & FLAG_VERBOSE)) \
20 { fprintf(stderr, "%s\n", s); fflush(stderr); } }
21
22 /* logevent, only printf-formatted. */
23 void logeventf(char *fmt, ...)
24 {
25 va_list ap;
26 char stuff[200];
27
28 va_start(ap, fmt);
29 vsprintf(stuff, fmt, ap);
30 va_end(ap);
31 logevent(stuff);
32 }
33
34 #define bombout(msg) ( ssh_state = SSH_STATE_CLOSED, \
35 (s ? sk_close(s), s = NULL : 0), \
36 logeventf msg, connection_fatal msg )
37
38 #define SSH1_MSG_DISCONNECT 1 /* 0x1 */
39 #define SSH1_SMSG_PUBLIC_KEY 2 /* 0x2 */
40 #define SSH1_CMSG_SESSION_KEY 3 /* 0x3 */
41 #define SSH1_CMSG_USER 4 /* 0x4 */
42 #define SSH1_CMSG_AUTH_RSA 6 /* 0x6 */
43 #define SSH1_SMSG_AUTH_RSA_CHALLENGE 7 /* 0x7 */
44 #define SSH1_CMSG_AUTH_RSA_RESPONSE 8 /* 0x8 */
45 #define SSH1_CMSG_AUTH_PASSWORD 9 /* 0x9 */
46 #define SSH1_CMSG_REQUEST_PTY 10 /* 0xa */
47 #define SSH1_CMSG_WINDOW_SIZE 11 /* 0xb */
48 #define SSH1_CMSG_EXEC_SHELL 12 /* 0xc */
49 #define SSH1_CMSG_EXEC_CMD 13 /* 0xd */
50 #define SSH1_SMSG_SUCCESS 14 /* 0xe */
51 #define SSH1_SMSG_FAILURE 15 /* 0xf */
52 #define SSH1_CMSG_STDIN_DATA 16 /* 0x10 */
53 #define SSH1_SMSG_STDOUT_DATA 17 /* 0x11 */
54 #define SSH1_SMSG_STDERR_DATA 18 /* 0x12 */
55 #define SSH1_CMSG_EOF 19 /* 0x13 */
56 #define SSH1_SMSG_EXIT_STATUS 20 /* 0x14 */
57 #define SSH1_MSG_CHANNEL_OPEN_CONFIRMATION 21 /* 0x15 */
58 #define SSH1_MSG_CHANNEL_OPEN_FAILURE 22 /* 0x16 */
59 #define SSH1_MSG_CHANNEL_DATA 23 /* 0x17 */
60 #define SSH1_MSG_CHANNEL_CLOSE 24 /* 0x18 */
61 #define SSH1_MSG_CHANNEL_CLOSE_CONFIRMATION 25 /* 0x19 */
62 #define SSH1_SMSG_X11_OPEN 27 /* 0x1b */
63 #define SSH1_CMSG_PORT_FORWARD_REQUEST 28 /* 0x1c */
64 #define SSH1_MSG_PORT_OPEN 29 /* 0x1d */
65 #define SSH1_CMSG_AGENT_REQUEST_FORWARDING 30 /* 0x1e */
66 #define SSH1_SMSG_AGENT_OPEN 31 /* 0x1f */
67 #define SSH1_MSG_IGNORE 32 /* 0x20 */
68 #define SSH1_CMSG_EXIT_CONFIRMATION 33 /* 0x21 */
69 #define SSH1_CMSG_X11_REQUEST_FORWARDING 34 /* 0x22 */
70 #define SSH1_CMSG_AUTH_RHOSTS_RSA 35 /* 0x23 */
71 #define SSH1_MSG_DEBUG 36 /* 0x24 */
72 #define SSH1_CMSG_REQUEST_COMPRESSION 37 /* 0x25 */
73 #define SSH1_CMSG_AUTH_TIS 39 /* 0x27 */
74 #define SSH1_SMSG_AUTH_TIS_CHALLENGE 40 /* 0x28 */
75 #define SSH1_CMSG_AUTH_TIS_RESPONSE 41 /* 0x29 */
76 #define SSH1_CMSG_AUTH_CCARD 70 /* 0x46 */
77 #define SSH1_SMSG_AUTH_CCARD_CHALLENGE 71 /* 0x47 */
78 #define SSH1_CMSG_AUTH_CCARD_RESPONSE 72 /* 0x48 */
79
80 #define SSH1_AUTH_TIS 5 /* 0x5 */
81 #define SSH1_AUTH_CCARD 16 /* 0x10 */
82
83 #define SSH1_PROTOFLAG_SCREEN_NUMBER 1 /* 0x1 */
84 /* Mask for protoflags we will echo back to server if seen */
85 #define SSH1_PROTOFLAGS_SUPPORTED 0 /* 0x1 */
86
87 #define SSH2_MSG_DISCONNECT 1 /* 0x1 */
88 #define SSH2_MSG_IGNORE 2 /* 0x2 */
89 #define SSH2_MSG_UNIMPLEMENTED 3 /* 0x3 */
90 #define SSH2_MSG_DEBUG 4 /* 0x4 */
91 #define SSH2_MSG_SERVICE_REQUEST 5 /* 0x5 */
92 #define SSH2_MSG_SERVICE_ACCEPT 6 /* 0x6 */
93 #define SSH2_MSG_KEXINIT 20 /* 0x14 */
94 #define SSH2_MSG_NEWKEYS 21 /* 0x15 */
95 #define SSH2_MSG_KEXDH_INIT 30 /* 0x1e */
96 #define SSH2_MSG_KEXDH_REPLY 31 /* 0x1f */
97 #define SSH2_MSG_KEX_DH_GEX_REQUEST 30 /* 0x1e */
98 #define SSH2_MSG_KEX_DH_GEX_GROUP 31 /* 0x1f */
99 #define SSH2_MSG_KEX_DH_GEX_INIT 32 /* 0x20 */
100 #define SSH2_MSG_KEX_DH_GEX_REPLY 33 /* 0x21 */
101 #define SSH2_MSG_USERAUTH_REQUEST 50 /* 0x32 */
102 #define SSH2_MSG_USERAUTH_FAILURE 51 /* 0x33 */
103 #define SSH2_MSG_USERAUTH_SUCCESS 52 /* 0x34 */
104 #define SSH2_MSG_USERAUTH_BANNER 53 /* 0x35 */
105 #define SSH2_MSG_USERAUTH_PK_OK 60 /* 0x3c */
106 #define SSH2_MSG_USERAUTH_PASSWD_CHANGEREQ 60 /* 0x3c */
107 #define SSH2_MSG_USERAUTH_INFO_REQUEST 60 /* 0x3c */
108 #define SSH2_MSG_USERAUTH_INFO_RESPONSE 61 /* 0x3d */
109 #define SSH2_MSG_GLOBAL_REQUEST 80 /* 0x50 */
110 #define SSH2_MSG_REQUEST_SUCCESS 81 /* 0x51 */
111 #define SSH2_MSG_REQUEST_FAILURE 82 /* 0x52 */
112 #define SSH2_MSG_CHANNEL_OPEN 90 /* 0x5a */
113 #define SSH2_MSG_CHANNEL_OPEN_CONFIRMATION 91 /* 0x5b */
114 #define SSH2_MSG_CHANNEL_OPEN_FAILURE 92 /* 0x5c */
115 #define SSH2_MSG_CHANNEL_WINDOW_ADJUST 93 /* 0x5d */
116 #define SSH2_MSG_CHANNEL_DATA 94 /* 0x5e */
117 #define SSH2_MSG_CHANNEL_EXTENDED_DATA 95 /* 0x5f */
118 #define SSH2_MSG_CHANNEL_EOF 96 /* 0x60 */
119 #define SSH2_MSG_CHANNEL_CLOSE 97 /* 0x61 */
120 #define SSH2_MSG_CHANNEL_REQUEST 98 /* 0x62 */
121 #define SSH2_MSG_CHANNEL_SUCCESS 99 /* 0x63 */
122 #define SSH2_MSG_CHANNEL_FAILURE 100 /* 0x64 */
123
124 /*
125 * Packet type contexts, so that ssh2_pkt_type can correctly decode
126 * the ambiguous type numbers back into the correct type strings.
127 */
128 #define SSH2_PKTCTX_DHGROUP1 0x0001
129 #define SSH2_PKTCTX_DHGEX 0x0002
130 #define SSH2_PKTCTX_PUBLICKEY 0x0010
131 #define SSH2_PKTCTX_PASSWORD 0x0020
132 #define SSH2_PKTCTX_KBDINTER 0x0040
133 #define SSH2_PKTCTX_AUTH_MASK 0x00F0
134
135 #define SSH2_DISCONNECT_HOST_NOT_ALLOWED_TO_CONNECT 1 /* 0x1 */
136 #define SSH2_DISCONNECT_PROTOCOL_ERROR 2 /* 0x2 */
137 #define SSH2_DISCONNECT_KEY_EXCHANGE_FAILED 3 /* 0x3 */
138 #define SSH2_DISCONNECT_HOST_AUTHENTICATION_FAILED 4 /* 0x4 */
139 #define SSH2_DISCONNECT_MAC_ERROR 5 /* 0x5 */
140 #define SSH2_DISCONNECT_COMPRESSION_ERROR 6 /* 0x6 */
141 #define SSH2_DISCONNECT_SERVICE_NOT_AVAILABLE 7 /* 0x7 */
142 #define SSH2_DISCONNECT_PROTOCOL_VERSION_NOT_SUPPORTED 8 /* 0x8 */
143 #define SSH2_DISCONNECT_HOST_KEY_NOT_VERIFIABLE 9 /* 0x9 */
144 #define SSH2_DISCONNECT_CONNECTION_LOST 10 /* 0xa */
145 #define SSH2_DISCONNECT_BY_APPLICATION 11 /* 0xb */
146 #define SSH2_DISCONNECT_TOO_MANY_CONNECTIONS 12 /* 0xc */
147 #define SSH2_DISCONNECT_AUTH_CANCELLED_BY_USER 13 /* 0xd */
148 #define SSH2_DISCONNECT_NO_MORE_AUTH_METHODS_AVAILABLE 14 /* 0xe */
149 #define SSH2_DISCONNECT_ILLEGAL_USER_NAME 15 /* 0xf */
150
151 static const char *const ssh2_disconnect_reasons[] = {
152 NULL,
153 "SSH_DISCONNECT_HOST_NOT_ALLOWED_TO_CONNECT",
154 "SSH_DISCONNECT_PROTOCOL_ERROR",
155 "SSH_DISCONNECT_KEY_EXCHANGE_FAILED",
156 "SSH_DISCONNECT_HOST_AUTHENTICATION_FAILED",
157 "SSH_DISCONNECT_MAC_ERROR",
158 "SSH_DISCONNECT_COMPRESSION_ERROR",
159 "SSH_DISCONNECT_SERVICE_NOT_AVAILABLE",
160 "SSH_DISCONNECT_PROTOCOL_VERSION_NOT_SUPPORTED",
161 "SSH_DISCONNECT_HOST_KEY_NOT_VERIFIABLE",
162 "SSH_DISCONNECT_CONNECTION_LOST",
163 "SSH_DISCONNECT_BY_APPLICATION",
164 "SSH_DISCONNECT_TOO_MANY_CONNECTIONS",
165 "SSH_DISCONNECT_AUTH_CANCELLED_BY_USER",
166 "SSH_DISCONNECT_NO_MORE_AUTH_METHODS_AVAILABLE",
167 "SSH_DISCONNECT_ILLEGAL_USER_NAME",
168 };
169
170 #define SSH2_OPEN_ADMINISTRATIVELY_PROHIBITED 1 /* 0x1 */
171 #define SSH2_OPEN_CONNECT_FAILED 2 /* 0x2 */
172 #define SSH2_OPEN_UNKNOWN_CHANNEL_TYPE 3 /* 0x3 */
173 #define SSH2_OPEN_RESOURCE_SHORTAGE 4 /* 0x4 */
174
175 #define SSH2_EXTENDED_DATA_STDERR 1 /* 0x1 */
176
177 /*
178 * Various remote-bug flags.
179 */
180 #define BUG_CHOKES_ON_SSH1_IGNORE 1
181 #define BUG_SSH2_HMAC 2
182 #define BUG_NEEDS_SSH1_PLAIN_PASSWORD 4
183 #define BUG_CHOKES_ON_RSA 8
184
185 static int ssh_pkt_ctx = 0;
186
187 #define translate(x) if (type == x) return #x
188 #define translatec(x,ctx) if (type == x && (ssh_pkt_ctx & ctx)) return #x
189 char *ssh1_pkt_type(int type)
190 {
191 translate(SSH1_MSG_DISCONNECT);
192 translate(SSH1_SMSG_PUBLIC_KEY);
193 translate(SSH1_CMSG_SESSION_KEY);
194 translate(SSH1_CMSG_USER);
195 translate(SSH1_CMSG_AUTH_RSA);
196 translate(SSH1_SMSG_AUTH_RSA_CHALLENGE);
197 translate(SSH1_CMSG_AUTH_RSA_RESPONSE);
198 translate(SSH1_CMSG_AUTH_PASSWORD);
199 translate(SSH1_CMSG_REQUEST_PTY);
200 translate(SSH1_CMSG_WINDOW_SIZE);
201 translate(SSH1_CMSG_EXEC_SHELL);
202 translate(SSH1_CMSG_EXEC_CMD);
203 translate(SSH1_SMSG_SUCCESS);
204 translate(SSH1_SMSG_FAILURE);
205 translate(SSH1_CMSG_STDIN_DATA);
206 translate(SSH1_SMSG_STDOUT_DATA);
207 translate(SSH1_SMSG_STDERR_DATA);
208 translate(SSH1_CMSG_EOF);
209 translate(SSH1_SMSG_EXIT_STATUS);
210 translate(SSH1_MSG_CHANNEL_OPEN_CONFIRMATION);
211 translate(SSH1_MSG_CHANNEL_OPEN_FAILURE);
212 translate(SSH1_MSG_CHANNEL_DATA);
213 translate(SSH1_MSG_CHANNEL_CLOSE);
214 translate(SSH1_MSG_CHANNEL_CLOSE_CONFIRMATION);
215 translate(SSH1_SMSG_X11_OPEN);
216 translate(SSH1_CMSG_PORT_FORWARD_REQUEST);
217 translate(SSH1_MSG_PORT_OPEN);
218 translate(SSH1_CMSG_AGENT_REQUEST_FORWARDING);
219 translate(SSH1_SMSG_AGENT_OPEN);
220 translate(SSH1_MSG_IGNORE);
221 translate(SSH1_CMSG_EXIT_CONFIRMATION);
222 translate(SSH1_CMSG_X11_REQUEST_FORWARDING);
223 translate(SSH1_CMSG_AUTH_RHOSTS_RSA);
224 translate(SSH1_MSG_DEBUG);
225 translate(SSH1_CMSG_REQUEST_COMPRESSION);
226 translate(SSH1_CMSG_AUTH_TIS);
227 translate(SSH1_SMSG_AUTH_TIS_CHALLENGE);
228 translate(SSH1_CMSG_AUTH_TIS_RESPONSE);
229 translate(SSH1_CMSG_AUTH_CCARD);
230 translate(SSH1_SMSG_AUTH_CCARD_CHALLENGE);
231 translate(SSH1_CMSG_AUTH_CCARD_RESPONSE);
232 return "unknown";
233 }
234 char *ssh2_pkt_type(int type)
235 {
236 translate(SSH2_MSG_DISCONNECT);
237 translate(SSH2_MSG_IGNORE);
238 translate(SSH2_MSG_UNIMPLEMENTED);
239 translate(SSH2_MSG_DEBUG);
240 translate(SSH2_MSG_SERVICE_REQUEST);
241 translate(SSH2_MSG_SERVICE_ACCEPT);
242 translate(SSH2_MSG_KEXINIT);
243 translate(SSH2_MSG_NEWKEYS);
244 translatec(SSH2_MSG_KEXDH_INIT, SSH2_PKTCTX_DHGROUP1);
245 translatec(SSH2_MSG_KEXDH_REPLY, SSH2_PKTCTX_DHGROUP1);
246 translatec(SSH2_MSG_KEX_DH_GEX_REQUEST, SSH2_PKTCTX_DHGEX);
247 translatec(SSH2_MSG_KEX_DH_GEX_GROUP, SSH2_PKTCTX_DHGEX);
248 translatec(SSH2_MSG_KEX_DH_GEX_INIT, SSH2_PKTCTX_DHGEX);
249 translatec(SSH2_MSG_KEX_DH_GEX_REPLY, SSH2_PKTCTX_DHGEX);
250 translate(SSH2_MSG_USERAUTH_REQUEST);
251 translate(SSH2_MSG_USERAUTH_FAILURE);
252 translate(SSH2_MSG_USERAUTH_SUCCESS);
253 translate(SSH2_MSG_USERAUTH_BANNER);
254 translatec(SSH2_MSG_USERAUTH_PK_OK, SSH2_PKTCTX_PUBLICKEY);
255 translatec(SSH2_MSG_USERAUTH_PASSWD_CHANGEREQ, SSH2_PKTCTX_PASSWORD);
256 translatec(SSH2_MSG_USERAUTH_INFO_REQUEST, SSH2_PKTCTX_KBDINTER);
257 translatec(SSH2_MSG_USERAUTH_INFO_RESPONSE, SSH2_PKTCTX_KBDINTER);
258 translate(SSH2_MSG_GLOBAL_REQUEST);
259 translate(SSH2_MSG_REQUEST_SUCCESS);
260 translate(SSH2_MSG_REQUEST_FAILURE);
261 translate(SSH2_MSG_CHANNEL_OPEN);
262 translate(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION);
263 translate(SSH2_MSG_CHANNEL_OPEN_FAILURE);
264 translate(SSH2_MSG_CHANNEL_WINDOW_ADJUST);
265 translate(SSH2_MSG_CHANNEL_DATA);
266 translate(SSH2_MSG_CHANNEL_EXTENDED_DATA);
267 translate(SSH2_MSG_CHANNEL_EOF);
268 translate(SSH2_MSG_CHANNEL_CLOSE);
269 translate(SSH2_MSG_CHANNEL_REQUEST);
270 translate(SSH2_MSG_CHANNEL_SUCCESS);
271 translate(SSH2_MSG_CHANNEL_FAILURE);
272 return "unknown";
273 }
274 #undef translate
275 #undef translatec
276
277 #define GET_32BIT(cp) \
278 (((unsigned long)(unsigned char)(cp)[0] << 24) | \
279 ((unsigned long)(unsigned char)(cp)[1] << 16) | \
280 ((unsigned long)(unsigned char)(cp)[2] << 8) | \
281 ((unsigned long)(unsigned char)(cp)[3]))
282
283 #define PUT_32BIT(cp, value) { \
284 (cp)[0] = (unsigned char)((value) >> 24); \
285 (cp)[1] = (unsigned char)((value) >> 16); \
286 (cp)[2] = (unsigned char)((value) >> 8); \
287 (cp)[3] = (unsigned char)(value); }
288
289 enum { PKT_END, PKT_INT, PKT_CHAR, PKT_DATA, PKT_STR, PKT_BIGNUM };
290
291 /* Coroutine mechanics for the sillier bits of the code */
292 #define crBegin1 static int crLine = 0;
293 #define crBegin2 switch(crLine) { case 0:;
294 #define crBegin crBegin1; crBegin2;
295 #define crFinish(z) } crLine = 0; return (z)
296 #define crFinishV } crLine = 0; return
297 #define crReturn(z) \
298 do {\
299 crLine=__LINE__; return (z); case __LINE__:;\
300 } while (0)
301 #define crReturnV \
302 do {\
303 crLine=__LINE__; return; case __LINE__:;\
304 } while (0)
305 #define crStop(z) do{ crLine = 0; return (z); }while(0)
306 #define crStopV do{ crLine = 0; return; }while(0)
307 #define crWaitUntil(c) do { crReturn(0); } while (!(c))
308 #define crWaitUntilV(c) do { crReturnV; } while (!(c))
309
310 extern char *x11_init(Socket *, char *, void *);
311 extern void x11_close(Socket);
312 extern int x11_send(Socket, char *, int);
313 extern void x11_invent_auth(char *, int, char *, int);
314 extern void x11_unthrottle(Socket s);
315 extern void x11_override_throttle(Socket s, int enable);
316
317 extern char *pfd_newconnect(Socket * s, char *hostname, int port, void *c);
318 extern char *pfd_addforward(char *desthost, int destport, int port);
319 extern void pfd_close(Socket s);
320 extern int pfd_send(Socket s, char *data, int len);
321 extern void pfd_confirm(Socket s);
322 extern void pfd_unthrottle(Socket s);
323 extern void pfd_override_throttle(Socket s, int enable);
324
325 static void ssh2_pkt_init(int pkt_type);
326 static void ssh2_pkt_addbool(unsigned char value);
327 static void ssh2_pkt_adduint32(unsigned long value);
328 static void ssh2_pkt_addstring_start(void);
329 static void ssh2_pkt_addstring_str(char *data);
330 static void ssh2_pkt_addstring_data(char *data, int len);
331 static void ssh2_pkt_addstring(char *data);
332 static char *ssh2_mpint_fmt(Bignum b, int *len);
333 static void ssh2_pkt_addmp(Bignum b);
334 static int ssh2_pkt_construct(void);
335 static void ssh2_pkt_send(void);
336
337 /*
338 * Buffer management constants. There are several of these for
339 * various different purposes:
340 *
341 * - SSH1_BUFFER_LIMIT is the amount of backlog that must build up
342 * on a local data stream before we throttle the whole SSH
343 * connection (in SSH1 only). Throttling the whole connection is
344 * pretty drastic so we set this high in the hope it won't
345 * happen very often.
346 *
347 * - SSH_MAX_BACKLOG is the amount of backlog that must build up
348 * on the SSH connection itself before we defensively throttle
349 * _all_ local data streams. This is pretty drastic too (though
350 * thankfully unlikely in SSH2 since the window mechanism should
351 * ensure that the server never has any need to throttle its end
352 * of the connection), so we set this high as well.
353 *
354 * - OUR_V2_WINSIZE is the maximum window size we present on SSH2
355 * channels.
356 */
357
358 #define SSH1_BUFFER_LIMIT 32768
359 #define SSH_MAX_BACKLOG 32768
360 #define OUR_V2_WINSIZE 16384
361
362 const static struct ssh_kex *kex_algs[] = {
363 &ssh_diffiehellman_gex,
364 &ssh_diffiehellman
365 };
366
367 const static struct ssh_signkey *hostkey_algs[] = { &ssh_rsa, &ssh_dss };
368
369 static void nullmac_key(unsigned char *key)
370 {
371 }
372 static void nullmac_generate(unsigned char *blk, int len,
373 unsigned long seq)
374 {
375 }
376 static int nullmac_verify(unsigned char *blk, int len, unsigned long seq)
377 {
378 return 1;
379 }
380 const static struct ssh_mac ssh_mac_none = {
381 nullmac_key, nullmac_key, nullmac_generate, nullmac_verify, "none", 0
382 };
383 const static struct ssh_mac *macs[] = {
384 &ssh_sha1, &ssh_md5, &ssh_mac_none
385 };
386 const static struct ssh_mac *buggymacs[] = {
387 &ssh_sha1_buggy, &ssh_md5, &ssh_mac_none
388 };
389
390 static void ssh_comp_none_init(void)
391 {
392 }
393 static int ssh_comp_none_block(unsigned char *block, int len,
394 unsigned char **outblock, int *outlen)
395 {
396 return 0;
397 }
398 static int ssh_comp_none_disable(void)
399 {
400 return 0;
401 }
402 const static struct ssh_compress ssh_comp_none = {
403 "none",
404 ssh_comp_none_init, ssh_comp_none_block,
405 ssh_comp_none_init, ssh_comp_none_block,
406 ssh_comp_none_disable
407 };
408 extern const struct ssh_compress ssh_zlib;
409 const static struct ssh_compress *compressions[] = {
410 &ssh_zlib, &ssh_comp_none
411 };
412
413 enum { /* channel types */
414 CHAN_MAINSESSION,
415 CHAN_X11,
416 CHAN_AGENT,
417 CHAN_SOCKDATA,
418 CHAN_SOCKDATA_DORMANT /* one the remote hasn't confirmed */
419 };
420
421 /*
422 * 2-3-4 tree storing channels.
423 */
424 struct ssh_channel {
425 unsigned remoteid, localid;
426 int type;
427 int closes;
428 union {
429 struct ssh1_data_channel {
430 int throttling;
431 } v1;
432 struct ssh2_data_channel {
433 bufchain outbuffer;
434 unsigned remwindow, remmaxpkt;
435 unsigned locwindow;
436 } v2;
437 } v;
438 union {
439 struct ssh_agent_channel {
440 unsigned char *message;
441 unsigned char msglen[4];
442 int lensofar, totallen;
443 } a;
444 struct ssh_x11_channel {
445 Socket s;
446 } x11;
447 struct ssh_pfd_channel {
448 Socket s;
449 } pfd;
450 } u;
451 };
452
453 /*
454 * 2-3-4 tree storing remote->local port forwardings. SSH 1 and SSH
455 * 2 use this structure in different ways, reflecting SSH 2's
456 * altogether saner approach to port forwarding.
457 *
458 * In SSH 1, you arrange a remote forwarding by sending the server
459 * the remote port number, and the local destination host:port.
460 * When a connection comes in, the server sends you back that
461 * host:port pair, and you connect to it. This is a ready-made
462 * security hole if you're not on the ball: a malicious server
463 * could send you back _any_ host:port pair, so if you trustingly
464 * connect to the address it gives you then you've just opened the
465 * entire inside of your corporate network just by connecting
466 * through it to a dodgy SSH server. Hence, we must store a list of
467 * host:port pairs we _are_ trying to forward to, and reject a
468 * connection request from the server if it's not in the list.
469 *
470 * In SSH 2, each side of the connection minds its own business and
471 * doesn't send unnecessary information to the other. You arrange a
472 * remote forwarding by sending the server just the remote port
473 * number. When a connection comes in, the server tells you which
474 * of its ports was connected to; and _you_ have to remember what
475 * local host:port pair went with that port number.
476 *
477 * Hence: in SSH 1 this structure stores host:port pairs we intend
478 * to allow connections to, and is indexed by those host:port
479 * pairs. In SSH 2 it stores a mapping from source port to
480 * destination host:port pair, and is indexed by source port.
481 */
482 struct ssh_rportfwd {
483 unsigned sport, dport;
484 char dhost[256];
485 };
486
487 struct Packet {
488 long length;
489 int type;
490 unsigned char *data;
491 unsigned char *body;
492 long savedpos;
493 long maxlen;
494 };
495
496 static SHA_State exhash, exhashbase;
497
498 static Socket s = NULL;
499
500 static unsigned char session_key[32];
501 static int ssh1_compressing;
502 static int ssh1_remote_protoflags;
503 static int ssh1_local_protoflags;
504 static int ssh_agentfwd_enabled;
505 static int ssh_X11_fwd_enabled;
506 static int ssh_remote_bugs;
507 static const struct ssh_cipher *cipher = NULL;
508 static const struct ssh2_cipher *cscipher = NULL;
509 static const struct ssh2_cipher *sccipher = NULL;
510 static const struct ssh_mac *csmac = NULL;
511 static const struct ssh_mac *scmac = NULL;
512 static const struct ssh_compress *cscomp = NULL;
513 static const struct ssh_compress *sccomp = NULL;
514 static const struct ssh_kex *kex = NULL;
515 static const struct ssh_signkey *hostkey = NULL;
516 static unsigned char ssh2_session_id[20];
517 int (*ssh_get_line) (const char *prompt, char *str, int maxlen,
518 int is_pw) = NULL;
519
520 static char *savedhost;
521 static int savedport;
522 static int ssh_send_ok;
523 static int ssh_echoing, ssh_editing;
524
525 static tree234 *ssh_channels; /* indexed by local id */
526 static struct ssh_channel *mainchan; /* primary session channel */
527 static int ssh_exitcode = -1;
528
529 static tree234 *ssh_rportfwds;
530
531 static enum {
532 SSH_STATE_PREPACKET,
533 SSH_STATE_BEFORE_SIZE,
534 SSH_STATE_INTERMED,
535 SSH_STATE_SESSION,
536 SSH_STATE_CLOSED
537 } ssh_state = SSH_STATE_PREPACKET;
538
539 static int size_needed = FALSE, eof_needed = FALSE;
540
541 static struct Packet pktin = { 0, 0, NULL, NULL, 0 };
542 static struct Packet pktout = { 0, 0, NULL, NULL, 0 };
543 static unsigned char *deferred_send_data = NULL;
544 static int deferred_len = 0, deferred_size = 0;
545
546 /*
547 * Gross hack: pscp will try to start SFTP but fall back to scp1 if
548 * that fails. This variable is the means by which scp.c can reach
549 * into the SSH code and find out which one it got.
550 */
551 int ssh_fallback_cmd = 0;
552
553 static int ssh_version;
554 static int ssh1_throttle_count;
555 static int ssh_overall_bufsize;
556 static int ssh_throttled_all;
557 static int ssh1_stdout_throttling;
558 static void (*ssh_protocol) (unsigned char *in, int inlen, int ispkt);
559 static void ssh1_protocol(unsigned char *in, int inlen, int ispkt);
560 static void ssh2_protocol(unsigned char *in, int inlen, int ispkt);
561 static void ssh_size(void);
562 static void ssh_special(Telnet_Special);
563 static int ssh2_try_send(struct ssh_channel *c);
564 static void ssh2_add_channel_data(struct ssh_channel *c, char *buf,
565 int len);
566 static void ssh_throttle_all(int enable, int bufsize);
567 static void ssh2_set_window(struct ssh_channel *c, unsigned newwin);
568 static int (*s_rdpkt) (unsigned char **data, int *datalen);
569 static int ssh_sendbuffer(void);
570
571 static struct rdpkt1_state_tag {
572 long len, pad, biglen, to_read;
573 unsigned long realcrc, gotcrc;
574 unsigned char *p;
575 int i;
576 int chunk;
577 } rdpkt1_state;
578
579 static struct rdpkt2_state_tag {
580 long len, pad, payload, packetlen, maclen;
581 int i;
582 int cipherblk;
583 unsigned long incoming_sequence;
584 } rdpkt2_state;
585
586 static int ssh_channelcmp(void *av, void *bv)
587 {
588 struct ssh_channel *a = (struct ssh_channel *) av;
589 struct ssh_channel *b = (struct ssh_channel *) bv;
590 if (a->localid < b->localid)
591 return -1;
592 if (a->localid > b->localid)
593 return +1;
594 return 0;
595 }
596 static int ssh_channelfind(void *av, void *bv)
597 {
598 unsigned *a = (unsigned *) av;
599 struct ssh_channel *b = (struct ssh_channel *) bv;
600 if (*a < b->localid)
601 return -1;
602 if (*a > b->localid)
603 return +1;
604 return 0;
605 }
606
607 static int ssh_rportcmp_ssh1(void *av, void *bv)
608 {
609 struct ssh_rportfwd *a = (struct ssh_rportfwd *) av;
610 struct ssh_rportfwd *b = (struct ssh_rportfwd *) bv;
611 int i;
612 if ( (i = strcmp(a->dhost, b->dhost)) != 0)
613 return i < 0 ? -1 : +1;
614 if (a->dport > b->dport)
615 return +1;
616 if (a->dport < b->dport)
617 return -1;
618 return 0;
619 }
620
621 static int ssh_rportcmp_ssh2(void *av, void *bv)
622 {
623 struct ssh_rportfwd *a = (struct ssh_rportfwd *) av;
624 struct ssh_rportfwd *b = (struct ssh_rportfwd *) bv;
625
626 if (a->sport > b->sport)
627 return +1;
628 if (a->sport < b->sport)
629 return -1;
630 return 0;
631 }
632
633 static int alloc_channel_id(void)
634 {
635 const unsigned CHANNEL_NUMBER_OFFSET = 256;
636 unsigned low, high, mid;
637 int tsize;
638 struct ssh_channel *c;
639
640 /*
641 * First-fit allocation of channel numbers: always pick the
642 * lowest unused one. To do this, binary-search using the
643 * counted B-tree to find the largest channel ID which is in a
644 * contiguous sequence from the beginning. (Precisely
645 * everything in that sequence must have ID equal to its tree
646 * index plus CHANNEL_NUMBER_OFFSET.)
647 */
648 tsize = count234(ssh_channels);
649
650 low = -1;
651 high = tsize;
652 while (high - low > 1) {
653 mid = (high + low) / 2;
654 c = index234(ssh_channels, mid);
655 if (c->localid == mid + CHANNEL_NUMBER_OFFSET)
656 low = mid; /* this one is fine */
657 else
658 high = mid; /* this one is past it */
659 }
660 /*
661 * Now low points to either -1, or the tree index of the
662 * largest ID in the initial sequence.
663 */
664 {
665 unsigned i = low + 1 + CHANNEL_NUMBER_OFFSET;
666 assert(NULL == find234(ssh_channels, &i, ssh_channelfind));
667 }
668 return low + 1 + CHANNEL_NUMBER_OFFSET;
669 }
670
671 static void c_write(char *buf, int len)
672 {
673 if ((flags & FLAG_STDERR)) {
674 int i;
675 for (i = 0; i < len; i++)
676 if (buf[i] != '\r')
677 fputc(buf[i], stderr);
678 return;
679 }
680 from_backend(1, buf, len);
681 }
682
683 static void c_write_untrusted(char *buf, int len)
684 {
685 int i;
686 for (i = 0; i < len; i++) {
687 if (buf[i] == '\n')
688 c_write("\r\n", 2);
689 else if ((buf[i] & 0x60) || (buf[i] == '\r'))
690 c_write(buf + i, 1);
691 }
692 }
693
694 static void c_write_str(char *buf)
695 {
696 c_write(buf, strlen(buf));
697 }
698
699 /*
700 * Collect incoming data in the incoming packet buffer.
701 * Decipher and verify the packet when it is completely read.
702 * Drop SSH1_MSG_DEBUG and SSH1_MSG_IGNORE packets.
703 * Update the *data and *datalen variables.
704 * Return the additional nr of bytes needed, or 0 when
705 * a complete packet is available.
706 */
707 static int ssh1_rdpkt(unsigned char **data, int *datalen)
708 {
709 struct rdpkt1_state_tag *st = &rdpkt1_state;
710
711 crBegin;
712
713 next_packet:
714
715 pktin.type = 0;
716 pktin.length = 0;
717
718 for (st->i = st->len = 0; st->i < 4; st->i++) {
719 while ((*datalen) == 0)
720 crReturn(4 - st->i);
721 st->len = (st->len << 8) + **data;
722 (*data)++, (*datalen)--;
723 }
724
725 st->pad = 8 - (st->len % 8);
726 st->biglen = st->len + st->pad;
727 pktin.length = st->len - 5;
728
729 if (pktin.maxlen < st->biglen) {
730 pktin.maxlen = st->biglen;
731 pktin.data = (pktin.data == NULL ? smalloc(st->biglen + APIEXTRA) :
732 srealloc(pktin.data, st->biglen + APIEXTRA));
733 if (!pktin.data)
734 fatalbox("Out of memory");
735 }
736
737 st->to_read = st->biglen;
738 st->p = pktin.data;
739 while (st->to_read > 0) {
740 st->chunk = st->to_read;
741 while ((*datalen) == 0)
742 crReturn(st->to_read);
743 if (st->chunk > (*datalen))
744 st->chunk = (*datalen);
745 memcpy(st->p, *data, st->chunk);
746 *data += st->chunk;
747 *datalen -= st->chunk;
748 st->p += st->chunk;
749 st->to_read -= st->chunk;
750 }
751
752 if (cipher && detect_attack(pktin.data, st->biglen, NULL)) {
753 bombout(("Network attack (CRC compensation) detected!"));
754 crReturn(0);
755 }
756
757 if (cipher)
758 cipher->decrypt(pktin.data, st->biglen);
759
760 st->realcrc = crc32(pktin.data, st->biglen - 4);
761 st->gotcrc = GET_32BIT(pktin.data + st->biglen - 4);
762 if (st->gotcrc != st->realcrc) {
763 bombout(("Incorrect CRC received on packet"));
764 crReturn(0);
765 }
766
767 pktin.body = pktin.data + st->pad + 1;
768
769 if (ssh1_compressing) {
770 unsigned char *decompblk;
771 int decomplen;
772 zlib_decompress_block(pktin.body - 1, pktin.length + 1,
773 &decompblk, &decomplen);
774
775 if (pktin.maxlen < st->pad + decomplen) {
776 pktin.maxlen = st->pad + decomplen;
777 pktin.data = srealloc(pktin.data, pktin.maxlen + APIEXTRA);
778 pktin.body = pktin.data + st->pad + 1;
779 if (!pktin.data)
780 fatalbox("Out of memory");
781 }
782
783 memcpy(pktin.body - 1, decompblk, decomplen);
784 sfree(decompblk);
785 pktin.length = decomplen - 1;
786 }
787
788 pktin.type = pktin.body[-1];
789
790 log_packet(PKT_INCOMING, pktin.type, ssh1_pkt_type(pktin.type),
791 pktin.body, pktin.length);
792
793 if (pktin.type == SSH1_SMSG_STDOUT_DATA ||
794 pktin.type == SSH1_SMSG_STDERR_DATA ||
795 pktin.type == SSH1_MSG_DEBUG ||
796 pktin.type == SSH1_SMSG_AUTH_TIS_CHALLENGE ||
797 pktin.type == SSH1_SMSG_AUTH_CCARD_CHALLENGE) {
798 long stringlen = GET_32BIT(pktin.body);
799 if (stringlen + 4 != pktin.length) {
800 bombout(("Received data packet with bogus string length"));
801 crReturn(0);
802 }
803 }
804
805 if (pktin.type == SSH1_MSG_DEBUG) {
806 /* log debug message */
807 char buf[80];
808 int stringlen = GET_32BIT(pktin.body);
809 strcpy(buf, "Remote: ");
810 if (stringlen > 70)
811 stringlen = 70;
812 memcpy(buf + 8, pktin.body + 4, stringlen);
813 buf[8 + stringlen] = '\0';
814 logevent(buf);
815 goto next_packet;
816 } else if (pktin.type == SSH1_MSG_IGNORE) {
817 /* do nothing */
818 goto next_packet;
819 }
820
821 if (pktin.type == SSH1_MSG_DISCONNECT) {
822 /* log reason code in disconnect message */
823 char buf[256];
824 unsigned msglen = GET_32BIT(pktin.body);
825 unsigned nowlen;
826 strcpy(buf, "Remote sent disconnect: ");
827 nowlen = strlen(buf);
828 if (msglen > sizeof(buf) - nowlen - 1)
829 msglen = sizeof(buf) - nowlen - 1;
830 memcpy(buf + nowlen, pktin.body + 4, msglen);
831 buf[nowlen + msglen] = '\0';
832 /* logevent(buf); (this is now done within the bombout macro) */
833 bombout(("Server sent disconnect message:\n\"%s\"", buf+nowlen));
834 crReturn(0);
835 }
836
837 crFinish(0);
838 }
839
840 static int ssh2_rdpkt(unsigned char **data, int *datalen)
841 {
842 struct rdpkt2_state_tag *st = &rdpkt2_state;
843
844 crBegin;
845
846 next_packet:
847 pktin.type = 0;
848 pktin.length = 0;
849 if (sccipher)
850 st->cipherblk = sccipher->blksize;
851 else
852 st->cipherblk = 8;
853 if (st->cipherblk < 8)
854 st->cipherblk = 8;
855
856 if (pktin.maxlen < st->cipherblk) {
857 pktin.maxlen = st->cipherblk;
858 pktin.data =
859 (pktin.data ==
860 NULL ? smalloc(st->cipherblk +
861 APIEXTRA) : srealloc(pktin.data,
862 st->cipherblk +
863 APIEXTRA));
864 if (!pktin.data)
865 fatalbox("Out of memory");
866 }
867
868 /*
869 * Acquire and decrypt the first block of the packet. This will
870 * contain the length and padding details.
871 */
872 for (st->i = st->len = 0; st->i < st->cipherblk; st->i++) {
873 while ((*datalen) == 0)
874 crReturn(st->cipherblk - st->i);
875 pktin.data[st->i] = *(*data)++;
876 (*datalen)--;
877 }
878
879 if (sccipher)
880 sccipher->decrypt(pktin.data, st->cipherblk);
881
882 /*
883 * Now get the length and padding figures.
884 */
885 st->len = GET_32BIT(pktin.data);
886 st->pad = pktin.data[4];
887
888 /*
889 * This enables us to deduce the payload length.
890 */
891 st->payload = st->len - st->pad - 1;
892
893 pktin.length = st->payload + 5;
894
895 /*
896 * So now we can work out the total packet length.
897 */
898 st->packetlen = st->len + 4;
899 st->maclen = scmac ? scmac->len : 0;
900
901 /*
902 * Adjust memory allocation if packet is too big.
903 */
904 if (pktin.maxlen < st->packetlen + st->maclen) {
905 pktin.maxlen = st->packetlen + st->maclen;
906 pktin.data =
907 (pktin.data ==
908 NULL ? smalloc(pktin.maxlen + APIEXTRA) : srealloc(pktin.data,
909 pktin.maxlen
910 +
911 APIEXTRA));
912 if (!pktin.data)
913 fatalbox("Out of memory");
914 }
915
916 /*
917 * Read and decrypt the remainder of the packet.
918 */
919 for (st->i = st->cipherblk; st->i < st->packetlen + st->maclen;
920 st->i++) {
921 while ((*datalen) == 0)
922 crReturn(st->packetlen + st->maclen - st->i);
923 pktin.data[st->i] = *(*data)++;
924 (*datalen)--;
925 }
926 /* Decrypt everything _except_ the MAC. */
927 if (sccipher)
928 sccipher->decrypt(pktin.data + st->cipherblk,
929 st->packetlen - st->cipherblk);
930
931 /*
932 * Check the MAC.
933 */
934 if (scmac
935 && !scmac->verify(pktin.data, st->len + 4,
936 st->incoming_sequence)) {
937 bombout(("Incorrect MAC received on packet"));
938 crReturn(0);
939 }
940 st->incoming_sequence++; /* whether or not we MACed */
941
942 /*
943 * Decompress packet payload.
944 */
945 {
946 unsigned char *newpayload;
947 int newlen;
948 if (sccomp && sccomp->decompress(pktin.data + 5, pktin.length - 5,
949 &newpayload, &newlen)) {
950 if (pktin.maxlen < newlen + 5) {
951 pktin.maxlen = newlen + 5;
952 pktin.data =
953 (pktin.data ==
954 NULL ? smalloc(pktin.maxlen +
955 APIEXTRA) : srealloc(pktin.data,
956 pktin.maxlen +
957 APIEXTRA));
958 if (!pktin.data)
959 fatalbox("Out of memory");
960 }
961 pktin.length = 5 + newlen;
962 memcpy(pktin.data + 5, newpayload, newlen);
963 sfree(newpayload);
964 }
965 }
966
967 pktin.savedpos = 6;
968 pktin.type = pktin.data[5];
969
970 log_packet(PKT_INCOMING, pktin.type, ssh2_pkt_type(pktin.type),
971 pktin.data+6, pktin.length-6);
972
973 switch (pktin.type) {
974 /*
975 * These packets we must handle instantly.
976 */
977 case SSH2_MSG_DISCONNECT:
978 {
979 /* log reason code in disconnect message */
980 char buf[256];
981 int reason = GET_32BIT(pktin.data + 6);
982 unsigned msglen = GET_32BIT(pktin.data + 10);
983 unsigned nowlen;
984 if (reason > 0 && reason < lenof(ssh2_disconnect_reasons)) {
985 sprintf(buf, "Received disconnect message (%s)",
986 ssh2_disconnect_reasons[reason]);
987 } else {
988 sprintf(buf, "Received disconnect message (unknown type %d)",
989 reason);
990 }
991 logevent(buf);
992 strcpy(buf, "Disconnection message text: ");
993 nowlen = strlen(buf);
994 if (msglen > sizeof(buf) - nowlen - 1)
995 msglen = sizeof(buf) - nowlen - 1;
996 memcpy(buf + nowlen, pktin.data + 14, msglen);
997 buf[nowlen + msglen] = '\0';
998 logevent(buf);
999 bombout(("Server sent disconnect message\ntype %d (%s):\n\"%s\"",
1000 reason,
1001 (reason > 0 && reason < lenof(ssh2_disconnect_reasons)) ?
1002 ssh2_disconnect_reasons[reason] : "unknown",
1003 buf+nowlen));
1004 crReturn(0);
1005 }
1006 break;
1007 case SSH2_MSG_IGNORE:
1008 goto next_packet;
1009 case SSH2_MSG_DEBUG:
1010 {
1011 /* log the debug message */
1012 char buf[512];
1013 /* int display = pktin.body[6]; */
1014 int stringlen = GET_32BIT(pktin.data+7);
1015 int prefix;
1016 strcpy(buf, "Remote debug message: ");
1017 prefix = strlen(buf);
1018 if (stringlen > sizeof(buf)-prefix-1)
1019 stringlen = sizeof(buf)-prefix-1;
1020 memcpy(buf + prefix, pktin.data + 11, stringlen);
1021 buf[prefix + stringlen] = '\0';
1022 logevent(buf);
1023 }
1024 goto next_packet; /* FIXME: print the debug message */
1025
1026 /*
1027 * These packets we need do nothing about here.
1028 */
1029 case SSH2_MSG_UNIMPLEMENTED:
1030 case SSH2_MSG_SERVICE_REQUEST:
1031 case SSH2_MSG_SERVICE_ACCEPT:
1032 case SSH2_MSG_KEXINIT:
1033 case SSH2_MSG_NEWKEYS:
1034 case SSH2_MSG_KEXDH_INIT:
1035 case SSH2_MSG_KEXDH_REPLY:
1036 /* case SSH2_MSG_KEX_DH_GEX_REQUEST: duplicate case value */
1037 /* case SSH2_MSG_KEX_DH_GEX_GROUP: duplicate case value */
1038 case SSH2_MSG_KEX_DH_GEX_INIT:
1039 case SSH2_MSG_KEX_DH_GEX_REPLY:
1040 case SSH2_MSG_USERAUTH_REQUEST:
1041 case SSH2_MSG_USERAUTH_FAILURE:
1042 case SSH2_MSG_USERAUTH_SUCCESS:
1043 case SSH2_MSG_USERAUTH_BANNER:
1044 case SSH2_MSG_USERAUTH_PK_OK:
1045 /* case SSH2_MSG_USERAUTH_PASSWD_CHANGEREQ: duplicate case value */
1046 /* case SSH2_MSG_USERAUTH_INFO_REQUEST: duplicate case value */
1047 case SSH2_MSG_USERAUTH_INFO_RESPONSE:
1048 case SSH2_MSG_GLOBAL_REQUEST:
1049 case SSH2_MSG_REQUEST_SUCCESS:
1050 case SSH2_MSG_REQUEST_FAILURE:
1051 case SSH2_MSG_CHANNEL_OPEN:
1052 case SSH2_MSG_CHANNEL_OPEN_CONFIRMATION:
1053 case SSH2_MSG_CHANNEL_OPEN_FAILURE:
1054 case SSH2_MSG_CHANNEL_WINDOW_ADJUST:
1055 case SSH2_MSG_CHANNEL_DATA:
1056 case SSH2_MSG_CHANNEL_EXTENDED_DATA:
1057 case SSH2_MSG_CHANNEL_EOF:
1058 case SSH2_MSG_CHANNEL_CLOSE:
1059 case SSH2_MSG_CHANNEL_REQUEST:
1060 case SSH2_MSG_CHANNEL_SUCCESS:
1061 case SSH2_MSG_CHANNEL_FAILURE:
1062 break;
1063
1064 /*
1065 * For anything else we send SSH2_MSG_UNIMPLEMENTED.
1066 */
1067 default:
1068 ssh2_pkt_init(SSH2_MSG_UNIMPLEMENTED);
1069 ssh2_pkt_adduint32(st->incoming_sequence - 1);
1070 ssh2_pkt_send();
1071 break;
1072 }
1073
1074 crFinish(0);
1075 }
1076
1077 static void ssh1_pktout_size(int len)
1078 {
1079 int pad, biglen;
1080
1081 len += 5; /* type and CRC */
1082 pad = 8 - (len % 8);
1083 biglen = len + pad;
1084
1085 pktout.length = len - 5;
1086 if (pktout.maxlen < biglen) {
1087 pktout.maxlen = biglen;
1088 #ifdef MSCRYPTOAPI
1089 /* Allocate enough buffer space for extra block
1090 * for MS CryptEncrypt() */
1091 pktout.data = (pktout.data == NULL ? smalloc(biglen + 12) :
1092 srealloc(pktout.data, biglen + 12));
1093 #else
1094 pktout.data = (pktout.data == NULL ? smalloc(biglen + 4) :
1095 srealloc(pktout.data, biglen + 4));
1096 #endif
1097 if (!pktout.data)
1098 fatalbox("Out of memory");
1099 }
1100 pktout.body = pktout.data + 4 + pad + 1;
1101 }
1102
1103 static void s_wrpkt_start(int type, int len)
1104 {
1105 ssh1_pktout_size(len);
1106 pktout.type = type;
1107 }
1108
1109 static int s_wrpkt_prepare(void)
1110 {
1111 int pad, len, biglen, i;
1112 unsigned long crc;
1113
1114 pktout.body[-1] = pktout.type;
1115
1116 log_packet(PKT_OUTGOING, pktout.type, ssh1_pkt_type(pktout.type),
1117 pktout.body, pktout.length);
1118
1119 if (ssh1_compressing) {
1120 unsigned char *compblk;
1121 int complen;
1122 zlib_compress_block(pktout.body - 1, pktout.length + 1,
1123 &compblk, &complen);
1124 ssh1_pktout_size(complen - 1);
1125 memcpy(pktout.body - 1, compblk, complen);
1126 sfree(compblk);
1127 }
1128
1129 len = pktout.length + 5; /* type and CRC */
1130 pad = 8 - (len % 8);
1131 biglen = len + pad;
1132
1133 for (i = 0; i < pad; i++)
1134 pktout.data[i + 4] = random_byte();
1135 crc = crc32(pktout.data + 4, biglen - 4);
1136 PUT_32BIT(pktout.data + biglen, crc);
1137 PUT_32BIT(pktout.data, len);
1138
1139 if (cipher)
1140 cipher->encrypt(pktout.data + 4, biglen);
1141
1142 return biglen + 4;
1143 }
1144
1145 static void s_wrpkt(void)
1146 {
1147 int len, backlog;
1148 len = s_wrpkt_prepare();
1149 backlog = sk_write(s, pktout.data, len);
1150 if (backlog > SSH_MAX_BACKLOG)
1151 ssh_throttle_all(1, backlog);
1152 }
1153
1154 static void s_wrpkt_defer(void)
1155 {
1156 int len;
1157 len = s_wrpkt_prepare();
1158 if (deferred_len + len > deferred_size) {
1159 deferred_size = deferred_len + len + 128;
1160 deferred_send_data = srealloc(deferred_send_data, deferred_size);
1161 }
1162 memcpy(deferred_send_data + deferred_len, pktout.data, len);
1163 deferred_len += len;
1164 }
1165
1166 /*
1167 * Construct a packet with the specified contents.
1168 */
1169 static void construct_packet(int pkttype, va_list ap1, va_list ap2)
1170 {
1171 unsigned char *p, *argp, argchar;
1172 unsigned long argint;
1173 int pktlen, argtype, arglen;
1174 Bignum bn;
1175
1176 pktlen = 0;
1177 while ((argtype = va_arg(ap1, int)) != PKT_END) {
1178 switch (argtype) {
1179 case PKT_INT:
1180 (void) va_arg(ap1, int);
1181 pktlen += 4;
1182 break;
1183 case PKT_CHAR:
1184 (void) va_arg(ap1, char);
1185 pktlen++;
1186 break;
1187 case PKT_DATA:
1188 (void) va_arg(ap1, unsigned char *);
1189 arglen = va_arg(ap1, int);
1190 pktlen += arglen;
1191 break;
1192 case PKT_STR:
1193 argp = va_arg(ap1, unsigned char *);
1194 arglen = strlen(argp);
1195 pktlen += 4 + arglen;
1196 break;
1197 case PKT_BIGNUM:
1198 bn = va_arg(ap1, Bignum);
1199 pktlen += ssh1_bignum_length(bn);
1200 break;
1201 default:
1202 assert(0);
1203 }
1204 }
1205
1206 s_wrpkt_start(pkttype, pktlen);
1207 p = pktout.body;
1208
1209 while ((argtype = va_arg(ap2, int)) != PKT_END) {
1210 switch (argtype) {
1211 case PKT_INT:
1212 argint = va_arg(ap2, int);
1213 PUT_32BIT(p, argint);
1214 p += 4;
1215 break;
1216 case PKT_CHAR:
1217 argchar = va_arg(ap2, unsigned char);
1218 *p = argchar;
1219 p++;
1220 break;
1221 case PKT_DATA:
1222 argp = va_arg(ap2, unsigned char *);
1223 arglen = va_arg(ap2, int);
1224 memcpy(p, argp, arglen);
1225 p += arglen;
1226 break;
1227 case PKT_STR:
1228 argp = va_arg(ap2, unsigned char *);
1229 arglen = strlen(argp);
1230 PUT_32BIT(p, arglen);
1231 memcpy(p + 4, argp, arglen);
1232 p += 4 + arglen;
1233 break;
1234 case PKT_BIGNUM:
1235 bn = va_arg(ap2, Bignum);
1236 p += ssh1_write_bignum(p, bn);
1237 break;
1238 }
1239 }
1240 }
1241
1242 static void send_packet(int pkttype, ...)
1243 {
1244 va_list ap1, ap2;
1245 va_start(ap1, pkttype);
1246 va_start(ap2, pkttype);
1247 construct_packet(pkttype, ap1, ap2);
1248 s_wrpkt();
1249 }
1250
1251 static void defer_packet(int pkttype, ...)
1252 {
1253 va_list ap1, ap2;
1254 va_start(ap1, pkttype);
1255 va_start(ap2, pkttype);
1256 construct_packet(pkttype, ap1, ap2);
1257 s_wrpkt_defer();
1258 }
1259
1260 static int ssh_versioncmp(char *a, char *b)
1261 {
1262 char *ae, *be;
1263 unsigned long av, bv;
1264
1265 av = strtoul(a, &ae, 10);
1266 bv = strtoul(b, &be, 10);
1267 if (av != bv)
1268 return (av < bv ? -1 : +1);
1269 if (*ae == '.')
1270 ae++;
1271 if (*be == '.')
1272 be++;
1273 av = strtoul(ae, &ae, 10);
1274 bv = strtoul(be, &be, 10);
1275 if (av != bv)
1276 return (av < bv ? -1 : +1);
1277 return 0;
1278 }
1279
1280
1281 /*
1282 * Utility routines for putting an SSH-protocol `string' and
1283 * `uint32' into a SHA state.
1284 */
1285 #include <stdio.h>
1286 static void sha_string(SHA_State * s, void *str, int len)
1287 {
1288 unsigned char lenblk[4];
1289 PUT_32BIT(lenblk, len);
1290 SHA_Bytes(s, lenblk, 4);
1291 SHA_Bytes(s, str, len);
1292 }
1293
1294 static void sha_uint32(SHA_State * s, unsigned i)
1295 {
1296 unsigned char intblk[4];
1297 PUT_32BIT(intblk, i);
1298 SHA_Bytes(s, intblk, 4);
1299 }
1300
1301 /*
1302 * SSH2 packet construction functions.
1303 */
1304 static void ssh2_pkt_ensure(int length)
1305 {
1306 if (pktout.maxlen < length) {
1307 pktout.maxlen = length + 256;
1308 pktout.data =
1309 (pktout.data ==
1310 NULL ? smalloc(pktout.maxlen +
1311 APIEXTRA) : srealloc(pktout.data,
1312 pktout.maxlen +
1313 APIEXTRA));
1314 if (!pktout.data)
1315 fatalbox("Out of memory");
1316 }
1317 }
1318 static void ssh2_pkt_adddata(void *data, int len)
1319 {
1320 pktout.length += len;
1321 ssh2_pkt_ensure(pktout.length);
1322 memcpy(pktout.data + pktout.length - len, data, len);
1323 }
1324 static void ssh2_pkt_addbyte(unsigned char byte)
1325 {
1326 ssh2_pkt_adddata(&byte, 1);
1327 }
1328 static void ssh2_pkt_init(int pkt_type)
1329 {
1330 pktout.length = 5;
1331 ssh2_pkt_addbyte((unsigned char) pkt_type);
1332 }
1333 static void ssh2_pkt_addbool(unsigned char value)
1334 {
1335 ssh2_pkt_adddata(&value, 1);
1336 }
1337 static void ssh2_pkt_adduint32(unsigned long value)
1338 {
1339 unsigned char x[4];
1340 PUT_32BIT(x, value);
1341 ssh2_pkt_adddata(x, 4);
1342 }
1343 static void ssh2_pkt_addstring_start(void)
1344 {
1345 ssh2_pkt_adduint32(0);
1346 pktout.savedpos = pktout.length;
1347 }
1348 static void ssh2_pkt_addstring_str(char *data)
1349 {
1350 ssh2_pkt_adddata(data, strlen(data));
1351 PUT_32BIT(pktout.data + pktout.savedpos - 4,
1352 pktout.length - pktout.savedpos);
1353 }
1354 static void ssh2_pkt_addstring_data(char *data, int len)
1355 {
1356 ssh2_pkt_adddata(data, len);
1357 PUT_32BIT(pktout.data + pktout.savedpos - 4,
1358 pktout.length - pktout.savedpos);
1359 }
1360 static void ssh2_pkt_addstring(char *data)
1361 {
1362 ssh2_pkt_addstring_start();
1363 ssh2_pkt_addstring_str(data);
1364 }
1365 static char *ssh2_mpint_fmt(Bignum b, int *len)
1366 {
1367 unsigned char *p;
1368 int i, n = (bignum_bitcount(b) + 7) / 8;
1369 p = smalloc(n + 1);
1370 if (!p)
1371 fatalbox("out of memory");
1372 p[0] = 0;
1373 for (i = 1; i <= n; i++)
1374 p[i] = bignum_byte(b, n - i);
1375 i = 0;
1376 while (i <= n && p[i] == 0 && (p[i + 1] & 0x80) == 0)
1377 i++;
1378 memmove(p, p + i, n + 1 - i);
1379 *len = n + 1 - i;
1380 return p;
1381 }
1382 static void ssh2_pkt_addmp(Bignum b)
1383 {
1384 unsigned char *p;
1385 int len;
1386 p = ssh2_mpint_fmt(b, &len);
1387 ssh2_pkt_addstring_start();
1388 ssh2_pkt_addstring_data(p, len);
1389 sfree(p);
1390 }
1391
1392 /*
1393 * Construct an SSH2 final-form packet: compress it, encrypt it,
1394 * put the MAC on it. Final packet, ready to be sent, is stored in
1395 * pktout.data. Total length is returned.
1396 */
1397 static int ssh2_pkt_construct(void)
1398 {
1399 int cipherblk, maclen, padding, i;
1400 static unsigned long outgoing_sequence = 0;
1401
1402 log_packet(PKT_OUTGOING, pktout.data[5], ssh2_pkt_type(pktout.data[5]),
1403 pktout.data + 6, pktout.length - 6);
1404
1405 /*
1406 * Compress packet payload.
1407 */
1408 {
1409 unsigned char *newpayload;
1410 int newlen;
1411 if (cscomp && cscomp->compress(pktout.data + 5, pktout.length - 5,
1412 &newpayload, &newlen)) {
1413 pktout.length = 5;
1414 ssh2_pkt_adddata(newpayload, newlen);
1415 sfree(newpayload);
1416 }
1417 }
1418
1419 /*
1420 * Add padding. At least four bytes, and must also bring total
1421 * length (minus MAC) up to a multiple of the block size.
1422 */
1423 cipherblk = cscipher ? cscipher->blksize : 8; /* block size */
1424 cipherblk = cipherblk < 8 ? 8 : cipherblk; /* or 8 if blksize < 8 */
1425 padding = 4;
1426 padding +=
1427 (cipherblk - (pktout.length + padding) % cipherblk) % cipherblk;
1428 maclen = csmac ? csmac->len : 0;
1429 ssh2_pkt_ensure(pktout.length + padding + maclen);
1430 pktout.data[4] = padding;
1431 for (i = 0; i < padding; i++)
1432 pktout.data[pktout.length + i] = random_byte();
1433 PUT_32BIT(pktout.data, pktout.length + padding - 4);
1434 if (csmac)
1435 csmac->generate(pktout.data, pktout.length + padding,
1436 outgoing_sequence);
1437 outgoing_sequence++; /* whether or not we MACed */
1438
1439 if (cscipher)
1440 cscipher->encrypt(pktout.data, pktout.length + padding);
1441
1442 /* Ready-to-send packet starts at pktout.data. We return length. */
1443 return pktout.length + padding + maclen;
1444 }
1445
1446 /*
1447 * Construct and send an SSH2 packet immediately.
1448 */
1449 static void ssh2_pkt_send(void)
1450 {
1451 int len;
1452 int backlog;
1453 len = ssh2_pkt_construct();
1454 backlog = sk_write(s, pktout.data, len);
1455 if (backlog > SSH_MAX_BACKLOG)
1456 ssh_throttle_all(1, backlog);
1457 }
1458
1459 /*
1460 * Construct an SSH2 packet and add it to a deferred data block.
1461 * Useful for sending multiple packets in a single sk_write() call,
1462 * to prevent a traffic-analysing listener from being able to work
1463 * out the length of any particular packet (such as the password
1464 * packet).
1465 *
1466 * Note that because SSH2 sequence-numbers its packets, this can
1467 * NOT be used as an m4-style `defer' allowing packets to be
1468 * constructed in one order and sent in another.
1469 */
1470 static void ssh2_pkt_defer(void)
1471 {
1472 int len = ssh2_pkt_construct();
1473 if (deferred_len + len > deferred_size) {
1474 deferred_size = deferred_len + len + 128;
1475 deferred_send_data = srealloc(deferred_send_data, deferred_size);
1476 }
1477 memcpy(deferred_send_data + deferred_len, pktout.data, len);
1478 deferred_len += len;
1479 }
1480
1481 /*
1482 * Send the whole deferred data block constructed by
1483 * ssh2_pkt_defer() or SSH1's defer_packet().
1484 */
1485 static void ssh_pkt_defersend(void)
1486 {
1487 int backlog;
1488 backlog = sk_write(s, deferred_send_data, deferred_len);
1489 deferred_len = deferred_size = 0;
1490 sfree(deferred_send_data);
1491 deferred_send_data = NULL;
1492 if (backlog > SSH_MAX_BACKLOG)
1493 ssh_throttle_all(1, backlog);
1494 }
1495
1496 #if 0
1497 void bndebug(char *string, Bignum b)
1498 {
1499 unsigned char *p;
1500 int i, len;
1501 p = ssh2_mpint_fmt(b, &len);
1502 debug(("%s", string));
1503 for (i = 0; i < len; i++)
1504 debug((" %02x", p[i]));
1505 debug(("\n"));
1506 sfree(p);
1507 }
1508 #endif
1509
1510 static void sha_mpint(SHA_State * s, Bignum b)
1511 {
1512 unsigned char *p;
1513 int len;
1514 p = ssh2_mpint_fmt(b, &len);
1515 sha_string(s, p, len);
1516 sfree(p);
1517 }
1518
1519 /*
1520 * SSH2 packet decode functions.
1521 */
1522 static unsigned long ssh2_pkt_getuint32(void)
1523 {
1524 unsigned long value;
1525 if (pktin.length - pktin.savedpos < 4)
1526 return 0; /* arrgh, no way to decline (FIXME?) */
1527 value = GET_32BIT(pktin.data + pktin.savedpos);
1528 pktin.savedpos += 4;
1529 return value;
1530 }
1531 static int ssh2_pkt_getbool(void)
1532 {
1533 unsigned long value;
1534 if (pktin.length - pktin.savedpos < 1)
1535 return 0; /* arrgh, no way to decline (FIXME?) */
1536 value = pktin.data[pktin.savedpos] != 0;
1537 pktin.savedpos++;
1538 return value;
1539 }
1540 static void ssh2_pkt_getstring(char **p, int *length)
1541 {
1542 *p = NULL;
1543 if (pktin.length - pktin.savedpos < 4)
1544 return;
1545 *length = GET_32BIT(pktin.data + pktin.savedpos);
1546 pktin.savedpos += 4;
1547 if (pktin.length - pktin.savedpos < *length)
1548 return;
1549 *p = pktin.data + pktin.savedpos;
1550 pktin.savedpos += *length;
1551 }
1552 static Bignum ssh2_pkt_getmp(void)
1553 {
1554 char *p;
1555 int length;
1556 Bignum b;
1557
1558 ssh2_pkt_getstring(&p, &length);
1559 if (!p)
1560 return NULL;
1561 if (p[0] & 0x80) {
1562 bombout(("internal error: Can't handle negative mpints"));
1563 return NULL;
1564 }
1565 b = bignum_from_bytes(p, length);
1566 return b;
1567 }
1568
1569 /*
1570 * Examine the remote side's version string and compare it against
1571 * a list of known buggy implementations.
1572 */
1573 static void ssh_detect_bugs(char *vstring)
1574 {
1575 char *imp; /* pointer to implementation part */
1576 imp = vstring;
1577 imp += strcspn(imp, "-");
1578 if (*imp) imp++;
1579 imp += strcspn(imp, "-");
1580 if (*imp) imp++;
1581
1582 ssh_remote_bugs = 0;
1583
1584 if (!strcmp(imp, "1.2.18") || !strcmp(imp, "1.2.19") ||
1585 !strcmp(imp, "1.2.20") || !strcmp(imp, "1.2.21") ||
1586 !strcmp(imp, "1.2.22") || !strcmp(imp, "Cisco-1.25")) {
1587 /*
1588 * These versions don't support SSH1_MSG_IGNORE, so we have
1589 * to use a different defence against password length
1590 * sniffing.
1591 */
1592 ssh_remote_bugs |= BUG_CHOKES_ON_SSH1_IGNORE;
1593 logevent("We believe remote version has SSH1 ignore bug");
1594 }
1595
1596 if (!strcmp(imp, "Cisco-1.25")) {
1597 /*
1598 * These versions need a plain password sent; they can't
1599 * handle having a null and a random length of data after
1600 * the password.
1601 */
1602 ssh_remote_bugs |= BUG_NEEDS_SSH1_PLAIN_PASSWORD;
1603 logevent("We believe remote version needs a plain SSH1 password");
1604 }
1605
1606 if (!strcmp(imp, "Cisco-1.25")) {
1607 /*
1608 * These versions apparently have no clue whatever about
1609 * RSA authentication and will panic and die if they see
1610 * an AUTH_RSA message.
1611 */
1612 ssh_remote_bugs |= BUG_CHOKES_ON_RSA;
1613 logevent("We believe remote version can't handle RSA authentication");
1614 }
1615
1616 if (!strncmp(imp, "2.1.0", 5) || !strncmp(imp, "2.0.", 4) ||
1617 !strncmp(imp, "2.2.0", 5) || !strncmp(imp, "2.3.0", 5) ||
1618 !strncmp(imp, "2.1 ", 4)) {
1619 /*
1620 * These versions have the HMAC bug.
1621 */
1622 ssh_remote_bugs |= BUG_SSH2_HMAC;
1623 logevent("We believe remote version has SSH2 HMAC bug");
1624 }
1625 }
1626
1627 static int do_ssh_init(unsigned char c)
1628 {
1629 static int vslen;
1630 static char version[10];
1631 static char *vstring;
1632 static int vstrsize;
1633 static char *vlog;
1634 static int i;
1635
1636 crBegin;
1637
1638 /* Search for the string "SSH-" in the input. */
1639 i = 0;
1640 while (1) {
1641 static const int transS[] = { 1, 2, 2, 1 };
1642 static const int transH[] = { 0, 0, 3, 0 };
1643 static const int transminus[] = { 0, 0, 0, -1 };
1644 if (c == 'S')
1645 i = transS[i];
1646 else if (c == 'H')
1647 i = transH[i];
1648 else if (c == '-')
1649 i = transminus[i];
1650 else
1651 i = 0;
1652 if (i < 0)
1653 break;
1654 crReturn(1); /* get another character */
1655 }
1656
1657 vstrsize = 16;
1658 vstring = smalloc(vstrsize);
1659 strcpy(vstring, "SSH-");
1660 vslen = 4;
1661 i = 0;
1662 while (1) {
1663 crReturn(1); /* get another char */
1664 if (vslen >= vstrsize - 1) {
1665 vstrsize += 16;
1666 vstring = srealloc(vstring, vstrsize);
1667 }
1668 vstring[vslen++] = c;
1669 if (i >= 0) {
1670 if (c == '-') {
1671 version[i] = '\0';
1672 i = -1;
1673 } else if (i < sizeof(version) - 1)
1674 version[i++] = c;
1675 } else if (c == '\n')
1676 break;
1677 }
1678
1679 ssh_agentfwd_enabled = FALSE;
1680 rdpkt2_state.incoming_sequence = 0;
1681
1682 vstring[vslen] = 0;
1683 vlog = smalloc(20 + vslen);
1684 vstring[strcspn (vstring, "\r\n")] = '\0'; /* remove end-of-line chars */
1685 sprintf(vlog, "Server version: %s", vstring);
1686 logevent(vlog);
1687 ssh_detect_bugs(vstring);
1688 sfree(vlog);
1689
1690 /*
1691 * Server version "1.99" means we can choose whether we use v1
1692 * or v2 protocol. Choice is based on cfg.sshprot.
1693 */
1694 if (ssh_versioncmp(version, cfg.sshprot == 1 ? "2.0" : "1.99") >= 0) {
1695 /*
1696 * This is a v2 server. Begin v2 protocol.
1697 */
1698 char verstring[80], vlog[100];
1699 sprintf(verstring, "SSH-2.0-%s", sshver);
1700 SHA_Init(&exhashbase);
1701 /*
1702 * Hash our version string and their version string.
1703 */
1704 sha_string(&exhashbase, verstring, strlen(verstring));
1705 sha_string(&exhashbase, vstring, strcspn(vstring, "\r\n"));
1706 sprintf(vlog, "We claim version: %s", verstring);
1707 logevent(vlog);
1708 strcat(verstring, "\n");
1709 logevent("Using SSH protocol version 2");
1710 sk_write(s, verstring, strlen(verstring));
1711 ssh_protocol = ssh2_protocol;
1712 ssh_version = 2;
1713 s_rdpkt = ssh2_rdpkt;
1714 } else {
1715 /*
1716 * This is a v1 server. Begin v1 protocol.
1717 */
1718 char verstring[80], vlog[100];
1719 sprintf(verstring, "SSH-%s-%s",
1720 (ssh_versioncmp(version, "1.5") <= 0 ? version : "1.5"),
1721 sshver);
1722 sprintf(vlog, "We claim version: %s", verstring);
1723 logevent(vlog);
1724 strcat(verstring, "\n");
1725 logevent("Using SSH protocol version 1");
1726 sk_write(s, verstring, strlen(verstring));
1727 ssh_protocol = ssh1_protocol;
1728 ssh_version = 1;
1729 s_rdpkt = ssh1_rdpkt;
1730 }
1731 ssh_state = SSH_STATE_BEFORE_SIZE;
1732
1733 sfree(vstring);
1734
1735 crFinish(0);
1736 }
1737
1738 static void ssh_gotdata(unsigned char *data, int datalen)
1739 {
1740 crBegin;
1741
1742 /*
1743 * To begin with, feed the characters one by one to the
1744 * protocol initialisation / selection function do_ssh_init().
1745 * When that returns 0, we're done with the initial greeting
1746 * exchange and can move on to packet discipline.
1747 */
1748 while (1) {
1749 int ret;
1750 if (datalen == 0)
1751 crReturnV; /* more data please */
1752 ret = do_ssh_init(*data);
1753 data++;
1754 datalen--;
1755 if (ret == 0)
1756 break;
1757 }
1758
1759 /*
1760 * We emerge from that loop when the initial negotiation is
1761 * over and we have selected an s_rdpkt function. Now pass
1762 * everything to s_rdpkt, and then pass the resulting packets
1763 * to the proper protocol handler.
1764 */
1765 if (datalen == 0)
1766 crReturnV;
1767 while (1) {
1768 while (datalen > 0) {
1769 if (s_rdpkt(&data, &datalen) == 0) {
1770 if (ssh_state == SSH_STATE_CLOSED) {
1771 return;
1772 }
1773 ssh_protocol(NULL, 0, 1);
1774 if (ssh_state == SSH_STATE_CLOSED) {
1775 return;
1776 }
1777 }
1778 }
1779 crReturnV;
1780 }
1781 crFinishV;
1782 }
1783
1784 static int ssh_closing(Plug plug, char *error_msg, int error_code,
1785 int calling_back)
1786 {
1787 ssh_state = SSH_STATE_CLOSED;
1788 if (s) {
1789 sk_close(s);
1790 s = NULL;
1791 }
1792 if (error_msg) {
1793 /* A socket error has occurred. */
1794 logevent(error_msg);
1795 connection_fatal(error_msg);
1796 } else {
1797 /* Otherwise, the remote side closed the connection normally. */
1798 }
1799 return 0;
1800 }
1801
1802 static int ssh_receive(Plug plug, int urgent, char *data, int len)
1803 {
1804 ssh_gotdata(data, len);
1805 if (ssh_state == SSH_STATE_CLOSED) {
1806 if (s) {
1807 sk_close(s);
1808 s = NULL;
1809 }
1810 return 0;
1811 }
1812 return 1;
1813 }
1814
1815 static void ssh_sent(Plug plug, int bufsize)
1816 {
1817 /*
1818 * If the send backlog on the SSH socket itself clears, we
1819 * should unthrottle the whole world if it was throttled.
1820 */
1821 if (bufsize < SSH_MAX_BACKLOG)
1822 ssh_throttle_all(0, bufsize);
1823 }
1824
1825 /*
1826 * Connect to specified host and port.
1827 * Returns an error message, or NULL on success.
1828 * Also places the canonical host name into `realhost'. It must be
1829 * freed by the caller.
1830 */
1831 static char *connect_to_host(char *host, int port, char **realhost, int nodelay)
1832 {
1833 static struct plug_function_table fn_table = {
1834 ssh_closing,
1835 ssh_receive,
1836 ssh_sent,
1837 NULL
1838 }, *fn_table_ptr = &fn_table;
1839
1840 SockAddr addr;
1841 char *err;
1842 #ifdef FWHACK
1843 char *FWhost;
1844 int FWport;
1845 #endif
1846
1847 savedhost = smalloc(1 + strlen(host));
1848 if (!savedhost)
1849 fatalbox("Out of memory");
1850 strcpy(savedhost, host);
1851
1852 if (port < 0)
1853 port = 22; /* default ssh port */
1854 savedport = port;
1855
1856 #ifdef FWHACK
1857 FWhost = host;
1858 FWport = port;
1859 host = FWSTR;
1860 port = 23;
1861 #endif
1862
1863 /*
1864 * Try to find host.
1865 */
1866 {
1867 char buf[200];
1868 sprintf(buf, "Looking up host \"%.170s\"", host);
1869 logevent(buf);
1870 }
1871 addr = sk_namelookup(host, realhost);
1872 if ((err = sk_addr_error(addr)))
1873 return err;
1874
1875 #ifdef FWHACK
1876 *realhost = strdup(FWhost);
1877 #endif
1878
1879 /*
1880 * Open socket.
1881 */
1882 {
1883 char buf[200], addrbuf[100];
1884 sk_getaddr(addr, addrbuf, 100);
1885 sprintf(buf, "Connecting to %.100s port %d", addrbuf, port);
1886 logevent(buf);
1887 }
1888 s = new_connection(addr, *realhost, port, 0, 1, nodelay, &fn_table_ptr);
1889 if ((err = sk_socket_error(s))) {
1890 s = NULL;
1891 return err;
1892 }
1893
1894 #ifdef FWHACK
1895 sk_write(s, "connect ", 8);
1896 sk_write(s, FWhost, strlen(FWhost));
1897 {
1898 char buf[20];
1899 sprintf(buf, " %d\n", FWport);
1900 sk_write(s, buf, strlen(buf));
1901 }
1902 #endif
1903
1904 return NULL;
1905 }
1906
1907 /*
1908 * Throttle or unthrottle the SSH connection.
1909 */
1910 static void ssh1_throttle(int adjust)
1911 {
1912 int old_count = ssh1_throttle_count;
1913 ssh1_throttle_count += adjust;
1914 assert(ssh1_throttle_count >= 0);
1915 if (ssh1_throttle_count && !old_count) {
1916 sk_set_frozen(s, 1);
1917 } else if (!ssh1_throttle_count && old_count) {
1918 sk_set_frozen(s, 0);
1919 }
1920 }
1921
1922 /*
1923 * Throttle or unthrottle _all_ local data streams (for when sends
1924 * on the SSH connection itself back up).
1925 */
1926 static void ssh_throttle_all(int enable, int bufsize)
1927 {
1928 int i;
1929 struct ssh_channel *c;
1930
1931 if (enable == ssh_throttled_all)
1932 return;
1933 ssh_throttled_all = enable;
1934 ssh_overall_bufsize = bufsize;
1935 if (!ssh_channels)
1936 return;
1937 for (i = 0; NULL != (c = index234(ssh_channels, i)); i++) {
1938 switch (c->type) {
1939 case CHAN_MAINSESSION:
1940 /*
1941 * This is treated separately, outside the switch.
1942 */
1943 break;
1944 case CHAN_X11:
1945 x11_override_throttle(c->u.x11.s, enable);
1946 break;
1947 case CHAN_AGENT:
1948 /* Agent channels require no buffer management. */
1949 break;
1950 case CHAN_SOCKDATA:
1951 pfd_override_throttle(c->u.x11.s, enable);
1952 break;
1953 }
1954 }
1955 }
1956
1957 /*
1958 * Handle the key exchange and user authentication phases.
1959 */
1960 static int do_ssh1_login(unsigned char *in, int inlen, int ispkt)
1961 {
1962 int i, j;
1963 static int len;
1964 static unsigned char *rsabuf, *keystr1, *keystr2;
1965 unsigned char cookie[8];
1966 struct RSAKey servkey, hostkey;
1967 struct MD5Context md5c;
1968 static unsigned long supported_ciphers_mask, supported_auths_mask;
1969 static int tried_publickey, tried_agent;
1970 static int tis_auth_refused, ccard_auth_refused;
1971 static unsigned char session_id[16];
1972 static int cipher_type;
1973 static char username[100];
1974 static void *publickey_blob;
1975 int publickey_bloblen;
1976
1977 crBegin;
1978
1979 if (!ispkt)
1980 crWaitUntil(ispkt);
1981
1982 if (pktin.type != SSH1_SMSG_PUBLIC_KEY) {
1983 bombout(("Public key packet not received"));
1984 crReturn(0);
1985 }
1986
1987 logevent("Received public keys");
1988
1989 memcpy(cookie, pktin.body, 8);
1990
1991 i = makekey(pktin.body + 8, &servkey, &keystr1, 0);
1992 j = makekey(pktin.body + 8 + i, &hostkey, &keystr2, 0);
1993
1994 /*
1995 * Log the host key fingerprint.
1996 */
1997 {
1998 char logmsg[80];
1999 logevent("Host key fingerprint is:");
2000 strcpy(logmsg, " ");
2001 hostkey.comment = NULL;
2002 rsa_fingerprint(logmsg + strlen(logmsg),
2003 sizeof(logmsg) - strlen(logmsg), &hostkey);
2004 logevent(logmsg);
2005 }
2006
2007 ssh1_remote_protoflags = GET_32BIT(pktin.body + 8 + i + j);
2008 supported_ciphers_mask = GET_32BIT(pktin.body + 12 + i + j);
2009 supported_auths_mask = GET_32BIT(pktin.body + 16 + i + j);
2010
2011 ssh1_local_protoflags =
2012 ssh1_remote_protoflags & SSH1_PROTOFLAGS_SUPPORTED;
2013 ssh1_local_protoflags |= SSH1_PROTOFLAG_SCREEN_NUMBER;
2014
2015 MD5Init(&md5c);
2016 MD5Update(&md5c, keystr2, hostkey.bytes);
2017 MD5Update(&md5c, keystr1, servkey.bytes);
2018 MD5Update(&md5c, pktin.body, 8);
2019 MD5Final(session_id, &md5c);
2020
2021 for (i = 0; i < 32; i++)
2022 session_key[i] = random_byte();
2023
2024 len = (hostkey.bytes > servkey.bytes ? hostkey.bytes : servkey.bytes);
2025
2026 rsabuf = smalloc(len);
2027 if (!rsabuf)
2028 fatalbox("Out of memory");
2029
2030 /*
2031 * Verify the host key.
2032 */
2033 {
2034 /*
2035 * First format the key into a string.
2036 */
2037 int len = rsastr_len(&hostkey);
2038 char fingerprint[100];
2039 char *keystr = smalloc(len);
2040 if (!keystr)
2041 fatalbox("Out of memory");
2042 rsastr_fmt(keystr, &hostkey);
2043 rsa_fingerprint(fingerprint, sizeof(fingerprint), &hostkey);
2044 verify_ssh_host_key(savedhost, savedport, "rsa", keystr,
2045 fingerprint);
2046 sfree(keystr);
2047 }
2048
2049 for (i = 0; i < 32; i++) {
2050 rsabuf[i] = session_key[i];
2051 if (i < 16)
2052 rsabuf[i] ^= session_id[i];
2053 }
2054
2055 if (hostkey.bytes > servkey.bytes) {
2056 rsaencrypt(rsabuf, 32, &servkey);
2057 rsaencrypt(rsabuf, servkey.bytes, &hostkey);
2058 } else {
2059 rsaencrypt(rsabuf, 32, &hostkey);
2060 rsaencrypt(rsabuf, hostkey.bytes, &servkey);
2061 }
2062
2063 logevent("Encrypted session key");
2064
2065 {
2066 int cipher_chosen = 0, warn = 0;
2067 char *cipher_string = NULL;
2068 for (i = 0; !cipher_chosen && i < CIPHER_MAX; i++) {
2069 int next_cipher = cfg.ssh_cipherlist[i];
2070 if (next_cipher == CIPHER_WARN) {
2071 /* If/when we choose a cipher, warn about it */
2072 warn = 1;
2073 } else if (next_cipher == CIPHER_AES) {
2074 /* XXX Probably don't need to mention this. */
2075 logevent("AES not supported in SSH1, skipping");
2076 } else {
2077 switch (next_cipher) {
2078 case CIPHER_3DES: cipher_type = SSH_CIPHER_3DES;
2079 cipher_string = "3DES"; break;
2080 case CIPHER_BLOWFISH: cipher_type = SSH_CIPHER_BLOWFISH;
2081 cipher_string = "Blowfish"; break;
2082 case CIPHER_DES: cipher_type = SSH_CIPHER_DES;
2083 cipher_string = "single-DES"; break;
2084 }
2085 if (supported_ciphers_mask & (1 << cipher_type))
2086 cipher_chosen = 1;
2087 }
2088 }
2089 if (!cipher_chosen) {
2090 if ((supported_ciphers_mask & (1 << SSH_CIPHER_3DES)) == 0)
2091 bombout(("Server violates SSH 1 protocol by not "
2092 "supporting 3DES encryption"));
2093 else
2094 /* shouldn't happen */
2095 bombout(("No supported ciphers found"));
2096 crReturn(0);
2097 }
2098
2099 /* Warn about chosen cipher if necessary. */
2100 if (warn)
2101 askcipher(cipher_string, 0);
2102 }
2103
2104 switch (cipher_type) {
2105 case SSH_CIPHER_3DES:
2106 logevent("Using 3DES encryption");
2107 break;
2108 case SSH_CIPHER_DES:
2109 logevent("Using single-DES encryption");
2110 break;
2111 case SSH_CIPHER_BLOWFISH:
2112 logevent("Using Blowfish encryption");
2113 break;
2114 }
2115
2116 send_packet(SSH1_CMSG_SESSION_KEY,
2117 PKT_CHAR, cipher_type,
2118 PKT_DATA, cookie, 8,
2119 PKT_CHAR, (len * 8) >> 8, PKT_CHAR, (len * 8) & 0xFF,
2120 PKT_DATA, rsabuf, len,
2121 PKT_INT, ssh1_local_protoflags, PKT_END);
2122
2123 logevent("Trying to enable encryption...");
2124
2125 sfree(rsabuf);
2126
2127 cipher = cipher_type == SSH_CIPHER_BLOWFISH ? &ssh_blowfish_ssh1 :
2128 cipher_type == SSH_CIPHER_DES ? &ssh_des : &ssh_3des;
2129 cipher->sesskey(session_key);
2130
2131 crWaitUntil(ispkt);
2132
2133 if (pktin.type != SSH1_SMSG_SUCCESS) {
2134 bombout(("Encryption not successfully enabled"));
2135 crReturn(0);
2136 }
2137
2138 logevent("Successfully started encryption");
2139
2140 fflush(stdout);
2141 {
2142 static int pos = 0;
2143 static char c;
2144 if ((flags & FLAG_INTERACTIVE) && !*cfg.username) {
2145 if (ssh_get_line) {
2146 if (!ssh_get_line("login as: ",
2147 username, sizeof(username), FALSE)) {
2148 /*
2149 * get_line failed to get a username.
2150 * Terminate.
2151 */
2152 logevent("No username provided. Abandoning session.");
2153 ssh_state = SSH_STATE_CLOSED;
2154 crReturn(1);
2155 }
2156 } else {
2157 c_write_str("login as: ");
2158 ssh_send_ok = 1;
2159 while (pos >= 0) {
2160 crWaitUntil(!ispkt);
2161 while (inlen--)
2162 switch (c = *in++) {
2163 case 10:
2164 case 13:
2165 username[pos] = 0;
2166 pos = -1;
2167 break;
2168 case 8:
2169 case 127:
2170 if (pos > 0) {
2171 c_write_str("\b \b");
2172 pos--;
2173 }
2174 break;
2175 case 21:
2176 case 27:
2177 while (pos > 0) {
2178 c_write_str("\b \b");
2179 pos--;
2180 }
2181 break;
2182 case 3:
2183 case 4:
2184 cleanup_exit(0);
2185 break;
2186 default:
2187 if (((c >= ' ' && c <= '~') ||
2188 ((unsigned char) c >= 160))
2189 && pos < sizeof(username)-1) {
2190 username[pos++] = c;
2191 c_write(&c, 1);
2192 }
2193 break;
2194 }
2195 }
2196 c_write_str("\r\n");
2197 username[strcspn(username, "\n\r")] = '\0';
2198 }
2199 } else {
2200 strncpy(username, cfg.username, 99);
2201 username[99] = '\0';
2202 }
2203
2204 send_packet(SSH1_CMSG_USER, PKT_STR, username, PKT_END);
2205 {
2206 char userlog[22 + sizeof(username)];
2207 sprintf(userlog, "Sent username \"%s\"", username);
2208 logevent(userlog);
2209 if (flags & FLAG_INTERACTIVE &&
2210 (!((flags & FLAG_STDERR) && (flags & FLAG_VERBOSE)))) {
2211 strcat(userlog, "\r\n");
2212 c_write_str(userlog);
2213 }
2214 }
2215 }
2216
2217 crWaitUntil(ispkt);
2218
2219 if ((ssh_remote_bugs & BUG_CHOKES_ON_RSA)) {
2220 /* We must not attempt PK auth. Pretend we've already tried it. */
2221 tried_publickey = tried_agent = 1;
2222 } else {
2223 tried_publickey = tried_agent = 0;
2224 }
2225 tis_auth_refused = ccard_auth_refused = 0;
2226 /* Load the public half of cfg.keyfile so we notice if it's in Pageant */
2227 if (*cfg.keyfile) {
2228 if (!rsakey_pubblob(cfg.keyfile, &publickey_blob, &publickey_bloblen))
2229 publickey_blob = NULL;
2230 } else
2231 publickey_blob = NULL;
2232
2233 while (pktin.type == SSH1_SMSG_FAILURE) {
2234 static char password[100];
2235 static char prompt[200];
2236 static int pos;
2237 static char c;
2238 static int pwpkt_type;
2239 pwpkt_type = SSH1_CMSG_AUTH_PASSWORD;
2240
2241 if (agent_exists() && !tried_agent) {
2242 /*
2243 * Attempt RSA authentication using Pageant.
2244 */
2245 static unsigned char request[5], *response, *p;
2246 static int responselen;
2247 static int i, nkeys;
2248 static int authed = FALSE;
2249 void *r;
2250
2251 tried_agent = 1;
2252 logevent("Pageant is running. Requesting keys.");
2253
2254 /* Request the keys held by the agent. */
2255 PUT_32BIT(request, 1);
2256 request[4] = SSH1_AGENTC_REQUEST_RSA_IDENTITIES;
2257 agent_query(request, 5, &r, &responselen);
2258 response = (unsigned char *) r;
2259 if (response && responselen >= 5 &&
2260 response[4] == SSH1_AGENT_RSA_IDENTITIES_ANSWER) {
2261 p = response + 5;
2262 nkeys = GET_32BIT(p);
2263 p += 4;
2264 {
2265 char buf[64];
2266 sprintf(buf, "Pageant has %d SSH1 keys", nkeys);
2267 logevent(buf);
2268 }
2269 for (i = 0; i < nkeys; i++) {
2270 static struct RSAKey key;
2271 static Bignum challenge;
2272 static char *commentp;
2273 static int commentlen;
2274
2275 {
2276 char buf[64];
2277 sprintf(buf, "Trying Pageant key #%d", i);
2278 logevent(buf);
2279 }
2280 if (publickey_blob &&
2281 !memcmp(p, publickey_blob, publickey_bloblen)) {
2282 logevent("This key matches configured key file");
2283 tried_publickey = 1;
2284 }
2285 p += 4;
2286 p += ssh1_read_bignum(p, &key.exponent);
2287 p += ssh1_read_bignum(p, &key.modulus);
2288 commentlen = GET_32BIT(p);
2289 p += 4;
2290 commentp = p;
2291 p += commentlen;
2292 send_packet(SSH1_CMSG_AUTH_RSA,
2293 PKT_BIGNUM, key.modulus, PKT_END);
2294 crWaitUntil(ispkt);
2295 if (pktin.type != SSH1_SMSG_AUTH_RSA_CHALLENGE) {
2296 logevent("Key refused");
2297 continue;
2298 }
2299 logevent("Received RSA challenge");
2300 ssh1_read_bignum(pktin.body, &challenge);
2301 {
2302 char *agentreq, *q, *ret;
2303 void *vret;
2304 int len, retlen;
2305 len = 1 + 4; /* message type, bit count */
2306 len += ssh1_bignum_length(key.exponent);
2307 len += ssh1_bignum_length(key.modulus);
2308 len += ssh1_bignum_length(challenge);
2309 len += 16; /* session id */
2310 len += 4; /* response format */
2311 agentreq = smalloc(4 + len);
2312 PUT_32BIT(agentreq, len);
2313 q = agentreq + 4;
2314 *q++ = SSH1_AGENTC_RSA_CHALLENGE;
2315 PUT_32BIT(q, bignum_bitcount(key.modulus));
2316 q += 4;
2317 q += ssh1_write_bignum(q, key.exponent);
2318 q += ssh1_write_bignum(q, key.modulus);
2319 q += ssh1_write_bignum(q, challenge);
2320 memcpy(q, session_id, 16);
2321 q += 16;
2322 PUT_32BIT(q, 1); /* response format */
2323 agent_query(agentreq, len + 4, &vret, &retlen);
2324 ret = vret;
2325 sfree(agentreq);
2326 if (ret) {
2327 if (ret[4] == SSH1_AGENT_RSA_RESPONSE) {
2328 logevent("Sending Pageant's response");
2329 send_packet(SSH1_CMSG_AUTH_RSA_RESPONSE,
2330 PKT_DATA, ret + 5, 16,
2331 PKT_END);
2332 sfree(ret);
2333 crWaitUntil(ispkt);
2334 if (pktin.type == SSH1_SMSG_SUCCESS) {
2335 logevent
2336 ("Pageant's response accepted");
2337 if (flags & FLAG_VERBOSE) {
2338 c_write_str
2339 ("Authenticated using RSA key \"");
2340 c_write(commentp, commentlen);
2341 c_write_str("\" from agent\r\n");
2342 }
2343 authed = TRUE;
2344 } else
2345 logevent
2346 ("Pageant's response not accepted");
2347 } else {
2348 logevent
2349 ("Pageant failed to answer challenge");
2350 sfree(ret);
2351 }
2352 } else {
2353 logevent("No reply received from Pageant");
2354 }
2355 }
2356 freebn(key.exponent);
2357 freebn(key.modulus);
2358 freebn(challenge);
2359 if (authed)
2360 break;
2361 }
2362 }
2363 if (authed)
2364 break;
2365 }
2366 if (*cfg.keyfile && !tried_publickey)
2367 pwpkt_type = SSH1_CMSG_AUTH_RSA;
2368
2369 if (cfg.try_tis_auth &&
2370 (supported_auths_mask & (1 << SSH1_AUTH_TIS)) &&
2371 !tis_auth_refused) {
2372 pwpkt_type = SSH1_CMSG_AUTH_TIS_RESPONSE;
2373 logevent("Requested TIS authentication");
2374 send_packet(SSH1_CMSG_AUTH_TIS, PKT_END);
2375 crWaitUntil(ispkt);
2376 if (pktin.type != SSH1_SMSG_AUTH_TIS_CHALLENGE) {
2377 logevent("TIS authentication declined");
2378 if (flags & FLAG_INTERACTIVE)
2379 c_write_str("TIS authentication refused.\r\n");
2380 tis_auth_refused = 1;
2381 continue;
2382 } else {
2383 int challengelen = ((pktin.body[0] << 24) |
2384 (pktin.body[1] << 16) |
2385 (pktin.body[2] << 8) |
2386 (pktin.body[3]));
2387 logevent("Received TIS challenge");
2388 if (challengelen > sizeof(prompt) - 1)
2389 challengelen = sizeof(prompt) - 1; /* prevent overrun */
2390 memcpy(prompt, pktin.body + 4, challengelen);
2391 /* Prompt heuristic comes from OpenSSH */
2392 strncpy(prompt + challengelen,
2393 memchr(prompt, '\n', challengelen) ?
2394 "": "\r\nResponse: ",
2395 (sizeof prompt) - challengelen);
2396 prompt[(sizeof prompt) - 1] = '\0';
2397 }
2398 }
2399 if (cfg.try_tis_auth &&
2400 (supported_auths_mask & (1 << SSH1_AUTH_CCARD)) &&
2401 !ccard_auth_refused) {
2402 pwpkt_type = SSH1_CMSG_AUTH_CCARD_RESPONSE;
2403 logevent("Requested CryptoCard authentication");
2404 send_packet(SSH1_CMSG_AUTH_CCARD, PKT_END);
2405 crWaitUntil(ispkt);
2406 if (pktin.type != SSH1_SMSG_AUTH_CCARD_CHALLENGE) {
2407 logevent("CryptoCard authentication declined");
2408 c_write_str("CryptoCard authentication refused.\r\n");
2409 ccard_auth_refused = 1;
2410 continue;
2411 } else {
2412 int challengelen = ((pktin.body[0] << 24) |
2413 (pktin.body[1] << 16) |
2414 (pktin.body[2] << 8) |
2415 (pktin.body[3]));
2416 logevent("Received CryptoCard challenge");
2417 if (challengelen > sizeof(prompt) - 1)
2418 challengelen = sizeof(prompt) - 1; /* prevent overrun */
2419 memcpy(prompt, pktin.body + 4, challengelen);
2420 strncpy(prompt + challengelen,
2421 memchr(prompt, '\n', challengelen) ?
2422 "" : "\r\nResponse: ",
2423 sizeof(prompt) - challengelen);
2424 prompt[sizeof(prompt) - 1] = '\0';
2425 }
2426 }
2427 if (pwpkt_type == SSH1_CMSG_AUTH_PASSWORD) {
2428 sprintf(prompt, "%.90s@%.90s's password: ",
2429 username, savedhost);
2430 }
2431 if (pwpkt_type == SSH1_CMSG_AUTH_RSA) {
2432 char *comment = NULL;
2433 if (flags & FLAG_VERBOSE)
2434 c_write_str("Trying public key authentication.\r\n");
2435 if (!rsakey_encrypted(cfg.keyfile, &comment)) {
2436 if (flags & FLAG_VERBOSE)
2437 c_write_str("No passphrase required.\r\n");
2438 goto tryauth;
2439 }
2440 sprintf(prompt, "Passphrase for key \"%.100s\": ", comment);
2441 sfree(comment);
2442 }
2443
2444 /*
2445 * Show password prompt, having first obtained it via a TIS
2446 * or CryptoCard exchange if we're doing TIS or CryptoCard
2447 * authentication.
2448 */
2449 if (ssh_get_line) {
2450 if (!ssh_get_line(prompt, password, sizeof(password), TRUE)) {
2451 /*
2452 * get_line failed to get a password (for example
2453 * because one was supplied on the command line
2454 * which has already failed to work). Terminate.
2455 */
2456 send_packet(SSH1_MSG_DISCONNECT,
2457 PKT_STR, "No more passwords available to try",
2458 PKT_END);
2459 logevent("Unable to authenticate");
2460 connection_fatal("Unable to authenticate");
2461 ssh_state = SSH_STATE_CLOSED;
2462 crReturn(1);
2463 }
2464 } else {
2465 /* Prompt may have come from server. We've munged it a bit, so
2466 * we know it to be zero-terminated at least once. */
2467 c_write_untrusted(prompt, strlen(prompt));
2468 pos = 0;
2469 ssh_send_ok = 1;
2470 while (pos >= 0) {
2471 crWaitUntil(!ispkt);
2472 while (inlen--)
2473 switch (c = *in++) {
2474 case 10:
2475 case 13:
2476 password[pos] = 0;
2477 pos = -1;
2478 break;
2479 case 8:
2480 case 127:
2481 if (pos > 0)
2482 pos--;
2483 break;
2484 case 21:
2485 case 27:
2486 pos = 0;
2487 break;
2488 case 3:
2489 case 4:
2490 cleanup_exit(0);
2491 break;
2492 default:
2493 if (pos < sizeof(password)-1)
2494 password[pos++] = c;
2495 break;
2496 }
2497 }
2498 c_write_str("\r\n");
2499 }
2500
2501 tryauth:
2502 if (pwpkt_type == SSH1_CMSG_AUTH_RSA) {
2503 /*
2504 * Try public key authentication with the specified
2505 * key file.
2506 */
2507 static struct RSAKey pubkey;
2508 static Bignum challenge, response;
2509 static int i;
2510 static unsigned char buffer[32];
2511
2512 tried_publickey = 1;
2513 i = loadrsakey(cfg.keyfile, &pubkey, password);
2514 if (i == 0) {
2515 c_write_str("Couldn't load private key from ");
2516 c_write_str(cfg.keyfile);
2517 c_write_str(".\r\n");
2518 continue; /* go and try password */
2519 }
2520 if (i == -1) {
2521 c_write_str("Wrong passphrase.\r\n");
2522 tried_publickey = 0;
2523 continue; /* try again */
2524 }
2525
2526 /*
2527 * Send a public key attempt.
2528 */
2529 send_packet(SSH1_CMSG_AUTH_RSA,
2530 PKT_BIGNUM, pubkey.modulus, PKT_END);
2531
2532 crWaitUntil(ispkt);
2533 if (pktin.type == SSH1_SMSG_FAILURE) {
2534 c_write_str("Server refused our public key.\r\n");
2535 continue; /* go and try password */
2536 }
2537 if (pktin.type != SSH1_SMSG_AUTH_RSA_CHALLENGE) {
2538 bombout(("Bizarre response to offer of public key"));
2539 crReturn(0);
2540 }
2541 ssh1_read_bignum(pktin.body, &challenge);
2542 response = rsadecrypt(challenge, &pubkey);
2543 freebn(pubkey.private_exponent); /* burn the evidence */
2544
2545 for (i = 0; i < 32; i++) {
2546 buffer[i] = bignum_byte(response, 31 - i);
2547 }
2548
2549 MD5Init(&md5c);
2550 MD5Update(&md5c, buffer, 32);
2551 MD5Update(&md5c, session_id, 16);
2552 MD5Final(buffer, &md5c);
2553
2554 send_packet(SSH1_CMSG_AUTH_RSA_RESPONSE,
2555 PKT_DATA, buffer, 16, PKT_END);
2556
2557 crWaitUntil(ispkt);
2558 if (pktin.type == SSH1_SMSG_FAILURE) {
2559 if (flags & FLAG_VERBOSE)
2560 c_write_str
2561 ("Failed to authenticate with our public key.\r\n");
2562 continue; /* go and try password */
2563 } else if (pktin.type != SSH1_SMSG_SUCCESS) {
2564 bombout(
2565 ("Bizarre response to RSA authentication response"));
2566 crReturn(0);
2567 }
2568
2569 break; /* we're through! */
2570 } else {
2571 if (pwpkt_type == SSH1_CMSG_AUTH_PASSWORD) {
2572 /*
2573 * Defence against traffic analysis: we send a
2574 * whole bunch of packets containing strings of
2575 * different lengths. One of these strings is the
2576 * password, in a SSH1_CMSG_AUTH_PASSWORD packet.
2577 * The others are all random data in
2578 * SSH1_MSG_IGNORE packets. This way a passive
2579 * listener can't tell which is the password, and
2580 * hence can't deduce the password length.
2581 *
2582 * Anybody with a password length greater than 16
2583 * bytes is going to have enough entropy in their
2584 * password that a listener won't find it _that_
2585 * much help to know how long it is. So what we'll
2586 * do is:
2587 *
2588 * - if password length < 16, we send 15 packets
2589 * containing string lengths 1 through 15
2590 *
2591 * - otherwise, we let N be the nearest multiple
2592 * of 8 below the password length, and send 8
2593 * packets containing string lengths N through
2594 * N+7. This won't obscure the order of
2595 * magnitude of the password length, but it will
2596 * introduce a bit of extra uncertainty.
2597 *
2598 * A few servers (the old 1.2.18 through 1.2.22)
2599 * can't deal with SSH1_MSG_IGNORE. For these
2600 * servers, we need an alternative defence. We make
2601 * use of the fact that the password is interpreted
2602 * as a C string: so we can append a NUL, then some
2603 * random data.
2604 *
2605 * One server (a Cisco one) can deal with neither
2606 * SSH1_MSG_IGNORE _nor_ a padded password string.
2607 * For this server we are left with no defences
2608 * against password length sniffing.
2609 */
2610 if (!(ssh_remote_bugs & BUG_CHOKES_ON_SSH1_IGNORE)) {
2611 /*
2612 * The server can deal with SSH1_MSG_IGNORE, so
2613 * we can use the primary defence.
2614 */
2615 int bottom, top, pwlen, i;
2616 char *randomstr;
2617
2618 pwlen = strlen(password);
2619 if (pwlen < 16) {
2620 bottom = 0; /* zero length passwords are OK! :-) */
2621 top = 15;
2622 } else {
2623 bottom = pwlen & ~7;
2624 top = bottom + 7;
2625 }
2626
2627 assert(pwlen >= bottom && pwlen <= top);
2628
2629 randomstr = smalloc(top + 1);
2630
2631 for (i = bottom; i <= top; i++) {
2632 if (i == pwlen)
2633 defer_packet(pwpkt_type, PKT_STR, password,
2634 PKT_END);
2635 else {
2636 for (j = 0; j < i; j++) {
2637 do {
2638 randomstr[j] = random_byte();
2639 } while (randomstr[j] == '\0');
2640 }
2641 randomstr[i] = '\0';
2642 defer_packet(SSH1_MSG_IGNORE,
2643 PKT_STR, randomstr, PKT_END);
2644 }
2645 }
2646 logevent("Sending password with camouflage packets");
2647 ssh_pkt_defersend();
2648 }
2649 else if (!(ssh_remote_bugs & BUG_NEEDS_SSH1_PLAIN_PASSWORD)) {
2650 /*
2651 * The server can't deal with SSH1_MSG_IGNORE
2652 * but can deal with padded passwords, so we
2653 * can use the secondary defence.
2654 */
2655 char string[64];
2656 char *s;
2657 int len;
2658
2659 len = strlen(password);
2660 if (len < sizeof(string)) {
2661 s = string;
2662 strcpy(string, password);
2663 len++; /* cover the zero byte */
2664 while (len < sizeof(string)) {
2665 string[len++] = (char) random_byte();
2666 }
2667 } else {
2668 s = password;
2669 }
2670 logevent("Sending length-padded password");
2671 send_packet(pwpkt_type, PKT_INT, len,
2672 PKT_DATA, s, len, PKT_END);
2673 } else {
2674 /*
2675 * The server has _both_
2676 * BUG_CHOKES_ON_SSH1_IGNORE and
2677 * BUG_NEEDS_SSH1_PLAIN_PASSWORD. There is
2678 * therefore nothing we can do.
2679 */
2680 int len;
2681 len = strlen(password);
2682 logevent("Sending unpadded password");
2683 send_packet(pwpkt_type, PKT_INT, len,
2684 PKT_DATA, password, len, PKT_END);
2685 }
2686 } else {
2687 send_packet(pwpkt_type, PKT_STR, password, PKT_END);
2688 }
2689 }
2690 logevent("Sent password");
2691 memset(password, 0, strlen(password));
2692 crWaitUntil(ispkt);
2693 if (pktin.type == SSH1_SMSG_FAILURE) {
2694 if (flags & FLAG_VERBOSE)
2695 c_write_str("Access denied\r\n");
2696 logevent("Authentication refused");
2697 } else if (pktin.type == SSH1_MSG_DISCONNECT) {
2698 logevent("Received disconnect request");
2699 ssh_state = SSH_STATE_CLOSED;
2700 crReturn(1);
2701 } else if (pktin.type != SSH1_SMSG_SUCCESS) {
2702 bombout(("Strange packet received, type %d", pktin.type));
2703 crReturn(0);
2704 }
2705 }
2706
2707 logevent("Authentication successful");
2708
2709 crFinish(1);
2710 }
2711
2712 void sshfwd_close(struct ssh_channel *c)
2713 {
2714 if (c && !c->closes) {
2715 /*
2716 * If the channel's remoteid is -1, we have sent
2717 * CHANNEL_OPEN for this channel, but it hasn't even been
2718 * acknowledged by the server. So we must set a close flag
2719 * on it now, and then when the server acks the channel
2720 * open, we can close it then.
2721 */
2722 if (c->remoteid != -1) {
2723 if (ssh_version == 1) {
2724 send_packet(SSH1_MSG_CHANNEL_CLOSE, PKT_INT, c->remoteid,
2725 PKT_END);
2726 } else {
2727 ssh2_pkt_init(SSH2_MSG_CHANNEL_CLOSE);
2728 ssh2_pkt_adduint32(c->remoteid);
2729 ssh2_pkt_send();
2730 }
2731 }
2732 c->closes = 1;
2733 if (c->type == CHAN_X11) {
2734 c->u.x11.s = NULL;
2735 logevent("Forwarded X11 connection terminated");
2736 } else if (c->type == CHAN_SOCKDATA ||
2737 c->type == CHAN_SOCKDATA_DORMANT) {
2738 c->u.pfd.s = NULL;
2739 logevent("Forwarded port closed");
2740 }
2741 }
2742 }
2743
2744 int sshfwd_write(struct ssh_channel *c, char *buf, int len)
2745 {
2746 if (ssh_version == 1) {
2747 send_packet(SSH1_MSG_CHANNEL_DATA,
2748 PKT_INT, c->remoteid,
2749 PKT_INT, len, PKT_DATA, buf, len, PKT_END);
2750 /*
2751 * In SSH1 we can return 0 here - implying that forwarded
2752 * connections are never individually throttled - because
2753 * the only circumstance that can cause throttling will be
2754 * the whole SSH connection backing up, in which case
2755 * _everything_ will be throttled as a whole.
2756 */
2757 return 0;
2758 } else {
2759 ssh2_add_channel_data(c, buf, len);
2760 return ssh2_try_send(c);
2761 }
2762 }
2763
2764 void sshfwd_unthrottle(struct ssh_channel *c, int bufsize)
2765 {
2766 if (ssh_version == 1) {
2767 if (c->v.v1.throttling && bufsize < SSH1_BUFFER_LIMIT) {
2768 c->v.v1.throttling = 0;
2769 ssh1_throttle(-1);
2770 }
2771 } else {
2772 ssh2_set_window(c, OUR_V2_WINSIZE - bufsize);
2773 }
2774 }
2775
2776 static void ssh1_protocol(unsigned char *in, int inlen, int ispkt)
2777 {
2778 crBegin;
2779
2780 random_init();
2781
2782 while (!do_ssh1_login(in, inlen, ispkt)) {
2783 crReturnV;
2784 }
2785 if (ssh_state == SSH_STATE_CLOSED)
2786 crReturnV;
2787
2788 if (cfg.agentfwd && agent_exists()) {
2789 logevent("Requesting agent forwarding");
2790 send_packet(SSH1_CMSG_AGENT_REQUEST_FORWARDING, PKT_END);
2791 do {
2792 crReturnV;
2793 } while (!ispkt);
2794 if (pktin.type != SSH1_SMSG_SUCCESS
2795 && pktin.type != SSH1_SMSG_FAILURE) {
2796 bombout(("Protocol confusion"));
2797 crReturnV;
2798 } else if (pktin.type == SSH1_SMSG_FAILURE) {
2799 logevent("Agent forwarding refused");
2800 } else {
2801 logevent("Agent forwarding enabled");
2802 ssh_agentfwd_enabled = TRUE;
2803 }
2804 }
2805
2806 if (cfg.x11_forward) {
2807 char proto[20], data[64];
2808 logevent("Requesting X11 forwarding");
2809 x11_invent_auth(proto, sizeof(proto), data, sizeof(data));
2810 if (ssh1_local_protoflags & SSH1_PROTOFLAG_SCREEN_NUMBER) {
2811 send_packet(SSH1_CMSG_X11_REQUEST_FORWARDING,
2812 PKT_STR, proto, PKT_STR, data,
2813 PKT_INT, 0, PKT_END);
2814 } else {
2815 send_packet(SSH1_CMSG_X11_REQUEST_FORWARDING,
2816 PKT_STR, proto, PKT_STR, data, PKT_END);
2817 }
2818 do {
2819 crReturnV;
2820 } while (!ispkt);
2821 if (pktin.type != SSH1_SMSG_SUCCESS
2822 && pktin.type != SSH1_SMSG_FAILURE) {
2823 bombout(("Protocol confusion"));
2824 crReturnV;
2825 } else if (pktin.type == SSH1_SMSG_FAILURE) {
2826 logevent("X11 forwarding refused");
2827 } else {
2828 logevent("X11 forwarding enabled");
2829 ssh_X11_fwd_enabled = TRUE;
2830 }
2831 }
2832
2833 {
2834 char type, *e;
2835 int n;
2836 int sport,dport,sserv,dserv;
2837 char sports[256], dports[256], host[256];
2838 char buf[1024];
2839 struct servent *se;
2840
2841 ssh_rportfwds = newtree234(ssh_rportcmp_ssh1);
2842 /* Add port forwardings. */
2843 e = cfg.portfwd;
2844 while (*e) {
2845 type = *e++;
2846 n = 0;
2847 while (*e && *e != '\t')
2848 sports[n++] = *e++;
2849 sports[n] = 0;
2850 if (*e == '\t')
2851 e++;
2852 n = 0;
2853 while (*e && *e != ':')
2854 host[n++] = *e++;
2855 host[n] = 0;
2856 if (*e == ':')
2857 e++;
2858 n = 0;
2859 while (*e)
2860 dports[n++] = *e++;
2861 dports[n] = 0;
2862 e++;
2863 dport = atoi(dports);
2864 dserv = 0;
2865 if (dport == 0) {
2866 dserv = 1;
2867 se = getservbyname(dports, NULL);
2868 if (se != NULL) {
2869 dport = ntohs(se->s_port);
2870 } else {
2871 sprintf(buf,
2872 "Service lookup failed for destination port \"%s\"",
2873 dports);
2874 logevent(buf);
2875 }
2876 }
2877 sport = atoi(sports);
2878 sserv = 0;
2879 if (sport == 0) {
2880 sserv = 1;
2881 se = getservbyname(sports, NULL);
2882 if (se != NULL) {
2883 sport = ntohs(se->s_port);
2884 } else {
2885 sprintf(buf,
2886 "Service lookup failed for source port \"%s\"",
2887 sports);
2888 logevent(buf);
2889 }
2890 }
2891 if (sport && dport) {
2892 if (type == 'L') {
2893 pfd_addforward(host, dport, sport);
2894 sprintf(buf, "Local port %.*s%.*s%d%.*s forwarding to"
2895 " %s:%.*s%.*s%d%.*s",
2896 sserv ? strlen(sports) : 0, sports,
2897 sserv, "(", sport, sserv, ")",
2898 host,
2899 dserv ? strlen(dports) : 0, dports,
2900 dserv, "(", dport, dserv, ")");
2901 logevent(buf);
2902 } else {
2903 struct ssh_rportfwd *pf;
2904 pf = smalloc(sizeof(*pf));
2905 strcpy(pf->dhost, host);
2906 pf->dport = dport;
2907 if (add234(ssh_rportfwds, pf) != pf) {
2908 sprintf(buf,
2909 "Duplicate remote port forwarding to %s:%d",
2910 host, dport);
2911 logevent(buf);
2912 sfree(pf);
2913 } else {
2914 sprintf(buf, "Requesting remote port %.*s%.*s%d%.*s"
2915 " forward to %s:%.*s%.*s%d%.*s",
2916 sserv ? strlen(sports) : 0, sports,
2917 sserv, "(", sport, sserv, ")",
2918 host,
2919 dserv ? strlen(dports) : 0, dports,
2920 dserv, "(", dport, dserv, ")");
2921 logevent(buf);
2922 send_packet(SSH1_CMSG_PORT_FORWARD_REQUEST,
2923 PKT_INT, sport,
2924 PKT_STR, host,
2925 PKT_INT, dport,
2926 PKT_END);
2927 }
2928 }
2929 }
2930 }
2931 }
2932
2933 if (!cfg.nopty) {
2934 send_packet(SSH1_CMSG_REQUEST_PTY,
2935 PKT_STR, cfg.termtype,
2936 PKT_INT, rows, PKT_INT, cols,
2937 PKT_INT, 0, PKT_INT, 0, PKT_CHAR, 0, PKT_END);
2938 ssh_state = SSH_STATE_INTERMED;
2939 do {
2940 crReturnV;
2941 } while (!ispkt);
2942 if (pktin.type != SSH1_SMSG_SUCCESS
2943 && pktin.type != SSH1_SMSG_FAILURE) {
2944 bombout(("Protocol confusion"));
2945 crReturnV;
2946 } else if (pktin.type == SSH1_SMSG_FAILURE) {
2947 c_write_str("Server refused to allocate pty\r\n");
2948 ssh_editing = ssh_echoing = 1;
2949 }
2950 logevent("Allocated pty");
2951 } else {
2952 ssh_editing = ssh_echoing = 1;
2953 }
2954
2955 if (cfg.compression) {
2956 send_packet(SSH1_CMSG_REQUEST_COMPRESSION, PKT_INT, 6, PKT_END);
2957 do {
2958 crReturnV;
2959 } while (!ispkt);
2960 if (pktin.type != SSH1_SMSG_SUCCESS
2961 && pktin.type != SSH1_SMSG_FAILURE) {
2962 bombout(("Protocol confusion"));
2963 crReturnV;
2964 } else if (pktin.type == SSH1_SMSG_FAILURE) {
2965 c_write_str("Server refused to compress\r\n");
2966 }
2967 logevent("Started compression");
2968 ssh1_compressing = TRUE;
2969 zlib_compress_init();
2970 zlib_decompress_init();
2971 }
2972
2973 /*
2974 * Start the shell or command.
2975 *
2976 * Special case: if the first-choice command is an SSH2
2977 * subsystem (hence not usable here) and the second choice
2978 * exists, we fall straight back to that.
2979 */
2980 {
2981 char *cmd = cfg.remote_cmd_ptr;
2982
2983 if (cfg.ssh_subsys && cfg.remote_cmd_ptr2) {
2984 cmd = cfg.remote_cmd_ptr2;
2985 ssh_fallback_cmd = TRUE;
2986 }
2987 if (*cmd)
2988 send_packet(SSH1_CMSG_EXEC_CMD, PKT_STR, cmd, PKT_END);
2989 else
2990 send_packet(SSH1_CMSG_EXEC_SHELL, PKT_END);
2991 logevent("Started session");
2992 }
2993
2994 ssh_state = SSH_STATE_SESSION;
2995 if (size_needed)
2996 ssh_size();
2997 if (eof_needed)
2998 ssh_special(TS_EOF);
2999
3000 ldisc_send(NULL, 0, 0); /* cause ldisc to notice changes */
3001 ssh_send_ok = 1;
3002 ssh_channels = newtree234(ssh_channelcmp);
3003 while (1) {
3004 crReturnV;
3005 if (ispkt) {
3006 if (pktin.type == SSH1_SMSG_STDOUT_DATA ||
3007 pktin.type == SSH1_SMSG_STDERR_DATA) {
3008 long len = GET_32BIT(pktin.body);
3009 int bufsize =
3010 from_backend(pktin.type == SSH1_SMSG_STDERR_DATA,
3011 pktin.body + 4, len);
3012 if (!ssh1_stdout_throttling && bufsize > SSH1_BUFFER_LIMIT) {
3013 ssh1_stdout_throttling = 1;
3014 ssh1_throttle(+1);
3015 }
3016 } else if (pktin.type == SSH1_MSG_DISCONNECT) {
3017 ssh_state = SSH_STATE_CLOSED;
3018 logevent("Received disconnect request");
3019 crReturnV;
3020 } else if (pktin.type == SSH1_SMSG_X11_OPEN) {
3021 /* Remote side is trying to open a channel to talk to our
3022 * X-Server. Give them back a local channel number. */
3023 struct ssh_channel *c;
3024
3025 logevent("Received X11 connect request");
3026 /* Refuse if X11 forwarding is disabled. */
3027 if (!ssh_X11_fwd_enabled) {
3028 send_packet(SSH1_MSG_CHANNEL_OPEN_FAILURE,
3029 PKT_INT, GET_32BIT(pktin.body), PKT_END);
3030 logevent("Rejected X11 connect request");
3031 } else {
3032 c = smalloc(sizeof(struct ssh_channel));
3033
3034 if (x11_init(&c->u.x11.s, cfg.x11_display, c) != NULL) {
3035 logevent("opening X11 forward connection failed");
3036 sfree(c);
3037 send_packet(SSH1_MSG_CHANNEL_OPEN_FAILURE,
3038 PKT_INT, GET_32BIT(pktin.body),
3039 PKT_END);
3040 } else {
3041 logevent
3042 ("opening X11 forward connection succeeded");
3043 c->remoteid = GET_32BIT(pktin.body);
3044 c->localid = alloc_channel_id();
3045 c->closes = 0;
3046 c->v.v1.throttling = 0;
3047 c->type = CHAN_X11; /* identify channel type */
3048 add234(ssh_channels, c);
3049 send_packet(SSH1_MSG_CHANNEL_OPEN_CONFIRMATION,
3050 PKT_INT, c->remoteid, PKT_INT,
3051 c->localid, PKT_END);
3052 logevent("Opened X11 forward channel");
3053 }
3054 }
3055 } else if (pktin.type == SSH1_SMSG_AGENT_OPEN) {
3056 /* Remote side is trying to open a channel to talk to our
3057 * agent. Give them back a local channel number. */
3058 struct ssh_channel *c;
3059
3060 /* Refuse if agent forwarding is disabled. */
3061 if (!ssh_agentfwd_enabled) {
3062 send_packet(SSH1_MSG_CHANNEL_OPEN_FAILURE,
3063 PKT_INT, GET_32BIT(pktin.body), PKT_END);
3064 } else {
3065 c = smalloc(sizeof(struct ssh_channel));
3066 c->remoteid = GET_32BIT(pktin.body);
3067 c->localid = alloc_channel_id();
3068 c->closes = 0;
3069 c->v.v1.throttling = 0;
3070 c->type = CHAN_AGENT; /* identify channel type */
3071 c->u.a.lensofar = 0;
3072 add234(ssh_channels, c);
3073 send_packet(SSH1_MSG_CHANNEL_OPEN_CONFIRMATION,
3074 PKT_INT, c->remoteid, PKT_INT, c->localid,
3075 PKT_END);
3076 }
3077 } else if (pktin.type == SSH1_MSG_PORT_OPEN) {
3078 /* Remote side is trying to open a channel to talk to a
3079 * forwarded port. Give them back a local channel number. */
3080 struct ssh_channel *c;
3081 struct ssh_rportfwd pf;
3082 int hostsize, port;
3083 char host[256], buf[1024];
3084 char *p, *h, *e;
3085 c = smalloc(sizeof(struct ssh_channel));
3086
3087 hostsize = GET_32BIT(pktin.body+4);
3088 for(h = host, p = pktin.body+8; hostsize != 0; hostsize--) {
3089 if (h+1 < host+sizeof(host))
3090 *h++ = *p;
3091 p++;
3092 }
3093 *h = 0;
3094 port = GET_32BIT(p);
3095
3096 strcpy(pf.dhost, host);
3097 pf.dport = port;
3098
3099 if (find234(ssh_rportfwds, &pf, NULL) == NULL) {
3100 sprintf(buf, "Rejected remote port open request for %s:%d",
3101 host, port);
3102 logevent(buf);
3103 send_packet(SSH1_MSG_CHANNEL_OPEN_FAILURE,
3104 PKT_INT, GET_32BIT(pktin.body), PKT_END);
3105 } else {
3106 sprintf(buf, "Received remote port open request for %s:%d",
3107 host, port);
3108 logevent(buf);
3109 e = pfd_newconnect(&c->u.pfd.s, host, port, c);
3110 if (e != NULL) {
3111 char buf[256];
3112 sprintf(buf, "Port open failed: %s", e);
3113 logevent(buf);
3114 sfree(c);
3115 send_packet(SSH1_MSG_CHANNEL_OPEN_FAILURE,
3116 PKT_INT, GET_32BIT(pktin.body),
3117 PKT_END);
3118 } else {
3119 c->remoteid = GET_32BIT(pktin.body);
3120 c->localid = alloc_channel_id();
3121 c->closes = 0;
3122 c->v.v1.throttling = 0;
3123 c->type = CHAN_SOCKDATA; /* identify channel type */
3124 add234(ssh_channels, c);
3125 send_packet(SSH1_MSG_CHANNEL_OPEN_CONFIRMATION,
3126 PKT_INT, c->remoteid, PKT_INT,
3127 c->localid, PKT_END);
3128 logevent("Forwarded port opened successfully");
3129 }
3130 }
3131
3132 } else if (pktin.type == SSH1_MSG_CHANNEL_OPEN_CONFIRMATION) {
3133 unsigned int remoteid = GET_32BIT(pktin.body);
3134 unsigned int localid = GET_32BIT(pktin.body+4);
3135 struct ssh_channel *c;
3136
3137 c = find234(ssh_channels, &remoteid, ssh_channelfind);
3138 if (c && c->type == CHAN_SOCKDATA_DORMANT) {
3139 c->remoteid = localid;
3140 c->type = CHAN_SOCKDATA;
3141 c->v.v1.throttling = 0;
3142 pfd_confirm(c->u.pfd.s);
3143 }
3144
3145 if (c && c->closes) {
3146 /*
3147 * We have a pending close on this channel,
3148 * which we decided on before the server acked
3149 * the channel open. So now we know the
3150 * remoteid, we can close it again.
3151 */
3152 send_packet(SSH1_MSG_CHANNEL_CLOSE, PKT_INT, c->remoteid,
3153 PKT_END);
3154 }
3155
3156 } else if (pktin.type == SSH1_MSG_CHANNEL_OPEN_FAILURE) {
3157 unsigned int remoteid = GET_32BIT(pktin.body);
3158 unsigned int localid = GET_32BIT(pktin.body+4);
3159 struct ssh_channel *c;
3160
3161 c = find234(ssh_channels, &remoteid, ssh_channelfind);
3162 if (c && c->type == CHAN_SOCKDATA_DORMANT) {
3163 logevent("Forwarded connection refused by server");
3164 pfd_close(c->u.pfd.s);
3165 del234(ssh_channels, c);
3166 sfree(c);
3167 }
3168
3169 } else if (pktin.type == SSH1_MSG_CHANNEL_CLOSE ||
3170 pktin.type == SSH1_MSG_CHANNEL_CLOSE_CONFIRMATION) {
3171 /* Remote side closes a channel. */
3172 unsigned i = GET_32BIT(pktin.body);
3173 struct ssh_channel *c;
3174 c = find234(ssh_channels, &i, ssh_channelfind);
3175 if (c) {
3176 int closetype;
3177 closetype =
3178 (pktin.type == SSH1_MSG_CHANNEL_CLOSE ? 1 : 2);
3179 if (!(c->closes & closetype))
3180 send_packet(pktin.type, PKT_INT, c->remoteid,
3181 PKT_END);
3182 if ((c->closes == 0) && (c->type == CHAN_X11)) {
3183 logevent("Forwarded X11 connection terminated");
3184 assert(c->u.x11.s != NULL);
3185 x11_close(c->u.x11.s);
3186 c->u.x11.s = NULL;
3187 }
3188 if ((c->closes == 0) && (c->type == CHAN_SOCKDATA)) {
3189 logevent("Forwarded port closed");
3190 assert(c->u.pfd.s != NULL);
3191 pfd_close(c->u.pfd.s);
3192 c->u.pfd.s = NULL;
3193 }
3194 c->closes |= closetype;
3195 if (c->closes == 3) {
3196 del234(ssh_channels, c);
3197 sfree(c);
3198 }
3199 }
3200 } else if (pktin.type == SSH1_MSG_CHANNEL_DATA) {
3201 /* Data sent down one of our channels. */
3202 int i = GET_32BIT(pktin.body);
3203 int len = GET_32BIT(pktin.body + 4);
3204 unsigned char *p = pktin.body + 8;
3205 struct ssh_channel *c;
3206 c = find234(ssh_channels, &i, ssh_channelfind);
3207 if (c) {
3208 int bufsize;
3209 switch (c->type) {
3210 case CHAN_X11:
3211 bufsize = x11_send(c->u.x11.s, p, len);
3212 break;
3213 case CHAN_SOCKDATA:
3214 bufsize = pfd_send(c->u.pfd.s, p, len);
3215 break;
3216 case CHAN_AGENT:
3217 /* Data for an agent message. Buffer it. */
3218 while (len > 0) {
3219 if (c->u.a.lensofar < 4) {
3220 int l = min(4 - c->u.a.lensofar, len);
3221 memcpy(c->u.a.msglen + c->u.a.lensofar, p,
3222 l);
3223 p += l;
3224 len -= l;
3225 c->u.a.lensofar += l;
3226 }
3227 if (c->u.a.lensofar == 4) {
3228 c->u.a.totallen =
3229 4 + GET_32BIT(c->u.a.msglen);
3230 c->u.a.message = smalloc(c->u.a.totallen);
3231 memcpy(c->u.a.message, c->u.a.msglen, 4);
3232 }
3233 if (c->u.a.lensofar >= 4 && len > 0) {
3234 int l =
3235 min(c->u.a.totallen - c->u.a.lensofar,
3236 len);
3237 memcpy(c->u.a.message + c->u.a.lensofar, p,
3238 l);
3239 p += l;
3240 len -= l;
3241 c->u.a.lensofar += l;
3242 }
3243 if (c->u.a.lensofar == c->u.a.totallen) {
3244 void *reply, *sentreply;
3245 int replylen;
3246 agent_query(c->u.a.message,
3247 c->u.a.totallen, &reply,
3248 &replylen);
3249 if (reply)
3250 sentreply = reply;
3251 else {
3252 /* Fake SSH_AGENT_FAILURE. */
3253 sentreply = "\0\0\0\1\5";
3254 replylen = 5;
3255 }
3256 send_packet(SSH1_MSG_CHANNEL_DATA,
3257 PKT_INT, c->remoteid,
3258 PKT_INT, replylen,
3259 PKT_DATA, sentreply, replylen,
3260 PKT_END);
3261 if (reply)
3262 sfree(reply);
3263 sfree(c->u.a.message);
3264 c->u.a.lensofar = 0;
3265 }
3266 }
3267 bufsize = 0; /* agent channels never back up */
3268 break;
3269 }
3270 if (!c->v.v1.throttling && bufsize > SSH1_BUFFER_LIMIT) {
3271 c->v.v1.throttling = 1;
3272 ssh1_throttle(+1);
3273 }
3274 }
3275 } else if (pktin.type == SSH1_SMSG_SUCCESS) {
3276 /* may be from EXEC_SHELL on some servers */
3277 } else if (pktin.type == SSH1_SMSG_FAILURE) {
3278 /* may be from EXEC_SHELL on some servers
3279 * if no pty is available or in other odd cases. Ignore */
3280 } else if (pktin.type == SSH1_SMSG_EXIT_STATUS) {
3281 char buf[100];
3282 ssh_exitcode = GET_32BIT(pktin.body);
3283 sprintf(buf, "Server sent command exit status %d",
3284 ssh_exitcode);
3285 logevent(buf);
3286 send_packet(SSH1_CMSG_EXIT_CONFIRMATION, PKT_END);
3287 /*
3288 * In case `helpful' firewalls or proxies tack
3289 * extra human-readable text on the end of the
3290 * session which we might mistake for another
3291 * encrypted packet, we close the session once
3292 * we've sent EXIT_CONFIRMATION.
3293 */
3294 ssh_state = SSH_STATE_CLOSED;
3295 crReturnV;
3296 } else {
3297 bombout(("Strange packet received: type %d", pktin.type));
3298 crReturnV;
3299 }
3300 } else {
3301 while (inlen > 0) {
3302 int len = min(inlen, 512);
3303 send_packet(SSH1_CMSG_STDIN_DATA,
3304 PKT_INT, len, PKT_DATA, in, len, PKT_END);
3305 in += len;
3306 inlen -= len;
3307 }
3308 }
3309 }
3310
3311 crFinishV;
3312 }
3313
3314 /*
3315 * Utility routine for decoding comma-separated strings in KEXINIT.
3316 */
3317 static int in_commasep_string(char *needle, char *haystack, int haylen)
3318 {
3319 int needlen = strlen(needle);
3320 while (1) {
3321 /*
3322 * Is it at the start of the string?
3323 */
3324 if (haylen >= needlen && /* haystack is long enough */
3325 !memcmp(needle, haystack, needlen) && /* initial match */
3326 (haylen == needlen || haystack[needlen] == ',')
3327 /* either , or EOS follows */
3328 )
3329 return 1;
3330 /*
3331 * If not, search for the next comma and resume after that.
3332 * If no comma found, terminate.
3333 */
3334 while (haylen > 0 && *haystack != ',')
3335 haylen--, haystack++;
3336 if (haylen == 0)
3337 return 0;
3338 haylen--, haystack++; /* skip over comma itself */
3339 }
3340 }
3341
3342 /*
3343 * SSH2 key creation method.
3344 */
3345 static void ssh2_mkkey(Bignum K, char *H, char *sessid, char chr,
3346 char *keyspace)
3347 {
3348 SHA_State s;
3349 /* First 20 bytes. */
3350 SHA_Init(&s);
3351 sha_mpint(&s, K);
3352 SHA_Bytes(&s, H, 20);
3353 SHA_Bytes(&s, &chr, 1);
3354 SHA_Bytes(&s, sessid, 20);
3355 SHA_Final(&s, keyspace);
3356 /* Next 20 bytes. */
3357 SHA_Init(&s);
3358 sha_mpint(&s, K);
3359 SHA_Bytes(&s, H, 20);
3360 SHA_Bytes(&s, keyspace, 20);
3361 SHA_Final(&s, keyspace + 20);
3362 }
3363
3364 /*
3365 * Handle the SSH2 transport layer.
3366 */
3367 static int do_ssh2_transport(unsigned char *in, int inlen, int ispkt)
3368 {
3369 static int i, j, len, nbits, pbits, warn;
3370 static char *str;
3371 static Bignum p, g, e, f, K;
3372 static int kex_init_value, kex_reply_value;
3373 static const struct ssh_mac **maclist;
3374 static int nmacs;
3375 static const struct ssh2_cipher *cscipher_tobe = NULL;
3376 static const struct ssh2_cipher *sccipher_tobe = NULL;
3377 static const struct ssh_mac *csmac_tobe = NULL;
3378 static const struct ssh_mac *scmac_tobe = NULL;
3379 static const struct ssh_compress *cscomp_tobe = NULL;
3380 static const struct ssh_compress *sccomp_tobe = NULL;
3381 static char *hostkeydata, *sigdata, *keystr, *fingerprint;
3382 static int hostkeylen, siglen;
3383 static void *hkey; /* actual host key */
3384 static unsigned char exchange_hash[20];
3385 static unsigned char keyspace[40];
3386 static int n_preferred_ciphers;
3387 static const struct ssh2_ciphers *preferred_ciphers[CIPHER_MAX];
3388 static const struct ssh_compress *preferred_comp;
3389 static int cipherstr_started;
3390 static int first_kex;
3391
3392 crBegin;
3393 random_init();
3394 first_kex = 1;
3395
3396 /*
3397 * Set up the preferred ciphers. (NULL => warn below here)
3398 */
3399 n_preferred_ciphers = 0;
3400 for (i = 0; i < CIPHER_MAX; i++) {
3401 switch (cfg.ssh_cipherlist[i]) {
3402 case CIPHER_BLOWFISH:
3403 preferred_ciphers[n_preferred_ciphers] = &ssh2_blowfish;
3404 n_preferred_ciphers++;
3405 break;
3406 case CIPHER_DES:
3407 if (cfg.ssh2_des_cbc) {
3408 preferred_ciphers[n_preferred_ciphers] = &ssh2_des;
3409 n_preferred_ciphers++;
3410 }
3411 break;
3412 case CIPHER_3DES:
3413 preferred_ciphers[n_preferred_ciphers] = &ssh2_3des;
3414 n_preferred_ciphers++;
3415 break;
3416 case CIPHER_AES:
3417 preferred_ciphers[n_preferred_ciphers] = &ssh2_aes;
3418 n_preferred_ciphers++;
3419 break;
3420 case CIPHER_WARN:
3421 /* Flag for later. Don't bother if it's the last in
3422 * the list. */
3423 if (i < CIPHER_MAX - 1) {
3424 preferred_ciphers[n_preferred_ciphers] = NULL;
3425 n_preferred_ciphers++;
3426 }
3427 break;
3428 }
3429 }
3430
3431 /*
3432 * Set up preferred compression.
3433 */
3434 if (cfg.compression)
3435 preferred_comp = &ssh_zlib;
3436 else
3437 preferred_comp = &ssh_comp_none;
3438
3439 /*
3440 * Be prepared to work around the buggy MAC problem.
3441 */
3442 if (cfg.buggymac || (ssh_remote_bugs & BUG_SSH2_HMAC))
3443 maclist = buggymacs, nmacs = lenof(buggymacs);
3444 else
3445 maclist = macs, nmacs = lenof(macs);
3446
3447 begin_key_exchange:
3448 /*
3449 * Construct and send our key exchange packet.
3450 */
3451 ssh2_pkt_init(SSH2_MSG_KEXINIT);
3452 for (i = 0; i < 16; i++)
3453 ssh2_pkt_addbyte((unsigned char) random_byte());
3454 /* List key exchange algorithms. */
3455 ssh2_pkt_addstring_start();
3456 for (i = 0; i < lenof(kex_algs); i++) {
3457 ssh2_pkt_addstring_str(kex_algs[i]->name);
3458 if (i < lenof(kex_algs) - 1)
3459 ssh2_pkt_addstring_str(",");
3460 }
3461 /* List server host key algorithms. */
3462 ssh2_pkt_addstring_start();
3463 for (i = 0; i < lenof(hostkey_algs); i++) {
3464 ssh2_pkt_addstring_str(hostkey_algs[i]->name);
3465 if (i < lenof(hostkey_algs) - 1)
3466 ssh2_pkt_addstring_str(",");
3467 }
3468 /* List client->server encryption algorithms. */
3469 ssh2_pkt_addstring_start();
3470 cipherstr_started = 0;
3471 for (i = 0; i < n_preferred_ciphers; i++) {
3472 const struct ssh2_ciphers *c = preferred_ciphers[i];
3473 if (!c) continue; /* warning flag */
3474 for (j = 0; j < c->nciphers; j++) {
3475 if (cipherstr_started)
3476 ssh2_pkt_addstring_str(",");
3477 ssh2_pkt_addstring_str(c->list[j]->name);
3478 cipherstr_started = 1;
3479 }
3480 }
3481 /* List server->client encryption algorithms. */
3482 ssh2_pkt_addstring_start();
3483 cipherstr_started = 0;
3484 for (i = 0; i < n_preferred_ciphers; i++) {
3485 const struct ssh2_ciphers *c = preferred_ciphers[i];
3486 if (!c) continue; /* warning flag */
3487 for (j = 0; j < c->nciphers; j++) {
3488 if (cipherstr_started)
3489 ssh2_pkt_addstring_str(",");
3490 ssh2_pkt_addstring_str(c->list[j]->name);
3491 cipherstr_started = 1;
3492 }
3493 }
3494 /* List client->server MAC algorithms. */
3495 ssh2_pkt_addstring_start();
3496 for (i = 0; i < nmacs; i++) {
3497 ssh2_pkt_addstring_str(maclist[i]->name);
3498 if (i < nmacs - 1)
3499 ssh2_pkt_addstring_str(",");
3500 }
3501 /* List server->client MAC algorithms. */
3502 ssh2_pkt_addstring_start();
3503 for (i = 0; i < nmacs; i++) {
3504 ssh2_pkt_addstring_str(maclist[i]->name);
3505 if (i < nmacs - 1)
3506 ssh2_pkt_addstring_str(",");
3507 }
3508 /* List client->server compression algorithms. */
3509 ssh2_pkt_addstring_start();
3510 for (i = 0; i < lenof(compressions) + 1; i++) {
3511 const struct ssh_compress *c =
3512 i == 0 ? preferred_comp : compressions[i - 1];
3513 ssh2_pkt_addstring_str(c->name);
3514 if (i < lenof(compressions))
3515 ssh2_pkt_addstring_str(",");
3516 }
3517 /* List server->client compression algorithms. */
3518 ssh2_pkt_addstring_start();
3519 for (i = 0; i < lenof(compressions) + 1; i++) {
3520 const struct ssh_compress *c =
3521 i == 0 ? preferred_comp : compressions[i - 1];
3522 ssh2_pkt_addstring_str(c->name);
3523 if (i < lenof(compressions))
3524 ssh2_pkt_addstring_str(",");
3525 }
3526 /* List client->server languages. Empty list. */
3527 ssh2_pkt_addstring_start();
3528 /* List server->client languages. Empty list. */
3529 ssh2_pkt_addstring_start();
3530 /* First KEX packet does _not_ follow, because we're not that brave. */
3531 ssh2_pkt_addbool(FALSE);
3532 /* Reserved. */
3533 ssh2_pkt_adduint32(0);
3534
3535 exhash = exhashbase;
3536 sha_string(&exhash, pktout.data + 5, pktout.length - 5);
3537
3538 ssh2_pkt_send();
3539
3540 if (!ispkt)
3541 crWaitUntil(ispkt);
3542 sha_string(&exhash, pktin.data + 5, pktin.length - 5);
3543
3544 /*
3545 * Now examine the other side's KEXINIT to see what we're up
3546 * to.
3547 */
3548 if (pktin.type != SSH2_MSG_KEXINIT) {
3549 bombout(("expected key exchange packet from server"));
3550 crReturn(0);
3551 }
3552 kex = NULL;
3553 hostkey = NULL;
3554 cscipher_tobe = NULL;
3555 sccipher_tobe = NULL;
3556 csmac_tobe = NULL;
3557 scmac_tobe = NULL;
3558 cscomp_tobe = NULL;
3559 sccomp_tobe = NULL;
3560 pktin.savedpos += 16; /* skip garbage cookie */
3561 ssh2_pkt_getstring(&str, &len); /* key exchange algorithms */
3562 for (i = 0; i < lenof(kex_algs); i++) {
3563 if (in_commasep_string(kex_algs[i]->name, str, len)) {
3564 kex = kex_algs[i];
3565 break;
3566 }
3567 }
3568 ssh2_pkt_getstring(&str, &len); /* host key algorithms */
3569 for (i = 0; i < lenof(hostkey_algs); i++) {
3570 if (in_commasep_string(hostkey_algs[i]->name, str, len)) {
3571 hostkey = hostkey_algs[i];
3572 break;
3573 }
3574 }
3575 ssh2_pkt_getstring(&str, &len); /* client->server cipher */
3576 warn = 0;
3577 for (i = 0; i < n_preferred_ciphers; i++) {
3578 const struct ssh2_ciphers *c = preferred_ciphers[i];
3579 if (!c) {
3580 warn = 1;
3581 } else {
3582 for (j = 0; j < c->nciphers; j++) {
3583 if (in_commasep_string(c->list[j]->name, str, len)) {
3584 cscipher_tobe = c->list[j];
3585 break;
3586 }
3587 }
3588 }
3589 if (cscipher_tobe) {
3590 if (warn)
3591 askcipher(cscipher_tobe->name, 1);
3592 break;
3593 }
3594 }
3595 if (!cscipher_tobe) {
3596 bombout(("Couldn't agree a client-to-server cipher (available: %s)", str));
3597 crReturn(0);
3598 }
3599
3600 ssh2_pkt_getstring(&str, &len); /* server->client cipher */
3601 warn = 0;
3602 for (i = 0; i < n_preferred_ciphers; i++) {
3603 const struct ssh2_ciphers *c = preferred_ciphers[i];
3604 if (!c) {
3605 warn = 1;
3606 } else {
3607 for (j = 0; j < c->nciphers; j++) {
3608 if (in_commasep_string(c->list[j]->name, str, len)) {
3609 sccipher_tobe = c->list[j];
3610 break;
3611 }
3612 }
3613 }
3614 if (sccipher_tobe) {
3615 if (warn)
3616 askcipher(sccipher_tobe->name, 2);
3617 break;
3618 }
3619 }
3620 if (!sccipher_tobe) {
3621 bombout(("Couldn't agree a server-to-client cipher (available: %s)", str));
3622 crReturn(0);
3623 }
3624
3625 ssh2_pkt_getstring(&str, &len); /* client->server mac */
3626 for (i = 0; i < nmacs; i++) {
3627 if (in_commasep_string(maclist[i]->name, str, len)) {
3628 csmac_tobe = maclist[i];
3629 break;
3630 }
3631 }
3632 ssh2_pkt_getstring(&str, &len); /* server->client mac */
3633 for (i = 0; i < nmacs; i++) {
3634 if (in_commasep_string(maclist[i]->name, str, len)) {
3635 scmac_tobe = maclist[i];
3636 break;
3637 }
3638 }
3639 ssh2_pkt_getstring(&str, &len); /* client->server compression */
3640 for (i = 0; i < lenof(compressions) + 1; i++) {
3641 const struct ssh_compress *c =
3642 i == 0 ? preferred_comp : compressions[i - 1];
3643 if (in_commasep_string(c->name, str, len)) {
3644 cscomp_tobe = c;
3645 break;
3646 }
3647 }
3648 ssh2_pkt_getstring(&str, &len); /* server->client compression */
3649 for (i = 0; i < lenof(compressions) + 1; i++) {
3650 const struct ssh_compress *c =
3651 i == 0 ? preferred_comp : compressions[i - 1];
3652 if (in_commasep_string(c->name, str, len)) {
3653 sccomp_tobe = c;
3654 break;
3655 }
3656 }
3657
3658 /*
3659 * Work out the number of bits of key we will need from the key
3660 * exchange. We start with the maximum key length of either
3661 * cipher...
3662 */
3663 {
3664 int csbits, scbits;
3665
3666 csbits = cscipher_tobe->keylen;
3667 scbits = sccipher_tobe->keylen;
3668 nbits = (csbits > scbits ? csbits : scbits);
3669 }
3670 /* The keys only have 160-bit entropy, since they're based on
3671 * a SHA-1 hash. So cap the key size at 160 bits. */
3672 if (nbits > 160)
3673 nbits = 160;
3674
3675 /*
3676 * If we're doing Diffie-Hellman group exchange, start by
3677 * requesting a group.
3678 */
3679 if (kex == &ssh_diffiehellman_gex) {
3680 logevent("Doing Diffie-Hellman group exchange");
3681 ssh_pkt_ctx |= SSH2_PKTCTX_DHGEX;
3682 /*
3683 * Work out how big a DH group we will need to allow that
3684 * much data.
3685 */
3686 pbits = 512 << ((nbits - 1) / 64);
3687 ssh2_pkt_init(SSH2_MSG_KEX_DH_GEX_REQUEST);
3688 ssh2_pkt_adduint32(pbits);
3689 ssh2_pkt_send();
3690
3691 crWaitUntil(ispkt);
3692 if (pktin.type != SSH2_MSG_KEX_DH_GEX_GROUP) {
3693 bombout(("expected key exchange group packet from server"));
3694 crReturn(0);
3695 }
3696 p = ssh2_pkt_getmp();
3697 g = ssh2_pkt_getmp();
3698 dh_setup_group(p, g);
3699 kex_init_value = SSH2_MSG_KEX_DH_GEX_INIT;
3700 kex_reply_value = SSH2_MSG_KEX_DH_GEX_REPLY;
3701 } else {
3702 ssh_pkt_ctx |= SSH2_PKTCTX_DHGROUP1;
3703 dh_setup_group1();
3704 kex_init_value = SSH2_MSG_KEXDH_INIT;
3705 kex_reply_value = SSH2_MSG_KEXDH_REPLY;
3706 }
3707
3708 logevent("Doing Diffie-Hellman key exchange");
3709 /*
3710 * Now generate and send e for Diffie-Hellman.
3711 */
3712 e = dh_create_e(nbits * 2);
3713 ssh2_pkt_init(kex_init_value);
3714 ssh2_pkt_addmp(e);
3715 ssh2_pkt_send();
3716
3717 crWaitUntil(ispkt);
3718 if (pktin.type != kex_reply_value) {
3719 bombout(("expected key exchange reply packet from server"));
3720 crReturn(0);
3721 }
3722 ssh2_pkt_getstring(&hostkeydata, &hostkeylen);
3723 f = ssh2_pkt_getmp();
3724 ssh2_pkt_getstring(&sigdata, &siglen);
3725
3726 K = dh_find_K(f);
3727
3728 sha_string(&exhash, hostkeydata, hostkeylen);
3729 if (kex == &ssh_diffiehellman_gex) {
3730 sha_uint32(&exhash, pbits);
3731 sha_mpint(&exhash, p);
3732 sha_mpint(&exhash, g);
3733 }
3734 sha_mpint(&exhash, e);
3735 sha_mpint(&exhash, f);
3736 sha_mpint(&exhash, K);
3737 SHA_Final(&exhash, exchange_hash);
3738
3739 dh_cleanup();
3740
3741 #if 0
3742 debug(("Exchange hash is:\n"));
3743 dmemdump(exchange_hash, 20);
3744 #endif
3745
3746 hkey = hostkey->newkey(hostkeydata, hostkeylen);
3747 if (!hkey ||
3748 !hostkey->verifysig(hkey, sigdata, siglen, exchange_hash, 20)) {
3749 bombout(("Server's host key did not match the signature supplied"));
3750 crReturn(0);
3751 }
3752
3753 /*
3754 * Authenticate remote host: verify host key. (We've already
3755 * checked the signature of the exchange hash.)
3756 */
3757 keystr = hostkey->fmtkey(hkey);
3758 fingerprint = hostkey->fingerprint(hkey);
3759 verify_ssh_host_key(savedhost, savedport, hostkey->keytype,
3760 keystr, fingerprint);
3761 if (first_kex) { /* don't bother logging this in rekeys */
3762 logevent("Host key fingerprint is:");
3763 logevent(fingerprint);
3764 }
3765 sfree(fingerprint);
3766 sfree(keystr);
3767 hostkey->freekey(hkey);
3768
3769 /*
3770 * Send SSH2_MSG_NEWKEYS.
3771 */
3772 ssh2_pkt_init(SSH2_MSG_NEWKEYS);
3773 ssh2_pkt_send();
3774
3775 /*
3776 * Expect SSH2_MSG_NEWKEYS from server.
3777 */
3778 crWaitUntil(ispkt);
3779 if (pktin.type != SSH2_MSG_NEWKEYS) {
3780 bombout(("expected new-keys packet from server"));
3781 crReturn(0);
3782 }
3783
3784 /*
3785 * Create and initialise session keys.
3786 */
3787 cscipher = cscipher_tobe;
3788 sccipher = sccipher_tobe;
3789 csmac = csmac_tobe;
3790 scmac = scmac_tobe;
3791 cscomp = cscomp_tobe;
3792 sccomp = sccomp_tobe;
3793 cscomp->compress_init();
3794 sccomp->decompress_init();
3795 /*
3796 * Set IVs after keys. Here we use the exchange hash from the
3797 * _first_ key exchange.
3798 */
3799 if (first_kex)
3800 memcpy(ssh2_session_id, exchange_hash, sizeof(exchange_hash));
3801 ssh2_mkkey(K, exchange_hash, ssh2_session_id, 'C', keyspace);
3802 cscipher->setcskey(keyspace);
3803 ssh2_mkkey(K, exchange_hash, ssh2_session_id, 'D', keyspace);
3804 sccipher->setsckey(keyspace);
3805 ssh2_mkkey(K, exchange_hash, ssh2_session_id, 'A', keyspace);
3806 cscipher->setcsiv(keyspace);
3807 ssh2_mkkey(K, exchange_hash, ssh2_session_id, 'B', keyspace);
3808 sccipher->setsciv(keyspace);
3809 ssh2_mkkey(K, exchange_hash, ssh2_session_id, 'E', keyspace);
3810 csmac->setcskey(keyspace);
3811 ssh2_mkkey(K, exchange_hash, ssh2_session_id, 'F', keyspace);
3812 scmac->setsckey(keyspace);
3813
3814 /*
3815 * If this is the first key exchange phase, we must pass the
3816 * SSH2_MSG_NEWKEYS packet to the next layer, not because it
3817 * wants to see it but because it will need time to initialise
3818 * itself before it sees an actual packet. In subsequent key
3819 * exchange phases, we don't pass SSH2_MSG_NEWKEYS on, because
3820 * it would only confuse the layer above.
3821 */
3822 if (!first_kex) {
3823 crReturn(0);
3824 }
3825 first_kex = 0;
3826
3827 /*
3828 * Now we're encrypting. Begin returning 1 to the protocol main
3829 * function so that other things can run on top of the
3830 * transport. If we ever see a KEXINIT, we must go back to the
3831 * start.
3832 */
3833 while (!(ispkt && pktin.type == SSH2_MSG_KEXINIT)) {
3834 crReturn(1);
3835 }
3836 logevent("Server initiated key re-exchange");
3837 goto begin_key_exchange;
3838
3839 crFinish(1);
3840 }
3841
3842 /*
3843 * Add data to an SSH2 channel output buffer.
3844 */
3845 static void ssh2_add_channel_data(struct ssh_channel *c, char *buf,
3846 int len)
3847 {
3848 bufchain_add(&c->v.v2.outbuffer, buf, len);
3849 }
3850
3851 /*
3852 * Attempt to send data on an SSH2 channel.
3853 */
3854 static int ssh2_try_send(struct ssh_channel *c)
3855 {
3856 while (c->v.v2.remwindow > 0 && bufchain_size(&c->v.v2.outbuffer) > 0) {
3857 int len;
3858 void *data;
3859 bufchain_prefix(&c->v.v2.outbuffer, &data, &len);
3860 if ((unsigned)len > c->v.v2.remwindow)
3861 len = c->v.v2.remwindow;
3862 if ((unsigned)len > c->v.v2.remmaxpkt)
3863 len = c->v.v2.remmaxpkt;
3864 ssh2_pkt_init(SSH2_MSG_CHANNEL_DATA);
3865 ssh2_pkt_adduint32(c->remoteid);
3866 ssh2_pkt_addstring_start();
3867 ssh2_pkt_addstring_data(data, len);
3868 ssh2_pkt_send();
3869 bufchain_consume(&c->v.v2.outbuffer, len);
3870 c->v.v2.remwindow -= len;
3871 }
3872
3873 /*
3874 * After having sent as much data as we can, return the amount
3875 * still buffered.
3876 */
3877 return bufchain_size(&c->v.v2.outbuffer);
3878 }
3879
3880 /*
3881 * Potentially enlarge the window on an SSH2 channel.
3882 */
3883 static void ssh2_set_window(struct ssh_channel *c, unsigned newwin)
3884 {
3885 /*
3886 * Never send WINDOW_ADJUST for a channel that the remote side
3887 * already thinks it's closed; there's no point, since it won't
3888 * be sending any more data anyway.
3889 */
3890 if (c->closes != 0)
3891 return;
3892
3893 if (newwin > c->v.v2.locwindow) {
3894 ssh2_pkt_init(SSH2_MSG_CHANNEL_WINDOW_ADJUST);
3895 ssh2_pkt_adduint32(c->remoteid);
3896 ssh2_pkt_adduint32(newwin - c->v.v2.locwindow);
3897 ssh2_pkt_send();
3898 c->v.v2.locwindow = newwin;
3899 }
3900 }
3901
3902 /*
3903 * Handle the SSH2 userauth and connection layers.
3904 */
3905 static void do_ssh2_authconn(unsigned char *in, int inlen, int ispkt)
3906 {
3907 static enum {
3908 AUTH_INVALID, AUTH_PUBLICKEY_AGENT, AUTH_PUBLICKEY_FILE,
3909 AUTH_PASSWORD,
3910 AUTH_KEYBOARD_INTERACTIVE
3911 } method;
3912 static enum {
3913 AUTH_TYPE_NONE,
3914 AUTH_TYPE_PUBLICKEY,
3915 AUTH_TYPE_PUBLICKEY_OFFER_LOUD,
3916 AUTH_TYPE_PUBLICKEY_OFFER_QUIET,
3917 AUTH_TYPE_PASSWORD,
3918 AUTH_TYPE_KEYBOARD_INTERACTIVE,
3919 AUTH_TYPE_KEYBOARD_INTERACTIVE_QUIET
3920 } type;
3921 static int gotit, need_pw, can_pubkey, can_passwd, can_keyb_inter;
3922 static int tried_pubkey_config, tried_agent, tried_keyb_inter;
3923 static int kbd_inter_running;
3924 static int we_are_in;
3925 static int num_prompts, echo;
3926 static char username[100];
3927 static int got_username;
3928 static char pwprompt[200];
3929 static char password[100];
3930 static void *publickey_blob;
3931 static int publickey_bloblen;
3932
3933 crBegin;
3934
3935 /*
3936 * Request userauth protocol, and await a response to it.
3937 */
3938 ssh2_pkt_init(SSH2_MSG_SERVICE_REQUEST);
3939 ssh2_pkt_addstring("ssh-userauth");
3940 ssh2_pkt_send();
3941 crWaitUntilV(ispkt);
3942 if (pktin.type != SSH2_MSG_SERVICE_ACCEPT) {
3943 bombout(("Server refused user authentication protocol"));
3944 crReturnV;
3945 }
3946
3947 /*
3948 * We repeat this whole loop, including the username prompt,
3949 * until we manage a successful authentication. If the user
3950 * types the wrong _password_, they are sent back to the
3951 * beginning to try another username. (If they specify a
3952 * username in the config, they are never asked, even if they
3953 * do give a wrong password.)
3954 *
3955 * I think this best serves the needs of
3956 *
3957 * - the people who have no configuration, no keys, and just
3958 * want to try repeated (username,password) pairs until they
3959 * type both correctly
3960 *
3961 * - people who have keys and configuration but occasionally
3962 * need to fall back to passwords
3963 *
3964 * - people with a key held in Pageant, who might not have
3965 * logged in to a particular machine before; so they want to
3966 * type a username, and then _either_ their key will be
3967 * accepted, _or_ they will type a password. If they mistype
3968 * the username they will want to be able to get back and
3969 * retype it!
3970 */
3971 username[0] = '\0';
3972 got_username = FALSE;
3973 do {
3974 static int pos;
3975 static char c;
3976
3977 /*
3978 * Get a username.
3979 */
3980 pos = 0;
3981 if (got_username && !cfg.change_username) {
3982 /*
3983 * We got a username last time round this loop, and
3984 * with change_username turned off we don't try to get
3985 * it again.
3986 */
3987 } else if ((flags & FLAG_INTERACTIVE) && !*cfg.username) {
3988 if (ssh_get_line) {
3989 if (!ssh_get_line("login as: ",
3990 username, sizeof(username), FALSE)) {
3991 /*
3992 * get_line failed to get a username.
3993 * Terminate.
3994 */
3995 logevent("No username provided. Abandoning session.");
3996 ssh_state = SSH_STATE_CLOSED;
3997 crReturnV;
3998 }
3999 } else {
4000 c_write_str("login as: ");
4001 ssh_send_ok = 1;
4002 while (pos >= 0) {
4003 crWaitUntilV(!ispkt);
4004 while (inlen--)
4005 switch (c = *in++) {
4006 case 10:
4007 case 13:
4008 username[pos] = 0;
4009 pos = -1;
4010 break;
4011 case 8:
4012 case 127:
4013 if (pos > 0) {
4014 c_write_str("\b \b");
4015 pos--;
4016 }
4017 break;
4018 case 21:
4019 case 27:
4020 while (pos > 0) {
4021 c_write_str("\b \b");
4022 pos--;
4023 }
4024 break;
4025 case 3:
4026 case 4:
4027 cleanup_exit(0);
4028 break;
4029 default:
4030 if (((c >= ' ' && c <= '~') ||
4031 ((unsigned char) c >= 160))
4032 && pos < sizeof(username)-1) {
4033 username[pos++] = c;
4034 c_write(&c, 1);
4035 }
4036 break;
4037 }
4038 }
4039 }
4040 c_write_str("\r\n");
4041 username[strcspn(username, "\n\r")] = '\0';
4042 } else {
4043 char stuff[200];
4044 strncpy(username, cfg.username, 99);
4045 username[99] = '\0';
4046 if ((flags & FLAG_VERBOSE) || (flags & FLAG_INTERACTIVE)) {
4047 sprintf(stuff, "Using username \"%s\".\r\n", username);
4048 c_write_str(stuff);
4049 }
4050 }
4051 got_username = TRUE;
4052
4053 /*
4054 * Send an authentication request using method "none": (a)
4055 * just in case it succeeds, and (b) so that we know what
4056 * authentication methods we can usefully try next.
4057 */
4058 ssh_pkt_ctx &= ~SSH2_PKTCTX_AUTH_MASK;
4059
4060 ssh2_pkt_init(SSH2_MSG_USERAUTH_REQUEST);
4061 ssh2_pkt_addstring(username);
4062 ssh2_pkt_addstring("ssh-connection"); /* service requested */
4063 ssh2_pkt_addstring("none"); /* method */
4064 ssh2_pkt_send();
4065 type = AUTH_TYPE_NONE;
4066 gotit = FALSE;
4067 we_are_in = FALSE;
4068
4069 tried_pubkey_config = FALSE;
4070 tried_agent = FALSE;
4071 tried_keyb_inter = FALSE;
4072 kbd_inter_running = FALSE;
4073 /* Load the pub half of cfg.keyfile so we notice if it's in Pageant */
4074 if (*cfg.keyfile) {
4075 publickey_blob = ssh2_userkey_loadpub(cfg.keyfile, NULL,
4076 &publickey_bloblen);
4077 } else
4078 publickey_blob = NULL;
4079
4080 while (1) {
4081 /*
4082 * Wait for the result of the last authentication request.
4083 */
4084 if (!gotit)
4085 crWaitUntilV(ispkt);
4086 while (pktin.type == SSH2_MSG_USERAUTH_BANNER) {
4087 char *banner;
4088 int size;
4089 /*
4090 * Don't show the banner if we're operating in
4091 * non-verbose non-interactive mode. (It's probably
4092 * a script, which means nobody will read the
4093 * banner _anyway_, and moreover the printing of
4094 * the banner will screw up processing on the
4095 * output of (say) plink.)
4096 */
4097 if (flags & (FLAG_VERBOSE | FLAG_INTERACTIVE)) {
4098 ssh2_pkt_getstring(&banner, &size);
4099 if (banner)
4100 c_write_untrusted(banner, size);
4101 }
4102 crWaitUntilV(ispkt);
4103 }
4104 if (pktin.type == SSH2_MSG_USERAUTH_SUCCESS) {
4105 logevent("Access granted");
4106 we_are_in = TRUE;
4107 break;
4108 }
4109
4110 if (kbd_inter_running &&
4111 pktin.type == SSH2_MSG_USERAUTH_INFO_REQUEST) {
4112 /*
4113 * This is a further prompt in keyboard-interactive
4114 * authentication. Do nothing.
4115 */
4116 } else if (pktin.type != SSH2_MSG_USERAUTH_FAILURE) {
4117 bombout(("Strange packet received during authentication: type %d",
4118 pktin.type));
4119 crReturnV;
4120 }
4121
4122 gotit = FALSE;
4123
4124 /*
4125 * OK, we're now sitting on a USERAUTH_FAILURE message, so
4126 * we can look at the string in it and know what we can
4127 * helpfully try next.
4128 */
4129 if (pktin.type == SSH2_MSG_USERAUTH_FAILURE) {
4130 char *methods;
4131 int methlen;
4132 ssh2_pkt_getstring(&methods, &methlen);
4133 kbd_inter_running = FALSE;
4134 if (!ssh2_pkt_getbool()) {
4135 /*
4136 * We have received an unequivocal Access
4137 * Denied. This can translate to a variety of
4138 * messages:
4139 *
4140 * - if we'd just tried "none" authentication,
4141 * it's not worth printing anything at all
4142 *
4143 * - if we'd just tried a public key _offer_,
4144 * the message should be "Server refused our
4145 * key" (or no message at all if the key
4146 * came from Pageant)
4147 *
4148 * - if we'd just tried anything else, the
4149 * message really should be "Access denied".
4150 *
4151 * Additionally, if we'd just tried password
4152 * authentication, we should break out of this
4153 * whole loop so as to go back to the username
4154 * prompt.
4155 */
4156 if (type == AUTH_TYPE_NONE) {
4157 /* do nothing */
4158 } else if (type == AUTH_TYPE_PUBLICKEY_OFFER_LOUD ||
4159 type == AUTH_TYPE_PUBLICKEY_OFFER_QUIET) {
4160 if (type == AUTH_TYPE_PUBLICKEY_OFFER_LOUD)
4161 c_write_str("Server refused our key\r\n");
4162 logevent("Server refused public key");
4163 } else if (type == AUTH_TYPE_KEYBOARD_INTERACTIVE_QUIET) {
4164 /* server declined keyboard-interactive; ignore */
4165 } else {
4166 c_write_str("Access denied\r\n");
4167 logevent("Access denied");
4168 if (type == AUTH_TYPE_PASSWORD) {
4169 we_are_in = FALSE;
4170 break;
4171 }
4172 }
4173 } else {
4174 c_write_str("Further authentication required\r\n");
4175 logevent("Further authentication required");
4176 }
4177
4178 can_pubkey =
4179 in_commasep_string("publickey", methods, methlen);
4180 can_passwd =
4181 in_commasep_string("password", methods, methlen);
4182 can_keyb_inter = cfg.try_ki_auth &&
4183 in_commasep_string("keyboard-interactive", methods, methlen);
4184 }
4185
4186 method = 0;
4187 ssh_pkt_ctx &= ~SSH2_PKTCTX_AUTH_MASK;
4188
4189 if (!method && can_pubkey && agent_exists() && !tried_agent) {
4190 /*
4191 * Attempt public-key authentication using Pageant.
4192 */
4193 static unsigned char request[5], *response, *p;
4194 static int responselen;
4195 static int i, nkeys;
4196 static int authed = FALSE;
4197 void *r;
4198
4199 ssh_pkt_ctx |= SSH2_PKTCTX_PUBLICKEY;
4200
4201 tried_agent = TRUE;
4202
4203 logevent("Pageant is running. Requesting keys.");
4204
4205 /* Request the keys held by the agent. */
4206 PUT_32BIT(request, 1);
4207 request[4] = SSH2_AGENTC_REQUEST_IDENTITIES;
4208 agent_query(request, 5, &r, &responselen);
4209 response = (unsigned char *) r;
4210 if (response && responselen >= 5 &&
4211 response[4] == SSH2_AGENT_IDENTITIES_ANSWER) {
4212 p = response + 5;
4213 nkeys = GET_32BIT(p);
4214 p += 4;
4215 {
4216 char buf[64];
4217 sprintf(buf, "Pageant has %d SSH2 keys", nkeys);
4218 logevent(buf);
4219 }
4220 for (i = 0; i < nkeys; i++) {
4221 static char *pkblob, *alg, *commentp;
4222 static int pklen, alglen, commentlen;
4223 static int siglen, retlen, len;
4224 static char *q, *agentreq, *ret;
4225 void *vret;
4226
4227 {
4228 char buf[64];
4229 sprintf(buf, "Trying Pageant key #%d", i);
4230 logevent(buf);
4231 }
4232 pklen = GET_32BIT(p);
4233 p += 4;
4234 if (publickey_blob &&
4235 pklen == publickey_bloblen &&
4236 !memcmp(p, publickey_blob, publickey_bloblen)) {
4237 logevent("This key matches configured key file");
4238 tried_pubkey_config = 1;
4239 }
4240 pkblob = p;
4241 p += pklen;
4242 alglen = GET_32BIT(pkblob);
4243 alg = pkblob + 4;
4244 commentlen = GET_32BIT(p);
4245 p += 4;
4246 commentp = p;
4247 p += commentlen;
4248 ssh2_pkt_init(SSH2_MSG_USERAUTH_REQUEST);
4249 ssh2_pkt_addstring(username);
4250 ssh2_pkt_addstring("ssh-connection"); /* service requested */
4251 ssh2_pkt_addstring("publickey"); /* method */
4252 ssh2_pkt_addbool(FALSE); /* no signature included */
4253 ssh2_pkt_addstring_start();
4254 ssh2_pkt_addstring_data(alg, alglen);
4255 ssh2_pkt_addstring_start();
4256 ssh2_pkt_addstring_data(pkblob, pklen);
4257 ssh2_pkt_send();
4258
4259 crWaitUntilV(ispkt);
4260 if (pktin.type != SSH2_MSG_USERAUTH_PK_OK) {
4261 logevent("Key refused");
4262 continue;
4263 }
4264
4265 if (flags & FLAG_VERBOSE) {
4266 c_write_str
4267 ("Authenticating with public key \"");
4268 c_write(commentp, commentlen);
4269 c_write_str("\" from agent\r\n");
4270 }
4271
4272 /*
4273 * Server is willing to accept the key.
4274 * Construct a SIGN_REQUEST.
4275 */
4276 ssh2_pkt_init(SSH2_MSG_USERAUTH_REQUEST);
4277 ssh2_pkt_addstring(username);
4278 ssh2_pkt_addstring("ssh-connection"); /* service requested */
4279 ssh2_pkt_addstring("publickey"); /* method */
4280 ssh2_pkt_addbool(TRUE);
4281 ssh2_pkt_addstring_start();
4282 ssh2_pkt_addstring_data(alg, alglen);
4283 ssh2_pkt_addstring_start();
4284 ssh2_pkt_addstring_data(pkblob, pklen);
4285
4286 siglen = pktout.length - 5 + 4 + 20;
4287 len = 1; /* message type */
4288 len += 4 + pklen; /* key blob */
4289 len += 4 + siglen; /* data to sign */
4290 len += 4; /* flags */
4291 agentreq = smalloc(4 + len);
4292 PUT_32BIT(agentreq, len);
4293 q = agentreq + 4;
4294 *q++ = SSH2_AGENTC_SIGN_REQUEST;
4295 PUT_32BIT(q, pklen);
4296 q += 4;
4297 memcpy(q, pkblob, pklen);
4298 q += pklen;
4299 PUT_32BIT(q, siglen);
4300 q += 4;
4301 /* Now the data to be signed... */
4302 PUT_32BIT(q, 20);
4303 q += 4;
4304 memcpy(q, ssh2_session_id, 20);
4305 q += 20;
4306 memcpy(q, pktout.data + 5, pktout.length - 5);
4307 q += pktout.length - 5;
4308 /* And finally the (zero) flags word. */
4309 PUT_32BIT(q, 0);
4310 agent_query(agentreq, len + 4, &vret, &retlen);
4311 ret = vret;
4312 sfree(agentreq);
4313 if (ret) {
4314 if (ret[4] == SSH2_AGENT_SIGN_RESPONSE) {
4315 logevent("Sending Pageant's response");
4316 ssh2_pkt_addstring_start();
4317 ssh2_pkt_addstring_data(ret + 9,
4318 GET_32BIT(ret +
4319 5));
4320 ssh2_pkt_send();
4321 authed = TRUE;
4322 break;
4323 } else {
4324 logevent
4325 ("Pageant failed to answer challenge");
4326 sfree(ret);
4327 }
4328 }
4329 }
4330 if (authed)
4331 continue;
4332 }
4333 }
4334
4335 if (!method && can_pubkey && *cfg.keyfile
4336 && !tried_pubkey_config) {
4337 unsigned char *pub_blob;
4338 char *algorithm, *comment;
4339 int pub_blob_len;
4340
4341 tried_pubkey_config = TRUE;
4342
4343 ssh_pkt_ctx |= SSH2_PKTCTX_PUBLICKEY;
4344
4345 /*
4346 * Try the public key supplied in the configuration.
4347 *
4348 * First, offer the public blob to see if the server is
4349 * willing to accept it.
4350 */
4351 pub_blob = ssh2_userkey_loadpub(cfg.keyfile, &algorithm,
4352 &pub_blob_len);
4353 if (pub_blob) {
4354 ssh2_pkt_init(SSH2_MSG_USERAUTH_REQUEST);
4355 ssh2_pkt_addstring(username);
4356 ssh2_pkt_addstring("ssh-connection"); /* service requested */
4357 ssh2_pkt_addstring("publickey"); /* method */
4358 ssh2_pkt_addbool(FALSE); /* no signature included */
4359 ssh2_pkt_addstring(algorithm);
4360 ssh2_pkt_addstring_start();
4361 ssh2_pkt_addstring_data(pub_blob, pub_blob_len);
4362 ssh2_pkt_send();
4363 logevent("Offered public key"); /* FIXME */
4364
4365 crWaitUntilV(ispkt);
4366 if (pktin.type != SSH2_MSG_USERAUTH_PK_OK) {
4367 gotit = TRUE;
4368 type = AUTH_TYPE_PUBLICKEY_OFFER_LOUD;
4369 continue; /* key refused; give up on it */
4370 }
4371
4372 logevent("Offer of public key accepted");
4373 /*
4374 * Actually attempt a serious authentication using
4375 * the key.
4376 */
4377 if (ssh2_userkey_encrypted(cfg.keyfile, &comment)) {
4378 sprintf(pwprompt,
4379 "Passphrase for key \"%.100s\": ",
4380 comment);
4381 need_pw = TRUE;
4382 } else {
4383 need_pw = FALSE;
4384 }
4385 c_write_str("Authenticating with public key \"");
4386 c_write_str(comment);
4387 c_write_str("\"\r\n");
4388 method = AUTH_PUBLICKEY_FILE;
4389 }
4390 }
4391
4392 if (!method && can_keyb_inter && !tried_keyb_inter) {
4393 method = AUTH_KEYBOARD_INTERACTIVE;
4394 type = AUTH_TYPE_KEYBOARD_INTERACTIVE;
4395 tried_keyb_inter = TRUE;
4396
4397 ssh_pkt_ctx |= SSH2_PKTCTX_KBDINTER;
4398
4399 ssh2_pkt_init(SSH2_MSG_USERAUTH_REQUEST);
4400 ssh2_pkt_addstring(username);
4401 ssh2_pkt_addstring("ssh-connection"); /* service requested */
4402 ssh2_pkt_addstring("keyboard-interactive"); /* method */
4403 ssh2_pkt_addstring(""); /* lang */
4404 ssh2_pkt_addstring("");
4405 ssh2_pkt_send();
4406
4407 crWaitUntilV(ispkt);
4408 if (pktin.type != SSH2_MSG_USERAUTH_INFO_REQUEST) {
4409 if (pktin.type == SSH2_MSG_USERAUTH_FAILURE)
4410 gotit = TRUE;
4411 logevent("Keyboard-interactive authentication refused");
4412 type = AUTH_TYPE_KEYBOARD_INTERACTIVE_QUIET;
4413 continue;
4414 }
4415
4416 kbd_inter_running = TRUE;
4417 }
4418
4419 if (kbd_inter_running) {
4420 method = AUTH_KEYBOARD_INTERACTIVE;
4421 type = AUTH_TYPE_KEYBOARD_INTERACTIVE;
4422 tried_keyb_inter = TRUE;
4423
4424 ssh_pkt_ctx |= SSH2_PKTCTX_KBDINTER;
4425
4426 /* We've got packet with that "interactive" info
4427 dump banners, and set its prompt as ours */
4428 {
4429 char *name, *inst, *lang, *prompt;
4430 int name_len, inst_len, lang_len, prompt_len;
4431 ssh2_pkt_getstring(&name, &name_len);
4432 ssh2_pkt_getstring(&inst, &inst_len);
4433 ssh2_pkt_getstring(&lang, &lang_len);
4434 if (name_len > 0)
4435 c_write_untrusted(name, name_len);
4436 if (inst_len > 0)
4437 c_write_untrusted(inst, inst_len);
4438 num_prompts = ssh2_pkt_getuint32();
4439
4440 ssh2_pkt_getstring(&prompt, &prompt_len);
4441 strncpy(pwprompt, prompt, sizeof(pwprompt));
4442 pwprompt[prompt_len < sizeof(pwprompt) ?
4443 prompt_len : sizeof(pwprompt)-1] = '\0';
4444 need_pw = TRUE;
4445
4446 echo = ssh2_pkt_getbool();
4447 }
4448 }
4449
4450 if (!method && can_passwd) {
4451 method = AUTH_PASSWORD;
4452 ssh_pkt_ctx |= SSH2_PKTCTX_PASSWORD;
4453 sprintf(pwprompt, "%.90s@%.90s's password: ", username,
4454 savedhost);
4455 need_pw = TRUE;
4456 }
4457
4458 if (need_pw) {
4459 if (ssh_get_line) {
4460 if (!ssh_get_line(pwprompt, password,
4461 sizeof(password), TRUE)) {
4462 /*
4463 * get_line failed to get a password (for
4464 * example because one was supplied on the
4465 * command line which has already failed to
4466 * work). Terminate.
4467 */
4468 ssh2_pkt_init(SSH2_MSG_DISCONNECT);
4469 ssh2_pkt_adduint32(SSH2_DISCONNECT_BY_APPLICATION);
4470 ssh2_pkt_addstring
4471 ("No more passwords available to try");
4472 ssh2_pkt_addstring("en"); /* language tag */
4473 ssh2_pkt_send();
4474 logevent("Unable to authenticate");
4475 connection_fatal("Unable to authenticate");
4476 ssh_state = SSH_STATE_CLOSED;
4477 crReturnV;
4478 }
4479 } else {
4480 static int pos = 0;
4481 static char c;
4482
4483 c_write_untrusted(pwprompt, strlen(pwprompt));
4484 ssh_send_ok = 1;
4485
4486 pos = 0;
4487 while (pos >= 0) {
4488 crWaitUntilV(!ispkt);
4489 while (inlen--)
4490 switch (c = *in++) {
4491 case 10:
4492 case 13:
4493 password[pos] = 0;
4494 pos = -1;
4495 break;
4496 case 8:
4497 case 127:
4498 if (pos > 0)
4499 pos--;
4500 break;
4501 case 21:
4502 case 27:
4503 pos = 0;
4504 break;
4505 case 3:
4506 case 4:
4507 cleanup_exit(0);
4508 break;
4509 default:
4510 if (pos < sizeof(password)-1)
4511 password[pos++] = c;
4512 break;
4513 }
4514 }
4515 c_write_str("\r\n");
4516 }
4517 }
4518
4519 if (method == AUTH_PUBLICKEY_FILE) {
4520 /*
4521 * We have our passphrase. Now try the actual authentication.
4522 */
4523 struct ssh2_userkey *key;
4524
4525 key = ssh2_load_userkey(cfg.keyfile, password);
4526 if (key == SSH2_WRONG_PASSPHRASE || key == NULL) {
4527 if (key == SSH2_WRONG_PASSPHRASE) {
4528 c_write_str("Wrong passphrase\r\n");
4529 tried_pubkey_config = FALSE;
4530 } else {
4531 c_write_str("Unable to load private key\r\n");
4532 tried_pubkey_config = TRUE;
4533 }
4534 /* Send a spurious AUTH_NONE to return to the top. */
4535 ssh2_pkt_init(SSH2_MSG_USERAUTH_REQUEST);
4536 ssh2_pkt_addstring(username);
4537 ssh2_pkt_addstring("ssh-connection"); /* service requested */
4538 ssh2_pkt_addstring("none"); /* method */
4539 ssh2_pkt_send();
4540 type = AUTH_TYPE_NONE;
4541 } else {
4542 unsigned char *blob, *sigdata;
4543 int blob_len, sigdata_len;
4544
4545 /*
4546 * We have loaded the private key and the server
4547 * has announced that it's willing to accept it.
4548 * Hallelujah. Generate a signature and send it.
4549 */
4550 ssh2_pkt_init(SSH2_MSG_USERAUTH_REQUEST);
4551 ssh2_pkt_addstring(username);
4552 ssh2_pkt_addstring("ssh-connection"); /* service requested */
4553 ssh2_pkt_addstring("publickey"); /* method */
4554 ssh2_pkt_addbool(TRUE);
4555 ssh2_pkt_addstring(key->alg->name);
4556 blob = key->alg->public_blob(key->data, &blob_len);
4557 ssh2_pkt_addstring_start();
4558 ssh2_pkt_addstring_data(blob, blob_len);
4559 sfree(blob);
4560
4561 /*
4562 * The data to be signed is:
4563 *
4564 * string session-id
4565 *
4566 * followed by everything so far placed in the
4567 * outgoing packet.
4568 */
4569 sigdata_len = pktout.length - 5 + 4 + 20;
4570 sigdata = smalloc(sigdata_len);
4571 PUT_32BIT(sigdata, 20);
4572 memcpy(sigdata + 4, ssh2_session_id, 20);
4573 memcpy(sigdata + 24, pktout.data + 5,
4574 pktout.length - 5);
4575 blob =
4576 key->alg->sign(key->data, sigdata, sigdata_len,
4577 &blob_len);
4578 ssh2_pkt_addstring_start();
4579 ssh2_pkt_addstring_data(blob, blob_len);
4580 sfree(blob);
4581 sfree(sigdata);
4582
4583 ssh2_pkt_send();
4584 type = AUTH_TYPE_PUBLICKEY;
4585 }
4586 } else if (method == AUTH_PASSWORD) {
4587 /*
4588 * We send the password packet lumped tightly together with
4589 * an SSH_MSG_IGNORE packet. The IGNORE packet contains a
4590 * string long enough to make the total length of the two
4591 * packets constant. This should ensure that a passive
4592 * listener doing traffic analyis can't work out the length
4593 * of the password.
4594 *
4595 * For this to work, we need an assumption about the
4596 * maximum length of the password packet. I think 256 is
4597 * pretty conservative. Anyone using a password longer than
4598 * that probably doesn't have much to worry about from
4599 * people who find out how long their password is!
4600 */
4601 ssh2_pkt_init(SSH2_MSG_USERAUTH_REQUEST);
4602 ssh2_pkt_addstring(username);
4603 ssh2_pkt_addstring("ssh-connection"); /* service requested */
4604 ssh2_pkt_addstring("password");
4605 ssh2_pkt_addbool(FALSE);
4606 ssh2_pkt_addstring(password);
4607 ssh2_pkt_defer();
4608 /*
4609 * We'll include a string that's an exact multiple of the
4610 * cipher block size. If the cipher is NULL for some
4611 * reason, we don't do this trick at all because we gain
4612 * nothing by it.
4613 */
4614 if (cscipher) {
4615 int stringlen, i;
4616
4617 stringlen = (256 - deferred_len);
4618 stringlen += cscipher->blksize - 1;
4619 stringlen -= (stringlen % cscipher->blksize);
4620 if (cscomp) {
4621 /*
4622 * Temporarily disable actual compression,
4623 * so we can guarantee to get this string
4624 * exactly the length we want it. The
4625 * compression-disabling routine should
4626 * return an integer indicating how many
4627 * bytes we should adjust our string length
4628 * by.
4629 */
4630 stringlen -= cscomp->disable_compression();
4631 }
4632 ssh2_pkt_init(SSH2_MSG_IGNORE);
4633 ssh2_pkt_addstring_start();
4634 for (i = 0; i < stringlen; i++) {
4635 char c = (char) random_byte();
4636 ssh2_pkt_addstring_data(&c, 1);
4637 }
4638 ssh2_pkt_defer();
4639 }
4640 ssh_pkt_defersend();
4641 logevent("Sent password");
4642 type = AUTH_TYPE_PASSWORD;
4643 } else if (method == AUTH_KEYBOARD_INTERACTIVE) {
4644 ssh2_pkt_init(SSH2_MSG_USERAUTH_INFO_RESPONSE);
4645 ssh2_pkt_adduint32(num_prompts);
4646 ssh2_pkt_addstring(password);
4647 memset(password, 0, sizeof(password));
4648 ssh2_pkt_send();
4649 type = AUTH_TYPE_KEYBOARD_INTERACTIVE;
4650 } else {
4651 c_write_str
4652 ("No supported authentication methods left to try!\r\n");
4653 logevent
4654 ("No supported authentications offered. Disconnecting");
4655 ssh2_pkt_init(SSH2_MSG_DISCONNECT);
4656 ssh2_pkt_adduint32(SSH2_DISCONNECT_BY_APPLICATION);
4657 ssh2_pkt_addstring
4658 ("No supported authentication methods available");
4659 ssh2_pkt_addstring("en"); /* language tag */
4660 ssh2_pkt_send();
4661 ssh_state = SSH_STATE_CLOSED;
4662 crReturnV;
4663 }
4664 }
4665 } while (!we_are_in);
4666
4667 /*
4668 * Now we're authenticated for the connection protocol. The
4669 * connection protocol will automatically have started at this
4670 * point; there's no need to send SERVICE_REQUEST.
4671 */
4672
4673 /*
4674 * So now create a channel with a session in it.
4675 */
4676 ssh_channels = newtree234(ssh_channelcmp);
4677 mainchan = smalloc(sizeof(struct ssh_channel));
4678 mainchan->localid = alloc_channel_id();
4679 ssh2_pkt_init(SSH2_MSG_CHANNEL_OPEN);
4680 ssh2_pkt_addstring("session");
4681 ssh2_pkt_adduint32(mainchan->localid);
4682 mainchan->v.v2.locwindow = OUR_V2_WINSIZE;
4683 ssh2_pkt_adduint32(mainchan->v.v2.locwindow); /* our window size */
4684 ssh2_pkt_adduint32(0x4000UL); /* our max pkt size */
4685 ssh2_pkt_send();
4686 crWaitUntilV(ispkt);
4687 if (pktin.type != SSH2_MSG_CHANNEL_OPEN_CONFIRMATION) {
4688 bombout(("Server refused to open a session"));
4689 crReturnV;
4690 /* FIXME: error data comes back in FAILURE packet */
4691 }
4692 if (ssh2_pkt_getuint32() != mainchan->localid) {
4693 bombout(("Server's channel confirmation cited wrong channel"));
4694 crReturnV;
4695 }
4696 mainchan->remoteid = ssh2_pkt_getuint32();
4697 mainchan->type = CHAN_MAINSESSION;
4698 mainchan->closes = 0;
4699 mainchan->v.v2.remwindow = ssh2_pkt_getuint32();
4700 mainchan->v.v2.remmaxpkt = ssh2_pkt_getuint32();
4701 bufchain_init(&mainchan->v.v2.outbuffer);
4702 add234(ssh_channels, mainchan);
4703 logevent("Opened channel for session");
4704
4705 /*
4706 * Potentially enable X11 forwarding.
4707 */
4708 if (cfg.x11_forward) {
4709 char proto[20], data[64];
4710 logevent("Requesting X11 forwarding");
4711 x11_invent_auth(proto, sizeof(proto), data, sizeof(data));
4712 ssh2_pkt_init(SSH2_MSG_CHANNEL_REQUEST);
4713 ssh2_pkt_adduint32(mainchan->remoteid);
4714 ssh2_pkt_addstring("x11-req");
4715 ssh2_pkt_addbool(1); /* want reply */
4716 ssh2_pkt_addbool(0); /* many connections */
4717 ssh2_pkt_addstring(proto);
4718 ssh2_pkt_addstring(data);
4719 ssh2_pkt_adduint32(0); /* screen number */
4720 ssh2_pkt_send();
4721
4722 do {
4723 crWaitUntilV(ispkt);
4724 if (pktin.type == SSH2_MSG_CHANNEL_WINDOW_ADJUST) {
4725 unsigned i = ssh2_pkt_getuint32();
4726 struct ssh_channel *c;
4727 c = find234(ssh_channels, &i, ssh_channelfind);
4728 if (!c)
4729 continue; /* nonexistent channel */
4730 c->v.v2.remwindow += ssh2_pkt_getuint32();
4731 }
4732 } while (pktin.type == SSH2_MSG_CHANNEL_WINDOW_ADJUST);
4733
4734 if (pktin.type != SSH2_MSG_CHANNEL_SUCCESS) {
4735 if (pktin.type != SSH2_MSG_CHANNEL_FAILURE) {
4736 bombout(("Unexpected response to X11 forwarding request:"
4737 " packet type %d", pktin.type));
4738 crReturnV;
4739 }
4740 logevent("X11 forwarding refused");
4741 } else {
4742 logevent("X11 forwarding enabled");
4743 ssh_X11_fwd_enabled = TRUE;
4744 }
4745 }
4746
4747 /*
4748 * Enable port forwardings.
4749 */
4750 {
4751 static char *e; /* preserve across crReturn */
4752 char type;
4753 int n;
4754 int sport,dport,sserv,dserv;
4755 char sports[256], dports[256], host[256];
4756 char buf[1024];
4757 struct servent *se;
4758
4759 ssh_rportfwds = newtree234(ssh_rportcmp_ssh2);
4760 /* Add port forwardings. */
4761 e = cfg.portfwd;
4762 while (*e) {
4763 type = *e++;
4764 n = 0;
4765 while (*e && *e != '\t')
4766 sports[n++] = *e++;
4767 sports[n] = 0;
4768 if (*e == '\t')
4769 e++;
4770 n = 0;
4771 while (*e && *e != ':')
4772 host[n++] = *e++;
4773 host[n] = 0;
4774 if (*e == ':')
4775 e++;
4776 n = 0;
4777 while (*e)
4778 dports[n++] = *e++;
4779 dports[n] = 0;
4780 e++;
4781 dport = atoi(dports);
4782 dserv = 0;
4783 if (dport == 0) {
4784 dserv = 1;
4785 se = getservbyname(dports, NULL);
4786 if (se != NULL) {
4787 dport = ntohs(se->s_port);
4788 } else {
4789 sprintf(buf,
4790 "Service lookup failed for destination port \"%s\"",
4791 dports);
4792 logevent(buf);
4793 }
4794 }
4795 sport = atoi(sports);
4796 sserv = 0;
4797 if (sport == 0) {
4798 sserv = 1;
4799 se = getservbyname(sports, NULL);
4800 if (se != NULL) {
4801 sport = ntohs(se->s_port);
4802 } else {
4803 sprintf(buf,
4804 "Service lookup failed for source port \"%s\"",
4805 sports);
4806 logevent(buf);
4807 }
4808 }
4809 if (sport && dport) {
4810 if (type == 'L') {
4811 pfd_addforward(host, dport, sport);
4812 sprintf(buf, "Local port %.*s%.*s%d%.*s forwarding to"
4813 " %s:%.*s%.*s%d%.*s",
4814 sserv ? strlen(sports) : 0, sports,
4815 sserv, "(", sport, sserv, ")",
4816 host,
4817 dserv ? strlen(dports) : 0, dports,
4818 dserv, "(", dport, dserv, ")");
4819 logevent(buf);
4820 } else {
4821 struct ssh_rportfwd *pf;
4822 pf = smalloc(sizeof(*pf));
4823 strcpy(pf->dhost, host);
4824 pf->dport = dport;
4825 pf->sport = sport;
4826 if (add234(ssh_rportfwds, pf) != pf) {
4827 sprintf(buf,
4828 "Duplicate remote port forwarding to %s:%d",
4829 host, dport);
4830 logevent(buf);
4831 sfree(pf);
4832 } else {
4833 sprintf(buf, "Requesting remote port %.*s%.*s%d%.*s"
4834 " forward to %s:%.*s%.*s%d%.*s",
4835 sserv ? strlen(sports) : 0, sports,
4836 sserv, "(", sport, sserv, ")",
4837 host,
4838 dserv ? strlen(dports) : 0, dports,
4839 dserv, "(", dport, dserv, ")");
4840 logevent(buf);
4841 ssh2_pkt_init(SSH2_MSG_GLOBAL_REQUEST);
4842 ssh2_pkt_addstring("tcpip-forward");
4843 ssh2_pkt_addbool(1);/* want reply */
4844 if (cfg.rport_acceptall)
4845 ssh2_pkt_addstring("0.0.0.0");
4846 else
4847 ssh2_pkt_addstring("127.0.0.1");
4848 ssh2_pkt_adduint32(sport);
4849 ssh2_pkt_send();
4850
4851 do {
4852 crWaitUntilV(ispkt);
4853 if (pktin.type == SSH2_MSG_CHANNEL_WINDOW_ADJUST) {
4854 unsigned i = ssh2_pkt_getuint32();
4855 struct ssh_channel *c;
4856 c = find234(ssh_channels, &i, ssh_channelfind);
4857 if (!c)
4858 continue;/* nonexistent channel */
4859 c->v.v2.remwindow += ssh2_pkt_getuint32();
4860 }
4861 } while (pktin.type == SSH2_MSG_CHANNEL_WINDOW_ADJUST);
4862
4863 if (pktin.type != SSH2_MSG_REQUEST_SUCCESS) {
4864 if (pktin.type != SSH2_MSG_REQUEST_FAILURE) {
4865 bombout(("Unexpected response to port "
4866 "forwarding request: packet type %d",
4867 pktin.type));
4868 crReturnV;
4869 }
4870 logevent("Server refused this port forwarding");
4871 } else {
4872 logevent("Remote port forwarding enabled");
4873 }
4874 }
4875 }
4876 }
4877 }
4878 }
4879
4880 /*
4881 * Potentially enable agent forwarding.
4882 */
4883 if (cfg.agentfwd && agent_exists()) {
4884 logevent("Requesting OpenSSH-style agent forwarding");
4885 ssh2_pkt_init(SSH2_MSG_CHANNEL_REQUEST);
4886 ssh2_pkt_adduint32(mainchan->remoteid);
4887 ssh2_pkt_addstring("auth-agent-req@openssh.com");
4888 ssh2_pkt_addbool(1); /* want reply */
4889 ssh2_pkt_send();
4890
4891 do {
4892 crWaitUntilV(ispkt);
4893 if (pktin.type == SSH2_MSG_CHANNEL_WINDOW_ADJUST) {
4894 unsigned i = ssh2_pkt_getuint32();
4895 struct ssh_channel *c;
4896 c = find234(ssh_channels, &i, ssh_channelfind);
4897 if (!c)
4898 continue; /* nonexistent channel */
4899 c->v.v2.remwindow += ssh2_pkt_getuint32();
4900 }
4901 } while (pktin.type == SSH2_MSG_CHANNEL_WINDOW_ADJUST);
4902
4903 if (pktin.type != SSH2_MSG_CHANNEL_SUCCESS) {
4904 if (pktin.type != SSH2_MSG_CHANNEL_FAILURE) {
4905 bombout(("Unexpected response to agent forwarding request:"
4906 " packet type %d", pktin.type));
4907 crReturnV;
4908 }
4909 logevent("Agent forwarding refused");
4910 } else {
4911 logevent("Agent forwarding enabled");
4912 ssh_agentfwd_enabled = TRUE;
4913 }
4914 }
4915
4916 /*
4917 * Now allocate a pty for the session.
4918 */
4919 if (!cfg.nopty) {
4920 ssh2_pkt_init(SSH2_MSG_CHANNEL_REQUEST);
4921 ssh2_pkt_adduint32(mainchan->remoteid); /* recipient channel */
4922 ssh2_pkt_addstring("pty-req");
4923 ssh2_pkt_addbool(1); /* want reply */
4924 ssh2_pkt_addstring(cfg.termtype);
4925 ssh2_pkt_adduint32(cols);
4926 ssh2_pkt_adduint32(rows);
4927 ssh2_pkt_adduint32(0); /* pixel width */
4928 ssh2_pkt_adduint32(0); /* pixel height */
4929 ssh2_pkt_addstring_start();
4930 ssh2_pkt_addstring_data("\0", 1); /* TTY_OP_END, no special options */
4931 ssh2_pkt_send();
4932 ssh_state = SSH_STATE_INTERMED;
4933
4934 do {
4935 crWaitUntilV(ispkt);
4936 if (pktin.type == SSH2_MSG_CHANNEL_WINDOW_ADJUST) {
4937 unsigned i = ssh2_pkt_getuint32();
4938 struct ssh_channel *c;
4939 c = find234(ssh_channels, &i, ssh_channelfind);
4940 if (!c)
4941 continue; /* nonexistent channel */
4942 c->v.v2.remwindow += ssh2_pkt_getuint32();
4943 }
4944 } while (pktin.type == SSH2_MSG_CHANNEL_WINDOW_ADJUST);
4945
4946 if (pktin.type != SSH2_MSG_CHANNEL_SUCCESS) {
4947 if (pktin.type != SSH2_MSG_CHANNEL_FAILURE) {
4948 bombout(("Unexpected response to pty request:"
4949 " packet type %d", pktin.type));
4950 crReturnV;
4951 }
4952 c_write_str("Server refused to allocate pty\r\n");
4953 ssh_editing = ssh_echoing = 1;
4954 } else {
4955 logevent("Allocated pty");
4956 }
4957 } else {
4958 ssh_editing = ssh_echoing = 1;
4959 }
4960
4961 /*
4962 * Start a shell or a remote command. We may have to attempt
4963 * this twice if the config data has provided a second choice
4964 * of command.
4965 */
4966 while (1) {
4967 int subsys;
4968 char *cmd;
4969
4970 if (ssh_fallback_cmd) {
4971 subsys = cfg.ssh_subsys2;
4972 cmd = cfg.remote_cmd_ptr2;
4973 } else {
4974 subsys = cfg.ssh_subsys;
4975 cmd = cfg.remote_cmd_ptr;
4976 }
4977
4978 ssh2_pkt_init(SSH2_MSG_CHANNEL_REQUEST);
4979 ssh2_pkt_adduint32(mainchan->remoteid); /* recipient channel */
4980 if (subsys) {
4981 ssh2_pkt_addstring("subsystem");
4982 ssh2_pkt_addbool(1); /* want reply */
4983 ssh2_pkt_addstring(cmd);
4984 } else if (*cmd) {
4985 ssh2_pkt_addstring("exec");
4986 ssh2_pkt_addbool(1); /* want reply */
4987 ssh2_pkt_addstring(cmd);
4988 } else {
4989 ssh2_pkt_addstring("shell");
4990 ssh2_pkt_addbool(1); /* want reply */
4991 }
4992 ssh2_pkt_send();
4993 do {
4994 crWaitUntilV(ispkt);
4995 if (pktin.type == SSH2_MSG_CHANNEL_WINDOW_ADJUST) {
4996 unsigned i = ssh2_pkt_getuint32();
4997 struct ssh_channel *c;
4998 c = find234(ssh_channels, &i, ssh_channelfind);
4999 if (!c)
5000 continue; /* nonexistent channel */
5001 c->v.v2.remwindow += ssh2_pkt_getuint32();
5002 }
5003 } while (pktin.type == SSH2_MSG_CHANNEL_WINDOW_ADJUST);
5004 if (pktin.type != SSH2_MSG_CHANNEL_SUCCESS) {
5005 if (pktin.type != SSH2_MSG_CHANNEL_FAILURE) {
5006 bombout(("Unexpected response to shell/command request:"
5007 " packet type %d", pktin.type));
5008 crReturnV;
5009 }
5010 /*
5011 * We failed to start the command. If this is the
5012 * fallback command, we really are finished; if it's
5013 * not, and if the fallback command exists, try falling
5014 * back to it before complaining.
5015 */
5016 if (!ssh_fallback_cmd && cfg.remote_cmd_ptr2 != NULL) {
5017 logevent("Primary command failed; attempting fallback");
5018 ssh_fallback_cmd = TRUE;
5019 continue;
5020 }
5021 bombout(("Server refused to start a shell/command"));
5022 crReturnV;
5023 } else {
5024 logevent("Started a shell/command");
5025 }
5026 break;
5027 }
5028
5029 ssh_state = SSH_STATE_SESSION;
5030 if (size_needed)
5031 ssh_size();
5032 if (eof_needed)
5033 ssh_special(TS_EOF);
5034
5035 /*
5036 * Transfer data!
5037 */
5038 ldisc_send(NULL, 0, 0); /* cause ldisc to notice changes */
5039 ssh_send_ok = 1;
5040 while (1) {
5041 static int try_send;
5042 crReturnV;
5043 try_send = FALSE;
5044 if (ispkt) {
5045 if (pktin.type == SSH2_MSG_CHANNEL_DATA ||
5046 pktin.type == SSH2_MSG_CHANNEL_EXTENDED_DATA) {
5047 char *data;
5048 int length;
5049 unsigned i = ssh2_pkt_getuint32();
5050 struct ssh_channel *c;
5051 c = find234(ssh_channels, &i, ssh_channelfind);
5052 if (!c)
5053 continue; /* nonexistent channel */
5054 if (pktin.type == SSH2_MSG_CHANNEL_EXTENDED_DATA &&
5055 ssh2_pkt_getuint32() != SSH2_EXTENDED_DATA_STDERR)
5056 continue; /* extended but not stderr */
5057 ssh2_pkt_getstring(&data, &length);
5058 if (data) {
5059 int bufsize;
5060 c->v.v2.locwindow -= length;
5061 switch (c->type) {
5062 case CHAN_MAINSESSION:
5063 bufsize =
5064 from_backend(pktin.type ==
5065 SSH2_MSG_CHANNEL_EXTENDED_DATA,
5066 data, length);
5067 break;
5068 case CHAN_X11:
5069 bufsize = x11_send(c->u.x11.s, data, length);
5070 break;
5071 case CHAN_SOCKDATA:
5072 bufsize = pfd_send(c->u.pfd.s, data, length);
5073 break;
5074 case CHAN_AGENT:
5075 while (length > 0) {
5076 if (c->u.a.lensofar < 4) {
5077 int l = min(4 - c->u.a.lensofar, length);
5078 memcpy(c->u.a.msglen + c->u.a.lensofar,
5079 data, l);
5080 data += l;
5081 length -= l;
5082 c->u.a.lensofar += l;
5083 }
5084 if (c->u.a.lensofar == 4) {
5085 c->u.a.totallen =
5086 4 + GET_32BIT(c->u.a.msglen);
5087 c->u.a.message = smalloc(c->u.a.totallen);
5088 memcpy(c->u.a.message, c->u.a.msglen, 4);
5089 }
5090 if (c->u.a.lensofar >= 4 && length > 0) {
5091 int l =
5092 min(c->u.a.totallen - c->u.a.lensofar,
5093 length);
5094 memcpy(c->u.a.message + c->u.a.lensofar,
5095 data, l);
5096 data += l;
5097 length -= l;
5098 c->u.a.lensofar += l;
5099 }
5100 if (c->u.a.lensofar == c->u.a.totallen) {
5101 void *reply, *sentreply;
5102 int replylen;
5103 agent_query(c->u.a.message,
5104 c->u.a.totallen, &reply,
5105 &replylen);
5106 if (reply)
5107 sentreply = reply;
5108 else {
5109 /* Fake SSH_AGENT_FAILURE. */
5110 sentreply = "\0\0\0\1\5";
5111 replylen = 5;
5112 }
5113 ssh2_add_channel_data(c, sentreply,
5114 replylen);
5115 try_send = TRUE;
5116 if (reply)
5117 sfree(reply);
5118 sfree(c->u.a.message);
5119 c->u.a.lensofar = 0;
5120 }
5121 }
5122 bufsize = 0;
5123 break;
5124 }
5125 /*
5126 * If we are not buffering too much data,
5127 * enlarge the window again at the remote side.
5128 */
5129 if (bufsize < OUR_V2_WINSIZE)
5130 ssh2_set_window(c, OUR_V2_WINSIZE - bufsize);
5131 }
5132 } else if (pktin.type == SSH2_MSG_DISCONNECT) {
5133 ssh_state = SSH_STATE_CLOSED;
5134 logevent("Received disconnect message");
5135 crReturnV;
5136 } else if (pktin.type == SSH2_MSG_CHANNEL_EOF) {
5137 unsigned i = ssh2_pkt_getuint32();
5138 struct ssh_channel *c;
5139
5140 c = find234(ssh_channels, &i, ssh_channelfind);
5141 if (!c)
5142 continue; /* nonexistent channel */
5143
5144 if (c->type == CHAN_X11) {
5145 /*
5146 * Remote EOF on an X11 channel means we should
5147 * wrap up and close the channel ourselves.
5148 */
5149 x11_close(c->u.x11.s);
5150 sshfwd_close(c);
5151 } else if (c->type == CHAN_AGENT) {
5152 sshfwd_close(c);
5153 } else if (c->type == CHAN_SOCKDATA) {
5154 pfd_close(c->u.pfd.s);
5155 sshfwd_close(c);
5156 }
5157 } else if (pktin.type == SSH2_MSG_CHANNEL_CLOSE) {
5158 unsigned i = ssh2_pkt_getuint32();
5159 struct ssh_channel *c;
5160
5161 c = find234(ssh_channels, &i, ssh_channelfind);
5162 if (!c)
5163 continue; /* nonexistent channel */
5164 /* Do pre-close processing on the channel. */
5165 switch (c->type) {
5166 case CHAN_MAINSESSION:
5167 break; /* nothing to see here, move along */
5168 case CHAN_X11:
5169 if (c->u.x11.s != NULL)
5170 x11_close(c->u.x11.s);
5171 sshfwd_close(c);
5172 break;
5173 case CHAN_AGENT:
5174 sshfwd_close(c);
5175 break;
5176 case CHAN_SOCKDATA:
5177 if (c->u.pfd.s != NULL)
5178 pfd_close(c->u.pfd.s);
5179 sshfwd_close(c);
5180 break;
5181 }
5182 if (c->closes == 0) {
5183 ssh2_pkt_init(SSH2_MSG_CHANNEL_CLOSE);
5184 ssh2_pkt_adduint32(c->remoteid);
5185 ssh2_pkt_send();
5186 }
5187 del234(ssh_channels, c);
5188 bufchain_clear(&c->v.v2.outbuffer);
5189 sfree(c);
5190
5191 /*
5192 * See if that was the last channel left open.
5193 */
5194 if (count234(ssh_channels) == 0) {
5195 #if 0
5196 /*
5197 * We used to send SSH_MSG_DISCONNECT here,
5198 * because I'd believed that _every_ conforming
5199 * SSH2 connection had to end with a disconnect
5200 * being sent by at least one side; apparently
5201 * I was wrong and it's perfectly OK to
5202 * unceremoniously slam the connection shut
5203 * when you're done, and indeed OpenSSH feels
5204 * this is more polite than sending a
5205 * DISCONNECT. So now we don't.
5206 */
5207 logevent("All channels closed. Disconnecting");
5208 ssh2_pkt_init(SSH2_MSG_DISCONNECT);
5209 ssh2_pkt_adduint32(SSH2_DISCONNECT_BY_APPLICATION);
5210 ssh2_pkt_addstring("All open channels closed");
5211 ssh2_pkt_addstring("en"); /* language tag */
5212 ssh2_pkt_send();
5213 #endif
5214 ssh_state = SSH_STATE_CLOSED;
5215 crReturnV;
5216 }
5217 continue; /* remote sends close; ignore (FIXME) */
5218 } else if (pktin.type == SSH2_MSG_CHANNEL_WINDOW_ADJUST) {
5219 unsigned i = ssh2_pkt_getuint32();
5220 struct ssh_channel *c;
5221 c = find234(ssh_channels, &i, ssh_channelfind);
5222 if (!c)
5223 continue; /* nonexistent channel */
5224 c->v.v2.remwindow += ssh2_pkt_getuint32();
5225 try_send = TRUE;
5226 } else if (pktin.type == SSH2_MSG_CHANNEL_OPEN_CONFIRMATION) {
5227 unsigned i = ssh2_pkt_getuint32();
5228 struct ssh_channel *c;
5229 c = find234(ssh_channels, &i, ssh_channelfind);
5230 if (!c)
5231 continue; /* nonexistent channel */
5232 if (c->type != CHAN_SOCKDATA_DORMANT)
5233 continue; /* dunno why they're confirming this */
5234 c->remoteid = ssh2_pkt_getuint32();
5235 c->type = CHAN_SOCKDATA;
5236 c->v.v2.remwindow = ssh2_pkt_getuint32();
5237 c->v.v2.remmaxpkt = ssh2_pkt_getuint32();
5238 bufchain_init(&c->v.v2.outbuffer);
5239 if (c->u.pfd.s)
5240 pfd_confirm(c->u.pfd.s);
5241 if (c->closes) {
5242 /*
5243 * We have a pending close on this channel,
5244 * which we decided on before the server acked
5245 * the channel open. So now we know the
5246 * remoteid, we can close it again.
5247 */
5248 ssh2_pkt_init(SSH2_MSG_CHANNEL_CLOSE);
5249 ssh2_pkt_adduint32(c->remoteid);
5250 ssh2_pkt_send();
5251 }
5252 } else if (pktin.type == SSH2_MSG_CHANNEL_OPEN_FAILURE) {
5253 unsigned i = ssh2_pkt_getuint32();
5254 struct ssh_channel *c;
5255 c = find234(ssh_channels, &i, ssh_channelfind);
5256 if (!c)
5257 continue; /* nonexistent channel */
5258 if (c->type != CHAN_SOCKDATA_DORMANT)
5259 continue; /* dunno why they're failing this */
5260
5261 logevent("Forwarded connection refused by server");
5262
5263 pfd_close(c->u.pfd.s);
5264
5265 del234(ssh_channels, c);
5266 sfree(c);
5267 } else if (pktin.type == SSH2_MSG_CHANNEL_REQUEST) {
5268 unsigned localid;
5269 char *type;
5270 int typelen, want_reply;
5271 struct ssh_channel *c;
5272
5273 localid = ssh2_pkt_getuint32();
5274 ssh2_pkt_getstring(&type, &typelen);
5275 want_reply = ssh2_pkt_getbool();
5276
5277 /*
5278 * First, check that the channel exists. Otherwise,
5279 * we can instantly disconnect with a rude message.
5280 */
5281 c = find234(ssh_channels, &localid, ssh_channelfind);
5282 if (!c) {
5283 char buf[80];
5284 sprintf(buf, "Received channel request for nonexistent"
5285 " channel %d", localid);
5286 logevent(buf);
5287 ssh2_pkt_init(SSH2_MSG_DISCONNECT);
5288 ssh2_pkt_adduint32(SSH2_DISCONNECT_BY_APPLICATION);
5289 ssh2_pkt_addstring(buf);
5290 ssh2_pkt_addstring("en"); /* language tag */
5291 ssh2_pkt_send();
5292 connection_fatal("%s", buf);
5293 ssh_state = SSH_STATE_CLOSED;
5294 crReturnV;
5295 }
5296
5297 /*
5298 * Having got the channel number, we now look at
5299 * the request type string to see if it's something
5300 * we recognise.
5301 */
5302 if (typelen == 11 && !memcmp(type, "exit-status", 11) &&
5303 c == mainchan) {
5304 /* We recognise "exit-status" on the primary channel. */
5305 char buf[100];
5306 ssh_exitcode = ssh2_pkt_getuint32();
5307 sprintf(buf, "Server sent command exit status %d",
5308 ssh_exitcode);
5309 logevent(buf);
5310 if (want_reply) {
5311 ssh2_pkt_init(SSH2_MSG_CHANNEL_SUCCESS);
5312 ssh2_pkt_adduint32(c->remoteid);
5313 ssh2_pkt_send();
5314 }
5315 } else {
5316 /*
5317 * This is a channel request we don't know
5318 * about, so we now either ignore the request
5319 * or respond with CHANNEL_FAILURE, depending
5320 * on want_reply.
5321 */
5322 if (want_reply) {
5323 ssh2_pkt_init(SSH2_MSG_CHANNEL_FAILURE);
5324 ssh2_pkt_adduint32(c->remoteid);
5325 ssh2_pkt_send();
5326 }
5327 }
5328 } else if (pktin.type == SSH2_MSG_GLOBAL_REQUEST) {
5329 char *type;
5330 int typelen, want_reply;
5331
5332 ssh2_pkt_getstring(&type, &typelen);
5333 want_reply = ssh2_pkt_getbool();
5334
5335 /*
5336 * We currently don't support any global requests
5337 * at all, so we either ignore the request or
5338 * respond with REQUEST_FAILURE, depending on
5339 * want_reply.
5340 */
5341 if (want_reply) {
5342 ssh2_pkt_init(SSH2_MSG_REQUEST_FAILURE);
5343 ssh2_pkt_send();
5344 }
5345 } else if (pktin.type == SSH2_MSG_CHANNEL_OPEN) {
5346 char *type;
5347 int typelen;
5348 char *error = NULL;
5349 struct ssh_channel *c;
5350 unsigned remid, winsize, pktsize;
5351 ssh2_pkt_getstring(&type, &typelen);
5352 c = smalloc(sizeof(struct ssh_channel));
5353
5354 remid = ssh2_pkt_getuint32();
5355 winsize = ssh2_pkt_getuint32();
5356 pktsize = ssh2_pkt_getuint32();
5357
5358 if (typelen == 3 && !memcmp(type, "x11", 3)) {
5359 if (!ssh_X11_fwd_enabled)
5360 error = "X11 forwarding is not enabled";
5361 else if (x11_init(&c->u.x11.s, cfg.x11_display, c) !=
5362 NULL) {
5363 error = "Unable to open an X11 connection";
5364 } else {
5365 c->type = CHAN_X11;
5366 }
5367 } else if (typelen == 15 &&
5368 !memcmp(type, "forwarded-tcpip", 15)) {
5369 struct ssh_rportfwd pf, *realpf;
5370 char *dummy;
5371 int dummylen;
5372 ssh2_pkt_getstring(&dummy, &dummylen);/* skip address */
5373 pf.sport = ssh2_pkt_getuint32();
5374 realpf = find234(ssh_rportfwds, &pf, NULL);
5375 if (realpf == NULL) {
5376 error = "Remote port is not recognised";
5377 } else {
5378 char *e = pfd_newconnect(&c->u.pfd.s, realpf->dhost,
5379 realpf->dport, c);
5380 char buf[1024];
5381 sprintf(buf, "Received remote port open request for %s:%d",
5382 realpf->dhost, realpf->dport);
5383 logevent(buf);
5384 if (e != NULL) {
5385 sprintf(buf, "Port open failed: %s", e);
5386 logevent(buf);
5387 error = "Port open failed";
5388 } else {
5389 logevent("Forwarded port opened successfully");
5390 c->type = CHAN_SOCKDATA;
5391 }
5392 }
5393 } else if (typelen == 22 &&
5394 !memcmp(type, "auth-agent@openssh.com", 3)) {
5395 if (!ssh_agentfwd_enabled)
5396 error = "Agent forwarding is not enabled";
5397 else {
5398 c->type = CHAN_AGENT; /* identify channel type */
5399 c->u.a.lensofar = 0;
5400 }
5401 } else {
5402 error = "Unsupported channel type requested";
5403 }
5404
5405 c->remoteid = remid;
5406 if (error) {
5407 ssh2_pkt_init(SSH2_MSG_CHANNEL_OPEN_FAILURE);
5408 ssh2_pkt_adduint32(c->remoteid);
5409 ssh2_pkt_adduint32(SSH2_OPEN_CONNECT_FAILED);
5410 ssh2_pkt_addstring(error);
5411 ssh2_pkt_addstring("en"); /* language tag */
5412 ssh2_pkt_send();
5413 sfree(c);
5414 } else {
5415 c->localid = alloc_channel_id();
5416 c->closes = 0;
5417 c->v.v2.locwindow = OUR_V2_WINSIZE;
5418 c->v.v2.remwindow = winsize;
5419 c->v.v2.remmaxpkt = pktsize;
5420 bufchain_init(&c->v.v2.outbuffer);
5421 add234(ssh_channels, c);
5422 ssh2_pkt_init(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION);
5423 ssh2_pkt_adduint32(c->remoteid);
5424 ssh2_pkt_adduint32(c->localid);
5425 ssh2_pkt_adduint32(c->v.v2.locwindow);
5426 ssh2_pkt_adduint32(0x4000UL); /* our max pkt size */
5427 ssh2_pkt_send();
5428 }
5429 } else {
5430 bombout(("Strange packet received: type %d", pktin.type));
5431 crReturnV;
5432 }
5433 } else {
5434 /*
5435 * We have spare data. Add it to the channel buffer.
5436 */
5437 ssh2_add_channel_data(mainchan, in, inlen);
5438 try_send = TRUE;
5439 }
5440 if (try_send) {
5441 int i;
5442 struct ssh_channel *c;
5443 /*
5444 * Try to send data on all channels if we can.
5445 */
5446 for (i = 0; NULL != (c = index234(ssh_channels, i)); i++) {
5447 int bufsize = ssh2_try_send(c);
5448 if (bufsize == 0) {
5449 switch (c->type) {
5450 case CHAN_MAINSESSION:
5451 /* stdin need not receive an unthrottle
5452 * notification since it will be polled */
5453 break;
5454 case CHAN_X11:
5455 x11_unthrottle(c->u.x11.s);
5456 break;
5457 case CHAN_AGENT:
5458 /* agent sockets are request/response and need no
5459 * buffer management */
5460 break;
5461 case CHAN_SOCKDATA:
5462 pfd_unthrottle(c->u.pfd.s);
5463 break;
5464 }
5465 }
5466 }
5467 }
5468 }
5469
5470 crFinishV;
5471 }
5472
5473 /*
5474 * Handle the top-level SSH2 protocol.
5475 */
5476 static void ssh2_protocol(unsigned char *in, int inlen, int ispkt)
5477 {
5478 if (do_ssh2_transport(in, inlen, ispkt) == 0)
5479 return;
5480 do_ssh2_authconn(in, inlen, ispkt);
5481 }
5482
5483 /*
5484 * Called to set up the connection.
5485 *
5486 * Returns an error message, or NULL on success.
5487 */
5488 static char *ssh_init(char *host, int port, char **realhost, int nodelay)
5489 {
5490 char *p;
5491
5492 #ifdef MSCRYPTOAPI
5493 if (crypto_startup() == 0)
5494 return "Microsoft high encryption pack not installed!";
5495 #endif
5496
5497 ssh_send_ok = 0;
5498 ssh_editing = 0;
5499 ssh_echoing = 0;
5500 ssh1_throttle_count = 0;
5501 ssh_overall_bufsize = 0;
5502 ssh_fallback_cmd = 0;
5503
5504 p = connect_to_host(host, port, realhost, nodelay);
5505 if (p != NULL)
5506 return p;
5507
5508 return NULL;
5509 }
5510
5511 /*
5512 * Called to send data down the Telnet connection.
5513 */
5514 static int ssh_send(char *buf, int len)
5515 {
5516 if (s == NULL || ssh_protocol == NULL)
5517 return 0;
5518
5519 ssh_protocol(buf, len, 0);
5520
5521 return ssh_sendbuffer();
5522 }
5523
5524 /*
5525 * Called to query the current amount of buffered stdin data.
5526 */
5527 static int ssh_sendbuffer(void)
5528 {
5529 int override_value;
5530
5531 if (s == NULL || ssh_protocol == NULL)
5532 return 0;
5533
5534 /*
5535 * If the SSH socket itself has backed up, add the total backup
5536 * size on that to any individual buffer on the stdin channel.
5537 */
5538 override_value = 0;
5539 if (ssh_throttled_all)
5540 override_value = ssh_overall_bufsize;
5541
5542 if (ssh_version == 1) {
5543 return override_value;
5544 } else if (ssh_version == 2) {
5545 if (!mainchan || mainchan->closes > 0)
5546 return override_value;
5547 else
5548 return override_value + bufchain_size(&mainchan->v.v2.outbuffer);
5549 }
5550
5551 return 0;
5552 }
5553
5554 /*
5555 * Called to set the size of the window from SSH's POV.
5556 */
5557 static void ssh_size(void)
5558 {
5559 switch (ssh_state) {
5560 case SSH_STATE_BEFORE_SIZE:
5561 case SSH_STATE_PREPACKET:
5562 case SSH_STATE_CLOSED:
5563 break; /* do nothing */
5564 case SSH_STATE_INTERMED:
5565 size_needed = TRUE; /* buffer for later */
5566 break;
5567 case SSH_STATE_SESSION:
5568 if (!cfg.nopty) {
5569 if (ssh_version == 1) {
5570 send_packet(SSH1_CMSG_WINDOW_SIZE,
5571 PKT_INT, rows, PKT_INT, cols,
5572 PKT_INT, 0, PKT_INT, 0, PKT_END);
5573 } else {
5574 ssh2_pkt_init(SSH2_MSG_CHANNEL_REQUEST);
5575 ssh2_pkt_adduint32(mainchan->remoteid);
5576 ssh2_pkt_addstring("window-change");
5577 ssh2_pkt_addbool(0);
5578 ssh2_pkt_adduint32(cols);
5579 ssh2_pkt_adduint32(rows);
5580 ssh2_pkt_adduint32(0);
5581 ssh2_pkt_adduint32(0);
5582 ssh2_pkt_send();
5583 }
5584 }
5585 break;
5586 }
5587 }
5588
5589 /*
5590 * Send Telnet special codes. TS_EOF is useful for `plink', so you
5591 * can send an EOF and collect resulting output (e.g. `plink
5592 * hostname sort').
5593 */
5594 static void ssh_special(Telnet_Special code)
5595 {
5596 if (code == TS_EOF) {
5597 if (ssh_state != SSH_STATE_SESSION) {
5598 /*
5599 * Buffer the EOF in case we are pre-SESSION, so we can
5600 * send it as soon as we reach SESSION.
5601 */
5602 if (code == TS_EOF)
5603 eof_needed = TRUE;
5604 return;
5605 }
5606 if (ssh_version == 1) {
5607 send_packet(SSH1_CMSG_EOF, PKT_END);
5608 } else {
5609 ssh2_pkt_init(SSH2_MSG_CHANNEL_EOF);
5610 ssh2_pkt_adduint32(mainchan->remoteid);
5611 ssh2_pkt_send();
5612 }
5613 logevent("Sent EOF message");
5614 } else if (code == TS_PING) {
5615 if (ssh_state == SSH_STATE_CLOSED
5616 || ssh_state == SSH_STATE_PREPACKET) return;
5617 if (ssh_version == 1) {
5618 send_packet(SSH1_MSG_IGNORE, PKT_STR, "", PKT_END);
5619 } else {
5620 ssh2_pkt_init(SSH2_MSG_IGNORE);
5621 ssh2_pkt_addstring_start();
5622 ssh2_pkt_send();
5623 }
5624 } else {
5625 /* do nothing */
5626 }
5627 }
5628
5629 void *new_sock_channel(Socket s)
5630 {
5631 struct ssh_channel *c;
5632 c = smalloc(sizeof(struct ssh_channel));
5633
5634 if (c) {
5635 c->remoteid = -1; /* to be set when open confirmed */
5636 c->localid = alloc_channel_id();
5637 c->closes = 0;
5638 c->type = CHAN_SOCKDATA_DORMANT;/* identify channel type */
5639 c->u.pfd.s = s;
5640 add234(ssh_channels, c);
5641 }
5642 return c;
5643 }
5644
5645 /*
5646 * This is called when stdout/stderr (the entity to which
5647 * from_backend sends data) manages to clear some backlog.
5648 */
5649 void ssh_unthrottle(int bufsize)
5650 {
5651 if (ssh_version == 1) {
5652 if (ssh1_stdout_throttling && bufsize < SSH1_BUFFER_LIMIT) {
5653 ssh1_stdout_throttling = 0;
5654 ssh1_throttle(-1);
5655 }
5656 } else {
5657 if (mainchan && mainchan->closes == 0)
5658 ssh2_set_window(mainchan, OUR_V2_WINSIZE - bufsize);
5659 }
5660 }
5661
5662 void ssh_send_port_open(void *channel, char *hostname, int port, char *org)
5663 {
5664 struct ssh_channel *c = (struct ssh_channel *)channel;
5665 char buf[1024];
5666
5667 sprintf(buf, "Opening forwarded connection to %.512s:%d", hostname, port);
5668 logevent(buf);
5669
5670 if (ssh_version == 1) {
5671 send_packet(SSH1_MSG_PORT_OPEN,
5672 PKT_INT, c->localid,
5673 PKT_STR, hostname,
5674 PKT_INT, port,
5675 //PKT_STR, <org:orgport>,
5676 PKT_END);
5677 } else {
5678 ssh2_pkt_init(SSH2_MSG_CHANNEL_OPEN);
5679 ssh2_pkt_addstring("direct-tcpip");
5680 ssh2_pkt_adduint32(c->localid);
5681 c->v.v2.locwindow = OUR_V2_WINSIZE;
5682 ssh2_pkt_adduint32(c->v.v2.locwindow);/* our window size */
5683 ssh2_pkt_adduint32(0x4000UL); /* our max pkt size */
5684 ssh2_pkt_addstring(hostname);
5685 ssh2_pkt_adduint32(port);
5686 /*
5687 * We make up values for the originator data; partly it's
5688 * too much hassle to keep track, and partly I'm not
5689 * convinced the server should be told details like that
5690 * about my local network configuration.
5691 */
5692 ssh2_pkt_addstring("client-side-connection");
5693 ssh2_pkt_adduint32(0);
5694 ssh2_pkt_send();
5695 }
5696 }
5697
5698
5699 static Socket ssh_socket(void)
5700 {
5701 return s;
5702 }
5703
5704 static int ssh_sendok(void)
5705 {
5706 return ssh_send_ok;
5707 }
5708
5709 static int ssh_ldisc(int option)
5710 {
5711 if (option == LD_ECHO)
5712 return ssh_echoing;
5713 if (option == LD_EDIT)
5714 return ssh_editing;
5715 return FALSE;
5716 }
5717
5718 static int ssh_return_exitcode(void)
5719 {
5720 return ssh_exitcode;
5721 }
5722
5723 Backend ssh_backend = {
5724 ssh_init,
5725 ssh_send,
5726 ssh_sendbuffer,
5727 ssh_size,
5728 ssh_special,
5729 ssh_socket,
5730 ssh_return_exitcode,
5731 ssh_sendok,
5732 ssh_ldisc,
5733 ssh_unthrottle,
5734 22
5735 };