]> asedeno.scripts.mit.edu Git - PuTTY.git/blob - psftp.c
Return zero when reporting our version.
[PuTTY.git] / psftp.c
1 /*
2  * psftp.c: (platform-independent) front end for PSFTP.
3  */
4
5 #include <stdio.h>
6 #include <stdlib.h>
7 #include <stdarg.h>
8 #include <assert.h>
9 #include <limits.h>
10
11 #define PUTTY_DO_GLOBALS
12 #include "putty.h"
13 #include "psftp.h"
14 #include "storage.h"
15 #include "ssh.h"
16 #include "sftp.h"
17 #include "int64.h"
18
19 const char *const appname = "PSFTP";
20
21 /*
22  * Since SFTP is a request-response oriented protocol, it requires
23  * no buffer management: when we send data, we stop and wait for an
24  * acknowledgement _anyway_, and so we can't possibly overfill our
25  * send buffer.
26  */
27
28 static int psftp_connect(char *userhost, char *user, int portnumber);
29 static int do_sftp_init(void);
30 void do_sftp_cleanup();
31
32 /* ----------------------------------------------------------------------
33  * sftp client state.
34  */
35
36 char *pwd, *homedir;
37 static Backend *back;
38 static void *backhandle;
39 static Conf *conf;
40 int sent_eof = FALSE;
41
42 /* ----------------------------------------------------------------------
43  * Manage sending requests and waiting for replies.
44  */
45 struct sftp_packet *sftp_wait_for_reply(struct sftp_request *req)
46 {
47     struct sftp_packet *pktin;
48     struct sftp_request *rreq;
49
50     sftp_register(req);
51     pktin = sftp_recv();
52     if (pktin == NULL)
53         connection_fatal(NULL, "did not receive SFTP response packet "
54                          "from server");
55     rreq = sftp_find_request(pktin);
56     if (rreq != req)
57         connection_fatal(NULL, "unable to understand SFTP response packet "
58                          "from server: %s", fxp_error());
59     return pktin;
60 }
61
62 /* ----------------------------------------------------------------------
63  * Higher-level helper functions used in commands.
64  */
65
66 /*
67  * Attempt to canonify a pathname starting from the pwd. If
68  * canonification fails, at least fall back to returning a _valid_
69  * pathname (though it may be ugly, eg /home/simon/../foobar).
70  */
71 char *canonify(const char *name)
72 {
73     char *fullname, *canonname;
74     struct sftp_packet *pktin;
75     struct sftp_request *req;
76
77     if (name[0] == '/') {
78         fullname = dupstr(name);
79     } else {
80         const char *slash;
81         if (pwd[strlen(pwd) - 1] == '/')
82             slash = "";
83         else
84             slash = "/";
85         fullname = dupcat(pwd, slash, name, NULL);
86     }
87
88     req = fxp_realpath_send(fullname);
89     pktin = sftp_wait_for_reply(req);
90     canonname = fxp_realpath_recv(pktin, req);
91
92     if (canonname) {
93         sfree(fullname);
94         return canonname;
95     } else {
96         /*
97          * Attempt number 2. Some FXP_REALPATH implementations
98          * (glibc-based ones, in particular) require the _whole_
99          * path to point to something that exists, whereas others
100          * (BSD-based) only require all but the last component to
101          * exist. So if the first call failed, we should strip off
102          * everything from the last slash onwards and try again,
103          * then put the final component back on.
104          * 
105          * Special cases:
106          * 
107          *  - if the last component is "/." or "/..", then we don't
108          *    bother trying this because there's no way it can work.
109          * 
110          *  - if the thing actually ends with a "/", we remove it
111          *    before we start. Except if the string is "/" itself
112          *    (although I can't see why we'd have got here if so,
113          *    because surely "/" would have worked the first
114          *    time?), in which case we don't bother.
115          * 
116          *  - if there's no slash in the string at all, give up in
117          *    confusion (we expect at least one because of the way
118          *    we constructed the string).
119          */
120
121         int i;
122         char *returnname;
123
124         i = strlen(fullname);
125         if (i > 2 && fullname[i - 1] == '/')
126             fullname[--i] = '\0';      /* strip trailing / unless at pos 0 */
127         while (i > 0 && fullname[--i] != '/');
128
129         /*
130          * Give up on special cases.
131          */
132         if (fullname[i] != '/' ||      /* no slash at all */
133             !strcmp(fullname + i, "/.") ||      /* ends in /. */
134             !strcmp(fullname + i, "/..") ||     /* ends in /.. */
135             !strcmp(fullname, "/")) {
136             return fullname;
137         }
138
139         /*
140          * Now i points at the slash. Deal with the final special
141          * case i==0 (ie the whole path was "/nonexistentfile").
142          */
143         fullname[i] = '\0';            /* separate the string */
144         if (i == 0) {
145             req = fxp_realpath_send("/");
146         } else {
147             req = fxp_realpath_send(fullname);
148         }
149         pktin = sftp_wait_for_reply(req);
150         canonname = fxp_realpath_recv(pktin, req);
151
152         if (!canonname) {
153             /* Even that failed. Restore our best guess at the
154              * constructed filename and give up */
155             fullname[i] = '/';  /* restore slash and last component */
156             return fullname;
157         }
158
159         /*
160          * We have a canonical name for all but the last path
161          * component. Concatenate the last component and return.
162          */
163         returnname = dupcat(canonname,
164                             canonname[strlen(canonname) - 1] ==
165                             '/' ? "" : "/", fullname + i + 1, NULL);
166         sfree(fullname);
167         sfree(canonname);
168         return returnname;
169     }
170 }
171
172 /*
173  * qsort comparison routine for fxp_name structures. Sorts by real
174  * file name.
175  */
176 static int sftp_name_compare(const void *av, const void *bv)
177 {
178     const struct fxp_name *const *a = (const struct fxp_name *const *) av;
179     const struct fxp_name *const *b = (const struct fxp_name *const *) bv;
180     return strcmp((*a)->filename, (*b)->filename);
181 }
182
183 /*
184  * Likewise, but for a bare char *.
185  */
186 static int bare_name_compare(const void *av, const void *bv)
187 {
188     const char **a = (const char **) av;
189     const char **b = (const char **) bv;
190     return strcmp(*a, *b);
191 }
192
193 static void not_connected(void)
194 {
195     printf("psftp: not connected to a host; use \"open host.name\"\n");
196 }
197
198 /* ----------------------------------------------------------------------
199  * The meat of the `get' and `put' commands.
200  */
201 int sftp_get_file(char *fname, char *outfname, int recurse, int restart)
202 {
203     struct fxp_handle *fh;
204     struct sftp_packet *pktin;
205     struct sftp_request *req;
206     struct fxp_xfer *xfer;
207     uint64 offset;
208     WFile *file;
209     int ret, shown_err = FALSE;
210     struct fxp_attrs attrs;
211
212     /*
213      * In recursive mode, see if we're dealing with a directory.
214      * (If we're not in recursive mode, we need not even check: the
215      * subsequent FXP_OPEN will return a usable error message.)
216      */
217     if (recurse) {
218         int result;
219
220         req = fxp_stat_send(fname);
221         pktin = sftp_wait_for_reply(req);
222         result = fxp_stat_recv(pktin, req, &attrs);
223
224         if (result &&
225             (attrs.flags & SSH_FILEXFER_ATTR_PERMISSIONS) &&
226             (attrs.permissions & 0040000)) {
227
228             struct fxp_handle *dirhandle;
229             int nnames, namesize;
230             struct fxp_name **ournames;
231             struct fxp_names *names;
232             int i;
233
234             /*
235              * First, attempt to create the destination directory,
236              * unless it already exists.
237              */
238             if (file_type(outfname) != FILE_TYPE_DIRECTORY &&
239                 !create_directory(outfname)) {
240                 printf("%s: Cannot create directory\n", outfname);
241                 return 0;
242             }
243
244             /*
245              * Now get the list of filenames in the remote
246              * directory.
247              */
248             req = fxp_opendir_send(fname);
249             pktin = sftp_wait_for_reply(req);
250             dirhandle = fxp_opendir_recv(pktin, req);
251
252             if (!dirhandle) {
253                 printf("%s: unable to open directory: %s\n",
254                        fname, fxp_error());
255                 return 0;
256             }
257             nnames = namesize = 0;
258             ournames = NULL;
259             while (1) {
260                 int i;
261
262                 req = fxp_readdir_send(dirhandle);
263                 pktin = sftp_wait_for_reply(req);
264                 names = fxp_readdir_recv(pktin, req);
265
266                 if (names == NULL) {
267                     if (fxp_error_type() == SSH_FX_EOF)
268                         break;
269                     printf("%s: reading directory: %s\n", fname, fxp_error());
270
271                     req = fxp_close_send(dirhandle);
272                     pktin = sftp_wait_for_reply(req);
273                     fxp_close_recv(pktin, req);
274
275                     sfree(ournames);
276                     return 0;
277                 }
278                 if (names->nnames == 0) {
279                     fxp_free_names(names);
280                     break;
281                 }
282                 if (nnames + names->nnames >= namesize) {
283                     namesize += names->nnames + 128;
284                     ournames = sresize(ournames, namesize, struct fxp_name *);
285                 }
286                 for (i = 0; i < names->nnames; i++)
287                     if (strcmp(names->names[i].filename, ".") &&
288                         strcmp(names->names[i].filename, "..")) {
289                         if (!vet_filename(names->names[i].filename)) {
290                             printf("ignoring potentially dangerous server-"
291                                    "supplied filename '%s'\n",
292                                    names->names[i].filename);
293                         } else {
294                             ournames[nnames++] =
295                                 fxp_dup_name(&names->names[i]);
296                         }
297                     }
298                 fxp_free_names(names);
299             }
300             req = fxp_close_send(dirhandle);
301             pktin = sftp_wait_for_reply(req);
302             fxp_close_recv(pktin, req);
303
304             /*
305              * Sort the names into a clear order. This ought to
306              * make things more predictable when we're doing a
307              * reget of the same directory, just in case two
308              * readdirs on the same remote directory return a
309              * different order.
310              */
311             if (nnames > 0)
312                 qsort(ournames, nnames, sizeof(*ournames), sftp_name_compare);
313
314             /*
315              * If we're in restart mode, find the last filename on
316              * this list that already exists. We may have to do a
317              * reget on _that_ file, but shouldn't have to do
318              * anything on the previous files.
319              * 
320              * If none of them exists, of course, we start at 0.
321              */
322             i = 0;
323             if (restart) {
324                 while (i < nnames) {
325                     char *nextoutfname;
326                     int ret;
327                     nextoutfname = dir_file_cat(outfname,
328                                                 ournames[i]->filename);
329                     ret = (file_type(nextoutfname) == FILE_TYPE_NONEXISTENT);
330                     sfree(nextoutfname);
331                     if (ret)
332                         break;
333                     i++;
334                 }
335                 if (i > 0)
336                     i--;
337             }
338
339             /*
340              * Now we're ready to recurse. Starting at ournames[i]
341              * and continuing on to the end of the list, we
342              * construct a new source and target file name, and
343              * call sftp_get_file again.
344              */
345             for (; i < nnames; i++) {
346                 char *nextfname, *nextoutfname;
347                 int ret;
348                 
349                 nextfname = dupcat(fname, "/", ournames[i]->filename, NULL);
350                 nextoutfname = dir_file_cat(outfname, ournames[i]->filename);
351                 ret = sftp_get_file(nextfname, nextoutfname, recurse, restart);
352                 restart = FALSE;       /* after first partial file, do full */
353                 sfree(nextoutfname);
354                 sfree(nextfname);
355                 if (!ret) {
356                     for (i = 0; i < nnames; i++) {
357                         fxp_free_name(ournames[i]);
358                     }
359                     sfree(ournames);
360                     return 0;
361                 }
362             }
363
364             /*
365              * Done this recursion level. Free everything.
366              */
367             for (i = 0; i < nnames; i++) {
368                 fxp_free_name(ournames[i]);
369             }
370             sfree(ournames);
371
372             return 1;
373         }
374     }
375
376     req = fxp_stat_send(fname);
377     pktin = sftp_wait_for_reply(req);
378     if (!fxp_stat_recv(pktin, req, &attrs))
379         attrs.flags = 0;
380
381     req = fxp_open_send(fname, SSH_FXF_READ, NULL);
382     pktin = sftp_wait_for_reply(req);
383     fh = fxp_open_recv(pktin, req);
384
385     if (!fh) {
386         printf("%s: open for read: %s\n", fname, fxp_error());
387         return 0;
388     }
389
390     if (restart) {
391         file = open_existing_wfile(outfname, NULL);
392     } else {
393         file = open_new_file(outfname, GET_PERMISSIONS(attrs));
394     }
395
396     if (!file) {
397         printf("local: unable to open %s\n", outfname);
398
399         req = fxp_close_send(fh);
400         pktin = sftp_wait_for_reply(req);
401         fxp_close_recv(pktin, req);
402
403         return 0;
404     }
405
406     if (restart) {
407         char decbuf[30];
408         if (seek_file(file, uint64_make(0,0) , FROM_END) == -1) {
409             close_wfile(file);
410             printf("reget: cannot restart %s - file too large\n",
411                    outfname);
412             req = fxp_close_send(fh);
413             pktin = sftp_wait_for_reply(req);
414             fxp_close_recv(pktin, req);
415                 
416             return 0;
417         }
418             
419         offset = get_file_posn(file);
420         uint64_decimal(offset, decbuf);
421         printf("reget: restarting at file position %s\n", decbuf);
422     } else {
423         offset = uint64_make(0, 0);
424     }
425
426     printf("remote:%s => local:%s\n", fname, outfname);
427
428     /*
429      * FIXME: we can use FXP_FSTAT here to get the file size, and
430      * thus put up a progress bar.
431      */
432     ret = 1;
433     xfer = xfer_download_init(fh, offset);
434     while (!xfer_done(xfer)) {
435         void *vbuf;
436         int len;
437         int wpos, wlen;
438
439         xfer_download_queue(xfer);
440         pktin = sftp_recv();
441         ret = xfer_download_gotpkt(xfer, pktin);
442         if (ret <= 0) {
443             if (!shown_err) {
444                 printf("error while reading: %s\n", fxp_error());
445                 shown_err = TRUE;
446             }
447             if (ret == INT_MIN)        /* pktin not even freed */
448                 sfree(pktin);
449             ret = 0;
450         }
451
452         while (xfer_download_data(xfer, &vbuf, &len)) {
453             unsigned char *buf = (unsigned char *)vbuf;
454
455             wpos = 0;
456             while (wpos < len) {
457                 wlen = write_to_file(file, buf + wpos, len - wpos);
458                 if (wlen <= 0) {
459                     printf("error while writing local file\n");
460                     ret = 0;
461                     xfer_set_error(xfer);
462                     break;
463                 }
464                 wpos += wlen;
465             }
466             if (wpos < len) {          /* we had an error */
467                 ret = 0;
468                 xfer_set_error(xfer);
469             }
470
471             sfree(vbuf);
472         }
473     }
474
475     xfer_cleanup(xfer);
476
477     close_wfile(file);
478
479     req = fxp_close_send(fh);
480     pktin = sftp_wait_for_reply(req);
481     fxp_close_recv(pktin, req);
482
483     return ret;
484 }
485
486 int sftp_put_file(char *fname, char *outfname, int recurse, int restart)
487 {
488     struct fxp_handle *fh;
489     struct fxp_xfer *xfer;
490     struct sftp_packet *pktin;
491     struct sftp_request *req;
492     uint64 offset;
493     RFile *file;
494     int err = 0, eof;
495     struct fxp_attrs attrs;
496     long permissions;
497
498     /*
499      * In recursive mode, see if we're dealing with a directory.
500      * (If we're not in recursive mode, we need not even check: the
501      * subsequent fopen will return an error message.)
502      */
503     if (recurse && file_type(fname) == FILE_TYPE_DIRECTORY) {
504         int result;
505         int nnames, namesize;
506         char *name, **ournames;
507         DirHandle *dh;
508         int i;
509
510         /*
511          * First, attempt to create the destination directory,
512          * unless it already exists.
513          */
514         req = fxp_stat_send(outfname);
515         pktin = sftp_wait_for_reply(req);
516         result = fxp_stat_recv(pktin, req, &attrs);
517         if (!result ||
518             !(attrs.flags & SSH_FILEXFER_ATTR_PERMISSIONS) ||
519             !(attrs.permissions & 0040000)) {
520             req = fxp_mkdir_send(outfname);
521             pktin = sftp_wait_for_reply(req);
522             result = fxp_mkdir_recv(pktin, req);
523
524             if (!result) {
525                 printf("%s: create directory: %s\n",
526                        outfname, fxp_error());
527                 return 0;
528             }
529         }
530
531         /*
532          * Now get the list of filenames in the local directory.
533          */
534         nnames = namesize = 0;
535         ournames = NULL;
536
537         dh = open_directory(fname);
538         if (!dh) {
539             printf("%s: unable to open directory\n", fname);
540             return 0;
541         }
542         while ((name = read_filename(dh)) != NULL) {
543             if (nnames >= namesize) {
544                 namesize += 128;
545                 ournames = sresize(ournames, namesize, char *);
546             }
547             ournames[nnames++] = name;
548         }
549         close_directory(dh);
550
551         /*
552          * Sort the names into a clear order. This ought to make
553          * things more predictable when we're doing a reput of the
554          * same directory, just in case two readdirs on the same
555          * local directory return a different order.
556          */
557         if (nnames > 0)
558             qsort(ournames, nnames, sizeof(*ournames), bare_name_compare);
559
560         /*
561          * If we're in restart mode, find the last filename on this
562          * list that already exists. We may have to do a reput on
563          * _that_ file, but shouldn't have to do anything on the
564          * previous files.
565          *
566          * If none of them exists, of course, we start at 0.
567          */
568         i = 0;
569         if (restart) {
570             while (i < nnames) {
571                 char *nextoutfname;
572                 nextoutfname = dupcat(outfname, "/", ournames[i], NULL);
573                 req = fxp_stat_send(nextoutfname);
574                 pktin = sftp_wait_for_reply(req);
575                 result = fxp_stat_recv(pktin, req, &attrs);
576                 sfree(nextoutfname);
577                 if (!result)
578                     break;
579                 i++;
580             }
581             if (i > 0)
582                 i--;
583         }
584
585         /*
586          * Now we're ready to recurse. Starting at ournames[i]
587          * and continuing on to the end of the list, we
588          * construct a new source and target file name, and
589          * call sftp_put_file again.
590          */
591         for (; i < nnames; i++) {
592             char *nextfname, *nextoutfname;
593             int ret;
594
595             nextfname = dir_file_cat(fname, ournames[i]);
596             nextoutfname = dupcat(outfname, "/", ournames[i], NULL);
597             ret = sftp_put_file(nextfname, nextoutfname, recurse, restart);
598             restart = FALSE;           /* after first partial file, do full */
599             sfree(nextoutfname);
600             sfree(nextfname);
601             if (!ret) {
602                 for (i = 0; i < nnames; i++) {
603                     sfree(ournames[i]);
604                 }
605                 sfree(ournames);
606                 return 0;
607             }
608         }
609
610         /*
611          * Done this recursion level. Free everything.
612          */
613         for (i = 0; i < nnames; i++) {
614             sfree(ournames[i]);
615         }
616         sfree(ournames);
617
618         return 1;
619     }
620
621     file = open_existing_file(fname, NULL, NULL, NULL, &permissions);
622     if (!file) {
623         printf("local: unable to open %s\n", fname);
624         return 0;
625     }
626     attrs.flags = 0;
627     PUT_PERMISSIONS(attrs, permissions);
628     if (restart) {
629         req = fxp_open_send(outfname, SSH_FXF_WRITE, &attrs);
630     } else {
631         req = fxp_open_send(outfname,
632                             SSH_FXF_WRITE | SSH_FXF_CREAT | SSH_FXF_TRUNC,
633                             &attrs);
634     }
635     pktin = sftp_wait_for_reply(req);
636     fh = fxp_open_recv(pktin, req);
637
638     if (!fh) {
639         close_rfile(file);
640         printf("%s: open for write: %s\n", outfname, fxp_error());
641         return 0;
642     }
643
644     if (restart) {
645         char decbuf[30];
646         struct fxp_attrs attrs;
647         int ret;
648
649         req = fxp_fstat_send(fh);
650         pktin = sftp_wait_for_reply(req);
651         ret = fxp_fstat_recv(pktin, req, &attrs);
652
653         if (!ret) {
654             printf("read size of %s: %s\n", outfname, fxp_error());
655             err = 1;
656             goto cleanup;
657         }
658         if (!(attrs.flags & SSH_FILEXFER_ATTR_SIZE)) {
659             printf("read size of %s: size was not given\n", outfname);
660             err = 1;
661             goto cleanup;
662         }
663         offset = attrs.size;
664         uint64_decimal(offset, decbuf);
665         printf("reput: restarting at file position %s\n", decbuf);
666
667         if (seek_file((WFile *)file, offset, FROM_START) != 0)
668             seek_file((WFile *)file, uint64_make(0,0), FROM_END);    /* *shrug* */
669     } else {
670         offset = uint64_make(0, 0);
671     }
672
673     printf("local:%s => remote:%s\n", fname, outfname);
674
675     /*
676      * FIXME: we can use FXP_FSTAT here to get the file size, and
677      * thus put up a progress bar.
678      */
679     xfer = xfer_upload_init(fh, offset);
680     eof = 0;
681     while ((!err && !eof) || !xfer_done(xfer)) {
682         char buffer[4096];
683         int len, ret;
684
685         while (xfer_upload_ready(xfer) && !err && !eof) {
686             len = read_from_file(file, buffer, sizeof(buffer));
687             if (len == -1) {
688                 printf("error while reading local file\n");
689                 err = 1;
690             } else if (len == 0) {
691                 eof = 1;
692             } else {
693                 xfer_upload_data(xfer, buffer, len);
694             }
695         }
696
697         if (!xfer_done(xfer)) {
698             pktin = sftp_recv();
699             ret = xfer_upload_gotpkt(xfer, pktin);
700             if (ret <= 0) {
701                 if (ret == INT_MIN)        /* pktin not even freed */
702                     sfree(pktin);
703                 if (!err) {
704                     printf("error while writing: %s\n", fxp_error());
705                     err = 1;
706                 }
707             }
708         }
709     }
710
711     xfer_cleanup(xfer);
712
713   cleanup:
714     req = fxp_close_send(fh);
715     pktin = sftp_wait_for_reply(req);
716     if (!fxp_close_recv(pktin, req)) {
717         if (!err) {
718             printf("error while closing: %s", fxp_error());
719             err = 1;
720         }
721     }
722
723     close_rfile(file);
724
725     return (err == 0) ? 1 : 0;
726 }
727
728 /* ----------------------------------------------------------------------
729  * A remote wildcard matcher, providing a similar interface to the
730  * local one in psftp.h.
731  */
732
733 typedef struct SftpWildcardMatcher {
734     struct fxp_handle *dirh;
735     struct fxp_names *names;
736     int namepos;
737     char *wildcard, *prefix;
738 } SftpWildcardMatcher;
739
740 SftpWildcardMatcher *sftp_begin_wildcard_matching(char *name)
741 {
742     struct sftp_packet *pktin;
743     struct sftp_request *req;
744     char *wildcard;
745     char *unwcdir, *tmpdir, *cdir;
746     int len, check;
747     SftpWildcardMatcher *swcm;
748     struct fxp_handle *dirh;
749
750     /*
751      * We don't handle multi-level wildcards; so we expect to find
752      * a fully specified directory part, followed by a wildcard
753      * after that.
754      */
755     wildcard = stripslashes(name, 0);
756
757     unwcdir = dupstr(name);
758     len = wildcard - name;
759     unwcdir[len] = '\0';
760     if (len > 0 && unwcdir[len-1] == '/')
761         unwcdir[len-1] = '\0';
762     tmpdir = snewn(1 + len, char);
763     check = wc_unescape(tmpdir, unwcdir);
764     sfree(tmpdir);
765
766     if (!check) {
767         printf("Multiple-level wildcards are not supported\n");
768         sfree(unwcdir);
769         return NULL;
770     }
771
772     cdir = canonify(unwcdir);
773
774     req = fxp_opendir_send(cdir);
775     pktin = sftp_wait_for_reply(req);
776     dirh = fxp_opendir_recv(pktin, req);
777
778     if (dirh) {
779         swcm = snew(SftpWildcardMatcher);
780         swcm->dirh = dirh;
781         swcm->names = NULL;
782         swcm->wildcard = dupstr(wildcard);
783         swcm->prefix = unwcdir;
784     } else {
785         printf("Unable to open %s: %s\n", cdir, fxp_error());
786         swcm = NULL;
787         sfree(unwcdir);
788     }
789
790     sfree(cdir);
791
792     return swcm;
793 }
794
795 char *sftp_wildcard_get_filename(SftpWildcardMatcher *swcm)
796 {
797     struct fxp_name *name;
798     struct sftp_packet *pktin;
799     struct sftp_request *req;
800
801     while (1) {
802         if (swcm->names && swcm->namepos >= swcm->names->nnames) {
803             fxp_free_names(swcm->names);
804             swcm->names = NULL;
805         }
806
807         if (!swcm->names) {
808             req = fxp_readdir_send(swcm->dirh);
809             pktin = sftp_wait_for_reply(req);
810             swcm->names = fxp_readdir_recv(pktin, req);
811
812             if (!swcm->names) {
813                 if (fxp_error_type() != SSH_FX_EOF)
814                     printf("%s: reading directory: %s\n", swcm->prefix,
815                            fxp_error());
816                 return NULL;
817             } else if (swcm->names->nnames == 0) {
818                 /*
819                  * Another failure mode which we treat as EOF is if
820                  * the server reports success from FXP_READDIR but
821                  * returns no actual names. This is unusual, since
822                  * from most servers you'd expect at least "." and
823                  * "..", but there's nothing forbidding a server from
824                  * omitting those if it wants to.
825                  */
826                 return NULL;
827             }
828
829             swcm->namepos = 0;
830         }
831
832         assert(swcm->names && swcm->namepos < swcm->names->nnames);
833
834         name = &swcm->names->names[swcm->namepos++];
835
836         if (!strcmp(name->filename, ".") || !strcmp(name->filename, ".."))
837             continue;                  /* expected bad filenames */
838
839         if (!vet_filename(name->filename)) {
840             printf("ignoring potentially dangerous server-"
841                    "supplied filename '%s'\n", name->filename);
842             continue;                  /* unexpected bad filename */
843         }
844
845         if (!wc_match(swcm->wildcard, name->filename))
846             continue;                  /* doesn't match the wildcard */
847
848         /*
849          * We have a working filename. Return it.
850          */
851         return dupprintf("%s%s%s", swcm->prefix,
852                          (!swcm->prefix[0] ||
853                           swcm->prefix[strlen(swcm->prefix)-1]=='/' ?
854                           "" : "/"),
855                          name->filename);
856     }
857 }
858
859 void sftp_finish_wildcard_matching(SftpWildcardMatcher *swcm)
860 {
861     struct sftp_packet *pktin;
862     struct sftp_request *req;
863
864     req = fxp_close_send(swcm->dirh);
865     pktin = sftp_wait_for_reply(req);
866     fxp_close_recv(pktin, req);
867
868     if (swcm->names)
869         fxp_free_names(swcm->names);
870
871     sfree(swcm->prefix);
872     sfree(swcm->wildcard);
873
874     sfree(swcm);
875 }
876
877 /*
878  * General function to match a potential wildcard in a filename
879  * argument and iterate over every matching file. Used in several
880  * PSFTP commands (rmdir, rm, chmod, mv).
881  */
882 int wildcard_iterate(char *filename, int (*func)(void *, char *), void *ctx)
883 {
884     char *unwcfname, *newname, *cname;
885     int is_wc, ret;
886
887     unwcfname = snewn(strlen(filename)+1, char);
888     is_wc = !wc_unescape(unwcfname, filename);
889
890     if (is_wc) {
891         SftpWildcardMatcher *swcm = sftp_begin_wildcard_matching(filename);
892         int matched = FALSE;
893         sfree(unwcfname);
894
895         if (!swcm)
896             return 0;
897
898         ret = 1;
899
900         while ( (newname = sftp_wildcard_get_filename(swcm)) != NULL ) {
901             cname = canonify(newname);
902             if (!cname) {
903                 printf("%s: canonify: %s\n", newname, fxp_error());
904                 ret = 0;
905             }
906             sfree(newname);
907             matched = TRUE;
908             ret &= func(ctx, cname);
909             sfree(cname);
910         }
911
912         if (!matched) {
913             /* Politely warn the user that nothing matched. */
914             printf("%s: nothing matched\n", filename);
915         }
916
917         sftp_finish_wildcard_matching(swcm);
918     } else {
919         cname = canonify(unwcfname);
920         if (!cname) {
921             printf("%s: canonify: %s\n", filename, fxp_error());
922             ret = 0;
923         }
924         ret = func(ctx, cname);
925         sfree(cname);
926         sfree(unwcfname);
927     }
928
929     return ret;
930 }
931
932 /*
933  * Handy helper function.
934  */
935 int is_wildcard(char *name)
936 {
937     char *unwcfname = snewn(strlen(name)+1, char);
938     int is_wc = !wc_unescape(unwcfname, name);
939     sfree(unwcfname);
940     return is_wc;
941 }
942
943 /* ----------------------------------------------------------------------
944  * Actual sftp commands.
945  */
946 struct sftp_command {
947     char **words;
948     int nwords, wordssize;
949     int (*obey) (struct sftp_command *);        /* returns <0 to quit */
950 };
951
952 int sftp_cmd_null(struct sftp_command *cmd)
953 {
954     return 1;                          /* success */
955 }
956
957 int sftp_cmd_unknown(struct sftp_command *cmd)
958 {
959     printf("psftp: unknown command \"%s\"\n", cmd->words[0]);
960     return 0;                          /* failure */
961 }
962
963 int sftp_cmd_quit(struct sftp_command *cmd)
964 {
965     return -1;
966 }
967
968 int sftp_cmd_close(struct sftp_command *cmd)
969 {
970     if (back == NULL) {
971         not_connected();
972         return 0;
973     }
974
975     if (back != NULL && back->connected(backhandle)) {
976         char ch;
977         back->special(backhandle, TS_EOF);
978         sent_eof = TRUE;
979         sftp_recvdata(&ch, 1);
980     }
981     do_sftp_cleanup();
982
983     return 0;
984 }
985
986 /*
987  * List a directory. If no arguments are given, list pwd; otherwise
988  * list the directory given in words[1].
989  */
990 int sftp_cmd_ls(struct sftp_command *cmd)
991 {
992     struct fxp_handle *dirh;
993     struct fxp_names *names;
994     struct fxp_name **ournames;
995     int nnames, namesize;
996     const char *dir;
997     char *cdir, *unwcdir, *wildcard;
998     struct sftp_packet *pktin;
999     struct sftp_request *req;
1000     int i;
1001
1002     if (back == NULL) {
1003         not_connected();
1004         return 0;
1005     }
1006
1007     if (cmd->nwords < 2)
1008         dir = ".";
1009     else
1010         dir = cmd->words[1];
1011
1012     unwcdir = snewn(1 + strlen(dir), char);
1013     if (wc_unescape(unwcdir, dir)) {
1014         dir = unwcdir;
1015         wildcard = NULL;
1016     } else {
1017         char *tmpdir;
1018         int len, check;
1019
1020         sfree(unwcdir);
1021         wildcard = stripslashes(dir, 0);
1022         unwcdir = dupstr(dir);
1023         len = wildcard - dir;
1024         unwcdir[len] = '\0';
1025         if (len > 0 && unwcdir[len-1] == '/')
1026             unwcdir[len-1] = '\0';
1027         tmpdir = snewn(1 + len, char);
1028         check = wc_unescape(tmpdir, unwcdir);
1029         sfree(tmpdir);
1030         if (!check) {
1031             printf("Multiple-level wildcards are not supported\n");
1032             sfree(unwcdir);
1033             return 0;
1034         }
1035         dir = unwcdir;
1036     }
1037
1038     cdir = canonify(dir);
1039     if (!cdir) {
1040         printf("%s: canonify: %s\n", dir, fxp_error());
1041         sfree(unwcdir);
1042         return 0;
1043     }
1044
1045     printf("Listing directory %s\n", cdir);
1046
1047     req = fxp_opendir_send(cdir);
1048     pktin = sftp_wait_for_reply(req);
1049     dirh = fxp_opendir_recv(pktin, req);
1050
1051     if (dirh == NULL) {
1052         printf("Unable to open %s: %s\n", dir, fxp_error());
1053     } else {
1054         nnames = namesize = 0;
1055         ournames = NULL;
1056
1057         while (1) {
1058
1059             req = fxp_readdir_send(dirh);
1060             pktin = sftp_wait_for_reply(req);
1061             names = fxp_readdir_recv(pktin, req);
1062
1063             if (names == NULL) {
1064                 if (fxp_error_type() == SSH_FX_EOF)
1065                     break;
1066                 printf("Reading directory %s: %s\n", dir, fxp_error());
1067                 break;
1068             }
1069             if (names->nnames == 0) {
1070                 fxp_free_names(names);
1071                 break;
1072             }
1073
1074             if (nnames + names->nnames >= namesize) {
1075                 namesize += names->nnames + 128;
1076                 ournames = sresize(ournames, namesize, struct fxp_name *);
1077             }
1078
1079             for (i = 0; i < names->nnames; i++)
1080                 if (!wildcard || wc_match(wildcard, names->names[i].filename))
1081                     ournames[nnames++] = fxp_dup_name(&names->names[i]);
1082
1083             fxp_free_names(names);
1084         }
1085         req = fxp_close_send(dirh);
1086         pktin = sftp_wait_for_reply(req);
1087         fxp_close_recv(pktin, req);
1088
1089         /*
1090          * Now we have our filenames. Sort them by actual file
1091          * name, and then output the longname parts.
1092          */
1093         if (nnames > 0)
1094             qsort(ournames, nnames, sizeof(*ournames), sftp_name_compare);
1095
1096         /*
1097          * And print them.
1098          */
1099         for (i = 0; i < nnames; i++) {
1100             printf("%s\n", ournames[i]->longname);
1101             fxp_free_name(ournames[i]);
1102         }
1103         sfree(ournames);
1104     }
1105
1106     sfree(cdir);
1107     sfree(unwcdir);
1108
1109     return 1;
1110 }
1111
1112 /*
1113  * Change directories. We do this by canonifying the new name, then
1114  * trying to OPENDIR it. Only if that succeeds do we set the new pwd.
1115  */
1116 int sftp_cmd_cd(struct sftp_command *cmd)
1117 {
1118     struct fxp_handle *dirh;
1119     struct sftp_packet *pktin;
1120     struct sftp_request *req;
1121     char *dir;
1122
1123     if (back == NULL) {
1124         not_connected();
1125         return 0;
1126     }
1127
1128     if (cmd->nwords < 2)
1129         dir = dupstr(homedir);
1130     else
1131         dir = canonify(cmd->words[1]);
1132
1133     if (!dir) {
1134         printf("%s: canonify: %s\n", dir, fxp_error());
1135         return 0;
1136     }
1137
1138     req = fxp_opendir_send(dir);
1139     pktin = sftp_wait_for_reply(req);
1140     dirh = fxp_opendir_recv(pktin, req);
1141
1142     if (!dirh) {
1143         printf("Directory %s: %s\n", dir, fxp_error());
1144         sfree(dir);
1145         return 0;
1146     }
1147
1148     req = fxp_close_send(dirh);
1149     pktin = sftp_wait_for_reply(req);
1150     fxp_close_recv(pktin, req);
1151
1152     sfree(pwd);
1153     pwd = dir;
1154     printf("Remote directory is now %s\n", pwd);
1155
1156     return 1;
1157 }
1158
1159 /*
1160  * Print current directory. Easy as pie.
1161  */
1162 int sftp_cmd_pwd(struct sftp_command *cmd)
1163 {
1164     if (back == NULL) {
1165         not_connected();
1166         return 0;
1167     }
1168
1169     printf("Remote directory is %s\n", pwd);
1170     return 1;
1171 }
1172
1173 /*
1174  * Get a file and save it at the local end. We have three very
1175  * similar commands here. The basic one is `get'; `reget' differs
1176  * in that it checks for the existence of the destination file and
1177  * starts from where a previous aborted transfer left off; `mget'
1178  * differs in that it interprets all its arguments as files to
1179  * transfer (never as a different local name for a remote file) and
1180  * can handle wildcards.
1181  */
1182 int sftp_general_get(struct sftp_command *cmd, int restart, int multiple)
1183 {
1184     char *fname, *unwcfname, *origfname, *origwfname, *outfname;
1185     int i, ret;
1186     int recurse = FALSE;
1187
1188     if (back == NULL) {
1189         not_connected();
1190         return 0;
1191     }
1192
1193     i = 1;
1194     while (i < cmd->nwords && cmd->words[i][0] == '-') {
1195         if (!strcmp(cmd->words[i], "--")) {
1196             /* finish processing options */
1197             i++;
1198             break;
1199         } else if (!strcmp(cmd->words[i], "-r")) {
1200             recurse = TRUE;
1201         } else {
1202             printf("%s: unrecognised option '%s'\n", cmd->words[0], cmd->words[i]);
1203             return 0;
1204         }
1205         i++;
1206     }
1207
1208     if (i >= cmd->nwords) {
1209         printf("%s: expects a filename\n", cmd->words[0]);
1210         return 0;
1211     }
1212
1213     ret = 1;
1214     do {
1215         SftpWildcardMatcher *swcm;
1216
1217         origfname = cmd->words[i++];
1218         unwcfname = snewn(strlen(origfname)+1, char);
1219
1220         if (multiple && !wc_unescape(unwcfname, origfname)) {
1221             swcm = sftp_begin_wildcard_matching(origfname);
1222             if (!swcm) {
1223                 sfree(unwcfname);
1224                 continue;
1225             }
1226             origwfname = sftp_wildcard_get_filename(swcm);
1227             if (!origwfname) {
1228                 /* Politely warn the user that nothing matched. */
1229                 printf("%s: nothing matched\n", origfname);
1230                 sftp_finish_wildcard_matching(swcm);
1231                 sfree(unwcfname);
1232                 continue;
1233             }
1234         } else {
1235             origwfname = origfname;
1236             swcm = NULL;
1237         }
1238
1239         while (origwfname) {
1240             fname = canonify(origwfname);
1241
1242             if (!fname) {
1243                 sftp_finish_wildcard_matching(swcm);
1244                 printf("%s: canonify: %s\n", origwfname, fxp_error());
1245                 sfree(origwfname);
1246                 sfree(unwcfname);
1247                 return 0;
1248             }
1249
1250             if (!multiple && i < cmd->nwords)
1251                 outfname = cmd->words[i++];
1252             else
1253                 outfname = stripslashes(origwfname, 0);
1254
1255             ret = sftp_get_file(fname, outfname, recurse, restart);
1256
1257             sfree(fname);
1258
1259             if (swcm) {
1260                 sfree(origwfname);
1261                 origwfname = sftp_wildcard_get_filename(swcm);
1262             } else {
1263                 origwfname = NULL;
1264             }
1265         }
1266         sfree(unwcfname);
1267         if (swcm)
1268             sftp_finish_wildcard_matching(swcm);
1269         if (!ret)
1270             return ret;
1271
1272     } while (multiple && i < cmd->nwords);
1273
1274     return ret;
1275 }
1276 int sftp_cmd_get(struct sftp_command *cmd)
1277 {
1278     return sftp_general_get(cmd, 0, 0);
1279 }
1280 int sftp_cmd_mget(struct sftp_command *cmd)
1281 {
1282     return sftp_general_get(cmd, 0, 1);
1283 }
1284 int sftp_cmd_reget(struct sftp_command *cmd)
1285 {
1286     return sftp_general_get(cmd, 1, 0);
1287 }
1288
1289 /*
1290  * Send a file and store it at the remote end. We have three very
1291  * similar commands here. The basic one is `put'; `reput' differs
1292  * in that it checks for the existence of the destination file and
1293  * starts from where a previous aborted transfer left off; `mput'
1294  * differs in that it interprets all its arguments as files to
1295  * transfer (never as a different remote name for a local file) and
1296  * can handle wildcards.
1297  */
1298 int sftp_general_put(struct sftp_command *cmd, int restart, int multiple)
1299 {
1300     char *fname, *wfname, *origoutfname, *outfname;
1301     int i, ret;
1302     int recurse = FALSE;
1303
1304     if (back == NULL) {
1305         not_connected();
1306         return 0;
1307     }
1308
1309     i = 1;
1310     while (i < cmd->nwords && cmd->words[i][0] == '-') {
1311         if (!strcmp(cmd->words[i], "--")) {
1312             /* finish processing options */
1313             i++;
1314             break;
1315         } else if (!strcmp(cmd->words[i], "-r")) {
1316             recurse = TRUE;
1317         } else {
1318             printf("%s: unrecognised option '%s'\n", cmd->words[0], cmd->words[i]);
1319             return 0;
1320         }
1321         i++;
1322     }
1323
1324     if (i >= cmd->nwords) {
1325         printf("%s: expects a filename\n", cmd->words[0]);
1326         return 0;
1327     }
1328
1329     ret = 1;
1330     do {
1331         WildcardMatcher *wcm;
1332         fname = cmd->words[i++];
1333
1334         if (multiple && test_wildcard(fname, FALSE) == WCTYPE_WILDCARD) {
1335             wcm = begin_wildcard_matching(fname);
1336             wfname = wildcard_get_filename(wcm);
1337             if (!wfname) {
1338                 /* Politely warn the user that nothing matched. */
1339                 printf("%s: nothing matched\n", fname);
1340                 finish_wildcard_matching(wcm);
1341                 continue;
1342             }
1343         } else {
1344             wfname = fname;
1345             wcm = NULL;
1346         }
1347
1348         while (wfname) {
1349             if (!multiple && i < cmd->nwords)
1350                 origoutfname = cmd->words[i++];
1351             else
1352                 origoutfname = stripslashes(wfname, 1);
1353
1354             outfname = canonify(origoutfname);
1355             if (!outfname) {
1356                 printf("%s: canonify: %s\n", origoutfname, fxp_error());
1357                 if (wcm) {
1358                     sfree(wfname);
1359                     finish_wildcard_matching(wcm);
1360                 }
1361                 return 0;
1362             }
1363             ret = sftp_put_file(wfname, outfname, recurse, restart);
1364             sfree(outfname);
1365
1366             if (wcm) {
1367                 sfree(wfname);
1368                 wfname = wildcard_get_filename(wcm);
1369             } else {
1370                 wfname = NULL;
1371             }
1372         }
1373
1374         if (wcm)
1375             finish_wildcard_matching(wcm);
1376
1377         if (!ret)
1378             return ret;
1379
1380     } while (multiple && i < cmd->nwords);
1381
1382     return ret;
1383 }
1384 int sftp_cmd_put(struct sftp_command *cmd)
1385 {
1386     return sftp_general_put(cmd, 0, 0);
1387 }
1388 int sftp_cmd_mput(struct sftp_command *cmd)
1389 {
1390     return sftp_general_put(cmd, 0, 1);
1391 }
1392 int sftp_cmd_reput(struct sftp_command *cmd)
1393 {
1394     return sftp_general_put(cmd, 1, 0);
1395 }
1396
1397 int sftp_cmd_mkdir(struct sftp_command *cmd)
1398 {
1399     char *dir;
1400     struct sftp_packet *pktin;
1401     struct sftp_request *req;
1402     int result;
1403     int i, ret;
1404
1405     if (back == NULL) {
1406         not_connected();
1407         return 0;
1408     }
1409
1410     if (cmd->nwords < 2) {
1411         printf("mkdir: expects a directory\n");
1412         return 0;
1413     }
1414
1415     ret = 1;
1416     for (i = 1; i < cmd->nwords; i++) {
1417         dir = canonify(cmd->words[i]);
1418         if (!dir) {
1419             printf("%s: canonify: %s\n", dir, fxp_error());
1420             return 0;
1421         }
1422
1423         req = fxp_mkdir_send(dir);
1424         pktin = sftp_wait_for_reply(req);
1425         result = fxp_mkdir_recv(pktin, req);
1426
1427         if (!result) {
1428             printf("mkdir %s: %s\n", dir, fxp_error());
1429             ret = 0;
1430         } else
1431             printf("mkdir %s: OK\n", dir);
1432
1433         sfree(dir);
1434     }
1435
1436     return ret;
1437 }
1438
1439 static int sftp_action_rmdir(void *vctx, char *dir)
1440 {
1441     struct sftp_packet *pktin;
1442     struct sftp_request *req;
1443     int result;
1444
1445     req = fxp_rmdir_send(dir);
1446     pktin = sftp_wait_for_reply(req);
1447     result = fxp_rmdir_recv(pktin, req);
1448
1449     if (!result) {
1450         printf("rmdir %s: %s\n", dir, fxp_error());
1451         return 0;
1452     }
1453
1454     printf("rmdir %s: OK\n", dir);
1455
1456     return 1;
1457 }
1458
1459 int sftp_cmd_rmdir(struct sftp_command *cmd)
1460 {
1461     int i, ret;
1462
1463     if (back == NULL) {
1464         not_connected();
1465         return 0;
1466     }
1467
1468     if (cmd->nwords < 2) {
1469         printf("rmdir: expects a directory\n");
1470         return 0;
1471     }
1472
1473     ret = 1;
1474     for (i = 1; i < cmd->nwords; i++)
1475         ret &= wildcard_iterate(cmd->words[i], sftp_action_rmdir, NULL);
1476
1477     return ret;
1478 }
1479
1480 static int sftp_action_rm(void *vctx, char *fname)
1481 {
1482     struct sftp_packet *pktin;
1483     struct sftp_request *req;
1484     int result;
1485
1486     req = fxp_remove_send(fname);
1487     pktin = sftp_wait_for_reply(req);
1488     result = fxp_remove_recv(pktin, req);
1489
1490     if (!result) {
1491         printf("rm %s: %s\n", fname, fxp_error());
1492         return 0;
1493     }
1494
1495     printf("rm %s: OK\n", fname);
1496
1497     return 1;
1498 }
1499
1500 int sftp_cmd_rm(struct sftp_command *cmd)
1501 {
1502     int i, ret;
1503
1504     if (back == NULL) {
1505         not_connected();
1506         return 0;
1507     }
1508
1509     if (cmd->nwords < 2) {
1510         printf("rm: expects a filename\n");
1511         return 0;
1512     }
1513
1514     ret = 1;
1515     for (i = 1; i < cmd->nwords; i++)
1516         ret &= wildcard_iterate(cmd->words[i], sftp_action_rm, NULL);
1517
1518     return ret;
1519 }
1520
1521 static int check_is_dir(char *dstfname)
1522 {
1523     struct sftp_packet *pktin;
1524     struct sftp_request *req;
1525     struct fxp_attrs attrs;
1526     int result;
1527
1528     req = fxp_stat_send(dstfname);
1529     pktin = sftp_wait_for_reply(req);
1530     result = fxp_stat_recv(pktin, req, &attrs);
1531
1532     if (result &&
1533         (attrs.flags & SSH_FILEXFER_ATTR_PERMISSIONS) &&
1534         (attrs.permissions & 0040000))
1535         return TRUE;
1536     else
1537         return FALSE;
1538 }
1539
1540 struct sftp_context_mv {
1541     char *dstfname;
1542     int dest_is_dir;
1543 };
1544
1545 static int sftp_action_mv(void *vctx, char *srcfname)
1546 {
1547     struct sftp_context_mv *ctx = (struct sftp_context_mv *)vctx;
1548     struct sftp_packet *pktin;
1549     struct sftp_request *req;
1550     const char *error;
1551     char *finalfname, *newcanon = NULL;
1552     int ret, result;
1553
1554     if (ctx->dest_is_dir) {
1555         char *p;
1556         char *newname;
1557
1558         p = srcfname + strlen(srcfname);
1559         while (p > srcfname && p[-1] != '/') p--;
1560         newname = dupcat(ctx->dstfname, "/", p, NULL);
1561         newcanon = canonify(newname);
1562         if (!newcanon) {
1563             printf("%s: canonify: %s\n", newname, fxp_error());
1564             sfree(newname);
1565             return 0;
1566         }
1567         sfree(newname);
1568
1569         finalfname = newcanon;
1570     } else {
1571         finalfname = ctx->dstfname;
1572     }
1573
1574     req = fxp_rename_send(srcfname, finalfname);
1575     pktin = sftp_wait_for_reply(req);
1576     result = fxp_rename_recv(pktin, req);
1577
1578     error = result ? NULL : fxp_error();
1579
1580     if (error) {
1581         printf("mv %s %s: %s\n", srcfname, finalfname, error);
1582         ret = 0;
1583     } else {
1584         printf("%s -> %s\n", srcfname, finalfname);
1585         ret = 1;
1586     }
1587
1588     sfree(newcanon);
1589     return ret;
1590 }
1591
1592 int sftp_cmd_mv(struct sftp_command *cmd)
1593 {
1594     struct sftp_context_mv actx, *ctx = &actx;
1595     int i, ret;
1596
1597     if (back == NULL) {
1598         not_connected();
1599         return 0;
1600     }
1601
1602     if (cmd->nwords < 3) {
1603         printf("mv: expects two filenames\n");
1604         return 0;
1605     }
1606
1607     ctx->dstfname = canonify(cmd->words[cmd->nwords-1]);
1608     if (!ctx->dstfname) {
1609         printf("%s: canonify: %s\n", ctx->dstfname, fxp_error());
1610         return 0;
1611     }
1612
1613     /*
1614      * If there's more than one source argument, or one source
1615      * argument which is a wildcard, we _require_ that the
1616      * destination is a directory.
1617      */
1618     ctx->dest_is_dir = check_is_dir(ctx->dstfname);
1619     if ((cmd->nwords > 3 || is_wildcard(cmd->words[1])) && !ctx->dest_is_dir) {
1620         printf("mv: multiple or wildcard arguments require the destination"
1621                " to be a directory\n");
1622         sfree(ctx->dstfname);
1623         return 0;
1624     }
1625
1626     /*
1627      * Now iterate over the source arguments.
1628      */
1629     ret = 1;
1630     for (i = 1; i < cmd->nwords-1; i++)
1631         ret &= wildcard_iterate(cmd->words[i], sftp_action_mv, ctx);
1632
1633     sfree(ctx->dstfname);
1634     return ret;
1635 }
1636
1637 struct sftp_context_chmod {
1638     unsigned attrs_clr, attrs_xor;
1639 };
1640
1641 static int sftp_action_chmod(void *vctx, char *fname)
1642 {
1643     struct fxp_attrs attrs;
1644     struct sftp_packet *pktin;
1645     struct sftp_request *req;
1646     int result;
1647     unsigned oldperms, newperms;
1648     struct sftp_context_chmod *ctx = (struct sftp_context_chmod *)vctx;
1649
1650     req = fxp_stat_send(fname);
1651     pktin = sftp_wait_for_reply(req);
1652     result = fxp_stat_recv(pktin, req, &attrs);
1653
1654     if (!result || !(attrs.flags & SSH_FILEXFER_ATTR_PERMISSIONS)) {
1655         printf("get attrs for %s: %s\n", fname,
1656                result ? "file permissions not provided" : fxp_error());
1657         return 0;
1658     }
1659
1660     attrs.flags = SSH_FILEXFER_ATTR_PERMISSIONS;   /* perms _only_ */
1661     oldperms = attrs.permissions & 07777;
1662     attrs.permissions &= ~ctx->attrs_clr;
1663     attrs.permissions ^= ctx->attrs_xor;
1664     newperms = attrs.permissions & 07777;
1665
1666     if (oldperms == newperms)
1667         return 1;                      /* no need to do anything! */
1668
1669     req = fxp_setstat_send(fname, attrs);
1670     pktin = sftp_wait_for_reply(req);
1671     result = fxp_setstat_recv(pktin, req);
1672
1673     if (!result) {
1674         printf("set attrs for %s: %s\n", fname, fxp_error());
1675         return 0;
1676     }
1677
1678     printf("%s: %04o -> %04o\n", fname, oldperms, newperms);
1679
1680     return 1;
1681 }
1682
1683 int sftp_cmd_chmod(struct sftp_command *cmd)
1684 {
1685     char *mode;
1686     int i, ret;
1687     struct sftp_context_chmod actx, *ctx = &actx;
1688
1689     if (back == NULL) {
1690         not_connected();
1691         return 0;
1692     }
1693
1694     if (cmd->nwords < 3) {
1695         printf("chmod: expects a mode specifier and a filename\n");
1696         return 0;
1697     }
1698
1699     /*
1700      * Attempt to parse the mode specifier in cmd->words[1]. We
1701      * don't support the full horror of Unix chmod; instead we
1702      * support a much simpler syntax in which the user can either
1703      * specify an octal number, or a comma-separated sequence of
1704      * [ugoa]*[-+=][rwxst]+. (The initial [ugoa] sequence may
1705      * _only_ be omitted if the only attribute mentioned is t,
1706      * since all others require a user/group/other specification.
1707      * Additionally, the s attribute may not be specified for any
1708      * [ugoa] specifications other than exactly u or exactly g.
1709      */
1710     ctx->attrs_clr = ctx->attrs_xor = 0;
1711     mode = cmd->words[1];
1712     if (mode[0] >= '0' && mode[0] <= '9') {
1713         if (mode[strspn(mode, "01234567")]) {
1714             printf("chmod: numeric file modes should"
1715                    " contain digits 0-7 only\n");
1716             return 0;
1717         }
1718         ctx->attrs_clr = 07777;
1719         sscanf(mode, "%o", &ctx->attrs_xor);
1720         ctx->attrs_xor &= ctx->attrs_clr;
1721     } else {
1722         while (*mode) {
1723             char *modebegin = mode;
1724             unsigned subset, perms;
1725             int action;
1726
1727             subset = 0;
1728             while (*mode && *mode != ',' &&
1729                    *mode != '+' && *mode != '-' && *mode != '=') {
1730                 switch (*mode) {
1731                   case 'u': subset |= 04700; break; /* setuid, user perms */
1732                   case 'g': subset |= 02070; break; /* setgid, group perms */
1733                   case 'o': subset |= 00007; break; /* just other perms */
1734                   case 'a': subset |= 06777; break; /* all of the above */
1735                   default:
1736                     printf("chmod: file mode '%.*s' contains unrecognised"
1737                            " user/group/other specifier '%c'\n",
1738                            (int)strcspn(modebegin, ","), modebegin, *mode);
1739                     return 0;
1740                 }
1741                 mode++;
1742             }
1743             if (!*mode || *mode == ',') {
1744                 printf("chmod: file mode '%.*s' is incomplete\n",
1745                        (int)strcspn(modebegin, ","), modebegin);
1746                 return 0;
1747             }
1748             action = *mode++;
1749             if (!*mode || *mode == ',') {
1750                 printf("chmod: file mode '%.*s' is incomplete\n",
1751                        (int)strcspn(modebegin, ","), modebegin);
1752                 return 0;
1753             }
1754             perms = 0;
1755             while (*mode && *mode != ',') {
1756                 switch (*mode) {
1757                   case 'r': perms |= 00444; break;
1758                   case 'w': perms |= 00222; break;
1759                   case 'x': perms |= 00111; break;
1760                   case 't': perms |= 01000; subset |= 01000; break;
1761                   case 's':
1762                     if ((subset & 06777) != 04700 &&
1763                         (subset & 06777) != 02070) {
1764                         printf("chmod: file mode '%.*s': set[ug]id bit should"
1765                                " be used with exactly one of u or g only\n",
1766                                (int)strcspn(modebegin, ","), modebegin);
1767                         return 0;
1768                     }
1769                     perms |= 06000;
1770                     break;
1771                   default:
1772                     printf("chmod: file mode '%.*s' contains unrecognised"
1773                            " permission specifier '%c'\n",
1774                            (int)strcspn(modebegin, ","), modebegin, *mode);
1775                     return 0;
1776                 }
1777                 mode++;
1778             }
1779             if (!(subset & 06777) && (perms &~ subset)) {
1780                 printf("chmod: file mode '%.*s' contains no user/group/other"
1781                        " specifier and permissions other than 't' \n",
1782                        (int)strcspn(modebegin, ","), modebegin);
1783                 return 0;
1784             }
1785             perms &= subset;
1786             switch (action) {
1787               case '+':
1788                 ctx->attrs_clr |= perms;
1789                 ctx->attrs_xor |= perms;
1790                 break;
1791               case '-':
1792                 ctx->attrs_clr |= perms;
1793                 ctx->attrs_xor &= ~perms;
1794                 break;
1795               case '=':
1796                 ctx->attrs_clr |= subset;
1797                 ctx->attrs_xor |= perms;
1798                 break;
1799             }
1800             if (*mode) mode++;         /* eat comma */
1801         }
1802     }
1803
1804     ret = 1;
1805     for (i = 2; i < cmd->nwords; i++)
1806         ret &= wildcard_iterate(cmd->words[i], sftp_action_chmod, ctx);
1807
1808     return ret;
1809 }
1810
1811 static int sftp_cmd_open(struct sftp_command *cmd)
1812 {
1813     int portnumber;
1814
1815     if (back != NULL) {
1816         printf("psftp: already connected\n");
1817         return 0;
1818     }
1819
1820     if (cmd->nwords < 2) {
1821         printf("open: expects a host name\n");
1822         return 0;
1823     }
1824
1825     if (cmd->nwords > 2) {
1826         portnumber = atoi(cmd->words[2]);
1827         if (portnumber == 0) {
1828             printf("open: invalid port number\n");
1829             return 0;
1830         }
1831     } else
1832         portnumber = 0;
1833
1834     if (psftp_connect(cmd->words[1], NULL, portnumber)) {
1835         back = NULL;                   /* connection is already closed */
1836         return -1;                     /* this is fatal */
1837     }
1838     do_sftp_init();
1839     return 1;
1840 }
1841
1842 static int sftp_cmd_lcd(struct sftp_command *cmd)
1843 {
1844     char *currdir, *errmsg;
1845
1846     if (cmd->nwords < 2) {
1847         printf("lcd: expects a local directory name\n");
1848         return 0;
1849     }
1850
1851     errmsg = psftp_lcd(cmd->words[1]);
1852     if (errmsg) {
1853         printf("lcd: unable to change directory: %s\n", errmsg);
1854         sfree(errmsg);
1855         return 0;
1856     }
1857
1858     currdir = psftp_getcwd();
1859     printf("New local directory is %s\n", currdir);
1860     sfree(currdir);
1861
1862     return 1;
1863 }
1864
1865 static int sftp_cmd_lpwd(struct sftp_command *cmd)
1866 {
1867     char *currdir;
1868
1869     currdir = psftp_getcwd();
1870     printf("Current local directory is %s\n", currdir);
1871     sfree(currdir);
1872
1873     return 1;
1874 }
1875
1876 static int sftp_cmd_pling(struct sftp_command *cmd)
1877 {
1878     int exitcode;
1879
1880     exitcode = system(cmd->words[1]);
1881     return (exitcode == 0);
1882 }
1883
1884 static int sftp_cmd_help(struct sftp_command *cmd);
1885
1886 static struct sftp_cmd_lookup {
1887     const char *name;
1888     /*
1889      * For help purposes, there are two kinds of command:
1890      * 
1891      *  - primary commands, in which `longhelp' is non-NULL. In
1892      *    this case `shorthelp' is descriptive text, and `longhelp'
1893      *    is longer descriptive text intended to be printed after
1894      *    the command name.
1895      * 
1896      *  - alias commands, in which `longhelp' is NULL. In this case
1897      *    `shorthelp' is the name of a primary command, which
1898      *    contains the help that should double up for this command.
1899      */
1900     int listed;                        /* do we list this in primary help? */
1901     const char *shorthelp;
1902     const char *longhelp;
1903     int (*obey) (struct sftp_command *);
1904 } sftp_lookup[] = {
1905     /*
1906      * List of sftp commands. This is binary-searched so it MUST be
1907      * in ASCII order.
1908      */
1909     {
1910         "!", TRUE, "run a local command",
1911             "<command>\n"
1912             /* FIXME: this example is crap for non-Windows. */
1913             "  Runs a local command. For example, \"!del myfile\".\n",
1914             sftp_cmd_pling
1915     },
1916     {
1917         "bye", TRUE, "finish your SFTP session",
1918             "\n"
1919             "  Terminates your SFTP session and quits the PSFTP program.\n",
1920             sftp_cmd_quit
1921     },
1922     {
1923         "cd", TRUE, "change your remote working directory",
1924             " [ <new working directory> ]\n"
1925             "  Change the remote working directory for your SFTP session.\n"
1926             "  If a new working directory is not supplied, you will be\n"
1927             "  returned to your home directory.\n",
1928             sftp_cmd_cd
1929     },
1930     {
1931         "chmod", TRUE, "change file permissions and modes",
1932             " <modes> <filename-or-wildcard> [ <filename-or-wildcard>... ]\n"
1933             "  Change the file permissions on one or more remote files or\n"
1934             "  directories.\n"
1935             "  <modes> can be any octal Unix permission specifier.\n"
1936             "  Alternatively, <modes> can include the following modifiers:\n"
1937             "    u+r     make file readable by owning user\n"
1938             "    u+w     make file writable by owning user\n"
1939             "    u+x     make file executable by owning user\n"
1940             "    u-r     make file not readable by owning user\n"
1941             "    [also u-w, u-x]\n"
1942             "    g+r     make file readable by members of owning group\n"
1943             "    [also g+w, g+x, g-r, g-w, g-x]\n"
1944             "    o+r     make file readable by all other users\n"
1945             "    [also o+w, o+x, o-r, o-w, o-x]\n"
1946             "    a+r     make file readable by absolutely everybody\n"
1947             "    [also a+w, a+x, a-r, a-w, a-x]\n"
1948             "    u+s     enable the Unix set-user-ID bit\n"
1949             "    u-s     disable the Unix set-user-ID bit\n"
1950             "    g+s     enable the Unix set-group-ID bit\n"
1951             "    g-s     disable the Unix set-group-ID bit\n"
1952             "    +t      enable the Unix \"sticky bit\"\n"
1953             "  You can give more than one modifier for the same user (\"g-rwx\"), and\n"
1954             "  more than one user for the same modifier (\"ug+w\"). You can\n"
1955             "  use commas to separate different modifiers (\"u+rwx,g+s\").\n",
1956             sftp_cmd_chmod
1957     },
1958     {
1959         "close", TRUE, "finish your SFTP session but do not quit PSFTP",
1960             "\n"
1961             "  Terminates your SFTP session, but does not quit the PSFTP\n"
1962             "  program. You can then use \"open\" to start another SFTP\n"
1963             "  session, to the same server or to a different one.\n",
1964             sftp_cmd_close
1965     },
1966     {
1967         "del", TRUE, "delete files on the remote server",
1968             " <filename-or-wildcard> [ <filename-or-wildcard>... ]\n"
1969             "  Delete a file or files from the server.\n",
1970             sftp_cmd_rm
1971     },
1972     {
1973         "delete", FALSE, "del", NULL, sftp_cmd_rm
1974     },
1975     {
1976         "dir", TRUE, "list remote files",
1977             " [ <directory-name> ]/[ <wildcard> ]\n"
1978             "  List the contents of a specified directory on the server.\n"
1979             "  If <directory-name> is not given, the current working directory\n"
1980             "  is assumed.\n"
1981             "  If <wildcard> is given, it is treated as a set of files to\n"
1982             "  list; otherwise, all files are listed.\n",
1983             sftp_cmd_ls
1984     },
1985     {
1986         "exit", TRUE, "bye", NULL, sftp_cmd_quit
1987     },
1988     {
1989         "get", TRUE, "download a file from the server to your local machine",
1990             " [ -r ] [ -- ] <filename> [ <local-filename> ]\n"
1991             "  Downloads a file on the server and stores it locally under\n"
1992             "  the same name, or under a different one if you supply the\n"
1993             "  argument <local-filename>.\n"
1994             "  If -r specified, recursively fetch a directory.\n",
1995             sftp_cmd_get
1996     },
1997     {
1998         "help", TRUE, "give help",
1999             " [ <command> [ <command> ... ] ]\n"
2000             "  Give general help if no commands are specified.\n"
2001             "  If one or more commands are specified, give specific help on\n"
2002             "  those particular commands.\n",
2003             sftp_cmd_help
2004     },
2005     {
2006         "lcd", TRUE, "change local working directory",
2007             " <local-directory-name>\n"
2008             "  Change the local working directory of the PSFTP program (the\n"
2009             "  default location where the \"get\" command will save files).\n",
2010             sftp_cmd_lcd
2011     },
2012     {
2013         "lpwd", TRUE, "print local working directory",
2014             "\n"
2015             "  Print the local working directory of the PSFTP program (the\n"
2016             "  default location where the \"get\" command will save files).\n",
2017             sftp_cmd_lpwd
2018     },
2019     {
2020         "ls", TRUE, "dir", NULL,
2021             sftp_cmd_ls
2022     },
2023     {
2024         "mget", TRUE, "download multiple files at once",
2025             " [ -r ] [ -- ] <filename-or-wildcard> [ <filename-or-wildcard>... ]\n"
2026             "  Downloads many files from the server, storing each one under\n"
2027             "  the same name it has on the server side. You can use wildcards\n"
2028             "  such as \"*.c\" to specify lots of files at once.\n"
2029             "  If -r specified, recursively fetch files and directories.\n",
2030             sftp_cmd_mget
2031     },
2032     {
2033         "mkdir", TRUE, "create directories on the remote server",
2034             " <directory-name> [ <directory-name>... ]\n"
2035             "  Creates directories with the given names on the server.\n",
2036             sftp_cmd_mkdir
2037     },
2038     {
2039         "mput", TRUE, "upload multiple files at once",
2040             " [ -r ] [ -- ] <filename-or-wildcard> [ <filename-or-wildcard>... ]\n"
2041             "  Uploads many files to the server, storing each one under the\n"
2042             "  same name it has on the client side. You can use wildcards\n"
2043             "  such as \"*.c\" to specify lots of files at once.\n"
2044             "  If -r specified, recursively store files and directories.\n",
2045             sftp_cmd_mput
2046     },
2047     {
2048         "mv", TRUE, "move or rename file(s) on the remote server",
2049             " <source> [ <source>... ] <destination>\n"
2050             "  Moves or renames <source>(s) on the server to <destination>,\n"
2051             "  also on the server.\n"
2052             "  If <destination> specifies an existing directory, then <source>\n"
2053             "  may be a wildcard, and multiple <source>s may be given; all\n"
2054             "  source files are moved into <destination>.\n"
2055             "  Otherwise, <source> must specify a single file, which is moved\n"
2056             "  or renamed so that it is accessible under the name <destination>.\n",
2057             sftp_cmd_mv
2058     },
2059     {
2060         "open", TRUE, "connect to a host",
2061             " [<user>@]<hostname> [<port>]\n"
2062             "  Establishes an SFTP connection to a given host. Only usable\n"
2063             "  when you are not already connected to a server.\n",
2064             sftp_cmd_open
2065     },
2066     {
2067         "put", TRUE, "upload a file from your local machine to the server",
2068             " [ -r ] [ -- ] <filename> [ <remote-filename> ]\n"
2069             "  Uploads a file to the server and stores it there under\n"
2070             "  the same name, or under a different one if you supply the\n"
2071             "  argument <remote-filename>.\n"
2072             "  If -r specified, recursively store a directory.\n",
2073             sftp_cmd_put
2074     },
2075     {
2076         "pwd", TRUE, "print your remote working directory",
2077             "\n"
2078             "  Print the current remote working directory for your SFTP session.\n",
2079             sftp_cmd_pwd
2080     },
2081     {
2082         "quit", TRUE, "bye", NULL,
2083             sftp_cmd_quit
2084     },
2085     {
2086         "reget", TRUE, "continue downloading files",
2087             " [ -r ] [ -- ] <filename> [ <local-filename> ]\n"
2088             "  Works exactly like the \"get\" command, but the local file\n"
2089             "  must already exist. The download will begin at the end of the\n"
2090             "  file. This is for resuming a download that was interrupted.\n"
2091             "  If -r specified, resume interrupted \"get -r\".\n",
2092             sftp_cmd_reget
2093     },
2094     {
2095         "ren", TRUE, "mv", NULL,
2096             sftp_cmd_mv
2097     },
2098     {
2099         "rename", FALSE, "mv", NULL,
2100             sftp_cmd_mv
2101     },
2102     {
2103         "reput", TRUE, "continue uploading files",
2104             " [ -r ] [ -- ] <filename> [ <remote-filename> ]\n"
2105             "  Works exactly like the \"put\" command, but the remote file\n"
2106             "  must already exist. The upload will begin at the end of the\n"
2107             "  file. This is for resuming an upload that was interrupted.\n"
2108             "  If -r specified, resume interrupted \"put -r\".\n",
2109             sftp_cmd_reput
2110     },
2111     {
2112         "rm", TRUE, "del", NULL,
2113             sftp_cmd_rm
2114     },
2115     {
2116         "rmdir", TRUE, "remove directories on the remote server",
2117             " <directory-name> [ <directory-name>... ]\n"
2118             "  Removes the directory with the given name on the server.\n"
2119             "  The directory will not be removed unless it is empty.\n"
2120             "  Wildcards may be used to specify multiple directories.\n",
2121             sftp_cmd_rmdir
2122     }
2123 };
2124
2125 const struct sftp_cmd_lookup *lookup_command(const char *name)
2126 {
2127     int i, j, k, cmp;
2128
2129     i = -1;
2130     j = sizeof(sftp_lookup) / sizeof(*sftp_lookup);
2131     while (j - i > 1) {
2132         k = (j + i) / 2;
2133         cmp = strcmp(name, sftp_lookup[k].name);
2134         if (cmp < 0)
2135             j = k;
2136         else if (cmp > 0)
2137             i = k;
2138         else {
2139             return &sftp_lookup[k];
2140         }
2141     }
2142     return NULL;
2143 }
2144
2145 static int sftp_cmd_help(struct sftp_command *cmd)
2146 {
2147     int i;
2148     if (cmd->nwords == 1) {
2149         /*
2150          * Give short help on each command.
2151          */
2152         int maxlen;
2153         maxlen = 0;
2154         for (i = 0; i < sizeof(sftp_lookup) / sizeof(*sftp_lookup); i++) {
2155             int len;
2156             if (!sftp_lookup[i].listed)
2157                 continue;
2158             len = strlen(sftp_lookup[i].name);
2159             if (maxlen < len)
2160                 maxlen = len;
2161         }
2162         for (i = 0; i < sizeof(sftp_lookup) / sizeof(*sftp_lookup); i++) {
2163             const struct sftp_cmd_lookup *lookup;
2164             if (!sftp_lookup[i].listed)
2165                 continue;
2166             lookup = &sftp_lookup[i];
2167             printf("%-*s", maxlen+2, lookup->name);
2168             if (lookup->longhelp == NULL)
2169                 lookup = lookup_command(lookup->shorthelp);
2170             printf("%s\n", lookup->shorthelp);
2171         }
2172     } else {
2173         /*
2174          * Give long help on specific commands.
2175          */
2176         for (i = 1; i < cmd->nwords; i++) {
2177             const struct sftp_cmd_lookup *lookup;
2178             lookup = lookup_command(cmd->words[i]);
2179             if (!lookup) {
2180                 printf("help: %s: command not found\n", cmd->words[i]);
2181             } else {
2182                 printf("%s", lookup->name);
2183                 if (lookup->longhelp == NULL)
2184                     lookup = lookup_command(lookup->shorthelp);
2185                 printf("%s", lookup->longhelp);
2186             }
2187         }
2188     }
2189     return 1;
2190 }
2191
2192 /* ----------------------------------------------------------------------
2193  * Command line reading and parsing.
2194  */
2195 struct sftp_command *sftp_getcmd(FILE *fp, int mode, int modeflags)
2196 {
2197     char *line;
2198     struct sftp_command *cmd;
2199     char *p, *q, *r;
2200     int quoting;
2201
2202     cmd = snew(struct sftp_command);
2203     cmd->words = NULL;
2204     cmd->nwords = 0;
2205     cmd->wordssize = 0;
2206
2207     line = NULL;
2208
2209     if (fp) {
2210         if (modeflags & 1)
2211             printf("psftp> ");
2212         line = fgetline(fp);
2213     } else {
2214         line = ssh_sftp_get_cmdline("psftp> ", back == NULL);
2215     }
2216
2217     if (!line || !*line) {
2218         cmd->obey = sftp_cmd_quit;
2219         if ((mode == 0) || (modeflags & 1))
2220             printf("quit\n");
2221         sfree(line);
2222         return cmd;                    /* eof */
2223     }
2224
2225     line[strcspn(line, "\r\n")] = '\0';
2226
2227     if (modeflags & 1) {
2228         printf("%s\n", line);
2229     }
2230
2231     p = line;
2232     while (*p && (*p == ' ' || *p == '\t'))
2233         p++;
2234
2235     if (*p == '!') {
2236         /*
2237          * Special case: the ! command. This is always parsed as
2238          * exactly two words: one containing the !, and the second
2239          * containing everything else on the line.
2240          */
2241         cmd->nwords = cmd->wordssize = 2;
2242         cmd->words = sresize(cmd->words, cmd->wordssize, char *);
2243         cmd->words[0] = dupstr("!");
2244         cmd->words[1] = dupstr(p+1);
2245     } else if (*p == '#') {
2246         /*
2247          * Special case: comment. Entire line is ignored.
2248          */
2249         cmd->nwords = cmd->wordssize = 0;
2250     } else {
2251
2252         /*
2253          * Parse the command line into words. The syntax is:
2254          *  - double quotes are removed, but cause spaces within to be
2255          *    treated as non-separating.
2256          *  - a double-doublequote pair is a literal double quote, inside
2257          *    _or_ outside quotes. Like this:
2258          *
2259          *      firstword "second word" "this has ""quotes"" in" and""this""
2260          *
2261          * becomes
2262          *
2263          *      >firstword<
2264          *      >second word<
2265          *      >this has "quotes" in<
2266          *      >and"this"<
2267          */
2268         while (1) {
2269             /* skip whitespace */
2270             while (*p && (*p == ' ' || *p == '\t'))
2271                 p++;
2272             /* terminate loop */
2273             if (!*p)
2274                 break;
2275             /* mark start of word */
2276             q = r = p;                 /* q sits at start, r writes word */
2277             quoting = 0;
2278             while (*p) {
2279                 if (!quoting && (*p == ' ' || *p == '\t'))
2280                     break;                     /* reached end of word */
2281                 else if (*p == '"' && p[1] == '"')
2282                     p += 2, *r++ = '"';    /* a literal quote */
2283                 else if (*p == '"')
2284                     p++, quoting = !quoting;
2285                 else
2286                     *r++ = *p++;
2287             }
2288             if (*p)
2289                 p++;                   /* skip over the whitespace */
2290             *r = '\0';
2291             if (cmd->nwords >= cmd->wordssize) {
2292                 cmd->wordssize = cmd->nwords + 16;
2293                 cmd->words = sresize(cmd->words, cmd->wordssize, char *);
2294             }
2295             cmd->words[cmd->nwords++] = dupstr(q);
2296         }
2297     }
2298
2299     sfree(line);
2300
2301     /*
2302      * Now parse the first word and assign a function.
2303      */
2304
2305     if (cmd->nwords == 0)
2306         cmd->obey = sftp_cmd_null;
2307     else {
2308         const struct sftp_cmd_lookup *lookup;
2309         lookup = lookup_command(cmd->words[0]);
2310         if (!lookup)
2311             cmd->obey = sftp_cmd_unknown;
2312         else
2313             cmd->obey = lookup->obey;
2314     }
2315
2316     return cmd;
2317 }
2318
2319 static int do_sftp_init(void)
2320 {
2321     struct sftp_packet *pktin;
2322     struct sftp_request *req;
2323
2324     /*
2325      * Do protocol initialisation. 
2326      */
2327     if (!fxp_init()) {
2328         fprintf(stderr,
2329                 "Fatal: unable to initialise SFTP: %s\n", fxp_error());
2330         return 1;                      /* failure */
2331     }
2332
2333     /*
2334      * Find out where our home directory is.
2335      */
2336     req = fxp_realpath_send(".");
2337     pktin = sftp_wait_for_reply(req);
2338     homedir = fxp_realpath_recv(pktin, req);
2339
2340     if (!homedir) {
2341         fprintf(stderr,
2342                 "Warning: failed to resolve home directory: %s\n",
2343                 fxp_error());
2344         homedir = dupstr(".");
2345     } else {
2346         printf("Remote working directory is %s\n", homedir);
2347     }
2348     pwd = dupstr(homedir);
2349     return 0;
2350 }
2351
2352 void do_sftp_cleanup()
2353 {
2354     char ch;
2355     if (back) {
2356         back->special(backhandle, TS_EOF);
2357         sent_eof = TRUE;
2358         sftp_recvdata(&ch, 1);
2359         back->free(backhandle);
2360         sftp_cleanup_request();
2361         back = NULL;
2362         backhandle = NULL;
2363     }
2364     if (pwd) {
2365         sfree(pwd);
2366         pwd = NULL;
2367     }
2368     if (homedir) {
2369         sfree(homedir);
2370         homedir = NULL;
2371     }
2372 }
2373
2374 int do_sftp(int mode, int modeflags, char *batchfile)
2375 {
2376     FILE *fp;
2377     int ret;
2378
2379     /*
2380      * Batch mode?
2381      */
2382     if (mode == 0) {
2383
2384         /* ------------------------------------------------------------------
2385          * Now we're ready to do Real Stuff.
2386          */
2387         while (1) {
2388             struct sftp_command *cmd;
2389             cmd = sftp_getcmd(NULL, 0, 0);
2390             if (!cmd)
2391                 break;
2392             ret = cmd->obey(cmd);
2393             if (cmd->words) {
2394                 int i;
2395                 for(i = 0; i < cmd->nwords; i++)
2396                     sfree(cmd->words[i]);
2397                 sfree(cmd->words);
2398             }
2399             sfree(cmd);
2400             if (ret < 0)
2401                 break;
2402         }
2403     } else {
2404         fp = fopen(batchfile, "r");
2405         if (!fp) {
2406             printf("Fatal: unable to open %s\n", batchfile);
2407             return 1;
2408         }
2409         ret = 0;
2410         while (1) {
2411             struct sftp_command *cmd;
2412             cmd = sftp_getcmd(fp, mode, modeflags);
2413             if (!cmd)
2414                 break;
2415             ret = cmd->obey(cmd);
2416             if (ret < 0)
2417                 break;
2418             if (ret == 0) {
2419                 if (!(modeflags & 2))
2420                     break;
2421             }
2422         }
2423         fclose(fp);
2424         /*
2425          * In batch mode, and if exit on command failure is enabled,
2426          * any command failure causes the whole of PSFTP to fail.
2427          */
2428         if (ret == 0 && !(modeflags & 2)) return 2;
2429     }
2430     return 0;
2431 }
2432
2433 /* ----------------------------------------------------------------------
2434  * Dirty bits: integration with PuTTY.
2435  */
2436
2437 static int verbose = 0;
2438
2439 /*
2440  *  Print an error message and perform a fatal exit.
2441  */
2442 void fatalbox(const char *fmt, ...)
2443 {
2444     char *str, *str2;
2445     va_list ap;
2446     va_start(ap, fmt);
2447     str = dupvprintf(fmt, ap);
2448     str2 = dupcat("Fatal: ", str, "\n", NULL);
2449     sfree(str);
2450     va_end(ap);
2451     fputs(str2, stderr);
2452     sfree(str2);
2453
2454     cleanup_exit(1);
2455 }
2456 void modalfatalbox(const char *fmt, ...)
2457 {
2458     char *str, *str2;
2459     va_list ap;
2460     va_start(ap, fmt);
2461     str = dupvprintf(fmt, ap);
2462     str2 = dupcat("Fatal: ", str, "\n", NULL);
2463     sfree(str);
2464     va_end(ap);
2465     fputs(str2, stderr);
2466     sfree(str2);
2467
2468     cleanup_exit(1);
2469 }
2470 void nonfatal(const char *fmt, ...)
2471 {
2472     char *str, *str2;
2473     va_list ap;
2474     va_start(ap, fmt);
2475     str = dupvprintf(fmt, ap);
2476     str2 = dupcat("Error: ", str, "\n", NULL);
2477     sfree(str);
2478     va_end(ap);
2479     fputs(str2, stderr);
2480     sfree(str2);
2481 }
2482 void connection_fatal(void *frontend, const char *fmt, ...)
2483 {
2484     char *str, *str2;
2485     va_list ap;
2486     va_start(ap, fmt);
2487     str = dupvprintf(fmt, ap);
2488     str2 = dupcat("Fatal: ", str, "\n", NULL);
2489     sfree(str);
2490     va_end(ap);
2491     fputs(str2, stderr);
2492     sfree(str2);
2493
2494     cleanup_exit(1);
2495 }
2496
2497 void ldisc_echoedit_update(void *handle) { }
2498
2499 /*
2500  * In psftp, all agent requests should be synchronous, so this is a
2501  * never-called stub.
2502  */
2503 void agent_schedule_callback(void (*callback)(void *, void *, int),
2504                              void *callback_ctx, void *data, int len)
2505 {
2506     assert(!"We shouldn't be here");
2507 }
2508
2509 /*
2510  * Receive a block of data from the SSH link. Block until all data
2511  * is available.
2512  *
2513  * To do this, we repeatedly call the SSH protocol module, with our
2514  * own trap in from_backend() to catch the data that comes back. We
2515  * do this until we have enough data.
2516  */
2517
2518 static unsigned char *outptr;          /* where to put the data */
2519 static unsigned outlen;                /* how much data required */
2520 static unsigned char *pending = NULL;  /* any spare data */
2521 static unsigned pendlen = 0, pendsize = 0;      /* length and phys. size of buffer */
2522 int from_backend(void *frontend, int is_stderr, const char *data, int datalen)
2523 {
2524     unsigned char *p = (unsigned char *) data;
2525     unsigned len = (unsigned) datalen;
2526
2527     /*
2528      * stderr data is just spouted to local stderr and otherwise
2529      * ignored.
2530      */
2531     if (is_stderr) {
2532         if (len > 0)
2533             if (fwrite(data, 1, len, stderr) < len)
2534                 /* oh well */;
2535         return 0;
2536     }
2537
2538     /*
2539      * If this is before the real session begins, just return.
2540      */
2541     if (!outptr)
2542         return 0;
2543
2544     if ((outlen > 0) && (len > 0)) {
2545         unsigned used = outlen;
2546         if (used > len)
2547             used = len;
2548         memcpy(outptr, p, used);
2549         outptr += used;
2550         outlen -= used;
2551         p += used;
2552         len -= used;
2553     }
2554
2555     if (len > 0) {
2556         if (pendsize < pendlen + len) {
2557             pendsize = pendlen + len + 4096;
2558             pending = sresize(pending, pendsize, unsigned char);
2559         }
2560         memcpy(pending + pendlen, p, len);
2561         pendlen += len;
2562     }
2563
2564     return 0;
2565 }
2566 int from_backend_untrusted(void *frontend_handle, const char *data, int len)
2567 {
2568     /*
2569      * No "untrusted" output should get here (the way the code is
2570      * currently, it's all diverted by FLAG_STDERR).
2571      */
2572     assert(!"Unexpected call to from_backend_untrusted()");
2573     return 0; /* not reached */
2574 }
2575 int from_backend_eof(void *frontend)
2576 {
2577     /*
2578      * We expect to be the party deciding when to close the
2579      * connection, so if we see EOF before we sent it ourselves, we
2580      * should panic.
2581      */
2582     if (!sent_eof) {
2583         connection_fatal(frontend,
2584                          "Received unexpected end-of-file from SFTP server");
2585     }
2586     return FALSE;
2587 }
2588 int sftp_recvdata(char *buf, int len)
2589 {
2590     outptr = (unsigned char *) buf;
2591     outlen = len;
2592
2593     /*
2594      * See if the pending-input block contains some of what we
2595      * need.
2596      */
2597     if (pendlen > 0) {
2598         unsigned pendused = pendlen;
2599         if (pendused > outlen)
2600             pendused = outlen;
2601         memcpy(outptr, pending, pendused);
2602         memmove(pending, pending + pendused, pendlen - pendused);
2603         outptr += pendused;
2604         outlen -= pendused;
2605         pendlen -= pendused;
2606         if (pendlen == 0) {
2607             pendsize = 0;
2608             sfree(pending);
2609             pending = NULL;
2610         }
2611         if (outlen == 0)
2612             return 1;
2613     }
2614
2615     while (outlen > 0) {
2616         if (back->exitcode(backhandle) >= 0 || ssh_sftp_loop_iteration() < 0)
2617             return 0;                  /* doom */
2618     }
2619
2620     return 1;
2621 }
2622 int sftp_senddata(char *buf, int len)
2623 {
2624     back->send(backhandle, buf, len);
2625     return 1;
2626 }
2627 int sftp_sendbuffer(void)
2628 {
2629     return back->sendbuffer(backhandle);
2630 }
2631
2632 /*
2633  *  Short description of parameters.
2634  */
2635 static void usage(void)
2636 {
2637     printf("PuTTY Secure File Transfer (SFTP) client\n");
2638     printf("%s\n", ver);
2639     printf("Usage: psftp [options] [user@]host\n");
2640     printf("Options:\n");
2641     printf("  -V        print version information and exit\n");
2642     printf("  -pgpfp    print PGP key fingerprints and exit\n");
2643     printf("  -b file   use specified batchfile\n");
2644     printf("  -bc       output batchfile commands\n");
2645     printf("  -be       don't stop batchfile processing if errors\n");
2646     printf("  -v        show verbose messages\n");
2647     printf("  -load sessname  Load settings from saved session\n");
2648     printf("  -l user   connect with specified username\n");
2649     printf("  -P port   connect to specified port\n");
2650     printf("  -pw passw login with specified password\n");
2651     printf("  -1 -2     force use of particular SSH protocol version\n");
2652     printf("  -4 -6     force use of IPv4 or IPv6\n");
2653     printf("  -C        enable compression\n");
2654     printf("  -i key    private key file for user authentication\n");
2655     printf("  -noagent  disable use of Pageant\n");
2656     printf("  -agent    enable use of Pageant\n");
2657     printf("  -hostkey aa:bb:cc:...\n");
2658     printf("            manually specify a host key (may be repeated)\n");
2659     printf("  -batch    disable all interactive prompts\n");
2660     printf("  -proxycmd command\n");
2661     printf("            use 'command' as local proxy\n");
2662     printf("  -sshlog file\n");
2663     printf("  -sshrawlog file\n");
2664     printf("            log protocol details to a file\n");
2665     cleanup_exit(1);
2666 }
2667
2668 static void version(void)
2669 {
2670   char *buildinfo_text = buildinfo("\n");
2671   printf("psftp: %s\n%s\n", ver, buildinfo_text);
2672   sfree(buildinfo_text);
2673   exit(0);
2674 }
2675
2676 /*
2677  * Connect to a host.
2678  */
2679 static int psftp_connect(char *userhost, char *user, int portnumber)
2680 {
2681     char *host, *realhost;
2682     const char *err;
2683     void *logctx;
2684
2685     /* Separate host and username */
2686     host = userhost;
2687     host = strrchr(host, '@');
2688     if (host == NULL) {
2689         host = userhost;
2690     } else {
2691         *host++ = '\0';
2692         if (user) {
2693             printf("psftp: multiple usernames specified; using \"%s\"\n",
2694                    user);
2695         } else
2696             user = userhost;
2697     }
2698
2699     /*
2700      * If we haven't loaded session details already (e.g., from -load),
2701      * try looking for a session called "host".
2702      */
2703     if (!loaded_session) {
2704         /* Try to load settings for `host' into a temporary config */
2705         Conf *conf2 = conf_new();
2706         conf_set_str(conf2, CONF_host, "");
2707         do_defaults(host, conf2);
2708         if (conf_get_str(conf2, CONF_host)[0] != '\0') {
2709             /* Settings present and include hostname */
2710             /* Re-load data into the real config. */
2711             do_defaults(host, conf);
2712         } else {
2713             /* Session doesn't exist or mention a hostname. */
2714             /* Use `host' as a bare hostname. */
2715             conf_set_str(conf, CONF_host, host);
2716         }
2717         conf_free(conf2);
2718     } else {
2719         /* Patch in hostname `host' to session details. */
2720         conf_set_str(conf, CONF_host, host);
2721     }
2722
2723     /*
2724      * Force use of SSH. (If they got the protocol wrong we assume the
2725      * port is useless too.)
2726      */
2727     if (conf_get_int(conf, CONF_protocol) != PROT_SSH) {
2728         conf_set_int(conf, CONF_protocol, PROT_SSH);
2729         conf_set_int(conf, CONF_port, 22);
2730     }
2731
2732     /*
2733      * If saved session / Default Settings says SSH-1 (`1 only' or `1'),
2734      * then change it to SSH-2, on the grounds that that's more likely to
2735      * work for SFTP. (Can be overridden with `-1' option.)
2736      * But if it says `2 only' or `2', respect which.
2737      */
2738     if ((conf_get_int(conf, CONF_sshprot) & ~1) != 2)   /* is it 2 or 3? */
2739         conf_set_int(conf, CONF_sshprot, 2);
2740
2741     /*
2742      * Enact command-line overrides.
2743      */
2744     cmdline_run_saved(conf);
2745
2746     /*
2747      * Muck about with the hostname in various ways.
2748      */
2749     {
2750         char *hostbuf = dupstr(conf_get_str(conf, CONF_host));
2751         char *host = hostbuf;
2752         char *p, *q;
2753
2754         /*
2755          * Trim leading whitespace.
2756          */
2757         host += strspn(host, " \t");
2758
2759         /*
2760          * See if host is of the form user@host, and separate out
2761          * the username if so.
2762          */
2763         if (host[0] != '\0') {
2764             char *atsign = strrchr(host, '@');
2765             if (atsign) {
2766                 *atsign = '\0';
2767                 conf_set_str(conf, CONF_username, host);
2768                 host = atsign + 1;
2769             }
2770         }
2771
2772         /*
2773          * Remove any remaining whitespace.
2774          */
2775         p = hostbuf;
2776         q = host;
2777         while (*q) {
2778             if (*q != ' ' && *q != '\t')
2779                 *p++ = *q;
2780             q++;
2781         }
2782         *p = '\0';
2783
2784         conf_set_str(conf, CONF_host, hostbuf);
2785         sfree(hostbuf);
2786     }
2787
2788     /* Set username */
2789     if (user != NULL && user[0] != '\0') {
2790         conf_set_str(conf, CONF_username, user);
2791     }
2792
2793     if (portnumber)
2794         conf_set_int(conf, CONF_port, portnumber);
2795
2796     /*
2797      * Disable scary things which shouldn't be enabled for simple
2798      * things like SCP and SFTP: agent forwarding, port forwarding,
2799      * X forwarding.
2800      */
2801     conf_set_int(conf, CONF_x11_forward, 0);
2802     conf_set_int(conf, CONF_agentfwd, 0);
2803     conf_set_int(conf, CONF_ssh_simple, TRUE);
2804     {
2805         char *key;
2806         while ((key = conf_get_str_nthstrkey(conf, CONF_portfwd, 0)) != NULL)
2807             conf_del_str_str(conf, CONF_portfwd, key);
2808     }
2809
2810     /* Set up subsystem name. */
2811     conf_set_str(conf, CONF_remote_cmd, "sftp");
2812     conf_set_int(conf, CONF_ssh_subsys, TRUE);
2813     conf_set_int(conf, CONF_nopty, TRUE);
2814
2815     /*
2816      * Set up fallback option, for SSH-1 servers or servers with the
2817      * sftp subsystem not enabled but the server binary installed
2818      * in the usual place. We only support fallback on Unix
2819      * systems, and we use a kludgy piece of shellery which should
2820      * try to find sftp-server in various places (the obvious
2821      * systemwide spots /usr/lib and /usr/local/lib, and then the
2822      * user's PATH) and finally give up.
2823      * 
2824      *   test -x /usr/lib/sftp-server && exec /usr/lib/sftp-server
2825      *   test -x /usr/local/lib/sftp-server && exec /usr/local/lib/sftp-server
2826      *   exec sftp-server
2827      * 
2828      * the idea being that this will attempt to use either of the
2829      * obvious pathnames and then give up, and when it does give up
2830      * it will print the preferred pathname in the error messages.
2831      */
2832     conf_set_str(conf, CONF_remote_cmd2,
2833                  "test -x /usr/lib/sftp-server &&"
2834                  " exec /usr/lib/sftp-server\n"
2835                  "test -x /usr/local/lib/sftp-server &&"
2836                  " exec /usr/local/lib/sftp-server\n"
2837                  "exec sftp-server");
2838     conf_set_int(conf, CONF_ssh_subsys2, FALSE);
2839
2840     back = &ssh_backend;
2841
2842     logctx = log_init(NULL, conf);
2843     console_provide_logctx(logctx);
2844
2845     platform_psftp_pre_conn_setup();
2846
2847     err = back->init(NULL, &backhandle, conf,
2848                      conf_get_str(conf, CONF_host),
2849                      conf_get_int(conf, CONF_port),
2850                      &realhost, 0,
2851                      conf_get_int(conf, CONF_tcp_keepalives));
2852     if (err != NULL) {
2853         fprintf(stderr, "ssh_init: %s\n", err);
2854         return 1;
2855     }
2856     back->provide_logctx(backhandle, logctx);
2857     while (!back->sendok(backhandle)) {
2858         if (back->exitcode(backhandle) >= 0)
2859             return 1;
2860         if (ssh_sftp_loop_iteration() < 0) {
2861             fprintf(stderr, "ssh_init: error during SSH connection setup\n");
2862             return 1;
2863         }
2864     }
2865     if (verbose && realhost != NULL)
2866         printf("Connected to %s\n", realhost);
2867     if (realhost != NULL)
2868         sfree(realhost);
2869     return 0;
2870 }
2871
2872 void cmdline_error(const char *p, ...)
2873 {
2874     va_list ap;
2875     fprintf(stderr, "psftp: ");
2876     va_start(ap, p);
2877     vfprintf(stderr, p, ap);
2878     va_end(ap);
2879     fprintf(stderr, "\n       try typing \"psftp -h\" for help\n");
2880     exit(1);
2881 }
2882
2883 const int share_can_be_downstream = TRUE;
2884 const int share_can_be_upstream = FALSE;
2885
2886 /*
2887  * Main program. Parse arguments etc.
2888  */
2889 int psftp_main(int argc, char *argv[])
2890 {
2891     int i, ret;
2892     int portnumber = 0;
2893     char *userhost, *user;
2894     int mode = 0;
2895     int modeflags = 0;
2896     char *batchfile = NULL;
2897
2898     flags = FLAG_STDERR | FLAG_INTERACTIVE
2899 #ifdef FLAG_SYNCAGENT
2900         | FLAG_SYNCAGENT
2901 #endif
2902         ;
2903     cmdline_tooltype = TOOLTYPE_FILETRANSFER;
2904     sk_init();
2905
2906     userhost = user = NULL;
2907
2908     /* Load Default Settings before doing anything else. */
2909     conf = conf_new();
2910     do_defaults(NULL, conf);
2911     loaded_session = FALSE;
2912
2913     for (i = 1; i < argc; i++) {
2914         int ret;
2915         if (argv[i][0] != '-') {
2916             if (userhost)
2917                 usage();
2918             else
2919                 userhost = dupstr(argv[i]);
2920             continue;
2921         }
2922         ret = cmdline_process_param(argv[i], i+1<argc?argv[i+1]:NULL, 1, conf);
2923         if (ret == -2) {
2924             cmdline_error("option \"%s\" requires an argument", argv[i]);
2925         } else if (ret == 2) {
2926             i++;               /* skip next argument */
2927         } else if (ret == 1) {
2928             /* We have our own verbosity in addition to `flags'. */
2929             if (flags & FLAG_VERBOSE)
2930                 verbose = 1;
2931         } else if (strcmp(argv[i], "-h") == 0 ||
2932                    strcmp(argv[i], "-?") == 0 ||
2933                    strcmp(argv[i], "--help") == 0) {
2934             usage();
2935         } else if (strcmp(argv[i], "-pgpfp") == 0) {
2936             pgp_fingerprints();
2937             return 1;
2938         } else if (strcmp(argv[i], "-V") == 0 ||
2939                    strcmp(argv[i], "--version") == 0) {
2940             version();
2941         } else if (strcmp(argv[i], "-batch") == 0) {
2942             console_batch_mode = 1;
2943         } else if (strcmp(argv[i], "-b") == 0 && i + 1 < argc) {
2944             mode = 1;
2945             batchfile = argv[++i];
2946         } else if (strcmp(argv[i], "-bc") == 0) {
2947             modeflags = modeflags | 1;
2948         } else if (strcmp(argv[i], "-be") == 0) {
2949             modeflags = modeflags | 2;
2950         } else if (strcmp(argv[i], "--") == 0) {
2951             i++;
2952             break;
2953         } else {
2954             cmdline_error("unknown option \"%s\"", argv[i]);
2955         }
2956     }
2957     argc -= i;
2958     argv += i;
2959     back = NULL;
2960
2961     /*
2962      * If the loaded session provides a hostname, and a hostname has not
2963      * otherwise been specified, pop it in `userhost' so that
2964      * `psftp -load sessname' is sufficient to start a session.
2965      */
2966     if (!userhost && conf_get_str(conf, CONF_host)[0] != '\0') {
2967         userhost = dupstr(conf_get_str(conf, CONF_host));
2968     }
2969
2970     /*
2971      * If a user@host string has already been provided, connect to
2972      * it now.
2973      */
2974     if (userhost) {
2975         int ret;
2976         ret = psftp_connect(userhost, user, portnumber);
2977         sfree(userhost);
2978         if (ret)
2979             return 1;
2980         if (do_sftp_init())
2981             return 1;
2982     } else {
2983         printf("psftp: no hostname specified; use \"open host.name\""
2984                " to connect\n");
2985     }
2986
2987     ret = do_sftp(mode, modeflags, batchfile);
2988
2989     if (back != NULL && back->connected(backhandle)) {
2990         char ch;
2991         back->special(backhandle, TS_EOF);
2992         sent_eof = TRUE;
2993         sftp_recvdata(&ch, 1);
2994     }
2995     do_sftp_cleanup();
2996     random_save_seed();
2997     cmdline_cleanup();
2998     console_provide_logctx(NULL);
2999     sk_cleanup();
3000
3001     return ret;
3002 }