Tidy up the SERIOUS NETWORK ERROR fixes
[sgt/putty] / scp.c
CommitLineData
07d9aa13 1/*
a673e210 2 * scp.c - Scp (Secure Copy) client for PuTTY.
3 * Joris van Rantwijk, Simon Tatham
07d9aa13 4 *
a673e210 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 * (SGT, 2001-09-10: Joris van Rantwijk assures me that although
9 * this file as originally submitted was inspired by, and
10 * _structurally_ based on, ssh-1.2.26's scp.c, there wasn't any
11 * actual code duplicated, so the above comment shouldn't give rise
12 * to licensing issues.)
07d9aa13 13 */
14
07d9aa13 15#include <windows.h>
4d331a77 16#ifndef AUTO_WINSOCK
17#ifdef WINSOCK_TWO
18#include <winsock2.h>
19#else
07d9aa13 20#include <winsock.h>
4d331a77 21#endif
22#endif
07d9aa13 23#include <stdlib.h>
24#include <stdio.h>
25#include <string.h>
fd5e5847 26#include <limits.h>
07d9aa13 27#include <time.h>
feb7fdfe 28#include <assert.h>
07d9aa13 29
30#define PUTTY_DO_GLOBALS
31#include "putty.h"
fd5e5847 32#include "ssh.h"
33#include "sftp.h"
8c3cd914 34#include "winstuff.h"
a9422f39 35#include "storage.h"
07d9aa13 36
07d9aa13 37#define TIME_POSIX_TO_WIN(t, ft) (*(LONGLONG*)&(ft) = \
c51a56e2 38 ((LONGLONG) (t) + (LONGLONG) 11644473600) * (LONGLONG) 10000000)
07d9aa13 39#define TIME_WIN_TO_POSIX(ft, t) ((t) = (unsigned long) \
c51a56e2 40 ((*(LONGLONG*)&(ft)) / (LONGLONG) 10000000 - (LONGLONG) 11644473600))
07d9aa13 41
cc87246d 42/* GUI Adaptation - Sept 2000 */
43#define WM_APP_BASE 0x8000
44#define WM_STD_OUT_CHAR ( WM_APP_BASE+400 )
45#define WM_STD_ERR_CHAR ( WM_APP_BASE+401 )
46#define WM_STATS_CHAR ( WM_APP_BASE+402 )
47#define WM_STATS_SIZE ( WM_APP_BASE+403 )
48#define WM_STATS_PERCENT ( WM_APP_BASE+404 )
49#define WM_STATS_ELAPSED ( WM_APP_BASE+405 )
50#define WM_RET_ERR_CNT ( WM_APP_BASE+406 )
51#define WM_LS_RET_ERR_CNT ( WM_APP_BASE+407 )
52
2bc6a386 53static int list = 0;
fb09bf1c 54static int verbose = 0;
07d9aa13 55static int recursive = 0;
56static int preserve = 0;
57static int targetshouldbedirectory = 0;
58static int statistics = 1;
b8a19193 59static int portnumber = 0;
b1daf518 60static int prev_stats_len = 0;
cd1f39ab 61static int scp_unsafe_mode = 0;
b8a19193 62static char *password = NULL;
07d9aa13 63static int errs = 0;
cc87246d 64/* GUI Adaptation - Sept 2000 */
65#define NAME_STR_MAX 2048
32874aea 66static char statname[NAME_STR_MAX + 1];
cc87246d 67static unsigned long statsize = 0;
68static int statperct = 0;
90a14a09 69static unsigned long statelapsed = 0;
cc87246d 70static int gui_mode = 0;
71static char *gui_hwnd = NULL;
fd5e5847 72static int using_sftp = 0;
07d9aa13 73
74static void source(char *src);
75static void rsource(char *src);
ca2d5943 76static void sink(char *targ, char *src);
cc87246d 77/* GUI Adaptation - Sept 2000 */
32874aea 78static void tell_char(FILE * stream, char c);
79static void tell_str(FILE * stream, char *str);
80static void tell_user(FILE * stream, char *fmt, ...);
90a14a09 81static void gui_update_stats(char *name, unsigned long size,
32874aea 82 int percentage, unsigned long elapsed);
07d9aa13 83
5471d09a 84/*
85 * The maximum amount of queued data we accept before we stop and
86 * wait for the server to process some.
87 */
88#define MAX_SCP_BUFSIZE 16384
89
32874aea 90void logevent(char *string)
91{
92}
a9422f39 93
760e88b2 94void ldisc_send(char *buf, int len, int interactive)
32874aea 95{
feb7fdfe 96 /*
97 * This is only here because of the calls to ldisc_send(NULL,
98 * 0) in ssh.c. Nothing in PSCP actually needs to use the ldisc
99 * as an ldisc. So if we get called with any real data, I want
100 * to know about it.
101 */
102 assert(len == 0);
103}
104
a9422f39 105void verify_ssh_host_key(char *host, int port, char *keytype,
32874aea 106 char *keystr, char *fingerprint)
107{
a9422f39 108 int ret;
d0718310 109 HANDLE hin;
110 DWORD savemode, i;
a9422f39 111
112 static const char absentmsg[] =
32874aea 113 "The server's host key is not cached in the registry. You\n"
114 "have no guarantee that the server is the computer you\n"
115 "think it is.\n"
116 "The server's key fingerprint is:\n"
117 "%s\n"
118 "If you trust this host, enter \"y\" to add the key to\n"
119 "PuTTY's cache and carry on connecting.\n"
d0718310 120 "If you want to carry on connecting just once, without\n"
121 "adding the key to the cache, enter \"n\".\n"
122 "If you do not trust this host, press Return to abandon the\n"
123 "connection.\n"
124 "Store key in cache? (y/n) ";
a9422f39 125
126 static const char wrongmsg[] =
32874aea 127 "WARNING - POTENTIAL SECURITY BREACH!\n"
128 "The server's host key does not match the one PuTTY has\n"
129 "cached in the registry. This means that either the\n"
130 "server administrator has changed the host key, or you\n"
131 "have actually connected to another computer pretending\n"
132 "to be the server.\n"
133 "The new key fingerprint is:\n"
134 "%s\n"
135 "If you were expecting this change and trust the new key,\n"
d0718310 136 "enter \"y\" to update PuTTY's cache and continue connecting.\n"
32874aea 137 "If you want to carry on connecting but without updating\n"
d0718310 138 "the cache, enter \"n\".\n"
32874aea 139 "If you want to abandon the connection completely, press\n"
140 "Return to cancel. Pressing Return is the ONLY guaranteed\n"
141 "safe choice.\n"
142 "Update cached key? (y/n, Return cancels connection) ";
a9422f39 143
144 static const char abandoned[] = "Connection abandoned.\n";
145
146 char line[32];
147
148 /*
149 * Verify the key against the registry.
150 */
151 ret = verify_host_key(host, port, keytype, keystr);
152
32874aea 153 if (ret == 0) /* success - key matched OK */
154 return;
d0718310 155
32874aea 156 if (ret == 2) { /* key was different */
157 fprintf(stderr, wrongmsg, fingerprint);
b4453f49 158 fflush(stderr);
a9422f39 159 }
32874aea 160 if (ret == 1) { /* key was absent */
161 fprintf(stderr, absentmsg, fingerprint);
d0718310 162 fflush(stderr);
163 }
164
165 hin = GetStdHandle(STD_INPUT_HANDLE);
166 GetConsoleMode(hin, &savemode);
167 SetConsoleMode(hin, (savemode | ENABLE_ECHO_INPUT |
168 ENABLE_PROCESSED_INPUT | ENABLE_LINE_INPUT));
169 ReadFile(hin, line, sizeof(line) - 1, &i, NULL);
170 SetConsoleMode(hin, savemode);
171
172 if (line[0] != '\0' && line[0] != '\r' && line[0] != '\n') {
173 if (line[0] == 'y' || line[0] == 'Y')
32874aea 174 store_host_key(host, port, keytype, keystr);
d0718310 175 } else {
176 fprintf(stderr, abandoned);
177 exit(0);
a9422f39 178 }
179}
fb09bf1c 180
ca20bfcf 181/*
182 * Ask whether the selected cipher is acceptable (since it was
183 * below the configured 'warn' threshold).
184 * cs: 0 = both ways, 1 = client->server, 2 = server->client
185 */
186void askcipher(char *ciphername, int cs)
187{
188 HANDLE hin;
189 DWORD savemode, i;
190
191 static const char msg[] =
192 "The first %scipher supported by the server is\n"
193 "%s, which is below the configured warning threshold.\n"
194 "Continue with connection? (y/n) ";
195 static const char abandoned[] = "Connection abandoned.\n";
196
197 char line[32];
198
199 fprintf(stderr, msg,
200 (cs == 0) ? "" :
201 (cs == 1) ? "client-to-server " :
202 "server-to-client ",
203 ciphername);
204 fflush(stderr);
205
206 hin = GetStdHandle(STD_INPUT_HANDLE);
207 GetConsoleMode(hin, &savemode);
208 SetConsoleMode(hin, (savemode | ENABLE_ECHO_INPUT |
209 ENABLE_PROCESSED_INPUT | ENABLE_LINE_INPUT));
210 ReadFile(hin, line, sizeof(line) - 1, &i, NULL);
211 SetConsoleMode(hin, savemode);
212
213 if (line[0] == 'y' || line[0] == 'Y') {
214 return;
215 } else {
216 fprintf(stderr, abandoned);
217 exit(0);
218 }
219}
220
cc87246d 221/* GUI Adaptation - Sept 2000 */
75cab814 222static void send_msg(HWND h, UINT message, WPARAM wParam)
cc87246d 223{
32874aea 224 while (!PostMessage(h, message, wParam, 0))
225 SleepEx(1000, TRUE);
cc87246d 226}
227
32874aea 228static void tell_char(FILE * stream, char c)
cc87246d 229{
230 if (!gui_mode)
231 fputc(c, stream);
32874aea 232 else {
cc87246d 233 unsigned int msg_id = WM_STD_OUT_CHAR;
32874aea 234 if (stream == stderr)
235 msg_id = WM_STD_ERR_CHAR;
236 send_msg((HWND) atoi(gui_hwnd), msg_id, (WPARAM) c);
cc87246d 237 }
238}
239
32874aea 240static void tell_str(FILE * stream, char *str)
cc87246d 241{
242 unsigned int i;
243
32874aea 244 for (i = 0; i < strlen(str); ++i)
cc87246d 245 tell_char(stream, str[i]);
246}
247
32874aea 248static void tell_user(FILE * stream, char *fmt, ...)
cc87246d 249{
32874aea 250 char str[0x100]; /* Make the size big enough */
cc87246d 251 va_list ap;
252 va_start(ap, fmt);
253 vsprintf(str, fmt, ap);
254 va_end(ap);
255 strcat(str, "\n");
256 tell_str(stream, str);
257}
258
32874aea 259static void gui_update_stats(char *name, unsigned long size,
260 int percentage, unsigned long elapsed)
cc87246d 261{
262 unsigned int i;
263
32874aea 264 if (strcmp(name, statname) != 0) {
265 for (i = 0; i < strlen(name); ++i)
266 send_msg((HWND) atoi(gui_hwnd), WM_STATS_CHAR,
267 (WPARAM) name[i]);
268 send_msg((HWND) atoi(gui_hwnd), WM_STATS_CHAR, (WPARAM) '\n');
269 strcpy(statname, name);
cc87246d 270 }
32874aea 271 if (statsize != size) {
272 send_msg((HWND) atoi(gui_hwnd), WM_STATS_SIZE, (WPARAM) size);
cc87246d 273 statsize = size;
274 }
32874aea 275 if (statelapsed != elapsed) {
276 send_msg((HWND) atoi(gui_hwnd), WM_STATS_ELAPSED,
277 (WPARAM) elapsed);
cc87246d 278 statelapsed = elapsed;
279 }
32874aea 280 if (statperct != percentage) {
281 send_msg((HWND) atoi(gui_hwnd), WM_STATS_PERCENT,
282 (WPARAM) percentage);
cc87246d 283 statperct = percentage;
284 }
285}
286
fb09bf1c 287/*
07d9aa13 288 * Print an error message and perform a fatal exit.
289 */
290void fatalbox(char *fmt, ...)
291{
32874aea 292 char str[0x100]; /* Make the size big enough */
c51a56e2 293 va_list ap;
294 va_start(ap, fmt);
120e4b40 295 strcpy(str, "Fatal: ");
32874aea 296 vsprintf(str + strlen(str), fmt, ap);
c51a56e2 297 va_end(ap);
cc87246d 298 strcat(str, "\n");
299 tell_str(stderr, str);
2bc6a386 300 errs++;
301
302 if (gui_mode) {
303 unsigned int msg_id = WM_RET_ERR_CNT;
304 if (list)
305 msg_id = WM_LS_RET_ERR_CNT;
306 while (!PostMessage
307 ((HWND) atoi(gui_hwnd), msg_id, (WPARAM) errs,
308 0 /*lParam */ ))SleepEx(1000, TRUE);
309 }
cc87246d 310
c51a56e2 311 exit(1);
07d9aa13 312}
8d5de777 313void connection_fatal(char *fmt, ...)
314{
32874aea 315 char str[0x100]; /* Make the size big enough */
8d5de777 316 va_list ap;
317 va_start(ap, fmt);
120e4b40 318 strcpy(str, "Fatal: ");
32874aea 319 vsprintf(str + strlen(str), fmt, ap);
8d5de777 320 va_end(ap);
321 strcat(str, "\n");
322 tell_str(stderr, str);
2bc6a386 323 errs++;
324
325 if (gui_mode) {
326 unsigned int msg_id = WM_RET_ERR_CNT;
327 if (list)
328 msg_id = WM_LS_RET_ERR_CNT;
329 while (!PostMessage
330 ((HWND) atoi(gui_hwnd), msg_id, (WPARAM) errs,
331 0 /*lParam */ ))SleepEx(1000, TRUE);
332 }
8d5de777 333
334 exit(1);
335}
07d9aa13 336
07d9aa13 337/*
8df7a775 338 * Be told what socket we're supposed to be using.
339 */
340static SOCKET scp_ssh_socket;
32874aea 341char *do_select(SOCKET skt, int startup)
342{
8df7a775 343 if (startup)
344 scp_ssh_socket = skt;
345 else
346 scp_ssh_socket = INVALID_SOCKET;
347 return NULL;
348}
349extern int select_result(WPARAM, LPARAM);
350
351/*
3bdaf79d 352 * Receive a block of data from the SSH link. Block until all data
353 * is available.
354 *
355 * To do this, we repeatedly call the SSH protocol module, with our
fe50e814 356 * own trap in from_backend() to catch the data that comes back. We
357 * do this until we have enough data.
3bdaf79d 358 */
8df7a775 359
32874aea 360static unsigned char *outptr; /* where to put the data */
361static unsigned outlen; /* how much data required */
3bdaf79d 362static unsigned char *pending = NULL; /* any spare data */
32874aea 363static unsigned pendlen = 0, pendsize = 0; /* length and phys. size of buffer */
5471d09a 364int from_backend(int is_stderr, char *data, int datalen)
32874aea 365{
366 unsigned char *p = (unsigned char *) data;
367 unsigned len = (unsigned) datalen;
fe50e814 368
3bdaf79d 369 /*
fe50e814 370 * stderr data is just spouted to local stderr and otherwise
371 * ignored.
3bdaf79d 372 */
fe50e814 373 if (is_stderr) {
374 fwrite(data, 1, len, stderr);
5471d09a 375 return 0;
fe50e814 376 }
3bdaf79d 377
3bdaf79d 378 /*
379 * If this is before the real session begins, just return.
380 */
381 if (!outptr)
5471d09a 382 return 0;
3bdaf79d 383
384 if (outlen > 0) {
32874aea 385 unsigned used = outlen;
386 if (used > len)
387 used = len;
388 memcpy(outptr, p, used);
389 outptr += used;
390 outlen -= used;
391 p += used;
392 len -= used;
3bdaf79d 393 }
394
395 if (len > 0) {
32874aea 396 if (pendsize < pendlen + len) {
397 pendsize = pendlen + len + 4096;
398 pending = (pending ? srealloc(pending, pendsize) :
399 smalloc(pendsize));
400 if (!pending)
401 fatalbox("Out of memory");
402 }
403 memcpy(pending + pendlen, p, len);
404 pendlen += len;
3bdaf79d 405 }
5471d09a 406
407 return 0;
408}
409static int scp_process_network_event(void)
410{
411 fd_set readfds;
412
413 FD_ZERO(&readfds);
414 FD_SET(scp_ssh_socket, &readfds);
415 if (select(1, &readfds, NULL, NULL, NULL) < 0)
416 return 0; /* doom */
417 select_result((WPARAM) scp_ssh_socket, (LPARAM) FD_READ);
418 return 1;
3bdaf79d 419}
32874aea 420static int ssh_scp_recv(unsigned char *buf, int len)
421{
3bdaf79d 422 outptr = buf;
423 outlen = len;
424
425 /*
426 * See if the pending-input block contains some of what we
427 * need.
428 */
429 if (pendlen > 0) {
32874aea 430 unsigned pendused = pendlen;
431 if (pendused > outlen)
432 pendused = outlen;
3bdaf79d 433 memcpy(outptr, pending, pendused);
32874aea 434 memmove(pending, pending + pendused, pendlen - pendused);
3bdaf79d 435 outptr += pendused;
436 outlen -= pendused;
32874aea 437 pendlen -= pendused;
438 if (pendlen == 0) {
439 pendsize = 0;
440 sfree(pending);
441 pending = NULL;
442 }
443 if (outlen == 0)
444 return len;
3bdaf79d 445 }
446
447 while (outlen > 0) {
5471d09a 448 if (!scp_process_network_event())
32874aea 449 return 0; /* doom */
3bdaf79d 450 }
451
452 return len;
453}
454
455/*
456 * Loop through the ssh connection and authentication process.
457 */
32874aea 458static void ssh_scp_init(void)
459{
8df7a775 460 if (scp_ssh_socket == INVALID_SOCKET)
3bdaf79d 461 return;
462 while (!back->sendok()) {
32874aea 463 fd_set readfds;
464 FD_ZERO(&readfds);
465 FD_SET(scp_ssh_socket, &readfds);
466 if (select(1, &readfds, NULL, NULL, NULL) < 0)
467 return; /* doom */
468 select_result((WPARAM) scp_ssh_socket, (LPARAM) FD_READ);
3bdaf79d 469 }
fd5e5847 470 using_sftp = !ssh_fallback_cmd;
3bdaf79d 471}
472
473/*
07d9aa13 474 * Print an error message and exit after closing the SSH link.
475 */
476static void bump(char *fmt, ...)
477{
32874aea 478 char str[0x100]; /* Make the size big enough */
c51a56e2 479 va_list ap;
480 va_start(ap, fmt);
120e4b40 481 strcpy(str, "Fatal: ");
32874aea 482 vsprintf(str + strlen(str), fmt, ap);
c51a56e2 483 va_end(ap);
cc87246d 484 strcat(str, "\n");
485 tell_str(stderr, str);
2bc6a386 486 errs++;
cc87246d 487
eba78553 488 if (back != NULL && back->socket() != NULL) {
c51a56e2 489 char ch;
3bdaf79d 490 back->special(TS_EOF);
fb09bf1c 491 ssh_scp_recv(&ch, 1);
c51a56e2 492 }
2bc6a386 493
494 if (gui_mode) {
495 unsigned int msg_id = WM_RET_ERR_CNT;
496 if (list)
497 msg_id = WM_LS_RET_ERR_CNT;
498 while (!PostMessage
499 ((HWND) atoi(gui_hwnd), msg_id, (WPARAM) errs,
500 0 /*lParam */ ))SleepEx(1000, TRUE);
501 }
502
c51a56e2 503 exit(1);
07d9aa13 504}
505
fa17a66e 506static int get_line(const char *prompt, char *str, int maxlen, int is_pw)
07d9aa13 507{
c51a56e2 508 HANDLE hin, hout;
fa17a66e 509 DWORD savemode, newmode, i;
b8a19193 510
fa17a66e 511 if (is_pw && password) {
32874aea 512 static int tried_once = 0;
513
514 if (tried_once) {
515 return 0;
516 } else {
517 strncpy(str, password, maxlen);
518 str[maxlen - 1] = '\0';
519 tried_once = 1;
520 return 1;
521 }
b8a19193 522 }
07d9aa13 523
cc87246d 524 /* GUI Adaptation - Sept 2000 */
525 if (gui_mode) {
32874aea 526 if (maxlen > 0)
527 str[0] = '\0';
cc87246d 528 } else {
529 hin = GetStdHandle(STD_INPUT_HANDLE);
530 hout = GetStdHandle(STD_OUTPUT_HANDLE);
531 if (hin == INVALID_HANDLE_VALUE || hout == INVALID_HANDLE_VALUE)
532 bump("Cannot get standard input/output handles");
07d9aa13 533
cc87246d 534 GetConsoleMode(hin, &savemode);
32874aea 535 newmode = savemode | ENABLE_PROCESSED_INPUT | ENABLE_LINE_INPUT;
536 if (is_pw)
537 newmode &= ~ENABLE_ECHO_INPUT;
538 else
539 newmode |= ENABLE_ECHO_INPUT;
540 SetConsoleMode(hin, newmode);
07d9aa13 541
cc87246d 542 WriteFile(hout, prompt, strlen(prompt), &i, NULL);
32874aea 543 ReadFile(hin, str, maxlen - 1, &i, NULL);
07d9aa13 544
cc87246d 545 SetConsoleMode(hin, savemode);
07d9aa13 546
32874aea 547 if ((int) i > maxlen)
548 i = maxlen - 1;
549 else
550 i = i - 2;
cc87246d 551 str[i] = '\0';
07d9aa13 552
fa17a66e 553 if (is_pw)
32874aea 554 WriteFile(hout, "\r\n", 2, &i, NULL);
cc87246d 555 }
85ee8208 556
557 return 1;
07d9aa13 558}
559
07d9aa13 560/*
561 * Open an SSH connection to user@host and execute cmd.
562 */
563static void do_cmd(char *host, char *user, char *cmd)
564{
c51a56e2 565 char *err, *realhost;
f5e6a5c6 566 DWORD namelen;
c51a56e2 567
568 if (host == NULL || host[0] == '\0')
569 bump("Empty host name");
570
571 /* Try to load settings for this host */
a9422f39 572 do_defaults(host, &cfg);
c51a56e2 573 if (cfg.host[0] == '\0') {
574 /* No settings for this host; use defaults */
32874aea 575 do_defaults(NULL, &cfg);
576 strncpy(cfg.host, host, sizeof(cfg.host) - 1);
577 cfg.host[sizeof(cfg.host) - 1] = '\0';
c51a56e2 578 cfg.port = 22;
579 }
580
581 /* Set username */
582 if (user != NULL && user[0] != '\0') {
32874aea 583 strncpy(cfg.username, user, sizeof(cfg.username) - 1);
584 cfg.username[sizeof(cfg.username) - 1] = '\0';
c51a56e2 585 } else if (cfg.username[0] == '\0') {
f5e6a5c6 586 namelen = 0;
587 if (GetUserName(user, &namelen) == FALSE)
588 bump("Empty user name");
93558b21 589 user = smalloc(namelen * sizeof(char));
f5e6a5c6 590 GetUserName(user, &namelen);
32874aea 591 if (verbose)
592 tell_user(stderr, "Guessing user name: %s", user);
593 strncpy(cfg.username, user, sizeof(cfg.username) - 1);
594 cfg.username[sizeof(cfg.username) - 1] = '\0';
f5e6a5c6 595 free(user);
c51a56e2 596 }
597
598 if (cfg.protocol != PROT_SSH)
599 cfg.port = 22;
600
ed89e8a5 601 if (portnumber)
602 cfg.port = portnumber;
603
fd5e5847 604 /*
d27b4a18 605 * Disable scary things which shouldn't be enabled for simple
606 * things like SCP and SFTP: agent forwarding, port forwarding,
607 * X forwarding.
608 */
609 cfg.x11_forward = 0;
610 cfg.agentfwd = 0;
611 cfg.portfwd[0] = cfg.portfwd[1] = '\0';
612
613 /*
fd5e5847 614 * Attempt to start the SFTP subsystem as a first choice,
615 * falling back to the provided scp command if that fails.
616 */
617 strcpy(cfg.remote_cmd, "sftp");
618 cfg.ssh_subsys = TRUE;
619 cfg.remote_cmd_ptr2 = cmd;
620 cfg.ssh_subsys2 = FALSE;
3bdaf79d 621 cfg.nopty = TRUE;
622
623 back = &ssh_backend;
624
8df7a775 625 err = back->init(cfg.host, cfg.port, &realhost);
c51a56e2 626 if (err != NULL)
627 bump("ssh_init: %s", err);
3bdaf79d 628 ssh_scp_init();
c51a56e2 629 if (verbose && realhost != NULL)
cc87246d 630 tell_user(stderr, "Connected to %s\n", realhost);
6e1ebb76 631 sfree(realhost);
07d9aa13 632}
633
07d9aa13 634/*
635 * Update statistic information about current file.
636 */
637static void print_stats(char *name, unsigned long size, unsigned long done,
32874aea 638 time_t start, time_t now)
07d9aa13 639{
c51a56e2 640 float ratebs;
641 unsigned long eta;
642 char etastr[10];
643 int pct;
b1daf518 644 int len;
c51a56e2 645
cc87246d 646 /* GUI Adaptation - Sept 2000 */
647 if (gui_mode)
32874aea 648 gui_update_stats(name, size, (int) (100 * (done * 1.0 / size)),
649 (unsigned long) difftime(now, start));
cc87246d 650 else {
651 if (now > start)
652 ratebs = (float) done / (now - start);
653 else
654 ratebs = (float) done;
c51a56e2 655
cc87246d 656 if (ratebs < 1.0)
657 eta = size - done;
658 else
659 eta = (unsigned long) ((size - done) / ratebs);
660 sprintf(etastr, "%02ld:%02ld:%02ld",
661 eta / 3600, (eta % 3600) / 60, eta % 60);
c51a56e2 662
5578d18e 663 pct = (int) (100 * (done * 1.0 / size));
c51a56e2 664
b1daf518 665 len = printf("\r%-25.25s | %10ld kB | %5.1f kB/s | ETA: %8s | %3d%%",
666 name, done / 1024, ratebs / 1024.0, etastr, pct);
667 if (len < prev_stats_len)
668 printf("%*s", prev_stats_len - len, "");
669 prev_stats_len = len;
c51a56e2 670
cc87246d 671 if (done == size)
672 printf("\n");
673 }
07d9aa13 674}
675
07d9aa13 676/*
677 * Find a colon in str and return a pointer to the colon.
39ddf0ff 678 * This is used to separate hostname from filename.
07d9aa13 679 */
32874aea 680static char *colon(char *str)
07d9aa13 681{
c51a56e2 682 /* We ignore a leading colon, since the hostname cannot be
32874aea 683 empty. We also ignore a colon as second character because
684 of filenames like f:myfile.txt. */
685 if (str[0] == '\0' || str[0] == ':' || str[1] == ':')
c51a56e2 686 return (NULL);
32874aea 687 while (*str != '\0' && *str != ':' && *str != '/' && *str != '\\')
c51a56e2 688 str++;
689 if (*str == ':')
690 return (str);
691 else
692 return (NULL);
07d9aa13 693}
694
07d9aa13 695/*
03f64569 696 * Return a pointer to the portion of str that comes after the last
b3dcd9b2 697 * slash (or backslash or colon, if `local' is TRUE).
03f64569 698 */
4eb24e3a 699static char *stripslashes(char *str, int local)
03f64569 700{
701 char *p;
702
b3dcd9b2 703 if (local) {
704 p = strchr(str, ':');
705 if (p) str = p+1;
706 }
707
03f64569 708 p = strrchr(str, '/');
709 if (p) str = p+1;
710
4eb24e3a 711 if (local) {
712 p = strrchr(str, '\\');
713 if (p) str = p+1;
714 }
03f64569 715
716 return str;
717}
718
719/*
fd5e5847 720 * Determine whether a string is entirely composed of dots.
721 */
722static int is_dots(char *str)
723{
724 return str[strspn(str, ".")] == '\0';
725}
726
727/*
07d9aa13 728 * Wait for a response from the other side.
729 * Return 0 if ok, -1 if error.
730 */
731static int response(void)
732{
c51a56e2 733 char ch, resp, rbuf[2048];
734 int p;
735
fb09bf1c 736 if (ssh_scp_recv(&resp, 1) <= 0)
c51a56e2 737 bump("Lost connection");
738
739 p = 0;
740 switch (resp) {
32874aea 741 case 0: /* ok */
c51a56e2 742 return (0);
743 default:
744 rbuf[p++] = resp;
745 /* fallthrough */
32874aea 746 case 1: /* error */
747 case 2: /* fatal error */
c51a56e2 748 do {
fb09bf1c 749 if (ssh_scp_recv(&ch, 1) <= 0)
c51a56e2 750 bump("Protocol error: Lost connection");
751 rbuf[p++] = ch;
752 } while (p < sizeof(rbuf) && ch != '\n');
32874aea 753 rbuf[p - 1] = '\0';
c51a56e2 754 if (resp == 1)
cc87246d 755 tell_user(stderr, "%s\n", rbuf);
c51a56e2 756 else
757 bump("%s", rbuf);
758 errs++;
759 return (-1);
760 }
07d9aa13 761}
762
fd5e5847 763int sftp_recvdata(char *buf, int len)
764{
765 return ssh_scp_recv(buf, len);
766}
767int sftp_senddata(char *buf, int len)
768{
769 back->send((unsigned char *) buf, len);
770 return 1;
771}
772
773/* ----------------------------------------------------------------------
774 * sftp-based replacement for the hacky `pscp -ls'.
775 */
776static int sftp_ls_compare(const void *av, const void *bv)
777{
778 const struct fxp_name *a = (const struct fxp_name *) av;
779 const struct fxp_name *b = (const struct fxp_name *) bv;
780 return strcmp(a->filename, b->filename);
781}
782void scp_sftp_listdir(char *dirname)
783{
784 struct fxp_handle *dirh;
785 struct fxp_names *names;
786 struct fxp_name *ournames;
787 int nnames, namesize;
fd5e5847 788 int i;
789
790 printf("Listing directory %s\n", dirname);
791
792 dirh = fxp_opendir(dirname);
793 if (dirh == NULL) {
cdcbdf3b 794 printf("Unable to open %s: %s\n", dirname, fxp_error());
fd5e5847 795 } else {
796 nnames = namesize = 0;
797 ournames = NULL;
798
799 while (1) {
800
801 names = fxp_readdir(dirh);
802 if (names == NULL) {
803 if (fxp_error_type() == SSH_FX_EOF)
804 break;
cdcbdf3b 805 printf("Reading directory %s: %s\n", dirname, fxp_error());
fd5e5847 806 break;
807 }
808 if (names->nnames == 0) {
809 fxp_free_names(names);
810 break;
811 }
812
813 if (nnames + names->nnames >= namesize) {
814 namesize += names->nnames + 128;
815 ournames =
816 srealloc(ournames, namesize * sizeof(*ournames));
817 }
818
819 for (i = 0; i < names->nnames; i++)
820 ournames[nnames++] = names->names[i];
821
822 names->nnames = 0; /* prevent free_names */
823 fxp_free_names(names);
824 }
825 fxp_close(dirh);
826
827 /*
828 * Now we have our filenames. Sort them by actual file
829 * name, and then output the longname parts.
830 */
831 qsort(ournames, nnames, sizeof(*ournames), sftp_ls_compare);
832
833 /*
834 * And print them.
835 */
836 for (i = 0; i < nnames; i++)
837 printf("%s\n", ournames[i].longname);
838 }
839}
840
120e4b40 841/* ----------------------------------------------------------------------
842 * Helper routines that contain the actual SCP protocol elements,
fd5e5847 843 * implemented both as SCP1 and SFTP.
120e4b40 844 */
845
fd5e5847 846static struct scp_sftp_dirstack {
847 struct scp_sftp_dirstack *next;
848 struct fxp_name *names;
849 int namepos, namelen;
850 char *dirpath;
4eb24e3a 851 char *wildcard;
825ec8ee 852 int matched_something; /* wildcard match set was non-empty */
fd5e5847 853} *scp_sftp_dirstack_head;
854static char *scp_sftp_remotepath, *scp_sftp_currentname;
4eb24e3a 855static char *scp_sftp_wildcard;
fd5e5847 856static int scp_sftp_targetisdir, scp_sftp_donethistarget;
857static int scp_sftp_preserve, scp_sftp_recursive;
858static unsigned long scp_sftp_mtime, scp_sftp_atime;
859static int scp_has_times;
860static struct fxp_handle *scp_sftp_filehandle;
861static uint64 scp_sftp_fileoffset;
862
863void scp_source_setup(char *target, int shouldbedir)
864{
865 if (using_sftp) {
866 /*
867 * Find out whether the target filespec is in fact a
868 * directory.
869 */
870 struct fxp_attrs attrs;
871
872 if (!fxp_stat(target, &attrs) ||
873 !(attrs.flags & SSH_FILEXFER_ATTR_PERMISSIONS))
874 scp_sftp_targetisdir = 0;
875 else
876 scp_sftp_targetisdir = (attrs.permissions & 0040000) != 0;
877
878 if (shouldbedir && !scp_sftp_targetisdir) {
879 bump("pscp: remote filespec %s: not a directory\n", target);
880 }
881
882 scp_sftp_remotepath = dupstr(target);
883
884 scp_has_times = 0;
885 } else {
886 (void) response();
887 }
888}
889
120e4b40 890int scp_send_errmsg(char *str)
891{
fd5e5847 892 if (using_sftp) {
893 /* do nothing; we never need to send our errors to the server */
894 } else {
895 back->send("\001", 1); /* scp protocol error prefix */
896 back->send(str, strlen(str));
897 }
120e4b40 898 return 0; /* can't fail */
899}
900
901int scp_send_filetimes(unsigned long mtime, unsigned long atime)
902{
fd5e5847 903 if (using_sftp) {
904 scp_sftp_mtime = mtime;
905 scp_sftp_atime = atime;
906 scp_has_times = 1;
907 return 0;
908 } else {
909 char buf[80];
910 sprintf(buf, "T%lu 0 %lu 0\n", mtime, atime);
911 back->send(buf, strlen(buf));
912 return response();
913 }
120e4b40 914}
915
916int scp_send_filename(char *name, unsigned long size, int modes)
917{
fd5e5847 918 if (using_sftp) {
919 char *fullname;
920 if (scp_sftp_targetisdir) {
921 fullname = dupcat(scp_sftp_remotepath, "/", name, NULL);
922 } else {
923 fullname = dupstr(scp_sftp_remotepath);
924 }
925 scp_sftp_filehandle =
926 fxp_open(fullname, SSH_FXF_WRITE | SSH_FXF_CREAT | SSH_FXF_TRUNC);
927 if (!scp_sftp_filehandle) {
928 tell_user(stderr, "pscp: unable to open %s: %s",
929 fullname, fxp_error());
930 errs++;
931 return 1;
932 }
933 scp_sftp_fileoffset = uint64_make(0, 0);
934 sfree(fullname);
935 return 0;
936 } else {
937 char buf[40];
938 sprintf(buf, "C%04o %lu ", modes, size);
939 back->send(buf, strlen(buf));
940 back->send(name, strlen(name));
941 back->send("\n", 1);
942 return response();
943 }
120e4b40 944}
945
946int scp_send_filedata(char *data, int len)
947{
fd5e5847 948 if (using_sftp) {
949 if (!scp_sftp_filehandle) {
950 return 1;
951 }
952 if (!fxp_write(scp_sftp_filehandle, data, scp_sftp_fileoffset, len)) {
953 tell_user(stderr, "error while writing: %s\n", fxp_error());
954 errs++;
955 return 1;
956 }
957 scp_sftp_fileoffset = uint64_add32(scp_sftp_fileoffset, len);
958 return 0;
959 } else {
960 int bufsize = back->send(data, len);
120e4b40 961
fd5e5847 962 /*
963 * If the network transfer is backing up - that is, the
964 * remote site is not accepting data as fast as we can
965 * produce it - then we must loop on network events until
966 * we have space in the buffer again.
967 */
968 while (bufsize > MAX_SCP_BUFSIZE) {
969 if (!scp_process_network_event())
970 return 1;
971 bufsize = back->sendbuffer();
972 }
973
974 return 0;
975 }
976}
977
978int scp_send_finish(void)
979{
980 if (using_sftp) {
981 struct fxp_attrs attrs;
982 if (!scp_sftp_filehandle) {
120e4b40 983 return 1;
fd5e5847 984 }
985 if (scp_has_times) {
986 attrs.flags = SSH_FILEXFER_ATTR_ACMODTIME;
987 attrs.atime = scp_sftp_atime;
988 attrs.mtime = scp_sftp_mtime;
989 if (!fxp_fsetstat(scp_sftp_filehandle, attrs)) {
990 tell_user(stderr, "unable to set file times: %s\n", fxp_error());
991 errs++;
992 }
993 }
994 fxp_close(scp_sftp_filehandle);
995 scp_has_times = 0;
996 return 0;
997 } else {
998 back->send("", 1);
999 return response();
120e4b40 1000 }
fd5e5847 1001}
120e4b40 1002
fd5e5847 1003char *scp_save_remotepath(void)
1004{
1005 if (using_sftp)
1006 return scp_sftp_remotepath;
1007 else
1008 return NULL;
120e4b40 1009}
1010
fd5e5847 1011void scp_restore_remotepath(char *data)
120e4b40 1012{
fd5e5847 1013 if (using_sftp)
1014 scp_sftp_remotepath = data;
120e4b40 1015}
1016
1017int scp_send_dirname(char *name, int modes)
1018{
fd5e5847 1019 if (using_sftp) {
1020 char *fullname;
1021 char const *err;
1022 struct fxp_attrs attrs;
1023 if (scp_sftp_targetisdir) {
1024 fullname = dupcat(scp_sftp_remotepath, "/", name, NULL);
1025 } else {
1026 fullname = dupstr(scp_sftp_remotepath);
1027 }
1028
1029 /*
1030 * We don't worry about whether we managed to create the
1031 * directory, because if it exists already it's OK just to
1032 * use it. Instead, we will stat it afterwards, and if it
1033 * exists and is a directory we will assume we were either
1034 * successful or it didn't matter.
1035 */
1036 if (!fxp_mkdir(fullname))
1037 err = fxp_error();
1038 else
1039 err = "server reported no error";
1040 if (!fxp_stat(fullname, &attrs) ||
1041 !(attrs.flags & SSH_FILEXFER_ATTR_PERMISSIONS) ||
1042 !(attrs.permissions & 0040000)) {
1043 tell_user(stderr, "unable to create directory %s: %s",
1044 fullname, err);
1045 errs++;
1046 return 1;
1047 }
1048
1049 scp_sftp_remotepath = fullname;
1050
1051 return 0;
1052 } else {
1053 char buf[40];
1054 sprintf(buf, "D%04o 0 ", modes);
1055 back->send(buf, strlen(buf));
1056 back->send(name, strlen(name));
1057 back->send("\n", 1);
1058 return response();
1059 }
120e4b40 1060}
1061
1062int scp_send_enddir(void)
1063{
fd5e5847 1064 if (using_sftp) {
1065 sfree(scp_sftp_remotepath);
1066 return 0;
1067 } else {
1068 back->send("E\n", 2);
1069 return response();
1070 }
1071}
1072
1073/*
1074 * Yes, I know; I have an scp_sink_setup _and_ an scp_sink_init.
1075 * That's bad. The difference is that scp_sink_setup is called once
1076 * right at the start, whereas scp_sink_init is called to
1077 * initialise every level of recursion in the protocol.
1078 */
4eb24e3a 1079int scp_sink_setup(char *source, int preserve, int recursive)
fd5e5847 1080{
1081 if (using_sftp) {
4eb24e3a 1082 char *newsource;
1083 /*
1084 * It's possible that the source string we've been given
1085 * contains a wildcard. If so, we must split the directory
1086 * away from the wildcard itself (throwing an error if any
1087 * wildcardness comes before the final slash) and arrange
1088 * things so that a dirstack entry will be set up.
1089 */
1090 newsource = smalloc(1+strlen(source));
1091 if (!wc_unescape(newsource, source)) {
1092 /* Yes, here we go; it's a wildcard. Bah. */
1093 char *dupsource, *lastpart, *dirpart, *wildcard;
1094 dupsource = dupstr(source);
1095 lastpart = stripslashes(dupsource, 0);
1096 wildcard = dupstr(lastpart);
1097 *lastpart = '\0';
1098 if (*dupsource && dupsource[1]) {
1099 /*
1100 * The remains of dupsource are at least two
1101 * characters long, meaning the pathname wasn't
1102 * empty or just `/'. Hence, we remove the trailing
1103 * slash.
1104 */
1105 lastpart[-1] = '\0';
6b18a524 1106 } else if (!*dupsource) {
1107 /*
1108 * The remains of dupsource are _empty_ - the whole
1109 * pathname was a wildcard. Hence we need to
1110 * replace it with ".".
1111 */
1112 sfree(dupsource);
1113 dupsource = dupstr(".");
4eb24e3a 1114 }
1115
1116 /*
1117 * Now we have separated our string into dupsource (the
1118 * directory part) and wildcard. Both of these will
1119 * need freeing at some point. Next step is to remove
1120 * wildcard escapes from the directory part, throwing
1121 * an error if it contains a real wildcard.
1122 */
1123 dirpart = smalloc(1+strlen(dupsource));
1124 if (!wc_unescape(dirpart, dupsource)) {
1125 tell_user(stderr, "%s: multiple-level wildcards unsupported",
1126 source);
1127 errs++;
1128 sfree(dirpart);
1129 sfree(wildcard);
1130 sfree(dupsource);
1131 return 1;
1132 }
1133
1134 /*
1135 * Now we have dirpart (unescaped, ie a valid remote
1136 * path), and wildcard (a wildcard). This will be
1137 * sufficient to arrange a dirstack entry.
1138 */
1139 scp_sftp_remotepath = dirpart;
1140 scp_sftp_wildcard = wildcard;
1141 sfree(dupsource);
1142 } else {
1143 scp_sftp_remotepath = newsource;
1144 scp_sftp_wildcard = NULL;
1145 }
fd5e5847 1146 scp_sftp_preserve = preserve;
1147 scp_sftp_recursive = recursive;
1148 scp_sftp_donethistarget = 0;
1149 scp_sftp_dirstack_head = NULL;
1150 }
4eb24e3a 1151 return 0;
120e4b40 1152}
1153
1154int scp_sink_init(void)
1155{
fd5e5847 1156 if (!using_sftp) {
1157 back->send("", 1);
1158 }
120e4b40 1159 return 0;
1160}
1161
1162#define SCP_SINK_FILE 1
1163#define SCP_SINK_DIR 2
1164#define SCP_SINK_ENDDIR 3
4eb24e3a 1165#define SCP_SINK_RETRY 4 /* not an action; just try again */
120e4b40 1166struct scp_sink_action {
1167 int action; /* FILE, DIR, ENDDIR */
1168 char *buf; /* will need freeing after use */
1169 char *name; /* filename or dirname (not ENDDIR) */
1170 int mode; /* access mode (not ENDDIR) */
1171 unsigned long size; /* file size (not ENDDIR) */
1172 int settime; /* 1 if atime and mtime are filled */
1173 unsigned long atime, mtime; /* access times for the file */
1174};
1175
1176int scp_get_sink_action(struct scp_sink_action *act)
1177{
fd5e5847 1178 if (using_sftp) {
1179 char *fname;
1180 int must_free_fname;
1181 struct fxp_attrs attrs;
1182 int ret;
1183
1184 if (!scp_sftp_dirstack_head) {
1185 if (!scp_sftp_donethistarget) {
1186 /*
1187 * Simple case: we are only dealing with one file.
1188 */
1189 fname = scp_sftp_remotepath;
1190 must_free_fname = 0;
1191 scp_sftp_donethistarget = 1;
1192 } else {
1193 /*
1194 * Even simpler case: one file _which we've done_.
1195 * Return 1 (finished).
1196 */
1197 return 1;
1198 }
1199 } else {
1200 /*
1201 * We're now in the middle of stepping through a list
1202 * of names returned from fxp_readdir(); so let's carry
1203 * on.
1204 */
1205 struct scp_sftp_dirstack *head = scp_sftp_dirstack_head;
1206 while (head->namepos < head->namelen &&
4eb24e3a 1207 (is_dots(head->names[head->namepos].filename) ||
1208 (head->wildcard &&
1209 !wc_match(head->wildcard,
1210 head->names[head->namepos].filename))))
fd5e5847 1211 head->namepos++; /* skip . and .. */
1212 if (head->namepos < head->namelen) {
825ec8ee 1213 head->matched_something = 1;
fd5e5847 1214 fname = dupcat(head->dirpath, "/",
1215 head->names[head->namepos++].filename,
1216 NULL);
1217 must_free_fname = 1;
1218 } else {
1219 /*
1220 * We've come to the end of the list; pop it off
4eb24e3a 1221 * the stack and return an ENDDIR action (or RETRY
1222 * if this was a wildcard match).
fd5e5847 1223 */
4eb24e3a 1224 if (head->wildcard) {
1225 act->action = SCP_SINK_RETRY;
825ec8ee 1226 if (!head->matched_something) {
1227 tell_user(stderr, "pscp: wildcard '%s' matched "
1228 "no files", head->wildcard);
1229 errs++;
1230 }
4eb24e3a 1231 sfree(head->wildcard);
825ec8ee 1232
4eb24e3a 1233 } else {
1234 act->action = SCP_SINK_ENDDIR;
1235 }
1236
fd5e5847 1237 sfree(head->dirpath);
1238 sfree(head->names);
1239 scp_sftp_dirstack_head = head->next;
1240 sfree(head);
1241
fd5e5847 1242 return 0;
1243 }
1244 }
cd1f39ab 1245
fd5e5847 1246 /*
1247 * Now we have a filename. Stat it, and see if it's a file
1248 * or a directory.
1249 */
1250 ret = fxp_stat(fname, &attrs);
1251 if (!ret || !(attrs.flags & SSH_FILEXFER_ATTR_PERMISSIONS)) {
1252 tell_user(stderr, "unable to identify %s: %s", fname,
1253 ret ? "file type not supplied" : fxp_error());
1254 errs++;
120e4b40 1255 return 1;
fd5e5847 1256 }
1257
1258 if (attrs.permissions & 0040000) {
1259 struct scp_sftp_dirstack *newitem;
1260 struct fxp_handle *dirhandle;
1261 int nnames, namesize;
1262 struct fxp_name *ournames;
1263 struct fxp_names *names;
1264
1265 /*
37dfb97a 1266 * It's a directory. If we're not in recursive mode,
1267 * this merits a complaint (which is fatal if the name
1268 * was specified directly, but not if it was matched by
1269 * a wildcard).
1270 *
1271 * We skip this complaint completely if
1272 * scp_sftp_wildcard is set, because that's an
1273 * indication that we're not actually supposed to
1274 * _recursively_ transfer the dir, just scan it for
1275 * things matching the wildcard.
fd5e5847 1276 */
4eb24e3a 1277 if (!scp_sftp_recursive && !scp_sftp_wildcard) {
fd5e5847 1278 tell_user(stderr, "pscp: %s: is a directory", fname);
1279 errs++;
1280 if (must_free_fname) sfree(fname);
37dfb97a 1281 if (scp_sftp_dirstack_head) {
1282 act->action = SCP_SINK_RETRY;
1283 return 0;
1284 } else {
1285 return 1;
1286 }
120e4b40 1287 }
fd5e5847 1288
1289 /*
1290 * Otherwise, the fun begins. We must fxp_opendir() the
1291 * directory, slurp the filenames into memory, return
4eb24e3a 1292 * SCP_SINK_DIR (unless this is a wildcard match), and
1293 * set targetisdir. The next time we're called, we will
1294 * run through the list of filenames one by one,
1295 * matching them against a wildcard if present.
fd5e5847 1296 *
1297 * If targetisdir is _already_ set (meaning we're
1298 * already in the middle of going through another such
1299 * list), we must push the other (target,namelist) pair
1300 * on a stack.
1301 */
1302 dirhandle = fxp_opendir(fname);
1303 if (!dirhandle) {
1304 tell_user(stderr, "scp: unable to open directory %s: %s",
1305 fname, fxp_error());
1306 if (must_free_fname) sfree(fname);
1307 errs++;
1308 return 1;
1309 }
1310 nnames = namesize = 0;
1311 ournames = NULL;
1312 while (1) {
1313 int i;
1314
1315 names = fxp_readdir(dirhandle);
1316 if (names == NULL) {
1317 if (fxp_error_type() == SSH_FX_EOF)
1318 break;
1319 tell_user(stderr, "scp: reading directory %s: %s\n",
1320 fname, fxp_error());
1321 if (must_free_fname) sfree(fname);
1322 sfree(ournames);
1323 errs++;
1324 return 1;
1325 }
1326 if (names->nnames == 0) {
1327 fxp_free_names(names);
1328 break;
1329 }
1330 if (nnames + names->nnames >= namesize) {
1331 namesize += names->nnames + 128;
1332 ournames =
1333 srealloc(ournames, namesize * sizeof(*ournames));
1334 }
1335 for (i = 0; i < names->nnames; i++)
1336 ournames[nnames++] = names->names[i];
1337 names->nnames = 0; /* prevent free_names */
1338 fxp_free_names(names);
1339 }
1340 fxp_close(dirhandle);
1341
1342 newitem = smalloc(sizeof(struct scp_sftp_dirstack));
1343 newitem->next = scp_sftp_dirstack_head;
1344 newitem->names = ournames;
1345 newitem->namepos = 0;
1346 newitem->namelen = nnames;
1347 if (must_free_fname)
1348 newitem->dirpath = fname;
1349 else
1350 newitem->dirpath = dupstr(fname);
4eb24e3a 1351 if (scp_sftp_wildcard) {
1352 newitem->wildcard = scp_sftp_wildcard;
825ec8ee 1353 newitem->matched_something = 0;
4eb24e3a 1354 scp_sftp_wildcard = NULL;
1355 } else {
1356 newitem->wildcard = NULL;
1357 }
fd5e5847 1358 scp_sftp_dirstack_head = newitem;
1359
4eb24e3a 1360 if (newitem->wildcard) {
1361 act->action = SCP_SINK_RETRY;
1362 } else {
1363 act->action = SCP_SINK_DIR;
1364 act->buf = dupstr(stripslashes(fname, 0));
1365 act->name = act->buf;
1366 act->size = 0; /* duhh, it's a directory */
1367 act->mode = 07777 & attrs.permissions;
1368 if (scp_sftp_preserve &&
1369 (attrs.flags & SSH_FILEXFER_ATTR_ACMODTIME)) {
1370 act->atime = attrs.atime;
1371 act->mtime = attrs.mtime;
1372 act->settime = 1;
1373 } else
1374 act->settime = 0;
1375 }
120e4b40 1376 return 0;
fd5e5847 1377
1378 } else {
1379 /*
1380 * It's a file. Return SCP_SINK_FILE.
1381 */
1382 act->action = SCP_SINK_FILE;
4eb24e3a 1383 act->buf = dupstr(stripslashes(fname, 0));
fd5e5847 1384 act->name = act->buf;
1385 if (attrs.flags & SSH_FILEXFER_ATTR_SIZE) {
1386 if (uint64_compare(attrs.size,
1387 uint64_make(0, ULONG_MAX)) > 0) {
1388 act->size = ULONG_MAX; /* *boggle* */
1389 } else
1390 act->size = attrs.size.lo;
1391 } else
1392 act->size = ULONG_MAX; /* no idea */
1393 act->mode = 07777 & attrs.permissions;
1394 if (scp_sftp_preserve &&
1395 (attrs.flags & SSH_FILEXFER_ATTR_ACMODTIME)) {
1396 act->atime = attrs.atime;
1397 act->mtime = attrs.mtime;
120e4b40 1398 act->settime = 1;
fd5e5847 1399 } else
1400 act->settime = 0;
1401 if (must_free_fname)
1402 scp_sftp_currentname = fname;
1403 else
1404 scp_sftp_currentname = dupstr(fname);
1405 return 0;
1406 }
1407
1408 } else {
1409 int done = 0;
1410 int i, bufsize;
1411 int action;
1412 char ch;
1413
1414 act->settime = 0;
1415 act->buf = NULL;
1416 bufsize = 0;
1417
1418 while (!done) {
1419 if (ssh_scp_recv(&ch, 1) <= 0)
1420 return 1;
1421 if (ch == '\n')
1422 bump("Protocol error: Unexpected newline");
1423 i = 0;
1424 action = ch;
1425 do {
1426 if (ssh_scp_recv(&ch, 1) <= 0)
1427 bump("Lost connection");
1428 if (i >= bufsize) {
1429 bufsize = i + 128;
1430 act->buf = srealloc(act->buf, bufsize);
1431 }
1432 act->buf[i++] = ch;
1433 } while (ch != '\n');
1434 act->buf[i - 1] = '\0';
1435 switch (action) {
1436 case '\01': /* error */
1437 tell_user(stderr, "%s\n", act->buf);
1438 errs++;
1439 continue; /* go round again */
1440 case '\02': /* fatal error */
1441 bump("%s", act->buf);
1442 case 'E':
120e4b40 1443 back->send("", 1);
fd5e5847 1444 act->action = SCP_SINK_ENDDIR;
1445 return 0;
1446 case 'T':
1447 if (sscanf(act->buf, "%ld %*d %ld %*d",
1448 &act->mtime, &act->atime) == 2) {
1449 act->settime = 1;
1450 back->send("", 1);
1451 continue; /* go round again */
1452 }
1453 bump("Protocol error: Illegal time format");
1454 case 'C':
1455 case 'D':
1456 act->action = (action == 'C' ? SCP_SINK_FILE : SCP_SINK_DIR);
1457 break;
1458 default:
1459 bump("Protocol error: Expected control record");
120e4b40 1460 }
fd5e5847 1461 /*
1462 * We will go round this loop only once, unless we hit
1463 * `continue' above.
1464 */
1465 done = 1;
120e4b40 1466 }
fd5e5847 1467
120e4b40 1468 /*
fd5e5847 1469 * If we get here, we must have seen SCP_SINK_FILE or
1470 * SCP_SINK_DIR.
120e4b40 1471 */
fd5e5847 1472 if (sscanf(act->buf, "%o %lu %n", &act->mode, &act->size, &i) != 2)
1473 bump("Protocol error: Illegal file descriptor format");
1474 act->name = act->buf + i;
1475 return 0;
120e4b40 1476 }
120e4b40 1477}
1478
1479int scp_accept_filexfer(void)
1480{
fd5e5847 1481 if (using_sftp) {
1482 scp_sftp_filehandle =
1483 fxp_open(scp_sftp_currentname, SSH_FXF_READ);
1484 if (!scp_sftp_filehandle) {
1485 tell_user(stderr, "pscp: unable to open %s: %s",
1486 scp_sftp_currentname, fxp_error());
1487 errs++;
1488 return 1;
1489 }
1490 scp_sftp_fileoffset = uint64_make(0, 0);
1491 sfree(scp_sftp_currentname);
1492 return 0;
1493 } else {
1494 back->send("", 1);
1495 return 0; /* can't fail */
1496 }
120e4b40 1497}
1498
1499int scp_recv_filedata(char *data, int len)
1500{
fd5e5847 1501 if (using_sftp) {
1502 int actuallen = fxp_read(scp_sftp_filehandle, data,
1503 scp_sftp_fileoffset, len);
1504 if (actuallen == -1 && fxp_error_type() != SSH_FX_EOF) {
1505 tell_user(stderr, "pscp: error while reading: %s", fxp_error());
1506 errs++;
1507 return -1;
1508 }
1509 if (actuallen < 0)
1510 actuallen = 0;
1511
1512 scp_sftp_fileoffset = uint64_add32(scp_sftp_fileoffset, actuallen);
1513
1514 return actuallen;
1515 } else {
1516 return ssh_scp_recv(data, len);
1517 }
120e4b40 1518}
1519
1520int scp_finish_filerecv(void)
1521{
fd5e5847 1522 if (using_sftp) {
1523 fxp_close(scp_sftp_filehandle);
1524 return 0;
1525 } else {
1526 back->send("", 1);
1527 return response();
1528 }
120e4b40 1529}
1530
1531/* ----------------------------------------------------------------------
07d9aa13 1532 * Send an error message to the other side and to the screen.
1533 * Increment error counter.
1534 */
1535static void run_err(const char *fmt, ...)
1536{
c51a56e2 1537 char str[2048];
1538 va_list ap;
1539 va_start(ap, fmt);
1540 errs++;
9520eba8 1541 strcpy(str, "scp: ");
32874aea 1542 vsprintf(str + strlen(str), fmt, ap);
c51a56e2 1543 strcat(str, "\n");
120e4b40 1544 scp_send_errmsg(str);
32874aea 1545 tell_user(stderr, "%s", str);
c51a56e2 1546 va_end(ap);
07d9aa13 1547}
1548
07d9aa13 1549/*
1550 * Execute the source part of the SCP protocol.
1551 */
1552static void source(char *src)
1553{
c51a56e2 1554 unsigned long size;
1555 char *last;
1556 HANDLE f;
1557 DWORD attr;
1558 unsigned long i;
1559 unsigned long stat_bytes;
1560 time_t stat_starttime, stat_lasttime;
1561
1562 attr = GetFileAttributes(src);
32874aea 1563 if (attr == (DWORD) - 1) {
c51a56e2 1564 run_err("%s: No such file or directory", src);
1565 return;
1566 }
1567
1568 if ((attr & FILE_ATTRIBUTE_DIRECTORY) != 0) {
7f1f80de 1569 if (recursive) {
32874aea 1570 /*
1571 * Avoid . and .. directories.
1572 */
1573 char *p;
1574 p = strrchr(src, '/');
1575 if (!p)
1576 p = strrchr(src, '\\');
1577 if (!p)
1578 p = src;
1579 else
1580 p++;
1581 if (!strcmp(p, ".") || !strcmp(p, ".."))
1582 /* skip . and .. */ ;
1583 else
1584 rsource(src);
1585 } else {
c51a56e2 1586 run_err("%s: not a regular file", src);
32874aea 1587 }
c51a56e2 1588 return;
1589 }
1590
1591 if ((last = strrchr(src, '/')) == NULL)
1592 last = src;
1593 else
1594 last++;
1595 if (strrchr(last, '\\') != NULL)
1596 last = strrchr(last, '\\') + 1;
1597 if (last == src && strchr(src, ':') != NULL)
1598 last = strchr(src, ':') + 1;
1599
1600 f = CreateFile(src, GENERIC_READ, FILE_SHARE_READ, NULL,
1601 OPEN_EXISTING, 0, 0);
1602 if (f == INVALID_HANDLE_VALUE) {
486543a1 1603 run_err("%s: Cannot open file", src);
c51a56e2 1604 return;
1605 }
1606
1607 if (preserve) {
1608 FILETIME actime, wrtime;
1609 unsigned long mtime, atime;
1610 GetFileTime(f, NULL, &actime, &wrtime);
1611 TIME_WIN_TO_POSIX(actime, atime);
1612 TIME_WIN_TO_POSIX(wrtime, mtime);
120e4b40 1613 if (scp_send_filetimes(mtime, atime))
c51a56e2 1614 return;
1615 }
1616
1617 size = GetFileSize(f, NULL);
c51a56e2 1618 if (verbose)
120e4b40 1619 tell_user(stderr, "Sending file %s, size=%lu", last, size);
1620 if (scp_send_filename(last, size, 0644))
c51a56e2 1621 return;
1622
2d466ffd 1623 stat_bytes = 0;
1624 stat_starttime = time(NULL);
1625 stat_lasttime = 0;
c51a56e2 1626
1627 for (i = 0; i < size; i += 4096) {
1628 char transbuf[4096];
1629 DWORD j, k = 4096;
5471d09a 1630
32874aea 1631 if (i + k > size)
1632 k = size - i;
1633 if (!ReadFile(f, transbuf, k, &j, NULL) || j != k) {
1634 if (statistics)
1635 printf("\n");
c51a56e2 1636 bump("%s: Read error", src);
07d9aa13 1637 }
120e4b40 1638 if (scp_send_filedata(transbuf, k))
1639 bump("%s: Network error occurred", src);
1640
c51a56e2 1641 if (statistics) {
1642 stat_bytes += k;
32874aea 1643 if (time(NULL) != stat_lasttime || i + k == size) {
c51a56e2 1644 stat_lasttime = time(NULL);
1645 print_stats(last, size, stat_bytes,
1646 stat_starttime, stat_lasttime);
1647 }
07d9aa13 1648 }
5471d09a 1649
c51a56e2 1650 }
1651 CloseHandle(f);
07d9aa13 1652
120e4b40 1653 (void) scp_send_finish();
07d9aa13 1654}
1655
07d9aa13 1656/*
1657 * Recursively send the contents of a directory.
1658 */
1659static void rsource(char *src)
1660{
03f64569 1661 char *last, *findfile;
fd5e5847 1662 char *save_target;
c51a56e2 1663 HANDLE dir;
1664 WIN32_FIND_DATA fdat;
1665 int ok;
1666
1667 if ((last = strrchr(src, '/')) == NULL)
1668 last = src;
1669 else
1670 last++;
1671 if (strrchr(last, '\\') != NULL)
1672 last = strrchr(last, '\\') + 1;
1673 if (last == src && strchr(src, ':') != NULL)
1674 last = strchr(src, ':') + 1;
1675
1676 /* maybe send filetime */
1677
fd5e5847 1678 save_target = scp_save_remotepath();
1679
c51a56e2 1680 if (verbose)
120e4b40 1681 tell_user(stderr, "Entering directory: %s", last);
1682 if (scp_send_dirname(last, 0755))
c51a56e2 1683 return;
1684
03f64569 1685 findfile = dupcat(src, "/*", NULL);
1686 dir = FindFirstFile(findfile, &fdat);
c51a56e2 1687 ok = (dir != INVALID_HANDLE_VALUE);
1688 while (ok) {
1689 if (strcmp(fdat.cFileName, ".") == 0 ||
1690 strcmp(fdat.cFileName, "..") == 0) {
03f64569 1691 /* ignore . and .. */
c51a56e2 1692 } else {
fd5e5847 1693 char *foundfile = dupcat(src, "/", fdat.cFileName, NULL);
03f64569 1694 source(foundfile);
1695 sfree(foundfile);
07d9aa13 1696 }
c51a56e2 1697 ok = FindNextFile(dir, &fdat);
1698 }
1699 FindClose(dir);
03f64569 1700 sfree(findfile);
07d9aa13 1701
120e4b40 1702 (void) scp_send_enddir();
fd5e5847 1703
1704 scp_restore_remotepath(save_target);
07d9aa13 1705}
1706
07d9aa13 1707/*
03f64569 1708 * Execute the sink part of the SCP protocol.
07d9aa13 1709 */
ca2d5943 1710static void sink(char *targ, char *src)
07d9aa13 1711{
03f64569 1712 char *destfname;
c51a56e2 1713 int targisdir = 0;
c51a56e2 1714 int exists;
1715 DWORD attr;
1716 HANDLE f;
120e4b40 1717 unsigned long received;
c51a56e2 1718 int wrerror = 0;
1719 unsigned long stat_bytes;
1720 time_t stat_starttime, stat_lasttime;
1721 char *stat_name;
1722
1723 attr = GetFileAttributes(targ);
32874aea 1724 if (attr != (DWORD) - 1 && (attr & FILE_ATTRIBUTE_DIRECTORY) != 0)
c51a56e2 1725 targisdir = 1;
1726
1727 if (targetshouldbedirectory && !targisdir)
1728 bump("%s: Not a directory", targ);
1729
120e4b40 1730 scp_sink_init();
c51a56e2 1731 while (1) {
120e4b40 1732 struct scp_sink_action act;
1733 if (scp_get_sink_action(&act))
c51a56e2 1734 return;
07d9aa13 1735
120e4b40 1736 if (act.action == SCP_SINK_ENDDIR)
1737 return;
03f64569 1738
4eb24e3a 1739 if (act.action == SCP_SINK_RETRY)
1740 continue;
1741
c51a56e2 1742 if (targisdir) {
03f64569 1743 /*
1744 * Prevent the remote side from maliciously writing to
1745 * files outside the target area by sending a filename
1746 * containing `../'. In fact, it shouldn't be sending
b3dcd9b2 1747 * filenames with any slashes or colons in at all; so
1748 * we'll find the last slash, backslash or colon in the
1749 * filename and use only the part after that. (And
1750 * warn!)
03f64569 1751 *
1752 * In addition, we also ensure here that if we're
1753 * copying a single file and the target is a directory
1754 * (common usage: `pscp host:filename .') the remote
1755 * can't send us a _different_ file name. We can
1756 * distinguish this case because `src' will be non-NULL
1757 * and the last component of that will fail to match
1758 * (the last component of) the name sent.
4eeae4a3 1759 *
cd1f39ab 1760 * Well, not always; if `src' is a wildcard, we do
4eeae4a3 1761 * expect to get back filenames that don't correspond
cd1f39ab 1762 * exactly to it. Ideally in this case, we would like
1763 * to ensure that the returned filename actually
1764 * matches the wildcard pattern - but one of SCP's
1765 * protocol infelicities is that wildcard matching is
1766 * done at the server end _by the server's rules_ and
1767 * so in general this is infeasible. Hence, we only
1768 * accept filenames that don't correspond to `src' if
1769 * unsafe mode is enabled or we are using SFTP (which
1770 * resolves remote wildcards on the client side and can
1771 * be trusted).
03f64569 1772 */
1773 char *striptarget, *stripsrc;
1774
4eb24e3a 1775 striptarget = stripslashes(act.name, 1);
03f64569 1776 if (striptarget != act.name) {
1777 tell_user(stderr, "warning: remote host sent a compound"
b3dcd9b2 1778 " pathname '%s'", act.name);
1779 tell_user(stderr, " renaming local file to '%s'",
1780 striptarget);
03f64569 1781 }
1782
1783 /*
1784 * Also check to see if the target filename is '.' or
1785 * '..', or indeed '...' and so on because Windows
1786 * appears to interpret those like '..'.
1787 */
fd5e5847 1788 if (is_dots(striptarget)) {
03f64569 1789 bump("security violation: remote host attempted to write to"
1790 " a '.' or '..' path!");
1791 }
1792
1793 if (src) {
4eb24e3a 1794 stripsrc = stripslashes(src, 1);
cd1f39ab 1795 if (strcmp(striptarget, stripsrc) &&
1796 !using_sftp && !scp_unsafe_mode) {
1797 tell_user(stderr, "warning: remote host tried to write "
1798 "to a file called '%s'", striptarget);
1799 tell_user(stderr, " when we requested a file "
1800 "called '%s'.", stripsrc);
1801 tell_user(stderr, " If this is a wildcard, "
1802 "consider upgrading to SSH 2 or using");
1803 tell_user(stderr, " the '-unsafe' option. Renaming"
1804 " of this file has been disallowed.");
4eeae4a3 1805 /* Override the name the server provided with our own. */
1806 striptarget = stripsrc;
03f64569 1807 }
03f64569 1808 }
1809
c51a56e2 1810 if (targ[0] != '\0')
03f64569 1811 destfname = dupcat(targ, "\\", striptarget, NULL);
1812 else
1813 destfname = dupstr(striptarget);
c51a56e2 1814 } else {
03f64569 1815 /*
1816 * In this branch of the if, the target area is a
1817 * single file with an explicitly specified name in any
1818 * case, so there's no danger.
1819 */
1820 destfname = dupstr(targ);
c51a56e2 1821 }
03f64569 1822 attr = GetFileAttributes(destfname);
32874aea 1823 exists = (attr != (DWORD) - 1);
c51a56e2 1824
120e4b40 1825 if (act.action == SCP_SINK_DIR) {
c51a56e2 1826 if (exists && (attr & FILE_ATTRIBUTE_DIRECTORY) == 0) {
03f64569 1827 run_err("%s: Not a directory", destfname);
c51a56e2 1828 continue;
1829 }
1830 if (!exists) {
03f64569 1831 if (!CreateDirectory(destfname, NULL)) {
1832 run_err("%s: Cannot create directory", destfname);
c51a56e2 1833 continue;
1834 }
1835 }
03f64569 1836 sink(destfname, NULL);
c51a56e2 1837 /* can we set the timestamp for directories ? */
1838 continue;
1839 }
07d9aa13 1840
03f64569 1841 f = CreateFile(destfname, GENERIC_WRITE, 0, NULL,
c51a56e2 1842 CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL, 0);
1843 if (f == INVALID_HANDLE_VALUE) {
03f64569 1844 run_err("%s: Cannot create file", destfname);
c51a56e2 1845 continue;
1846 }
07d9aa13 1847
120e4b40 1848 if (scp_accept_filexfer())
1849 return;
07d9aa13 1850
2d466ffd 1851 stat_bytes = 0;
1852 stat_starttime = time(NULL);
1853 stat_lasttime = 0;
4eb24e3a 1854 stat_name = stripslashes(destfname, 1);
07d9aa13 1855
120e4b40 1856 received = 0;
1857 while (received < act.size) {
c51a56e2 1858 char transbuf[4096];
120e4b40 1859 DWORD blksize, read, written;
1860 blksize = 4096;
1861 if (blksize > act.size - received)
1862 blksize = act.size - received;
1863 read = scp_recv_filedata(transbuf, blksize);
1864 if (read <= 0)
c51a56e2 1865 bump("Lost connection");
32874aea 1866 if (wrerror)
1867 continue;
120e4b40 1868 if (!WriteFile(f, transbuf, read, &written, NULL) ||
1869 written != read) {
c51a56e2 1870 wrerror = 1;
120e4b40 1871 /* FIXME: in sftp we can actually abort the transfer */
c51a56e2 1872 if (statistics)
1873 printf("\r%-25.25s | %50s\n",
1874 stat_name,
1875 "Write error.. waiting for end of file");
1876 continue;
1877 }
1878 if (statistics) {
120e4b40 1879 stat_bytes += read;
1880 if (time(NULL) > stat_lasttime ||
1881 received + read == act.size) {
c51a56e2 1882 stat_lasttime = time(NULL);
120e4b40 1883 print_stats(stat_name, act.size, stat_bytes,
c51a56e2 1884 stat_starttime, stat_lasttime);
07d9aa13 1885 }
c51a56e2 1886 }
120e4b40 1887 received += read;
c51a56e2 1888 }
120e4b40 1889 if (act.settime) {
c51a56e2 1890 FILETIME actime, wrtime;
120e4b40 1891 TIME_POSIX_TO_WIN(act.atime, actime);
1892 TIME_POSIX_TO_WIN(act.mtime, wrtime);
c51a56e2 1893 SetFileTime(f, NULL, &actime, &wrtime);
07d9aa13 1894 }
07d9aa13 1895
c51a56e2 1896 CloseHandle(f);
1897 if (wrerror) {
03f64569 1898 run_err("%s: Write error", destfname);
c51a56e2 1899 continue;
1900 }
120e4b40 1901 (void) scp_finish_filerecv();
03f64569 1902 sfree(destfname);
d4aa8594 1903 sfree(act.buf);
c51a56e2 1904 }
1905}
07d9aa13 1906
1907/*
120e4b40 1908 * We will copy local files to a remote server.
07d9aa13 1909 */
1910static void toremote(int argc, char *argv[])
1911{
c51a56e2 1912 char *src, *targ, *host, *user;
1913 char *cmd;
1914 int i;
1915
32874aea 1916 targ = argv[argc - 1];
c51a56e2 1917
39ddf0ff 1918 /* Separate host from filename */
c51a56e2 1919 host = targ;
1920 targ = colon(targ);
1921 if (targ == NULL)
1922 bump("targ == NULL in toremote()");
1923 *targ++ = '\0';
1924 if (*targ == '\0')
1925 targ = ".";
1926 /* Substitute "." for emtpy target */
1927
39ddf0ff 1928 /* Separate host and username */
c51a56e2 1929 user = host;
1930 host = strrchr(host, '@');
1931 if (host == NULL) {
1932 host = user;
1933 user = NULL;
1934 } else {
1935 *host++ = '\0';
1936 if (*user == '\0')
1937 user = NULL;
1938 }
1939
1940 if (argc == 2) {
1941 /* Find out if the source filespec covers multiple files
32874aea 1942 if so, we should set the targetshouldbedirectory flag */
c51a56e2 1943 HANDLE fh;
1944 WIN32_FIND_DATA fdat;
1945 if (colon(argv[0]) != NULL)
1946 bump("%s: Remote to remote not supported", argv[0]);
1947 fh = FindFirstFile(argv[0], &fdat);
1948 if (fh == INVALID_HANDLE_VALUE)
1949 bump("%s: No such file or directory\n", argv[0]);
1950 if (FindNextFile(fh, &fdat))
1951 targetshouldbedirectory = 1;
1952 FindClose(fh);
1953 }
1954
1955 cmd = smalloc(strlen(targ) + 100);
1956 sprintf(cmd, "scp%s%s%s%s -t %s",
1957 verbose ? " -v" : "",
1958 recursive ? " -r" : "",
1959 preserve ? " -p" : "",
32874aea 1960 targetshouldbedirectory ? " -d" : "", targ);
c51a56e2 1961 do_cmd(host, user, cmd);
1962 sfree(cmd);
1963
fd5e5847 1964 scp_source_setup(targ, targetshouldbedirectory);
c51a56e2 1965
1966 for (i = 0; i < argc - 1; i++) {
03f64569 1967 char *srcpath, *last;
c51a56e2 1968 HANDLE dir;
1969 WIN32_FIND_DATA fdat;
1970 src = argv[i];
1971 if (colon(src) != NULL) {
cc87246d 1972 tell_user(stderr, "%s: Remote to remote not supported\n", src);
c51a56e2 1973 errs++;
1974 continue;
07d9aa13 1975 }
03f64569 1976
1977 /*
1978 * Trim off the last pathname component of `src', to
1979 * provide the base pathname which will be prepended to
1980 * filenames returned from Find{First,Next}File.
1981 */
1982 srcpath = dupstr(src);
4eb24e3a 1983 last = stripslashes(srcpath, 1);
03f64569 1984 *last = '\0';
03f64569 1985
c51a56e2 1986 dir = FindFirstFile(src, &fdat);
1987 if (dir == INVALID_HANDLE_VALUE) {
1988 run_err("%s: No such file or directory", src);
1989 continue;
07d9aa13 1990 }
c51a56e2 1991 do {
03f64569 1992 char *filename;
7f266ffb 1993 /*
1994 * Ensure that . and .. are never matched by wildcards,
1995 * but only by deliberate action.
1996 */
1997 if (!strcmp(fdat.cFileName, ".") ||
1998 !strcmp(fdat.cFileName, "..")) {
1999 /*
2000 * Find*File has returned a special dir. We require
2001 * that _either_ `src' ends in a backslash followed
2002 * by that string, _or_ `src' is precisely that
2003 * string.
2004 */
2005 int len = strlen(src), dlen = strlen(fdat.cFileName);
2006 if (len == dlen && !strcmp(src, fdat.cFileName)) {
32874aea 2007 /* ok */ ;
2008 } else if (len > dlen + 1 && src[len - dlen - 1] == '\\' &&
2009 !strcmp(src + len - dlen, fdat.cFileName)) {
2010 /* ok */ ;
7f266ffb 2011 } else
2012 continue; /* ignore this one */
2013 }
03f64569 2014 filename = dupcat(srcpath, fdat.cFileName, NULL);
2015 source(filename);
2016 sfree(filename);
c51a56e2 2017 } while (FindNextFile(dir, &fdat));
2018 FindClose(dir);
03f64569 2019 sfree(srcpath);
c51a56e2 2020 }
07d9aa13 2021}
2022
07d9aa13 2023/*
2024 * We will copy files from a remote server to the local machine.
2025 */
2026static void tolocal(int argc, char *argv[])
2027{
c51a56e2 2028 char *src, *targ, *host, *user;
2029 char *cmd;
2030
2031 if (argc != 2)
2032 bump("More than one remote source not supported");
2033
2034 src = argv[0];
2035 targ = argv[1];
2036
39ddf0ff 2037 /* Separate host from filename */
c51a56e2 2038 host = src;
2039 src = colon(src);
2040 if (src == NULL)
2041 bump("Local to local copy not supported");
2042 *src++ = '\0';
2043 if (*src == '\0')
2044 src = ".";
2045 /* Substitute "." for empty filename */
2046
39ddf0ff 2047 /* Separate username and hostname */
c51a56e2 2048 user = host;
2049 host = strrchr(host, '@');
2050 if (host == NULL) {
2051 host = user;
2052 user = NULL;
2053 } else {
2054 *host++ = '\0';
2055 if (*user == '\0')
2056 user = NULL;
2057 }
2058
2059 cmd = smalloc(strlen(src) + 100);
2060 sprintf(cmd, "scp%s%s%s%s -f %s",
2061 verbose ? " -v" : "",
2062 recursive ? " -r" : "",
2063 preserve ? " -p" : "",
32874aea 2064 targetshouldbedirectory ? " -d" : "", src);
c51a56e2 2065 do_cmd(host, user, cmd);
2066 sfree(cmd);
2067
4eb24e3a 2068 if (scp_sink_setup(src, preserve, recursive))
2069 return;
fd5e5847 2070
ca2d5943 2071 sink(targ, src);
07d9aa13 2072}
2073
07d9aa13 2074/*
39ddf0ff 2075 * We will issue a list command to get a remote directory.
2076 */
2077static void get_dir_list(int argc, char *argv[])
2078{
2079 char *src, *host, *user;
2080 char *cmd, *p, *q;
2081 char c;
2082
2083 src = argv[0];
2084
2085 /* Separate host from filename */
2086 host = src;
2087 src = colon(src);
2088 if (src == NULL)
2089 bump("Local to local copy not supported");
2090 *src++ = '\0';
2091 if (*src == '\0')
2092 src = ".";
2093 /* Substitute "." for empty filename */
2094
2095 /* Separate username and hostname */
2096 user = host;
2097 host = strrchr(host, '@');
2098 if (host == NULL) {
2099 host = user;
2100 user = NULL;
2101 } else {
2102 *host++ = '\0';
2103 if (*user == '\0')
2104 user = NULL;
2105 }
2106
32874aea 2107 cmd = smalloc(4 * strlen(src) + 100);
39ddf0ff 2108 strcpy(cmd, "ls -la '");
2109 p = cmd + strlen(cmd);
2110 for (q = src; *q; q++) {
2111 if (*q == '\'') {
32874aea 2112 *p++ = '\'';
2113 *p++ = '\\';
2114 *p++ = '\'';
2115 *p++ = '\'';
39ddf0ff 2116 } else {
2117 *p++ = *q;
2118 }
2119 }
2120 *p++ = '\'';
2121 *p = '\0';
cc87246d 2122
39ddf0ff 2123 do_cmd(host, user, cmd);
2124 sfree(cmd);
2125
fd5e5847 2126 if (using_sftp) {
2127 scp_sftp_listdir(src);
2128 } else {
2129 while (ssh_scp_recv(&c, 1) > 0)
2130 tell_char(stdout, c);
2131 }
39ddf0ff 2132}
2133
2134/*
07d9aa13 2135 * Initialize the Win$ock driver.
2136 */
996c8c3b 2137static void init_winsock(void)
07d9aa13 2138{
c51a56e2 2139 WORD winsock_ver;
2140 WSADATA wsadata;
2141
2142 winsock_ver = MAKEWORD(1, 1);
2143 if (WSAStartup(winsock_ver, &wsadata))
2144 bump("Unable to initialise WinSock");
32874aea 2145 if (LOBYTE(wsadata.wVersion) != 1 || HIBYTE(wsadata.wVersion) != 1)
c51a56e2 2146 bump("WinSock version is incompatible with 1.1");
07d9aa13 2147}
2148
07d9aa13 2149/*
2150 * Short description of parameters.
2151 */
996c8c3b 2152static void usage(void)
07d9aa13 2153{
c51a56e2 2154 printf("PuTTY Secure Copy client\n");
2155 printf("%s\n", ver);
a3e55ea1 2156 printf("Usage: pscp [options] [user@]host:source target\n");
32874aea 2157 printf
2158 (" pscp [options] source [source...] [user@]host:target\n");
a3e55ea1 2159 printf(" pscp [options] -ls user@host:filespec\n");
b8a19193 2160 printf("Options:\n");
2161 printf(" -p preserve file attributes\n");
2162 printf(" -q quiet, don't show statistics\n");
2163 printf(" -r copy directories recursively\n");
2164 printf(" -v show verbose messages\n");
2165 printf(" -P port connect to specified port\n");
2166 printf(" -pw passw login with specified password\n");
cd1f39ab 2167 printf(" -unsafe allow server-side wildcards (DANGEROUS)\n");
ee8b0370 2168#if 0
2169 /*
2170 * -gui is an internal option, used by GUI front ends to get
2171 * pscp to pass progress reports back to them. It's not an
2172 * ordinary user-accessible option, so it shouldn't be part of
2173 * the command-line help. The only people who need to know
2174 * about it are programmers, and they can read the source.
2175 */
32874aea 2176 printf
2177 (" -gui hWnd GUI mode with the windows handle for receiving messages\n");
ee8b0370 2178#endif
c51a56e2 2179 exit(1);
07d9aa13 2180}
2181
07d9aa13 2182/*
2183 * Main program (no, really?)
2184 */
2185int main(int argc, char *argv[])
2186{
c51a56e2 2187 int i;
2188
fb09bf1c 2189 default_protocol = PROT_TELNET;
2190
67779be7 2191 flags = FLAG_STDERR;
fa17a66e 2192 ssh_get_line = &get_line;
c51a56e2 2193 init_winsock();
8df7a775 2194 sk_init();
c51a56e2 2195
2196 for (i = 1; i < argc; i++) {
2197 if (argv[i][0] != '-')
2198 break;
2199 if (strcmp(argv[i], "-v") == 0)
4017be6d 2200 verbose = 1, flags |= FLAG_VERBOSE;
c51a56e2 2201 else if (strcmp(argv[i], "-r") == 0)
2202 recursive = 1;
2203 else if (strcmp(argv[i], "-p") == 0)
2204 preserve = 1;
2205 else if (strcmp(argv[i], "-q") == 0)
2206 statistics = 0;
32874aea 2207 else if (strcmp(argv[i], "-h") == 0 || strcmp(argv[i], "-?") == 0)
c51a56e2 2208 usage();
32874aea 2209 else if (strcmp(argv[i], "-P") == 0 && i + 1 < argc)
b8a19193 2210 portnumber = atoi(argv[++i]);
32874aea 2211 else if (strcmp(argv[i], "-pw") == 0 && i + 1 < argc)
b8a19193 2212 password = argv[++i];
32874aea 2213 else if (strcmp(argv[i], "-gui") == 0 && i + 1 < argc) {
cc87246d 2214 gui_hwnd = argv[++i];
2215 gui_mode = 1;
2216 } else if (strcmp(argv[i], "-ls") == 0)
32874aea 2217 list = 1;
cd1f39ab 2218 else if (strcmp(argv[i], "-unsafe") == 0)
2219 scp_unsafe_mode = 1;
32874aea 2220 else if (strcmp(argv[i], "--") == 0) {
2221 i++;
2222 break;
2223 } else
c51a56e2 2224 usage();
2225 }
2226 argc -= i;
2227 argv += i;
eba78553 2228 back = NULL;
c51a56e2 2229
39ddf0ff 2230 if (list) {
2231 if (argc != 1)
2232 usage();
2233 get_dir_list(argc, argv);
c51a56e2 2234
39ddf0ff 2235 } else {
2236
2237 if (argc < 2)
2238 usage();
2239 if (argc > 2)
2240 targetshouldbedirectory = 1;
2241
32874aea 2242 if (colon(argv[argc - 1]) != NULL)
39ddf0ff 2243 toremote(argc, argv);
2244 else
2245 tolocal(argc, argv);
2246 }
c51a56e2 2247
eba78553 2248 if (back != NULL && back->socket() != NULL) {
c51a56e2 2249 char ch;
3bdaf79d 2250 back->special(TS_EOF);
fb09bf1c 2251 ssh_scp_recv(&ch, 1);
c51a56e2 2252 }
2253 WSACleanup();
2254 random_save_seed();
07d9aa13 2255
cc87246d 2256 /* GUI Adaptation - August 2000 */
2257 if (gui_mode) {
2258 unsigned int msg_id = WM_RET_ERR_CNT;
32874aea 2259 if (list)
2260 msg_id = WM_LS_RET_ERR_CNT;
2261 while (!PostMessage
2262 ((HWND) atoi(gui_hwnd), msg_id, (WPARAM) errs,
2263 0 /*lParam */ ))SleepEx(1000, TRUE);
cc87246d 2264 }
c51a56e2 2265 return (errs == 0 ? 0 : 1);
07d9aa13 2266}
2267
2268/* end */