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