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