Diff

Differences From Artifact [fa661647f2]:

To Artifact [9ce909a782]:


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
298
299
300
301
302
303
304
305
306
307
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
507
508
509
510
511
512
513
514
515
516
517
518
519
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
588
589
590
591
592
593
594
595
596
597
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
/*
 *  scp.c  -  Scp (Secure Copy) client for PuTTY.
 *  Joris van Rantwijk, Aug 1999.
 *
 *  This is mainly based on ssh-1.2.26/scp.c by Timo Rinne & Tatu Ylonen.
 *  They, in turn, used stuff from BSD rcp.
 */


#include <windows.h>
#include <winsock.h>
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <time.h>

#define PUTTY_DO_GLOBALS
#include "putty.h"
#include "scp.h"


#define TIME_POSIX_TO_WIN(t, ft) (*(LONGLONG*)&(ft) = \
  ((LONGLONG) (t) + (LONGLONG) 11644473600) * (LONGLONG) 10000000)
#define TIME_WIN_TO_POSIX(ft, t) ((t) = (unsigned long) \
  ((*(LONGLONG*)&(ft)) / (LONGLONG) 10000000 - (LONGLONG) 11644473600))


int verbose = 0;
static int recursive = 0;
static int preserve = 0;
static int targetshouldbedirectory = 0;
static int statistics = 1;
static int errs = 0;
static int connection_open = 0;

static void source(char *src);
static void rsource(char *src);
static void sink(char *targ);


/*
 *  Print an error message and perform a fatal exit.
 */
void fatalbox(char *fmt, ...)
{
	va_list ap;
	va_start(ap, fmt);
	fprintf(stderr, "Fatal: ");
	vfprintf(stderr, fmt, ap);
	fprintf(stderr, "\n");
	va_end(ap);
	exit(1);
}


/*
 *  Print an error message and exit after closing the SSH link.
 */
static void bump(char *fmt, ...)
{
	va_list ap;
	va_start(ap, fmt);
	fprintf(stderr, "Fatal: ");
	vfprintf(stderr, fmt, ap);
	fprintf(stderr, "\n");
	va_end(ap);
	if (connection_open) {
		char ch;
		ssh_send_eof();
		ssh_recv(&ch, 1);
	}
	exit(1);
}


void ssh_get_password(char *prompt, char *str, int maxlen)
{
	HANDLE hin, hout;
	DWORD savemode, i;


	hin = GetStdHandle(STD_INPUT_HANDLE);
	hout = GetStdHandle(STD_OUTPUT_HANDLE);
	if (hin == INVALID_HANDLE_VALUE || hout == INVALID_HANDLE_VALUE)
		bump("Cannot get standard input/output handles");

	GetConsoleMode(hin, &savemode);
	SetConsoleMode(hin, (savemode & (~ENABLE_ECHO_INPUT)) |
	                    ENABLE_PROCESSED_INPUT | ENABLE_LINE_INPUT);

	WriteFile(hout, prompt, strlen(prompt), &i, NULL);
	ReadFile(hin, str, maxlen-1, &i, NULL);

	SetConsoleMode(hin, savemode);

	if (i > maxlen) i = maxlen-1; else i = i - 2;
	str[i] = '\0';

	WriteFile(hout, "\r\n", 2, &i, NULL);
}


/*
 *  Open an SSH connection to user@host and execute cmd.
 */
static void do_cmd(char *host, char *user, char *cmd)
{
	char *err, *realhost;

	if (host == NULL || host[0] == '\0')
		bump("Empty host name");

	/* Try to load settings for this host */
	do_defaults(host);
	if (cfg.host[0] == '\0') {
		/* No settings for this host; use defaults */
		strncpy(cfg.host, host, sizeof(cfg.host)-1);
		cfg.host[sizeof(cfg.host)-1] = '\0';
		cfg.port = 22;
	}

	/* Set username */
	if (user != NULL && user[0] != '\0') {
		strncpy(cfg.username, user, sizeof(cfg.username)-1);
		cfg.username[sizeof(cfg.username)-1] = '\0';
		cfg.port = 22;
	} else if (cfg.username[0] == '\0') {
		bump("Empty user name");
	}

	if (cfg.protocol != PROT_SSH)
		cfg.port = 22;

	err = ssh_init(cfg.host, cfg.port, cmd, &realhost);
	if (err != NULL)
		bump("ssh_init: %s", err);
	if (verbose && realhost != NULL)
		fprintf(stderr, "Connected to %s\n", realhost);

	connection_open = 1;
}


/*
 *  Update statistic information about current file.
 */
static void print_stats(char *name, unsigned long size, unsigned long done,
                        unsigned long start, unsigned long now)
{
	float ratebs;
	unsigned long eta;
	char etastr[10];
	int pct;
	
	if (now > start)
		ratebs = (float) done / (now - start);
	else
		ratebs = (float) done;
	
	if (ratebs < 1.0)
		eta = size - done;
	else
		eta = (size - done) / ratebs;
	sprintf(etastr, "%02d:%02d:%02d", 
	        eta / 3600, (eta % 3600) / 60, eta % 60);
	
	pct = 100.0 * (float) done / size;

	printf("\r%-25.25s | %10ld kB | %5.1f kB/s | ETA: %8s | %3d%%",
	       name, done / 1024, ratebs / 1024.0,
	       etastr, pct);
	
	if (done == size)
		printf("\n");	
}


/*
 *  Find a colon in str and return a pointer to the colon.
 *  This is used to seperate hostname from filename.
 */
static char * colon(char *str)
{
	/* We ignore a leading colon, since the hostname cannot be
	   empty. We also ignore a colon as second character because
	   of filenames like f:myfile.txt. */
	if (str[0] == '\0' ||
	    str[0] == ':' ||
	    str[1] == ':')
		return (NULL);
	while (*str != '\0' &&
	       *str != ':' &&
	       *str != '/' &&
	       *str != '\\')
		str++;
	if (*str == ':')
		return (str);
	else
		return (NULL);
}


