blob: beb251a8acd88fa7d24bc1b32a89c8f13150484a [file] [log] [blame]
Damien Miller7b28dc52000-09-05 13:34:53 +11001/*
Damien Miller00c92172002-02-13 14:05:00 +11002 * Copyright (c) 2000, 2001, 2002 Markus Friedl. All rights reserved.
Damien Miller7b28dc52000-09-05 13:34:53 +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.
Damien Miller7b28dc52000-09-05 13:34:53 +110012 *
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#include "includes.h"
Ben Lindstrom2c140472002-06-06 21:57:54 +000025RCSID("$OpenBSD: sftp-server.c,v 1.34 2002/06/06 17:12:44 markus Exp $");
Damien Miller7b28dc52000-09-05 13:34:53 +110026
Damien Miller7b28dc52000-09-05 13:34:53 +110027#include "buffer.h"
28#include "bufaux.h"
29#include "getput.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000030#include "log.h"
Damien Miller7b28dc52000-09-05 13:34:53 +110031#include "xmalloc.h"
32
Ben Lindstrom2f959b42001-01-11 06:20:23 +000033#include "sftp.h"
Damien Miller33804262001-02-04 23:20:18 +110034#include "sftp-common.h"
Damien Miller7b28dc52000-09-05 13:34:53 +110035
36/* helper */
Ben Lindstrom2f959b42001-01-11 06:20:23 +000037#define get_int64() buffer_get_int64(&iqueue);
Damien Miller7b28dc52000-09-05 13:34:53 +110038#define get_int() buffer_get_int(&iqueue);
39#define get_string(lenp) buffer_get_string(&iqueue, lenp);
Ben Lindstrom2f959b42001-01-11 06:20:23 +000040#define TRACE debug
Damien Miller7b28dc52000-09-05 13:34:53 +110041
Ben Lindstrom49a79c02000-11-17 03:47:20 +000042#ifdef HAVE___PROGNAME
43extern char *__progname;
44#else
45char *__progname;
46#endif
47
Damien Miller7b28dc52000-09-05 13:34:53 +110048/* input and output queue */
49Buffer iqueue;
50Buffer oqueue;
51
Damien Miller058316f2001-03-08 10:08:49 +110052/* Version of client */
53int version;
54
Damien Miller7b28dc52000-09-05 13:34:53 +110055/* portable attibutes, etc. */
56
Damien Miller7b28dc52000-09-05 13:34:53 +110057typedef struct Stat Stat;
58
Damien Miller33804262001-02-04 23:20:18 +110059struct Stat {
Damien Miller7b28dc52000-09-05 13:34:53 +110060 char *name;
61 char *long_name;
62 Attrib attrib;
63};
64
Ben Lindstrombba81212001-06-25 05:01:22 +000065static int
Damien Miller7b28dc52000-09-05 13:34:53 +110066errno_to_portable(int unixerrno)
67{
68 int ret = 0;
Ben Lindstrom1addabd2001-03-05 07:09:11 +000069
Damien Miller7b28dc52000-09-05 13:34:53 +110070 switch (unixerrno) {
71 case 0:
Ben Lindstrom2f959b42001-01-11 06:20:23 +000072 ret = SSH2_FX_OK;
Damien Miller7b28dc52000-09-05 13:34:53 +110073 break;
74 case ENOENT:
75 case ENOTDIR:
76 case EBADF:
77 case ELOOP:
Ben Lindstrom2f959b42001-01-11 06:20:23 +000078 ret = SSH2_FX_NO_SUCH_FILE;
Damien Miller7b28dc52000-09-05 13:34:53 +110079 break;
80 case EPERM:
81 case EACCES:
82 case EFAULT:
Ben Lindstrom2f959b42001-01-11 06:20:23 +000083 ret = SSH2_FX_PERMISSION_DENIED;
Damien Miller7b28dc52000-09-05 13:34:53 +110084 break;
85 case ENAMETOOLONG:
86 case EINVAL:
Ben Lindstrom2f959b42001-01-11 06:20:23 +000087 ret = SSH2_FX_BAD_MESSAGE;
Damien Miller7b28dc52000-09-05 13:34:53 +110088 break;
89 default:
Ben Lindstrom2f959b42001-01-11 06:20:23 +000090 ret = SSH2_FX_FAILURE;
Damien Miller7b28dc52000-09-05 13:34:53 +110091 break;
92 }
93 return ret;
94}
95
Ben Lindstrombba81212001-06-25 05:01:22 +000096static int
Damien Miller7b28dc52000-09-05 13:34:53 +110097flags_from_portable(int pflags)
98{
99 int flags = 0;
Ben Lindstrom1addabd2001-03-05 07:09:11 +0000100
Ben Lindstrom36592512001-03-05 05:02:08 +0000101 if ((pflags & SSH2_FXF_READ) &&
102 (pflags & SSH2_FXF_WRITE)) {
Damien Miller7b28dc52000-09-05 13:34:53 +1100103 flags = O_RDWR;
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000104 } else if (pflags & SSH2_FXF_READ) {
Damien Miller7b28dc52000-09-05 13:34:53 +1100105 flags = O_RDONLY;
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000106 } else if (pflags & SSH2_FXF_WRITE) {
Damien Miller7b28dc52000-09-05 13:34:53 +1100107 flags = O_WRONLY;
108 }
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000109 if (pflags & SSH2_FXF_CREAT)
Damien Miller7b28dc52000-09-05 13:34:53 +1100110 flags |= O_CREAT;
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000111 if (pflags & SSH2_FXF_TRUNC)
Damien Miller7b28dc52000-09-05 13:34:53 +1100112 flags |= O_TRUNC;
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000113 if (pflags & SSH2_FXF_EXCL)
Damien Miller7b28dc52000-09-05 13:34:53 +1100114 flags |= O_EXCL;
115 return flags;
116}
117
Ben Lindstrombba81212001-06-25 05:01:22 +0000118static Attrib *
Damien Miller7b28dc52000-09-05 13:34:53 +1100119get_attrib(void)
120{
121 return decode_attrib(&iqueue);
122}
123
124/* handle handles */
125
126typedef struct Handle Handle;
127struct Handle {
128 int use;
129 DIR *dirp;
130 int fd;
131 char *name;
132};
Ben Lindstrom1addabd2001-03-05 07:09:11 +0000133
Damien Miller7b28dc52000-09-05 13:34:53 +1100134enum {
135 HANDLE_UNUSED,
136 HANDLE_DIR,
137 HANDLE_FILE
138};
Ben Lindstrom1addabd2001-03-05 07:09:11 +0000139
Damien Miller7b28dc52000-09-05 13:34:53 +1100140Handle handles[100];
141
Ben Lindstrombba81212001-06-25 05:01:22 +0000142static void
Damien Miller7b28dc52000-09-05 13:34:53 +1100143handle_init(void)
144{
145 int i;
Ben Lindstrom1addabd2001-03-05 07:09:11 +0000146
Damien Miller9f0f5c62001-12-21 14:45:46 +1100147 for (i = 0; i < sizeof(handles)/sizeof(Handle); i++)
Damien Miller7b28dc52000-09-05 13:34:53 +1100148 handles[i].use = HANDLE_UNUSED;
149}
150
Ben Lindstrombba81212001-06-25 05:01:22 +0000151static int
Damien Miller7b28dc52000-09-05 13:34:53 +1100152handle_new(int use, char *name, int fd, DIR *dirp)
153{
154 int i;
Ben Lindstrom1addabd2001-03-05 07:09:11 +0000155
Damien Miller9f0f5c62001-12-21 14:45:46 +1100156 for (i = 0; i < sizeof(handles)/sizeof(Handle); i++) {
Damien Miller7b28dc52000-09-05 13:34:53 +1100157 if (handles[i].use == HANDLE_UNUSED) {
158 handles[i].use = use;
159 handles[i].dirp = dirp;
160 handles[i].fd = fd;
161 handles[i].name = name;
162 return i;
163 }
164 }
165 return -1;
166}
167
Ben Lindstrombba81212001-06-25 05:01:22 +0000168static int
Damien Miller7b28dc52000-09-05 13:34:53 +1100169handle_is_ok(int i, int type)
170{
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000171 return i >= 0 && i < sizeof(handles)/sizeof(Handle) &&
172 handles[i].use == type;
Damien Miller7b28dc52000-09-05 13:34:53 +1100173}
174
Ben Lindstrombba81212001-06-25 05:01:22 +0000175static int
Damien Miller7b28dc52000-09-05 13:34:53 +1100176handle_to_string(int handle, char **stringp, int *hlenp)
177{
Damien Miller7b28dc52000-09-05 13:34:53 +1100178 if (stringp == NULL || hlenp == NULL)
179 return -1;
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000180 *stringp = xmalloc(sizeof(int32_t));
181 PUT_32BIT(*stringp, handle);
182 *hlenp = sizeof(int32_t);
Damien Miller7b28dc52000-09-05 13:34:53 +1100183 return 0;
184}
185
Ben Lindstrombba81212001-06-25 05:01:22 +0000186static int
Damien Millere4340be2000-09-16 13:29:08 +1100187handle_from_string(char *handle, u_int hlen)
Damien Miller7b28dc52000-09-05 13:34:53 +1100188{
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000189 int val;
Ben Lindstrom1addabd2001-03-05 07:09:11 +0000190
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000191 if (hlen != sizeof(int32_t))
Damien Miller7b28dc52000-09-05 13:34:53 +1100192 return -1;
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000193 val = GET_32BIT(handle);
Damien Miller7b28dc52000-09-05 13:34:53 +1100194 if (handle_is_ok(val, HANDLE_FILE) ||
195 handle_is_ok(val, HANDLE_DIR))
196 return val;
197 return -1;
198}
199
Ben Lindstrombba81212001-06-25 05:01:22 +0000200static char *
Damien Miller7b28dc52000-09-05 13:34:53 +1100201handle_to_name(int handle)
202{
203 if (handle_is_ok(handle, HANDLE_DIR)||
204 handle_is_ok(handle, HANDLE_FILE))
205 return handles[handle].name;
206 return NULL;
207}
208
Ben Lindstrombba81212001-06-25 05:01:22 +0000209static DIR *
Damien Miller7b28dc52000-09-05 13:34:53 +1100210handle_to_dir(int handle)
211{
212 if (handle_is_ok(handle, HANDLE_DIR))
213 return handles[handle].dirp;
214 return NULL;
215}
216
Ben Lindstrombba81212001-06-25 05:01:22 +0000217static int
Damien Miller7b28dc52000-09-05 13:34:53 +1100218handle_to_fd(int handle)
219{
Kevin Stevesef4eea92001-02-05 12:42:17 +0000220 if (handle_is_ok(handle, HANDLE_FILE))
Damien Miller7b28dc52000-09-05 13:34:53 +1100221 return handles[handle].fd;
222 return -1;
223}
224
Ben Lindstrombba81212001-06-25 05:01:22 +0000225static int
Damien Miller7b28dc52000-09-05 13:34:53 +1100226handle_close(int handle)
227{
228 int ret = -1;
Ben Lindstrom1addabd2001-03-05 07:09:11 +0000229
Damien Miller7b28dc52000-09-05 13:34:53 +1100230 if (handle_is_ok(handle, HANDLE_FILE)) {
231 ret = close(handles[handle].fd);
232 handles[handle].use = HANDLE_UNUSED;
233 } else if (handle_is_ok(handle, HANDLE_DIR)) {
234 ret = closedir(handles[handle].dirp);
235 handles[handle].use = HANDLE_UNUSED;
236 } else {
237 errno = ENOENT;
238 }
239 return ret;
240}
241
Ben Lindstrombba81212001-06-25 05:01:22 +0000242static int
Damien Miller7b28dc52000-09-05 13:34:53 +1100243get_handle(void)
244{
245 char *handle;
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000246 int val = -1;
Damien Millere4340be2000-09-16 13:29:08 +1100247 u_int hlen;
Ben Lindstrom1addabd2001-03-05 07:09:11 +0000248
Damien Miller7b28dc52000-09-05 13:34:53 +1100249 handle = get_string(&hlen);
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000250 if (hlen < 256)
251 val = handle_from_string(handle, hlen);
Damien Miller7b28dc52000-09-05 13:34:53 +1100252 xfree(handle);
253 return val;
254}
255
256/* send replies */
257
Ben Lindstrombba81212001-06-25 05:01:22 +0000258static void
Damien Miller7b28dc52000-09-05 13:34:53 +1100259send_msg(Buffer *m)
260{
261 int mlen = buffer_len(m);
Ben Lindstrom1addabd2001-03-05 07:09:11 +0000262
Damien Miller7b28dc52000-09-05 13:34:53 +1100263 buffer_put_int(&oqueue, mlen);
264 buffer_append(&oqueue, buffer_ptr(m), mlen);
265 buffer_consume(m, mlen);
266}
267
Ben Lindstrombba81212001-06-25 05:01:22 +0000268static void
Damien Miller7b28dc52000-09-05 13:34:53 +1100269send_status(u_int32_t id, u_int32_t error)
270{
271 Buffer msg;
Damien Miller058316f2001-03-08 10:08:49 +1100272 const char *status_messages[] = {
273 "Success", /* SSH_FX_OK */
274 "End of file", /* SSH_FX_EOF */
275 "No such file", /* SSH_FX_NO_SUCH_FILE */
276 "Permission denied", /* SSH_FX_PERMISSION_DENIED */
277 "Failure", /* SSH_FX_FAILURE */
278 "Bad message", /* SSH_FX_BAD_MESSAGE */
279 "No connection", /* SSH_FX_NO_CONNECTION */
280 "Connection lost", /* SSH_FX_CONNECTION_LOST */
281 "Operation unsupported", /* SSH_FX_OP_UNSUPPORTED */
282 "Unknown error" /* Others */
283 };
Ben Lindstrom1addabd2001-03-05 07:09:11 +0000284
Damien Miller7b28dc52000-09-05 13:34:53 +1100285 TRACE("sent status id %d error %d", id, error);
286 buffer_init(&msg);
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000287 buffer_put_char(&msg, SSH2_FXP_STATUS);
Damien Miller7b28dc52000-09-05 13:34:53 +1100288 buffer_put_int(&msg, id);
289 buffer_put_int(&msg, error);
Damien Miller058316f2001-03-08 10:08:49 +1100290 if (version >= 3) {
Ben Lindstroma3700052001-04-05 23:26:32 +0000291 buffer_put_cstring(&msg,
Damien Miller058316f2001-03-08 10:08:49 +1100292 status_messages[MIN(error,SSH2_FX_MAX)]);
293 buffer_put_cstring(&msg, "");
294 }
Damien Miller7b28dc52000-09-05 13:34:53 +1100295 send_msg(&msg);
296 buffer_free(&msg);
297}
Ben Lindstrombba81212001-06-25 05:01:22 +0000298static void
Damien Miller7b28dc52000-09-05 13:34:53 +1100299send_data_or_handle(char type, u_int32_t id, char *data, int dlen)
300{
301 Buffer msg;
Ben Lindstrom1addabd2001-03-05 07:09:11 +0000302
Damien Miller7b28dc52000-09-05 13:34:53 +1100303 buffer_init(&msg);
304 buffer_put_char(&msg, type);
305 buffer_put_int(&msg, id);
306 buffer_put_string(&msg, data, dlen);
307 send_msg(&msg);
308 buffer_free(&msg);
309}
310
Ben Lindstrombba81212001-06-25 05:01:22 +0000311static void
Damien Miller7b28dc52000-09-05 13:34:53 +1100312send_data(u_int32_t id, char *data, int dlen)
313{
314 TRACE("sent data id %d len %d", id, dlen);
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000315 send_data_or_handle(SSH2_FXP_DATA, id, data, dlen);
Damien Miller7b28dc52000-09-05 13:34:53 +1100316}
317
Ben Lindstrombba81212001-06-25 05:01:22 +0000318static void
Damien Miller7b28dc52000-09-05 13:34:53 +1100319send_handle(u_int32_t id, int handle)
320{
321 char *string;
322 int hlen;
Ben Lindstrom1addabd2001-03-05 07:09:11 +0000323
Damien Miller7b28dc52000-09-05 13:34:53 +1100324 handle_to_string(handle, &string, &hlen);
325 TRACE("sent handle id %d handle %d", id, handle);
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000326 send_data_or_handle(SSH2_FXP_HANDLE, id, string, hlen);
Damien Miller7b28dc52000-09-05 13:34:53 +1100327 xfree(string);
328}
329
Ben Lindstrombba81212001-06-25 05:01:22 +0000330static void
Damien Miller7b28dc52000-09-05 13:34:53 +1100331send_names(u_int32_t id, int count, Stat *stats)
332{
333 Buffer msg;
334 int i;
Ben Lindstrom1addabd2001-03-05 07:09:11 +0000335
Damien Miller7b28dc52000-09-05 13:34:53 +1100336 buffer_init(&msg);
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000337 buffer_put_char(&msg, SSH2_FXP_NAME);
Damien Miller7b28dc52000-09-05 13:34:53 +1100338 buffer_put_int(&msg, id);
339 buffer_put_int(&msg, count);
340 TRACE("sent names id %d count %d", id, count);
341 for (i = 0; i < count; i++) {
342 buffer_put_cstring(&msg, stats[i].name);
343 buffer_put_cstring(&msg, stats[i].long_name);
344 encode_attrib(&msg, &stats[i].attrib);
345 }
346 send_msg(&msg);
347 buffer_free(&msg);
348}
349
Ben Lindstrombba81212001-06-25 05:01:22 +0000350static void
Damien Miller7b28dc52000-09-05 13:34:53 +1100351send_attrib(u_int32_t id, Attrib *a)
352{
353 Buffer msg;
Ben Lindstrom1addabd2001-03-05 07:09:11 +0000354
Damien Miller7b28dc52000-09-05 13:34:53 +1100355 TRACE("sent attrib id %d have 0x%x", id, a->flags);
356 buffer_init(&msg);
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000357 buffer_put_char(&msg, SSH2_FXP_ATTRS);
Damien Miller7b28dc52000-09-05 13:34:53 +1100358 buffer_put_int(&msg, id);
359 encode_attrib(&msg, a);
360 send_msg(&msg);
361 buffer_free(&msg);
362}
363
364/* parse incoming */
365
Ben Lindstrombba81212001-06-25 05:01:22 +0000366static void
Damien Miller7b28dc52000-09-05 13:34:53 +1100367process_init(void)
368{
369 Buffer msg;
Damien Miller7b28dc52000-09-05 13:34:53 +1100370
Damien Miller058316f2001-03-08 10:08:49 +1100371 version = buffer_get_int(&iqueue);
Damien Miller7b28dc52000-09-05 13:34:53 +1100372 TRACE("client version %d", version);
373 buffer_init(&msg);
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000374 buffer_put_char(&msg, SSH2_FXP_VERSION);
375 buffer_put_int(&msg, SSH2_FILEXFER_VERSION);
Damien Miller7b28dc52000-09-05 13:34:53 +1100376 send_msg(&msg);
377 buffer_free(&msg);
378}
379
Ben Lindstrombba81212001-06-25 05:01:22 +0000380static void
Damien Miller7b28dc52000-09-05 13:34:53 +1100381process_open(void)
382{
383 u_int32_t id, pflags;
384 Attrib *a;
385 char *name;
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000386 int handle, fd, flags, mode, status = SSH2_FX_FAILURE;
Damien Miller7b28dc52000-09-05 13:34:53 +1100387
388 id = get_int();
389 name = get_string(NULL);
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000390 pflags = get_int(); /* portable flags */
Damien Miller7b28dc52000-09-05 13:34:53 +1100391 a = get_attrib();
392 flags = flags_from_portable(pflags);
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000393 mode = (a->flags & SSH2_FILEXFER_ATTR_PERMISSIONS) ? a->perm : 0666;
Damien Miller7b28dc52000-09-05 13:34:53 +1100394 TRACE("open id %d name %s flags %d mode 0%o", id, name, pflags, mode);
395 fd = open(name, flags, mode);
396 if (fd < 0) {
397 status = errno_to_portable(errno);
398 } else {
399 handle = handle_new(HANDLE_FILE, xstrdup(name), fd, NULL);
400 if (handle < 0) {
401 close(fd);
402 } else {
403 send_handle(id, handle);
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000404 status = SSH2_FX_OK;
Damien Miller7b28dc52000-09-05 13:34:53 +1100405 }
406 }
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000407 if (status != SSH2_FX_OK)
Damien Miller7b28dc52000-09-05 13:34:53 +1100408 send_status(id, status);
409 xfree(name);
410}
411
Ben Lindstrombba81212001-06-25 05:01:22 +0000412static void
Damien Miller7b28dc52000-09-05 13:34:53 +1100413process_close(void)
414{
415 u_int32_t id;
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000416 int handle, ret, status = SSH2_FX_FAILURE;
Damien Miller7b28dc52000-09-05 13:34:53 +1100417
418 id = get_int();
419 handle = get_handle();
420 TRACE("close id %d handle %d", id, handle);
421 ret = handle_close(handle);
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000422 status = (ret == -1) ? errno_to_portable(errno) : SSH2_FX_OK;
Damien Miller7b28dc52000-09-05 13:34:53 +1100423 send_status(id, status);
424}
425
Ben Lindstrombba81212001-06-25 05:01:22 +0000426static void
Damien Miller7b28dc52000-09-05 13:34:53 +1100427process_read(void)
428{
429 char buf[64*1024];
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000430 u_int32_t id, len;
431 int handle, fd, ret, status = SSH2_FX_FAILURE;
Damien Miller7b28dc52000-09-05 13:34:53 +1100432 u_int64_t off;
433
434 id = get_int();
435 handle = get_handle();
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000436 off = get_int64();
Damien Miller7b28dc52000-09-05 13:34:53 +1100437 len = get_int();
438
Kevin Stevesec1c1402001-02-05 15:39:22 +0000439 TRACE("read id %d handle %d off %llu len %d", id, handle,
Ben Lindstrom416d8742001-02-25 02:02:43 +0000440 (u_int64_t)off, len);
Damien Miller7b28dc52000-09-05 13:34:53 +1100441 if (len > sizeof buf) {
442 len = sizeof buf;
443 log("read change len %d", len);
444 }
445 fd = handle_to_fd(handle);
446 if (fd >= 0) {
447 if (lseek(fd, off, SEEK_SET) < 0) {
448 error("process_read: seek failed");
449 status = errno_to_portable(errno);
450 } else {
451 ret = read(fd, buf, len);
452 if (ret < 0) {
453 status = errno_to_portable(errno);
454 } else if (ret == 0) {
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000455 status = SSH2_FX_EOF;
Damien Miller7b28dc52000-09-05 13:34:53 +1100456 } else {
457 send_data(id, buf, ret);
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000458 status = SSH2_FX_OK;
Damien Miller7b28dc52000-09-05 13:34:53 +1100459 }
460 }
461 }
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000462 if (status != SSH2_FX_OK)
Damien Miller7b28dc52000-09-05 13:34:53 +1100463 send_status(id, status);
464}
465
Ben Lindstrombba81212001-06-25 05:01:22 +0000466static void
Damien Miller7b28dc52000-09-05 13:34:53 +1100467process_write(void)
468{
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000469 u_int32_t id;
Damien Miller7b28dc52000-09-05 13:34:53 +1100470 u_int64_t off;
Damien Millere4340be2000-09-16 13:29:08 +1100471 u_int len;
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000472 int handle, fd, ret, status = SSH2_FX_FAILURE;
Damien Miller7b28dc52000-09-05 13:34:53 +1100473 char *data;
474
475 id = get_int();
476 handle = get_handle();
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000477 off = get_int64();
Damien Miller7b28dc52000-09-05 13:34:53 +1100478 data = get_string(&len);
479
Kevin Stevesec1c1402001-02-05 15:39:22 +0000480 TRACE("write id %d handle %d off %llu len %d", id, handle,
Ben Lindstrom416d8742001-02-25 02:02:43 +0000481 (u_int64_t)off, len);
Damien Miller7b28dc52000-09-05 13:34:53 +1100482 fd = handle_to_fd(handle);
483 if (fd >= 0) {
484 if (lseek(fd, off, SEEK_SET) < 0) {
485 status = errno_to_portable(errno);
486 error("process_write: seek failed");
487 } else {
488/* XXX ATOMICIO ? */
489 ret = write(fd, data, len);
490 if (ret == -1) {
491 error("process_write: write failed");
492 status = errno_to_portable(errno);
493 } else if (ret == len) {
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000494 status = SSH2_FX_OK;
Damien Miller7b28dc52000-09-05 13:34:53 +1100495 } else {
496 log("nothing at all written");
497 }
498 }
499 }
500 send_status(id, status);
501 xfree(data);
502}
503
Ben Lindstrombba81212001-06-25 05:01:22 +0000504static void
Damien Miller7b28dc52000-09-05 13:34:53 +1100505process_do_stat(int do_lstat)
506{
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000507 Attrib a;
Damien Miller7b28dc52000-09-05 13:34:53 +1100508 struct stat st;
509 u_int32_t id;
510 char *name;
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000511 int ret, status = SSH2_FX_FAILURE;
Damien Miller7b28dc52000-09-05 13:34:53 +1100512
513 id = get_int();
514 name = get_string(NULL);
515 TRACE("%sstat id %d name %s", do_lstat ? "l" : "", id, name);
516 ret = do_lstat ? lstat(name, &st) : stat(name, &st);
517 if (ret < 0) {
518 status = errno_to_portable(errno);
519 } else {
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000520 stat_to_attrib(&st, &a);
521 send_attrib(id, &a);
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000522 status = SSH2_FX_OK;
Damien Miller7b28dc52000-09-05 13:34:53 +1100523 }
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000524 if (status != SSH2_FX_OK)
Damien Miller7b28dc52000-09-05 13:34:53 +1100525 send_status(id, status);
526 xfree(name);
527}
528
Ben Lindstrombba81212001-06-25 05:01:22 +0000529static void
Damien Miller7b28dc52000-09-05 13:34:53 +1100530process_stat(void)
531{
532 process_do_stat(0);
533}
534
Ben Lindstrombba81212001-06-25 05:01:22 +0000535static void
Damien Miller7b28dc52000-09-05 13:34:53 +1100536process_lstat(void)
537{
538 process_do_stat(1);
539}
540
Ben Lindstrombba81212001-06-25 05:01:22 +0000541static void
Damien Miller7b28dc52000-09-05 13:34:53 +1100542process_fstat(void)
543{
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000544 Attrib a;
Damien Miller7b28dc52000-09-05 13:34:53 +1100545 struct stat st;
546 u_int32_t id;
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000547 int fd, ret, handle, status = SSH2_FX_FAILURE;
Damien Miller7b28dc52000-09-05 13:34:53 +1100548
549 id = get_int();
550 handle = get_handle();
551 TRACE("fstat id %d handle %d", id, handle);
552 fd = handle_to_fd(handle);
553 if (fd >= 0) {
554 ret = fstat(fd, &st);
555 if (ret < 0) {
556 status = errno_to_portable(errno);
557 } else {
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000558 stat_to_attrib(&st, &a);
559 send_attrib(id, &a);
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000560 status = SSH2_FX_OK;
Damien Miller7b28dc52000-09-05 13:34:53 +1100561 }
562 }
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000563 if (status != SSH2_FX_OK)
Damien Miller7b28dc52000-09-05 13:34:53 +1100564 send_status(id, status);
565}
566
Ben Lindstrombba81212001-06-25 05:01:22 +0000567static struct timeval *
Damien Miller7b28dc52000-09-05 13:34:53 +1100568attrib_to_tv(Attrib *a)
569{
570 static struct timeval tv[2];
Ben Lindstrom1addabd2001-03-05 07:09:11 +0000571
Damien Miller7b28dc52000-09-05 13:34:53 +1100572 tv[0].tv_sec = a->atime;
573 tv[0].tv_usec = 0;
574 tv[1].tv_sec = a->mtime;
575 tv[1].tv_usec = 0;
576 return tv;
577}
578
Ben Lindstrombba81212001-06-25 05:01:22 +0000579static void
Damien Miller7b28dc52000-09-05 13:34:53 +1100580process_setstat(void)
581{
582 Attrib *a;
583 u_int32_t id;
584 char *name;
585 int ret;
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000586 int status = SSH2_FX_OK;
Damien Miller7b28dc52000-09-05 13:34:53 +1100587
588 id = get_int();
589 name = get_string(NULL);
590 a = get_attrib();
591 TRACE("setstat id %d name %s", id, name);
Damien Miller00c92172002-02-13 14:05:00 +1100592 if (a->flags & SSH2_FILEXFER_ATTR_SIZE) {
593 ret = truncate(name, a->size);
594 if (ret == -1)
595 status = errno_to_portable(errno);
596 }
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000597 if (a->flags & SSH2_FILEXFER_ATTR_PERMISSIONS) {
Damien Miller7b28dc52000-09-05 13:34:53 +1100598 ret = chmod(name, a->perm & 0777);
599 if (ret == -1)
600 status = errno_to_portable(errno);
601 }
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000602 if (a->flags & SSH2_FILEXFER_ATTR_ACMODTIME) {
Damien Miller7b28dc52000-09-05 13:34:53 +1100603 ret = utimes(name, attrib_to_tv(a));
604 if (ret == -1)
605 status = errno_to_portable(errno);
606 }
Kevin Steves8e743932001-02-05 13:24:35 +0000607 if (a->flags & SSH2_FILEXFER_ATTR_UIDGID) {
608 ret = chown(name, a->uid, a->gid);
609 if (ret == -1)
610 status = errno_to_portable(errno);
611 }
Damien Miller7b28dc52000-09-05 13:34:53 +1100612 send_status(id, status);
613 xfree(name);
614}
615
Ben Lindstrombba81212001-06-25 05:01:22 +0000616static void
Damien Miller7b28dc52000-09-05 13:34:53 +1100617process_fsetstat(void)
618{
619 Attrib *a;
620 u_int32_t id;
621 int handle, fd, ret;
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000622 int status = SSH2_FX_OK;
Damien Millere4340be2000-09-16 13:29:08 +1100623 char *name;
Kevin Stevesf7ffab32001-01-24 20:11:06 +0000624
Damien Miller7b28dc52000-09-05 13:34:53 +1100625 id = get_int();
626 handle = get_handle();
627 a = get_attrib();
628 TRACE("fsetstat id %d handle %d", id, handle);
629 fd = handle_to_fd(handle);
630 name = handle_to_name(handle);
Kevin Stevesf7ffab32001-01-24 20:11:06 +0000631 if (fd < 0 || name == NULL) {
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000632 status = SSH2_FX_FAILURE;
Damien Miller7b28dc52000-09-05 13:34:53 +1100633 } else {
Damien Miller00c92172002-02-13 14:05:00 +1100634 if (a->flags & SSH2_FILEXFER_ATTR_SIZE) {
635 ret = ftruncate(fd, a->size);
636 if (ret == -1)
637 status = errno_to_portable(errno);
638 }
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000639 if (a->flags & SSH2_FILEXFER_ATTR_PERMISSIONS) {
Ben Lindstrom200e3c92001-01-15 01:56:46 +0000640#ifdef HAVE_FCHMOD
Damien Miller7b28dc52000-09-05 13:34:53 +1100641 ret = fchmod(fd, a->perm & 0777);
Ben Lindstrom200e3c92001-01-15 01:56:46 +0000642#else
Kevin Stevesb6b37ba2001-01-24 20:01:44 +0000643 ret = chmod(name, a->perm & 0777);
Ben Lindstrom200e3c92001-01-15 01:56:46 +0000644#endif
Damien Miller7b28dc52000-09-05 13:34:53 +1100645 if (ret == -1)
646 status = errno_to_portable(errno);
647 }
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000648 if (a->flags & SSH2_FILEXFER_ATTR_ACMODTIME) {
Damien Miller7b28dc52000-09-05 13:34:53 +1100649#ifdef HAVE_FUTIMES
650 ret = futimes(fd, attrib_to_tv(a));
651#else
652 ret = utimes(name, attrib_to_tv(a));
653#endif
654 if (ret == -1)
655 status = errno_to_portable(errno);
656 }
Kevin Steves8e743932001-02-05 13:24:35 +0000657 if (a->flags & SSH2_FILEXFER_ATTR_UIDGID) {
Ben Lindstrom34bb0c72001-02-13 02:40:56 +0000658#ifdef HAVE_FCHOWN
Kevin Steves8e743932001-02-05 13:24:35 +0000659 ret = fchown(fd, a->uid, a->gid);
Ben Lindstrom34bb0c72001-02-13 02:40:56 +0000660#else
661 ret = chown(name, a->uid, a->gid);
662#endif
Kevin Steves8e743932001-02-05 13:24:35 +0000663 if (ret == -1)
664 status = errno_to_portable(errno);
665 }
Damien Miller7b28dc52000-09-05 13:34:53 +1100666 }
667 send_status(id, status);
668}
669
Ben Lindstrombba81212001-06-25 05:01:22 +0000670static void
Damien Miller7b28dc52000-09-05 13:34:53 +1100671process_opendir(void)
672{
673 DIR *dirp = NULL;
674 char *path;
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000675 int handle, status = SSH2_FX_FAILURE;
Damien Miller7b28dc52000-09-05 13:34:53 +1100676 u_int32_t id;
677
678 id = get_int();
679 path = get_string(NULL);
680 TRACE("opendir id %d path %s", id, path);
Kevin Stevesef4eea92001-02-05 12:42:17 +0000681 dirp = opendir(path);
Damien Miller7b28dc52000-09-05 13:34:53 +1100682 if (dirp == NULL) {
683 status = errno_to_portable(errno);
684 } else {
685 handle = handle_new(HANDLE_DIR, xstrdup(path), 0, dirp);
686 if (handle < 0) {
687 closedir(dirp);
688 } else {
689 send_handle(id, handle);
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000690 status = SSH2_FX_OK;
Damien Miller7b28dc52000-09-05 13:34:53 +1100691 }
Kevin Stevesef4eea92001-02-05 12:42:17 +0000692
Damien Miller7b28dc52000-09-05 13:34:53 +1100693 }
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000694 if (status != SSH2_FX_OK)
Damien Miller7b28dc52000-09-05 13:34:53 +1100695 send_status(id, status);
696 xfree(path);
697}
698
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000699/*
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000700 * drwxr-xr-x 5 markus markus 1024 Jan 13 18:39 .ssh
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000701 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000702static char *
Damien Miller7b28dc52000-09-05 13:34:53 +1100703ls_file(char *name, struct stat *st)
704{
Ben Lindstrom488d8802001-06-25 04:24:49 +0000705 int ulen, glen, sz = 0;
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000706 struct passwd *pw;
707 struct group *gr;
708 struct tm *ltime = localtime(&st->st_mtime);
709 char *user, *group;
710 char buf[1024], mode[11+1], tbuf[12+1], ubuf[11+1], gbuf[11+1];
711
712 strmode(st->st_mode, mode);
713 if ((pw = getpwuid(st->st_uid)) != NULL) {
714 user = pw->pw_name;
715 } else {
716 snprintf(ubuf, sizeof ubuf, "%d", st->st_uid);
717 user = ubuf;
718 }
719 if ((gr = getgrgid(st->st_gid)) != NULL) {
720 group = gr->gr_name;
721 } else {
722 snprintf(gbuf, sizeof gbuf, "%d", st->st_gid);
723 group = gbuf;
724 }
725 if (ltime != NULL) {
726 if (time(NULL) - st->st_mtime < (365*24*60*60)/2)
727 sz = strftime(tbuf, sizeof tbuf, "%b %e %H:%M", ltime);
728 else
729 sz = strftime(tbuf, sizeof tbuf, "%b %e %Y", ltime);
730 }
731 if (sz == 0)
732 tbuf[0] = '\0';
Ben Lindstrom488d8802001-06-25 04:24:49 +0000733 ulen = MAX(strlen(user), 8);
734 glen = MAX(strlen(group), 8);
735 snprintf(buf, sizeof buf, "%s %3d %-*s %-*s %8llu %s %s", mode,
736 st->st_nlink, ulen, user, glen, group,
737 (u_int64_t)st->st_size, tbuf, name);
Damien Miller7b28dc52000-09-05 13:34:53 +1100738 return xstrdup(buf);
739}
740
Ben Lindstrombba81212001-06-25 05:01:22 +0000741static void
Damien Miller7b28dc52000-09-05 13:34:53 +1100742process_readdir(void)
743{
744 DIR *dirp;
745 struct dirent *dp;
746 char *path;
747 int handle;
748 u_int32_t id;
749
750 id = get_int();
751 handle = get_handle();
752 TRACE("readdir id %d handle %d", id, handle);
753 dirp = handle_to_dir(handle);
754 path = handle_to_name(handle);
755 if (dirp == NULL || path == NULL) {
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000756 send_status(id, SSH2_FX_FAILURE);
Damien Miller7b28dc52000-09-05 13:34:53 +1100757 } else {
Damien Miller7b28dc52000-09-05 13:34:53 +1100758 struct stat st;
759 char pathname[1024];
760 Stat *stats;
761 int nstats = 10, count = 0, i;
762 stats = xmalloc(nstats * sizeof(Stat));
763 while ((dp = readdir(dirp)) != NULL) {
764 if (count >= nstats) {
765 nstats *= 2;
766 stats = xrealloc(stats, nstats * sizeof(Stat));
767 }
768/* XXX OVERFLOW ? */
Ben Lindstrom95148e32001-08-06 21:30:53 +0000769 snprintf(pathname, sizeof pathname, "%s%s%s", path,
770 strcmp(path, "/") ? "/" : "", dp->d_name);
Damien Miller7b28dc52000-09-05 13:34:53 +1100771 if (lstat(pathname, &st) < 0)
772 continue;
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000773 stat_to_attrib(&st, &(stats[count].attrib));
Damien Miller7b28dc52000-09-05 13:34:53 +1100774 stats[count].name = xstrdup(dp->d_name);
775 stats[count].long_name = ls_file(dp->d_name, &st);
776 count++;
777 /* send up to 100 entries in one message */
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000778 /* XXX check packet size instead */
Damien Miller7b28dc52000-09-05 13:34:53 +1100779 if (count == 100)
780 break;
781 }
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000782 if (count > 0) {
783 send_names(id, count, stats);
Damien Miller9f0f5c62001-12-21 14:45:46 +1100784 for (i = 0; i < count; i++) {
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000785 xfree(stats[i].name);
786 xfree(stats[i].long_name);
787 }
788 } else {
789 send_status(id, SSH2_FX_EOF);
Damien Miller7b28dc52000-09-05 13:34:53 +1100790 }
791 xfree(stats);
792 }
793}
794
Ben Lindstrombba81212001-06-25 05:01:22 +0000795static void
Damien Miller7b28dc52000-09-05 13:34:53 +1100796process_remove(void)
797{
798 char *name;
799 u_int32_t id;
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000800 int status = SSH2_FX_FAILURE;
Damien Miller7b28dc52000-09-05 13:34:53 +1100801 int ret;
802
803 id = get_int();
804 name = get_string(NULL);
805 TRACE("remove id %d name %s", id, name);
Kevin Stevesa074feb2000-12-21 22:33:45 +0000806 ret = unlink(name);
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000807 status = (ret == -1) ? errno_to_portable(errno) : SSH2_FX_OK;
Damien Miller7b28dc52000-09-05 13:34:53 +1100808 send_status(id, status);
809 xfree(name);
810}
811
Ben Lindstrombba81212001-06-25 05:01:22 +0000812static void
Damien Miller7b28dc52000-09-05 13:34:53 +1100813process_mkdir(void)
814{
815 Attrib *a;
816 u_int32_t id;
817 char *name;
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000818 int ret, mode, status = SSH2_FX_FAILURE;
Damien Miller7b28dc52000-09-05 13:34:53 +1100819
820 id = get_int();
821 name = get_string(NULL);
822 a = get_attrib();
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000823 mode = (a->flags & SSH2_FILEXFER_ATTR_PERMISSIONS) ?
824 a->perm & 0777 : 0777;
Damien Miller7b28dc52000-09-05 13:34:53 +1100825 TRACE("mkdir id %d name %s mode 0%o", id, name, mode);
826 ret = mkdir(name, mode);
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000827 status = (ret == -1) ? errno_to_portable(errno) : SSH2_FX_OK;
Damien Miller7b28dc52000-09-05 13:34:53 +1100828 send_status(id, status);
829 xfree(name);
830}
831
Ben Lindstrombba81212001-06-25 05:01:22 +0000832static void
Damien Miller7b28dc52000-09-05 13:34:53 +1100833process_rmdir(void)
834{
835 u_int32_t id;
836 char *name;
837 int ret, status;
838
839 id = get_int();
840 name = get_string(NULL);
841 TRACE("rmdir id %d name %s", id, name);
842 ret = rmdir(name);
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000843 status = (ret == -1) ? errno_to_portable(errno) : SSH2_FX_OK;
Damien Miller7b28dc52000-09-05 13:34:53 +1100844 send_status(id, status);
845 xfree(name);
846}
847
Ben Lindstrombba81212001-06-25 05:01:22 +0000848static void
Damien Miller7b28dc52000-09-05 13:34:53 +1100849process_realpath(void)
850{
851 char resolvedname[MAXPATHLEN];
852 u_int32_t id;
853 char *path;
854
855 id = get_int();
856 path = get_string(NULL);
Ben Lindstromfa1b3d02000-12-10 01:55:37 +0000857 if (path[0] == '\0') {
858 xfree(path);
859 path = xstrdup(".");
860 }
Damien Miller7b28dc52000-09-05 13:34:53 +1100861 TRACE("realpath id %d path %s", id, path);
862 if (realpath(path, resolvedname) == NULL) {
863 send_status(id, errno_to_portable(errno));
864 } else {
865 Stat s;
866 attrib_clear(&s.attrib);
867 s.name = s.long_name = resolvedname;
868 send_names(id, 1, &s);
869 }
870 xfree(path);
871}
872
Ben Lindstrombba81212001-06-25 05:01:22 +0000873static void
Damien Miller7b28dc52000-09-05 13:34:53 +1100874process_rename(void)
875{
876 u_int32_t id;
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000877 struct stat st;
Damien Miller7b28dc52000-09-05 13:34:53 +1100878 char *oldpath, *newpath;
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000879 int ret, status = SSH2_FX_FAILURE;
Damien Miller7b28dc52000-09-05 13:34:53 +1100880
881 id = get_int();
882 oldpath = get_string(NULL);
883 newpath = get_string(NULL);
884 TRACE("rename id %d old %s new %s", id, oldpath, newpath);
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000885 /* fail if 'newpath' exists */
886 if (stat(newpath, &st) == -1) {
887 ret = rename(oldpath, newpath);
888 status = (ret == -1) ? errno_to_portable(errno) : SSH2_FX_OK;
889 }
Damien Miller7b28dc52000-09-05 13:34:53 +1100890 send_status(id, status);
891 xfree(oldpath);
892 xfree(newpath);
893}
894
Ben Lindstrombba81212001-06-25 05:01:22 +0000895static void
Damien Miller058316f2001-03-08 10:08:49 +1100896process_readlink(void)
897{
898 u_int32_t id;
Ben Lindstromabbb73d2001-05-17 03:14:57 +0000899 int len;
Damien Miller058316f2001-03-08 10:08:49 +1100900 char link[MAXPATHLEN];
901 char *path;
902
903 id = get_int();
904 path = get_string(NULL);
905 TRACE("readlink id %d path %s", id, path);
Ben Lindstromabbb73d2001-05-17 03:14:57 +0000906 if ((len = readlink(path, link, sizeof(link) - 1)) == -1)
Damien Miller058316f2001-03-08 10:08:49 +1100907 send_status(id, errno_to_portable(errno));
908 else {
909 Stat s;
Damien Miller9f0f5c62001-12-21 14:45:46 +1100910
Ben Lindstromabbb73d2001-05-17 03:14:57 +0000911 link[len] = '\0';
Damien Miller058316f2001-03-08 10:08:49 +1100912 attrib_clear(&s.attrib);
913 s.name = s.long_name = link;
914 send_names(id, 1, &s);
915 }
916 xfree(path);
917}
918
Ben Lindstrombba81212001-06-25 05:01:22 +0000919static void
Damien Miller058316f2001-03-08 10:08:49 +1100920process_symlink(void)
921{
922 u_int32_t id;
923 struct stat st;
924 char *oldpath, *newpath;
925 int ret, status = SSH2_FX_FAILURE;
926
927 id = get_int();
928 oldpath = get_string(NULL);
929 newpath = get_string(NULL);
930 TRACE("symlink id %d old %s new %s", id, oldpath, newpath);
931 /* fail if 'newpath' exists */
932 if (stat(newpath, &st) == -1) {
933 ret = symlink(oldpath, newpath);
934 status = (ret == -1) ? errno_to_portable(errno) : SSH2_FX_OK;
935 }
936 send_status(id, status);
937 xfree(oldpath);
938 xfree(newpath);
939}
940
Ben Lindstrombba81212001-06-25 05:01:22 +0000941static void
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000942process_extended(void)
943{
944 u_int32_t id;
945 char *request;
946
947 id = get_int();
948 request = get_string(NULL);
949 send_status(id, SSH2_FX_OP_UNSUPPORTED); /* MUST */
950 xfree(request);
951}
Damien Miller7b28dc52000-09-05 13:34:53 +1100952
953/* stolen from ssh-agent */
954
Ben Lindstrombba81212001-06-25 05:01:22 +0000955static void
Damien Miller7b28dc52000-09-05 13:34:53 +1100956process(void)
957{
Ben Lindstrom46c16222000-12-22 01:43:59 +0000958 u_int msg_len;
Ben Lindstrom2c140472002-06-06 21:57:54 +0000959 u_int buf_len;
960 u_int consumed;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000961 u_int type;
962 u_char *cp;
Damien Miller7b28dc52000-09-05 13:34:53 +1100963
Ben Lindstrom2c140472002-06-06 21:57:54 +0000964 buf_len = buffer_len(&iqueue);
965 if (buf_len < 5)
Damien Miller7b28dc52000-09-05 13:34:53 +1100966 return; /* Incomplete message. */
Damien Miller708d21c2002-01-22 23:18:15 +1100967 cp = buffer_ptr(&iqueue);
Damien Miller7b28dc52000-09-05 13:34:53 +1100968 msg_len = GET_32BIT(cp);
969 if (msg_len > 256 * 1024) {
970 error("bad message ");
971 exit(11);
972 }
Ben Lindstrom2c140472002-06-06 21:57:54 +0000973 if (buf_len < msg_len + 4)
Damien Miller7b28dc52000-09-05 13:34:53 +1100974 return;
975 buffer_consume(&iqueue, 4);
Ben Lindstrom2c140472002-06-06 21:57:54 +0000976 buf_len -= 4;
Damien Miller7b28dc52000-09-05 13:34:53 +1100977 type = buffer_get_char(&iqueue);
978 switch (type) {
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000979 case SSH2_FXP_INIT:
Damien Miller7b28dc52000-09-05 13:34:53 +1100980 process_init();
981 break;
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000982 case SSH2_FXP_OPEN:
Damien Miller7b28dc52000-09-05 13:34:53 +1100983 process_open();
984 break;
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000985 case SSH2_FXP_CLOSE:
Damien Miller7b28dc52000-09-05 13:34:53 +1100986 process_close();
987 break;
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000988 case SSH2_FXP_READ:
Damien Miller7b28dc52000-09-05 13:34:53 +1100989 process_read();
990 break;
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000991 case SSH2_FXP_WRITE:
Damien Miller7b28dc52000-09-05 13:34:53 +1100992 process_write();
993 break;
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000994 case SSH2_FXP_LSTAT:
Damien Miller7b28dc52000-09-05 13:34:53 +1100995 process_lstat();
996 break;
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000997 case SSH2_FXP_FSTAT:
Damien Miller7b28dc52000-09-05 13:34:53 +1100998 process_fstat();
999 break;
Ben Lindstrom2f959b42001-01-11 06:20:23 +00001000 case SSH2_FXP_SETSTAT:
Damien Miller7b28dc52000-09-05 13:34:53 +11001001 process_setstat();
1002 break;
Ben Lindstrom2f959b42001-01-11 06:20:23 +00001003 case SSH2_FXP_FSETSTAT:
Damien Miller7b28dc52000-09-05 13:34:53 +11001004 process_fsetstat();
1005 break;
Ben Lindstrom2f959b42001-01-11 06:20:23 +00001006 case SSH2_FXP_OPENDIR:
Damien Miller7b28dc52000-09-05 13:34:53 +11001007 process_opendir();
1008 break;
Ben Lindstrom2f959b42001-01-11 06:20:23 +00001009 case SSH2_FXP_READDIR:
Damien Miller7b28dc52000-09-05 13:34:53 +11001010 process_readdir();
1011 break;
Ben Lindstrom2f959b42001-01-11 06:20:23 +00001012 case SSH2_FXP_REMOVE:
Damien Miller7b28dc52000-09-05 13:34:53 +11001013 process_remove();
1014 break;
Ben Lindstrom2f959b42001-01-11 06:20:23 +00001015 case SSH2_FXP_MKDIR:
Damien Miller7b28dc52000-09-05 13:34:53 +11001016 process_mkdir();
1017 break;
Ben Lindstrom2f959b42001-01-11 06:20:23 +00001018 case SSH2_FXP_RMDIR:
Damien Miller7b28dc52000-09-05 13:34:53 +11001019 process_rmdir();
1020 break;
Ben Lindstrom2f959b42001-01-11 06:20:23 +00001021 case SSH2_FXP_REALPATH:
Damien Miller7b28dc52000-09-05 13:34:53 +11001022 process_realpath();
1023 break;
Ben Lindstrom2f959b42001-01-11 06:20:23 +00001024 case SSH2_FXP_STAT:
Damien Miller7b28dc52000-09-05 13:34:53 +11001025 process_stat();
1026 break;
Ben Lindstrom2f959b42001-01-11 06:20:23 +00001027 case SSH2_FXP_RENAME:
Damien Miller7b28dc52000-09-05 13:34:53 +11001028 process_rename();
1029 break;
Damien Miller058316f2001-03-08 10:08:49 +11001030 case SSH2_FXP_READLINK:
1031 process_readlink();
1032 break;
1033 case SSH2_FXP_SYMLINK:
1034 process_symlink();
1035 break;
Ben Lindstrom2f959b42001-01-11 06:20:23 +00001036 case SSH2_FXP_EXTENDED:
1037 process_extended();
1038 break;
Damien Miller7b28dc52000-09-05 13:34:53 +11001039 default:
1040 error("Unknown message %d", type);
1041 break;
1042 }
Ben Lindstrom2c140472002-06-06 21:57:54 +00001043 /* discard the remaining bytes from the current packet */
1044 if (buf_len < buffer_len(&iqueue))
1045 fatal("iqueue grows");
1046 consumed = buf_len - buffer_len(&iqueue);
1047 if (msg_len < consumed)
1048 fatal("msg_len %d < consumed %d", msg_len, consumed);
1049 if (msg_len > consumed)
1050 buffer_consume(&iqueue, msg_len - consumed);
Damien Miller7b28dc52000-09-05 13:34:53 +11001051}
1052
1053int
1054main(int ac, char **av)
1055{
Ben Lindstromcb80bdf2001-03-05 07:06:12 +00001056 fd_set *rset, *wset;
Damien Miller7b28dc52000-09-05 13:34:53 +11001057 int in, out, max;
Ben Lindstromcb80bdf2001-03-05 07:06:12 +00001058 ssize_t len, olen, set_size;
Damien Miller7b28dc52000-09-05 13:34:53 +11001059
Ben Lindstromc7f4ccd2001-03-15 00:09:15 +00001060 /* XXX should use getopt */
1061
Ben Lindstrom49a79c02000-11-17 03:47:20 +00001062 __progname = get_progname(av[0]);
Damien Miller7b28dc52000-09-05 13:34:53 +11001063 handle_init();
1064
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001065#ifdef DEBUG_SFTP_SERVER
Kevin Stevesef4eea92001-02-05 12:42:17 +00001066 log_init("sftp-server", SYSLOG_LEVEL_DEBUG1, SYSLOG_FACILITY_AUTH, 0);
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001067#endif
Ben Lindstrom2f959b42001-01-11 06:20:23 +00001068
Damien Miller7b28dc52000-09-05 13:34:53 +11001069 in = dup(STDIN_FILENO);
1070 out = dup(STDOUT_FILENO);
1071
Damien Miller402b3312001-04-14 00:28:42 +10001072#ifdef HAVE_CYGWIN
1073 setmode(in, O_BINARY);
1074 setmode(out, O_BINARY);
1075#endif
1076
Damien Miller7b28dc52000-09-05 13:34:53 +11001077 max = 0;
1078 if (in > max)
1079 max = in;
1080 if (out > max)
1081 max = out;
1082
1083 buffer_init(&iqueue);
1084 buffer_init(&oqueue);
1085
Ben Lindstromcb80bdf2001-03-05 07:06:12 +00001086 set_size = howmany(max + 1, NFDBITS) * sizeof(fd_mask);
1087 rset = (fd_set *)xmalloc(set_size);
1088 wset = (fd_set *)xmalloc(set_size);
Damien Miller7b28dc52000-09-05 13:34:53 +11001089
Ben Lindstromcb80bdf2001-03-05 07:06:12 +00001090 for (;;) {
1091 memset(rset, 0, set_size);
1092 memset(wset, 0, set_size);
1093
1094 FD_SET(in, rset);
Damien Miller7b28dc52000-09-05 13:34:53 +11001095 olen = buffer_len(&oqueue);
1096 if (olen > 0)
Ben Lindstromcb80bdf2001-03-05 07:06:12 +00001097 FD_SET(out, wset);
Damien Miller7b28dc52000-09-05 13:34:53 +11001098
Ben Lindstromcb80bdf2001-03-05 07:06:12 +00001099 if (select(max+1, rset, wset, NULL, NULL) < 0) {
Damien Miller7b28dc52000-09-05 13:34:53 +11001100 if (errno == EINTR)
1101 continue;
1102 exit(2);
1103 }
1104
1105 /* copy stdin to iqueue */
Ben Lindstromcb80bdf2001-03-05 07:06:12 +00001106 if (FD_ISSET(in, rset)) {
Damien Miller7b28dc52000-09-05 13:34:53 +11001107 char buf[4*4096];
1108 len = read(in, buf, sizeof buf);
1109 if (len == 0) {
1110 debug("read eof");
1111 exit(0);
1112 } else if (len < 0) {
1113 error("read error");
1114 exit(1);
1115 } else {
1116 buffer_append(&iqueue, buf, len);
1117 }
1118 }
1119 /* send oqueue to stdout */
Ben Lindstromcb80bdf2001-03-05 07:06:12 +00001120 if (FD_ISSET(out, wset)) {
Damien Miller7b28dc52000-09-05 13:34:53 +11001121 len = write(out, buffer_ptr(&oqueue), olen);
1122 if (len < 0) {
1123 error("write error");
1124 exit(1);
1125 } else {
1126 buffer_consume(&oqueue, len);
1127 }
1128 }
1129 /* process requests from client */
1130 process();
1131 }
1132}