blob: 0d42696ae4459a2e6cf4586c2a035c89e1639999 [file] [log] [blame]
Damien Miller33804262001-02-04 23:20:18 +11001/*
Damien Miller3db5f532002-02-13 14:10:32 +11002 * Copyright (c) 2001,2002 Damien Miller. All rights reserved.
Damien Miller33804262001-02-04 23:20:18 +11003 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
6 * are met:
7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the
11 * documentation and/or other materials provided with the distribution.
12 *
13 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
14 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
15 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
16 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
17 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
18 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
19 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
20 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
21 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
22 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
23 */
24
25/* XXX: memleaks */
26/* XXX: signed vs unsigned */
Damien Miller3db5f532002-02-13 14:10:32 +110027/* XXX: remove all logging, only return status codes */
Damien Miller33804262001-02-04 23:20:18 +110028/* XXX: copy between two remote sites */
29
30#include "includes.h"
Ben Lindstrom06e95152002-04-06 04:16:45 +000031RCSID("$OpenBSD: sftp-client.c,v 1.31 2002/04/06 00:30:08 djm Exp $");
Damien Miller16a13332002-02-13 14:03:56 +110032
Damien Miller16a13332002-02-13 14:03:56 +110033#include "openbsd-compat/fake-queue.h"
Damien Miller33804262001-02-04 23:20:18 +110034
Damien Miller33804262001-02-04 23:20:18 +110035#include "buffer.h"
36#include "bufaux.h"
37#include "getput.h"
38#include "xmalloc.h"
39#include "log.h"
40#include "atomicio.h"
Damien Miller33804262001-02-04 23:20:18 +110041
42#include "sftp.h"
43#include "sftp-common.h"
44#include "sftp-client.h"
45
Damien Miller16a13332002-02-13 14:03:56 +110046/* Minimum amount of data to read at at time */
47#define MIN_READ_SIZE 512
48
Damien Miller3db5f532002-02-13 14:10:32 +110049struct sftp_conn {
50 int fd_in;
51 int fd_out;
52 u_int transfer_buflen;
53 u_int num_requests;
54 u_int version;
55 u_int msg_id;
56};
Ben Lindstrom288cc392001-02-09 02:58:04 +000057
Ben Lindstrombba81212001-06-25 05:01:22 +000058static void
Damien Miller33804262001-02-04 23:20:18 +110059send_msg(int fd, Buffer *m)
60{
61 int mlen = buffer_len(m);
62 int len;
63 Buffer oqueue;
64
65 buffer_init(&oqueue);
66 buffer_put_int(&oqueue, mlen);
67 buffer_append(&oqueue, buffer_ptr(m), mlen);
68 buffer_consume(m, mlen);
69
70 len = atomicio(write, fd, buffer_ptr(&oqueue), buffer_len(&oqueue));
71 if (len <= 0)
72 fatal("Couldn't send packet: %s", strerror(errno));
73
74 buffer_free(&oqueue);
75}
76
Ben Lindstrombba81212001-06-25 05:01:22 +000077static void
Damien Miller33804262001-02-04 23:20:18 +110078get_msg(int fd, Buffer *m)
79{
80 u_int len, msg_len;
81 unsigned char buf[4096];
82
83 len = atomicio(read, fd, buf, 4);
Damien Millercafff192001-03-19 22:29:46 +110084 if (len == 0)
85 fatal("Connection closed");
86 else if (len == -1)
Damien Miller33804262001-02-04 23:20:18 +110087 fatal("Couldn't read packet: %s", strerror(errno));
88
89 msg_len = GET_32BIT(buf);
90 if (msg_len > 256 * 1024)
91 fatal("Received message too long %d", msg_len);
92
93 while (msg_len) {
94 len = atomicio(read, fd, buf, MIN(msg_len, sizeof(buf)));
Damien Millercafff192001-03-19 22:29:46 +110095 if (len == 0)
96 fatal("Connection closed");
97 else if (len == -1)
Damien Miller33804262001-02-04 23:20:18 +110098 fatal("Couldn't read packet: %s", strerror(errno));
99
100 msg_len -= len;
101 buffer_append(m, buf, len);
102 }
103}
104
Ben Lindstrombba81212001-06-25 05:01:22 +0000105static void
Damien Miller33804262001-02-04 23:20:18 +1100106send_string_request(int fd, u_int id, u_int code, char *s,
107 u_int len)
108{
109 Buffer msg;
110
111 buffer_init(&msg);
112 buffer_put_char(&msg, code);
113 buffer_put_int(&msg, id);
114 buffer_put_string(&msg, s, len);
115 send_msg(fd, &msg);
116 debug3("Sent message fd %d T:%d I:%d", fd, code, id);
117 buffer_free(&msg);
118}
119
Ben Lindstrombba81212001-06-25 05:01:22 +0000120static void
Damien Miller33804262001-02-04 23:20:18 +1100121send_string_attrs_request(int fd, u_int id, u_int code, char *s,
122 u_int len, Attrib *a)
123{
124 Buffer msg;
125
126 buffer_init(&msg);
127 buffer_put_char(&msg, code);
128 buffer_put_int(&msg, id);
129 buffer_put_string(&msg, s, len);
130 encode_attrib(&msg, a);
131 send_msg(fd, &msg);
132 debug3("Sent message fd %d T:%d I:%d", fd, code, id);
133 buffer_free(&msg);
134}
135
Ben Lindstrombba81212001-06-25 05:01:22 +0000136static u_int
Damien Miller33804262001-02-04 23:20:18 +1100137get_status(int fd, int expected_id)
138{
139 Buffer msg;
140 u_int type, id, status;
141
142 buffer_init(&msg);
143 get_msg(fd, &msg);
144 type = buffer_get_char(&msg);
145 id = buffer_get_int(&msg);
146
147 if (id != expected_id)
148 fatal("ID mismatch (%d != %d)", id, expected_id);
149 if (type != SSH2_FXP_STATUS)
150 fatal("Expected SSH2_FXP_STATUS(%d) packet, got %d",
151 SSH2_FXP_STATUS, type);
152
153 status = buffer_get_int(&msg);
154 buffer_free(&msg);
155
156 debug3("SSH2_FXP_STATUS %d", status);
157
158 return(status);
159}
160
Ben Lindstrombba81212001-06-25 05:01:22 +0000161static char *
Damien Miller33804262001-02-04 23:20:18 +1100162get_handle(int fd, u_int expected_id, u_int *len)
163{
164 Buffer msg;
165 u_int type, id;
166 char *handle;
167
168 buffer_init(&msg);
169 get_msg(fd, &msg);
170 type = buffer_get_char(&msg);
171 id = buffer_get_int(&msg);
172
173 if (id != expected_id)
174 fatal("ID mismatch (%d != %d)", id, expected_id);
175 if (type == SSH2_FXP_STATUS) {
176 int status = buffer_get_int(&msg);
177
178 error("Couldn't get handle: %s", fx2txt(status));
179 return(NULL);
180 } else if (type != SSH2_FXP_HANDLE)
181 fatal("Expected SSH2_FXP_HANDLE(%d) packet, got %d",
182 SSH2_FXP_HANDLE, type);
183
184 handle = buffer_get_string(&msg, len);
185 buffer_free(&msg);
186
187 return(handle);
188}
189
Ben Lindstrombba81212001-06-25 05:01:22 +0000190static Attrib *
Ben Lindstromc8d1c302001-03-17 00:34:46 +0000191get_decode_stat(int fd, u_int expected_id, int quiet)
Damien Miller33804262001-02-04 23:20:18 +1100192{
193 Buffer msg;
194 u_int type, id;
195 Attrib *a;
196
197 buffer_init(&msg);
198 get_msg(fd, &msg);
199
200 type = buffer_get_char(&msg);
201 id = buffer_get_int(&msg);
202
203 debug3("Received stat reply T:%d I:%d", type, id);
204 if (id != expected_id)
205 fatal("ID mismatch (%d != %d)", id, expected_id);
206 if (type == SSH2_FXP_STATUS) {
207 int status = buffer_get_int(&msg);
208
Ben Lindstromc8d1c302001-03-17 00:34:46 +0000209 if (quiet)
210 debug("Couldn't stat remote file: %s", fx2txt(status));
211 else
212 error("Couldn't stat remote file: %s", fx2txt(status));
Damien Miller33804262001-02-04 23:20:18 +1100213 return(NULL);
214 } else if (type != SSH2_FXP_ATTRS) {
215 fatal("Expected SSH2_FXP_ATTRS(%d) packet, got %d",
216 SSH2_FXP_ATTRS, type);
217 }
218 a = decode_attrib(&msg);
219 buffer_free(&msg);
220
221 return(a);
222}
223
Damien Miller3db5f532002-02-13 14:10:32 +1100224struct sftp_conn *
225do_init(int fd_in, int fd_out, u_int transfer_buflen, u_int num_requests)
Damien Miller33804262001-02-04 23:20:18 +1100226{
227 int type, version;
228 Buffer msg;
Damien Miller3db5f532002-02-13 14:10:32 +1100229 struct sftp_conn *ret;
Damien Miller33804262001-02-04 23:20:18 +1100230
231 buffer_init(&msg);
232 buffer_put_char(&msg, SSH2_FXP_INIT);
233 buffer_put_int(&msg, SSH2_FILEXFER_VERSION);
234 send_msg(fd_out, &msg);
235
236 buffer_clear(&msg);
237
238 get_msg(fd_in, &msg);
239
Kevin Stevesef4eea92001-02-05 12:42:17 +0000240 /* Expecting a VERSION reply */
Damien Miller33804262001-02-04 23:20:18 +1100241 if ((type = buffer_get_char(&msg)) != SSH2_FXP_VERSION) {
242 error("Invalid packet back from SSH2_FXP_INIT (type %d)",
243 type);
244 buffer_free(&msg);
Damien Miller3db5f532002-02-13 14:10:32 +1100245 return(NULL);
Damien Miller33804262001-02-04 23:20:18 +1100246 }
247 version = buffer_get_int(&msg);
248
249 debug2("Remote version: %d", version);
250
251 /* Check for extensions */
252 while (buffer_len(&msg) > 0) {
253 char *name = buffer_get_string(&msg, NULL);
254 char *value = buffer_get_string(&msg, NULL);
255
256 debug2("Init extension: \"%s\"", name);
257 xfree(name);
258 xfree(value);
259 }
260
261 buffer_free(&msg);
Damien Miller058316f2001-03-08 10:08:49 +1100262
Damien Miller3db5f532002-02-13 14:10:32 +1100263 ret = xmalloc(sizeof(*ret));
264 ret->fd_in = fd_in;
265 ret->fd_out = fd_out;
266 ret->transfer_buflen = transfer_buflen;
267 ret->num_requests = num_requests;
268 ret->version = version;
269 ret->msg_id = 1;
270
271 /* Some filexfer v.0 servers don't support large packets */
272 if (version == 0)
Ben Lindstroma1d81142002-04-02 20:58:11 +0000273 ret->transfer_buflen = MIN(ret->transfer_buflen, 20480);
Damien Miller3db5f532002-02-13 14:10:32 +1100274
275 return(ret);
276}
277
278u_int
279sftp_proto_version(struct sftp_conn *conn)
280{
281 return(conn->version);
Damien Miller33804262001-02-04 23:20:18 +1100282}
283
284int
Damien Miller3db5f532002-02-13 14:10:32 +1100285do_close(struct sftp_conn *conn, char *handle, u_int handle_len)
Damien Miller33804262001-02-04 23:20:18 +1100286{
287 u_int id, status;
288 Buffer msg;
289
290 buffer_init(&msg);
291
Damien Miller3db5f532002-02-13 14:10:32 +1100292 id = conn->msg_id++;
Damien Miller33804262001-02-04 23:20:18 +1100293 buffer_put_char(&msg, SSH2_FXP_CLOSE);
294 buffer_put_int(&msg, id);
295 buffer_put_string(&msg, handle, handle_len);
Damien Miller3db5f532002-02-13 14:10:32 +1100296 send_msg(conn->fd_out, &msg);
Damien Miller33804262001-02-04 23:20:18 +1100297 debug3("Sent message SSH2_FXP_CLOSE I:%d", id);
298
Damien Miller3db5f532002-02-13 14:10:32 +1100299 status = get_status(conn->fd_in, id);
Damien Miller33804262001-02-04 23:20:18 +1100300 if (status != SSH2_FX_OK)
301 error("Couldn't close file: %s", fx2txt(status));
302
303 buffer_free(&msg);
304
305 return(status);
306}
307
Damien Miller4870afd2001-03-14 10:27:09 +1100308
Ben Lindstrombba81212001-06-25 05:01:22 +0000309static int
Damien Miller3db5f532002-02-13 14:10:32 +1100310do_lsreaddir(struct sftp_conn *conn, char *path, int printflag,
Damien Miller4870afd2001-03-14 10:27:09 +1100311 SFTP_DIRENT ***dir)
Damien Miller33804262001-02-04 23:20:18 +1100312{
313 Buffer msg;
Ben Lindstrom025df4a2001-03-14 15:16:34 +0000314 u_int type, id, handle_len, i, expected_id, ents = 0;
Damien Miller33804262001-02-04 23:20:18 +1100315 char *handle;
316
Damien Miller3db5f532002-02-13 14:10:32 +1100317 id = conn->msg_id++;
Damien Miller33804262001-02-04 23:20:18 +1100318
319 buffer_init(&msg);
320 buffer_put_char(&msg, SSH2_FXP_OPENDIR);
321 buffer_put_int(&msg, id);
322 buffer_put_cstring(&msg, path);
Damien Miller3db5f532002-02-13 14:10:32 +1100323 send_msg(conn->fd_out, &msg);
Damien Miller33804262001-02-04 23:20:18 +1100324
325 buffer_clear(&msg);
326
Damien Miller3db5f532002-02-13 14:10:32 +1100327 handle = get_handle(conn->fd_in, id, &handle_len);
Damien Miller33804262001-02-04 23:20:18 +1100328 if (handle == NULL)
329 return(-1);
330
Damien Miller4870afd2001-03-14 10:27:09 +1100331 if (dir) {
332 ents = 0;
333 *dir = xmalloc(sizeof(**dir));
334 (*dir)[0] = NULL;
335 }
Damien Miller4870afd2001-03-14 10:27:09 +1100336
Damien Miller9f0f5c62001-12-21 14:45:46 +1100337 for (;;) {
Damien Miller33804262001-02-04 23:20:18 +1100338 int count;
339
Damien Miller3db5f532002-02-13 14:10:32 +1100340 id = expected_id = conn->msg_id++;
Damien Miller33804262001-02-04 23:20:18 +1100341
342 debug3("Sending SSH2_FXP_READDIR I:%d", id);
343
344 buffer_clear(&msg);
345 buffer_put_char(&msg, SSH2_FXP_READDIR);
346 buffer_put_int(&msg, id);
347 buffer_put_string(&msg, handle, handle_len);
Damien Miller3db5f532002-02-13 14:10:32 +1100348 send_msg(conn->fd_out, &msg);
Damien Miller33804262001-02-04 23:20:18 +1100349
350 buffer_clear(&msg);
351
Damien Miller3db5f532002-02-13 14:10:32 +1100352 get_msg(conn->fd_in, &msg);
Damien Miller33804262001-02-04 23:20:18 +1100353
354 type = buffer_get_char(&msg);
355 id = buffer_get_int(&msg);
356
357 debug3("Received reply T:%d I:%d", type, id);
358
359 if (id != expected_id)
360 fatal("ID mismatch (%d != %d)", id, expected_id);
361
362 if (type == SSH2_FXP_STATUS) {
363 int status = buffer_get_int(&msg);
364
365 debug3("Received SSH2_FXP_STATUS %d", status);
366
367 if (status == SSH2_FX_EOF) {
368 break;
369 } else {
370 error("Couldn't read directory: %s",
371 fx2txt(status));
Damien Miller3db5f532002-02-13 14:10:32 +1100372 do_close(conn, handle, handle_len);
Ben Lindstrom10ac33f2001-02-10 21:53:40 +0000373 return(status);
Damien Miller33804262001-02-04 23:20:18 +1100374 }
375 } else if (type != SSH2_FXP_NAME)
376 fatal("Expected SSH2_FXP_NAME(%d) packet, got %d",
377 SSH2_FXP_NAME, type);
378
379 count = buffer_get_int(&msg);
Damien Millerd7686fd2001-02-10 00:40:03 +1100380 if (count == 0)
381 break;
382 debug3("Received %d SSH2_FXP_NAME responses", count);
Damien Miller9f0f5c62001-12-21 14:45:46 +1100383 for (i = 0; i < count; i++) {
Damien Miller33804262001-02-04 23:20:18 +1100384 char *filename, *longname;
385 Attrib *a;
386
387 filename = buffer_get_string(&msg, NULL);
388 longname = buffer_get_string(&msg, NULL);
389 a = decode_attrib(&msg);
390
Damien Miller4870afd2001-03-14 10:27:09 +1100391 if (printflag)
392 printf("%s\n", longname);
393
394 if (dir) {
Ben Lindstroma3700052001-04-05 23:26:32 +0000395 *dir = xrealloc(*dir, sizeof(**dir) *
Damien Miller4870afd2001-03-14 10:27:09 +1100396 (ents + 2));
397 (*dir)[ents] = xmalloc(sizeof(***dir));
398 (*dir)[ents]->filename = xstrdup(filename);
399 (*dir)[ents]->longname = xstrdup(longname);
400 memcpy(&(*dir)[ents]->a, a, sizeof(*a));
401 (*dir)[++ents] = NULL;
402 }
Damien Miller33804262001-02-04 23:20:18 +1100403
404 xfree(filename);
405 xfree(longname);
406 }
407 }
408
409 buffer_free(&msg);
Damien Miller3db5f532002-02-13 14:10:32 +1100410 do_close(conn, handle, handle_len);
Damien Miller33804262001-02-04 23:20:18 +1100411 xfree(handle);
412
413 return(0);
414}
415
416int
Damien Miller3db5f532002-02-13 14:10:32 +1100417do_ls(struct sftp_conn *conn, char *path)
Damien Miller4870afd2001-03-14 10:27:09 +1100418{
Damien Miller3db5f532002-02-13 14:10:32 +1100419 return(do_lsreaddir(conn, path, 1, NULL));
Damien Miller4870afd2001-03-14 10:27:09 +1100420}
421
422int
Damien Miller3db5f532002-02-13 14:10:32 +1100423do_readdir(struct sftp_conn *conn, char *path, SFTP_DIRENT ***dir)
Damien Miller4870afd2001-03-14 10:27:09 +1100424{
Damien Miller3db5f532002-02-13 14:10:32 +1100425 return(do_lsreaddir(conn, path, 0, dir));
Damien Miller4870afd2001-03-14 10:27:09 +1100426}
427
428void free_sftp_dirents(SFTP_DIRENT **s)
429{
430 int i;
Damien Miller9f0f5c62001-12-21 14:45:46 +1100431
432 for (i = 0; s[i]; i++) {
Damien Miller4870afd2001-03-14 10:27:09 +1100433 xfree(s[i]->filename);
434 xfree(s[i]->longname);
435 xfree(s[i]);
436 }
437 xfree(s);
438}
439
440int
Damien Miller3db5f532002-02-13 14:10:32 +1100441do_rm(struct sftp_conn *conn, char *path)
Damien Miller33804262001-02-04 23:20:18 +1100442{
443 u_int status, id;
444
445 debug2("Sending SSH2_FXP_REMOVE \"%s\"", path);
446
Damien Miller3db5f532002-02-13 14:10:32 +1100447 id = conn->msg_id++;
Ben Lindstrom6328ab32002-03-22 02:54:23 +0000448 send_string_request(conn->fd_out, id, SSH2_FXP_REMOVE, path,
Damien Miller3db5f532002-02-13 14:10:32 +1100449 strlen(path));
450 status = get_status(conn->fd_in, id);
Damien Miller33804262001-02-04 23:20:18 +1100451 if (status != SSH2_FX_OK)
452 error("Couldn't delete file: %s", fx2txt(status));
453 return(status);
454}
455
456int
Damien Miller3db5f532002-02-13 14:10:32 +1100457do_mkdir(struct sftp_conn *conn, char *path, Attrib *a)
Damien Miller33804262001-02-04 23:20:18 +1100458{
459 u_int status, id;
460
Damien Miller3db5f532002-02-13 14:10:32 +1100461 id = conn->msg_id++;
462 send_string_attrs_request(conn->fd_out, id, SSH2_FXP_MKDIR, path,
Damien Miller33804262001-02-04 23:20:18 +1100463 strlen(path), a);
464
Damien Miller3db5f532002-02-13 14:10:32 +1100465 status = get_status(conn->fd_in, id);
Damien Miller33804262001-02-04 23:20:18 +1100466 if (status != SSH2_FX_OK)
467 error("Couldn't create directory: %s", fx2txt(status));
468
469 return(status);
470}
471
472int
Damien Miller3db5f532002-02-13 14:10:32 +1100473do_rmdir(struct sftp_conn *conn, char *path)
Damien Miller33804262001-02-04 23:20:18 +1100474{
475 u_int status, id;
476
Damien Miller3db5f532002-02-13 14:10:32 +1100477 id = conn->msg_id++;
478 send_string_request(conn->fd_out, id, SSH2_FXP_RMDIR, path,
479 strlen(path));
Damien Miller33804262001-02-04 23:20:18 +1100480
Damien Miller3db5f532002-02-13 14:10:32 +1100481 status = get_status(conn->fd_in, id);
Damien Miller33804262001-02-04 23:20:18 +1100482 if (status != SSH2_FX_OK)
483 error("Couldn't remove directory: %s", fx2txt(status));
484
485 return(status);
486}
487
488Attrib *
Damien Miller3db5f532002-02-13 14:10:32 +1100489do_stat(struct sftp_conn *conn, char *path, int quiet)
Damien Miller33804262001-02-04 23:20:18 +1100490{
491 u_int id;
492
Damien Miller3db5f532002-02-13 14:10:32 +1100493 id = conn->msg_id++;
494
Ben Lindstrom6328ab32002-03-22 02:54:23 +0000495 send_string_request(conn->fd_out, id,
496 conn->version == 0 ? SSH2_FXP_STAT_VERSION_0 : SSH2_FXP_STAT,
Damien Miller3db5f532002-02-13 14:10:32 +1100497 path, strlen(path));
498
499 return(get_decode_stat(conn->fd_in, id, quiet));
Damien Miller33804262001-02-04 23:20:18 +1100500}
501
502Attrib *
Damien Miller3db5f532002-02-13 14:10:32 +1100503do_lstat(struct sftp_conn *conn, char *path, int quiet)
Damien Miller33804262001-02-04 23:20:18 +1100504{
505 u_int id;
506
Damien Miller3db5f532002-02-13 14:10:32 +1100507 if (conn->version == 0) {
508 if (quiet)
509 debug("Server version does not support lstat operation");
510 else
Ben Lindstromf26ff5b2002-04-02 21:00:31 +0000511 log("Server version does not support lstat operation");
512 return(do_stat(conn, path, quiet));
Damien Miller3db5f532002-02-13 14:10:32 +1100513 }
514
515 id = conn->msg_id++;
516 send_string_request(conn->fd_out, id, SSH2_FXP_LSTAT, path,
517 strlen(path));
518
519 return(get_decode_stat(conn->fd_in, id, quiet));
Damien Miller33804262001-02-04 23:20:18 +1100520}
521
522Attrib *
Damien Miller3db5f532002-02-13 14:10:32 +1100523do_fstat(struct sftp_conn *conn, char *handle, u_int handle_len, int quiet)
Damien Miller33804262001-02-04 23:20:18 +1100524{
525 u_int id;
526
Damien Miller3db5f532002-02-13 14:10:32 +1100527 id = conn->msg_id++;
528 send_string_request(conn->fd_out, id, SSH2_FXP_FSTAT, handle,
529 handle_len);
530
531 return(get_decode_stat(conn->fd_in, id, quiet));
Damien Miller33804262001-02-04 23:20:18 +1100532}
533
534int
Damien Miller3db5f532002-02-13 14:10:32 +1100535do_setstat(struct sftp_conn *conn, char *path, Attrib *a)
Damien Miller33804262001-02-04 23:20:18 +1100536{
537 u_int status, id;
538
Damien Miller3db5f532002-02-13 14:10:32 +1100539 id = conn->msg_id++;
540 send_string_attrs_request(conn->fd_out, id, SSH2_FXP_SETSTAT, path,
Damien Miller33804262001-02-04 23:20:18 +1100541 strlen(path), a);
542
Damien Miller3db5f532002-02-13 14:10:32 +1100543 status = get_status(conn->fd_in, id);
Damien Miller33804262001-02-04 23:20:18 +1100544 if (status != SSH2_FX_OK)
545 error("Couldn't setstat on \"%s\": %s", path,
546 fx2txt(status));
547
548 return(status);
549}
550
551int
Damien Miller3db5f532002-02-13 14:10:32 +1100552do_fsetstat(struct sftp_conn *conn, char *handle, u_int handle_len,
Damien Miller33804262001-02-04 23:20:18 +1100553 Attrib *a)
554{
555 u_int status, id;
556
Damien Miller3db5f532002-02-13 14:10:32 +1100557 id = conn->msg_id++;
558 send_string_attrs_request(conn->fd_out, id, SSH2_FXP_FSETSTAT, handle,
Damien Miller33804262001-02-04 23:20:18 +1100559 handle_len, a);
560
Damien Miller3db5f532002-02-13 14:10:32 +1100561 status = get_status(conn->fd_in, id);
Damien Miller33804262001-02-04 23:20:18 +1100562 if (status != SSH2_FX_OK)
563 error("Couldn't fsetstat: %s", fx2txt(status));
564
565 return(status);
566}
567
568char *
Damien Miller3db5f532002-02-13 14:10:32 +1100569do_realpath(struct sftp_conn *conn, char *path)
Damien Miller33804262001-02-04 23:20:18 +1100570{
571 Buffer msg;
572 u_int type, expected_id, count, id;
573 char *filename, *longname;
574 Attrib *a;
575
Damien Miller3db5f532002-02-13 14:10:32 +1100576 expected_id = id = conn->msg_id++;
577 send_string_request(conn->fd_out, id, SSH2_FXP_REALPATH, path,
578 strlen(path));
Damien Miller33804262001-02-04 23:20:18 +1100579
580 buffer_init(&msg);
581
Damien Miller3db5f532002-02-13 14:10:32 +1100582 get_msg(conn->fd_in, &msg);
Damien Miller33804262001-02-04 23:20:18 +1100583 type = buffer_get_char(&msg);
584 id = buffer_get_int(&msg);
585
586 if (id != expected_id)
587 fatal("ID mismatch (%d != %d)", id, expected_id);
588
589 if (type == SSH2_FXP_STATUS) {
590 u_int status = buffer_get_int(&msg);
591
592 error("Couldn't canonicalise: %s", fx2txt(status));
593 return(NULL);
594 } else if (type != SSH2_FXP_NAME)
595 fatal("Expected SSH2_FXP_NAME(%d) packet, got %d",
596 SSH2_FXP_NAME, type);
597
598 count = buffer_get_int(&msg);
599 if (count != 1)
600 fatal("Got multiple names (%d) from SSH_FXP_REALPATH", count);
601
602 filename = buffer_get_string(&msg, NULL);
603 longname = buffer_get_string(&msg, NULL);
604 a = decode_attrib(&msg);
605
606 debug3("SSH_FXP_REALPATH %s -> %s", path, filename);
607
608 xfree(longname);
609
610 buffer_free(&msg);
611
612 return(filename);
613}
614
615int
Damien Miller3db5f532002-02-13 14:10:32 +1100616do_rename(struct sftp_conn *conn, char *oldpath, char *newpath)
Damien Miller33804262001-02-04 23:20:18 +1100617{
618 Buffer msg;
619 u_int status, id;
620
621 buffer_init(&msg);
622
623 /* Send rename request */
Damien Miller3db5f532002-02-13 14:10:32 +1100624 id = conn->msg_id++;
Damien Miller33804262001-02-04 23:20:18 +1100625 buffer_put_char(&msg, SSH2_FXP_RENAME);
626 buffer_put_int(&msg, id);
627 buffer_put_cstring(&msg, oldpath);
628 buffer_put_cstring(&msg, newpath);
Damien Miller3db5f532002-02-13 14:10:32 +1100629 send_msg(conn->fd_out, &msg);
Damien Miller33804262001-02-04 23:20:18 +1100630 debug3("Sent message SSH2_FXP_RENAME \"%s\" -> \"%s\"", oldpath,
631 newpath);
632 buffer_free(&msg);
633
Damien Miller3db5f532002-02-13 14:10:32 +1100634 status = get_status(conn->fd_in, id);
Damien Miller33804262001-02-04 23:20:18 +1100635 if (status != SSH2_FX_OK)
Damien Miller3db5f532002-02-13 14:10:32 +1100636 error("Couldn't rename file \"%s\" to \"%s\": %s", oldpath,
637 newpath, fx2txt(status));
Damien Miller33804262001-02-04 23:20:18 +1100638
639 return(status);
640}
641
642int
Damien Miller3db5f532002-02-13 14:10:32 +1100643do_symlink(struct sftp_conn *conn, char *oldpath, char *newpath)
Damien Miller058316f2001-03-08 10:08:49 +1100644{
645 Buffer msg;
646 u_int status, id;
647
Damien Miller3db5f532002-02-13 14:10:32 +1100648 if (conn->version < 3) {
649 error("This server does not support the symlink operation");
650 return(SSH2_FX_OP_UNSUPPORTED);
651 }
652
Damien Miller058316f2001-03-08 10:08:49 +1100653 buffer_init(&msg);
654
655 /* Send rename request */
Damien Miller3db5f532002-02-13 14:10:32 +1100656 id = conn->msg_id++;
Damien Miller058316f2001-03-08 10:08:49 +1100657 buffer_put_char(&msg, SSH2_FXP_SYMLINK);
658 buffer_put_int(&msg, id);
659 buffer_put_cstring(&msg, oldpath);
660 buffer_put_cstring(&msg, newpath);
Damien Miller3db5f532002-02-13 14:10:32 +1100661 send_msg(conn->fd_out, &msg);
Damien Miller058316f2001-03-08 10:08:49 +1100662 debug3("Sent message SSH2_FXP_SYMLINK \"%s\" -> \"%s\"", oldpath,
663 newpath);
664 buffer_free(&msg);
665
Damien Miller3db5f532002-02-13 14:10:32 +1100666 status = get_status(conn->fd_in, id);
Damien Miller058316f2001-03-08 10:08:49 +1100667 if (status != SSH2_FX_OK)
Damien Miller3db5f532002-02-13 14:10:32 +1100668 error("Couldn't rename file \"%s\" to \"%s\": %s", oldpath,
669 newpath, fx2txt(status));
Damien Miller058316f2001-03-08 10:08:49 +1100670
671 return(status);
672}
673
674char *
Damien Miller3db5f532002-02-13 14:10:32 +1100675do_readlink(struct sftp_conn *conn, char *path)
Damien Miller058316f2001-03-08 10:08:49 +1100676{
677 Buffer msg;
678 u_int type, expected_id, count, id;
679 char *filename, *longname;
680 Attrib *a;
681
Damien Miller3db5f532002-02-13 14:10:32 +1100682 expected_id = id = conn->msg_id++;
683 send_string_request(conn->fd_out, id, SSH2_FXP_READLINK, path,
684 strlen(path));
Damien Miller058316f2001-03-08 10:08:49 +1100685
686 buffer_init(&msg);
687
Damien Miller3db5f532002-02-13 14:10:32 +1100688 get_msg(conn->fd_in, &msg);
Damien Miller058316f2001-03-08 10:08:49 +1100689 type = buffer_get_char(&msg);
690 id = buffer_get_int(&msg);
691
692 if (id != expected_id)
693 fatal("ID mismatch (%d != %d)", id, expected_id);
694
695 if (type == SSH2_FXP_STATUS) {
696 u_int status = buffer_get_int(&msg);
697
698 error("Couldn't readlink: %s", fx2txt(status));
699 return(NULL);
700 } else if (type != SSH2_FXP_NAME)
701 fatal("Expected SSH2_FXP_NAME(%d) packet, got %d",
702 SSH2_FXP_NAME, type);
703
704 count = buffer_get_int(&msg);
705 if (count != 1)
706 fatal("Got multiple names (%d) from SSH_FXP_READLINK", count);
707
708 filename = buffer_get_string(&msg, NULL);
709 longname = buffer_get_string(&msg, NULL);
710 a = decode_attrib(&msg);
711
712 debug3("SSH_FXP_READLINK %s -> %s", path, filename);
713
714 xfree(longname);
715
716 buffer_free(&msg);
717
718 return(filename);
719}
720
Damien Miller16a13332002-02-13 14:03:56 +1100721static void
722send_read_request(int fd_out, u_int id, u_int64_t offset, u_int len,
723 char *handle, u_int handle_len)
724{
725 Buffer msg;
Ben Lindstrom6328ab32002-03-22 02:54:23 +0000726
Damien Miller16a13332002-02-13 14:03:56 +1100727 buffer_init(&msg);
728 buffer_clear(&msg);
729 buffer_put_char(&msg, SSH2_FXP_READ);
730 buffer_put_int(&msg, id);
731 buffer_put_string(&msg, handle, handle_len);
732 buffer_put_int64(&msg, offset);
733 buffer_put_int(&msg, len);
734 send_msg(fd_out, &msg);
735 buffer_free(&msg);
Ben Lindstrom6328ab32002-03-22 02:54:23 +0000736}
Damien Miller16a13332002-02-13 14:03:56 +1100737
Damien Miller058316f2001-03-08 10:08:49 +1100738int
Damien Miller3db5f532002-02-13 14:10:32 +1100739do_download(struct sftp_conn *conn, char *remote_path, char *local_path,
740 int pflag)
Damien Miller33804262001-02-04 23:20:18 +1100741{
Damien Miller33804262001-02-04 23:20:18 +1100742 Attrib junk, *a;
Damien Miller16a13332002-02-13 14:03:56 +1100743 Buffer msg;
744 char *handle;
745 int local_fd, status, num_req, max_req, write_error;
746 int read_error, write_errno;
747 u_int64_t offset, size;
Damien Miller3db5f532002-02-13 14:10:32 +1100748 u_int handle_len, mode, type, id, buflen;
Damien Miller16a13332002-02-13 14:03:56 +1100749 struct request {
750 u_int id;
751 u_int len;
752 u_int64_t offset;
Ben Lindstrom6328ab32002-03-22 02:54:23 +0000753 TAILQ_ENTRY(request) tq;
Damien Miller16a13332002-02-13 14:03:56 +1100754 };
755 TAILQ_HEAD(reqhead, request) requests;
756 struct request *req;
757
758 TAILQ_INIT(&requests);
Damien Miller33804262001-02-04 23:20:18 +1100759
Damien Miller3db5f532002-02-13 14:10:32 +1100760 a = do_stat(conn, remote_path, 0);
Damien Miller33804262001-02-04 23:20:18 +1100761 if (a == NULL)
762 return(-1);
763
764 /* XXX: should we preserve set[ug]id? */
765 if (a->flags & SSH2_FILEXFER_ATTR_PERMISSIONS)
766 mode = S_IWRITE | (a->perm & 0777);
767 else
768 mode = 0666;
769
Ben Lindstromc8d1c302001-03-17 00:34:46 +0000770 if ((a->flags & SSH2_FILEXFER_ATTR_PERMISSIONS) &&
771 (a->perm & S_IFDIR)) {
772 error("Cannot download a directory: %s", remote_path);
773 return(-1);
774 }
775
Damien Miller16a13332002-02-13 14:03:56 +1100776 if (a->flags & SSH2_FILEXFER_ATTR_SIZE)
777 size = a->size;
778 else
779 size = 0;
780
Damien Miller3db5f532002-02-13 14:10:32 +1100781 buflen = conn->transfer_buflen;
Damien Miller33804262001-02-04 23:20:18 +1100782 buffer_init(&msg);
783
784 /* Send open request */
Damien Miller3db5f532002-02-13 14:10:32 +1100785 id = conn->msg_id++;
Damien Miller33804262001-02-04 23:20:18 +1100786 buffer_put_char(&msg, SSH2_FXP_OPEN);
787 buffer_put_int(&msg, id);
788 buffer_put_cstring(&msg, remote_path);
789 buffer_put_int(&msg, SSH2_FXF_READ);
790 attrib_clear(&junk); /* Send empty attributes */
791 encode_attrib(&msg, &junk);
Damien Miller3db5f532002-02-13 14:10:32 +1100792 send_msg(conn->fd_out, &msg);
Damien Miller33804262001-02-04 23:20:18 +1100793 debug3("Sent message SSH2_FXP_OPEN I:%d P:%s", id, remote_path);
794
Damien Miller3db5f532002-02-13 14:10:32 +1100795 handle = get_handle(conn->fd_in, id, &handle_len);
Damien Miller33804262001-02-04 23:20:18 +1100796 if (handle == NULL) {
797 buffer_free(&msg);
Damien Miller33804262001-02-04 23:20:18 +1100798 return(-1);
799 }
800
Damien Miller3db5f532002-02-13 14:10:32 +1100801 local_fd = open(local_path, O_WRONLY | O_CREAT | O_TRUNC, mode);
802 if (local_fd == -1) {
803 error("Couldn't open local file \"%s\" for writing: %s",
804 local_path, strerror(errno));
Ben Lindstrom021fcd32002-02-26 18:02:43 +0000805 buffer_free(&msg);
806 xfree(handle);
Damien Miller3db5f532002-02-13 14:10:32 +1100807 return(-1);
808 }
809
Damien Miller33804262001-02-04 23:20:18 +1100810 /* Read from remote and write to local */
Damien Miller16a13332002-02-13 14:03:56 +1100811 write_error = read_error = write_errno = num_req = offset = 0;
812 max_req = 1;
813 while (num_req > 0 || max_req > 0) {
Damien Miller33804262001-02-04 23:20:18 +1100814 char *data;
Damien Miller16a13332002-02-13 14:03:56 +1100815 u_int len;
Damien Miller33804262001-02-04 23:20:18 +1100816
Damien Miller16a13332002-02-13 14:03:56 +1100817 /* Send some more requests */
818 while (num_req < max_req) {
Ben Lindstrom6328ab32002-03-22 02:54:23 +0000819 debug3("Request range %llu -> %llu (%d/%d)",
Ben Lindstromd45f28c2002-03-22 01:00:57 +0000820 (unsigned long long)offset,
821 (unsigned long long)offset + buflen - 1,
822 num_req, max_req);
Damien Miller16a13332002-02-13 14:03:56 +1100823 req = xmalloc(sizeof(*req));
Damien Miller3db5f532002-02-13 14:10:32 +1100824 req->id = conn->msg_id++;
Damien Miller16a13332002-02-13 14:03:56 +1100825 req->len = buflen;
826 req->offset = offset;
827 offset += buflen;
828 num_req++;
829 TAILQ_INSERT_TAIL(&requests, req, tq);
Ben Lindstrom6328ab32002-03-22 02:54:23 +0000830 send_read_request(conn->fd_out, req->id, req->offset,
Damien Miller16a13332002-02-13 14:03:56 +1100831 req->len, handle, handle_len);
832 }
Damien Miller33804262001-02-04 23:20:18 +1100833
834 buffer_clear(&msg);
Damien Miller3db5f532002-02-13 14:10:32 +1100835 get_msg(conn->fd_in, &msg);
Damien Miller33804262001-02-04 23:20:18 +1100836 type = buffer_get_char(&msg);
837 id = buffer_get_int(&msg);
Damien Miller16a13332002-02-13 14:03:56 +1100838 debug3("Received reply T:%d I:%d R:%d", type, id, max_req);
Damien Miller33804262001-02-04 23:20:18 +1100839
Damien Miller16a13332002-02-13 14:03:56 +1100840 /* Find the request in our queue */
841 for(req = TAILQ_FIRST(&requests);
842 req != NULL && req->id != id;
843 req = TAILQ_NEXT(req, tq))
844 ;
845 if (req == NULL)
846 fatal("Unexpected reply %u", id);
847
848 switch (type) {
849 case SSH2_FXP_STATUS:
850 status = buffer_get_int(&msg);
851 if (status != SSH2_FX_EOF)
852 read_error = 1;
853 max_req = 0;
854 TAILQ_REMOVE(&requests, req, tq);
855 xfree(req);
856 num_req--;
857 break;
858 case SSH2_FXP_DATA:
859 data = buffer_get_string(&msg, &len);
Ben Lindstromeb505452002-03-22 01:03:15 +0000860 debug3("Received data %llu -> %llu",
Ben Lindstrom6328ab32002-03-22 02:54:23 +0000861 (unsigned long long)req->offset,
Ben Lindstromeb505452002-03-22 01:03:15 +0000862 (unsigned long long)req->offset + len - 1);
Damien Miller16a13332002-02-13 14:03:56 +1100863 if (len > req->len)
864 fatal("Received more data than asked for "
865 "%d > %d", len, req->len);
866 if ((lseek(local_fd, req->offset, SEEK_SET) == -1 ||
867 atomicio(write, local_fd, data, len) != len) &&
868 !write_error) {
869 write_errno = errno;
870 write_error = 1;
871 max_req = 0;
Damien Miller33804262001-02-04 23:20:18 +1100872 }
Damien Miller16a13332002-02-13 14:03:56 +1100873 xfree(data);
874
875 if (len == req->len) {
876 TAILQ_REMOVE(&requests, req, tq);
877 xfree(req);
878 num_req--;
879 } else {
880 /* Resend the request for the missing data */
881 debug3("Short data block, re-requesting "
Ben Lindstromeb505452002-03-22 01:03:15 +0000882 "%llu -> %llu (%2d)",
Ben Lindstrom6328ab32002-03-22 02:54:23 +0000883 (unsigned long long)req->offset + len,
Ben Lindstrom83b79e42002-03-22 01:05:27 +0000884 (unsigned long long)req->offset +
885 req->len - 1, num_req);
Damien Miller3db5f532002-02-13 14:10:32 +1100886 req->id = conn->msg_id++;
Damien Miller16a13332002-02-13 14:03:56 +1100887 req->len -= len;
888 req->offset += len;
Ben Lindstrom6328ab32002-03-22 02:54:23 +0000889 send_read_request(conn->fd_out, req->id,
Damien Miller3db5f532002-02-13 14:10:32 +1100890 req->offset, req->len, handle, handle_len);
Damien Miller16a13332002-02-13 14:03:56 +1100891 /* Reduce the request size */
892 if (len < buflen)
893 buflen = MAX(MIN_READ_SIZE, len);
894 }
895 if (max_req > 0) { /* max_req = 0 iff EOF received */
896 if (size > 0 && offset > size) {
897 /* Only one request at a time
898 * after the expected EOF */
899 debug3("Finish at %llu (%2d)",
Ben Lindstromeb505452002-03-22 01:03:15 +0000900 (unsigned long long)offset,
901 num_req);
Damien Miller16a13332002-02-13 14:03:56 +1100902 max_req = 1;
903 }
Damien Miller3db5f532002-02-13 14:10:32 +1100904 else if (max_req < conn->num_requests + 1) {
Damien Miller16a13332002-02-13 14:03:56 +1100905 ++max_req;
906 }
907 }
908 break;
909 default:
Damien Miller33804262001-02-04 23:20:18 +1100910 fatal("Expected SSH2_FXP_DATA(%d) packet, got %d",
911 SSH2_FXP_DATA, type);
912 }
Damien Miller33804262001-02-04 23:20:18 +1100913 }
Damien Miller33804262001-02-04 23:20:18 +1100914
Damien Miller16a13332002-02-13 14:03:56 +1100915 /* Sanity check */
916 if (TAILQ_FIRST(&requests) != NULL)
917 fatal("Transfer complete, but requests still in queue");
918
919 if (read_error) {
Ben Lindstrom6328ab32002-03-22 02:54:23 +0000920 error("Couldn't read from remote file \"%s\" : %s",
Damien Miller3db5f532002-02-13 14:10:32 +1100921 remote_path, fx2txt(status));
922 do_close(conn, handle, handle_len);
Damien Miller16a13332002-02-13 14:03:56 +1100923 } else if (write_error) {
Damien Miller3db5f532002-02-13 14:10:32 +1100924 error("Couldn't write to \"%s\": %s", local_path,
925 strerror(write_errno));
926 status = -1;
927 do_close(conn, handle, handle_len);
Damien Miller16a13332002-02-13 14:03:56 +1100928 } else {
Damien Miller3db5f532002-02-13 14:10:32 +1100929 status = do_close(conn, handle, handle_len);
Damien Miller16a13332002-02-13 14:03:56 +1100930
931 /* Override umask and utimes if asked */
Ben Lindstrom6dc75f52001-02-17 16:47:47 +0000932#ifdef HAVE_FCHMOD
Damien Miller16a13332002-02-13 14:03:56 +1100933 if (pflag && fchmod(local_fd, mode) == -1)
Ben Lindstrom6dc75f52001-02-17 16:47:47 +0000934#else
Damien Miller16a13332002-02-13 14:03:56 +1100935 if (pflag && chmod(local_path, mode) == -1)
Ben Lindstrom6dc75f52001-02-17 16:47:47 +0000936#endif /* HAVE_FCHMOD */
Damien Miller16a13332002-02-13 14:03:56 +1100937 error("Couldn't set mode on \"%s\": %s", local_path,
938 strerror(errno));
939 if (pflag && (a->flags & SSH2_FILEXFER_ATTR_ACMODTIME)) {
940 struct timeval tv[2];
941 tv[0].tv_sec = a->atime;
942 tv[1].tv_sec = a->mtime;
943 tv[0].tv_usec = tv[1].tv_usec = 0;
944 if (utimes(local_path, tv) == -1)
945 error("Can't set times on \"%s\": %s",
946 local_path, strerror(errno));
947 }
Ben Lindstrom9d4f2c82001-02-15 03:22:45 +0000948 }
Damien Millerd7686fd2001-02-10 00:40:03 +1100949 close(local_fd);
950 buffer_free(&msg);
951 xfree(handle);
Damien Miller3db5f532002-02-13 14:10:32 +1100952
953 return(status);
Damien Miller33804262001-02-04 23:20:18 +1100954}
955
956int
Damien Miller3db5f532002-02-13 14:10:32 +1100957do_upload(struct sftp_conn *conn, char *local_path, char *remote_path,
958 int pflag)
Damien Miller33804262001-02-04 23:20:18 +1100959{
Damien Miller8829d362002-02-08 22:04:05 +1100960 int local_fd, status;
Damien Miller5873dfd2002-02-13 14:04:37 +1100961 u_int handle_len, id, type;
Damien Miller33804262001-02-04 23:20:18 +1100962 u_int64_t offset;
Damien Miller8829d362002-02-08 22:04:05 +1100963 char *handle, *data;
Damien Miller33804262001-02-04 23:20:18 +1100964 Buffer msg;
965 struct stat sb;
966 Attrib a;
Damien Miller16a13332002-02-13 14:03:56 +1100967 u_int32_t startid;
968 u_int32_t ackid;
Damien Miller5873dfd2002-02-13 14:04:37 +1100969 struct outstanding_ack {
970 u_int id;
971 u_int len;
972 u_int64_t offset;
Ben Lindstrom6328ab32002-03-22 02:54:23 +0000973 TAILQ_ENTRY(outstanding_ack) tq;
Damien Miller5873dfd2002-02-13 14:04:37 +1100974 };
975 TAILQ_HEAD(ackhead, outstanding_ack) acks;
976 struct outstanding_ack *ack;
977
978 TAILQ_INIT(&acks);
Damien Miller33804262001-02-04 23:20:18 +1100979
980 if ((local_fd = open(local_path, O_RDONLY, 0)) == -1) {
981 error("Couldn't open local file \"%s\" for reading: %s",
982 local_path, strerror(errno));
983 return(-1);
984 }
985 if (fstat(local_fd, &sb) == -1) {
986 error("Couldn't fstat local file \"%s\": %s",
987 local_path, strerror(errno));
988 close(local_fd);
989 return(-1);
990 }
991 stat_to_attrib(&sb, &a);
992
993 a.flags &= ~SSH2_FILEXFER_ATTR_SIZE;
994 a.flags &= ~SSH2_FILEXFER_ATTR_UIDGID;
995 a.perm &= 0777;
996 if (!pflag)
997 a.flags &= ~SSH2_FILEXFER_ATTR_ACMODTIME;
998
999 buffer_init(&msg);
1000
1001 /* Send open request */
Damien Miller3db5f532002-02-13 14:10:32 +11001002 id = conn->msg_id++;
Damien Miller33804262001-02-04 23:20:18 +11001003 buffer_put_char(&msg, SSH2_FXP_OPEN);
1004 buffer_put_int(&msg, id);
1005 buffer_put_cstring(&msg, remote_path);
1006 buffer_put_int(&msg, SSH2_FXF_WRITE|SSH2_FXF_CREAT|SSH2_FXF_TRUNC);
1007 encode_attrib(&msg, &a);
Damien Miller3db5f532002-02-13 14:10:32 +11001008 send_msg(conn->fd_out, &msg);
Damien Miller33804262001-02-04 23:20:18 +11001009 debug3("Sent message SSH2_FXP_OPEN I:%d P:%s", id, remote_path);
1010
1011 buffer_clear(&msg);
1012
Damien Miller3db5f532002-02-13 14:10:32 +11001013 handle = get_handle(conn->fd_in, id, &handle_len);
Damien Miller33804262001-02-04 23:20:18 +11001014 if (handle == NULL) {
1015 close(local_fd);
1016 buffer_free(&msg);
1017 return(-1);
1018 }
1019
Damien Miller16a13332002-02-13 14:03:56 +11001020 startid = ackid = id + 1;
Damien Miller3db5f532002-02-13 14:10:32 +11001021 data = xmalloc(conn->transfer_buflen);
Damien Miller8829d362002-02-08 22:04:05 +11001022
Damien Miller33804262001-02-04 23:20:18 +11001023 /* Read from local and write to remote */
1024 offset = 0;
Damien Miller9f0f5c62001-12-21 14:45:46 +11001025 for (;;) {
Damien Miller33804262001-02-04 23:20:18 +11001026 int len;
Damien Miller33804262001-02-04 23:20:18 +11001027
1028 /*
1029 * Can't use atomicio here because it returns 0 on EOF, thus losing
1030 * the last block of the file
1031 */
1032 do
Damien Miller3db5f532002-02-13 14:10:32 +11001033 len = read(local_fd, data, conn->transfer_buflen);
Damien Miller33804262001-02-04 23:20:18 +11001034 while ((len == -1) && (errno == EINTR || errno == EAGAIN));
1035
1036 if (len == -1)
1037 fatal("Couldn't read from \"%s\": %s", local_path,
1038 strerror(errno));
Damien Miller16a13332002-02-13 14:03:56 +11001039
1040 if (len != 0) {
Damien Miller5873dfd2002-02-13 14:04:37 +11001041 ack = xmalloc(sizeof(*ack));
1042 ack->id = ++id;
1043 ack->offset = offset;
1044 ack->len = len;
1045 TAILQ_INSERT_TAIL(&acks, ack, tq);
1046
Damien Miller16a13332002-02-13 14:03:56 +11001047 buffer_clear(&msg);
1048 buffer_put_char(&msg, SSH2_FXP_WRITE);
Damien Miller5873dfd2002-02-13 14:04:37 +11001049 buffer_put_int(&msg, ack->id);
Damien Miller16a13332002-02-13 14:03:56 +11001050 buffer_put_string(&msg, handle, handle_len);
1051 buffer_put_int64(&msg, offset);
1052 buffer_put_string(&msg, data, len);
Damien Miller3db5f532002-02-13 14:10:32 +11001053 send_msg(conn->fd_out, &msg);
Damien Miller16a13332002-02-13 14:03:56 +11001054 debug3("Sent message SSH2_FXP_WRITE I:%d O:%llu S:%u",
Ben Lindstromeb505452002-03-22 01:03:15 +00001055 id, (unsigned long long)offset, len);
Damien Miller5873dfd2002-02-13 14:04:37 +11001056 } else if (TAILQ_FIRST(&acks) == NULL)
Damien Miller33804262001-02-04 23:20:18 +11001057 break;
1058
Damien Miller5873dfd2002-02-13 14:04:37 +11001059 if (ack == NULL)
1060 fatal("Unexpected ACK %u", id);
1061
Ben Lindstrom6328ab32002-03-22 02:54:23 +00001062 if (id == startid || len == 0 ||
Damien Miller3db5f532002-02-13 14:10:32 +11001063 id - ackid >= conn->num_requests) {
Ben Lindstrom06e95152002-04-06 04:16:45 +00001064 u_int r_id;
1065
Damien Miller5873dfd2002-02-13 14:04:37 +11001066 buffer_clear(&msg);
Damien Miller3db5f532002-02-13 14:10:32 +11001067 get_msg(conn->fd_in, &msg);
Damien Miller5873dfd2002-02-13 14:04:37 +11001068 type = buffer_get_char(&msg);
Ben Lindstrom06e95152002-04-06 04:16:45 +00001069 r_id = buffer_get_int(&msg);
Damien Miller5873dfd2002-02-13 14:04:37 +11001070
1071 if (type != SSH2_FXP_STATUS)
1072 fatal("Expected SSH2_FXP_STATUS(%d) packet, "
1073 "got %d", SSH2_FXP_STATUS, type);
1074
1075 status = buffer_get_int(&msg);
1076 debug3("SSH2_FXP_STATUS %d", status);
1077
1078 /* Find the request in our queue */
1079 for(ack = TAILQ_FIRST(&acks);
Ben Lindstrom06e95152002-04-06 04:16:45 +00001080 ack != NULL && ack->id != r_id;
Damien Miller5873dfd2002-02-13 14:04:37 +11001081 ack = TAILQ_NEXT(ack, tq))
1082 ;
1083 if (ack == NULL)
Ben Lindstrom06e95152002-04-06 04:16:45 +00001084 fatal("Can't find request for ID %d", r_id);
Damien Miller5873dfd2002-02-13 14:04:37 +11001085 TAILQ_REMOVE(&acks, ack, tq);
1086
Damien Miller16a13332002-02-13 14:03:56 +11001087 if (status != SSH2_FX_OK) {
1088 error("Couldn't write to remote file \"%s\": %s",
1089 remote_path, fx2txt(status));
Damien Miller3db5f532002-02-13 14:10:32 +11001090 do_close(conn, handle, handle_len);
Damien Miller16a13332002-02-13 14:03:56 +11001091 close(local_fd);
1092 goto done;
1093 }
Ben Lindstrom6328ab32002-03-22 02:54:23 +00001094 debug3("In write loop, ack for %u %d bytes at %llu",
Ben Lindstromeb505452002-03-22 01:03:15 +00001095 ack->id, ack->len, (unsigned long long)ack->offset);
Damien Miller16a13332002-02-13 14:03:56 +11001096 ++ackid;
Damien Miller5873dfd2002-02-13 14:04:37 +11001097 free(ack);
Damien Miller33804262001-02-04 23:20:18 +11001098 }
Damien Miller33804262001-02-04 23:20:18 +11001099 offset += len;
1100 }
Damien Miller8829d362002-02-08 22:04:05 +11001101 xfree(data);
Damien Miller33804262001-02-04 23:20:18 +11001102
1103 if (close(local_fd) == -1) {
1104 error("Couldn't close local file \"%s\": %s", local_path,
1105 strerror(errno));
Damien Miller3db5f532002-02-13 14:10:32 +11001106 do_close(conn, handle, handle_len);
Damien Millerd7686fd2001-02-10 00:40:03 +11001107 status = -1;
1108 goto done;
Damien Miller33804262001-02-04 23:20:18 +11001109 }
1110
Ben Lindstrom9d4f2c82001-02-15 03:22:45 +00001111 /* Override umask and utimes if asked */
1112 if (pflag)
Damien Miller3db5f532002-02-13 14:10:32 +11001113 do_fsetstat(conn, handle, handle_len, &a);
Ben Lindstrom9d4f2c82001-02-15 03:22:45 +00001114
Damien Miller3db5f532002-02-13 14:10:32 +11001115 status = do_close(conn, handle, handle_len);
Damien Millerd7686fd2001-02-10 00:40:03 +11001116
1117done:
1118 xfree(handle);
1119 buffer_free(&msg);
Damien Miller3db5f532002-02-13 14:10:32 +11001120 return(status);
Damien Miller33804262001-02-04 23:20:18 +11001121}