/*
 *  Wait for a response from the other side.
 *  Return 0 if ok, -1 if error.
 */
static int response(void)
{
	char ch, resp, rbuf[2048];
	int p;

	if (ssh_recv(&resp, 1) <= 0)
		bump("Lost connection");

	p = 0;
	switch (resp) {
	  case 0:		/* ok */
		return (0);
	  default:
		rbuf[p++] = resp;
		/* fallthrough */
	  case 1:		/* error */
	  case 2:		/* fatal error */
		do {
			if (ssh_recv(&ch, 1) <= 0)
				bump("Protocol error: Lost connection");
			rbuf[p++] = ch;
		} while (p < sizeof(rbuf) && ch != '\n');
		rbuf[p-1] = '\0';
		if (resp == 1)
			fprintf(stderr, "%s\n", rbuf);
		else
			bump("%s", rbuf);
		errs++;
		return (-1);
	}
}


/*
 *  Send an error message to the other side and to the screen.
 *  Increment error counter.
 */
static void run_err(const char *fmt, ...)
{
	char str[2048];
	va_list ap;
	va_start(ap, fmt);
	errs++;
	strcpy(str, "\01scp: ");
	vsprintf(str+strlen(str), fmt, ap);
	strcat(str, "\n");
	ssh_send(str, strlen(str));
	vfprintf(stderr, fmt, ap);
	fprintf(stderr, "\n");
	va_end(ap);
}


/*
 *  Execute the source part of the SCP protocol.
 */
static void source(char *src)
{
	char buf[2048];
	unsigned long size;
	char *last;
	HANDLE f;
	DWORD attr;
	unsigned long i;
	unsigned long stat_bytes;
	unsigned long stat_starttime, stat_lasttime;

	attr = GetFileAttributes(src);
	if (attr == -1) {
		run_err("%s: No such file or directory", src);
		return;
	}

	if ((attr & FILE_ATTRIBUTE_DIRECTORY) != 0) {
		if (recursive)
			rsource(src);
		else
			run_err("%s: not a regular file", src);
		return;
	}

	if ((last = strrchr(src, '/')) == NULL)
		last = src;
	else
		last++;
	if (strrchr(last, '\\') != NULL)
		last = strrchr(last, '\\') + 1;
	if (last == src && strchr(src, ':') != NULL)
		last = strchr(src, ':') + 1;

	f = CreateFile(src, GENERIC_READ, FILE_SHARE_READ, NULL, 
	               OPEN_EXISTING, 0, 0);
	if (f == INVALID_HANDLE_VALUE) {
		run_err("%s: Cannot open file");
		return;
	}
	
	if (preserve) {
		FILETIME actime, wrtime;
		unsigned long mtime, atime;
		GetFileTime(f, NULL, &actime, &wrtime);
		TIME_WIN_TO_POSIX(actime, atime);
		TIME_WIN_TO_POSIX(wrtime, mtime);
		sprintf(buf, "T%lu 0 %lu 0\n", mtime, atime);
		ssh_send(buf, strlen(buf));
		if (response())
			return;
	}

	size = GetFileSize(f, NULL);
	sprintf(buf, "C0644 %lu %s\n", size, last);
	if (verbose)
		fprintf(stderr, "Sending file modes: %s", buf);
	ssh_send(buf, strlen(buf));
	if (response())
		return;

	if (statistics) {
		stat_bytes = 0;
		stat_starttime = time(NULL);
		stat_lasttime = 0;
	}

	for (i = 0; i < size; i += 4096) {
		char transbuf[4096];
		DWORD j, k = 4096;
		if (i + k > size) k = size - i;
		if (! ReadFile(f, transbuf, k, &j, NULL) || j != k) {
			if (statistics) printf("\n");
			bump("%s: Read error", src);
		}
		ssh_send(transbuf, k);
		if (statistics) {
			stat_bytes += k;
			if (time(NULL) != stat_lasttime ||
			    i + k == size) {
				stat_lasttime = time(NULL);
				print_stats(last, size, stat_bytes,
				            stat_starttime, stat_lasttime);
			}
		}
	}
	CloseHandle(f);

	ssh_send("", 1);
	(void) response();
}


/*
 *  Recursively send the contents of a directory.
 */
static void rsource(char *src)
{
	char buf[2048];
	char *last;
	HANDLE dir;
	WIN32_FIND_DATA fdat;
	int ok;

	if ((last = strrchr(src, '/')) == NULL)
		last = src;
	else
		last++;
	if (strrchr(last, '\\') != NULL)
		last = strrchr(last, '\\') + 1;
	if (last == src && strchr(src, ':') != NULL)
		last = strchr(src, ':') + 1;

	/* maybe send filetime */
	
	sprintf(buf, "D0755 0 %s\n", last);
	if (verbose)
		fprintf(stderr, "Entering directory: %s", buf);
	ssh_send(buf, strlen(buf));
	if (response())
		return;

	sprintf(buf, "%s/*", src);
	dir = FindFirstFile(buf, &fdat);
	ok = (dir != INVALID_HANDLE_VALUE);
	while (ok) {
		if (strcmp(fdat.cFileName, ".") == 0 ||
		    strcmp(fdat.cFileName, "..") == 0) {
		} else if (strlen(src) + 1 + strlen(fdat.cFileName) >=
		           sizeof(buf)) {
			run_err("%s/%s: Name too long", src, fdat.cFileName);
		} else {
			sprintf(buf, "%s/%s", src, fdat.cFileName);
			source(buf);
		}
		ok = FindNextFile(dir, &fdat);
	}
	FindClose(dir);

	sprintf(buf, "E\n");
	ssh_send(buf, strlen(buf));
	(void) response();
}


/*
 *  Execute the sink part of the SCP protocol.
 */
