Failure to initialise a local variable was leading to free(garbage)
[u/mdw/putty] / scp.c
CommitLineData
07d9aa13 1/*
a673e210 2 * scp.c - Scp (Secure Copy) client for PuTTY.
3 * Joris van Rantwijk, Simon Tatham
07d9aa13 4 *
a673e210 5 * This is mainly based on ssh-1.2.26/scp.c by Timo Rinne & Tatu Ylonen.
6 * They, in turn, used stuff from BSD rcp.
7 *
8 * (SGT, 2001-09-10: Joris van Rantwijk assures me that although
9 * this file as originally submitted was inspired by, and
10 * _structurally_ based on, ssh-1.2.26's scp.c, there wasn't any
11 * actual code duplicated, so the above comment shouldn't give rise
12 * to licensing issues.)
07d9aa13 13 */
14
07d9aa13 15#include <windows.h>
4d331a77 16#ifndef AUTO_WINSOCK
17#ifdef WINSOCK_TWO
18#include <winsock2.h>
19#else
07d9aa13 20#include <winsock.h>
4d331a77 21#endif
22#endif
07d9aa13 23#include <stdlib.h>
24#include <stdio.h>
25#include <string.h>
fd5e5847 26#include <limits.h>
07d9aa13 27#include <time.h>
feb7fdfe 28#include <assert.h>
07d9aa13 29
30#define PUTTY_DO_GLOBALS
31#include "putty.h"
fd5e5847 32#include "ssh.h"
33#include "sftp.h"
8c3cd914 34#include "winstuff.h"
a9422f39 35#include "storage.h"
07d9aa13 36
07d9aa13 37#define TIME_POSIX_TO_WIN(t, ft) (*(LONGLONG*)&(ft) = \
c51a56e2 38 ((LONGLONG) (t) + (LONGLONG) 11644473600) * (LONGLONG) 10000000)
07d9aa13 39#define TIME_WIN_TO_POSIX(ft, t) ((t) = (unsigned long) \
c51a56e2 40 ((*(LONGLONG*)&(ft)) / (LONGLONG) 10000000 - (LONGLONG) 11644473600))
07d9aa13 41
cc87246d 42/* GUI Adaptation - Sept 2000 */
037fb113 43
44/* This is just a base value from which the main message numbers are
45 * derived. */
cc87246d 46#define WM_APP_BASE 0x8000
037fb113 47
48/* These two pass a single character value in wParam. They represent
49 * the visible output from PSCP. */
cc87246d 50#define WM_STD_OUT_CHAR ( WM_APP_BASE+400 )
51#define WM_STD_ERR_CHAR ( WM_APP_BASE+401 )
037fb113 52
53/* These pass a transfer status update. WM_STATS_CHAR passes a single
54 * character in wParam, and is called repeatedly to pass the name of
55 * the file, terminated with "\n". WM_STATS_SIZE passes the size of
56 * the file being transferred in wParam. WM_STATS_ELAPSED is called
57 * to pass the elapsed time (in seconds) in wParam, and
58 * WM_STATS_PERCENT passes the percentage of the transfer which is
59 * complete, also in wParam. */
cc87246d 60#define WM_STATS_CHAR ( WM_APP_BASE+402 )
61#define WM_STATS_SIZE ( WM_APP_BASE+403 )
62#define WM_STATS_PERCENT ( WM_APP_BASE+404 )
63#define WM_STATS_ELAPSED ( WM_APP_BASE+405 )
037fb113 64
65/* These are used at the end of a run to pass an error code in
66 * wParam: zero means success, nonzero means failure. WM_RET_ERR_CNT
67 * is used after a copy, and WM_LS_RET_ERR_CNT is used after a file
68 * list operation. */
cc87246d 69#define WM_RET_ERR_CNT ( WM_APP_BASE+406 )
70#define WM_LS_RET_ERR_CNT ( WM_APP_BASE+407 )
037fb113 71
72/* More transfer status update messages. WM_STATS_DONE passes the
73 * number of bytes sent so far in wParam. WM_STATS_ETA passes the
74 * estimated time to completion (in seconds). WM_STATS_RATEBS passes
75 * the average transfer rate (in bytes per second). */
d524be1c 76#define WM_STATS_DONE ( WM_APP_BASE+408 )
77#define WM_STATS_ETA ( WM_APP_BASE+409 )
78#define WM_STATS_RATEBS ( WM_APP_BASE+410 )
cc87246d 79
2bc6a386 80static int list = 0;
fb09bf1c 81static int verbose = 0;
07d9aa13 82static int recursive = 0;
83static int preserve = 0;
84static int targetshouldbedirectory = 0;
85static int statistics = 1;
b8a19193 86static int portnumber = 0;
b1daf518 87static int prev_stats_len = 0;
cd1f39ab 88static int scp_unsafe_mode = 0;
b8a19193 89static char *password = NULL;
07d9aa13 90static int errs = 0;
cc87246d 91/* GUI Adaptation - Sept 2000 */
92#define NAME_STR_MAX 2048
32874aea 93static char statname[NAME_STR_MAX + 1];
cc87246d 94static unsigned long statsize = 0;
d524be1c 95static unsigned long statdone = 0;
96static unsigned long stateta = 0;
97static unsigned long statratebs = 0;
cc87246d 98static int statperct = 0;
90a14a09 99static unsigned long statelapsed = 0;
cc87246d 100static int gui_mode = 0;
101static char *gui_hwnd = NULL;
fd5e5847 102static int using_sftp = 0;
07d9aa13 103
104static void source(char *src);
105static void rsource(char *src);
ca2d5943 106static void sink(char *targ, char *src);
cc87246d 107/* GUI Adaptation - Sept 2000 */
32874aea 108static void tell_char(FILE * stream, char c);
109static void tell_str(FILE * stream, char *str);
110static void tell_user(FILE * stream, char *fmt, ...);
90a14a09 111static void gui_update_stats(char *name, unsigned long size,
d524be1c 112 int percentage, unsigned long elapsed,
113 unsigned long done, unsigned long eta,
114 unsigned long ratebs);
07d9aa13 115
5471d09a 116/*
117 * The maximum amount of queued data we accept before we stop and
118 * wait for the server to process some.
119 */
120#define MAX_SCP_BUFSIZE 16384
121
760e88b2 122void ldisc_send(char *buf, int len, int interactive)
32874aea 123{
feb7fdfe 124 /*
125 * This is only here because of the calls to ldisc_send(NULL,
126 * 0) in ssh.c. Nothing in PSCP actually needs to use the ldisc
127 * as an ldisc. So if we get called with any real data, I want
128 * to know about it.
129 */
130 assert(len == 0);
131}
132
cc87246d 133/* GUI Adaptation - Sept 2000 */
75cab814 134static void send_msg(HWND h, UINT message, WPARAM wParam)
cc87246d 135{
32874aea 136 while (!PostMessage(h, message, wParam, 0))
137 SleepEx(1000, TRUE);
cc87246d 138}
139
32874aea 140static void tell_char(FILE * stream, char c)
cc87246d 141{
142 if (!gui_mode)
143 fputc(c, stream);
32874aea 144 else {
cc87246d 145 unsigned int msg_id = WM_STD_OUT_CHAR;
32874aea 146 if (stream == stderr)
147 msg_id = WM_STD_ERR_CHAR;
148 send_msg((HWND) atoi(gui_hwnd), msg_id, (WPARAM) c);
cc87246d 149 }
150}
151
32874aea 152static void tell_str(FILE * stream, char *str)
cc87246d 153{
154 unsigned int i;
155
32874aea 156 for (i = 0; i < strlen(str); ++i)
cc87246d 157 tell_char(stream, str[i]);
158}
159
32874aea 160static void tell_user(FILE * stream, char *fmt, ...)
cc87246d 161{
32874aea 162 char str[0x100]; /* Make the size big enough */
cc87246d 163 va_list ap;
164 va_start(ap, fmt);
165 vsprintf(str, fmt, ap);
166 va_end(ap);
167 strcat(str, "\n");
168 tell_str(stream, str);
169}
170
32874aea 171static void gui_update_stats(char *name, unsigned long size,
d524be1c 172 int percentage, unsigned long elapsed,
173 unsigned long done, unsigned long eta,
174 unsigned long ratebs)
cc87246d 175{
176 unsigned int i;
177
32874aea 178 if (strcmp(name, statname) != 0) {
179 for (i = 0; i < strlen(name); ++i)
180 send_msg((HWND) atoi(gui_hwnd), WM_STATS_CHAR,
181 (WPARAM) name[i]);
182 send_msg((HWND) atoi(gui_hwnd), WM_STATS_CHAR, (WPARAM) '\n');
183 strcpy(statname, name);
cc87246d 184 }
32874aea 185 if (statsize != size) {
186 send_msg((HWND) atoi(gui_hwnd), WM_STATS_SIZE, (WPARAM) size);
cc87246d 187 statsize = size;
188 }
d524be1c 189 if (statdone != done) {
190 send_msg((HWND) atoi(gui_hwnd), WM_STATS_DONE, (WPARAM) done);
191 statdone = done;
192 }
193 if (stateta != eta) {
194 send_msg((HWND) atoi(gui_hwnd), WM_STATS_ETA, (WPARAM) eta);
195 stateta = eta;
196 }
197 if (statratebs != ratebs) {
198 send_msg((HWND) atoi(gui_hwnd), WM_STATS_RATEBS, (WPARAM) ratebs);
199 statratebs = ratebs;
200 }
32874aea 201 if (statelapsed != elapsed) {
202 send_msg((HWND) atoi(gui_hwnd), WM_STATS_ELAPSED,
203 (WPARAM) elapsed);
cc87246d 204 statelapsed = elapsed;
205 }
32874aea 206 if (statperct != percentage) {
207 send_msg((HWND) atoi(gui_hwnd), WM_STATS_PERCENT,
208 (WPARAM) percentage);
cc87246d 209 statperct = percentage;
210 }
211}
212
fb09bf1c 213/*
07d9aa13 214 * Print an error message and perform a fatal exit.
215 */
216void fatalbox(char *fmt, ...)
217{
32874aea 218 char str[0x100]; /* Make the size big enough */
c51a56e2 219 va_list ap;
220 va_start(ap, fmt);
120e4b40 221 strcpy(str, "Fatal: ");
32874aea 222 vsprintf(str + strlen(str), fmt, ap);
c51a56e2 223 va_end(ap);
cc87246d 224 strcat(str, "\n");
225 tell_str(stderr, str);
2bc6a386 226 errs++;
227
228 if (gui_mode) {
229 unsigned int msg_id = WM_RET_ERR_CNT;
230 if (list)
231 msg_id = WM_LS_RET_ERR_CNT;
232 while (!PostMessage
233 ((HWND) atoi(gui_hwnd), msg_id, (WPARAM) errs,
234 0 /*lParam */ ))SleepEx(1000, TRUE);
235 }
cc87246d 236
93b581bd 237 cleanup_exit(1);
07d9aa13 238}
8d5de777 239void connection_fatal(char *fmt, ...)
240{
32874aea 241 char str[0x100]; /* Make the size big enough */
8d5de777 242 va_list ap;
243 va_start(ap, fmt);
120e4b40 244 strcpy(str, "Fatal: ");
32874aea 245 vsprintf(str + strlen(str), fmt, ap);
8d5de777 246 va_end(ap);
247 strcat(str, "\n");
248 tell_str(stderr, str);
2bc6a386 249 errs++;
250
251 if (gui_mode) {
252 unsigned int msg_id = WM_RET_ERR_CNT;
253 if (list)
254 msg_id = WM_LS_RET_ERR_CNT;
255 while (!PostMessage
256 ((HWND) atoi(gui_hwnd), msg_id, (WPARAM) errs,
257 0 /*lParam */ ))SleepEx(1000, TRUE);
258 }
8d5de777 259
93b581bd 260 cleanup_exit(1);
8d5de777 261}
07d9aa13 262
07d9aa13 263/*
8df7a775 264 * Be told what socket we're supposed to be using.
265 */
266static SOCKET scp_ssh_socket;
32874aea 267char *do_select(SOCKET skt, int startup)
268{
8df7a775 269 if (startup)
270 scp_ssh_socket = skt;
271 else
272 scp_ssh_socket = INVALID_SOCKET;
273 return NULL;
274}
275extern int select_result(WPARAM, LPARAM);
276
277/*
3bdaf79d 278 * Receive a block of data from the SSH link. Block until all data
279 * is available.
280 *
281 * To do this, we repeatedly call the SSH protocol module, with our
fe50e814 282 * own trap in from_backend() to catch the data that comes back. We
283 * do this until we have enough data.
3bdaf79d 284 */
8df7a775 285
32874aea 286static unsigned char *outptr; /* where to put the data */
287static unsigned outlen; /* how much data required */
3bdaf79d 288static unsigned char *pending = NULL; /* any spare data */
32874aea 289static unsigned pendlen = 0, pendsize = 0; /* length and phys. size of buffer */
5471d09a 290int from_backend(int is_stderr, char *data, int datalen)
32874aea 291{
292 unsigned char *p = (unsigned char *) data;
293 unsigned len = (unsigned) datalen;
fe50e814 294
2b0c045b 295 assert(len > 0);
296
3bdaf79d 297 /*
fe50e814 298 * stderr data is just spouted to local stderr and otherwise
299 * ignored.
3bdaf79d 300 */
fe50e814 301 if (is_stderr) {
302 fwrite(data, 1, len, stderr);
5471d09a 303 return 0;
fe50e814 304 }
3bdaf79d 305
3bdaf79d 306 /*
307 * If this is before the real session begins, just return.
308 */
309 if (!outptr)
5471d09a 310 return 0;
3bdaf79d 311
312 if (outlen > 0) {
32874aea 313 unsigned used = outlen;
314 if (used > len)
315 used = len;
316 memcpy(outptr, p, used);
317 outptr += used;
318 outlen -= used;
319 p += used;
320 len -= used;
3bdaf79d 321 }
322
323 if (len > 0) {
32874aea 324 if (pendsize < pendlen + len) {
325 pendsize = pendlen + len + 4096;
326 pending = (pending ? srealloc(pending, pendsize) :
327 smalloc(pendsize));
328 if (!pending)
329 fatalbox("Out of memory");
330 }
331 memcpy(pending + pendlen, p, len);
332 pendlen += len;
3bdaf79d 333 }
5471d09a 334
335 return 0;
336}
337static int scp_process_network_event(void)
338{
339 fd_set readfds;
340
341 FD_ZERO(&readfds);
342 FD_SET(scp_ssh_socket, &readfds);
343 if (select(1, &readfds, NULL, NULL, NULL) < 0)
344 return 0; /* doom */
345 select_result((WPARAM) scp_ssh_socket, (LPARAM) FD_READ);
346 return 1;
3bdaf79d 347}
32874aea 348static int ssh_scp_recv(unsigned char *buf, int len)
349{
3bdaf79d 350 outptr = buf;
351 outlen = len;
352
353 /*
354 * See if the pending-input block contains some of what we
355 * need.
356 */
357 if (pendlen > 0) {
32874aea 358 unsigned pendused = pendlen;
359 if (pendused > outlen)
360 pendused = outlen;
3bdaf79d 361 memcpy(outptr, pending, pendused);
32874aea 362 memmove(pending, pending + pendused, pendlen - pendused);
3bdaf79d 363 outptr += pendused;
364 outlen -= pendused;
32874aea 365 pendlen -= pendused;
366 if (pendlen == 0) {
367 pendsize = 0;
368 sfree(pending);
369 pending = NULL;
370 }
371 if (outlen == 0)
372 return len;
3bdaf79d 373 }
374
375 while (outlen > 0) {
5471d09a 376 if (!scp_process_network_event())
32874aea 377 return 0; /* doom */
3bdaf79d 378 }
379
380 return len;
381}
382
383/*
384 * Loop through the ssh connection and authentication process.
385 */
32874aea 386static void ssh_scp_init(void)
387{
8df7a775 388 if (scp_ssh_socket == INVALID_SOCKET)
3bdaf79d 389 return;
390 while (!back->sendok()) {
32874aea 391 fd_set readfds;
392 FD_ZERO(&readfds);
393 FD_SET(scp_ssh_socket, &readfds);
394 if (select(1, &readfds, NULL, NULL, NULL) < 0)
395 return; /* doom */
396 select_result((WPARAM) scp_ssh_socket, (LPARAM) FD_READ);
3bdaf79d 397 }
fd5e5847 398 using_sftp = !ssh_fallback_cmd;
3bdaf79d 399}
400
401/*
07d9aa13 402 * Print an error message and exit after closing the SSH link.
403 */
404static void bump(char *fmt, ...)
405{
32874aea 406 char str[0x100]; /* Make the size big enough */
c51a56e2 407 va_list ap;
408 va_start(ap, fmt);
120e4b40 409 strcpy(str, "Fatal: ");
32874aea 410 vsprintf(str + strlen(str), fmt, ap);
c51a56e2 411 va_end(ap);
cc87246d 412 strcat(str, "\n");
413 tell_str(stderr, str);
2bc6a386 414 errs++;
cc87246d 415
eba78553 416 if (back != NULL && back->socket() != NULL) {
c51a56e2 417 char ch;
3bdaf79d 418 back->special(TS_EOF);
fb09bf1c 419 ssh_scp_recv(&ch, 1);
c51a56e2 420 }
2bc6a386 421
422 if (gui_mode) {
423 unsigned int msg_id = WM_RET_ERR_CNT;
424 if (list)
425 msg_id = WM_LS_RET_ERR_CNT;
426 while (!PostMessage
427 ((HWND) atoi(gui_hwnd), msg_id, (WPARAM) errs,
428 0 /*lParam */ ))SleepEx(1000, TRUE);
429 }
430
93b581bd 431 cleanup_exit(1);
07d9aa13 432}
433
07d9aa13 434/*
435 * Open an SSH connection to user@host and execute cmd.
436 */
437static void do_cmd(char *host, char *user, char *cmd)
438{
c51a56e2 439 char *err, *realhost;
f5e6a5c6 440 DWORD namelen;
c51a56e2 441
442 if (host == NULL || host[0] == '\0')
443 bump("Empty host name");
444
445 /* Try to load settings for this host */
a9422f39 446 do_defaults(host, &cfg);
c51a56e2 447 if (cfg.host[0] == '\0') {
448 /* No settings for this host; use defaults */
32874aea 449 do_defaults(NULL, &cfg);
450 strncpy(cfg.host, host, sizeof(cfg.host) - 1);
451 cfg.host[sizeof(cfg.host) - 1] = '\0';
c51a56e2 452 cfg.port = 22;
453 }
454
449925a6 455 /*
456 * Trim leading whitespace off the hostname if it's there.
457 */
458 {
459 int space = strspn(cfg.host, " \t");
460 memmove(cfg.host, cfg.host+space, 1+strlen(cfg.host)-space);
461 }
462
463 /* See if host is of the form user@host */
464 if (cfg.host[0] != '\0') {
465 char *atsign = strchr(cfg.host, '@');
466 /* Make sure we're not overflowing the user field */
467 if (atsign) {
468 if (atsign - cfg.host < sizeof cfg.username) {
469 strncpy(cfg.username, cfg.host, atsign - cfg.host);
470 cfg.username[atsign - cfg.host] = '\0';
471 }
472 memmove(cfg.host, atsign + 1, 1 + strlen(atsign + 1));
473 }
474 }
475
476 /*
477 * Trim a colon suffix off the hostname if it's there.
478 */
479 cfg.host[strcspn(cfg.host, ":")] = '\0';
480
c51a56e2 481 /* Set username */
482 if (user != NULL && user[0] != '\0') {
32874aea 483 strncpy(cfg.username, user, sizeof(cfg.username) - 1);
484 cfg.username[sizeof(cfg.username) - 1] = '\0';
c51a56e2 485 } else if (cfg.username[0] == '\0') {
f5e6a5c6 486 namelen = 0;
487 if (GetUserName(user, &namelen) == FALSE)
488 bump("Empty user name");
93558b21 489 user = smalloc(namelen * sizeof(char));
f5e6a5c6 490 GetUserName(user, &namelen);
32874aea 491 if (verbose)
492 tell_user(stderr, "Guessing user name: %s", user);
493 strncpy(cfg.username, user, sizeof(cfg.username) - 1);
494 cfg.username[sizeof(cfg.username) - 1] = '\0';
f5e6a5c6 495 free(user);
c51a56e2 496 }
497
498 if (cfg.protocol != PROT_SSH)
499 cfg.port = 22;
500
ed89e8a5 501 if (portnumber)
502 cfg.port = portnumber;
503
fd5e5847 504 /*
d27b4a18 505 * Disable scary things which shouldn't be enabled for simple
506 * things like SCP and SFTP: agent forwarding, port forwarding,
507 * X forwarding.
508 */
509 cfg.x11_forward = 0;
510 cfg.agentfwd = 0;
511 cfg.portfwd[0] = cfg.portfwd[1] = '\0';
512
513 /*
fd5e5847 514 * Attempt to start the SFTP subsystem as a first choice,
515 * falling back to the provided scp command if that fails.
516 */
517 strcpy(cfg.remote_cmd, "sftp");
518 cfg.ssh_subsys = TRUE;
519 cfg.remote_cmd_ptr2 = cmd;
520 cfg.ssh_subsys2 = FALSE;
3bdaf79d 521 cfg.nopty = TRUE;
522
523 back = &ssh_backend;
524
2184a5d9 525 err = back->init(cfg.host, cfg.port, &realhost, 0);
c51a56e2 526 if (err != NULL)
527 bump("ssh_init: %s", err);
3bdaf79d 528 ssh_scp_init();
c51a56e2 529 if (verbose && realhost != NULL)
cc87246d 530 tell_user(stderr, "Connected to %s\n", realhost);
6e1ebb76 531 sfree(realhost);
07d9aa13 532}
533
07d9aa13 534/*
535 * Update statistic information about current file.
536 */
537static void print_stats(char *name, unsigned long size, unsigned long done,
32874aea 538 time_t start, time_t now)
07d9aa13 539{
c51a56e2 540 float ratebs;
541 unsigned long eta;
542 char etastr[10];
543 int pct;
b1daf518 544 int len;
d524be1c 545 int elap;
c51a56e2 546
d524be1c 547 elap = (unsigned long) difftime(now, start);
c51a56e2 548
d524be1c 549 if (now > start)
550 ratebs = (float) done / elap;
551 else
552 ratebs = (float) done;
553
554 if (ratebs < 1.0)
555 eta = size - done;
556 else
557 eta = (unsigned long) ((size - done) / ratebs);
558 sprintf(etastr, "%02ld:%02ld:%02ld",
559 eta / 3600, (eta % 3600) / 60, eta % 60);
c51a56e2 560
d524be1c 561 pct = (int) (100 * (done * 1.0 / size));
c51a56e2 562
d524be1c 563 if (gui_mode)
564 /* GUI Adaptation - Sept 2000 */
565 gui_update_stats(name, size, pct, elap, done, eta,
566 (unsigned long) ratebs);
567 else {
b1daf518 568 len = printf("\r%-25.25s | %10ld kB | %5.1f kB/s | ETA: %8s | %3d%%",
569 name, done / 1024, ratebs / 1024.0, etastr, pct);
570 if (len < prev_stats_len)
571 printf("%*s", prev_stats_len - len, "");
572 prev_stats_len = len;
c51a56e2 573
cc87246d 574 if (done == size)
575 printf("\n");
576 }
07d9aa13 577}
578
07d9aa13 579/*
580 * Find a colon in str and return a pointer to the colon.
39ddf0ff 581 * This is used to separate hostname from filename.
07d9aa13 582 */
32874aea 583static char *colon(char *str)
07d9aa13 584{
c51a56e2 585 /* We ignore a leading colon, since the hostname cannot be
32874aea 586 empty. We also ignore a colon as second character because
587 of filenames like f:myfile.txt. */
588 if (str[0] == '\0' || str[0] == ':' || str[1] == ':')
c51a56e2 589 return (NULL);
32874aea 590 while (*str != '\0' && *str != ':' && *str != '/' && *str != '\\')
c51a56e2 591 str++;
592 if (*str == ':')
593 return (str);
594 else
595 return (NULL);
07d9aa13 596}
597
07d9aa13 598/*
03f64569 599 * Return a pointer to the portion of str that comes after the last
b3dcd9b2 600 * slash (or backslash or colon, if `local' is TRUE).
03f64569 601 */
4eb24e3a 602static char *stripslashes(char *str, int local)
03f64569 603{
604 char *p;
605
b3dcd9b2 606 if (local) {
607 p = strchr(str, ':');
608 if (p) str = p+1;
609 }
610
03f64569 611 p = strrchr(str, '/');
612 if (p) str = p+1;
613
4eb24e3a 614 if (local) {
615 p = strrchr(str, '\\');
616 if (p) str = p+1;
617 }
03f64569 618
619 return str;
620}
621
622/*
fd5e5847 623 * Determine whether a string is entirely composed of dots.
624 */
625static int is_dots(char *str)
626{
627 return str[strspn(str, ".")] == '\0';
628}
629
630/*
07d9aa13 631 * Wait for a response from the other side.
632 * Return 0 if ok, -1 if error.
633 */
634static int response(void)
635{
c51a56e2 636 char ch, resp, rbuf[2048];
637 int p;
638
fb09bf1c 639 if (ssh_scp_recv(&resp, 1) <= 0)
c51a56e2 640 bump("Lost connection");
641
642 p = 0;
643 switch (resp) {
32874aea 644 case 0: /* ok */
c51a56e2 645 return (0);
646 default:
647 rbuf[p++] = resp;
648 /* fallthrough */
32874aea 649 case 1: /* error */
650 case 2: /* fatal error */
c51a56e2 651 do {
fb09bf1c 652 if (ssh_scp_recv(&ch, 1) <= 0)
c51a56e2 653 bump("Protocol error: Lost connection");
654 rbuf[p++] = ch;
655 } while (p < sizeof(rbuf) && ch != '\n');
32874aea 656 rbuf[p - 1] = '\0';
c51a56e2 657 if (resp == 1)
cc87246d 658 tell_user(stderr, "%s\n", rbuf);
c51a56e2 659 else
660 bump("%s", rbuf);
661 errs++;
662 return (-1);
663 }
07d9aa13 664}
665
fd5e5847 666int sftp_recvdata(char *buf, int len)
667{
668 return ssh_scp_recv(buf, len);
669}
670int sftp_senddata(char *buf, int len)
671{
672 back->send((unsigned char *) buf, len);
673 return 1;
674}
675
676/* ----------------------------------------------------------------------
677 * sftp-based replacement for the hacky `pscp -ls'.
678 */
679static int sftp_ls_compare(const void *av, const void *bv)
680{
681 const struct fxp_name *a = (const struct fxp_name *) av;
682 const struct fxp_name *b = (const struct fxp_name *) bv;
683 return strcmp(a->filename, b->filename);
684}
685void scp_sftp_listdir(char *dirname)
686{
687 struct fxp_handle *dirh;
688 struct fxp_names *names;
689 struct fxp_name *ournames;
690 int nnames, namesize;
fd5e5847 691 int i;
692
693 printf("Listing directory %s\n", dirname);
694
695 dirh = fxp_opendir(dirname);
696 if (dirh == NULL) {
cdcbdf3b 697 printf("Unable to open %s: %s\n", dirname, fxp_error());
fd5e5847 698 } else {
699 nnames = namesize = 0;
700 ournames = NULL;
701
702 while (1) {
703
704 names = fxp_readdir(dirh);
705 if (names == NULL) {
706 if (fxp_error_type() == SSH_FX_EOF)
707 break;
cdcbdf3b 708 printf("Reading directory %s: %s\n", dirname, fxp_error());
fd5e5847 709 break;
710 }
711 if (names->nnames == 0) {
712 fxp_free_names(names);
713 break;
714 }
715
716 if (nnames + names->nnames >= namesize) {
717 namesize += names->nnames + 128;
718 ournames =
719 srealloc(ournames, namesize * sizeof(*ournames));
720 }
721
722 for (i = 0; i < names->nnames; i++)
723 ournames[nnames++] = names->names[i];
724
725 names->nnames = 0; /* prevent free_names */
726 fxp_free_names(names);
727 }
728 fxp_close(dirh);
729
730 /*
731 * Now we have our filenames. Sort them by actual file
732 * name, and then output the longname parts.
733 */
734 qsort(ournames, nnames, sizeof(*ournames), sftp_ls_compare);
735
736 /*
737 * And print them.
738 */
739 for (i = 0; i < nnames; i++)
740 printf("%s\n", ournames[i].longname);
741 }
742}
743
120e4b40 744/* ----------------------------------------------------------------------
745 * Helper routines that contain the actual SCP protocol elements,
fd5e5847 746 * implemented both as SCP1 and SFTP.
120e4b40 747 */
748
fd5e5847 749static struct scp_sftp_dirstack {
750 struct scp_sftp_dirstack *next;
751 struct fxp_name *names;
752 int namepos, namelen;
753 char *dirpath;
4eb24e3a 754 char *wildcard;
825ec8ee 755 int matched_something; /* wildcard match set was non-empty */
fd5e5847 756} *scp_sftp_dirstack_head;
757static char *scp_sftp_remotepath, *scp_sftp_currentname;
4eb24e3a 758static char *scp_sftp_wildcard;
fd5e5847 759static int scp_sftp_targetisdir, scp_sftp_donethistarget;
760static int scp_sftp_preserve, scp_sftp_recursive;
761static unsigned long scp_sftp_mtime, scp_sftp_atime;
762static int scp_has_times;
763static struct fxp_handle *scp_sftp_filehandle;
764static uint64 scp_sftp_fileoffset;
765
766void scp_source_setup(char *target, int shouldbedir)
767{
768 if (using_sftp) {
769 /*
770 * Find out whether the target filespec is in fact a
771 * directory.
772 */
773 struct fxp_attrs attrs;
774
02105c79 775 if (!fxp_init()) {
776 tell_user(stderr, "unable to initialise SFTP: %s", fxp_error());
777 errs++;
778 return 1;
779 }
780
fd5e5847 781 if (!fxp_stat(target, &attrs) ||
782 !(attrs.flags & SSH_FILEXFER_ATTR_PERMISSIONS))
783 scp_sftp_targetisdir = 0;
784 else
785 scp_sftp_targetisdir = (attrs.permissions & 0040000) != 0;
786
787 if (shouldbedir && !scp_sftp_targetisdir) {
788 bump("pscp: remote filespec %s: not a directory\n", target);
789 }
790
791 scp_sftp_remotepath = dupstr(target);
792
793 scp_has_times = 0;
794 } else {
795 (void) response();
796 }
797}
798
120e4b40 799int scp_send_errmsg(char *str)
800{
fd5e5847 801 if (using_sftp) {
802 /* do nothing; we never need to send our errors to the server */
803 } else {
804 back->send("\001", 1); /* scp protocol error prefix */
805 back->send(str, strlen(str));
806 }
120e4b40 807 return 0; /* can't fail */
808}
809
810int scp_send_filetimes(unsigned long mtime, unsigned long atime)
811{
fd5e5847 812 if (using_sftp) {
813 scp_sftp_mtime = mtime;
814 scp_sftp_atime = atime;
815 scp_has_times = 1;
816 return 0;
817 } else {
818 char buf[80];
819 sprintf(buf, "T%lu 0 %lu 0\n", mtime, atime);
820 back->send(buf, strlen(buf));
821 return response();
822 }
120e4b40 823}
824
825int scp_send_filename(char *name, unsigned long size, int modes)
826{
fd5e5847 827 if (using_sftp) {
828 char *fullname;
829 if (scp_sftp_targetisdir) {
830 fullname = dupcat(scp_sftp_remotepath, "/", name, NULL);
831 } else {
832 fullname = dupstr(scp_sftp_remotepath);
833 }
834 scp_sftp_filehandle =
835 fxp_open(fullname, SSH_FXF_WRITE | SSH_FXF_CREAT | SSH_FXF_TRUNC);
836 if (!scp_sftp_filehandle) {
837 tell_user(stderr, "pscp: unable to open %s: %s",
838 fullname, fxp_error());
839 errs++;
840 return 1;
841 }
842 scp_sftp_fileoffset = uint64_make(0, 0);
843 sfree(fullname);
844 return 0;
845 } else {
846 char buf[40];
847 sprintf(buf, "C%04o %lu ", modes, size);
848 back->send(buf, strlen(buf));
849 back->send(name, strlen(name));
850 back->send("\n", 1);
851 return response();
852 }
120e4b40 853}
854
855int scp_send_filedata(char *data, int len)
856{
fd5e5847 857 if (using_sftp) {
858 if (!scp_sftp_filehandle) {
859 return 1;
860 }
861 if (!fxp_write(scp_sftp_filehandle, data, scp_sftp_fileoffset, len)) {
862 tell_user(stderr, "error while writing: %s\n", fxp_error());
863 errs++;
864 return 1;
865 }
866 scp_sftp_fileoffset = uint64_add32(scp_sftp_fileoffset, len);
867 return 0;
868 } else {
869 int bufsize = back->send(data, len);
120e4b40 870
fd5e5847 871 /*
872 * If the network transfer is backing up - that is, the
873 * remote site is not accepting data as fast as we can
874 * produce it - then we must loop on network events until
875 * we have space in the buffer again.
876 */
877 while (bufsize > MAX_SCP_BUFSIZE) {
878 if (!scp_process_network_event())
879 return 1;
880 bufsize = back->sendbuffer();
881 }
882
883 return 0;
884 }
885}
886
887int scp_send_finish(void)
888{
889 if (using_sftp) {
890 struct fxp_attrs attrs;
891 if (!scp_sftp_filehandle) {
120e4b40 892 return 1;
fd5e5847 893 }
894 if (scp_has_times) {
895 attrs.flags = SSH_FILEXFER_ATTR_ACMODTIME;
896 attrs.atime = scp_sftp_atime;
897 attrs.mtime = scp_sftp_mtime;
898 if (!fxp_fsetstat(scp_sftp_filehandle, attrs)) {
899 tell_user(stderr, "unable to set file times: %s\n", fxp_error());
900 errs++;
901 }
902 }
903 fxp_close(scp_sftp_filehandle);
904 scp_has_times = 0;
905 return 0;
906 } else {
907 back->send("", 1);
908 return response();
120e4b40 909 }
fd5e5847 910}
120e4b40 911
fd5e5847 912char *scp_save_remotepath(void)
913{
914 if (using_sftp)
915 return scp_sftp_remotepath;
916 else
917 return NULL;
120e4b40 918}
919
fd5e5847 920void scp_restore_remotepath(char *data)
120e4b40 921{
fd5e5847 922 if (using_sftp)
923 scp_sftp_remotepath = data;
120e4b40 924}
925
926int scp_send_dirname(char *name, int modes)
927{
fd5e5847 928 if (using_sftp) {
929 char *fullname;
930 char const *err;
931 struct fxp_attrs attrs;
932 if (scp_sftp_targetisdir) {
933 fullname = dupcat(scp_sftp_remotepath, "/", name, NULL);
934 } else {
935 fullname = dupstr(scp_sftp_remotepath);
936 }
937
938 /*
939 * We don't worry about whether we managed to create the
940 * directory, because if it exists already it's OK just to
941 * use it. Instead, we will stat it afterwards, and if it
942 * exists and is a directory we will assume we were either
943 * successful or it didn't matter.
944 */
945 if (!fxp_mkdir(fullname))
946 err = fxp_error();
947 else
948 err = "server reported no error";
949 if (!fxp_stat(fullname, &attrs) ||
950 !(attrs.flags & SSH_FILEXFER_ATTR_PERMISSIONS) ||
951 !(attrs.permissions & 0040000)) {
952 tell_user(stderr, "unable to create directory %s: %s",
953 fullname, err);
954 errs++;
955 return 1;
956 }
957
958 scp_sftp_remotepath = fullname;
959
960 return 0;
961 } else {
962 char buf[40];
963 sprintf(buf, "D%04o 0 ", modes);
964 back->send(buf, strlen(buf));
965 back->send(name, strlen(name));
966 back->send("\n", 1);
967 return response();
968 }
120e4b40 969}
970
971int scp_send_enddir(void)
972{
fd5e5847 973 if (using_sftp) {
974 sfree(scp_sftp_remotepath);
975 return 0;
976 } else {
977 back->send("E\n", 2);
978 return response();
979 }
980}
981
982/*
983 * Yes, I know; I have an scp_sink_setup _and_ an scp_sink_init.
984 * That's bad. The difference is that scp_sink_setup is called once
985 * right at the start, whereas scp_sink_init is called to
986 * initialise every level of recursion in the protocol.
987 */
4eb24e3a 988int scp_sink_setup(char *source, int preserve, int recursive)
fd5e5847 989{
990 if (using_sftp) {
4eb24e3a 991 char *newsource;
02105c79 992
993 if (!fxp_init()) {
994 tell_user(stderr, "unable to initialise SFTP: %s", fxp_error());
995 errs++;
996 return 1;
997 }
4eb24e3a 998 /*
999 * It's possible that the source string we've been given
1000 * contains a wildcard. If so, we must split the directory
1001 * away from the wildcard itself (throwing an error if any
1002 * wildcardness comes before the final slash) and arrange
1003 * things so that a dirstack entry will be set up.
1004 */
1005 newsource = smalloc(1+strlen(source));
1006 if (!wc_unescape(newsource, source)) {
1007 /* Yes, here we go; it's a wildcard. Bah. */
1008 char *dupsource, *lastpart, *dirpart, *wildcard;
1009 dupsource = dupstr(source);
1010 lastpart = stripslashes(dupsource, 0);
1011 wildcard = dupstr(lastpart);
1012 *lastpart = '\0';
1013 if (*dupsource && dupsource[1]) {
1014 /*
1015 * The remains of dupsource are at least two
1016 * characters long, meaning the pathname wasn't
1017 * empty or just `/'. Hence, we remove the trailing
1018 * slash.
1019 */
1020 lastpart[-1] = '\0';
6b18a524 1021 } else if (!*dupsource) {
1022 /*
1023 * The remains of dupsource are _empty_ - the whole
1024 * pathname was a wildcard. Hence we need to
1025 * replace it with ".".
1026 */
1027 sfree(dupsource);
1028 dupsource = dupstr(".");
4eb24e3a 1029 }
1030
1031 /*
1032 * Now we have separated our string into dupsource (the
1033 * directory part) and wildcard. Both of these will
1034 * need freeing at some point. Next step is to remove
1035 * wildcard escapes from the directory part, throwing
1036 * an error if it contains a real wildcard.
1037 */
1038 dirpart = smalloc(1+strlen(dupsource));
1039 if (!wc_unescape(dirpart, dupsource)) {
1040 tell_user(stderr, "%s: multiple-level wildcards unsupported",
1041 source);
1042 errs++;
1043 sfree(dirpart);
1044 sfree(wildcard);
1045 sfree(dupsource);
1046 return 1;
1047 }
1048
1049 /*
1050 * Now we have dirpart (unescaped, ie a valid remote
1051 * path), and wildcard (a wildcard). This will be
1052 * sufficient to arrange a dirstack entry.
1053 */
1054 scp_sftp_remotepath = dirpart;
1055 scp_sftp_wildcard = wildcard;
1056 sfree(dupsource);
1057 } else {
1058 scp_sftp_remotepath = newsource;
1059 scp_sftp_wildcard = NULL;
1060 }
fd5e5847 1061 scp_sftp_preserve = preserve;
1062 scp_sftp_recursive = recursive;
1063 scp_sftp_donethistarget = 0;
1064 scp_sftp_dirstack_head = NULL;
1065 }
4eb24e3a 1066 return 0;
120e4b40 1067}
1068
1069int scp_sink_init(void)
1070{
fd5e5847 1071 if (!using_sftp) {
1072 back->send("", 1);
1073 }
120e4b40 1074 return 0;
1075}
1076
1077#define SCP_SINK_FILE 1
1078#define SCP_SINK_DIR 2
1079#define SCP_SINK_ENDDIR 3
4eb24e3a 1080#define SCP_SINK_RETRY 4 /* not an action; just try again */
120e4b40 1081struct scp_sink_action {
1082 int action; /* FILE, DIR, ENDDIR */
1083 char *buf; /* will need freeing after use */
1084 char *name; /* filename or dirname (not ENDDIR) */
1085 int mode; /* access mode (not ENDDIR) */
1086 unsigned long size; /* file size (not ENDDIR) */
1087 int settime; /* 1 if atime and mtime are filled */
1088 unsigned long atime, mtime; /* access times for the file */
1089};
1090
1091int scp_get_sink_action(struct scp_sink_action *act)
1092{
fd5e5847 1093 if (using_sftp) {
1094 char *fname;
1095 int must_free_fname;
1096 struct fxp_attrs attrs;
1097 int ret;
1098
1099 if (!scp_sftp_dirstack_head) {
1100 if (!scp_sftp_donethistarget) {
1101 /*
1102 * Simple case: we are only dealing with one file.
1103 */
1104 fname = scp_sftp_remotepath;
1105 must_free_fname = 0;
1106 scp_sftp_donethistarget = 1;
1107 } else {
1108 /*
1109 * Even simpler case: one file _which we've done_.
1110 * Return 1 (finished).
1111 */
1112 return 1;
1113 }
1114 } else {
1115 /*
1116 * We're now in the middle of stepping through a list
1117 * of names returned from fxp_readdir(); so let's carry
1118 * on.
1119 */
1120 struct scp_sftp_dirstack *head = scp_sftp_dirstack_head;
1121 while (head->namepos < head->namelen &&
4eb24e3a 1122 (is_dots(head->names[head->namepos].filename) ||
1123 (head->wildcard &&
1124 !wc_match(head->wildcard,
1125 head->names[head->namepos].filename))))
fd5e5847 1126 head->namepos++; /* skip . and .. */
1127 if (head->namepos < head->namelen) {
825ec8ee 1128 head->matched_something = 1;
fd5e5847 1129 fname = dupcat(head->dirpath, "/",
1130 head->names[head->namepos++].filename,
1131 NULL);
1132 must_free_fname = 1;
1133 } else {
1134 /*
1135 * We've come to the end of the list; pop it off
4eb24e3a 1136 * the stack and return an ENDDIR action (or RETRY
1137 * if this was a wildcard match).
fd5e5847 1138 */
4eb24e3a 1139 if (head->wildcard) {
1140 act->action = SCP_SINK_RETRY;
825ec8ee 1141 if (!head->matched_something) {
1142 tell_user(stderr, "pscp: wildcard '%s' matched "
1143 "no files", head->wildcard);
1144 errs++;
1145 }
4eb24e3a 1146 sfree(head->wildcard);
825ec8ee 1147
4eb24e3a 1148 } else {
1149 act->action = SCP_SINK_ENDDIR;
1150 }
1151
fd5e5847 1152 sfree(head->dirpath);
1153 sfree(head->names);
1154 scp_sftp_dirstack_head = head->next;
1155 sfree(head);
1156
fd5e5847 1157 return 0;
1158 }
1159 }
cd1f39ab 1160
fd5e5847 1161 /*
1162 * Now we have a filename. Stat it, and see if it's a file
1163 * or a directory.
1164 */
1165 ret = fxp_stat(fname, &attrs);
1166 if (!ret || !(attrs.flags & SSH_FILEXFER_ATTR_PERMISSIONS)) {
1167 tell_user(stderr, "unable to identify %s: %s", fname,
1168 ret ? "file type not supplied" : fxp_error());
1169 errs++;
120e4b40 1170 return 1;
fd5e5847 1171 }
1172
1173 if (attrs.permissions & 0040000) {
1174 struct scp_sftp_dirstack *newitem;
1175 struct fxp_handle *dirhandle;
1176 int nnames, namesize;
1177 struct fxp_name *ournames;
1178 struct fxp_names *names;
1179
1180 /*
37dfb97a 1181 * It's a directory. If we're not in recursive mode,
1182 * this merits a complaint (which is fatal if the name
1183 * was specified directly, but not if it was matched by
1184 * a wildcard).
1185 *
1186 * We skip this complaint completely if
1187 * scp_sftp_wildcard is set, because that's an
1188 * indication that we're not actually supposed to
1189 * _recursively_ transfer the dir, just scan it for
1190 * things matching the wildcard.
fd5e5847 1191 */
4eb24e3a 1192 if (!scp_sftp_recursive && !scp_sftp_wildcard) {
fd5e5847 1193 tell_user(stderr, "pscp: %s: is a directory", fname);
1194 errs++;
1195 if (must_free_fname) sfree(fname);
37dfb97a 1196 if (scp_sftp_dirstack_head) {
1197 act->action = SCP_SINK_RETRY;
1198 return 0;
1199 } else {
1200 return 1;
1201 }
120e4b40 1202 }
fd5e5847 1203
1204 /*
1205 * Otherwise, the fun begins. We must fxp_opendir() the
1206 * directory, slurp the filenames into memory, return
4eb24e3a 1207 * SCP_SINK_DIR (unless this is a wildcard match), and
1208 * set targetisdir. The next time we're called, we will
1209 * run through the list of filenames one by one,
1210 * matching them against a wildcard if present.
fd5e5847 1211 *
1212 * If targetisdir is _already_ set (meaning we're
1213 * already in the middle of going through another such
1214 * list), we must push the other (target,namelist) pair
1215 * on a stack.
1216 */
1217 dirhandle = fxp_opendir(fname);
1218 if (!dirhandle) {
1219 tell_user(stderr, "scp: unable to open directory %s: %s",
1220 fname, fxp_error());
1221 if (must_free_fname) sfree(fname);
1222 errs++;
1223 return 1;
1224 }
1225 nnames = namesize = 0;
1226 ournames = NULL;
1227 while (1) {
1228 int i;
1229
1230 names = fxp_readdir(dirhandle);
1231 if (names == NULL) {
1232 if (fxp_error_type() == SSH_FX_EOF)
1233 break;
1234 tell_user(stderr, "scp: reading directory %s: %s\n",
1235 fname, fxp_error());
1236 if (must_free_fname) sfree(fname);
1237 sfree(ournames);
1238 errs++;
1239 return 1;
1240 }
1241 if (names->nnames == 0) {
1242 fxp_free_names(names);
1243 break;
1244 }
1245 if (nnames + names->nnames >= namesize) {
1246 namesize += names->nnames + 128;
1247 ournames =
1248 srealloc(ournames, namesize * sizeof(*ournames));
1249 }
1250 for (i = 0; i < names->nnames; i++)
1251 ournames[nnames++] = names->names[i];
1252 names->nnames = 0; /* prevent free_names */
1253 fxp_free_names(names);
1254 }
1255 fxp_close(dirhandle);
1256
1257 newitem = smalloc(sizeof(struct scp_sftp_dirstack));
1258 newitem->next = scp_sftp_dirstack_head;
1259 newitem->names = ournames;
1260 newitem->namepos = 0;
1261 newitem->namelen = nnames;
1262 if (must_free_fname)
1263 newitem->dirpath = fname;
1264 else
1265 newitem->dirpath = dupstr(fname);
4eb24e3a 1266 if (scp_sftp_wildcard) {
1267 newitem->wildcard = scp_sftp_wildcard;
825ec8ee 1268 newitem->matched_something = 0;
4eb24e3a 1269 scp_sftp_wildcard = NULL;
1270 } else {
1271 newitem->wildcard = NULL;
1272 }
fd5e5847 1273 scp_sftp_dirstack_head = newitem;
1274
4eb24e3a 1275 if (newitem->wildcard) {
1276 act->action = SCP_SINK_RETRY;
1277 } else {
1278 act->action = SCP_SINK_DIR;
1279 act->buf = dupstr(stripslashes(fname, 0));
1280 act->name = act->buf;
1281 act->size = 0; /* duhh, it's a directory */
1282 act->mode = 07777 & attrs.permissions;
1283 if (scp_sftp_preserve &&
1284 (attrs.flags & SSH_FILEXFER_ATTR_ACMODTIME)) {
1285 act->atime = attrs.atime;
1286 act->mtime = attrs.mtime;
1287 act->settime = 1;
1288 } else
1289 act->settime = 0;
1290 }
120e4b40 1291 return 0;
fd5e5847 1292
1293 } else {
1294 /*
1295 * It's a file. Return SCP_SINK_FILE.
1296 */
1297 act->action = SCP_SINK_FILE;
4eb24e3a 1298 act->buf = dupstr(stripslashes(fname, 0));
fd5e5847 1299 act->name = act->buf;
1300 if (attrs.flags & SSH_FILEXFER_ATTR_SIZE) {
1301 if (uint64_compare(attrs.size,
1302 uint64_make(0, ULONG_MAX)) > 0) {
1303 act->size = ULONG_MAX; /* *boggle* */
1304 } else
1305 act->size = attrs.size.lo;
1306 } else
1307 act->size = ULONG_MAX; /* no idea */
1308 act->mode = 07777 & attrs.permissions;
1309 if (scp_sftp_preserve &&
1310 (attrs.flags & SSH_FILEXFER_ATTR_ACMODTIME)) {
1311 act->atime = attrs.atime;
1312 act->mtime = attrs.mtime;
120e4b40 1313 act->settime = 1;
fd5e5847 1314 } else
1315 act->settime = 0;
1316 if (must_free_fname)
1317 scp_sftp_currentname = fname;
1318 else
1319 scp_sftp_currentname = dupstr(fname);
1320 return 0;
1321 }
1322
1323 } else {
1324 int done = 0;
1325 int i, bufsize;
1326 int action;
1327 char ch;
1328
1329 act->settime = 0;
1330 act->buf = NULL;
1331 bufsize = 0;
1332
1333 while (!done) {
1334 if (ssh_scp_recv(&ch, 1) <= 0)
1335 return 1;
1336 if (ch == '\n')
1337 bump("Protocol error: Unexpected newline");
1338 i = 0;
1339 action = ch;
1340 do {
1341 if (ssh_scp_recv(&ch, 1) <= 0)
1342 bump("Lost connection");
1343 if (i >= bufsize) {
1344 bufsize = i + 128;
1345 act->buf = srealloc(act->buf, bufsize);
1346 }
1347 act->buf[i++] = ch;
1348 } while (ch != '\n');
1349 act->buf[i - 1] = '\0';
1350 switch (action) {
1351 case '\01': /* error */
1352 tell_user(stderr, "%s\n", act->buf);
1353 errs++;
1354 continue; /* go round again */
1355 case '\02': /* fatal error */
1356 bump("%s", act->buf);
1357 case 'E':
120e4b40 1358 back->send("", 1);
fd5e5847 1359 act->action = SCP_SINK_ENDDIR;
1360 return 0;
1361 case 'T':
1362 if (sscanf(act->buf, "%ld %*d %ld %*d",
1363 &act->mtime, &act->atime) == 2) {
1364 act->settime = 1;
1365 back->send("", 1);
1366 continue; /* go round again */
1367 }
1368 bump("Protocol error: Illegal time format");
1369 case 'C':
1370 case 'D':
1371 act->action = (action == 'C' ? SCP_SINK_FILE : SCP_SINK_DIR);
1372 break;
1373 default:
1374 bump("Protocol error: Expected control record");
120e4b40 1375 }
fd5e5847 1376 /*
1377 * We will go round this loop only once, unless we hit
1378 * `continue' above.
1379 */
1380 done = 1;
120e4b40 1381 }
fd5e5847 1382
120e4b40 1383 /*
fd5e5847 1384 * If we get here, we must have seen SCP_SINK_FILE or
1385 * SCP_SINK_DIR.
120e4b40 1386 */
fd5e5847 1387 if (sscanf(act->buf, "%o %lu %n", &act->mode, &act->size, &i) != 2)
1388 bump("Protocol error: Illegal file descriptor format");
1389 act->name = act->buf + i;
1390 return 0;
120e4b40 1391 }
120e4b40 1392}
1393
1394int scp_accept_filexfer(void)
1395{
fd5e5847 1396 if (using_sftp) {
1397 scp_sftp_filehandle =
1398 fxp_open(scp_sftp_currentname, SSH_FXF_READ);
1399 if (!scp_sftp_filehandle) {
1400 tell_user(stderr, "pscp: unable to open %s: %s",
1401 scp_sftp_currentname, fxp_error());
1402 errs++;
1403 return 1;
1404 }
1405 scp_sftp_fileoffset = uint64_make(0, 0);
1406 sfree(scp_sftp_currentname);
1407 return 0;
1408 } else {
1409 back->send("", 1);
1410 return 0; /* can't fail */
1411 }
120e4b40 1412}
1413
1414int scp_recv_filedata(char *data, int len)
1415{
fd5e5847 1416 if (using_sftp) {
1417 int actuallen = fxp_read(scp_sftp_filehandle, data,
1418 scp_sftp_fileoffset, len);
1419 if (actuallen == -1 && fxp_error_type() != SSH_FX_EOF) {
1420 tell_user(stderr, "pscp: error while reading: %s", fxp_error());
1421 errs++;
1422 return -1;
1423 }
1424 if (actuallen < 0)
1425 actuallen = 0;
1426
1427 scp_sftp_fileoffset = uint64_add32(scp_sftp_fileoffset, actuallen);
1428
1429 return actuallen;
1430 } else {
1431 return ssh_scp_recv(data, len);
1432 }
120e4b40 1433}
1434
1435int scp_finish_filerecv(void)
1436{
fd5e5847 1437 if (using_sftp) {
1438 fxp_close(scp_sftp_filehandle);
1439 return 0;
1440 } else {
1441 back->send("", 1);
1442 return response();
1443 }
120e4b40 1444}
1445
1446/* ----------------------------------------------------------------------
07d9aa13 1447 * Send an error message to the other side and to the screen.
1448 * Increment error counter.
1449 */
1450static void run_err(const char *fmt, ...)
1451{
c51a56e2 1452 char str[2048];
1453 va_list ap;
1454 va_start(ap, fmt);
1455 errs++;
9520eba8 1456 strcpy(str, "scp: ");
32874aea 1457 vsprintf(str + strlen(str), fmt, ap);
c51a56e2 1458 strcat(str, "\n");
120e4b40 1459 scp_send_errmsg(str);
32874aea 1460 tell_user(stderr, "%s", str);
c51a56e2 1461 va_end(ap);
07d9aa13 1462}
1463
07d9aa13 1464/*
1465 * Execute the source part of the SCP protocol.
1466 */
1467static void source(char *src)
1468{
c51a56e2 1469 unsigned long size;
1470 char *last;
1471 HANDLE f;
1472 DWORD attr;
1473 unsigned long i;
1474 unsigned long stat_bytes;
1475 time_t stat_starttime, stat_lasttime;
1476
1477 attr = GetFileAttributes(src);
32874aea 1478 if (attr == (DWORD) - 1) {
c51a56e2 1479 run_err("%s: No such file or directory", src);
1480 return;
1481 }
1482
1483 if ((attr & FILE_ATTRIBUTE_DIRECTORY) != 0) {
7f1f80de 1484 if (recursive) {
32874aea 1485 /*
1486 * Avoid . and .. directories.
1487 */
1488 char *p;
1489 p = strrchr(src, '/');
1490 if (!p)
1491 p = strrchr(src, '\\');
1492 if (!p)
1493 p = src;
1494 else
1495 p++;
1496 if (!strcmp(p, ".") || !strcmp(p, ".."))
1497 /* skip . and .. */ ;
1498 else
1499 rsource(src);
1500 } else {
c51a56e2 1501 run_err("%s: not a regular file", src);
32874aea 1502 }
c51a56e2 1503 return;
1504 }
1505
1506 if ((last = strrchr(src, '/')) == NULL)
1507 last = src;
1508 else
1509 last++;
1510 if (strrchr(last, '\\') != NULL)
1511 last = strrchr(last, '\\') + 1;
1512 if (last == src && strchr(src, ':') != NULL)
1513 last = strchr(src, ':') + 1;
1514
1515 f = CreateFile(src, GENERIC_READ, FILE_SHARE_READ, NULL,
1516 OPEN_EXISTING, 0, 0);
1517 if (f == INVALID_HANDLE_VALUE) {
486543a1 1518 run_err("%s: Cannot open file", src);
c51a56e2 1519 return;
1520 }
1521
1522 if (preserve) {
1523 FILETIME actime, wrtime;
1524 unsigned long mtime, atime;
1525 GetFileTime(f, NULL, &actime, &wrtime);
1526 TIME_WIN_TO_POSIX(actime, atime);
1527 TIME_WIN_TO_POSIX(wrtime, mtime);
120e4b40 1528 if (scp_send_filetimes(mtime, atime))
c51a56e2 1529 return;
1530 }
1531
1532 size = GetFileSize(f, NULL);
c51a56e2 1533 if (verbose)
120e4b40 1534 tell_user(stderr, "Sending file %s, size=%lu", last, size);
1535 if (scp_send_filename(last, size, 0644))
c51a56e2 1536 return;
1537
2d466ffd 1538 stat_bytes = 0;
1539 stat_starttime = time(NULL);
1540 stat_lasttime = 0;
c51a56e2 1541
1542 for (i = 0; i < size; i += 4096) {
1543 char transbuf[4096];
1544 DWORD j, k = 4096;
5471d09a 1545
32874aea 1546 if (i + k > size)
1547 k = size - i;
1548 if (!ReadFile(f, transbuf, k, &j, NULL) || j != k) {
1549 if (statistics)
1550 printf("\n");
c51a56e2 1551 bump("%s: Read error", src);
07d9aa13 1552 }
120e4b40 1553 if (scp_send_filedata(transbuf, k))
1554 bump("%s: Network error occurred", src);
1555
c51a56e2 1556 if (statistics) {
1557 stat_bytes += k;
32874aea 1558 if (time(NULL) != stat_lasttime || i + k == size) {
c51a56e2 1559 stat_lasttime = time(NULL);
1560 print_stats(last, size, stat_bytes,
1561 stat_starttime, stat_lasttime);
1562 }
07d9aa13 1563 }
5471d09a 1564
c51a56e2 1565 }
1566 CloseHandle(f);
07d9aa13 1567
120e4b40 1568 (void) scp_send_finish();
07d9aa13 1569}
1570
07d9aa13 1571/*
1572 * Recursively send the contents of a directory.
1573 */
1574static void rsource(char *src)
1575{
03f64569 1576 char *last, *findfile;
fd5e5847 1577 char *save_target;
c51a56e2 1578 HANDLE dir;
1579 WIN32_FIND_DATA fdat;
1580 int ok;
1581
1582 if ((last = strrchr(src, '/')) == NULL)
1583 last = src;
1584 else
1585 last++;
1586 if (strrchr(last, '\\') != NULL)
1587 last = strrchr(last, '\\') + 1;
1588 if (last == src && strchr(src, ':') != NULL)
1589 last = strchr(src, ':') + 1;
1590
1591 /* maybe send filetime */
1592
fd5e5847 1593 save_target = scp_save_remotepath();
1594
c51a56e2 1595 if (verbose)
120e4b40 1596 tell_user(stderr, "Entering directory: %s", last);
1597 if (scp_send_dirname(last, 0755))
c51a56e2 1598 return;
1599
03f64569 1600 findfile = dupcat(src, "/*", NULL);
1601 dir = FindFirstFile(findfile, &fdat);
c51a56e2 1602 ok = (dir != INVALID_HANDLE_VALUE);
1603 while (ok) {
1604 if (strcmp(fdat.cFileName, ".") == 0 ||
1605 strcmp(fdat.cFileName, "..") == 0) {
03f64569 1606 /* ignore . and .. */
c51a56e2 1607 } else {
fd5e5847 1608 char *foundfile = dupcat(src, "/", fdat.cFileName, NULL);
03f64569 1609 source(foundfile);
1610 sfree(foundfile);
07d9aa13 1611 }
c51a56e2 1612 ok = FindNextFile(dir, &fdat);
1613 }
1614 FindClose(dir);
03f64569 1615 sfree(findfile);
07d9aa13 1616
120e4b40 1617 (void) scp_send_enddir();
fd5e5847 1618
1619 scp_restore_remotepath(save_target);
07d9aa13 1620}
1621
07d9aa13 1622/*
03f64569 1623 * Execute the sink part of the SCP protocol.
07d9aa13 1624 */
ca2d5943 1625static void sink(char *targ, char *src)
07d9aa13 1626{
03f64569 1627 char *destfname;
c51a56e2 1628 int targisdir = 0;
c51a56e2 1629 int exists;
1630 DWORD attr;
1631 HANDLE f;
120e4b40 1632 unsigned long received;
c51a56e2 1633 int wrerror = 0;
1634 unsigned long stat_bytes;
1635 time_t stat_starttime, stat_lasttime;
1636 char *stat_name;
1637
1638 attr = GetFileAttributes(targ);
32874aea 1639 if (attr != (DWORD) - 1 && (attr & FILE_ATTRIBUTE_DIRECTORY) != 0)
c51a56e2 1640 targisdir = 1;
1641
1642 if (targetshouldbedirectory && !targisdir)
1643 bump("%s: Not a directory", targ);
1644
120e4b40 1645 scp_sink_init();
c51a56e2 1646 while (1) {
120e4b40 1647 struct scp_sink_action act;
1648 if (scp_get_sink_action(&act))
c51a56e2 1649 return;
07d9aa13 1650
120e4b40 1651 if (act.action == SCP_SINK_ENDDIR)
1652 return;
03f64569 1653
4eb24e3a 1654 if (act.action == SCP_SINK_RETRY)
1655 continue;
1656
c51a56e2 1657 if (targisdir) {
03f64569 1658 /*
1659 * Prevent the remote side from maliciously writing to
1660 * files outside the target area by sending a filename
1661 * containing `../'. In fact, it shouldn't be sending
b3dcd9b2 1662 * filenames with any slashes or colons in at all; so
1663 * we'll find the last slash, backslash or colon in the
1664 * filename and use only the part after that. (And
1665 * warn!)
03f64569 1666 *
1667 * In addition, we also ensure here that if we're
1668 * copying a single file and the target is a directory
1669 * (common usage: `pscp host:filename .') the remote
1670 * can't send us a _different_ file name. We can
1671 * distinguish this case because `src' will be non-NULL
1672 * and the last component of that will fail to match
1673 * (the last component of) the name sent.
4eeae4a3 1674 *
cd1f39ab 1675 * Well, not always; if `src' is a wildcard, we do
4eeae4a3 1676 * expect to get back filenames that don't correspond
cd1f39ab 1677 * exactly to it. Ideally in this case, we would like
1678 * to ensure that the returned filename actually
1679 * matches the wildcard pattern - but one of SCP's
1680 * protocol infelicities is that wildcard matching is
1681 * done at the server end _by the server's rules_ and
1682 * so in general this is infeasible. Hence, we only
1683 * accept filenames that don't correspond to `src' if
1684 * unsafe mode is enabled or we are using SFTP (which
1685 * resolves remote wildcards on the client side and can
1686 * be trusted).
03f64569 1687 */
1688 char *striptarget, *stripsrc;
1689
4eb24e3a 1690 striptarget = stripslashes(act.name, 1);
03f64569 1691 if (striptarget != act.name) {
1692 tell_user(stderr, "warning: remote host sent a compound"
b3dcd9b2 1693 " pathname '%s'", act.name);
1694 tell_user(stderr, " renaming local file to '%s'",
1695 striptarget);
03f64569 1696 }
1697
1698 /*
1699 * Also check to see if the target filename is '.' or
1700 * '..', or indeed '...' and so on because Windows
1701 * appears to interpret those like '..'.
1702 */
fd5e5847 1703 if (is_dots(striptarget)) {
03f64569 1704 bump("security violation: remote host attempted to write to"
1705 " a '.' or '..' path!");
1706 }
1707
1708 if (src) {
4eb24e3a 1709 stripsrc = stripslashes(src, 1);
cd1f39ab 1710 if (strcmp(striptarget, stripsrc) &&
1711 !using_sftp && !scp_unsafe_mode) {
1712 tell_user(stderr, "warning: remote host tried to write "
1713 "to a file called '%s'", striptarget);
1714 tell_user(stderr, " when we requested a file "
1715 "called '%s'.", stripsrc);
1716 tell_user(stderr, " If this is a wildcard, "
1717 "consider upgrading to SSH 2 or using");
1718 tell_user(stderr, " the '-unsafe' option. Renaming"
1719 " of this file has been disallowed.");
4eeae4a3 1720 /* Override the name the server provided with our own. */
1721 striptarget = stripsrc;
03f64569 1722 }
03f64569 1723 }
1724
c51a56e2 1725 if (targ[0] != '\0')
03f64569 1726 destfname = dupcat(targ, "\\", striptarget, NULL);
1727 else
1728 destfname = dupstr(striptarget);
c51a56e2 1729 } else {
03f64569 1730 /*
1731 * In this branch of the if, the target area is a
1732 * single file with an explicitly specified name in any
1733 * case, so there's no danger.
1734 */
1735 destfname = dupstr(targ);
c51a56e2 1736 }
03f64569 1737 attr = GetFileAttributes(destfname);
32874aea 1738 exists = (attr != (DWORD) - 1);
c51a56e2 1739
120e4b40 1740 if (act.action == SCP_SINK_DIR) {
c51a56e2 1741 if (exists && (attr & FILE_ATTRIBUTE_DIRECTORY) == 0) {
03f64569 1742 run_err("%s: Not a directory", destfname);
c51a56e2 1743 continue;
1744 }
1745 if (!exists) {
03f64569 1746 if (!CreateDirectory(destfname, NULL)) {
1747 run_err("%s: Cannot create directory", destfname);
c51a56e2 1748 continue;
1749 }
1750 }
03f64569 1751 sink(destfname, NULL);
c51a56e2 1752 /* can we set the timestamp for directories ? */
1753 continue;
1754 }
07d9aa13 1755
03f64569 1756 f = CreateFile(destfname, GENERIC_WRITE, 0, NULL,
c51a56e2 1757 CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL, 0);
1758 if (f == INVALID_HANDLE_VALUE) {
03f64569 1759 run_err("%s: Cannot create file", destfname);
c51a56e2 1760 continue;
1761 }
07d9aa13 1762
120e4b40 1763 if (scp_accept_filexfer())
1764 return;
07d9aa13 1765
2d466ffd 1766 stat_bytes = 0;
1767 stat_starttime = time(NULL);
1768 stat_lasttime = 0;
4eb24e3a 1769 stat_name = stripslashes(destfname, 1);
07d9aa13 1770
120e4b40 1771 received = 0;
1772 while (received < act.size) {
c51a56e2 1773 char transbuf[4096];
120e4b40 1774 DWORD blksize, read, written;
1775 blksize = 4096;
1776 if (blksize > act.size - received)
1777 blksize = act.size - received;
1778 read = scp_recv_filedata(transbuf, blksize);
1779 if (read <= 0)
c51a56e2 1780 bump("Lost connection");
32874aea 1781 if (wrerror)
1782 continue;
120e4b40 1783 if (!WriteFile(f, transbuf, read, &written, NULL) ||
1784 written != read) {
c51a56e2 1785 wrerror = 1;
120e4b40 1786 /* FIXME: in sftp we can actually abort the transfer */
c51a56e2 1787 if (statistics)
1788 printf("\r%-25.25s | %50s\n",
1789 stat_name,
1790 "Write error.. waiting for end of file");
1791 continue;
1792 }
1793 if (statistics) {
120e4b40 1794 stat_bytes += read;
1795 if (time(NULL) > stat_lasttime ||
1796 received + read == act.size) {
c51a56e2 1797 stat_lasttime = time(NULL);
120e4b40 1798 print_stats(stat_name, act.size, stat_bytes,
c51a56e2 1799 stat_starttime, stat_lasttime);
07d9aa13 1800 }
c51a56e2 1801 }
120e4b40 1802 received += read;
c51a56e2 1803 }
120e4b40 1804 if (act.settime) {
c51a56e2 1805 FILETIME actime, wrtime;
120e4b40 1806 TIME_POSIX_TO_WIN(act.atime, actime);
1807 TIME_POSIX_TO_WIN(act.mtime, wrtime);
c51a56e2 1808 SetFileTime(f, NULL, &actime, &wrtime);
07d9aa13 1809 }
07d9aa13 1810
c51a56e2 1811 CloseHandle(f);
1812 if (wrerror) {
03f64569 1813 run_err("%s: Write error", destfname);
c51a56e2 1814 continue;
1815 }
120e4b40 1816 (void) scp_finish_filerecv();
03f64569 1817 sfree(destfname);
d4aa8594 1818 sfree(act.buf);
c51a56e2 1819 }
1820}
07d9aa13 1821
1822/*
120e4b40 1823 * We will copy local files to a remote server.
07d9aa13 1824 */
1825static void toremote(int argc, char *argv[])
1826{
c51a56e2 1827 char *src, *targ, *host, *user;
1828 char *cmd;
1829 int i;
1830
32874aea 1831 targ = argv[argc - 1];
c51a56e2 1832
39ddf0ff 1833 /* Separate host from filename */
c51a56e2 1834 host = targ;
1835 targ = colon(targ);
1836 if (targ == NULL)
1837 bump("targ == NULL in toremote()");
1838 *targ++ = '\0';
1839 if (*targ == '\0')
1840 targ = ".";
1841 /* Substitute "." for emtpy target */
1842
39ddf0ff 1843 /* Separate host and username */
c51a56e2 1844 user = host;
1845 host = strrchr(host, '@');
1846 if (host == NULL) {
1847 host = user;
1848 user = NULL;
1849 } else {
1850 *host++ = '\0';
1851 if (*user == '\0')
1852 user = NULL;
1853 }
1854
1855 if (argc == 2) {
1856 /* Find out if the source filespec covers multiple files
32874aea 1857 if so, we should set the targetshouldbedirectory flag */
c51a56e2 1858 HANDLE fh;
1859 WIN32_FIND_DATA fdat;
1860 if (colon(argv[0]) != NULL)
1861 bump("%s: Remote to remote not supported", argv[0]);
1862 fh = FindFirstFile(argv[0], &fdat);
1863 if (fh == INVALID_HANDLE_VALUE)
1864 bump("%s: No such file or directory\n", argv[0]);
1865 if (FindNextFile(fh, &fdat))
1866 targetshouldbedirectory = 1;
1867 FindClose(fh);
1868 }
1869
1870 cmd = smalloc(strlen(targ) + 100);
1871 sprintf(cmd, "scp%s%s%s%s -t %s",
1872 verbose ? " -v" : "",
1873 recursive ? " -r" : "",
1874 preserve ? " -p" : "",
32874aea 1875 targetshouldbedirectory ? " -d" : "", targ);
c51a56e2 1876 do_cmd(host, user, cmd);
1877 sfree(cmd);
1878
fd5e5847 1879 scp_source_setup(targ, targetshouldbedirectory);
c51a56e2 1880
1881 for (i = 0; i < argc - 1; i++) {
03f64569 1882 char *srcpath, *last;
c51a56e2 1883 HANDLE dir;
1884 WIN32_FIND_DATA fdat;
1885 src = argv[i];
1886 if (colon(src) != NULL) {
cc87246d 1887 tell_user(stderr, "%s: Remote to remote not supported\n", src);
c51a56e2 1888 errs++;
1889 continue;
07d9aa13 1890 }
03f64569 1891
1892 /*
1893 * Trim off the last pathname component of `src', to
1894 * provide the base pathname which will be prepended to
1895 * filenames returned from Find{First,Next}File.
1896 */
1897 srcpath = dupstr(src);
4eb24e3a 1898 last = stripslashes(srcpath, 1);
03f64569 1899 *last = '\0';
03f64569 1900
c51a56e2 1901 dir = FindFirstFile(src, &fdat);
1902 if (dir == INVALID_HANDLE_VALUE) {
1903 run_err("%s: No such file or directory", src);
1904 continue;
07d9aa13 1905 }
c51a56e2 1906 do {
03f64569 1907 char *filename;
7f266ffb 1908 /*
1909 * Ensure that . and .. are never matched by wildcards,
1910 * but only by deliberate action.
1911 */
1912 if (!strcmp(fdat.cFileName, ".") ||
1913 !strcmp(fdat.cFileName, "..")) {
1914 /*
1915 * Find*File has returned a special dir. We require
1916 * that _either_ `src' ends in a backslash followed
1917 * by that string, _or_ `src' is precisely that
1918 * string.
1919 */
1920 int len = strlen(src), dlen = strlen(fdat.cFileName);
1921 if (len == dlen && !strcmp(src, fdat.cFileName)) {
32874aea 1922 /* ok */ ;
1923 } else if (len > dlen + 1 && src[len - dlen - 1] == '\\' &&
1924 !strcmp(src + len - dlen, fdat.cFileName)) {
1925 /* ok */ ;
7f266ffb 1926 } else
1927 continue; /* ignore this one */
1928 }
03f64569 1929 filename = dupcat(srcpath, fdat.cFileName, NULL);
1930 source(filename);
1931 sfree(filename);
c51a56e2 1932 } while (FindNextFile(dir, &fdat));
1933 FindClose(dir);
03f64569 1934 sfree(srcpath);
c51a56e2 1935 }
07d9aa13 1936}
1937
07d9aa13 1938/*
1939 * We will copy files from a remote server to the local machine.
1940 */
1941static void tolocal(int argc, char *argv[])
1942{
c51a56e2 1943 char *src, *targ, *host, *user;
1944 char *cmd;
1945
1946 if (argc != 2)
1947 bump("More than one remote source not supported");
1948
1949 src = argv[0];
1950 targ = argv[1];
1951
39ddf0ff 1952 /* Separate host from filename */
c51a56e2 1953 host = src;
1954 src = colon(src);
1955 if (src == NULL)
1956 bump("Local to local copy not supported");
1957 *src++ = '\0';
1958 if (*src == '\0')
1959 src = ".";
1960 /* Substitute "." for empty filename */
1961
39ddf0ff 1962 /* Separate username and hostname */
c51a56e2 1963 user = host;
1964 host = strrchr(host, '@');
1965 if (host == NULL) {
1966 host = user;
1967 user = NULL;
1968 } else {
1969 *host++ = '\0';
1970 if (*user == '\0')
1971 user = NULL;
1972 }
1973
1974 cmd = smalloc(strlen(src) + 100);
1975 sprintf(cmd, "scp%s%s%s%s -f %s",
1976 verbose ? " -v" : "",
1977 recursive ? " -r" : "",
1978 preserve ? " -p" : "",
32874aea 1979 targetshouldbedirectory ? " -d" : "", src);
c51a56e2 1980 do_cmd(host, user, cmd);
1981 sfree(cmd);
1982
4eb24e3a 1983 if (scp_sink_setup(src, preserve, recursive))
1984 return;
fd5e5847 1985
ca2d5943 1986 sink(targ, src);
07d9aa13 1987}
1988
07d9aa13 1989/*
39ddf0ff 1990 * We will issue a list command to get a remote directory.
1991 */
1992static void get_dir_list(int argc, char *argv[])
1993{
1994 char *src, *host, *user;
1995 char *cmd, *p, *q;
1996 char c;
1997
1998 src = argv[0];
1999
2000 /* Separate host from filename */
2001 host = src;
2002 src = colon(src);
2003 if (src == NULL)
2004 bump("Local to local copy not supported");
2005 *src++ = '\0';
2006 if (*src == '\0')
2007 src = ".";
2008 /* Substitute "." for empty filename */
2009
2010 /* Separate username and hostname */
2011 user = host;
2012 host = strrchr(host, '@');
2013 if (host == NULL) {
2014 host = user;
2015 user = NULL;
2016 } else {
2017 *host++ = '\0';
2018 if (*user == '\0')
2019 user = NULL;
2020 }
2021
32874aea 2022 cmd = smalloc(4 * strlen(src) + 100);
39ddf0ff 2023 strcpy(cmd, "ls -la '");
2024 p = cmd + strlen(cmd);
2025 for (q = src; *q; q++) {
2026 if (*q == '\'') {
32874aea 2027 *p++ = '\'';
2028 *p++ = '\\';
2029 *p++ = '\'';
2030 *p++ = '\'';
39ddf0ff 2031 } else {
2032 *p++ = *q;
2033 }
2034 }
2035 *p++ = '\'';
2036 *p = '\0';
cc87246d 2037
39ddf0ff 2038 do_cmd(host, user, cmd);
2039 sfree(cmd);
2040
fd5e5847 2041 if (using_sftp) {
2042 scp_sftp_listdir(src);
2043 } else {
2044 while (ssh_scp_recv(&c, 1) > 0)
2045 tell_char(stdout, c);
2046 }
39ddf0ff 2047}
2048
2049/*
07d9aa13 2050 * Initialize the Win$ock driver.
2051 */
996c8c3b 2052static void init_winsock(void)
07d9aa13 2053{
c51a56e2 2054 WORD winsock_ver;
2055 WSADATA wsadata;
2056
2057 winsock_ver = MAKEWORD(1, 1);
2058 if (WSAStartup(winsock_ver, &wsadata))
2059 bump("Unable to initialise WinSock");
32874aea 2060 if (LOBYTE(wsadata.wVersion) != 1 || HIBYTE(wsadata.wVersion) != 1)
c51a56e2 2061 bump("WinSock version is incompatible with 1.1");
07d9aa13 2062}
2063
07d9aa13 2064/*
2065 * Short description of parameters.
2066 */
996c8c3b 2067static void usage(void)
07d9aa13 2068{
c51a56e2 2069 printf("PuTTY Secure Copy client\n");
2070 printf("%s\n", ver);
a3e55ea1 2071 printf("Usage: pscp [options] [user@]host:source target\n");
32874aea 2072 printf
2073 (" pscp [options] source [source...] [user@]host:target\n");
a3e55ea1 2074 printf(" pscp [options] -ls user@host:filespec\n");
b8a19193 2075 printf("Options:\n");
2076 printf(" -p preserve file attributes\n");
2077 printf(" -q quiet, don't show statistics\n");
2078 printf(" -r copy directories recursively\n");
2079 printf(" -v show verbose messages\n");
2080 printf(" -P port connect to specified port\n");
2081 printf(" -pw passw login with specified password\n");
cd1f39ab 2082 printf(" -unsafe allow server-side wildcards (DANGEROUS)\n");
ee8b0370 2083#if 0
2084 /*
2085 * -gui is an internal option, used by GUI front ends to get
2086 * pscp to pass progress reports back to them. It's not an
2087 * ordinary user-accessible option, so it shouldn't be part of
2088 * the command-line help. The only people who need to know
2089 * about it are programmers, and they can read the source.
2090 */
32874aea 2091 printf
2092 (" -gui hWnd GUI mode with the windows handle for receiving messages\n");
ee8b0370 2093#endif
93b581bd 2094 cleanup_exit(1);
07d9aa13 2095}
2096
07d9aa13 2097/*
2098 * Main program (no, really?)
2099 */
2100int main(int argc, char *argv[])
2101{
c51a56e2 2102 int i;
2103
fb09bf1c 2104 default_protocol = PROT_TELNET;
2105
67779be7 2106 flags = FLAG_STDERR;
ff2ae367 2107 ssh_get_line = &console_get_line;
c51a56e2 2108 init_winsock();
8df7a775 2109 sk_init();
c51a56e2 2110
2111 for (i = 1; i < argc; i++) {
2112 if (argv[i][0] != '-')
2113 break;
2114 if (strcmp(argv[i], "-v") == 0)
4017be6d 2115 verbose = 1, flags |= FLAG_VERBOSE;
c51a56e2 2116 else if (strcmp(argv[i], "-r") == 0)
2117 recursive = 1;
2118 else if (strcmp(argv[i], "-p") == 0)
2119 preserve = 1;
2120 else if (strcmp(argv[i], "-q") == 0)
2121 statistics = 0;
ff2ae367 2122 else if (strcmp(argv[i], "-batch") == 0)
2123 console_batch_mode = 1;
32874aea 2124 else if (strcmp(argv[i], "-h") == 0 || strcmp(argv[i], "-?") == 0)
c51a56e2 2125 usage();
32874aea 2126 else if (strcmp(argv[i], "-P") == 0 && i + 1 < argc)
b8a19193 2127 portnumber = atoi(argv[++i]);
32874aea 2128 else if (strcmp(argv[i], "-pw") == 0 && i + 1 < argc)
ff2ae367 2129 console_password = argv[++i];
32874aea 2130 else if (strcmp(argv[i], "-gui") == 0 && i + 1 < argc) {
cc87246d 2131 gui_hwnd = argv[++i];
2132 gui_mode = 1;
ff2ae367 2133 console_batch_mode = TRUE;
cc87246d 2134 } else if (strcmp(argv[i], "-ls") == 0)
32874aea 2135 list = 1;
cd1f39ab 2136 else if (strcmp(argv[i], "-unsafe") == 0)
2137 scp_unsafe_mode = 1;
32874aea 2138 else if (strcmp(argv[i], "--") == 0) {
2139 i++;
2140 break;
2141 } else
c51a56e2 2142 usage();
2143 }
2144 argc -= i;
2145 argv += i;
eba78553 2146 back = NULL;
c51a56e2 2147
39ddf0ff 2148 if (list) {
2149 if (argc != 1)
2150 usage();
2151 get_dir_list(argc, argv);
c51a56e2 2152
39ddf0ff 2153 } else {
2154
2155 if (argc < 2)
2156 usage();
2157 if (argc > 2)
2158 targetshouldbedirectory = 1;
2159
32874aea 2160 if (colon(argv[argc - 1]) != NULL)
39ddf0ff 2161 toremote(argc, argv);
2162 else
2163 tolocal(argc, argv);
2164 }
c51a56e2 2165
eba78553 2166 if (back != NULL && back->socket() != NULL) {
c51a56e2 2167 char ch;
3bdaf79d 2168 back->special(TS_EOF);
fb09bf1c 2169 ssh_scp_recv(&ch, 1);
c51a56e2 2170 }
2171 WSACleanup();
2172 random_save_seed();
07d9aa13 2173
cc87246d 2174 /* GUI Adaptation - August 2000 */
2175 if (gui_mode) {
2176 unsigned int msg_id = WM_RET_ERR_CNT;
32874aea 2177 if (list)
2178 msg_id = WM_LS_RET_ERR_CNT;
2179 while (!PostMessage
2180 ((HWND) atoi(gui_hwnd), msg_id, (WPARAM) errs,
2181 0 /*lParam */ ))SleepEx(1000, TRUE);
cc87246d 2182 }
c51a56e2 2183 return (errs == 0 ? 0 : 1);
07d9aa13 2184}
2185
2186/* end */