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