static void sink(char *targ)
{
	char buf[2048];
	char namebuf[2048];
	char ch;
	int targisdir = 0;
	int settime = 0;
	int exists;
	DWORD attr;
	HANDLE f;
	unsigned long mtime, atime;
	unsigned int mode;
	unsigned long size, i;
	int wrerror = 0;
	unsigned long stat_bytes;
	unsigned long stat_starttime, stat_lasttime;
	char *stat_name;

	attr = GetFileAttributes(targ);
	if (attr != -1 && (attr & FILE_ATTRIBUTE_DIRECTORY) != 0)
		targisdir = 1;

	if (targetshouldbedirectory && !targisdir)
		bump("%s: Not a directory", targ);

	ssh_send("", 1);
	while (1) {
		settime = 0;
gottime:
		if (ssh_recv(&ch, 1) <= 0)
			return;
		if (ch == '\n')
			bump("Protocol error: Unexpected newline");
		i = 0;
		buf[i++] = ch;
		do {
			if (ssh_recv(&ch, 1) <= 0)
				bump("Lost connection");
			buf[i++] = ch;
		} while (i < sizeof(buf) && ch != '\n');
		buf[i-1] = '\0';
		switch (buf[0]) {
		  case '\01':	/* error */
		  	fprintf(stderr, "%s\n", buf+1);
		  	errs++;
		  	continue;
		  case '\02':	/* fatal error */
		  	bump("%s", buf+1);
		  case 'E':
		  	ssh_send("", 1);
		  	return;
		  case 'T':
			if (sscanf(buf, "T%d %*d %d %*d", 
			           &mtime, &atime) == 2) {
				settime = 1;
				ssh_send("", 1);
				goto gottime;
			}
			bump("Protocol error: Illegal time format");
		  case 'C':
		  case 'D':
		  	break;
		  default:
		  	bump("Protocol error: Expected control record");
		}
		
		if (sscanf(buf+1, "%u %u %[^\n]", &mode, &size, namebuf) != 3)
			bump("Protocol error: Illegal file descriptor format");
		if (targisdir) {
			char t[2048];
			strcpy(t, targ);
			if (targ[0] != '\0')
				strcat(t, "/");
			strcat(t, namebuf);
			strcpy(namebuf, t);
		} else {
			strcpy(namebuf, targ);
		}
		attr = GetFileAttributes(namebuf);
		exists = (attr != -1);
		
		if (buf[0] == 'D') {
			if (exists && (attr & FILE_ATTRIBUTE_DIRECTORY) == 0) {
				run_err("%s: Not a directory", namebuf);
				continue;
			}
			if (!exists) {
				if (! CreateDirectory(namebuf, NULL)) {
					run_err("%s: Cannot create directory",
					        namebuf);
					continue;
				}
			}
			sink(namebuf);
			/* can we set the timestamp for directories ? */
			continue;
		}
		
		f = CreateFile(namebuf, GENERIC_WRITE, 0, NULL,
		               CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL, 0);
		if (f == INVALID_HANDLE_VALUE) {
			run_err("%s: Cannot create file", namebuf);
			continue;
		}

		ssh_send("", 1);

		if (statistics) {
			stat_bytes = 0;
			stat_starttime = time(NULL);
			stat_lasttime = 0;
			if ((stat_name = strrchr(namebuf, '/')) == NULL)
				stat_name = namebuf;
			else
				stat_name++;
			if (strrchr(stat_name, '\\') != NULL)
				stat_name = strrchr(stat_name, '\\') + 1;
		}

		for (i = 0; i < size; i += 4096) {
			char transbuf[4096];
			int j, k = 4096;
			if (i + k > size) k = size - i;
			if (ssh_recv(transbuf, k) == 0)
				bump("Lost connection");
			if (wrerror) continue;
			if (! WriteFile(f, transbuf, k, &j, NULL) || j != k) {
				wrerror = 1;
				if (statistics)
					printf("\r%-25.25s | %50s\n",
					       stat_name,
					       "Write error.. waiting for end of file");
				continue;
			}
			if (statistics) {
				stat_bytes += k;
				if (time(NULL) > stat_lasttime ||
				    i + k == size) {
					stat_lasttime = time(NULL);
					print_stats(stat_name, size, stat_bytes,
					            stat_starttime, stat_lasttime);
				}
			}
		}
		(void) response();
		
		if (settime) {
			FILETIME actime, wrtime;
			TIME_POSIX_TO_WIN(atime, actime);
			TIME_POSIX_TO_WIN(mtime, wrtime);
			SetFileTime(f, NULL, &actime, &wrtime);
		}
		
		CloseHandle(f);
		if (wrerror) {
			run_err("%s: Write error", namebuf);
			continue;
		}
		ssh_send("", 1);
	}
}


/*
 *  We will copy local files to a remote server.
 */
