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