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