static void toremote(int argc, char *argv[])
{
	char *src, *targ, *host, *user;
	char *cmd;
	int i;

	targ = argv[argc-1];

	/* Seperate host from filename */
	host = targ;
	targ = colon(targ);
	if (targ == NULL)
		bump("targ == NULL in toremote()");
	*targ++ = '\0';
	if (*targ == '\0')
		targ = ".";
		/* Substitute "." for emtpy target */

	/* Seperate host and username */
	user = host;
	host = strrchr(host, '@');
	if (host == NULL) {
		host = user;
		user = NULL;
	} else {
		*host++ = '\0';
		if (*user == '\0')
			user = NULL;
	}

	if (argc == 2) {
		/* Find out if the source filespec covers multiple files
		   if so, we should set the targetshouldbedirectory flag */
		HANDLE fh;
		WIN32_FIND_DATA fdat;
		if (colon(argv[0]) != NULL)
			bump("%s: Remote to remote not supported", argv[0]);
		fh = FindFirstFile(argv[0], &fdat);
		if (fh == INVALID_HANDLE_VALUE)
			bump("%s: No such file or directory\n", argv[0]);
		if (FindNextFile(fh, &fdat))
			targetshouldbedirectory = 1;
		FindClose(fh);
	}

	cmd = smalloc(strlen(targ) + 100);
	sprintf(cmd, "scp%s%s%s%s -t %s",
	        verbose ? " -v" : "",
	        recursive ? " -r" : "",
	        preserve ? " -p" : "",
	        targetshouldbedirectory ? " -d" : "",
	        targ);
	do_cmd(host, user, cmd);
	sfree(cmd);

	(void) response();

	for (i = 0; i < argc - 1; i++) {
		HANDLE dir;
		WIN32_FIND_DATA fdat;
		src = argv[i];
		if (colon(src) != NULL) {
			fprintf(stderr, 
			        "%s: Remote to remote not supported\n", src);
			errs++;
			continue;
		}
		dir = FindFirstFile(src, &fdat);
		if (dir == INVALID_HANDLE_VALUE) {
			run_err("%s: No such file or directory", src);
			continue;
		}
		do {
			char *last;
			char namebuf[2048];
			if (strlen(src) + strlen(fdat.cFileName) >= 
			    sizeof(namebuf)) {
				fprintf(stderr, "%s: Name too long", src);
				continue;
			}
			strcpy(namebuf, src);
			if ((last = strrchr(namebuf, '/')) == NULL)
				last = namebuf;
			else
				last++;
			if (strrchr(last, '\\') != NULL)
				last = strrchr(last, '\\') + 1;
			if (last == namebuf && strrchr(namebuf, ':') != NULL)
				last = strchr(namebuf, ':') + 1;
			strcpy(last, fdat.cFileName);
			source(namebuf);
		} while (FindNextFile(dir, &fdat));
		FindClose(dir);
	}
}


/*
 *  We will copy files from a remote server to the local machine.
 */
static void tolocal(int argc, char *argv[])
{
	char *src, *targ, *host, *user;
	char *cmd;

	if (argc != 2)
		bump("More than one remote source not supported");

	src = argv[0];
	targ = argv[1];

	/* Seperate host from filename */
	host = src;
	src = colon(src);
	if (src == NULL)
		bump("Local to local copy not supported");
	*src++ = '\0';
	if (*src == '\0')
		src = ".";
		/* Substitute "." for empty filename */

	/* Seperate username and hostname */
	user = host;
	host = strrchr(host, '@');
	if (host == NULL) {
		host = user;
		user = NULL;
	} else {
		*host++ = '\0';
		if (*user == '\0')
			user = NULL;
	}

	cmd = smalloc(strlen(src) + 100);
	sprintf(cmd, "scp%s%s%s%s -f %s",
	        verbose ? " -v" : "",
	        recursive ? " -r" : "",
	        preserve ? " -p" : "",
	        targetshouldbedirectory ? " -d" : "",
	        src);
	do_cmd(host, user, cmd);
	sfree(cmd);
	
	sink(targ);
}


/*
 *  Initialize the Win$ock driver.
 */
static void init_winsock()
{
	WORD winsock_ver;
	WSADATA wsadata;

	winsock_ver = MAKEWORD(1, 1);
	if (WSAStartup(winsock_ver, &wsadata))
		bump("Unable to initialise WinSock");
	if (LOBYTE(wsadata.wVersion) != 1 || 
	    HIBYTE(wsadata.wVersion) != 1)
		bump("WinSock version is incompatible with 1.1");
}


/*
 *  Short description of parameters.
 */
static void usage()
{
	printf("PuTTY Secure Copy client\n");
	printf("%s\n", ver);
	printf("usage: scp [-p] [-q] [-r] [-v] [user@]host:source target\n");
	printf("       scp [-p] [-q] [-r] [-v] source [source..]"
	       " [user@]host:target\n");
	exit(1);
}


/*
 *  Main program (no, really?)
 */
int main(int argc, char *argv[])
{
	int i;

	init_winsock();

	for (i = 1; i < argc; i++) {
		if (argv[i][0] != '-')
			break;
		if (strcmp(argv[i], "-v") == 0)
			verbose = 1;
		else if (strcmp(argv[i], "-r") == 0)
			recursive = 1;
		else if (strcmp(argv[i], "-p") == 0)
			preserve = 1;
		else if (strcmp(argv[i], "-q") == 0)
			statistics = 0;
		else if (strcmp(argv[i], "-h") == 0 ||
		         strcmp(argv[i], "-?") == 0)
			usage();
		else if (strcmp(argv[i], "--") == 0)
			{ i++; break; }
		else
			usage();
	}	
	argc -= i;
	argv += i;

	if (argc < 2)
		usage();
	if (argc > 2)
		targetshouldbedirectory = 1;
	
	if (colon(argv[argc-1]) != NULL)
		toremote(argc, argv);
	else
		tolocal(argc, argv);

	if (connection_open) {
		char ch;
		ssh_send_eof();
		ssh_recv(&ch, 1);
	}
	WSACleanup();
	random_save_seed();

	return (errs == 0 ? 0 : 1);
}

/* end */








<











<

|

|
<













<





|
|
|
|
|
|
|

<






|
|
|
|
|
|
|
|
|
|
|
|

<



|
|
>

|
|
|
|

|
|
|

|
|

|

|
|

|

<






|

|
|

|
|
|
|
|
|
|
|

|
|
|
|
|
|
|
|

|
|

|
|
|
|
|

|

<





|

|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|

|
|
|
|
|
|

<







|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|

<







|
|

|
|

|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|

<







|
|
|
|
|
|
|
|
|
|
|

<






|
|
|
|
|
|
|
|

|
|
|
|
|

|
|
|
|
|
|
|

|
|
|
|
|
|
|
|

|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|

|
|
|
|
|
|
|

|
|
|
|
|

|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|

|
|

<






|
|
|
|
|

|
|
|
|
|
|
|
|

|
|
|
|
|
|
|
|

