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