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