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