Diff

Differences From Artifact [5410e42e1f]:

To Artifact [0225ae22cc]:


1
2


3
4
5


6
7
8
9
10
11
12
13
14



15
16
17
18
19
20
21
22
23
24
25
26
27
28
















29
30
31
32
33
34






35
36















37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59

60
61
62
63
64
65


66
67
68
69
70
71
72
73
74
75
76
77
78
79
80





81
82
83
84
85
86
87
88
89


90
91
92
93
94
95
96
97
98






99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121


122
123
124
125
126
127













128
129

130
131
132
133
134
135
136
137
138
139












140
141
142
143
144



145
146
147

148
149
150


151
152
153
154
155


156
157
158
159
160




161
162
163


164
165
166
167



168

169
170
171
172
173
174
175
176
177
178
179
180
181
182














183
184
185


186
187
188


189
190
191


192
193
194
195
196
197



198









199
200
201
202
203






















204
205
206
207

208
209
210
211
212
213
214
215
216
217
218
219
220

221
222
223


224
225
226
227
228
229
230
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17

18
19
20
21













22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37






38
39
40
41
42
43
44

45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76






77

78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145

146
147
148
149
150


151
152
153
154
155
156


157
158
159
160
161
162
163
164
165
166
167
168
169
170

171

172
173







174
175
176
177
178
179
180
181
182
183
184
185
186
187



188
189
190
191
192

193



194
195

196



197
198
199




200
201
202
203
204


205
206
207



208
209
210
211
212














213
214
215
216
217
218
219
220
221
222
223
224
225
226
227


228
229
230


231
232
233


234
235






236
237
238
239
240
241
242
243
244
245
246
247
248





249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272

273
274
275
276
277
278
279
280
281
282
283
284
285
286

287
288


289
290
291
292
293
294
295
296
297


+
+



+
+








-
+
+
+

-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
+
+
+
+
+
+

-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+

















-
-
-
-
-
-
+
-





+
+















+
+
+
+
+









+
+









+
+
+
+
+
+















-





-
-
+
+




-
-
+
+
+
+
+
+
+
+
+
+
+
+
+

-
+
-


-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+


-
-
-
+
+
+


-
+
-
-
-
+
+
-

-
-
-
+
+

-
-
-
-
+
+
+
+

-
-
+
+

-
-
-
+
+
+

+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+

-
-
+
+

-
-
+
+

-
-
+
+
-
-
-
-
-
-
+
+
+

+
+
+
+
+
+
+
+
+
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+


-

+












-
+

-
-
+
+







#include <stdio.h>
#include <stdlib.h>
#include <stdarg.h>
#include <assert.h>
#include <winsock.h>

#include "putty.h"
#include "ssh.h"
#include "scp.h"

#ifndef FALSE
#define FALSE 0
#endif
#ifndef TRUE
#define TRUE 1
#endif

#include "ssh.h"
#define logevent(s) { logevent(s); \
                      if (IS_SCP && (scp_flags & SCP_VERBOSE) != 0) \
                      fprintf(stderr, "%s\n", s); }

#define SSH_MSG_DISCONNECT 1
#define SSH_SMSG_PUBLIC_KEY 2
#define SSH_CMSG_SESSION_KEY 3
#define SSH_CMSG_USER 4
#define SSH_CMSG_AUTH_PASSWORD 9
#define SSH_CMSG_REQUEST_PTY 10
#define SSH_CMSG_EXEC_SHELL 12
#define SSH_CMSG_STDIN_DATA 16
#define SSH_SMSG_STDOUT_DATA 17
#define SSH_SMSG_STDERR_DATA 18
#define SSH_SMSG_SUCCESS 14
#define SSH_SMSG_FAILURE 15
#define SSH_SMSG_EXITSTATUS 20
#define SSH_MSG_DISCONNECT	1
#define SSH_SMSG_PUBLIC_KEY	2
#define SSH_CMSG_SESSION_KEY	3
#define SSH_CMSG_USER		4
#define SSH_CMSG_AUTH_PASSWORD	9
#define SSH_CMSG_REQUEST_PTY	10
#define SSH_CMSG_WINDOW_SIZE	11
#define SSH_CMSG_EXEC_SHELL	12
#define SSH_CMSG_EXEC_CMD	13
#define SSH_SMSG_SUCCESS	14
#define SSH_SMSG_FAILURE	15
#define SSH_CMSG_STDIN_DATA	16
#define SSH_SMSG_STDOUT_DATA	17
#define SSH_SMSG_STDERR_DATA	18
#define SSH_CMSG_EOF		19
#define SSH_SMSG_EXIT_STATUS	20
#define SSH_MSG_IGNORE 32
#define SSH_CMSG_EXIT_CONFIRMATION 33
#define SSH_MSG_DEBUG 36
#define SSH_CMSG_AUTH_TIS 39
#define SSH_SMSG_AUTH_TIS_CHALLENGE 40
#define SSH_CMSG_AUTH_TIS_RESPONSE 41
#define SSH_CMSG_EXIT_CONFIRMATION	33
#define SSH_MSG_IGNORE		32
#define SSH_MSG_DEBUG		36
#define SSH_CMSG_AUTH_TIS	39
#define SSH_SMSG_AUTH_TIS_CHALLENGE	40
#define SSH_CMSG_AUTH_TIS_RESPONSE	41

#define SSH_AUTH_TIS              5
#define SSH_AUTH_TIS		5

#define GET_32BIT(cp) \
    (((unsigned long)(unsigned char)(cp)[0] << 24) | \
    ((unsigned long)(unsigned char)(cp)[1] << 16) | \
    ((unsigned long)(unsigned char)(cp)[2] << 8) | \
    ((unsigned long)(unsigned char)(cp)[3]))

#define PUT_32BIT(cp, value) { \
    (cp)[0] = (unsigned char)((value) >> 24); \
    (cp)[1] = (unsigned char)((value) >> 16); \
    (cp)[2] = (unsigned char)((value) >> 8); \
    (cp)[3] = (unsigned char)(value); }

enum { PKT_END, PKT_INT, PKT_CHAR, PKT_DATA, PKT_STR };

