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