|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|

|
|
|

<






|
|
|
|
|
|
|
|
|
|
|
|
|
|
|

|
|
|

|
|

|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|

|

|
|
|
|
|
|
|
|
|
|
|

|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|

<






|
|
|

|

|
|
|
|
|
|
|
|
|

|
|
|
|
|
|
|
|
|
|
|

|
|
|
|
|
|
|
|
|
|
|
|
|
|

|
|
|
|
|
|
|
|
|

|

|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|

<






|
|

|
|

|
|

|
|
|
|
|
|
|
|
|

|
|
|
|
|
|
|
|
|
|
|

|
|
|
|
|
|
|
|
|
|
|

<






|
|

|
|
|
|
|
|

<






|
|
|
|
|
|

<






|

|

|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|

|
|
|
|
|
|
|
|
|

|
|
|
|
|
|
|

|



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
298
299
300
301
302
303
304
305
306
307
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
507
508
509
510
511
512
513
514
515
516
517
518
519
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
588
589
590
591
592
593
594
595
596
597
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
/*
 *  scp.c  -  Scp (Secure Copy) client for PuTTY.
 *  Joris van Rantwijk, Aug 1999.
 *
 *  This is mainly based on ssh-1.2.26/scp.c by Timo Rinne & Tatu Ylonen.
 *  They, in turn, used stuff from BSD rcp.
 */


#include <windows.h>
#include <winsock.h>
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <time.h>

#define PUTTY_DO_GLOBALS
#include "putty.h"
#include "scp.h"


#define TIME_POSIX_TO_WIN(t, ft) (*(LONGLONG*)&(ft) = \
	((LONGLONG) (t) + (LONGLONG) 11644473600) * (LONGLONG) 10000000)
#define TIME_WIN_TO_POSIX(ft, t) ((t) = (unsigned long) \
	((*(LONGLONG*)&(ft)) / (LONGLONG) 10000000 - (LONGLONG) 11644473600))


int verbose = 0;
static int recursive = 0;
static int preserve = 0;
static int targetshouldbedirectory = 0;
static int statistics = 1;
static int errs = 0;
static int connection_open = 0;

static void source(char *src);
static void rsource(char *src);
static void sink(char *targ);


/*
 *  Print an error message and perform a fatal exit.
 */
void fatalbox(char *fmt, ...)
{
    va_list ap;
    va_start(ap, fmt);
    fprintf(stderr, "Fatal: ");
    vfprintf(stderr, fmt, ap);
    fprintf(stderr, "\n");
    va_end(ap);
    exit(1);
}


/*
 *  Print an error message and exit after closing the SSH link.
 */
static void bump(char *fmt, ...)
{
    va_list ap;
    va_start(ap, fmt);
    fprintf(stderr, "Fatal: ");
    vfprintf(stderr, fmt, ap);
    fprintf(stderr, "\n");
    va_end(ap);
    if (connection_open) {
	char ch;
	ssh_send_eof();
	ssh_recv(&ch, 1);
    }
    exit(1);
}


void ssh_get_password(char *prompt, char *str, int maxlen)
{
    HANDLE hin, hout;
    DWORD savemode;
    int i;

    hin = GetStdHandle(STD_INPUT_HANDLE);
    hout = GetStdHandle(STD_OUTPUT_HANDLE);
    if (hin == INVALID_HANDLE_VALUE || hout == INVALID_HANDLE_VALUE)
	bump("Cannot get standard input/output handles");

    GetConsoleMode(hin, &savemode);
    SetConsoleMode(hin, (savemode & (~ENABLE_ECHO_INPUT)) |
		   ENABLE_PROCESSED_INPUT | ENABLE_LINE_INPUT);

    WriteFile(hout, prompt, strlen(prompt), &i, NULL);
    ReadFile(hin, str, maxlen-1, &i, NULL);

    SetConsoleMode(hin, savemode);

    if (i > maxlen) i = maxlen-1; else i = i - 2;
    str[i] = '\0';

    WriteFile(hout, "\r\n", 2, &i, NULL);
}


/*
 *  Open an SSH connection to user@host and execute cmd.
 */
static void do_cmd(char *host, char *user, char *cmd)
{
    char *err, *realhost;

    if (host == NULL || host[0] == '\0')
	bump("Empty host name");

    /* Try to load settings for this host */
    do_defaults(host);
    if (cfg.host[0] == '\0') {
	/* No settings for this host; use defaults */
	strncpy(cfg.host, host, sizeof(cfg.host)-1);
	cfg.host[sizeof(cfg.host)-1] = '\0';
	cfg.port = 22;
    }

    /* Set username */
    if (user != NULL && user[0] != '\0') {
	strncpy(cfg.username, user, sizeof(cfg.username)-1);
	cfg.username[sizeof(cfg.username)-1] = '\0';
	cfg.port = 22;
    } else if (cfg.username[0] == '\0') {
	bump("Empty user name");
    }

    if (cfg.protocol != PROT_SSH)
	cfg.port = 22;

    err = ssh_init(cfg.host, cfg.port, cmd, &realhost);
    if (err != NULL)
	bump("ssh_init: %s", err);
    if (verbose && realhost != NULL)
	fprintf(stderr, "Connected to %s\n", realhost);

    connection_open = 1;
}


/*
 *  Update statistic information about current file.
 */
static void print_stats(char *name, unsigned long size, unsigned long done,
                        time_t start, time_t now)
{
    float ratebs;
    unsigned long eta;
    char etastr[10];
    int pct;

    if (now > start)
	ratebs = (float) done / (now - start);
    else
	ratebs = (float) done;

    if (ratebs < 1.0)
	eta = size - done;
    else
	eta = (unsigned long) ((size - done) / ratebs);
    sprintf(etastr, "%02d:%02d:%02d",
	    eta / 3600, (eta % 3600) / 60, eta % 60);

    pct = (int) (100.0 * (float) done / size);

    printf("\r%-25.25s | %10ld kB | %5.1f kB/s | ETA: %8s | %3d%%",
	   name, done / 1024, ratebs / 1024.0,
	   etastr, pct);

    if (done == size)
	printf("\n");
}


