blob: 408b298401eb56cdcc32d59bcd02df1a6994110d [file] [log] [blame]
Damien Miller49566312010-06-26 09:38:23 +10001/* $OpenBSD: sftp-client.c,v 1.91 2010/06/18 04:43:08 djm Exp $ */
Damien Miller33804262001-02-04 23:20:18 +11002/*
Damien Miller4e60ed72004-02-17 17:07:59 +11003 * Copyright (c) 2001-2004 Damien Miller <djm@openbsd.org>
Damien Miller33804262001-02-04 23:20:18 +11004 *
Damien Miller4e60ed72004-02-17 17:07:59 +11005 * Permission to use, copy, modify, and distribute this software for any
6 * purpose with or without fee is hereby granted, provided that the above
7 * copyright notice and this permission notice appear in all copies.
Damien Miller33804262001-02-04 23:20:18 +11008 *
Damien Miller4e60ed72004-02-17 17:07:59 +11009 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
Damien Miller33804262001-02-04 23:20:18 +110016 */
17
18/* XXX: memleaks */
19/* XXX: signed vs unsigned */
Damien Miller3db5f532002-02-13 14:10:32 +110020/* XXX: remove all logging, only return status codes */
Damien Miller33804262001-02-04 23:20:18 +110021/* XXX: copy between two remote sites */
22
23#include "includes.h"
Damien Millerf17883e2006-03-15 11:45:54 +110024
25#include <sys/types.h>
Damien Miller8dbffe72006-08-05 11:02:17 +100026#include <sys/param.h>
Darren Tucker5b2e2ba2008-06-08 09:25:28 +100027#ifdef HAVE_SYS_STATVFS_H
Damien Millerd671e5a2008-05-19 14:53:33 +100028#include <sys/statvfs.h>
Darren Tucker5b2e2ba2008-06-08 09:25:28 +100029#endif
Damien Millerd7834352006-08-05 12:39:39 +100030#include "openbsd-compat/sys-queue.h"
Damien Millerf17883e2006-03-15 11:45:54 +110031#ifdef HAVE_SYS_STAT_H
32# include <sys/stat.h>
33#endif
Damien Miller9aec9192006-08-05 10:57:45 +100034#ifdef HAVE_SYS_TIME_H
35# include <sys/time.h>
36#endif
Damien Millerd7834352006-08-05 12:39:39 +100037#include <sys/uio.h>
Damien Miller57cf6382006-07-10 21:13:46 +100038
Darren Tucker1b0dd172009-10-07 08:37:48 +110039#include <dirent.h>
Darren Tucker39972492006-07-12 22:22:46 +100040#include <errno.h>
Damien Miller57cf6382006-07-10 21:13:46 +100041#include <fcntl.h>
42#include <signal.h>
Damien Millerd7834352006-08-05 12:39:39 +100043#include <stdarg.h>
Damien Millera7a73ee2006-08-05 11:37:59 +100044#include <stdio.h>
Damien Millere3476ed2006-07-24 14:13:33 +100045#include <string.h>
Damien Millere6b3b612006-07-24 14:01:23 +100046#include <unistd.h>
Damien Miller16a13332002-02-13 14:03:56 +110047
Damien Miller33804262001-02-04 23:20:18 +110048#include "xmalloc.h"
Damien Millerd7834352006-08-05 12:39:39 +100049#include "buffer.h"
Damien Miller33804262001-02-04 23:20:18 +110050#include "log.h"
51#include "atomicio.h"
Damien Miller62d57f62003-01-10 21:43:24 +110052#include "progressmeter.h"
Damien Miller3f941882006-03-31 23:13:02 +110053#include "misc.h"
Damien Miller33804262001-02-04 23:20:18 +110054
55#include "sftp.h"
56#include "sftp-common.h"
57#include "sftp-client.h"
58
Darren Tuckercdf547a2004-05-24 10:12:19 +100059extern volatile sig_atomic_t interrupted;
Damien Miller62d57f62003-01-10 21:43:24 +110060extern int showprogress;
61
Damien Miller0c8d8f62006-03-15 11:34:25 +110062/* Minimum amount of data to read at a time */
Damien Miller16a13332002-02-13 14:03:56 +110063#define MIN_READ_SIZE 512
64
Darren Tucker1b0dd172009-10-07 08:37:48 +110065/* Maximum depth to descend in directory trees */
66#define MAX_DIR_DEPTH 64
67
Damien Miller3db5f532002-02-13 14:10:32 +110068struct sftp_conn {
69 int fd_in;
70 int fd_out;
71 u_int transfer_buflen;
72 u_int num_requests;
73 u_int version;
74 u_int msg_id;
Damien Millerd671e5a2008-05-19 14:53:33 +100075#define SFTP_EXT_POSIX_RENAME 0x00000001
76#define SFTP_EXT_STATVFS 0x00000002
77#define SFTP_EXT_FSTATVFS 0x00000004
Damien Miller7a3e1d02008-03-27 10:59:57 +110078 u_int exts;
Damien Miller3db5f532002-02-13 14:10:32 +110079};
Ben Lindstrom288cc392001-02-09 02:58:04 +000080
Darren Tuckerc22f0902009-10-07 08:24:19 +110081static char *
82get_handle(int fd, u_int expected_id, u_int *len, const char *errfmt, ...)
83 __attribute__((format(printf, 4, 5)));
84
Ben Lindstrombba81212001-06-25 05:01:22 +000085static void
Damien Miller33804262001-02-04 23:20:18 +110086send_msg(int fd, Buffer *m)
87{
Damien Millera7f3aaa2003-01-10 21:43:58 +110088 u_char mlen[4];
Damien Miller58ca98b2006-04-23 12:06:35 +100089 struct iovec iov[2];
Damien Miller33804262001-02-04 23:20:18 +110090
Damien Miller54446182006-01-02 23:40:50 +110091 if (buffer_len(m) > SFTP_MAX_MSG_LENGTH)
Damien Millera7f3aaa2003-01-10 21:43:58 +110092 fatal("Outbound message too long %u", buffer_len(m));
Damien Miller33804262001-02-04 23:20:18 +110093
Damien Millera7f3aaa2003-01-10 21:43:58 +110094 /* Send length first */
Damien Miller3f941882006-03-31 23:13:02 +110095 put_u32(mlen, buffer_len(m));
Damien Miller58ca98b2006-04-23 12:06:35 +100096 iov[0].iov_base = mlen;
97 iov[0].iov_len = sizeof(mlen);
98 iov[1].iov_base = buffer_ptr(m);
99 iov[1].iov_len = buffer_len(m);
Damien Millerd7834352006-08-05 12:39:39 +1000100
Damien Miller58ca98b2006-04-23 12:06:35 +1000101 if (atomiciov(writev, fd, iov, 2) != buffer_len(m) + sizeof(mlen))
Damien Millera7f3aaa2003-01-10 21:43:58 +1100102 fatal("Couldn't send packet: %s", strerror(errno));
103
104 buffer_clear(m);
Damien Miller33804262001-02-04 23:20:18 +1100105}
106
Ben Lindstrombba81212001-06-25 05:01:22 +0000107static void
Damien Miller33804262001-02-04 23:20:18 +1100108get_msg(int fd, Buffer *m)
109{
Damien Millera7f3aaa2003-01-10 21:43:58 +1100110 u_int msg_len;
Damien Miller33804262001-02-04 23:20:18 +1100111
Damien Millera7f3aaa2003-01-10 21:43:58 +1100112 buffer_append_space(m, 4);
Damien Millerb253cc42005-05-26 12:23:44 +1000113 if (atomicio(read, fd, buffer_ptr(m), 4) != 4) {
114 if (errno == EPIPE)
115 fatal("Connection closed");
116 else
117 fatal("Couldn't read packet: %s", strerror(errno));
118 }
Damien Miller33804262001-02-04 23:20:18 +1100119
Damien Millera7f3aaa2003-01-10 21:43:58 +1100120 msg_len = buffer_get_int(m);
Damien Miller54446182006-01-02 23:40:50 +1100121 if (msg_len > SFTP_MAX_MSG_LENGTH)
Ben Lindstromb1f483f2002-06-23 21:27:18 +0000122 fatal("Received message too long %u", msg_len);
Damien Miller33804262001-02-04 23:20:18 +1100123
Damien Millera7f3aaa2003-01-10 21:43:58 +1100124 buffer_append_space(m, msg_len);
Damien Millerb253cc42005-05-26 12:23:44 +1000125 if (atomicio(read, fd, buffer_ptr(m), msg_len) != msg_len) {
126 if (errno == EPIPE)
127 fatal("Connection closed");
128 else
129 fatal("Read packet: %s", strerror(errno));
130 }
Damien Miller33804262001-02-04 23:20:18 +1100131}
132
Ben Lindstrombba81212001-06-25 05:01:22 +0000133static void
Damien Miller33804262001-02-04 23:20:18 +1100134send_string_request(int fd, u_int id, u_int code, char *s,
135 u_int len)
136{
137 Buffer msg;
138
139 buffer_init(&msg);
140 buffer_put_char(&msg, code);
141 buffer_put_int(&msg, id);
142 buffer_put_string(&msg, s, len);
143 send_msg(fd, &msg);
Ben Lindstromb1f483f2002-06-23 21:27:18 +0000144 debug3("Sent message fd %d T:%u I:%u", fd, code, id);
Damien Miller33804262001-02-04 23:20:18 +1100145 buffer_free(&msg);
146}
147
Ben Lindstrombba81212001-06-25 05:01:22 +0000148static void
Damien Miller33804262001-02-04 23:20:18 +1100149send_string_attrs_request(int fd, u_int id, u_int code, char *s,
150 u_int len, Attrib *a)
151{
152 Buffer msg;
153
154 buffer_init(&msg);
155 buffer_put_char(&msg, code);
156 buffer_put_int(&msg, id);
157 buffer_put_string(&msg, s, len);
158 encode_attrib(&msg, a);
159 send_msg(fd, &msg);
Ben Lindstromb1f483f2002-06-23 21:27:18 +0000160 debug3("Sent message fd %d T:%u I:%u", fd, code, id);
Damien Miller33804262001-02-04 23:20:18 +1100161 buffer_free(&msg);
162}
163
Ben Lindstrombba81212001-06-25 05:01:22 +0000164static u_int
Ben Lindstromb1f483f2002-06-23 21:27:18 +0000165get_status(int fd, u_int expected_id)
Damien Miller33804262001-02-04 23:20:18 +1100166{
167 Buffer msg;
168 u_int type, id, status;
169
170 buffer_init(&msg);
171 get_msg(fd, &msg);
172 type = buffer_get_char(&msg);
173 id = buffer_get_int(&msg);
174
175 if (id != expected_id)
Ben Lindstromb1f483f2002-06-23 21:27:18 +0000176 fatal("ID mismatch (%u != %u)", id, expected_id);
Damien Miller33804262001-02-04 23:20:18 +1100177 if (type != SSH2_FXP_STATUS)
Ben Lindstromb1f483f2002-06-23 21:27:18 +0000178 fatal("Expected SSH2_FXP_STATUS(%u) packet, got %u",
Damien Miller33804262001-02-04 23:20:18 +1100179 SSH2_FXP_STATUS, type);
180
181 status = buffer_get_int(&msg);
182 buffer_free(&msg);
183
Ben Lindstromb1f483f2002-06-23 21:27:18 +0000184 debug3("SSH2_FXP_STATUS %u", status);
Damien Miller33804262001-02-04 23:20:18 +1100185
186 return(status);
187}
188
Ben Lindstrombba81212001-06-25 05:01:22 +0000189static char *
Darren Tuckerc22f0902009-10-07 08:24:19 +1100190get_handle(int fd, u_int expected_id, u_int *len, const char *errfmt, ...)
Damien Miller33804262001-02-04 23:20:18 +1100191{
192 Buffer msg;
193 u_int type, id;
Darren Tuckerc22f0902009-10-07 08:24:19 +1100194 char *handle, errmsg[256];
195 va_list args;
196 int status;
197
198 va_start(args, errfmt);
199 if (errfmt != NULL)
200 vsnprintf(errmsg, sizeof(errmsg), errfmt, args);
201 va_end(args);
Damien Miller33804262001-02-04 23:20:18 +1100202
203 buffer_init(&msg);
204 get_msg(fd, &msg);
205 type = buffer_get_char(&msg);
206 id = buffer_get_int(&msg);
207
208 if (id != expected_id)
Darren Tuckerc22f0902009-10-07 08:24:19 +1100209 fatal("%s: ID mismatch (%u != %u)",
210 errfmt == NULL ? __func__ : errmsg, id, expected_id);
Damien Miller33804262001-02-04 23:20:18 +1100211 if (type == SSH2_FXP_STATUS) {
Darren Tuckerc22f0902009-10-07 08:24:19 +1100212 status = buffer_get_int(&msg);
213 if (errfmt != NULL)
214 error("%s: %s", errmsg, fx2txt(status));
Darren Tuckercd516ef2004-12-06 22:43:43 +1100215 buffer_free(&msg);
Damien Miller33804262001-02-04 23:20:18 +1100216 return(NULL);
217 } else if (type != SSH2_FXP_HANDLE)
Darren Tuckerc22f0902009-10-07 08:24:19 +1100218 fatal("%s: Expected SSH2_FXP_HANDLE(%u) packet, got %u",
219 errfmt == NULL ? __func__ : errmsg, SSH2_FXP_HANDLE, type);
Damien Miller33804262001-02-04 23:20:18 +1100220
221 handle = buffer_get_string(&msg, len);
222 buffer_free(&msg);
223
224 return(handle);
225}
226
Ben Lindstrombba81212001-06-25 05:01:22 +0000227static Attrib *
Ben Lindstromc8d1c302001-03-17 00:34:46 +0000228get_decode_stat(int fd, u_int expected_id, int quiet)
Damien Miller33804262001-02-04 23:20:18 +1100229{
230 Buffer msg;
231 u_int type, id;
232 Attrib *a;
233
234 buffer_init(&msg);
235 get_msg(fd, &msg);
236
237 type = buffer_get_char(&msg);
238 id = buffer_get_int(&msg);
239
Ben Lindstromb1f483f2002-06-23 21:27:18 +0000240 debug3("Received stat reply T:%u I:%u", type, id);
Damien Miller33804262001-02-04 23:20:18 +1100241 if (id != expected_id)
Ben Lindstromb1f483f2002-06-23 21:27:18 +0000242 fatal("ID mismatch (%u != %u)", id, expected_id);
Damien Miller33804262001-02-04 23:20:18 +1100243 if (type == SSH2_FXP_STATUS) {
244 int status = buffer_get_int(&msg);
245
Ben Lindstromc8d1c302001-03-17 00:34:46 +0000246 if (quiet)
247 debug("Couldn't stat remote file: %s", fx2txt(status));
248 else
249 error("Couldn't stat remote file: %s", fx2txt(status));
Darren Tuckercd516ef2004-12-06 22:43:43 +1100250 buffer_free(&msg);
Damien Miller33804262001-02-04 23:20:18 +1100251 return(NULL);
252 } else if (type != SSH2_FXP_ATTRS) {
Ben Lindstromb1f483f2002-06-23 21:27:18 +0000253 fatal("Expected SSH2_FXP_ATTRS(%u) packet, got %u",
Damien Miller33804262001-02-04 23:20:18 +1100254 SSH2_FXP_ATTRS, type);
255 }
256 a = decode_attrib(&msg);
257 buffer_free(&msg);
258
259 return(a);
260}
261
Damien Millerd671e5a2008-05-19 14:53:33 +1000262static int
Darren Tucker7b598892008-06-09 22:49:36 +1000263get_decode_statvfs(int fd, struct sftp_statvfs *st, u_int expected_id,
264 int quiet)
Damien Millerd671e5a2008-05-19 14:53:33 +1000265{
266 Buffer msg;
267 u_int type, id, flag;
268
269 buffer_init(&msg);
270 get_msg(fd, &msg);
271
272 type = buffer_get_char(&msg);
273 id = buffer_get_int(&msg);
274
275 debug3("Received statvfs reply T:%u I:%u", type, id);
276 if (id != expected_id)
277 fatal("ID mismatch (%u != %u)", id, expected_id);
278 if (type == SSH2_FXP_STATUS) {
279 int status = buffer_get_int(&msg);
280
281 if (quiet)
282 debug("Couldn't statvfs: %s", fx2txt(status));
283 else
284 error("Couldn't statvfs: %s", fx2txt(status));
285 buffer_free(&msg);
286 return -1;
287 } else if (type != SSH2_FXP_EXTENDED_REPLY) {
288 fatal("Expected SSH2_FXP_EXTENDED_REPLY(%u) packet, got %u",
289 SSH2_FXP_EXTENDED_REPLY, type);
290 }
291
292 bzero(st, sizeof(*st));
Darren Tucker7b598892008-06-09 22:49:36 +1000293 st->f_bsize = buffer_get_int64(&msg);
294 st->f_frsize = buffer_get_int64(&msg);
Damien Millerd671e5a2008-05-19 14:53:33 +1000295 st->f_blocks = buffer_get_int64(&msg);
296 st->f_bfree = buffer_get_int64(&msg);
297 st->f_bavail = buffer_get_int64(&msg);
298 st->f_files = buffer_get_int64(&msg);
299 st->f_ffree = buffer_get_int64(&msg);
300 st->f_favail = buffer_get_int64(&msg);
Darren Tucker294b8412008-06-08 12:57:08 +1000301 st->f_fsid = buffer_get_int64(&msg);
Darren Tucker7b598892008-06-09 22:49:36 +1000302 flag = buffer_get_int64(&msg);
303 st->f_namemax = buffer_get_int64(&msg);
Damien Millerd671e5a2008-05-19 14:53:33 +1000304
305 st->f_flag = (flag & SSH2_FXE_STATVFS_ST_RDONLY) ? ST_RDONLY : 0;
306 st->f_flag |= (flag & SSH2_FXE_STATVFS_ST_NOSUID) ? ST_NOSUID : 0;
307
308 buffer_free(&msg);
309
310 return 0;
311}
312
Damien Miller3db5f532002-02-13 14:10:32 +1100313struct sftp_conn *
314do_init(int fd_in, int fd_out, u_int transfer_buflen, u_int num_requests)
Damien Miller33804262001-02-04 23:20:18 +1100315{
Damien Miller7a3e1d02008-03-27 10:59:57 +1100316 u_int type, exts = 0;
Ben Lindstromb1f483f2002-06-23 21:27:18 +0000317 int version;
Damien Miller33804262001-02-04 23:20:18 +1100318 Buffer msg;
Damien Miller3db5f532002-02-13 14:10:32 +1100319 struct sftp_conn *ret;
Damien Miller33804262001-02-04 23:20:18 +1100320
321 buffer_init(&msg);
322 buffer_put_char(&msg, SSH2_FXP_INIT);
323 buffer_put_int(&msg, SSH2_FILEXFER_VERSION);
324 send_msg(fd_out, &msg);
325
326 buffer_clear(&msg);
327
328 get_msg(fd_in, &msg);
329
Kevin Stevesef4eea92001-02-05 12:42:17 +0000330 /* Expecting a VERSION reply */
Damien Miller33804262001-02-04 23:20:18 +1100331 if ((type = buffer_get_char(&msg)) != SSH2_FXP_VERSION) {
Ben Lindstromb1f483f2002-06-23 21:27:18 +0000332 error("Invalid packet back from SSH2_FXP_INIT (type %u)",
Damien Miller33804262001-02-04 23:20:18 +1100333 type);
334 buffer_free(&msg);
Damien Miller3db5f532002-02-13 14:10:32 +1100335 return(NULL);
Damien Miller33804262001-02-04 23:20:18 +1100336 }
337 version = buffer_get_int(&msg);
338
339 debug2("Remote version: %d", version);
340
341 /* Check for extensions */
342 while (buffer_len(&msg) > 0) {
343 char *name = buffer_get_string(&msg, NULL);
344 char *value = buffer_get_string(&msg, NULL);
Darren Tuckera64ab332008-06-13 07:01:29 +1000345 int known = 0;
Damien Miller33804262001-02-04 23:20:18 +1100346
Damien Millerd671e5a2008-05-19 14:53:33 +1000347 if (strcmp(name, "posix-rename@openssh.com") == 0 &&
Darren Tuckera64ab332008-06-13 07:01:29 +1000348 strcmp(value, "1") == 0) {
Damien Miller7a3e1d02008-03-27 10:59:57 +1100349 exts |= SFTP_EXT_POSIX_RENAME;
Darren Tuckera64ab332008-06-13 07:01:29 +1000350 known = 1;
351 } else if (strcmp(name, "statvfs@openssh.com") == 0 &&
352 strcmp(value, "2") == 0) {
Damien Millerd671e5a2008-05-19 14:53:33 +1000353 exts |= SFTP_EXT_STATVFS;
Darren Tuckera64ab332008-06-13 07:01:29 +1000354 known = 1;
355 } if (strcmp(name, "fstatvfs@openssh.com") == 0 &&
356 strcmp(value, "2") == 0) {
Damien Millerd671e5a2008-05-19 14:53:33 +1000357 exts |= SFTP_EXT_FSTATVFS;
Darren Tuckera64ab332008-06-13 07:01:29 +1000358 known = 1;
359 }
360 if (known) {
361 debug2("Server supports extension \"%s\" revision %s",
362 name, value);
363 } else {
364 debug2("Unrecognised server extension \"%s\"", name);
365 }
Damien Miller33804262001-02-04 23:20:18 +1100366 xfree(name);
367 xfree(value);
368 }
369
370 buffer_free(&msg);
Damien Miller058316f2001-03-08 10:08:49 +1100371
Damien Miller3db5f532002-02-13 14:10:32 +1100372 ret = xmalloc(sizeof(*ret));
373 ret->fd_in = fd_in;
374 ret->fd_out = fd_out;
375 ret->transfer_buflen = transfer_buflen;
376 ret->num_requests = num_requests;
377 ret->version = version;
378 ret->msg_id = 1;
Damien Miller7a3e1d02008-03-27 10:59:57 +1100379 ret->exts = exts;
Damien Miller3db5f532002-02-13 14:10:32 +1100380
381 /* Some filexfer v.0 servers don't support large packets */
382 if (version == 0)
Ben Lindstroma1d81142002-04-02 20:58:11 +0000383 ret->transfer_buflen = MIN(ret->transfer_buflen, 20480);
Damien Miller3db5f532002-02-13 14:10:32 +1100384
385 return(ret);
386}
387
388u_int
389sftp_proto_version(struct sftp_conn *conn)
390{
391 return(conn->version);
Damien Miller33804262001-02-04 23:20:18 +1100392}
393
394int
Damien Miller3db5f532002-02-13 14:10:32 +1100395do_close(struct sftp_conn *conn, char *handle, u_int handle_len)
Damien Miller33804262001-02-04 23:20:18 +1100396{
397 u_int id, status;
398 Buffer msg;
399
400 buffer_init(&msg);
401
Damien Miller3db5f532002-02-13 14:10:32 +1100402 id = conn->msg_id++;
Damien Miller33804262001-02-04 23:20:18 +1100403 buffer_put_char(&msg, SSH2_FXP_CLOSE);
404 buffer_put_int(&msg, id);
405 buffer_put_string(&msg, handle, handle_len);
Damien Miller3db5f532002-02-13 14:10:32 +1100406 send_msg(conn->fd_out, &msg);
Ben Lindstromb1f483f2002-06-23 21:27:18 +0000407 debug3("Sent message SSH2_FXP_CLOSE I:%u", id);
Damien Miller33804262001-02-04 23:20:18 +1100408
Damien Miller3db5f532002-02-13 14:10:32 +1100409 status = get_status(conn->fd_in, id);
Damien Miller33804262001-02-04 23:20:18 +1100410 if (status != SSH2_FX_OK)
411 error("Couldn't close file: %s", fx2txt(status));
412
413 buffer_free(&msg);
414
415 return(status);
416}
417
Damien Miller4870afd2001-03-14 10:27:09 +1100418
Ben Lindstrombba81212001-06-25 05:01:22 +0000419static int
Damien Miller3db5f532002-02-13 14:10:32 +1100420do_lsreaddir(struct sftp_conn *conn, char *path, int printflag,
Damien Miller4870afd2001-03-14 10:27:09 +1100421 SFTP_DIRENT ***dir)
Damien Miller33804262001-02-04 23:20:18 +1100422{
423 Buffer msg;
Damien Millereccb9de2005-06-17 12:59:34 +1000424 u_int count, type, id, handle_len, i, expected_id, ents = 0;
Damien Miller33804262001-02-04 23:20:18 +1100425 char *handle;
426
Damien Miller3db5f532002-02-13 14:10:32 +1100427 id = conn->msg_id++;
Damien Miller33804262001-02-04 23:20:18 +1100428
429 buffer_init(&msg);
430 buffer_put_char(&msg, SSH2_FXP_OPENDIR);
431 buffer_put_int(&msg, id);
432 buffer_put_cstring(&msg, path);
Damien Miller3db5f532002-02-13 14:10:32 +1100433 send_msg(conn->fd_out, &msg);
Damien Miller33804262001-02-04 23:20:18 +1100434
435 buffer_clear(&msg);
436
Darren Tuckerc22f0902009-10-07 08:24:19 +1100437 handle = get_handle(conn->fd_in, id, &handle_len,
438 "remote readdir(\"%s\")", path);
Damien Miller33804262001-02-04 23:20:18 +1100439 if (handle == NULL)
440 return(-1);
441
Damien Miller4870afd2001-03-14 10:27:09 +1100442 if (dir) {
443 ents = 0;
444 *dir = xmalloc(sizeof(**dir));
445 (*dir)[0] = NULL;
446 }
Damien Miller4870afd2001-03-14 10:27:09 +1100447
Darren Tuckercdf547a2004-05-24 10:12:19 +1000448 for (; !interrupted;) {
Damien Miller3db5f532002-02-13 14:10:32 +1100449 id = expected_id = conn->msg_id++;
Damien Miller33804262001-02-04 23:20:18 +1100450
Ben Lindstromb1f483f2002-06-23 21:27:18 +0000451 debug3("Sending SSH2_FXP_READDIR I:%u", id);
Damien Miller33804262001-02-04 23:20:18 +1100452
453 buffer_clear(&msg);
454 buffer_put_char(&msg, SSH2_FXP_READDIR);
455 buffer_put_int(&msg, id);
456 buffer_put_string(&msg, handle, handle_len);
Damien Miller3db5f532002-02-13 14:10:32 +1100457 send_msg(conn->fd_out, &msg);
Damien Miller33804262001-02-04 23:20:18 +1100458
459 buffer_clear(&msg);
460
Damien Miller3db5f532002-02-13 14:10:32 +1100461 get_msg(conn->fd_in, &msg);
Damien Miller33804262001-02-04 23:20:18 +1100462
463 type = buffer_get_char(&msg);
464 id = buffer_get_int(&msg);
465
Ben Lindstromb1f483f2002-06-23 21:27:18 +0000466 debug3("Received reply T:%u I:%u", type, id);
Damien Miller33804262001-02-04 23:20:18 +1100467
468 if (id != expected_id)
Ben Lindstromb1f483f2002-06-23 21:27:18 +0000469 fatal("ID mismatch (%u != %u)", id, expected_id);
Damien Miller33804262001-02-04 23:20:18 +1100470
471 if (type == SSH2_FXP_STATUS) {
472 int status = buffer_get_int(&msg);
473
474 debug3("Received SSH2_FXP_STATUS %d", status);
475
476 if (status == SSH2_FX_EOF) {
477 break;
478 } else {
479 error("Couldn't read directory: %s",
480 fx2txt(status));
Damien Miller3db5f532002-02-13 14:10:32 +1100481 do_close(conn, handle, handle_len);
Damien Miller00111382003-03-10 11:21:17 +1100482 xfree(handle);
Ben Lindstrom10ac33f2001-02-10 21:53:40 +0000483 return(status);
Damien Miller33804262001-02-04 23:20:18 +1100484 }
485 } else if (type != SSH2_FXP_NAME)
Ben Lindstromb1f483f2002-06-23 21:27:18 +0000486 fatal("Expected SSH2_FXP_NAME(%u) packet, got %u",
Damien Miller33804262001-02-04 23:20:18 +1100487 SSH2_FXP_NAME, type);
488
489 count = buffer_get_int(&msg);
Damien Millerd7686fd2001-02-10 00:40:03 +1100490 if (count == 0)
491 break;
492 debug3("Received %d SSH2_FXP_NAME responses", count);
Damien Miller9f0f5c62001-12-21 14:45:46 +1100493 for (i = 0; i < count; i++) {
Damien Miller33804262001-02-04 23:20:18 +1100494 char *filename, *longname;
495 Attrib *a;
496
497 filename = buffer_get_string(&msg, NULL);
498 longname = buffer_get_string(&msg, NULL);
499 a = decode_attrib(&msg);
500
Damien Miller4870afd2001-03-14 10:27:09 +1100501 if (printflag)
502 printf("%s\n", longname);
503
Darren Tucker1b0dd172009-10-07 08:37:48 +1100504 /*
505 * Directory entries should never contain '/'
506 * These can be used to attack recursive ops
507 * (e.g. send '../../../../etc/passwd')
508 */
509 if (strchr(filename, '/') != NULL) {
510 error("Server sent suspect path \"%s\" "
511 "during readdir of \"%s\"", filename, path);
512 goto next;
513 }
514
Damien Miller4870afd2001-03-14 10:27:09 +1100515 if (dir) {
Damien Miller36812092006-03-26 14:22:47 +1100516 *dir = xrealloc(*dir, ents + 2, sizeof(**dir));
Damien Miller4870afd2001-03-14 10:27:09 +1100517 (*dir)[ents] = xmalloc(sizeof(***dir));
518 (*dir)[ents]->filename = xstrdup(filename);
519 (*dir)[ents]->longname = xstrdup(longname);
520 memcpy(&(*dir)[ents]->a, a, sizeof(*a));
521 (*dir)[++ents] = NULL;
522 }
Darren Tucker1b0dd172009-10-07 08:37:48 +1100523 next:
Damien Miller33804262001-02-04 23:20:18 +1100524 xfree(filename);
525 xfree(longname);
526 }
527 }
528
529 buffer_free(&msg);
Damien Miller3db5f532002-02-13 14:10:32 +1100530 do_close(conn, handle, handle_len);
Damien Miller33804262001-02-04 23:20:18 +1100531 xfree(handle);
532
Darren Tuckercdf547a2004-05-24 10:12:19 +1000533 /* Don't return partial matches on interrupt */
534 if (interrupted && dir != NULL && *dir != NULL) {
535 free_sftp_dirents(*dir);
536 *dir = xmalloc(sizeof(**dir));
537 **dir = NULL;
538 }
539
Damien Miller33804262001-02-04 23:20:18 +1100540 return(0);
541}
542
543int
Damien Miller3db5f532002-02-13 14:10:32 +1100544do_readdir(struct sftp_conn *conn, char *path, SFTP_DIRENT ***dir)
Damien Miller4870afd2001-03-14 10:27:09 +1100545{
Damien Miller3db5f532002-02-13 14:10:32 +1100546 return(do_lsreaddir(conn, path, 0, dir));
Damien Miller4870afd2001-03-14 10:27:09 +1100547}
548
549void free_sftp_dirents(SFTP_DIRENT **s)
550{
551 int i;
Damien Miller9f0f5c62001-12-21 14:45:46 +1100552
553 for (i = 0; s[i]; i++) {
Damien Miller4870afd2001-03-14 10:27:09 +1100554 xfree(s[i]->filename);
555 xfree(s[i]->longname);
556 xfree(s[i]);
557 }
558 xfree(s);
559}
560
561int
Damien Miller3db5f532002-02-13 14:10:32 +1100562do_rm(struct sftp_conn *conn, char *path)
Damien Miller33804262001-02-04 23:20:18 +1100563{
564 u_int status, id;
565
566 debug2("Sending SSH2_FXP_REMOVE \"%s\"", path);
567
Damien Miller3db5f532002-02-13 14:10:32 +1100568 id = conn->msg_id++;
Ben Lindstrom6328ab32002-03-22 02:54:23 +0000569 send_string_request(conn->fd_out, id, SSH2_FXP_REMOVE, path,
Damien Miller3db5f532002-02-13 14:10:32 +1100570 strlen(path));
571 status = get_status(conn->fd_in, id);
Damien Miller33804262001-02-04 23:20:18 +1100572 if (status != SSH2_FX_OK)
573 error("Couldn't delete file: %s", fx2txt(status));
574 return(status);
575}
576
577int
Darren Tucker1b0dd172009-10-07 08:37:48 +1100578do_mkdir(struct sftp_conn *conn, char *path, Attrib *a, int printflag)
Damien Miller33804262001-02-04 23:20:18 +1100579{
580 u_int status, id;
581
Damien Miller3db5f532002-02-13 14:10:32 +1100582 id = conn->msg_id++;
583 send_string_attrs_request(conn->fd_out, id, SSH2_FXP_MKDIR, path,
Damien Miller33804262001-02-04 23:20:18 +1100584 strlen(path), a);
585
Damien Miller3db5f532002-02-13 14:10:32 +1100586 status = get_status(conn->fd_in, id);
Darren Tucker1b0dd172009-10-07 08:37:48 +1100587 if (status != SSH2_FX_OK && printflag)
Damien Miller33804262001-02-04 23:20:18 +1100588 error("Couldn't create directory: %s", fx2txt(status));
589
590 return(status);
591}
592
593int
Damien Miller3db5f532002-02-13 14:10:32 +1100594do_rmdir(struct sftp_conn *conn, char *path)
Damien Miller33804262001-02-04 23:20:18 +1100595{
596 u_int status, id;
597
Damien Miller3db5f532002-02-13 14:10:32 +1100598 id = conn->msg_id++;
599 send_string_request(conn->fd_out, id, SSH2_FXP_RMDIR, path,
600 strlen(path));
Damien Miller33804262001-02-04 23:20:18 +1100601
Damien Miller3db5f532002-02-13 14:10:32 +1100602 status = get_status(conn->fd_in, id);
Damien Miller33804262001-02-04 23:20:18 +1100603 if (status != SSH2_FX_OK)
604 error("Couldn't remove directory: %s", fx2txt(status));
605
606 return(status);
607}
608
609Attrib *
Damien Miller3db5f532002-02-13 14:10:32 +1100610do_stat(struct sftp_conn *conn, char *path, int quiet)
Damien Miller33804262001-02-04 23:20:18 +1100611{
612 u_int id;
613
Damien Miller3db5f532002-02-13 14:10:32 +1100614 id = conn->msg_id++;
615
Ben Lindstrom6328ab32002-03-22 02:54:23 +0000616 send_string_request(conn->fd_out, id,
617 conn->version == 0 ? SSH2_FXP_STAT_VERSION_0 : SSH2_FXP_STAT,
Damien Miller3db5f532002-02-13 14:10:32 +1100618 path, strlen(path));
619
620 return(get_decode_stat(conn->fd_in, id, quiet));
Damien Miller33804262001-02-04 23:20:18 +1100621}
622
623Attrib *
Damien Miller3db5f532002-02-13 14:10:32 +1100624do_lstat(struct sftp_conn *conn, char *path, int quiet)
Damien Miller33804262001-02-04 23:20:18 +1100625{
626 u_int id;
627
Damien Miller3db5f532002-02-13 14:10:32 +1100628 if (conn->version == 0) {
629 if (quiet)
630 debug("Server version does not support lstat operation");
631 else
Damien Miller996acd22003-04-09 20:59:48 +1000632 logit("Server version does not support lstat operation");
Ben Lindstromf26ff5b2002-04-02 21:00:31 +0000633 return(do_stat(conn, path, quiet));
Damien Miller3db5f532002-02-13 14:10:32 +1100634 }
635
636 id = conn->msg_id++;
637 send_string_request(conn->fd_out, id, SSH2_FXP_LSTAT, path,
638 strlen(path));
639
640 return(get_decode_stat(conn->fd_in, id, quiet));
Damien Miller33804262001-02-04 23:20:18 +1100641}
642
Damien Millercfe23d32008-02-10 22:20:44 +1100643#ifdef notyet
Damien Miller33804262001-02-04 23:20:18 +1100644Attrib *
Damien Miller3db5f532002-02-13 14:10:32 +1100645do_fstat(struct sftp_conn *conn, char *handle, u_int handle_len, int quiet)
Damien Miller33804262001-02-04 23:20:18 +1100646{
647 u_int id;
648
Damien Miller3db5f532002-02-13 14:10:32 +1100649 id = conn->msg_id++;
650 send_string_request(conn->fd_out, id, SSH2_FXP_FSTAT, handle,
651 handle_len);
652
653 return(get_decode_stat(conn->fd_in, id, quiet));
Damien Miller33804262001-02-04 23:20:18 +1100654}
Damien Millercfe23d32008-02-10 22:20:44 +1100655#endif
Damien Miller33804262001-02-04 23:20:18 +1100656
657int
Damien Miller3db5f532002-02-13 14:10:32 +1100658do_setstat(struct sftp_conn *conn, char *path, Attrib *a)
Damien Miller33804262001-02-04 23:20:18 +1100659{
660 u_int status, id;
661
Damien Miller3db5f532002-02-13 14:10:32 +1100662 id = conn->msg_id++;
663 send_string_attrs_request(conn->fd_out, id, SSH2_FXP_SETSTAT, path,
Damien Miller33804262001-02-04 23:20:18 +1100664 strlen(path), a);
665
Damien Miller3db5f532002-02-13 14:10:32 +1100666 status = get_status(conn->fd_in, id);
Damien Miller33804262001-02-04 23:20:18 +1100667 if (status != SSH2_FX_OK)
668 error("Couldn't setstat on \"%s\": %s", path,
669 fx2txt(status));
670
671 return(status);
672}
673
674int
Damien Miller3db5f532002-02-13 14:10:32 +1100675do_fsetstat(struct sftp_conn *conn, char *handle, u_int handle_len,
Damien Miller33804262001-02-04 23:20:18 +1100676 Attrib *a)
677{
678 u_int status, id;
679
Damien Miller3db5f532002-02-13 14:10:32 +1100680 id = conn->msg_id++;
681 send_string_attrs_request(conn->fd_out, id, SSH2_FXP_FSETSTAT, handle,
Damien Miller33804262001-02-04 23:20:18 +1100682 handle_len, a);
683
Damien Miller3db5f532002-02-13 14:10:32 +1100684 status = get_status(conn->fd_in, id);
Damien Miller33804262001-02-04 23:20:18 +1100685 if (status != SSH2_FX_OK)
686 error("Couldn't fsetstat: %s", fx2txt(status));
687
688 return(status);
689}
690
691char *
Damien Miller3db5f532002-02-13 14:10:32 +1100692do_realpath(struct sftp_conn *conn, char *path)
Damien Miller33804262001-02-04 23:20:18 +1100693{
694 Buffer msg;
695 u_int type, expected_id, count, id;
696 char *filename, *longname;
697 Attrib *a;
698
Damien Miller3db5f532002-02-13 14:10:32 +1100699 expected_id = id = conn->msg_id++;
700 send_string_request(conn->fd_out, id, SSH2_FXP_REALPATH, path,
701 strlen(path));
Damien Miller33804262001-02-04 23:20:18 +1100702
703 buffer_init(&msg);
704
Damien Miller3db5f532002-02-13 14:10:32 +1100705 get_msg(conn->fd_in, &msg);
Damien Miller33804262001-02-04 23:20:18 +1100706 type = buffer_get_char(&msg);
707 id = buffer_get_int(&msg);
708
709 if (id != expected_id)
Ben Lindstromb1f483f2002-06-23 21:27:18 +0000710 fatal("ID mismatch (%u != %u)", id, expected_id);
Damien Miller33804262001-02-04 23:20:18 +1100711
712 if (type == SSH2_FXP_STATUS) {
713 u_int status = buffer_get_int(&msg);
714
715 error("Couldn't canonicalise: %s", fx2txt(status));
Damien Miller49566312010-06-26 09:38:23 +1000716 buffer_free(&msg);
717 return NULL;
Damien Miller33804262001-02-04 23:20:18 +1100718 } else if (type != SSH2_FXP_NAME)
Ben Lindstromb1f483f2002-06-23 21:27:18 +0000719 fatal("Expected SSH2_FXP_NAME(%u) packet, got %u",
Damien Miller33804262001-02-04 23:20:18 +1100720 SSH2_FXP_NAME, type);
721
722 count = buffer_get_int(&msg);
723 if (count != 1)
724 fatal("Got multiple names (%d) from SSH_FXP_REALPATH", count);
725
726 filename = buffer_get_string(&msg, NULL);
727 longname = buffer_get_string(&msg, NULL);
728 a = decode_attrib(&msg);
729
730 debug3("SSH_FXP_REALPATH %s -> %s", path, filename);
731
732 xfree(longname);
733
734 buffer_free(&msg);
735
736 return(filename);
737}
738
739int
Damien Miller3db5f532002-02-13 14:10:32 +1100740do_rename(struct sftp_conn *conn, char *oldpath, char *newpath)
Damien Miller33804262001-02-04 23:20:18 +1100741{
742 Buffer msg;
743 u_int status, id;
744
745 buffer_init(&msg);
746
747 /* Send rename request */
Damien Miller3db5f532002-02-13 14:10:32 +1100748 id = conn->msg_id++;
Damien Miller7a3e1d02008-03-27 10:59:57 +1100749 if ((conn->exts & SFTP_EXT_POSIX_RENAME)) {
750 buffer_put_char(&msg, SSH2_FXP_EXTENDED);
751 buffer_put_int(&msg, id);
752 buffer_put_cstring(&msg, "posix-rename@openssh.com");
753 } else {
754 buffer_put_char(&msg, SSH2_FXP_RENAME);
755 buffer_put_int(&msg, id);
756 }
Damien Miller33804262001-02-04 23:20:18 +1100757 buffer_put_cstring(&msg, oldpath);
758 buffer_put_cstring(&msg, newpath);
Damien Miller3db5f532002-02-13 14:10:32 +1100759 send_msg(conn->fd_out, &msg);
Damien Miller7a3e1d02008-03-27 10:59:57 +1100760 debug3("Sent message %s \"%s\" -> \"%s\"",
761 (conn->exts & SFTP_EXT_POSIX_RENAME) ? "posix-rename@openssh.com" :
762 "SSH2_FXP_RENAME", oldpath, newpath);
Damien Miller33804262001-02-04 23:20:18 +1100763 buffer_free(&msg);
764
Damien Miller3db5f532002-02-13 14:10:32 +1100765 status = get_status(conn->fd_in, id);
Damien Miller33804262001-02-04 23:20:18 +1100766 if (status != SSH2_FX_OK)
Damien Miller3db5f532002-02-13 14:10:32 +1100767 error("Couldn't rename file \"%s\" to \"%s\": %s", oldpath,
768 newpath, fx2txt(status));
Damien Miller33804262001-02-04 23:20:18 +1100769
770 return(status);
771}
772
773int
Damien Miller3db5f532002-02-13 14:10:32 +1100774do_symlink(struct sftp_conn *conn, char *oldpath, char *newpath)
Damien Miller058316f2001-03-08 10:08:49 +1100775{
776 Buffer msg;
777 u_int status, id;
778
Damien Miller3db5f532002-02-13 14:10:32 +1100779 if (conn->version < 3) {
780 error("This server does not support the symlink operation");
781 return(SSH2_FX_OP_UNSUPPORTED);
782 }
783
Damien Miller058316f2001-03-08 10:08:49 +1100784 buffer_init(&msg);
785
Darren Tuckerdca6a4d2004-04-19 22:10:52 +1000786 /* Send symlink request */
Damien Miller3db5f532002-02-13 14:10:32 +1100787 id = conn->msg_id++;
Damien Miller058316f2001-03-08 10:08:49 +1100788 buffer_put_char(&msg, SSH2_FXP_SYMLINK);
789 buffer_put_int(&msg, id);
790 buffer_put_cstring(&msg, oldpath);
791 buffer_put_cstring(&msg, newpath);
Damien Miller3db5f532002-02-13 14:10:32 +1100792 send_msg(conn->fd_out, &msg);
Damien Miller058316f2001-03-08 10:08:49 +1100793 debug3("Sent message SSH2_FXP_SYMLINK \"%s\" -> \"%s\"", oldpath,
794 newpath);
795 buffer_free(&msg);
796
Damien Miller3db5f532002-02-13 14:10:32 +1100797 status = get_status(conn->fd_in, id);
Damien Miller058316f2001-03-08 10:08:49 +1100798 if (status != SSH2_FX_OK)
Ben Lindstrom8e879cf2002-11-09 15:48:49 +0000799 error("Couldn't symlink file \"%s\" to \"%s\": %s", oldpath,
Damien Miller3db5f532002-02-13 14:10:32 +1100800 newpath, fx2txt(status));
Damien Miller058316f2001-03-08 10:08:49 +1100801
802 return(status);
803}
804
Damien Millercfe23d32008-02-10 22:20:44 +1100805#ifdef notyet
Damien Miller058316f2001-03-08 10:08:49 +1100806char *
Damien Miller3db5f532002-02-13 14:10:32 +1100807do_readlink(struct sftp_conn *conn, char *path)
Damien Miller058316f2001-03-08 10:08:49 +1100808{
809 Buffer msg;
810 u_int type, expected_id, count, id;
811 char *filename, *longname;
812 Attrib *a;
813
Damien Miller3db5f532002-02-13 14:10:32 +1100814 expected_id = id = conn->msg_id++;
815 send_string_request(conn->fd_out, id, SSH2_FXP_READLINK, path,
816 strlen(path));
Damien Miller058316f2001-03-08 10:08:49 +1100817
818 buffer_init(&msg);
819
Damien Miller3db5f532002-02-13 14:10:32 +1100820 get_msg(conn->fd_in, &msg);
Damien Miller058316f2001-03-08 10:08:49 +1100821 type = buffer_get_char(&msg);
822 id = buffer_get_int(&msg);
823
824 if (id != expected_id)
Ben Lindstromb1f483f2002-06-23 21:27:18 +0000825 fatal("ID mismatch (%u != %u)", id, expected_id);
Damien Miller058316f2001-03-08 10:08:49 +1100826
827 if (type == SSH2_FXP_STATUS) {
828 u_int status = buffer_get_int(&msg);
829
830 error("Couldn't readlink: %s", fx2txt(status));
831 return(NULL);
832 } else if (type != SSH2_FXP_NAME)
Ben Lindstromb1f483f2002-06-23 21:27:18 +0000833 fatal("Expected SSH2_FXP_NAME(%u) packet, got %u",
Damien Miller058316f2001-03-08 10:08:49 +1100834 SSH2_FXP_NAME, type);
835
836 count = buffer_get_int(&msg);
837 if (count != 1)
838 fatal("Got multiple names (%d) from SSH_FXP_READLINK", count);
839
840 filename = buffer_get_string(&msg, NULL);
841 longname = buffer_get_string(&msg, NULL);
842 a = decode_attrib(&msg);
843
844 debug3("SSH_FXP_READLINK %s -> %s", path, filename);
845
846 xfree(longname);
847
848 buffer_free(&msg);
849
850 return(filename);
851}
Damien Millercfe23d32008-02-10 22:20:44 +1100852#endif
Damien Miller058316f2001-03-08 10:08:49 +1100853
Damien Millerd671e5a2008-05-19 14:53:33 +1000854int
Darren Tucker7b598892008-06-09 22:49:36 +1000855do_statvfs(struct sftp_conn *conn, const char *path, struct sftp_statvfs *st,
Damien Millerd671e5a2008-05-19 14:53:33 +1000856 int quiet)
857{
858 Buffer msg;
859 u_int id;
860
861 if ((conn->exts & SFTP_EXT_STATVFS) == 0) {
862 error("Server does not support statvfs@openssh.com extension");
863 return -1;
864 }
865
866 id = conn->msg_id++;
867
868 buffer_init(&msg);
869 buffer_clear(&msg);
870 buffer_put_char(&msg, SSH2_FXP_EXTENDED);
871 buffer_put_int(&msg, id);
872 buffer_put_cstring(&msg, "statvfs@openssh.com");
873 buffer_put_cstring(&msg, path);
874 send_msg(conn->fd_out, &msg);
875 buffer_free(&msg);
876
877 return get_decode_statvfs(conn->fd_in, st, id, quiet);
878}
879
880#ifdef notyet
881int
882do_fstatvfs(struct sftp_conn *conn, const char *handle, u_int handle_len,
Darren Tucker7b598892008-06-09 22:49:36 +1000883 struct sftp_statvfs *st, int quiet)
Damien Millerd671e5a2008-05-19 14:53:33 +1000884{
885 Buffer msg;
886 u_int id;
887
888 if ((conn->exts & SFTP_EXT_FSTATVFS) == 0) {
889 error("Server does not support fstatvfs@openssh.com extension");
890 return -1;
891 }
892
893 id = conn->msg_id++;
894
895 buffer_init(&msg);
896 buffer_clear(&msg);
897 buffer_put_char(&msg, SSH2_FXP_EXTENDED);
898 buffer_put_int(&msg, id);
899 buffer_put_cstring(&msg, "fstatvfs@openssh.com");
900 buffer_put_string(&msg, handle, handle_len);
901 send_msg(conn->fd_out, &msg);
902 buffer_free(&msg);
903
904 return get_decode_statvfs(conn->fd_in, st, id, quiet);
905}
906#endif
907
Damien Miller16a13332002-02-13 14:03:56 +1100908static void
909send_read_request(int fd_out, u_int id, u_int64_t offset, u_int len,
910 char *handle, u_int handle_len)
911{
912 Buffer msg;
Ben Lindstrom6328ab32002-03-22 02:54:23 +0000913
Damien Miller16a13332002-02-13 14:03:56 +1100914 buffer_init(&msg);
915 buffer_clear(&msg);
916 buffer_put_char(&msg, SSH2_FXP_READ);
917 buffer_put_int(&msg, id);
918 buffer_put_string(&msg, handle, handle_len);
919 buffer_put_int64(&msg, offset);
920 buffer_put_int(&msg, len);
921 send_msg(fd_out, &msg);
922 buffer_free(&msg);
Ben Lindstrom6328ab32002-03-22 02:54:23 +0000923}
Damien Miller16a13332002-02-13 14:03:56 +1100924
Damien Miller058316f2001-03-08 10:08:49 +1100925int
Damien Miller3db5f532002-02-13 14:10:32 +1100926do_download(struct sftp_conn *conn, char *remote_path, char *local_path,
Darren Tucker1b0dd172009-10-07 08:37:48 +1100927 Attrib *a, int pflag)
Damien Miller33804262001-02-04 23:20:18 +1100928{
Darren Tucker1b0dd172009-10-07 08:37:48 +1100929 Attrib junk;
Damien Miller16a13332002-02-13 14:03:56 +1100930 Buffer msg;
931 char *handle;
Darren Tucker40858532005-08-02 17:07:07 +1000932 int local_fd, status = 0, write_error;
Damien Miller16a13332002-02-13 14:03:56 +1100933 int read_error, write_errno;
934 u_int64_t offset, size;
Damien Millereccb9de2005-06-17 12:59:34 +1000935 u_int handle_len, mode, type, id, buflen, num_req, max_req;
Damien Miller62d57f62003-01-10 21:43:24 +1100936 off_t progress_counter;
Damien Miller16a13332002-02-13 14:03:56 +1100937 struct request {
938 u_int id;
939 u_int len;
940 u_int64_t offset;
Ben Lindstrom6328ab32002-03-22 02:54:23 +0000941 TAILQ_ENTRY(request) tq;
Damien Miller16a13332002-02-13 14:03:56 +1100942 };
943 TAILQ_HEAD(reqhead, request) requests;
944 struct request *req;
945
946 TAILQ_INIT(&requests);
Damien Miller33804262001-02-04 23:20:18 +1100947
Darren Tucker1b0dd172009-10-07 08:37:48 +1100948 if (a == NULL && (a = do_stat(conn, remote_path, 0)) == NULL)
949 return -1;
Damien Miller33804262001-02-04 23:20:18 +1100950
Damien Miller9e720282008-06-29 22:46:35 +1000951 /* Do not preserve set[ug]id here, as we do not preserve ownership */
Damien Miller33804262001-02-04 23:20:18 +1100952 if (a->flags & SSH2_FILEXFER_ATTR_PERMISSIONS)
Damien Miller770b3742003-01-08 14:04:53 +1100953 mode = a->perm & 0777;
Damien Miller33804262001-02-04 23:20:18 +1100954 else
955 mode = 0666;
956
Ben Lindstromc8d1c302001-03-17 00:34:46 +0000957 if ((a->flags & SSH2_FILEXFER_ATTR_PERMISSIONS) &&
Damien Miller5fa01fd2003-01-14 22:24:47 +1100958 (!S_ISREG(a->perm))) {
959 error("Cannot download non-regular file: %s", remote_path);
Ben Lindstromc8d1c302001-03-17 00:34:46 +0000960 return(-1);
961 }
962
Damien Miller16a13332002-02-13 14:03:56 +1100963 if (a->flags & SSH2_FILEXFER_ATTR_SIZE)
964 size = a->size;
965 else
966 size = 0;
967
Damien Miller3db5f532002-02-13 14:10:32 +1100968 buflen = conn->transfer_buflen;
Damien Miller33804262001-02-04 23:20:18 +1100969 buffer_init(&msg);
970
971 /* Send open request */
Damien Miller3db5f532002-02-13 14:10:32 +1100972 id = conn->msg_id++;
Damien Miller33804262001-02-04 23:20:18 +1100973 buffer_put_char(&msg, SSH2_FXP_OPEN);
974 buffer_put_int(&msg, id);
975 buffer_put_cstring(&msg, remote_path);
976 buffer_put_int(&msg, SSH2_FXF_READ);
977 attrib_clear(&junk); /* Send empty attributes */
978 encode_attrib(&msg, &junk);
Damien Miller3db5f532002-02-13 14:10:32 +1100979 send_msg(conn->fd_out, &msg);
Ben Lindstromb1f483f2002-06-23 21:27:18 +0000980 debug3("Sent message SSH2_FXP_OPEN I:%u P:%s", id, remote_path);
Damien Miller33804262001-02-04 23:20:18 +1100981
Darren Tuckerc22f0902009-10-07 08:24:19 +1100982 handle = get_handle(conn->fd_in, id, &handle_len,
983 "remote open(\"%s\")", remote_path);
Damien Miller33804262001-02-04 23:20:18 +1100984 if (handle == NULL) {
985 buffer_free(&msg);
Damien Miller33804262001-02-04 23:20:18 +1100986 return(-1);
987 }
988
Damien Millera8e06ce2003-11-21 23:48:55 +1100989 local_fd = open(local_path, O_WRONLY | O_CREAT | O_TRUNC,
Damien Miller770b3742003-01-08 14:04:53 +1100990 mode | S_IWRITE);
Damien Miller3db5f532002-02-13 14:10:32 +1100991 if (local_fd == -1) {
992 error("Couldn't open local file \"%s\" for writing: %s",
993 local_path, strerror(errno));
Damien Miller6b0c8182008-02-10 22:23:41 +1100994 do_close(conn, handle, handle_len);
Ben Lindstrom021fcd32002-02-26 18:02:43 +0000995 buffer_free(&msg);
996 xfree(handle);
Damien Miller3db5f532002-02-13 14:10:32 +1100997 return(-1);
998 }
999
Damien Miller33804262001-02-04 23:20:18 +11001000 /* Read from remote and write to local */
Damien Miller16a13332002-02-13 14:03:56 +11001001 write_error = read_error = write_errno = num_req = offset = 0;
1002 max_req = 1;
Damien Miller62d57f62003-01-10 21:43:24 +11001003 progress_counter = 0;
1004
Damien Miller9ba30692004-03-08 23:12:02 +11001005 if (showprogress && size != 0)
1006 start_progress_meter(remote_path, size, &progress_counter);
Damien Miller62d57f62003-01-10 21:43:24 +11001007
Damien Miller16a13332002-02-13 14:03:56 +11001008 while (num_req > 0 || max_req > 0) {
Damien Miller33804262001-02-04 23:20:18 +11001009 char *data;
Damien Miller16a13332002-02-13 14:03:56 +11001010 u_int len;
Damien Miller33804262001-02-04 23:20:18 +11001011
Darren Tuckercdf547a2004-05-24 10:12:19 +10001012 /*
Darren Tuckerfc959702004-07-17 16:12:08 +10001013 * Simulate EOF on interrupt: stop sending new requests and
Darren Tuckercdf547a2004-05-24 10:12:19 +10001014 * allow outstanding requests to drain gracefully
1015 */
1016 if (interrupted) {
1017 if (num_req == 0) /* If we haven't started yet... */
1018 break;
1019 max_req = 0;
1020 }
1021
Damien Miller16a13332002-02-13 14:03:56 +11001022 /* Send some more requests */
1023 while (num_req < max_req) {
Ben Lindstrom6328ab32002-03-22 02:54:23 +00001024 debug3("Request range %llu -> %llu (%d/%d)",
Ben Lindstromd45f28c2002-03-22 01:00:57 +00001025 (unsigned long long)offset,
1026 (unsigned long long)offset + buflen - 1,
1027 num_req, max_req);
Damien Miller16a13332002-02-13 14:03:56 +11001028 req = xmalloc(sizeof(*req));
Damien Miller3db5f532002-02-13 14:10:32 +11001029 req->id = conn->msg_id++;
Damien Miller16a13332002-02-13 14:03:56 +11001030 req->len = buflen;
1031 req->offset = offset;
1032 offset += buflen;
1033 num_req++;
1034 TAILQ_INSERT_TAIL(&requests, req, tq);
Ben Lindstrom6328ab32002-03-22 02:54:23 +00001035 send_read_request(conn->fd_out, req->id, req->offset,
Damien Miller16a13332002-02-13 14:03:56 +11001036 req->len, handle, handle_len);
1037 }
Damien Miller33804262001-02-04 23:20:18 +11001038
1039 buffer_clear(&msg);
Damien Miller3db5f532002-02-13 14:10:32 +11001040 get_msg(conn->fd_in, &msg);
Damien Miller33804262001-02-04 23:20:18 +11001041 type = buffer_get_char(&msg);
1042 id = buffer_get_int(&msg);
Ben Lindstromb1f483f2002-06-23 21:27:18 +00001043 debug3("Received reply T:%u I:%u R:%d", type, id, max_req);
Damien Miller33804262001-02-04 23:20:18 +11001044
Damien Miller16a13332002-02-13 14:03:56 +11001045 /* Find the request in our queue */
Darren Tucker47eede72005-03-14 23:08:12 +11001046 for (req = TAILQ_FIRST(&requests);
Damien Miller16a13332002-02-13 14:03:56 +11001047 req != NULL && req->id != id;
1048 req = TAILQ_NEXT(req, tq))
1049 ;
1050 if (req == NULL)
1051 fatal("Unexpected reply %u", id);
1052
1053 switch (type) {
1054 case SSH2_FXP_STATUS:
1055 status = buffer_get_int(&msg);
1056 if (status != SSH2_FX_EOF)
1057 read_error = 1;
1058 max_req = 0;
1059 TAILQ_REMOVE(&requests, req, tq);
1060 xfree(req);
1061 num_req--;
1062 break;
1063 case SSH2_FXP_DATA:
1064 data = buffer_get_string(&msg, &len);
Ben Lindstromeb505452002-03-22 01:03:15 +00001065 debug3("Received data %llu -> %llu",
Ben Lindstrom6328ab32002-03-22 02:54:23 +00001066 (unsigned long long)req->offset,
Ben Lindstromeb505452002-03-22 01:03:15 +00001067 (unsigned long long)req->offset + len - 1);
Damien Miller16a13332002-02-13 14:03:56 +11001068 if (len > req->len)
1069 fatal("Received more data than asked for "
Ben Lindstrom93576d92002-12-23 02:06:19 +00001070 "%u > %u", len, req->len);
Damien Miller16a13332002-02-13 14:03:56 +11001071 if ((lseek(local_fd, req->offset, SEEK_SET) == -1 ||
Darren Tucker9f63f222003-07-03 13:46:56 +10001072 atomicio(vwrite, local_fd, data, len) != len) &&
Damien Miller16a13332002-02-13 14:03:56 +11001073 !write_error) {
1074 write_errno = errno;
1075 write_error = 1;
1076 max_req = 0;
Damien Miller33804262001-02-04 23:20:18 +11001077 }
Damien Miller62d57f62003-01-10 21:43:24 +11001078 progress_counter += len;
Damien Miller16a13332002-02-13 14:03:56 +11001079 xfree(data);
1080
1081 if (len == req->len) {
1082 TAILQ_REMOVE(&requests, req, tq);
1083 xfree(req);
1084 num_req--;
1085 } else {
1086 /* Resend the request for the missing data */
1087 debug3("Short data block, re-requesting "
Ben Lindstromeb505452002-03-22 01:03:15 +00001088 "%llu -> %llu (%2d)",
Ben Lindstrom6328ab32002-03-22 02:54:23 +00001089 (unsigned long long)req->offset + len,
Ben Lindstrom83b79e42002-03-22 01:05:27 +00001090 (unsigned long long)req->offset +
1091 req->len - 1, num_req);
Damien Miller3db5f532002-02-13 14:10:32 +11001092 req->id = conn->msg_id++;
Damien Miller16a13332002-02-13 14:03:56 +11001093 req->len -= len;
1094 req->offset += len;
Ben Lindstrom6328ab32002-03-22 02:54:23 +00001095 send_read_request(conn->fd_out, req->id,
Damien Miller3db5f532002-02-13 14:10:32 +11001096 req->offset, req->len, handle, handle_len);
Damien Miller16a13332002-02-13 14:03:56 +11001097 /* Reduce the request size */
1098 if (len < buflen)
1099 buflen = MAX(MIN_READ_SIZE, len);
1100 }
1101 if (max_req > 0) { /* max_req = 0 iff EOF received */
1102 if (size > 0 && offset > size) {
1103 /* Only one request at a time
1104 * after the expected EOF */
1105 debug3("Finish at %llu (%2d)",
Ben Lindstromeb505452002-03-22 01:03:15 +00001106 (unsigned long long)offset,
1107 num_req);
Damien Miller16a13332002-02-13 14:03:56 +11001108 max_req = 1;
Darren Tuckercdf547a2004-05-24 10:12:19 +10001109 } else if (max_req <= conn->num_requests) {
Damien Miller16a13332002-02-13 14:03:56 +11001110 ++max_req;
1111 }
1112 }
1113 break;
1114 default:
Ben Lindstromb1f483f2002-06-23 21:27:18 +00001115 fatal("Expected SSH2_FXP_DATA(%u) packet, got %u",
Damien Miller33804262001-02-04 23:20:18 +11001116 SSH2_FXP_DATA, type);
1117 }
Damien Miller33804262001-02-04 23:20:18 +11001118 }
Damien Miller33804262001-02-04 23:20:18 +11001119
Damien Miller62d57f62003-01-10 21:43:24 +11001120 if (showprogress && size)
1121 stop_progress_meter();
1122
Damien Miller16a13332002-02-13 14:03:56 +11001123 /* Sanity check */
1124 if (TAILQ_FIRST(&requests) != NULL)
1125 fatal("Transfer complete, but requests still in queue");
1126
1127 if (read_error) {
Ben Lindstrom6328ab32002-03-22 02:54:23 +00001128 error("Couldn't read from remote file \"%s\" : %s",
Damien Miller3db5f532002-02-13 14:10:32 +11001129 remote_path, fx2txt(status));
1130 do_close(conn, handle, handle_len);
Damien Miller16a13332002-02-13 14:03:56 +11001131 } else if (write_error) {
Damien Miller3db5f532002-02-13 14:10:32 +11001132 error("Couldn't write to \"%s\": %s", local_path,
1133 strerror(write_errno));
1134 status = -1;
1135 do_close(conn, handle, handle_len);
Damien Miller16a13332002-02-13 14:03:56 +11001136 } else {
Damien Miller3db5f532002-02-13 14:10:32 +11001137 status = do_close(conn, handle, handle_len);
Damien Miller16a13332002-02-13 14:03:56 +11001138
1139 /* Override umask and utimes if asked */
Ben Lindstrom6dc75f52001-02-17 16:47:47 +00001140#ifdef HAVE_FCHMOD
Damien Miller16a13332002-02-13 14:03:56 +11001141 if (pflag && fchmod(local_fd, mode) == -1)
Damien Millera8e06ce2003-11-21 23:48:55 +11001142#else
Damien Miller16a13332002-02-13 14:03:56 +11001143 if (pflag && chmod(local_path, mode) == -1)
Ben Lindstrom6dc75f52001-02-17 16:47:47 +00001144#endif /* HAVE_FCHMOD */
Damien Miller16a13332002-02-13 14:03:56 +11001145 error("Couldn't set mode on \"%s\": %s", local_path,
Ben Lindstrom93576d92002-12-23 02:06:19 +00001146 strerror(errno));
Damien Miller16a13332002-02-13 14:03:56 +11001147 if (pflag && (a->flags & SSH2_FILEXFER_ATTR_ACMODTIME)) {
1148 struct timeval tv[2];
1149 tv[0].tv_sec = a->atime;
1150 tv[1].tv_sec = a->mtime;
1151 tv[0].tv_usec = tv[1].tv_usec = 0;
1152 if (utimes(local_path, tv) == -1)
1153 error("Can't set times on \"%s\": %s",
Ben Lindstrom93576d92002-12-23 02:06:19 +00001154 local_path, strerror(errno));
Damien Miller16a13332002-02-13 14:03:56 +11001155 }
Ben Lindstrom9d4f2c82001-02-15 03:22:45 +00001156 }
Damien Millerd7686fd2001-02-10 00:40:03 +11001157 close(local_fd);
1158 buffer_free(&msg);
1159 xfree(handle);
Damien Miller3db5f532002-02-13 14:10:32 +11001160
1161 return(status);
Damien Miller33804262001-02-04 23:20:18 +11001162}
1163
Darren Tucker1b0dd172009-10-07 08:37:48 +11001164static int
1165download_dir_internal(struct sftp_conn *conn, char *src, char *dst,
1166 Attrib *dirattrib, int pflag, int printflag, int depth)
1167{
1168 int i, ret = 0;
1169 SFTP_DIRENT **dir_entries;
1170 char *filename, *new_src, *new_dst;
1171 mode_t mode = 0777;
1172
1173 if (depth >= MAX_DIR_DEPTH) {
1174 error("Maximum directory depth exceeded: %d levels", depth);
1175 return -1;
1176 }
1177
1178 if (dirattrib == NULL &&
1179 (dirattrib = do_stat(conn, src, 1)) == NULL) {
1180 error("Unable to stat remote directory \"%s\"", src);
1181 return -1;
1182 }
1183 if (!S_ISDIR(dirattrib->perm)) {
1184 error("\"%s\" is not a directory", src);
1185 return -1;
1186 }
1187 if (printflag)
1188 printf("Retrieving %s\n", src);
1189
1190 if (dirattrib->flags & SSH2_FILEXFER_ATTR_PERMISSIONS)
1191 mode = dirattrib->perm & 01777;
1192 else {
1193 debug("Server did not send permissions for "
1194 "directory \"%s\"", dst);
1195 }
1196
1197 if (mkdir(dst, mode) == -1 && errno != EEXIST) {
1198 error("mkdir %s: %s", dst, strerror(errno));
1199 return -1;
1200 }
1201
1202 if (do_readdir(conn, src, &dir_entries) == -1) {
1203 error("%s: Failed to get directory contents", src);
1204 return -1;
1205 }
1206
1207 for (i = 0; dir_entries[i] != NULL && !interrupted; i++) {
1208 filename = dir_entries[i]->filename;
1209
1210 new_dst = path_append(dst, filename);
1211 new_src = path_append(src, filename);
1212
1213 if (S_ISDIR(dir_entries[i]->a.perm)) {
1214 if (strcmp(filename, ".") == 0 ||
1215 strcmp(filename, "..") == 0)
1216 continue;
1217 if (download_dir_internal(conn, new_src, new_dst,
1218 &(dir_entries[i]->a), pflag, printflag,
1219 depth + 1) == -1)
1220 ret = -1;
1221 } else if (S_ISREG(dir_entries[i]->a.perm) ) {
1222 if (do_download(conn, new_src, new_dst,
1223 &(dir_entries[i]->a), pflag) == -1) {
1224 error("Download of file %s to %s failed",
1225 new_src, new_dst);
1226 ret = -1;
1227 }
1228 } else
1229 logit("%s: not a regular file\n", new_src);
1230
1231 xfree(new_dst);
1232 xfree(new_src);
1233 }
1234
1235 if (pflag) {
1236 if (dirattrib->flags & SSH2_FILEXFER_ATTR_ACMODTIME) {
1237 struct timeval tv[2];
1238 tv[0].tv_sec = dirattrib->atime;
1239 tv[1].tv_sec = dirattrib->mtime;
1240 tv[0].tv_usec = tv[1].tv_usec = 0;
1241 if (utimes(dst, tv) == -1)
1242 error("Can't set times on \"%s\": %s",
1243 dst, strerror(errno));
1244 } else
1245 debug("Server did not send times for directory "
1246 "\"%s\"", dst);
1247 }
1248
1249 free_sftp_dirents(dir_entries);
1250
1251 return ret;
1252}
1253
1254int
1255download_dir(struct sftp_conn *conn, char *src, char *dst,
1256 Attrib *dirattrib, int pflag, int printflag)
1257{
1258 char *src_canon;
1259 int ret;
1260
1261 if ((src_canon = do_realpath(conn, src)) == NULL) {
1262 error("Unable to canonicalise path \"%s\"", src);
1263 return -1;
1264 }
1265
1266 ret = download_dir_internal(conn, src_canon, dst,
1267 dirattrib, pflag, printflag, 0);
1268 xfree(src_canon);
1269 return ret;
1270}
1271
Damien Miller33804262001-02-04 23:20:18 +11001272int
Damien Miller3db5f532002-02-13 14:10:32 +11001273do_upload(struct sftp_conn *conn, char *local_path, char *remote_path,
1274 int pflag)
Damien Miller33804262001-02-04 23:20:18 +11001275{
Damien Milleracdf25b2008-02-10 22:27:24 +11001276 int local_fd;
1277 int status = SSH2_FX_OK;
Damien Miller5873dfd2002-02-13 14:04:37 +11001278 u_int handle_len, id, type;
Damien Miller8b3fdfb2007-09-17 16:12:03 +10001279 off_t offset;
Damien Miller8829d362002-02-08 22:04:05 +11001280 char *handle, *data;
Damien Miller33804262001-02-04 23:20:18 +11001281 Buffer msg;
1282 struct stat sb;
1283 Attrib a;
Damien Miller16a13332002-02-13 14:03:56 +11001284 u_int32_t startid;
1285 u_int32_t ackid;
Damien Miller5873dfd2002-02-13 14:04:37 +11001286 struct outstanding_ack {
1287 u_int id;
1288 u_int len;
Damien Miller8b3fdfb2007-09-17 16:12:03 +10001289 off_t offset;
Ben Lindstrom6328ab32002-03-22 02:54:23 +00001290 TAILQ_ENTRY(outstanding_ack) tq;
Damien Miller5873dfd2002-02-13 14:04:37 +11001291 };
1292 TAILQ_HEAD(ackhead, outstanding_ack) acks;
Damien Miller7cf17eb2004-06-15 10:28:56 +10001293 struct outstanding_ack *ack = NULL;
Damien Miller5873dfd2002-02-13 14:04:37 +11001294
1295 TAILQ_INIT(&acks);
Damien Miller33804262001-02-04 23:20:18 +11001296
1297 if ((local_fd = open(local_path, O_RDONLY, 0)) == -1) {
1298 error("Couldn't open local file \"%s\" for reading: %s",
1299 local_path, strerror(errno));
1300 return(-1);
1301 }
1302 if (fstat(local_fd, &sb) == -1) {
1303 error("Couldn't fstat local file \"%s\": %s",
1304 local_path, strerror(errno));
1305 close(local_fd);
1306 return(-1);
1307 }
Damien Miller5fa01fd2003-01-14 22:24:47 +11001308 if (!S_ISREG(sb.st_mode)) {
1309 error("%s is not a regular file", local_path);
1310 close(local_fd);
1311 return(-1);
1312 }
Damien Miller33804262001-02-04 23:20:18 +11001313 stat_to_attrib(&sb, &a);
1314
1315 a.flags &= ~SSH2_FILEXFER_ATTR_SIZE;
1316 a.flags &= ~SSH2_FILEXFER_ATTR_UIDGID;
1317 a.perm &= 0777;
1318 if (!pflag)
1319 a.flags &= ~SSH2_FILEXFER_ATTR_ACMODTIME;
1320
1321 buffer_init(&msg);
1322
1323 /* Send open request */
Damien Miller3db5f532002-02-13 14:10:32 +11001324 id = conn->msg_id++;
Damien Miller33804262001-02-04 23:20:18 +11001325 buffer_put_char(&msg, SSH2_FXP_OPEN);
1326 buffer_put_int(&msg, id);
1327 buffer_put_cstring(&msg, remote_path);
1328 buffer_put_int(&msg, SSH2_FXF_WRITE|SSH2_FXF_CREAT|SSH2_FXF_TRUNC);
1329 encode_attrib(&msg, &a);
Damien Miller3db5f532002-02-13 14:10:32 +11001330 send_msg(conn->fd_out, &msg);
Ben Lindstromb1f483f2002-06-23 21:27:18 +00001331 debug3("Sent message SSH2_FXP_OPEN I:%u P:%s", id, remote_path);
Damien Miller33804262001-02-04 23:20:18 +11001332
1333 buffer_clear(&msg);
1334
Darren Tuckerc22f0902009-10-07 08:24:19 +11001335 handle = get_handle(conn->fd_in, id, &handle_len,
1336 "remote open(\"%s\")", remote_path);
Damien Miller33804262001-02-04 23:20:18 +11001337 if (handle == NULL) {
1338 close(local_fd);
1339 buffer_free(&msg);
Damien Milleracdf25b2008-02-10 22:27:24 +11001340 return -1;
Damien Miller33804262001-02-04 23:20:18 +11001341 }
1342
Damien Miller16a13332002-02-13 14:03:56 +11001343 startid = ackid = id + 1;
Damien Miller3db5f532002-02-13 14:10:32 +11001344 data = xmalloc(conn->transfer_buflen);
Damien Miller8829d362002-02-08 22:04:05 +11001345
Damien Miller33804262001-02-04 23:20:18 +11001346 /* Read from local and write to remote */
1347 offset = 0;
Damien Miller62d57f62003-01-10 21:43:24 +11001348 if (showprogress)
1349 start_progress_meter(local_path, sb.st_size, &offset);
Damien Miller62d57f62003-01-10 21:43:24 +11001350
Damien Miller9f0f5c62001-12-21 14:45:46 +11001351 for (;;) {
Damien Miller33804262001-02-04 23:20:18 +11001352 int len;
Damien Miller33804262001-02-04 23:20:18 +11001353
1354 /*
Darren Tuckerfc959702004-07-17 16:12:08 +10001355 * Can't use atomicio here because it returns 0 on EOF,
Darren Tuckercdf547a2004-05-24 10:12:19 +10001356 * thus losing the last block of the file.
Darren Tuckerfc959702004-07-17 16:12:08 +10001357 * Simulate an EOF on interrupt, allowing ACKs from the
Darren Tuckercdf547a2004-05-24 10:12:19 +10001358 * server to drain.
Damien Miller33804262001-02-04 23:20:18 +11001359 */
Damien Milleracdf25b2008-02-10 22:27:24 +11001360 if (interrupted || status != SSH2_FX_OK)
Darren Tuckercdf547a2004-05-24 10:12:19 +10001361 len = 0;
1362 else do
Damien Miller3db5f532002-02-13 14:10:32 +11001363 len = read(local_fd, data, conn->transfer_buflen);
Damien Millerd8968ad2008-07-04 23:10:49 +10001364 while ((len == -1) &&
1365 (errno == EINTR || errno == EAGAIN || errno == EWOULDBLOCK));
Damien Miller33804262001-02-04 23:20:18 +11001366
1367 if (len == -1)
1368 fatal("Couldn't read from \"%s\": %s", local_path,
1369 strerror(errno));
Damien Miller16a13332002-02-13 14:03:56 +11001370
1371 if (len != 0) {
Damien Miller5873dfd2002-02-13 14:04:37 +11001372 ack = xmalloc(sizeof(*ack));
1373 ack->id = ++id;
1374 ack->offset = offset;
1375 ack->len = len;
1376 TAILQ_INSERT_TAIL(&acks, ack, tq);
1377
Damien Miller16a13332002-02-13 14:03:56 +11001378 buffer_clear(&msg);
1379 buffer_put_char(&msg, SSH2_FXP_WRITE);
Damien Miller5873dfd2002-02-13 14:04:37 +11001380 buffer_put_int(&msg, ack->id);
Damien Miller16a13332002-02-13 14:03:56 +11001381 buffer_put_string(&msg, handle, handle_len);
1382 buffer_put_int64(&msg, offset);
1383 buffer_put_string(&msg, data, len);
Damien Miller3db5f532002-02-13 14:10:32 +11001384 send_msg(conn->fd_out, &msg);
Ben Lindstromb1f483f2002-06-23 21:27:18 +00001385 debug3("Sent message SSH2_FXP_WRITE I:%u O:%llu S:%u",
Ben Lindstrom93576d92002-12-23 02:06:19 +00001386 id, (unsigned long long)offset, len);
Damien Miller5873dfd2002-02-13 14:04:37 +11001387 } else if (TAILQ_FIRST(&acks) == NULL)
Damien Miller33804262001-02-04 23:20:18 +11001388 break;
1389
Damien Miller5873dfd2002-02-13 14:04:37 +11001390 if (ack == NULL)
1391 fatal("Unexpected ACK %u", id);
1392
Ben Lindstrom6328ab32002-03-22 02:54:23 +00001393 if (id == startid || len == 0 ||
Damien Miller3db5f532002-02-13 14:10:32 +11001394 id - ackid >= conn->num_requests) {
Ben Lindstrom5a6abda2002-06-09 19:41:48 +00001395 u_int r_id;
Ben Lindstrom06e95152002-04-06 04:16:45 +00001396
Damien Miller5873dfd2002-02-13 14:04:37 +11001397 buffer_clear(&msg);
Damien Miller3db5f532002-02-13 14:10:32 +11001398 get_msg(conn->fd_in, &msg);
Damien Miller5873dfd2002-02-13 14:04:37 +11001399 type = buffer_get_char(&msg);
Ben Lindstrom06e95152002-04-06 04:16:45 +00001400 r_id = buffer_get_int(&msg);
Damien Miller5873dfd2002-02-13 14:04:37 +11001401
1402 if (type != SSH2_FXP_STATUS)
1403 fatal("Expected SSH2_FXP_STATUS(%d) packet, "
1404 "got %d", SSH2_FXP_STATUS, type);
1405
1406 status = buffer_get_int(&msg);
1407 debug3("SSH2_FXP_STATUS %d", status);
1408
1409 /* Find the request in our queue */
Darren Tucker47eede72005-03-14 23:08:12 +11001410 for (ack = TAILQ_FIRST(&acks);
Ben Lindstrom06e95152002-04-06 04:16:45 +00001411 ack != NULL && ack->id != r_id;
Damien Miller5873dfd2002-02-13 14:04:37 +11001412 ack = TAILQ_NEXT(ack, tq))
1413 ;
1414 if (ack == NULL)
Ben Lindstromb1f483f2002-06-23 21:27:18 +00001415 fatal("Can't find request for ID %u", r_id);
Damien Miller5873dfd2002-02-13 14:04:37 +11001416 TAILQ_REMOVE(&acks, ack, tq);
Damien Miller8b3fdfb2007-09-17 16:12:03 +10001417 debug3("In write loop, ack for %u %u bytes at %lld",
1418 ack->id, ack->len, (long long)ack->offset);
Damien Miller16a13332002-02-13 14:03:56 +11001419 ++ackid;
Ben Lindstromeec16fc2002-07-04 00:06:15 +00001420 xfree(ack);
Damien Miller33804262001-02-04 23:20:18 +11001421 }
Damien Miller33804262001-02-04 23:20:18 +11001422 offset += len;
Damien Miller8b3fdfb2007-09-17 16:12:03 +10001423 if (offset < 0)
1424 fatal("%s: offset < 0", __func__);
Damien Miller33804262001-02-04 23:20:18 +11001425 }
Damien Milleracdf25b2008-02-10 22:27:24 +11001426 buffer_free(&msg);
1427
Damien Miller62d57f62003-01-10 21:43:24 +11001428 if (showprogress)
1429 stop_progress_meter();
Damien Miller8829d362002-02-08 22:04:05 +11001430 xfree(data);
Damien Miller33804262001-02-04 23:20:18 +11001431
Damien Milleracdf25b2008-02-10 22:27:24 +11001432 if (status != SSH2_FX_OK) {
1433 error("Couldn't write to remote file \"%s\": %s",
1434 remote_path, fx2txt(status));
1435 status = -1;
1436 }
1437
Damien Miller33804262001-02-04 23:20:18 +11001438 if (close(local_fd) == -1) {
1439 error("Couldn't close local file \"%s\": %s", local_path,
1440 strerror(errno));
Damien Millerd7686fd2001-02-10 00:40:03 +11001441 status = -1;
Damien Miller33804262001-02-04 23:20:18 +11001442 }
1443
Ben Lindstrom9d4f2c82001-02-15 03:22:45 +00001444 /* Override umask and utimes if asked */
1445 if (pflag)
Damien Miller3db5f532002-02-13 14:10:32 +11001446 do_fsetstat(conn, handle, handle_len, &a);
Ben Lindstrom9d4f2c82001-02-15 03:22:45 +00001447
Damien Milleracdf25b2008-02-10 22:27:24 +11001448 if (do_close(conn, handle, handle_len) != SSH2_FX_OK)
1449 status = -1;
Damien Millerd7686fd2001-02-10 00:40:03 +11001450 xfree(handle);
Damien Milleracdf25b2008-02-10 22:27:24 +11001451
1452 return status;
Damien Miller33804262001-02-04 23:20:18 +11001453}
Darren Tucker1b0dd172009-10-07 08:37:48 +11001454
1455static int
1456upload_dir_internal(struct sftp_conn *conn, char *src, char *dst,
1457 int pflag, int printflag, int depth)
1458{
1459 int ret = 0, status;
1460 DIR *dirp;
1461 struct dirent *dp;
1462 char *filename, *new_src, *new_dst;
1463 struct stat sb;
1464 Attrib a;
1465
1466 if (depth >= MAX_DIR_DEPTH) {
1467 error("Maximum directory depth exceeded: %d levels", depth);
1468 return -1;
1469 }
1470
1471 if (stat(src, &sb) == -1) {
1472 error("Couldn't stat directory \"%s\": %s",
1473 src, strerror(errno));
1474 return -1;
1475 }
1476 if (!S_ISDIR(sb.st_mode)) {
1477 error("\"%s\" is not a directory", src);
1478 return -1;
1479 }
1480 if (printflag)
1481 printf("Entering %s\n", src);
1482
1483 attrib_clear(&a);
1484 stat_to_attrib(&sb, &a);
1485 a.flags &= ~SSH2_FILEXFER_ATTR_SIZE;
1486 a.flags &= ~SSH2_FILEXFER_ATTR_UIDGID;
1487 a.perm &= 01777;
1488 if (!pflag)
1489 a.flags &= ~SSH2_FILEXFER_ATTR_ACMODTIME;
1490
1491 status = do_mkdir(conn, dst, &a, 0);
1492 /*
1493 * we lack a portable status for errno EEXIST,
1494 * so if we get a SSH2_FX_FAILURE back we must check
1495 * if it was created successfully.
1496 */
1497 if (status != SSH2_FX_OK) {
1498 if (status != SSH2_FX_FAILURE)
1499 return -1;
1500 if (do_stat(conn, dst, 0) == NULL)
1501 return -1;
1502 }
1503
1504 if ((dirp = opendir(src)) == NULL) {
1505 error("Failed to open dir \"%s\": %s", src, strerror(errno));
1506 return -1;
1507 }
1508
1509 while (((dp = readdir(dirp)) != NULL) && !interrupted) {
1510 if (dp->d_ino == 0)
1511 continue;
1512 filename = dp->d_name;
1513 new_dst = path_append(dst, filename);
1514 new_src = path_append(src, filename);
1515
Darren Tucker438b4732009-10-11 21:52:10 +11001516 if (lstat(new_src, &sb) == -1) {
1517 logit("%s: lstat failed: %s", filename,
1518 strerror(errno));
1519 ret = -1;
1520 } else if (S_ISDIR(sb.st_mode)) {
Darren Tucker1b0dd172009-10-07 08:37:48 +11001521 if (strcmp(filename, ".") == 0 ||
1522 strcmp(filename, "..") == 0)
1523 continue;
1524
1525 if (upload_dir_internal(conn, new_src, new_dst,
1526 pflag, depth + 1, printflag) == -1)
1527 ret = -1;
Darren Tucker438b4732009-10-11 21:52:10 +11001528 } else if (S_ISREG(sb.st_mode)) {
Darren Tucker1b0dd172009-10-07 08:37:48 +11001529 if (do_upload(conn, new_src, new_dst, pflag) == -1) {
1530 error("Uploading of file %s to %s failed!",
1531 new_src, new_dst);
1532 ret = -1;
1533 }
1534 } else
1535 logit("%s: not a regular file\n", filename);
1536 xfree(new_dst);
1537 xfree(new_src);
1538 }
1539
1540 do_setstat(conn, dst, &a);
1541
1542 (void) closedir(dirp);
1543 return ret;
1544}
1545
1546int
1547upload_dir(struct sftp_conn *conn, char *src, char *dst, int printflag,
1548 int pflag)
1549{
1550 char *dst_canon;
1551 int ret;
1552
1553 if ((dst_canon = do_realpath(conn, dst)) == NULL) {
1554 error("Unable to canonicalise path \"%s\"", dst);
1555 return -1;
1556 }
1557
1558 ret = upload_dir_internal(conn, src, dst_canon, pflag, printflag, 0);
1559 xfree(dst_canon);
1560 return ret;
1561}
1562
1563char *
1564path_append(char *p1, char *p2)
1565{
1566 char *ret;
1567 size_t len = strlen(p1) + strlen(p2) + 2;
1568
1569 ret = xmalloc(len);
1570 strlcpy(ret, p1, len);
1571 if (p1[0] != '\0' && p1[strlen(p1) - 1] != '/')
1572 strlcat(ret, "/", len);
1573 strlcat(ret, p2, len);
1574
1575 return(ret);
1576}
1577