191f6a7ff26bb42f934bac73542b9fe6ba485259
[u/mdw/putty] / scp.c
1 /*
2 * scp.c - Scp (Secure Copy) client for PuTTY.
3 * Joris van Rantwijk, Simon Tatham
4 *
5 * This is mainly based on ssh-1.2.26/scp.c by Timo Rinne & Tatu Ylonen.
6 * They, in turn, used stuff from BSD rcp.
7 *
8 * Adaptations to enable connecting a GUI by L. Gunnarsson - Sept 2000
9 */
10
11 #include <windows.h>
12 #ifndef AUTO_WINSOCK
13 #ifdef WINSOCK_TWO
14 #include <winsock2.h>
15 #else
16 #include <winsock.h>
17 #endif
18 #endif
19 #include <stdlib.h>
20 #include <stdio.h>
21 #include <string.h>
22 #include <time.h>
23 #include <assert.h>
24 /* GUI Adaptation - Sept 2000 */
25 #include <winuser.h>
26 #include <winbase.h>
27
28 #define PUTTY_DO_GLOBALS
29 #include "putty.h"
30 #include "winstuff.h"
31 #include "storage.h"
32
33 #define TIME_POSIX_TO_WIN(t, ft) (*(LONGLONG*)&(ft) = \
34 ((LONGLONG) (t) + (LONGLONG) 11644473600) * (LONGLONG) 10000000)
35 #define TIME_WIN_TO_POSIX(ft, t) ((t) = (unsigned long) \
36 ((*(LONGLONG*)&(ft)) / (LONGLONG) 10000000 - (LONGLONG) 11644473600))
37
38 /* GUI Adaptation - Sept 2000 */
39 #define WM_APP_BASE 0x8000
40 #define WM_STD_OUT_CHAR ( WM_APP_BASE+400 )
41 #define WM_STD_ERR_CHAR ( WM_APP_BASE+401 )
42 #define WM_STATS_CHAR ( WM_APP_BASE+402 )
43 #define WM_STATS_SIZE ( WM_APP_BASE+403 )
44 #define WM_STATS_PERCENT ( WM_APP_BASE+404 )
45 #define WM_STATS_ELAPSED ( WM_APP_BASE+405 )
46 #define WM_RET_ERR_CNT ( WM_APP_BASE+406 )
47 #define WM_LS_RET_ERR_CNT ( WM_APP_BASE+407 )
48
49 static int list = 0;
50 static int verbose = 0;
51 static int recursive = 0;
52 static int preserve = 0;
53 static int targetshouldbedirectory = 0;
54 static int statistics = 1;
55 static int portnumber = 0;
56 static char *password = NULL;
57 static int errs = 0;
58 /* GUI Adaptation - Sept 2000 */
59 #define NAME_STR_MAX 2048
60 static char statname[NAME_STR_MAX + 1];
61 static unsigned long statsize = 0;
62 static int statperct = 0;
63 static unsigned long statelapsed = 0;
64 static int gui_mode = 0;
65 static char *gui_hwnd = NULL;
66
67 static void source(char *src);
68 static void rsource(char *src);
69 static void sink(char *targ, char *src);
70 /* GUI Adaptation - Sept 2000 */
71 static void tell_char(FILE * stream, char c);
72 static void tell_str(FILE * stream, char *str);
73 static void tell_user(FILE * stream, char *fmt, ...);
74 static void send_char_msg(unsigned int msg_id, char c);
75 static void send_str_msg(unsigned int msg_id, char *str);
76 static void gui_update_stats(char *name, unsigned long size,
77 int percentage, unsigned long elapsed);
78
79 void logevent(char *string)
80 {
81 }
82
83 void ldisc_send(char *buf, int len)
84 {
85 /*
86 * This is only here because of the calls to ldisc_send(NULL,
87 * 0) in ssh.c. Nothing in PSCP actually needs to use the ldisc
88 * as an ldisc. So if we get called with any real data, I want
89 * to know about it.
90 */
91 assert(len == 0);
92 }
93
94 void verify_ssh_host_key(char *host, int port, char *keytype,
95 char *keystr, char *fingerprint)
96 {
97 int ret;
98
99 static const char absentmsg[] =
100 "The server's host key is not cached in the registry. You\n"
101 "have no guarantee that the server is the computer you\n"
102 "think it is.\n"
103 "The server's key fingerprint is:\n"
104 "%s\n"
105 "If you trust this host, enter \"y\" to add the key to\n"
106 "PuTTY's cache and carry on connecting.\n"
107 "If you do not trust this host, enter \"n\" to abandon the\n"
108 "connection.\n" "Continue connecting? (y/n) ";
109
110 static const char wrongmsg[] =
111 "WARNING - POTENTIAL SECURITY BREACH!\n"
112 "The server's host key does not match the one PuTTY has\n"
113 "cached in the registry. This means that either the\n"
114 "server administrator has changed the host key, or you\n"
115 "have actually connected to another computer pretending\n"
116 "to be the server.\n"
117 "The new key fingerprint is:\n"
118 "%s\n"
119 "If you were expecting this change and trust the new key,\n"
120 "enter Yes to update PuTTY's cache and continue connecting.\n"
121 "If you want to carry on connecting but without updating\n"
122 "the cache, enter No.\n"
123 "If you want to abandon the connection completely, press\n"
124 "Return to cancel. Pressing Return is the ONLY guaranteed\n"
125 "safe choice.\n"
126 "Update cached key? (y/n, Return cancels connection) ";
127
128 static const char abandoned[] = "Connection abandoned.\n";
129
130 char line[32];
131
132 /*
133 * Verify the key against the registry.
134 */
135 ret = verify_host_key(host, port, keytype, keystr);
136
137 if (ret == 0) /* success - key matched OK */
138 return;
139 if (ret == 2) { /* key was different */
140 fprintf(stderr, wrongmsg, fingerprint);
141 fflush(stderr);
142 if (fgets(line, sizeof(line), stdin) &&
143 line[0] != '\0' && line[0] != '\n') {
144 if (line[0] == 'y' || line[0] == 'Y')
145 store_host_key(host, port, keytype, keystr);
146 } else {
147 fprintf(stderr, abandoned);
148 fflush(stderr);
149 exit(0);
150 }
151 }
152 if (ret == 1) { /* key was absent */
153 fprintf(stderr, absentmsg, fingerprint);
154 if (fgets(line, sizeof(line), stdin) &&
155 (line[0] == 'y' || line[0] == 'Y'))
156 store_host_key(host, port, keytype, keystr);
157 else {
158 fprintf(stderr, abandoned);
159 exit(0);
160 }
161 }
162 }
163
164 /* GUI Adaptation - Sept 2000 */
165 static void send_msg(HWND h, UINT message, WPARAM wParam)
166 {
167 while (!PostMessage(h, message, wParam, 0))
168 SleepEx(1000, TRUE);
169 }
170
171 static void tell_char(FILE * stream, char c)
172 {
173 if (!gui_mode)
174 fputc(c, stream);
175 else {
176 unsigned int msg_id = WM_STD_OUT_CHAR;
177 if (stream == stderr)
178 msg_id = WM_STD_ERR_CHAR;
179 send_msg((HWND) atoi(gui_hwnd), msg_id, (WPARAM) c);
180 }
181 }
182
183 static void tell_str(FILE * stream, char *str)
184 {
185 unsigned int i;
186
187 for (i = 0; i < strlen(str); ++i)
188 tell_char(stream, str[i]);
189 }
190
191 static void tell_user(FILE * stream, char *fmt, ...)
192 {
193 char str[0x100]; /* Make the size big enough */
194 va_list ap;
195 va_start(ap, fmt);
196 vsprintf(str, fmt, ap);
197 va_end(ap);
198 strcat(str, "\n");
199 tell_str(stream, str);
200 }
201
202 static void gui_update_stats(char *name, unsigned long size,
203 int percentage, unsigned long elapsed)
204 {
205 unsigned int i;
206
207 if (strcmp(name, statname) != 0) {
208 for (i = 0; i < strlen(name); ++i)
209 send_msg((HWND) atoi(gui_hwnd), WM_STATS_CHAR,
210 (WPARAM) name[i]);
211 send_msg((HWND) atoi(gui_hwnd), WM_STATS_CHAR, (WPARAM) '\n');
212 strcpy(statname, name);
213 }
214 if (statsize != size) {
215 send_msg((HWND) atoi(gui_hwnd), WM_STATS_SIZE, (WPARAM) size);
216 statsize = size;
217 }
218 if (statelapsed != elapsed) {
219 send_msg((HWND) atoi(gui_hwnd), WM_STATS_ELAPSED,
220 (WPARAM) elapsed);
221 statelapsed = elapsed;
222 }
223 if (statperct != percentage) {
224 send_msg((HWND) atoi(gui_hwnd), WM_STATS_PERCENT,
225 (WPARAM) percentage);
226 statperct = percentage;
227 }
228 }
229
230 /*
231 * Print an error message and perform a fatal exit.
232 */
233 void fatalbox(char *fmt, ...)
234 {
235 char str[0x100]; /* Make the size big enough */
236 va_list ap;
237 va_start(ap, fmt);
238 strcpy(str, "Fatal:");
239 vsprintf(str + strlen(str), fmt, ap);
240 va_end(ap);
241 strcat(str, "\n");
242 tell_str(stderr, str);
243 errs++;
244
245 if (gui_mode) {
246 unsigned int msg_id = WM_RET_ERR_CNT;
247 if (list)
248 msg_id = WM_LS_RET_ERR_CNT;
249 while (!PostMessage
250 ((HWND) atoi(gui_hwnd), msg_id, (WPARAM) errs,
251 0 /*lParam */ ))SleepEx(1000, TRUE);
252 }
253
254 exit(1);
255 }
256 void connection_fatal(char *fmt, ...)
257 {
258 char str[0x100]; /* Make the size big enough */
259 va_list ap;
260 va_start(ap, fmt);
261 strcpy(str, "Fatal:");
262 vsprintf(str + strlen(str), fmt, ap);
263 va_end(ap);
264 strcat(str, "\n");
265 tell_str(stderr, str);
266 errs++;
267
268 if (gui_mode) {
269 unsigned int msg_id = WM_RET_ERR_CNT;
270 if (list)
271 msg_id = WM_LS_RET_ERR_CNT;
272 while (!PostMessage
273 ((HWND) atoi(gui_hwnd), msg_id, (WPARAM) errs,
274 0 /*lParam */ ))SleepEx(1000, TRUE);
275 }
276
277 exit(1);
278 }
279
280 /*
281 * Be told what socket we're supposed to be using.
282 */
283 static SOCKET scp_ssh_socket;
284 char *do_select(SOCKET skt, int startup)
285 {
286 if (startup)
287 scp_ssh_socket = skt;
288 else
289 scp_ssh_socket = INVALID_SOCKET;
290 return NULL;
291 }
292 extern int select_result(WPARAM, LPARAM);
293
294 /*
295 * Receive a block of data from the SSH link. Block until all data
296 * is available.
297 *
298 * To do this, we repeatedly call the SSH protocol module, with our
299 * own trap in from_backend() to catch the data that comes back. We
300 * do this until we have enough data.
301 */
302
303 static unsigned char *outptr; /* where to put the data */
304 static unsigned outlen; /* how much data required */
305 static unsigned char *pending = NULL; /* any spare data */
306 static unsigned pendlen = 0, pendsize = 0; /* length and phys. size of buffer */
307 void from_backend(int is_stderr, char *data, int datalen)
308 {
309 unsigned char *p = (unsigned char *) data;
310 unsigned len = (unsigned) datalen;
311
312 /*
313 * stderr data is just spouted to local stderr and otherwise
314 * ignored.
315 */
316 if (is_stderr) {
317 fwrite(data, 1, len, stderr);
318 return;
319 }
320
321 inbuf_head = 0;
322
323 /*
324 * If this is before the real session begins, just return.
325 */
326 if (!outptr)
327 return;
328
329 if (outlen > 0) {
330 unsigned used = outlen;
331 if (used > len)
332 used = len;
333 memcpy(outptr, p, used);
334 outptr += used;
335 outlen -= used;
336 p += used;
337 len -= used;
338 }
339
340 if (len > 0) {
341 if (pendsize < pendlen + len) {
342 pendsize = pendlen + len + 4096;
343 pending = (pending ? srealloc(pending, pendsize) :
344 smalloc(pendsize));
345 if (!pending)
346 fatalbox("Out of memory");
347 }
348 memcpy(pending + pendlen, p, len);
349 pendlen += len;
350 }
351 }
352 static int ssh_scp_recv(unsigned char *buf, int len)
353 {
354 outptr = buf;
355 outlen = len;
356
357 /*
358 * See if the pending-input block contains some of what we
359 * need.
360 */
361 if (pendlen > 0) {
362 unsigned pendused = pendlen;
363 if (pendused > outlen)
364 pendused = outlen;
365 memcpy(outptr, pending, pendused);
366 memmove(pending, pending + pendused, pendlen - pendused);
367 outptr += pendused;
368 outlen -= pendused;
369 pendlen -= pendused;
370 if (pendlen == 0) {
371 pendsize = 0;
372 sfree(pending);
373 pending = NULL;
374 }
375 if (outlen == 0)
376 return len;
377 }
378
379 while (outlen > 0) {
380 fd_set readfds;
381
382 FD_ZERO(&readfds);
383 FD_SET(scp_ssh_socket, &readfds);
384 if (select(1, &readfds, NULL, NULL, NULL) < 0)
385 return 0; /* doom */
386 select_result((WPARAM) scp_ssh_socket, (LPARAM) FD_READ);
387 }
388
389 return len;
390 }
391
392 /*
393 * Loop through the ssh connection and authentication process.
394 */
395 static void ssh_scp_init(void)
396 {
397 if (scp_ssh_socket == INVALID_SOCKET)
398 return;
399 while (!back->sendok()) {
400 fd_set readfds;
401 FD_ZERO(&readfds);
402 FD_SET(scp_ssh_socket, &readfds);
403 if (select(1, &readfds, NULL, NULL, NULL) < 0)
404 return; /* doom */
405 select_result((WPARAM) scp_ssh_socket, (LPARAM) FD_READ);
406 }
407 }
408
409 /*
410 * Print an error message and exit after closing the SSH link.
411 */
412 static void bump(char *fmt, ...)
413 {
414 char str[0x100]; /* Make the size big enough */
415 va_list ap;
416 va_start(ap, fmt);
417 strcpy(str, "Fatal:");
418 vsprintf(str + strlen(str), fmt, ap);
419 va_end(ap);
420 strcat(str, "\n");
421 tell_str(stderr, str);
422 errs++;
423
424 if (back != NULL && back->socket() != NULL) {
425 char ch;
426 back->special(TS_EOF);
427 ssh_scp_recv(&ch, 1);
428 }
429
430 if (gui_mode) {
431 unsigned int msg_id = WM_RET_ERR_CNT;
432 if (list)
433 msg_id = WM_LS_RET_ERR_CNT;
434 while (!PostMessage
435 ((HWND) atoi(gui_hwnd), msg_id, (WPARAM) errs,
436 0 /*lParam */ ))SleepEx(1000, TRUE);
437 }
438
439 exit(1);
440 }
441
442 static int get_line(const char *prompt, char *str, int maxlen, int is_pw)
443 {
444 HANDLE hin, hout;
445 DWORD savemode, newmode, i;
446
447 if (is_pw && password) {
448 static int tried_once = 0;
449
450 if (tried_once) {
451 return 0;
452 } else {
453 strncpy(str, password, maxlen);
454 str[maxlen - 1] = '\0';
455 tried_once = 1;
456 return 1;
457 }
458 }
459
460 /* GUI Adaptation - Sept 2000 */
461 if (gui_mode) {
462 if (maxlen > 0)
463 str[0] = '\0';
464 } else {
465 hin = GetStdHandle(STD_INPUT_HANDLE);
466 hout = GetStdHandle(STD_OUTPUT_HANDLE);
467 if (hin == INVALID_HANDLE_VALUE || hout == INVALID_HANDLE_VALUE)
468 bump("Cannot get standard input/output handles");
469
470 GetConsoleMode(hin, &savemode);
471 newmode = savemode | ENABLE_PROCESSED_INPUT | ENABLE_LINE_INPUT;
472 if (is_pw)
473 newmode &= ~ENABLE_ECHO_INPUT;
474 else
475 newmode |= ENABLE_ECHO_INPUT;
476 SetConsoleMode(hin, newmode);
477
478 WriteFile(hout, prompt, strlen(prompt), &i, NULL);
479 ReadFile(hin, str, maxlen - 1, &i, NULL);
480
481 SetConsoleMode(hin, savemode);
482
483 if ((int) i > maxlen)
484 i = maxlen - 1;
485 else
486 i = i - 2;
487 str[i] = '\0';
488
489 if (is_pw)
490 WriteFile(hout, "\r\n", 2, &i, NULL);
491 }
492
493 return 1;
494 }
495
496 /*
497 * Open an SSH connection to user@host and execute cmd.
498 */
499 static void do_cmd(char *host, char *user, char *cmd)
500 {
501 char *err, *realhost;
502 DWORD namelen;
503
504 if (host == NULL || host[0] == '\0')
505 bump("Empty host name");
506
507 /* Try to load settings for this host */
508 do_defaults(host, &cfg);
509 if (cfg.host[0] == '\0') {
510 /* No settings for this host; use defaults */
511 do_defaults(NULL, &cfg);
512 strncpy(cfg.host, host, sizeof(cfg.host) - 1);
513 cfg.host[sizeof(cfg.host) - 1] = '\0';
514 cfg.port = 22;
515 }
516
517 /* Set username */
518 if (user != NULL && user[0] != '\0') {
519 strncpy(cfg.username, user, sizeof(cfg.username) - 1);
520 cfg.username[sizeof(cfg.username) - 1] = '\0';
521 } else if (cfg.username[0] == '\0') {
522 namelen = 0;
523 if (GetUserName(user, &namelen) == FALSE)
524 bump("Empty user name");
525 user = smalloc(namelen * sizeof(char));
526 GetUserName(user, &namelen);
527 if (verbose)
528 tell_user(stderr, "Guessing user name: %s", user);
529 strncpy(cfg.username, user, sizeof(cfg.username) - 1);
530 cfg.username[sizeof(cfg.username) - 1] = '\0';
531 free(user);
532 }
533
534 if (cfg.protocol != PROT_SSH)
535 cfg.port = 22;
536
537 if (portnumber)
538 cfg.port = portnumber;
539
540 strncpy(cfg.remote_cmd, cmd, sizeof(cfg.remote_cmd));
541 cfg.remote_cmd[sizeof(cfg.remote_cmd) - 1] = '\0';
542 cfg.nopty = TRUE;
543
544 back = &ssh_backend;
545
546 err = back->init(cfg.host, cfg.port, &realhost);
547 if (err != NULL)
548 bump("ssh_init: %s", err);
549 ssh_scp_init();
550 if (verbose && realhost != NULL)
551 tell_user(stderr, "Connected to %s\n", realhost);
552 sfree(realhost);
553 }
554
555 /*
556 * Update statistic information about current file.
557 */
558 static void print_stats(char *name, unsigned long size, unsigned long done,
559 time_t start, time_t now)
560 {
561 float ratebs;
562 unsigned long eta;
563 char etastr[10];
564 int pct;
565
566 /* GUI Adaptation - Sept 2000 */
567 if (gui_mode)
568 gui_update_stats(name, size, (int) (100 * (done * 1.0 / size)),
569 (unsigned long) difftime(now, start));
570 else {
571 if (now > start)
572 ratebs = (float) done / (now - start);
573 else
574 ratebs = (float) done;
575
576 if (ratebs < 1.0)
577 eta = size - done;
578 else
579 eta = (unsigned long) ((size - done) / ratebs);
580 sprintf(etastr, "%02ld:%02ld:%02ld",
581 eta / 3600, (eta % 3600) / 60, eta % 60);
582
583 pct = (int) (100.0 * (float) done / size);
584
585 printf("\r%-25.25s | %10ld kB | %5.1f kB/s | ETA: %8s | %3d%%",
586 name, done / 1024, ratebs / 1024.0, etastr, pct);
587
588 if (done == size)
589 printf("\n");
590 }
591 }
592
593 /*
594 * Find a colon in str and return a pointer to the colon.
595 * This is used to separate hostname from filename.
596 */
597 static char *colon(char *str)
598 {
599 /* We ignore a leading colon, since the hostname cannot be
600 empty. We also ignore a colon as second character because
601 of filenames like f:myfile.txt. */
602 if (str[0] == '\0' || str[0] == ':' || str[1] == ':')
603 return (NULL);
604 while (*str != '\0' && *str != ':' && *str != '/' && *str != '\\')
605 str++;
606 if (*str == ':')
607 return (str);
608 else
609 return (NULL);
610 }
611
612 /*
613 * Wait for a response from the other side.
614 * Return 0 if ok, -1 if error.
615 */
616 static int response(void)
617 {
618 char ch, resp, rbuf[2048];
619 int p;
620
621 if (ssh_scp_recv(&resp, 1) <= 0)
622 bump("Lost connection");
623
624 p = 0;
625 switch (resp) {
626 case 0: /* ok */
627 return (0);
628 default:
629 rbuf[p++] = resp;
630 /* fallthrough */
631 case 1: /* error */
632 case 2: /* fatal error */
633 do {
634 if (ssh_scp_recv(&ch, 1) <= 0)
635 bump("Protocol error: Lost connection");
636 rbuf[p++] = ch;
637 } while (p < sizeof(rbuf) && ch != '\n');
638 rbuf[p - 1] = '\0';
639 if (resp == 1)
640 tell_user(stderr, "%s\n", rbuf);
641 else
642 bump("%s", rbuf);
643 errs++;
644 return (-1);
645 }
646 }
647
648 /*
649 * Send an error message to the other side and to the screen.
650 * Increment error counter.
651 */
652 static void run_err(const char *fmt, ...)
653 {
654 char str[2048];
655 va_list ap;
656 va_start(ap, fmt);
657 errs++;
658 strcpy(str, "scp: ");
659 vsprintf(str + strlen(str), fmt, ap);
660 strcat(str, "\n");
661 back->send("\001", 1); /* scp protocol error prefix */
662 back->send(str, strlen(str));
663 tell_user(stderr, "%s", str);
664 va_end(ap);
665 }
666
667 /*
668 * Execute the source part of the SCP protocol.
669 */
670 static void source(char *src)
671 {
672 char buf[2048];
673 unsigned long size;
674 char *last;
675 HANDLE f;
676 DWORD attr;
677 unsigned long i;
678 unsigned long stat_bytes;
679 time_t stat_starttime, stat_lasttime;
680
681 attr = GetFileAttributes(src);
682 if (attr == (DWORD) - 1) {
683 run_err("%s: No such file or directory", src);
684 return;
685 }
686
687 if ((attr & FILE_ATTRIBUTE_DIRECTORY) != 0) {
688 if (recursive) {
689 /*
690 * Avoid . and .. directories.
691 */
692 char *p;
693 p = strrchr(src, '/');
694 if (!p)
695 p = strrchr(src, '\\');
696 if (!p)
697 p = src;
698 else
699 p++;
700 if (!strcmp(p, ".") || !strcmp(p, ".."))
701 /* skip . and .. */ ;
702 else
703 rsource(src);
704 } else {
705 run_err("%s: not a regular file", src);
706 }
707 return;
708 }
709
710 if ((last = strrchr(src, '/')) == NULL)
711 last = src;
712 else
713 last++;
714 if (strrchr(last, '\\') != NULL)
715 last = strrchr(last, '\\') + 1;
716 if (last == src && strchr(src, ':') != NULL)
717 last = strchr(src, ':') + 1;
718
719 f = CreateFile(src, GENERIC_READ, FILE_SHARE_READ, NULL,
720 OPEN_EXISTING, 0, 0);
721 if (f == INVALID_HANDLE_VALUE) {
722 run_err("%s: Cannot open file", src);
723 return;
724 }
725
726 if (preserve) {
727 FILETIME actime, wrtime;
728 unsigned long mtime, atime;
729 GetFileTime(f, NULL, &actime, &wrtime);
730 TIME_WIN_TO_POSIX(actime, atime);
731 TIME_WIN_TO_POSIX(wrtime, mtime);
732 sprintf(buf, "T%lu 0 %lu 0\n", mtime, atime);
733 back->send(buf, strlen(buf));
734 if (response())
735 return;
736 }
737
738 size = GetFileSize(f, NULL);
739 sprintf(buf, "C0644 %lu %s\n", size, last);
740 if (verbose)
741 tell_user(stderr, "Sending file modes: %s", buf);
742 back->send(buf, strlen(buf));
743 if (response())
744 return;
745
746 if (statistics) {
747 stat_bytes = 0;
748 stat_starttime = time(NULL);
749 stat_lasttime = 0;
750 }
751
752 for (i = 0; i < size; i += 4096) {
753 char transbuf[4096];
754 DWORD j, k = 4096;
755 if (i + k > size)
756 k = size - i;
757 if (!ReadFile(f, transbuf, k, &j, NULL) || j != k) {
758 if (statistics)
759 printf("\n");
760 bump("%s: Read error", src);
761 }
762 back->send(transbuf, k);
763 if (statistics) {
764 stat_bytes += k;
765 if (time(NULL) != stat_lasttime || i + k == size) {
766 stat_lasttime = time(NULL);
767 print_stats(last, size, stat_bytes,
768 stat_starttime, stat_lasttime);
769 }
770 }
771 }
772 CloseHandle(f);
773
774 back->send("", 1);
775 (void) response();
776 }
777
778 /*
779 * Recursively send the contents of a directory.
780 */
781 static void rsource(char *src)
782 {
783 char buf[2048];
784 char *last;
785 HANDLE dir;
786 WIN32_FIND_DATA fdat;
787 int ok;
788
789 if ((last = strrchr(src, '/')) == NULL)
790 last = src;
791 else
792 last++;
793 if (strrchr(last, '\\') != NULL)
794 last = strrchr(last, '\\') + 1;
795 if (last == src && strchr(src, ':') != NULL)
796 last = strchr(src, ':') + 1;
797
798 /* maybe send filetime */
799
800 sprintf(buf, "D0755 0 %s\n", last);
801 if (verbose)
802 tell_user(stderr, "Entering directory: %s", buf);
803 back->send(buf, strlen(buf));
804 if (response())
805 return;
806
807 sprintf(buf, "%s/*", src);
808 dir = FindFirstFile(buf, &fdat);
809 ok = (dir != INVALID_HANDLE_VALUE);
810 while (ok) {
811 if (strcmp(fdat.cFileName, ".") == 0 ||
812 strcmp(fdat.cFileName, "..") == 0) {
813 } else if (strlen(src) + 1 + strlen(fdat.cFileName) >= sizeof(buf)) {
814 run_err("%s/%s: Name too long", src, fdat.cFileName);
815 } else {
816 sprintf(buf, "%s/%s", src, fdat.cFileName);
817 source(buf);
818 }
819 ok = FindNextFile(dir, &fdat);
820 }
821 FindClose(dir);
822
823 sprintf(buf, "E\n");
824 back->send(buf, strlen(buf));
825 (void) response();
826 }
827
828 /*
829 * Execute the sink part of the SCP protocol.
830 */
831 static void sink(char *targ, char *src)
832 {
833 char buf[2048];
834 char namebuf[2048];
835 char ch;
836 int targisdir = 0;
837 int settime;
838 int exists;
839 DWORD attr;
840 HANDLE f;
841 unsigned long mtime, atime;
842 unsigned int mode;
843 unsigned long size, i;
844 int wrerror = 0;
845 unsigned long stat_bytes;
846 time_t stat_starttime, stat_lasttime;
847 char *stat_name;
848
849 attr = GetFileAttributes(targ);
850 if (attr != (DWORD) - 1 && (attr & FILE_ATTRIBUTE_DIRECTORY) != 0)
851 targisdir = 1;
852
853 if (targetshouldbedirectory && !targisdir)
854 bump("%s: Not a directory", targ);
855
856 back->send("", 1);
857 while (1) {
858 settime = 0;
859 gottime:
860 if (ssh_scp_recv(&ch, 1) <= 0)
861 return;
862 if (ch == '\n')
863 bump("Protocol error: Unexpected newline");
864 i = 0;
865 buf[i++] = ch;
866 do {
867 if (ssh_scp_recv(&ch, 1) <= 0)
868 bump("Lost connection");
869 buf[i++] = ch;
870 } while (i < sizeof(buf) && ch != '\n');
871 buf[i - 1] = '\0';
872 switch (buf[0]) {
873 case '\01': /* error */
874 tell_user(stderr, "%s\n", buf + 1);
875 errs++;
876 continue;
877 case '\02': /* fatal error */
878 bump("%s", buf + 1);
879 case 'E':
880 back->send("", 1);
881 return;
882 case 'T':
883 if (sscanf(buf, "T%ld %*d %ld %*d", &mtime, &atime) == 2) {
884 settime = 1;
885 back->send("", 1);
886 goto gottime;
887 }
888 bump("Protocol error: Illegal time format");
889 case 'C':
890 case 'D':
891 break;
892 default:
893 bump("Protocol error: Expected control record");
894 }
895
896 if (sscanf(buf + 1, "%u %lu %[^\n]", &mode, &size, namebuf) != 3)
897 bump("Protocol error: Illegal file descriptor format");
898 /* Security fix: ensure the file ends up where we asked for it. */
899 if (targisdir) {
900 char t[2048];
901 char *p;
902 strcpy(t, targ);
903 if (targ[0] != '\0')
904 strcat(t, "/");
905 p = namebuf + strlen(namebuf);
906 while (p > namebuf && p[-1] != '/' && p[-1] != '\\')
907 p--;
908 strcat(t, p);
909 strcpy(namebuf, t);
910 } else {
911 strcpy(namebuf, targ);
912 }
913 attr = GetFileAttributes(namebuf);
914 exists = (attr != (DWORD) - 1);
915
916 if (buf[0] == 'D') {
917 if (exists && (attr & FILE_ATTRIBUTE_DIRECTORY) == 0) {
918 run_err("%s: Not a directory", namebuf);
919 continue;
920 }
921 if (!exists) {
922 if (!CreateDirectory(namebuf, NULL)) {
923 run_err("%s: Cannot create directory", namebuf);
924 continue;
925 }
926 }
927 sink(namebuf, NULL);
928 /* can we set the timestamp for directories ? */
929 continue;
930 }
931
932 f = CreateFile(namebuf, GENERIC_WRITE, 0, NULL,
933 CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL, 0);
934 if (f == INVALID_HANDLE_VALUE) {
935 run_err("%s: Cannot create file", namebuf);
936 continue;
937 }
938
939 back->send("", 1);
940
941 if (statistics) {
942 stat_bytes = 0;
943 stat_starttime = time(NULL);
944 stat_lasttime = 0;
945 if ((stat_name = strrchr(namebuf, '/')) == NULL)
946 stat_name = namebuf;
947 else
948 stat_name++;
949 if (strrchr(stat_name, '\\') != NULL)
950 stat_name = strrchr(stat_name, '\\') + 1;
951 }
952
953 for (i = 0; i < size; i += 4096) {
954 char transbuf[4096];
955 DWORD j, k = 4096;
956 if (i + k > size)
957 k = size - i;
958 if (ssh_scp_recv(transbuf, k) == 0)
959 bump("Lost connection");
960 if (wrerror)
961 continue;
962 if (!WriteFile(f, transbuf, k, &j, NULL) || j != k) {
963 wrerror = 1;
964 if (statistics)
965 printf("\r%-25.25s | %50s\n",
966 stat_name,
967 "Write error.. waiting for end of file");
968 continue;
969 }
970 if (statistics) {
971 stat_bytes += k;
972 if (time(NULL) > stat_lasttime || i + k == size) {
973 stat_lasttime = time(NULL);
974 print_stats(stat_name, size, stat_bytes,
975 stat_starttime, stat_lasttime);
976 }
977 }
978 }
979 (void) response();
980
981 if (settime) {
982 FILETIME actime, wrtime;
983 TIME_POSIX_TO_WIN(atime, actime);
984 TIME_POSIX_TO_WIN(mtime, wrtime);
985 SetFileTime(f, NULL, &actime, &wrtime);
986 }
987
988 CloseHandle(f);
989 if (wrerror) {
990 run_err("%s: Write error", namebuf);
991 continue;
992 }
993 back->send("", 1);
994 }
995 }
996
997 /*
998 * We will copy local files to a remote server.
999 */
1000 static void toremote(int argc, char *argv[])
1001 {
1002 char *src, *targ, *host, *user;
1003 char *cmd;
1004 int i;
1005
1006 targ = argv[argc - 1];
1007
1008 /* Separate host from filename */
1009 host = targ;
1010 targ = colon(targ);
1011 if (targ == NULL)
1012 bump("targ == NULL in toremote()");
1013 *targ++ = '\0';
1014 if (*targ == '\0')
1015 targ = ".";
1016 /* Substitute "." for emtpy target */
1017
1018 /* Separate host and username */
1019 user = host;
1020 host = strrchr(host, '@');
1021 if (host == NULL) {
1022 host = user;
1023 user = NULL;
1024 } else {
1025 *host++ = '\0';
1026 if (*user == '\0')
1027 user = NULL;
1028 }
1029
1030 if (argc == 2) {
1031 /* Find out if the source filespec covers multiple files
1032 if so, we should set the targetshouldbedirectory flag */
1033 HANDLE fh;
1034 WIN32_FIND_DATA fdat;
1035 if (colon(argv[0]) != NULL)
1036 bump("%s: Remote to remote not supported", argv[0]);
1037 fh = FindFirstFile(argv[0], &fdat);
1038 if (fh == INVALID_HANDLE_VALUE)
1039 bump("%s: No such file or directory\n", argv[0]);
1040 if (FindNextFile(fh, &fdat))
1041 targetshouldbedirectory = 1;
1042 FindClose(fh);
1043 }
1044
1045 cmd = smalloc(strlen(targ) + 100);
1046 sprintf(cmd, "scp%s%s%s%s -t %s",
1047 verbose ? " -v" : "",
1048 recursive ? " -r" : "",
1049 preserve ? " -p" : "",
1050 targetshouldbedirectory ? " -d" : "", targ);
1051 do_cmd(host, user, cmd);
1052 sfree(cmd);
1053
1054 (void) response();
1055
1056 for (i = 0; i < argc - 1; i++) {
1057 HANDLE dir;
1058 WIN32_FIND_DATA fdat;
1059 src = argv[i];
1060 if (colon(src) != NULL) {
1061 tell_user(stderr, "%s: Remote to remote not supported\n", src);
1062 errs++;
1063 continue;
1064 }
1065 dir = FindFirstFile(src, &fdat);
1066 if (dir == INVALID_HANDLE_VALUE) {
1067 run_err("%s: No such file or directory", src);
1068 continue;
1069 }
1070 do {
1071 char *last;
1072 char namebuf[2048];
1073 /*
1074 * Ensure that . and .. are never matched by wildcards,
1075 * but only by deliberate action.
1076 */
1077 if (!strcmp(fdat.cFileName, ".") ||
1078 !strcmp(fdat.cFileName, "..")) {
1079 /*
1080 * Find*File has returned a special dir. We require
1081 * that _either_ `src' ends in a backslash followed
1082 * by that string, _or_ `src' is precisely that
1083 * string.
1084 */
1085 int len = strlen(src), dlen = strlen(fdat.cFileName);
1086 if (len == dlen && !strcmp(src, fdat.cFileName)) {
1087 /* ok */ ;
1088 } else if (len > dlen + 1 && src[len - dlen - 1] == '\\' &&
1089 !strcmp(src + len - dlen, fdat.cFileName)) {
1090 /* ok */ ;
1091 } else
1092 continue; /* ignore this one */
1093 }
1094 if (strlen(src) + strlen(fdat.cFileName) >= sizeof(namebuf)) {
1095 tell_user(stderr, "%s: Name too long", src);
1096 continue;
1097 }
1098 strcpy(namebuf, src);
1099 if ((last = strrchr(namebuf, '/')) == NULL)
1100 last = namebuf;
1101 else
1102 last++;
1103 if (strrchr(last, '\\') != NULL)
1104 last = strrchr(last, '\\') + 1;
1105 if (last == namebuf && strrchr(namebuf, ':') != NULL)
1106 last = strchr(namebuf, ':') + 1;
1107 strcpy(last, fdat.cFileName);
1108 source(namebuf);
1109 } while (FindNextFile(dir, &fdat));
1110 FindClose(dir);
1111 }
1112 }
1113
1114 /*
1115 * We will copy files from a remote server to the local machine.
1116 */
1117 static void tolocal(int argc, char *argv[])
1118 {
1119 char *src, *targ, *host, *user;
1120 char *cmd;
1121
1122 if (argc != 2)
1123 bump("More than one remote source not supported");
1124
1125 src = argv[0];
1126 targ = argv[1];
1127
1128 /* Separate host from filename */
1129 host = src;
1130 src = colon(src);
1131 if (src == NULL)
1132 bump("Local to local copy not supported");
1133 *src++ = '\0';
1134 if (*src == '\0')
1135 src = ".";
1136 /* Substitute "." for empty filename */
1137
1138 /* Separate username and hostname */
1139 user = host;
1140 host = strrchr(host, '@');
1141 if (host == NULL) {
1142 host = user;
1143 user = NULL;
1144 } else {
1145 *host++ = '\0';
1146 if (*user == '\0')
1147 user = NULL;
1148 }
1149
1150 cmd = smalloc(strlen(src) + 100);
1151 sprintf(cmd, "scp%s%s%s%s -f %s",
1152 verbose ? " -v" : "",
1153 recursive ? " -r" : "",
1154 preserve ? " -p" : "",
1155 targetshouldbedirectory ? " -d" : "", src);
1156 do_cmd(host, user, cmd);
1157 sfree(cmd);
1158
1159 sink(targ, src);
1160 }
1161
1162 /*
1163 * We will issue a list command to get a remote directory.
1164 */
1165 static void get_dir_list(int argc, char *argv[])
1166 {
1167 char *src, *host, *user;
1168 char *cmd, *p, *q;
1169 char c;
1170
1171 src = argv[0];
1172
1173 /* Separate host from filename */
1174 host = src;
1175 src = colon(src);
1176 if (src == NULL)
1177 bump("Local to local copy not supported");
1178 *src++ = '\0';
1179 if (*src == '\0')
1180 src = ".";
1181 /* Substitute "." for empty filename */
1182
1183 /* Separate username and hostname */
1184 user = host;
1185 host = strrchr(host, '@');
1186 if (host == NULL) {
1187 host = user;
1188 user = NULL;
1189 } else {
1190 *host++ = '\0';
1191 if (*user == '\0')
1192 user = NULL;
1193 }
1194
1195 cmd = smalloc(4 * strlen(src) + 100);
1196 strcpy(cmd, "ls -la '");
1197 p = cmd + strlen(cmd);
1198 for (q = src; *q; q++) {
1199 if (*q == '\'') {
1200 *p++ = '\'';
1201 *p++ = '\\';
1202 *p++ = '\'';
1203 *p++ = '\'';
1204 } else {
1205 *p++ = *q;
1206 }
1207 }
1208 *p++ = '\'';
1209 *p = '\0';
1210
1211 do_cmd(host, user, cmd);
1212 sfree(cmd);
1213
1214 while (ssh_scp_recv(&c, 1) > 0)
1215 tell_char(stdout, c);
1216 }
1217
1218 /*
1219 * Initialize the Win$ock driver.
1220 */
1221 static void init_winsock(void)
1222 {
1223 WORD winsock_ver;
1224 WSADATA wsadata;
1225
1226 winsock_ver = MAKEWORD(1, 1);
1227 if (WSAStartup(winsock_ver, &wsadata))
1228 bump("Unable to initialise WinSock");
1229 if (LOBYTE(wsadata.wVersion) != 1 || HIBYTE(wsadata.wVersion) != 1)
1230 bump("WinSock version is incompatible with 1.1");
1231 }
1232
1233 /*
1234 * Short description of parameters.
1235 */
1236 static void usage(void)
1237 {
1238 printf("PuTTY Secure Copy client\n");
1239 printf("%s\n", ver);
1240 printf("Usage: pscp [options] [user@]host:source target\n");
1241 printf
1242 (" pscp [options] source [source...] [user@]host:target\n");
1243 printf(" pscp [options] -ls user@host:filespec\n");
1244 printf("Options:\n");
1245 printf(" -p preserve file attributes\n");
1246 printf(" -q quiet, don't show statistics\n");
1247 printf(" -r copy directories recursively\n");
1248 printf(" -v show verbose messages\n");
1249 printf(" -P port connect to specified port\n");
1250 printf(" -pw passw login with specified password\n");
1251 #if 0
1252 /*
1253 * -gui is an internal option, used by GUI front ends to get
1254 * pscp to pass progress reports back to them. It's not an
1255 * ordinary user-accessible option, so it shouldn't be part of
1256 * the command-line help. The only people who need to know
1257 * about it are programmers, and they can read the source.
1258 */
1259 printf
1260 (" -gui hWnd GUI mode with the windows handle for receiving messages\n");
1261 #endif
1262 exit(1);
1263 }
1264
1265 /*
1266 * Main program (no, really?)
1267 */
1268 int main(int argc, char *argv[])
1269 {
1270 int i;
1271
1272 default_protocol = PROT_TELNET;
1273
1274 flags = FLAG_STDERR;
1275 ssh_get_line = &get_line;
1276 init_winsock();
1277 sk_init();
1278
1279 for (i = 1; i < argc; i++) {
1280 if (argv[i][0] != '-')
1281 break;
1282 if (strcmp(argv[i], "-v") == 0)
1283 verbose = 1, flags |= FLAG_VERBOSE;
1284 else if (strcmp(argv[i], "-r") == 0)
1285 recursive = 1;
1286 else if (strcmp(argv[i], "-p") == 0)
1287 preserve = 1;
1288 else if (strcmp(argv[i], "-q") == 0)
1289 statistics = 0;
1290 else if (strcmp(argv[i], "-h") == 0 || strcmp(argv[i], "-?") == 0)
1291 usage();
1292 else if (strcmp(argv[i], "-P") == 0 && i + 1 < argc)
1293 portnumber = atoi(argv[++i]);
1294 else if (strcmp(argv[i], "-pw") == 0 && i + 1 < argc)
1295 password = argv[++i];
1296 else if (strcmp(argv[i], "-gui") == 0 && i + 1 < argc) {
1297 gui_hwnd = argv[++i];
1298 gui_mode = 1;
1299 } else if (strcmp(argv[i], "-ls") == 0)
1300 list = 1;
1301 else if (strcmp(argv[i], "--") == 0) {
1302 i++;
1303 break;
1304 } else
1305 usage();
1306 }
1307 argc -= i;
1308 argv += i;
1309 back = NULL;
1310
1311 if (list) {
1312 if (argc != 1)
1313 usage();
1314 get_dir_list(argc, argv);
1315
1316 } else {
1317
1318 if (argc < 2)
1319 usage();
1320 if (argc > 2)
1321 targetshouldbedirectory = 1;
1322
1323 if (colon(argv[argc - 1]) != NULL)
1324 toremote(argc, argv);
1325 else
1326 tolocal(argc, argv);
1327 }
1328
1329 if (back != NULL && back->socket() != NULL) {
1330 char ch;
1331 back->special(TS_EOF);
1332 ssh_scp_recv(&ch, 1);
1333 }
1334 WSACleanup();
1335 random_save_seed();
1336
1337 /* GUI Adaptation - August 2000 */
1338 if (gui_mode) {
1339 unsigned int msg_id = WM_RET_ERR_CNT;
1340 if (list)
1341 msg_id = WM_LS_RET_ERR_CNT;
1342 while (!PostMessage
1343 ((HWND) atoi(gui_hwnd), msg_id, (WPARAM) errs,
1344 0 /*lParam */ ))SleepEx(1000, TRUE);
1345 }
1346 return (errs == 0 ? 0 : 1);
1347 }
1348
1349 /* end */