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