/*
 *  Find a colon in str and return a pointer to the colon.
 *  This is used to seperate hostname from filename.
 */
static char * colon(char *str)
{
    /* We ignore a leading colon, since the hostname cannot be
     empty. We also ignore a colon as second character because
     of filenames like f:myfile.txt. */
    if (str[0] == '\0' ||
	str[0] == ':' ||
	str[1] == ':')
	return (NULL);
    while (*str != '\0' &&
	   *str != ':' &&
	   *str != '/' &&
	   *str != '\\')
	str++;
    if (*str == ':')
	return (str);
    else
	return (NULL);
}


/*
 *  Wait for a response from the other side.
 *  Return 0 if ok, -1 if error.
 */
static int response(void)
{
    char ch, resp, rbuf[2048];
    int p;

    if (ssh_recv(&resp, 1) <= 0)
	bump("Lost connection");

    p = 0;
    switch (resp) {
      case 0:		/* ok */
	return (0);
      default:
	rbuf[p++] = resp;
	/* fallthrough */
      case 1:		/* error */
      case 2:		/* fatal error */
	do {
	    if (ssh_recv(&ch, 1) <= 0)
		bump("Protocol error: Lost connection");
	    rbuf[p++] = ch;
	} while (p < sizeof(rbuf) && ch != '\n');
	rbuf[p-1] = '\0';
	if (resp == 1)
	    fprintf(stderr, "%s\n", rbuf);
	else
	    bump("%s", rbuf);
	errs++;
	return (-1);
    }
}


/*
 *  Send an error message to the other side and to the screen.
 *  Increment error counter.
 */
static void run_err(const char *fmt, ...)
{
    char str[2048];
    va_list ap;
    va_start(ap, fmt);
    errs++;
    strcpy(str, "\01scp: ");
    vsprintf(str+strlen(str), fmt, ap);
    strcat(str, "\n");
    ssh_send(str, strlen(str));
    vfprintf(stderr, fmt, ap);
    fprintf(stderr, "\n");
    va_end(ap);
}


/*
 *  Execute the source part of the SCP protocol.
 */
static void source(char *src)
{
    char buf[2048];
    unsigned long size;
    char *last;
    HANDLE f;
    DWORD attr;
    unsigned long i;
    unsigned long stat_bytes;
    time_t stat_starttime, stat_lasttime;

    attr = GetFileAttributes(src);
    if (attr == -1) {
	run_err("%s: No such file or directory", src);
	return;
    }

    if ((attr & FILE_ATTRIBUTE_DIRECTORY) != 0) {
	if (recursive)
	    rsource(src);
	else
	    run_err("%s: not a regular file", src);
	return;
    }

    if ((last = strrchr(src, '/')) == NULL)
	last = src;
    else
	last++;
    if (strrchr(last, '\\') != NULL)
	last = strrchr(last, '\\') + 1;
    if (last == src && strchr(src, ':') != NULL)
	last = strchr(src, ':') + 1;

    f = CreateFile(src, GENERIC_READ, FILE_SHARE_READ, NULL,
		   OPEN_EXISTING, 0, 0);
    if (f == INVALID_HANDLE_VALUE) {
	run_err("%s: Cannot open file");
	return;
    }

    if (preserve) {
	FILETIME actime, wrtime;
	unsigned long mtime, atime;
	GetFileTime(f, NULL, &actime, &wrtime);
	TIME_WIN_TO_POSIX(actime, atime);
	TIME_WIN_TO_POSIX(wrtime, mtime);
	sprintf(buf, "T%lu 0 %lu 0\n", mtime, atime);
	ssh_send(buf, strlen(buf));
	if (response())
	    return;
    }

    size = GetFileSize(f, NULL);
    sprintf(buf, "C0644 %lu %s\n", size, last);
    if (verbose)
	fprintf(stderr, "Sending file modes: %s", buf);
    ssh_send(buf, strlen(buf));
    if (response())
	return;

    if (statistics) {
	stat_bytes = 0;
	stat_starttime = time(NULL);
	stat_lasttime = 0;
    }

    for (i = 0; i < size; i += 4096) {
	char transbuf[4096];
	DWORD j, k = 4096;
	if (i + k > size) k = size - i;
	if (! ReadFile(f, transbuf, k, &j, NULL) || j != k) {
	    if (statistics) printf("\n");
	    bump("%s: Read error", src);
	}
	ssh_send(transbuf, k);
	if (statistics) {
	    stat_bytes += k;
	    if (time(NULL) != stat_lasttime ||
		i + k == size) {
		stat_lasttime = time(NULL);
		print_stats(last, size, stat_bytes,
			    stat_starttime, stat_lasttime);
	    }
	}
    }
    CloseHandle(f);

    ssh_send("", 1);
    (void) response();
}


/*
 *  Recursively send the contents of a directory.
 */
static void rsource(char *src)
{
    char buf[2048];
    char *last;
    HANDLE dir;
    WIN32_FIND_DATA fdat;
    int ok;

    if ((last = strrchr(src, '/')) == NULL)
	last = src;
    else
	last++;
    if (strrchr(last, '\\') != NULL)
	last = strrchr(last, '\\') + 1;
    if (last == src && strchr(src, ':') != NULL)
	last = strchr(src, ':') + 1;

    /* maybe send filetime */

    sprintf(buf, "D0755 0 %s\n", last);
    if (verbose)
	fprintf(stderr, "Entering directory: %s", buf);
    ssh_send(buf, strlen(buf));
    if (response())
	return;

    sprintf(buf, "%s/*", src);
    dir = FindFirstFile(buf, &fdat);
    ok = (dir != INVALID_HANDLE_VALUE);
    while (ok) {
	if (strcmp(fdat.cFileName, ".") == 0 ||
	    strcmp(fdat.cFileName, "..") == 0) {
	} else if (strlen(src) + 1 + strlen(fdat.cFileName) >=
		   sizeof(buf)) {
	    run_err("%s/%s: Name too long", src, fdat.cFileName);
	} else {
	    sprintf(buf, "%s/%s", src, fdat.cFileName);
	    source(buf);
	}
	ok = FindNextFile(dir, &fdat);
    }
    FindClose(dir);

    sprintf(buf, "E\n");
    ssh_send(buf, strlen(buf));
    (void) response();
}


