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