/* Coroutine mechanics for the sillier bits of the code */
#define crBegin1	static int crLine = 0;
#define crBegin2	switch(crLine) { case 0:;
#define crBegin		crBegin1; crBegin2;
#define crFinish(z)	} crLine = 0; return (z)
#define crFinishV	} crLine = 0; return
#define crReturn(z)	\
	do {\
	    crLine=__LINE__; return (z); case __LINE__:;\
	} while (0)
#define crReturnV	\
	do {\
	    crLine=__LINE__; return; case __LINE__:;\
	} while (0)
#define crStop(z)	do{ crLine = 0; return (z); }while(0)
#define crStopV		do{ crLine = 0; return; }while(0)

#ifndef FALSE
#define FALSE 0
#endif
#ifndef TRUE
#define TRUE 1
#define crWaitUntil(c)	do { crReturn(0); } while (!(c))
#endif

static SOCKET s = INVALID_SOCKET;

static unsigned char session_key[32];
static struct ssh_cipher *cipher = NULL;
int scp_flags = 0;
void (*ssh_get_password)(const char *prompt, char *str, int maxlen) = NULL;

static char *savedhost;

static enum {
    SSH_STATE_BEFORE_SIZE,
    SSH_STATE_INTERMED,
    SSH_STATE_SESSION,
    SSH_STATE_CLOSED
} ssh_state = SSH_STATE_BEFORE_SIZE;

static int size_needed = FALSE;

static void s_write (char *buf, int len) {
    while (len > 0) {
	int i = send (s, buf, len, 0);
	if (IS_SCP) {
	    noise_ultralight(i);
	    if (i <= 0)
		fatalbox("Lost connection while sending");
	}
	if (i > 0)
	    len -= i, buf += i;
    }
}

static int s_read (char *buf, int len) {
    int ret = 0;
    while (len > 0) {
	int i = recv (s, buf, len, 0);
	if (IS_SCP)
	    noise_ultralight(i);
	if (i > 0)
	    len -= i, buf += i, ret += i;
	else
	    return i;
    }
    return ret;
}

static void c_write (char *buf, int len) {
    if (IS_SCP) {
	if (len > 0 && buf[len-1] == '\n') len--;
	if (len > 0 && buf[len-1] == '\r') len--;
	if (len > 0) { fwrite(buf, len, 1, stderr); fputc('\n', stderr); }
	return;
    }
    while (len--) {
	int new_head = (inbuf_head + 1) & INBUF_MASK;
	if (new_head != inbuf_reap) {
	    inbuf[inbuf_head] = *buf++;
	    inbuf_head = new_head;
	} else {
            term_out();
            if( inbuf_head == inbuf_reap ) len++; else break;
	}
    }
}

struct Packet {
    long length;
    int type;
    unsigned long crc;
    unsigned char *data;
    unsigned char *body;
    long maxlen;
};

static struct Packet pktin = { 0, 0, 0, NULL, 0 };
static struct Packet pktout = { 0, 0, 0, NULL, 0 };
static struct Packet pktin = { 0, 0, NULL, NULL, 0 };
static struct Packet pktout = { 0, 0, NULL, NULL, 0 };

static void ssh_protocol(unsigned char *in, int inlen, int ispkt);
static void ssh_size(void);