/*
 *  Execute the sink part of the SCP protocol.
 */
static void sink(char *targ)
{
    char buf[2048];
    char namebuf[2048];
    char ch;
    int targisdir = 0;
    int settime = 0;
    int exists;
    DWORD attr;
    HANDLE f;
    unsigned long mtime, atime;
    unsigned int mode;
    unsigned long size, i;
    int wrerror = 0;
    unsigned long stat_bytes;
    time_t stat_starttime, stat_lasttime;
    char *stat_name;

    attr = GetFileAttributes(targ);
    if (attr != -1 && (attr & FILE_ATTRIBUTE_DIRECTORY) != 0)
	targisdir = 1;

    if (targetshouldbedirectory && !targisdir)
	bump("%s: Not a directory", targ);

    ssh_send("", 1);
    while (1) {
	settime = 0;
	gottime:
	if (ssh_recv(&ch, 1) <= 0)
	    return;
	if (ch == '\n')
	    bump("Protocol error: Unexpected newline");
	i = 0;
	buf[i++] = ch;
	do {
	    if (ssh_recv(&ch, 1) <= 0)
		bump("Lost connection");
	    buf[i++] = ch;
	} while (i < sizeof(buf) && ch != '\n');
	buf[i-1] = '\0';
	switch (buf[0]) {
	  case '\01':	/* error */
	    fprintf(stderr, "%s\n", buf+1);
	    errs++;
	    continue;
	  case '\02':	/* fatal error */
	    bump("%s", buf+1);
	  case 'E':
	    ssh_send("", 1);
	    return;
	  case 'T':
	    if (sscanf(buf, "T%d %*d %d %*d",
		       &mtime, &atime) == 2) {
		settime = 1;
		ssh_send("", 1);
		goto gottime;
	    }
	    bump("Protocol error: Illegal time format");
	  case 'C':
	  case 'D':
	    break;
	  default:
	    bump("Protocol error: Expected control record");
	}

	if (sscanf(buf+1, "%u %u %[^\n]", &mode, &size, namebuf) != 3)
	    bump("Protocol error: Illegal file descriptor format");
	if (targisdir) {
	    char t[2048];
	    strcpy(t, targ);
	    if (targ[0] != '\0')
		strcat(t, "/");
	    strcat(t, namebuf);
	    strcpy(namebuf, t);
	} else {
	    strcpy(namebuf, targ);
	}
	attr = GetFileAttributes(namebuf);
	exists = (attr != -1);

	if (buf[0] == 'D') {
	    if (exists && (attr & FILE_ATTRIBUTE_DIRECTORY) == 0) {
		run_err("%s: Not a directory", namebuf);
		continue;
	    }
	    if (!exists) {
		if (! CreateDirectory(namebuf, NULL)) {
		    run_err("%s: Cannot create directory",
			    namebuf);
		    continue;
		}
	    }
	    sink(namebuf);
	    /* can we set the timestamp for directories ? */
	    continue;
	}

	f = CreateFile(namebuf, GENERIC_WRITE, 0, NULL,
		       CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL, 0);
	if (f == INVALID_HANDLE_VALUE) {
	    run_err("%s: Cannot create file", namebuf);
	    continue;
	}

	ssh_send("", 1);

	if (statistics) {
	    stat_bytes = 0;
	    stat_starttime = time(NULL);
	    stat_lasttime = 0;
	    if ((stat_name = strrchr(namebuf, '/')) == NULL)
		stat_name = namebuf;
	    else
		stat_name++;
	    if (strrchr(stat_name, '\\') != NULL)
		stat_name = strrchr(stat_name, '\\') + 1;
	}

	for (i = 0; i < size; i += 4096) {
	    char transbuf[4096];
	    int j, k = 4096;
	    if (i + k > size) k = size - i;
	    if (ssh_recv(transbuf, k) == 0)
		bump("Lost connection");
	    if (wrerror) continue;
	    if (! WriteFile(f, transbuf, k, &j, NULL) || j != k) {
		wrerror = 1;
		if (statistics)
		    printf("\r%-25.25s | %50s\n",
			   stat_name,
			   "Write error.. waiting for end of file");
		continue;
	    }
	    if (statistics) {
		stat_bytes += k;
		if (time(NULL) > stat_lasttime ||
		    i + k == size) {
		    stat_lasttime = time(NULL);
		    print_stats(stat_name, size, stat_bytes,
				stat_starttime, stat_lasttime);
		}
	    }
	}
	(void) response();

	if (settime) {
	    FILETIME actime, wrtime;
	    TIME_POSIX_TO_WIN(atime, actime);
	    TIME_POSIX_TO_WIN(mtime, wrtime);
	    SetFileTime(f, NULL, &actime, &wrtime);
	}

	CloseHandle(f);
	if (wrerror) {
	    run_err("%s: Write error", namebuf);
	    continue;
	}
	ssh_send("", 1);
    }
}


/*
 *  We will copy local files to a remote server.
 */
static void toremote(int argc, char *argv[])
{
    char *src, *targ, *host, *user;
    char *cmd;
    int i;

    targ = argv[argc-1];

    /* Seperate host from filename */
    host = targ;
    targ = colon(targ);
    if (targ == NULL)
	bump("targ == NULL in toremote()");
    *targ++ = '\0';
    if (*targ == '\0')
	targ = ".";
    /* Substitute "." for emtpy target */

    /* Seperate host and username */
    user = host;
    host = strrchr(host, '@');
    if (host == NULL) {
	host = user;
	user = NULL;
    } else {
	*host++ = '\0';
	if (*user == '\0')
	    user = NULL;
    }

    if (argc == 2) {
	/* Find out if the source filespec covers multiple files
	 if so, we should set the targetshouldbedirectory flag */
	HANDLE fh;
	WIN32_FIND_DATA fdat;
	if (colon(argv[0]) != NULL)
	    bump("%s: Remote to remote not supported", argv[0]);
	fh = FindFirstFile(argv[0], &fdat);
	if (fh == INVALID_HANDLE_VALUE)
	    bump("%s: No such file or directory\n", argv[0]);
	if (FindNextFile(fh, &fdat))
	    targetshouldbedirectory = 1;
	FindClose(fh);
    }

    cmd = smalloc(strlen(targ) + 100);
    sprintf(cmd, "scp%s%s%s%s -t %s",
	    verbose ? " -v" : "",
	    recursive ? " -r" : "",
	    preserve ? " -p" : "",
	    targetshouldbedirectory ? " -d" : "",
	    targ);
    do_cmd(host, user, cmd);
    sfree(cmd);

    (void) response();

    for (i = 0; i < argc - 1; i++) {
	HANDLE dir;
	WIN32_FIND_DATA fdat;
	src = argv[i];
	if (colon(src) != NULL) {
	    fprintf(stderr,
		    "%s: Remote to remote not supported\n", src);
	    errs++;
	    continue;
	}
	dir = FindFirstFile(src, &fdat);
	if (dir == INVALID_HANDLE_VALUE) {
	    run_err("%s: No such file or directory", src);
	    continue;
	}
	do {
	    char *last;
	    char namebuf[2048];
	    if (strlen(src) + strlen(fdat.cFileName) >=
		sizeof(namebuf)) {
		fprintf(stderr, "%s: Name too long", src);
		continue;
	    }
	    strcpy(namebuf, src);
	    if ((last = strrchr(namebuf, '/')) == NULL)
		last = namebuf;
	    else
		last++;
	    if (strrchr(last, '\\') != NULL)
		last = strrchr(last, '\\') + 1;
	    if (last == namebuf && strrchr(namebuf, ':') != NULL)
		last = strchr(namebuf, ':') + 1;
	    strcpy(last, fdat.cFileName);
	    source(namebuf);
	} while (FindNextFile(dir, &fdat));
	FindClose(dir);
    }
}


/*
 *  We will copy files from a remote server to the local machine.
 */
static void tolocal(int argc, char *argv[])
{
    char *src, *targ, *host, *user;
    char *cmd;

    if (argc != 2)
	bump("More than one remote source not supported");

    src = argv[0];
    targ = argv[1];

    /* Seperate host from filename */
    host = src;
    src = colon(src);
    if (src == NULL)
	bump("Local to local copy not supported");
    *src++ = '\0';
    if (*src == '\0')
	src = ".";
    /* Substitute "." for empty filename */

    /* Seperate username and hostname */
    user = host;
    host = strrchr(host, '@');
    if (host == NULL) {
	host = user;
	user = NULL;
    } else {
	*host++ = '\0';
	if (*user == '\0')
	    user = NULL;
    }

    cmd = smalloc(strlen(src) + 100);
    sprintf(cmd, "scp%s%s%s%s -f %s",
	    verbose ? " -v" : "",
	    recursive ? " -r" : "",
	    preserve ? " -p" : "",
	    targetshouldbedirectory ? " -d" : "",
	    src);
    do_cmd(host, user, cmd);
    sfree(cmd);

    sink(targ);
}


/*
 *  Initialize the Win$ock driver.
 */
static void init_winsock()
{
    WORD winsock_ver;
    WSADATA wsadata;

    winsock_ver = MAKEWORD(1, 1);
    if (WSAStartup(winsock_ver, &wsadata))
	bump("Unable to initialise WinSock");
    if (LOBYTE(wsadata.wVersion) != 1 ||
	HIBYTE(wsadata.wVersion) != 1)
	bump("WinSock version is incompatible with 1.1");
}


/*
 *  Short description of parameters.
 */
static void usage()
{
    printf("PuTTY Secure Copy client\n");
    printf("%s\n", ver);
    printf("usage: scp [-p] [-q] [-r] [-v] [user@]host:source target\n");
    printf("       scp [-p] [-q] [-r] [-v] source [source..]"
	   " [user@]host:target\n");
    exit(1);
}


/*
 *  Main program (no, really?)
 */
int main(int argc, char *argv[])
{
    int i;

    init_winsock();

    for (i = 1; i < argc; i++) {
	if (argv[i][0] != '-')
	    break;
	if (strcmp(argv[i], "-v") == 0)
	    verbose = 1;
	else if (strcmp(argv[i], "-r") == 0)
	    recursive = 1;
	else if (strcmp(argv[i], "-p") == 0)
	    preserve = 1;
	else if (strcmp(argv[i], "-q") == 0)
	    statistics = 0;
	else if (strcmp(argv[i], "-h") == 0 ||
		 strcmp(argv[i], "-?") == 0)
	    usage();
	else if (strcmp(argv[i], "--") == 0)
	{ i++; break; }
	else
	    usage();
    }
    argc -= i;
    argv += i;

    if (argc < 2)
	usage();
    if (argc > 2)
	targetshouldbedirectory = 1;

    if (colon(argv[argc-1]) != NULL)
	toremote(argc, argv);
    else
	tolocal(argc, argv);

    if (connection_open) {
	char ch;
	ssh_send_eof();
	ssh_recv(&ch, 1);
    }
    WSACleanup();
    random_save_seed();

    return (errs == 0 ? 0 : 1);
}

/* end */