static void ssh_gotdata(unsigned char *data, int datalen) {
    static long len, biglen, to_read;

/*
 * Collect incoming data in the incoming packet buffer.
 * Decihper and verify the packet when it is completely read.
 * Drop SSH_MSG_DEBUG and SSH_MSG_IGNORE packets.
 * Update the *data and *datalen variables.
 * Return the additional nr of bytes needed, or 0 when
 * a complete packet is available.
 */
static int s_rdpkt(unsigned char **data, int *datalen)
{
    static long len, pad, biglen, to_read;
    static unsigned long realcrc, gotcrc;
    static unsigned char *p;
    static int i, pad;
    static int i;
    static unsigned long realcrc, gotcrc;

    crBegin;
    while (1) {
	for (i = len = 0; i < 4; i++) {
	    while (datalen == 0)
		crReturnV;
	    len = (len << 8) + *data;
	    data++, datalen--;
	}

next_packet:

    pktin.type = 0;
    pktin.length = 0;

    for (i = len = 0; i < 4; i++) {
	while ((*datalen) == 0)
	    crReturn(4-i);
	len = (len << 8) + **data;
	(*data)++, (*datalen)--;
    }

#ifdef FWHACK
        if (len == 0x52656d6f) {       /* "Remo"te server has closed ... */
            len = 0x300;               /* big enough to carry to end */
        }
    if (len == 0x52656d6f) {       /* "Remo"te server has closed ... */
        len = 0x300;               /* big enough to carry to end */
    }
#endif

	pad = 8 - (len%8);
    pad = 8 - (len % 8);

	biglen = len + pad;

    biglen = len + pad;
    pktin.length = len - 5;
	len -= 5;		       /* type and CRC */

	pktin.length = len;
	if (pktin.maxlen < biglen) {
	    pktin.maxlen = biglen;
    if (pktin.maxlen < biglen) {
	pktin.maxlen = biglen;
#ifdef MSCRYPTOAPI
	    /* Allocate enough buffer space for extra block
	     * for MS CryptEncrypt() */
	    pktin.data = (pktin.data == NULL ? malloc(biglen+8) :
			  realloc(pktin.data, biglen+8));
	/* Allocate enough buffer space for extra block
	 * for MS CryptEncrypt() */
	pktin.data = (pktin.data == NULL ? malloc(biglen+8) :
	              realloc(pktin.data, biglen+8));
#else
	    pktin.data = (pktin.data == NULL ? malloc(biglen) :
			  realloc(pktin.data, biglen));
	pktin.data = (pktin.data == NULL ? malloc(biglen) :
	              realloc(pktin.data, biglen));
#endif
	    if (!pktin.data)
		fatalbox("Out of memory");
	}
	if (!pktin.data)
	    fatalbox("Out of memory");
    }

    to_read = biglen;
	p = pktin.data, to_read = biglen;
	while (to_read > 0) {
	    static int chunk;
	    chunk = to_read;
	    while (datalen == 0)
		crReturnV;
	    if (chunk > datalen)
		chunk = datalen;
	    memcpy(p, data, chunk);
	    data += chunk;
	    datalen -= chunk;
	    p += chunk;
	    to_read -= chunk;
	}
    p = pktin.data;
    while (to_read > 0) {
	static int chunk;
	chunk = to_read;
	while ((*datalen) == 0)
	    crReturn(to_read);
	if (chunk > (*datalen))
	    chunk = (*datalen);
	memcpy(p, *data, chunk);
	*data += chunk;
	*datalen -= chunk;
	p += chunk;
	to_read -= chunk;
    }

	if (cipher)
	    cipher->decrypt(pktin.data, biglen);
    if (cipher)
	cipher->decrypt(pktin.data, biglen);

	pktin.type = pktin.data[pad];
	pktin.body = pktin.data+pad+1;
    pktin.type = pktin.data[pad];
    pktin.body = pktin.data + pad + 1;

	realcrc = crc32(pktin.data, biglen-4);
	gotcrc = (pktin.data[biglen-4] << 24);
    realcrc = crc32(pktin.data, biglen-4);
    gotcrc = GET_32BIT(pktin.data+biglen-4);
	gotcrc |= (pktin.data[biglen-3] << 16);
	gotcrc |= (pktin.data[biglen-2] <<  8);
	gotcrc |= (pktin.data[biglen-1] <<  0);
	if (gotcrc != realcrc) {
	    fatalbox("Incorrect CRC received on packet");
	}
    if (gotcrc != realcrc) {
	fatalbox("Incorrect CRC received on packet");
    }

    if (pktin.type == SSH_SMSG_STDOUT_DATA ||
        pktin.type == SSH_SMSG_STDERR_DATA ||
        pktin.type == SSH_MSG_DEBUG ||
        pktin.type == SSH_SMSG_AUTH_TIS_CHALLENGE) {
	long strlen = GET_32BIT(pktin.body);
	if (strlen + 4 != pktin.length)
	    fatalbox("Received data packet with bogus string length");
    }

	if (pktin.type == SSH_MSG_DEBUG) {
	    /* FIXME: log it */
	} else if (pktin.type == SSH_MSG_IGNORE) {
	    /* do nothing */;
	} else
    if (pktin.type == SSH_MSG_DEBUG) {
	/* log debug message */
	char buf[80];
	int strlen = GET_32BIT(pktin.body);
	strcpy(buf, "Remote: ");
	if (strlen > 70) strlen = 70;
	memcpy(buf+8, pktin.body+4, strlen);
	buf[8+strlen] = '\0';
	logevent(buf);
	goto next_packet;
    } else if (pktin.type == SSH_MSG_IGNORE) {
	/* do nothing */
	goto next_packet;
    }

    crFinish(0);
}

static void ssh_gotdata(unsigned char *data, int datalen)
{
    while (datalen > 0) {
	if ( s_rdpkt(&data, &datalen) == 0 )
	    ssh_protocol(NULL, 0, 1);
    }
    crFinishV;
}


static void s_wrpkt_start(int type, int len) {
    int pad, biglen;

    len += 5;			       /* type and CRC */
    pad = 8 - (len%8);
    biglen = len + pad;

    pktout.length = len-5;
    if (pktout.maxlen < biglen) {
	pktout.maxlen = biglen;
#ifdef MSCRYPTOAPI
	/* Allocate enough buffer space for extra block 
	/* Allocate enough buffer space for extra block
	 * for MS CryptEncrypt() */
	pktout.data = (pktout.data == NULL ? malloc(biglen+8) :
		       realloc(pktout.data, biglen+8));
	pktout.data = (pktout.data == NULL ? malloc(biglen+12) :
		       realloc(pktout.data, biglen+12));
#else
	pktout.data = (pktout.data == NULL ? malloc(biglen+4) :
		       realloc(pktout.data, biglen+4));
#endif
	if (!pktout.data)
	    fatalbox("Out of memory");
    }
241
242
243
244
245
246
247
248

249
250
251
252
253
254
255
256
257

258
259
260
261
262
263

















































































































































































264
265
266
267
268
269
270
308
309
310
311
312
313
314

315









316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506







-
+
-
-
-
-
-
-
-
-
-
+






+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+







    pad = 8 - (len%8);
    biglen = len + pad;

    pktout.body[-1] = pktout.type;
    for (i=0; i<pad; i++)
	pktout.data[i+4] = random_byte();
    crc = crc32(pktout.data+4, biglen-4);

    PUT_32BIT(pktout.data+biglen, crc);
    pktout.data[biglen+0] = (unsigned char) ((crc >> 24) & 0xFF);
    pktout.data[biglen+1] = (unsigned char) ((crc >> 16) & 0xFF);
    pktout.data[biglen+2] = (unsigned char) ((crc >> 8) & 0xFF);
    pktout.data[biglen+3] = (unsigned char) (crc & 0xFF);

    pktout.data[0] = (len >> 24) & 0xFF;
    pktout.data[1] = (len >> 16) & 0xFF;
    pktout.data[2] = (len >> 8) & 0xFF;
    pktout.data[3] = len & 0xFF;
    PUT_32BIT(pktout.data, len);

    if (cipher)
	cipher->encrypt(pktout.data+4, biglen);

    s_write(pktout.data, biglen+4);
}

/*
 * Construct a packet with the specified contents and
 * send it to the server.
 */
static void send_packet(int pkttype, ...)
{
    va_list args;
    unsigned char *p, *argp, argchar;
    unsigned long argint;
    int pktlen, argtype, arglen;

    pktlen = 0;
    va_start(args, pkttype);
    while ((argtype = va_arg(args, int)) != PKT_END) {
	switch (argtype) {
	  case PKT_INT:
	    (void) va_arg(args, int);
	    pktlen += 4;
	    break;
	  case PKT_CHAR:
	    (void) va_arg(args, char);
	    pktlen++;
	    break;
	  case PKT_DATA:
	    (void) va_arg(args, unsigned char *);
	    arglen = va_arg(args, int);
	    pktlen += arglen;
	    break;
	  case PKT_STR:
	    argp = va_arg(args, unsigned char *);
	    arglen = strlen(argp);
	    pktlen += 4 + arglen;
	    break;
	  default:
	    assert(0);
	}
    }
    va_end(args);

    s_wrpkt_start(pkttype, pktlen);
    p = pktout.body;

    va_start(args, pkttype);
    while ((argtype = va_arg(args, int)) != PKT_END) {
	switch (argtype) {
	  case PKT_INT:
	    argint = va_arg(args, int);
	    PUT_32BIT(p, argint);
	    p += 4;
	    break;
	  case PKT_CHAR:
	    argchar = va_arg(args, unsigned char);
	    *p = argchar;
	    p++;
	    break;
	  case PKT_DATA:
	    argp = va_arg(args, unsigned char *);
	    arglen = va_arg(args, int);
	    memcpy(p, argp, arglen);
	    p += arglen;
	    break;
	  case PKT_STR:
	    argp = va_arg(args, unsigned char *);
	    arglen = strlen(argp);
	    PUT_32BIT(p, arglen);
	    memcpy(p + 4, argp, arglen);
	    p += 4 + arglen;
	    break;
	}
    }
    va_end(args);

    s_wrpkt();
}


/*
 * Connect to specified host and port.
 * Returns an error message, or NULL on success.
 * Also places the canonical host name into `realhost'.
 */
static char *connect_to_host(char *host, int port, char **realhost)
{
    SOCKADDR_IN addr;
    struct hostent *h;
    unsigned long a;
#ifdef FWHACK
    char *FWhost;
    int FWport;
#endif

    savedhost = malloc(1+strlen(host));
    if (!savedhost)
	fatalbox("Out of memory");
    strcpy(savedhost, host);

    if (port < 0)
	port = 22;		       /* default ssh port */

#ifdef FWHACK
    FWhost = host;
    FWport = port;
    host = FWSTR;
    port = 23;
#endif

    /*
     * Try to find host.
     */
    if ( (a = inet_addr(host)) == (unsigned long) INADDR_NONE) {
	if ( (h = gethostbyname(host)) == NULL)
	    switch (WSAGetLastError()) {
	      case WSAENETDOWN: return "Network is down";
	      case WSAHOST_NOT_FOUND: case WSANO_DATA:
		return "Host does not exist";
	      case WSATRY_AGAIN: return "Host not found";
	      default: return "gethostbyname: unknown error";
	    }
	memcpy (&a, h->h_addr, sizeof(a));
	*realhost = h->h_name;
    } else
	*realhost = host;
#ifdef FWHACK
    *realhost = FWhost;
#endif
    a = ntohl(a);

    /*
     * Open socket.
     */
    s = socket(AF_INET, SOCK_STREAM, 0);
    if (s == INVALID_SOCKET)
	switch (WSAGetLastError()) {
	  case WSAENETDOWN: return "Network is down";
	  case WSAEAFNOSUPPORT: return "TCP/IP support not present";
	  default: return "socket(): unknown error";
	}

    /*
     * Bind to local address.
     */
    addr.sin_family = AF_INET;
    addr.sin_addr.s_addr = htonl(INADDR_ANY);
    addr.sin_port = htons(0);
    if (bind (s, (struct sockaddr *)&addr, sizeof(addr)) == SOCKET_ERROR)
	switch (WSAGetLastError()) {
	  case WSAENETDOWN: return "Network is down";
	  default: return "bind(): unknown error";
	}

    /*
     * Connect to remote address.
     */
    addr.sin_addr.s_addr = htonl(a);
    addr.sin_port = htons((short)port);
    if (connect (s, (struct sockaddr *)&addr, sizeof(addr)) == SOCKET_ERROR)
	switch (WSAGetLastError()) {
	  case WSAENETDOWN: return "Network is down";
	  case WSAECONNREFUSED: return "Connection refused";
	  case WSAENETUNREACH: return "Network is unreachable";
	  case WSAEHOSTUNREACH: return "No route to host";
	  default: return "connect(): unknown error";
	}

#ifdef FWHACK
    send(s, "connect ", 8, 0);
    send(s, FWhost, strlen(FWhost), 0);
    {
	char buf[20];
	sprintf(buf, " %d\n", FWport);
	send (s, buf, strlen(buf), 0);
    }
#endif

    return NULL;
}

static int ssh_versioncmp(char *a, char *b) {
    char *ae, *be;
    unsigned long av, bv;

    av = strtoul(a, &ae, 10);
    bv = strtoul(b, &be, 10);
327
328
329
330
331
332
333



334


335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352

353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
563
564
565
566
567
568
569
570
571
572

573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589



590

591
592
593
594
595
596
597
598
599

600
601
602
603
604
605
606







+
+
+
-
+
+















-
-
-
+
-









-







    sprintf(vlog, "We claim version: %s", vstring);
    vlog[strcspn(vlog, "\r\n")] = '\0';
    logevent(vlog);
    s_write(vstring, strlen(vstring));
    return 1;
}

/*
 * Handle the key exchange and user authentication phases.
 */
static void ssh_protocol(unsigned char *in, int inlen, int ispkt) {
static int do_ssh_login(unsigned char *in, int inlen, int ispkt)
{
    int i, j, len;
    unsigned char session_id[16];
    unsigned char *rsabuf, *keystr1, *keystr2;
    unsigned char cookie[8];
    struct RSAKey servkey, hostkey;
    struct MD5Context md5c;
    static unsigned long supported_ciphers_mask, supported_auths_mask;
    int cipher_type;

    extern struct ssh_cipher ssh_3des;
    extern struct ssh_cipher ssh_des;
    extern struct ssh_cipher ssh_blowfish;

    crBegin;

    random_init();

    while (!ispkt)
    if (!ispkt) crWaitUntil(ispkt);
	crReturnV;

    if (pktin.type != SSH_SMSG_PUBLIC_KEY)
	fatalbox("Public key packet not received");

    logevent("Received public keys");

    memcpy(cookie, pktin.body, 8);

    i = makekey(pktin.body+8, &servkey, &keystr1);

    j = makekey(pktin.body+8+i, &hostkey, &keystr2);

    /*
     * Hash the host key and print the hash in the log box. Just as
     * a last resort in case the registry's host key checking is
     * compromised, we'll allow the user some ability to verify
     * host keys by eye.
378
379
380
381
382
383
384
385

386
387
388
389
390

391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
614
615
616
617
618
619
620

621





622



623
624

625
626
627

628
629
630
631
632
633
634







-
+
-
-
-
-
-
+
-
-
-


-



-







	logevent("Host key MD5 is:");
	strcpy(logmsg, "      ");
	for (i = 0; i < 16; i++)
	    sprintf(logmsg+strlen(logmsg), "%02x", session_id[i]);
	logevent(logmsg);
    }

    supported_ciphers_mask = ((pktin.body[12+i+j] << 24) |
    supported_ciphers_mask = GET_32BIT(pktin.body+12+i+j);
                              (pktin.body[13+i+j] << 16) |
                              (pktin.body[14+i+j] << 8) |
                              (pktin.body[15+i+j]));

    supported_auths_mask = ((pktin.body[16+i+j] << 24) |
    supported_auths_mask = GET_32BIT(pktin.body+16+i+j);
                            (pktin.body[17+i+j] << 16) |
                            (pktin.body[18+i+j] << 8) |
                            (pktin.body[19+i+j]));

    MD5Init(&md5c);

    MD5Update(&md5c, keystr2, hostkey.bytes);
    MD5Update(&md5c, keystr1, servkey.bytes);
    MD5Update(&md5c, pktin.body, 8);

    MD5Final(session_id, &md5c);

    for (i=0; i<32; i++)
	session_key[i] = random_byte();

    len = (hostkey.bytes > servkey.bytes ? hostkey.bytes : servkey.bytes);

450
451
452
453
454
455
456
457
458
459
460




461
462
463




464
465
466
467
468
469
470
471
472
473
474
475

476
477
478
479
480
481
482
483
484
485
486
487

488
489
490

491
492
493
494
495
496
497
677
678
679
680
681
682
683




684
685
686
687



688
689
690
691


692
693
694
695
696
697
698
699
700

701
702
703
704
705
706
707
708
709
710
711
712

713
714
715

716
717
718
719
720
721
722
723







-
-
-
-
+
+
+
+
-
-
-
+
+
+
+
-
-









-
+











-
+


-
+







    }
    switch (cipher_type) {
      case SSH_CIPHER_3DES: logevent("Using 3DES encryption"); break;
      case SSH_CIPHER_DES: logevent("Using single-DES encryption"); break;
      case SSH_CIPHER_BLOWFISH: logevent("Using Blowfish encryption"); break;
    }

    s_wrpkt_start(SSH_CMSG_SESSION_KEY, len+15);
    pktout.body[0] = cipher_type;
    memcpy(pktout.body+1, cookie, 8);
    pktout.body[9] = (len*8) >> 8;
    send_packet(SSH_CMSG_SESSION_KEY,
                PKT_CHAR, cipher_type,
                PKT_DATA, cookie, 8,
                PKT_CHAR, (len*8) >> 8, PKT_CHAR, (len*8) & 0xFF,
    pktout.body[10] = (len*8) & 0xFF;
    memcpy(pktout.body+11, rsabuf, len);
    pktout.body[len+11] = pktout.body[len+12] = 0;   /* protocol flags */
                PKT_DATA, rsabuf, len,
                PKT_INT, 0,
                PKT_END);

    pktout.body[len+13] = pktout.body[len+14] = 0;
    s_wrpkt();
    logevent("Trying to enable encryption...");

    free(rsabuf);

    cipher = cipher_type == SSH_CIPHER_BLOWFISH ? &ssh_blowfish :
             cipher_type == SSH_CIPHER_DES ? &ssh_des :
             &ssh_3des;
    cipher->sesskey(session_key);

    do { crReturnV; } while (!ispkt);
    crWaitUntil(ispkt);

    if (pktin.type != SSH_SMSG_SUCCESS)
	fatalbox("Encryption not successfully enabled");

    logevent("Successfully started encryption");

    fflush(stdout);
    {
	static char username[100];
	static int pos = 0;
	static char c;
	if (!*cfg.username) {
	if (!IS_SCP && !*cfg.username) {
	    c_write("login as: ", 10);
	    while (pos >= 0) {
		do { crReturnV; } while (ispkt);
		crWaitUntil(!ispkt);
		while (inlen--) switch (c = *in++) {
		  case 10: case 13:
		    username[pos] = 0;
		    pos = -1;
		    break;
		  case 8: case 127:
		    if (pos > 0) {
520
521
522
523
524
525
526

527
528
529
530






531
532
533
534
535
536
537
538
539
540
541
542

543
544
545
546
547
548
549
550
551
552
553
554







555
556
557
558
559
560

561
562

563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580

581
582
583
584
585
586
587
746
747
748
749
750
751
752
753




754
755
756
757
758
759
760
761
762
763
764




765
766

767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791

792


793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810

811
812
813
814
815
816
817
818







+
-
-
-
-
+
+
+
+
+
+





-
-
-
-


-
+












+
+
+
+
+
+
+





-
+
-
-
+

















-
+







	    }
	    c_write("\r\n", 2);
	    username[strcspn(username, "\n\r")] = '\0';
	} else {
	    char stuff[200];
	    strncpy(username, cfg.username, 99);
	    username[99] = '\0';
	    if (!IS_SCP) {
	    sprintf(stuff, "Sent username \"%s\".\r\n", username);
	    c_write(stuff, strlen(stuff));
	}
	s_wrpkt_start(SSH_CMSG_USER, 4+strlen(username));
		sprintf(stuff, "Sent username \"%s\".\r\n", username);
		c_write(stuff, strlen(stuff));
	    }
	}

	send_packet(SSH_CMSG_USER, PKT_STR, username, PKT_END);
	{
	    char userlog[20+sizeof(username)];
	    sprintf(userlog, "Sent username \"%s\"", username);
	    logevent(userlog);
	}
	pktout.body[0] = pktout.body[1] = pktout.body[2] = 0;
	pktout.body[3] = strlen(username);
	memcpy(pktout.body+4, username, strlen(username));
	s_wrpkt();
    }

    do { crReturnV; } while (!ispkt);
    crWaitUntil(ispkt);

    while (pktin.type == SSH_SMSG_FAILURE) {
	static char password[100];
	static int pos;
	static char c;
        static int pwpkt_type;

        /*
         * Show password prompt, having first obtained it via a TIS
         * exchange if we're doing TIS authentication.
         */
        pwpkt_type = SSH_CMSG_AUTH_PASSWORD;

	if (IS_SCP) {
	    char prompt[200];
	    sprintf(prompt, "%s@%s's password: ", cfg.username, savedhost);
	    ssh_get_password(prompt, password, sizeof(password));
	} else {

        if (pktin.type == SSH_SMSG_FAILURE &&
            cfg.try_tis_auth &&
            (supported_auths_mask & (1<<SSH_AUTH_TIS))) {
            pwpkt_type = SSH_CMSG_AUTH_TIS_RESPONSE;
	    logevent("Requested TIS authentication");
            s_wrpkt_start(SSH_CMSG_AUTH_TIS, 0);
	    send_packet(SSH_CMSG_AUTH_TIS, PKT_END);
            s_wrpkt();
            do { crReturnV; } while (!ispkt);
            crWaitUntil(ispkt);
            if (pktin.type != SSH_SMSG_AUTH_TIS_CHALLENGE) {
                logevent("TIS authentication declined");
                c_write("TIS authentication refused.\r\n", 29);
            } else {
                int challengelen = ((pktin.body[0] << 24) |
                                    (pktin.body[1] << 16) |
                                    (pktin.body[2] << 8) |
                                    (pktin.body[3]));
                logevent("Received TIS challenge");
                c_write(pktin.body+4, challengelen);
            }
        }
        if (pwpkt_type == SSH_CMSG_AUTH_PASSWORD)
            c_write("password: ", 10);

	pos = 0;
	while (pos >= 0) {
	    do { crReturnV; } while (ispkt);
	    crWaitUntil(!ispkt);
	    while (inlen--) switch (c = *in++) {
	      case 10: case 13:
		password[pos] = 0;
		pos = -1;
		break;
	      case 8: case 127:
		if (pos > 0)
598
599
600
601
602
603
604
605
606



607
608

609
610
611
612
613


614
615



616

617
618
619
620
621
622











623
624
625

626
627
628
629
630

631
632
633
634
635

636
637
638
639


640
641

642
643
644
645
646
647
648
649
650
651
652

653
654
655
656
657
658
659
660
661
662
663
664
665

666
667
668
669
670
671
672

673
674
675
676
677
678
679
680
681
682


683
684
685
686
687
688

689
690
691
692
693

694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715

716
717
718
719
720
721
722
723
724
725
726
727
728

729
730
731
732
733
734
735

736
737
738
739
740
741
742
743
744

745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
829
830
831
832
833
834
835


836
837
838


839

840
841


842
843
844
845
846
847
848

849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867


868





869





870




871
872


873
874
875
876
877
878
879
880
881
882
883

884

885
886
887
888
889
890
891
892
893
894
895

896







897
898
899
900
901
902
903
904
905


906
907

908
909
910
911

912





913

914
915
916
917
918
919
920
921
922
923
924
925


926
927





928


929
930
931
932
933
934





935







936









937





























































938
939
940
941
942
943
944







-
-
+
+
+
-
-
+
-


-
-
+
+


+
+
+
-
+






+
+
+
+
+
+
+
+
+
+
+

-
-
+
-
-
-
-
-
+
-
-
-
-
-
+
-
-
-
-
+
+
-
-
+










-
+
-











-
+
-
-
-
-
-
-
-
+








-
-
+
+
-




-
+
-
-
-
-
-
+
-












-
-


-
-
-
-
-
+
-
-






-
-
-
-
-
+
-
-
-
-
-
-
-
+
-
-
-
-
-
-
-
-
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-







		if (((c >= ' ' && c <= '~') ||
                     ((unsigned char)c >= 160)) && pos < 40)
		    password[pos++] = c;
		break;
	    }
	}
	c_write("\r\n", 2);
	s_wrpkt_start(pwpkt_type, 4+strlen(password));
	pktout.body[0] = pktout.body[1] = pktout.body[2] = 0;

	}

	pktout.body[3] = strlen(password);
	memcpy(pktout.body+4, password, strlen(password));
	send_packet(pwpkt_type, PKT_STR, password, PKT_END);
	s_wrpkt();
	logevent("Sent password");
	memset(password, 0, strlen(password));
	do { crReturnV; } while (!ispkt);
	if (pktin.type == 15) {
	crWaitUntil(ispkt);
	if (pktin.type == SSH_SMSG_FAILURE) {
	    c_write("Access denied\r\n", 15);
	    logevent("Authentication refused");
	} else if (pktin.type == SSH_MSG_DISCONNECT) {
	    logevent("Received disconnect request");
	    crReturn(0);
	} else if (pktin.type != 14) {
	} else if (pktin.type != SSH_SMSG_SUCCESS) {
	    fatalbox("Strange packet received, type %d", pktin.type);
	}
    }

    logevent("Authentication successful");

    crFinish(1);
}

static void ssh_protocol(unsigned char *in, int inlen, int ispkt) {
    crBegin;

    random_init();

    while (!do_ssh_login(in, inlen, ispkt))
	crReturnV;

    if (!cfg.nopty) {
        i = strlen(cfg.termtype);
        s_wrpkt_start(SSH_CMSG_REQUEST_PTY, i+5*4+1);
	send_packet(SSH_CMSG_REQUEST_PTY,
        pktout.body[0] = (i >> 24) & 0xFF;
        pktout.body[1] = (i >> 16) & 0xFF;
        pktout.body[2] = (i >> 8) & 0xFF;
        pktout.body[3] = i & 0xFF;
        memcpy(pktout.body+4, cfg.termtype, i);
	            PKT_STR, cfg.termtype,
        i += 4;
        pktout.body[i++] = (rows >> 24) & 0xFF;
        pktout.body[i++] = (rows >> 16) & 0xFF;
        pktout.body[i++] = (rows >> 8) & 0xFF;
        pktout.body[i++] = rows & 0xFF;
	            PKT_INT, rows, PKT_INT, cols,
        pktout.body[i++] = (cols >> 24) & 0xFF;
        pktout.body[i++] = (cols >> 16) & 0xFF;
        pktout.body[i++] = (cols >> 8) & 0xFF;
        pktout.body[i++] = cols & 0xFF;
	            PKT_INT, 0, PKT_INT, 0,
	            PKT_CHAR, 0,
        memset(pktout.body+i, 0, 9);       /* 0 pixwidth, 0 pixheight, 0.b endofopt */
        s_wrpkt();
	            PKT_END);
        ssh_state = SSH_STATE_INTERMED;
        do { crReturnV; } while (!ispkt);
        if (pktin.type != SSH_SMSG_SUCCESS && pktin.type != SSH_SMSG_FAILURE) {
            fatalbox("Protocol confusion");
        } else if (pktin.type == SSH_SMSG_FAILURE) {
            c_write("Server refused to allocate pty\r\n", 32);
        }
	logevent("Allocated pty");
    }

    s_wrpkt_start(SSH_CMSG_EXEC_SHELL, 0);
    send_packet(SSH_CMSG_EXEC_SHELL, PKT_END);
    s_wrpkt();
    logevent("Started session");

    ssh_state = SSH_STATE_SESSION;
    if (size_needed)
	ssh_size();

    while (1) {
	crReturnV;
	if (ispkt) {
	    if (pktin.type == SSH_SMSG_STDOUT_DATA ||
                pktin.type == SSH_SMSG_STDERR_DATA) {
		long len = 0;
		long len = GET_32BIT(pktin.body);
		for (i = 0; i < 4; i++)
		    len = (len << 8) + pktin.body[i];
		if (len+4 != pktin.length) {
		    logevent("Received data packet with bogus string length"
			     ", ignoring");
		} else
		    c_write(pktin.body+4, len);
		c_write(pktin.body+4, len);
	    } else if (pktin.type == SSH_MSG_DISCONNECT) {
                ssh_state = SSH_STATE_CLOSED;
		logevent("Received disconnect request");
	    } else if (pktin.type == SSH_SMSG_SUCCESS) {
		/* may be from EXEC_SHELL on some servers */
	    } else if (pktin.type == SSH_SMSG_FAILURE) {
		/* may be from EXEC_SHELL on some servers
		 * if no pty is available or in other odd cases. Ignore */
	    } else if (pktin.type == SSH_SMSG_EXITSTATUS) {
		s_wrpkt_start(SSH_CMSG_EXIT_CONFIRMATION, 0);
	    } else if (pktin.type == SSH_SMSG_EXIT_STATUS) {
		send_packet(SSH_CMSG_EXIT_CONFIRMATION, PKT_END);
		s_wrpkt();
	    } else {
		fatalbox("Strange packet received: type %d", pktin.type);
	    }
	} else {
	    s_wrpkt_start(SSH_CMSG_STDIN_DATA, 4+inlen);
	    send_packet(SSH_CMSG_STDIN_DATA,
	    pktout.body[0] = (inlen >> 24) & 0xFF;
	    pktout.body[1] = (inlen >> 16) & 0xFF;
	    pktout.body[2] = (inlen >> 8) & 0xFF;
	    pktout.body[3] = inlen & 0xFF;
	    memcpy(pktout.body+4, in, inlen);
	                PKT_INT, inlen, PKT_DATA, in, inlen, PKT_END);
	    s_wrpkt();
	}
    }

    crFinishV;
}

/*
 * Called to set up the connection. Will arrange for WM_NETEVENT
 * messages to be passed to the specified window, whose window
 * procedure should then call telnet_msg().
 *
 * Returns an error message, or NULL on success.
 *
 * Also places the canonical host name into `realhost'.
 */
static char *ssh_init (HWND hwnd, char *host, int port, char **realhost) {
    SOCKADDR_IN addr;
    struct hostent *h;
    unsigned long a;
#ifdef FWHACK
    char *FWhost;
    char *p;
    int FWport;
#endif
	
#ifdef MSCRYPTOAPI
    if(crypto_startup() == 0)
	return "Microsoft high encryption pack not installed!";
#endif

    savedhost = malloc(1+strlen(host));
    if (!savedhost)
	fatalbox("Out of memory");
    strcpy(savedhost, host);

    p = connect_to_host(host, port, realhost);
#ifdef FWHACK
    FWhost = host;
    FWport = port;
    host = FWSTR;
    port = 23;
#endif

    if (p != NULL)
    /*
     * Try to find host.
     */
    if ( (a = inet_addr(host)) == (unsigned long) INADDR_NONE) {
	if ( (h = gethostbyname(host)) == NULL)
	    switch (WSAGetLastError()) {
	      case WSAENETDOWN: return "Network is down";
	      case WSAHOST_NOT_FOUND: case WSANO_DATA:
		return "Host does not exist";
	return p;
	      case WSATRY_AGAIN: return "Host not found";
	      default: return "gethostbyname: unknown error";
	    }
	memcpy (&a, h->h_addr, sizeof(a));
	*realhost = h->h_name;
    } else
	*realhost = host;
#ifdef FWHACK
    *realhost = FWhost;
#endif
    a = ntohl(a);

    if (port < 0)
	port = 22;		       /* default ssh port */

    /*
     * Open socket.
     */
    s = socket(AF_INET, SOCK_STREAM, 0);
    if (s == INVALID_SOCKET)
	switch (WSAGetLastError()) {
	  case WSAENETDOWN: return "Network is down";
	  case WSAEAFNOSUPPORT: return "TCP/IP support not present";
	  default: return "socket(): unknown error";
	}

    /*
     * Bind to local address.
     */
    addr.sin_family = AF_INET;
    addr.sin_addr.s_addr = htonl(INADDR_ANY);
    addr.sin_port = htons(0);
    if (bind (s, (struct sockaddr *)&addr, sizeof(addr)) == SOCKET_ERROR)
	switch (WSAGetLastError()) {
	  case WSAENETDOWN: return "Network is down";
	  default: return "bind(): unknown error";
	}

    /*
     * Connect to remote address.
     */
    addr.sin_addr.s_addr = htonl(a);
    addr.sin_port = htons((short)port);
    if (connect (s, (struct sockaddr *)&addr, sizeof(addr)) == SOCKET_ERROR)
	switch (WSAGetLastError()) {
	  case WSAENETDOWN: return "Network is down";
	  case WSAECONNREFUSED: return "Connection refused";
	  case WSAENETUNREACH: return "Network is unreachable";
	  case WSAEHOSTUNREACH: return "No route to host";
	  default: return "connect(): unknown error";
	}

#ifdef FWHACK
    send(s, "connect ", 8, 0);
    send(s, FWhost, strlen(FWhost), 0);
    {
	char buf[20];
	sprintf(buf, " %d\n", FWport);
	send (s, buf, strlen(buf), 0);
    }
#endif

    if (!do_ssh_init())
	return "Protocol initialisation error";

    if (WSAAsyncSelect (s, hwnd, WM_NETEVENT, FD_READ | FD_CLOSE) == SOCKET_ERROR)
	switch (WSAGetLastError()) {
	  case WSAENETDOWN: return "Network is down";
874
875
876
877
878
879
880
881

882
883
884
885

886
887
888
889
890

891
892
893
894
895
896
897
898
899
900
901







































































































































































902
903
904
905
906
907
908
909

1006
1007
1008
1009
1010
1011
1012

1013




1014





1015

1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201







-
+
-
-
-
-
+
-
-
-
-
-
+
-










+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+








+
      case SSH_STATE_CLOSED:
	break;			       /* do nothing */
      case SSH_STATE_INTERMED:
	size_needed = TRUE;	       /* buffer for later */
	break;
      case SSH_STATE_SESSION:
        if (!cfg.nopty) {
            s_wrpkt_start(11, 16);
	    send_packet(SSH_CMSG_WINDOW_SIZE,
            pktout.body[0] = (rows >> 24) & 0xFF;
            pktout.body[1] = (rows >> 16) & 0xFF;
            pktout.body[2] = (rows >> 8) & 0xFF;
            pktout.body[3] = rows & 0xFF;
	                PKT_INT, rows, PKT_INT, cols,
            pktout.body[4] = (cols >> 24) & 0xFF;
            pktout.body[5] = (cols >> 16) & 0xFF;
            pktout.body[6] = (cols >> 8) & 0xFF;
            pktout.body[7] = cols & 0xFF;
            memset(pktout.body+8, 0, 8);
	                PKT_INT, 0, PKT_INT, 0, PKT_END);
            s_wrpkt();
        }
    }
}

/*
 * (Send Telnet special codes)
 */
static void ssh_special (Telnet_Special code) {
    /* do nothing */
}


/*
 * Read and decrypt one incoming SSH packet.
 * (only used by pSCP)
 */
static void get_packet(void)
{
    unsigned char buf[4096], *p;
    long to_read;
    int len;

    assert(IS_SCP);

    p = NULL;
    len = 0;

    while ((to_read = s_rdpkt(&p, &len)) > 0) {
	if (to_read > sizeof(buf)) to_read = sizeof(buf);
	len = s_read(buf, to_read);
	if (len != to_read) {
	    closesocket(s);
	    s = INVALID_SOCKET;
	    return;
	}
	p = buf;
    }

    assert(len == 0);
}

/*
 * Receive a block of data over the SSH link. Block until
 * all data is available. Return nr of bytes read (0 if lost connection).
 * (only used by pSCP)
 */
int ssh_scp_recv(unsigned char *buf, int len)
{
    static int pending_input_len = 0;
    static unsigned char *pending_input_ptr;
    int to_read = len;

    assert(IS_SCP);

    if (pending_input_len >= to_read) {
	memcpy(buf, pending_input_ptr, to_read);
	pending_input_ptr += to_read;
	pending_input_len -= to_read;
	return len;
    }
    
    if (pending_input_len > 0) {
	memcpy(buf, pending_input_ptr, pending_input_len);
	buf += pending_input_len;
	to_read -= pending_input_len;
	pending_input_len = 0;
    }

    if (s == INVALID_SOCKET)
	return 0;
    while (to_read > 0) {
	get_packet();
	if (s == INVALID_SOCKET)
	    return 0;
	if (pktin.type == SSH_SMSG_STDOUT_DATA) {
	    int plen = GET_32BIT(pktin.body);
	    if (plen <= to_read) {
		memcpy(buf, pktin.body + 4, plen);
		buf += plen;
		to_read -= plen;
	    } else {
		memcpy(buf, pktin.body + 4, to_read);
		pending_input_len = plen - to_read;
		pending_input_ptr = pktin.body + 4 + to_read;
		to_read = 0;
	    }
	} else if (pktin.type == SSH_SMSG_STDERR_DATA) {
	    int plen = GET_32BIT(pktin.body);
	    fwrite(pktin.body + 4, plen, 1, stderr);
	} else if (pktin.type == SSH_MSG_DISCONNECT) {
		logevent("Received disconnect request");
	} else if (pktin.type == SSH_SMSG_SUCCESS ||
	           pktin.type == SSH_SMSG_FAILURE) {
		/* ignore */
	} else if (pktin.type == SSH_SMSG_EXIT_STATUS) {
	    char logbuf[100];
	    sprintf(logbuf, "Remote exit status: %d", GET_32BIT(pktin.body));
	    logevent(logbuf);
	    send_packet(SSH_CMSG_EXIT_CONFIRMATION, PKT_END);
	    logevent("Closing connection");
	    closesocket(s);
	    s = INVALID_SOCKET;
	} else {
	    fatalbox("Strange packet received: type %d", pktin.type);
	}
    }

    return len;
}

/*
 * Send a block of data over the SSH link.
 * Block until all data is sent.
 * (only used by pSCP)
 */
void ssh_scp_send(unsigned char *buf, int len)
{
    assert(IS_SCP);
    if (s == INVALID_SOCKET)
	return;
    send_packet(SSH_CMSG_STDIN_DATA,
                PKT_INT, len, PKT_DATA, buf, len, PKT_END);
}

/*
 * Send an EOF notification to the server.
 * (only used by pSCP)
 */
void ssh_scp_send_eof(void)
{
    assert(IS_SCP);
    if (s == INVALID_SOCKET)
	return;
    send_packet(SSH_CMSG_EOF, PKT_END);
}

/*
 * Set up the connection, login on the remote host and
 * start execution of a command.
 * Returns an error message, or NULL on success.
 * (only used by pSCP)
 */
char *ssh_scp_init(char *host, int port, char *cmd, char **realhost)
{
    char buf[160], *p;

    assert(IS_SCP);

#ifdef MSCRYPTOAPI
    if (crypto_startup() == 0)
	return "Microsoft high encryption pack not installed!";
#endif

    p = connect_to_host(host, port, realhost);
    if (p != NULL)
	return p;

    random_init();

    if (!do_ssh_init())
	return "Protocol initialisation error";

    /* Exchange keys and login */
    do {
	get_packet();
	if (s == INVALID_SOCKET)
	    return "Connection closed by remote host";
    } while (!do_ssh_login(NULL, 0, 1)); 

    /* Execute command */
    sprintf(buf, "Sending command: %.100s", cmd);
    logevent(buf);
    send_packet(SSH_CMSG_EXEC_CMD, PKT_STR, cmd, PKT_END);

    return NULL;
}


Backend ssh_backend = {
    ssh_init,
    ssh_msg,
    ssh_send,
    ssh_size,
    ssh_special
};