blob: 44ccefff8881ca8bb4d07ee0ce35e5772e29c22d [file] [log] [blame]
Damien Millerd8cb1f12008-02-10 22:40:12 +11001/* $OpenBSD: sftp-server.c,v 1.77 2008/02/08 23:24:07 djm Exp $ */
Damien Miller7b28dc52000-09-05 13:34:53 +11002/*
Darren Tucker37bd3662004-02-24 09:19:15 +11003 * Copyright (c) 2000-2004 Markus Friedl. All rights reserved.
Damien Miller7b28dc52000-09-05 13:34:53 +11004 *
Darren Tucker37bd3662004-02-24 09:19:15 +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 Miller7b28dc52000-09-05 13:34:53 +11008 *
Darren Tucker37bd3662004-02-24 09:19:15 +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 Miller7b28dc52000-09-05 13:34:53 +110016 */
Damien Millerd7834352006-08-05 12:39:39 +100017
Damien Miller7b28dc52000-09-05 13:34:53 +110018#include "includes.h"
Damien Millerf17883e2006-03-15 11:45:54 +110019
20#include <sys/types.h>
Damien Miller8dbffe72006-08-05 11:02:17 +100021#include <sys/param.h>
Damien Millerf17883e2006-03-15 11:45:54 +110022#include <sys/stat.h>
Damien Miller9aec9192006-08-05 10:57:45 +100023#ifdef HAVE_SYS_TIME_H
24# include <sys/time.h>
25#endif
Damien Miller88f254b2006-03-15 11:25:13 +110026
27#include <dirent.h>
Darren Tucker39972492006-07-12 22:22:46 +100028#include <errno.h>
Damien Miller57cf6382006-07-10 21:13:46 +100029#include <fcntl.h>
Damien Miller9f2abc42006-07-10 20:53:08 +100030#include <pwd.h>
Damien Millere7a1e5c2006-08-05 11:34:19 +100031#include <stdlib.h>
Damien Millera7a73ee2006-08-05 11:37:59 +100032#include <stdio.h>
Damien Millere3476ed2006-07-24 14:13:33 +100033#include <string.h>
Damien Millerd7834352006-08-05 12:39:39 +100034#include <pwd.h>
Damien Miller5598b4f2006-07-24 14:09:40 +100035#include <time.h>
Damien Millere3476ed2006-07-24 14:13:33 +100036#include <unistd.h>
Damien Millerd7834352006-08-05 12:39:39 +100037#include <stdarg.h>
Damien Miller7b28dc52000-09-05 13:34:53 +110038
Damien Miller7b28dc52000-09-05 13:34:53 +110039#include "xmalloc.h"
Damien Millerd7834352006-08-05 12:39:39 +100040#include "buffer.h"
41#include "log.h"
Darren Tuckerce321d82005-10-03 18:11:24 +100042#include "misc.h"
Damien Millerfef95ad2006-07-10 20:46:55 +100043#include "uidswap.h"
Damien Miller7b28dc52000-09-05 13:34:53 +110044
Ben Lindstrom2f959b42001-01-11 06:20:23 +000045#include "sftp.h"
Damien Miller33804262001-02-04 23:20:18 +110046#include "sftp-common.h"
Damien Miller7b28dc52000-09-05 13:34:53 +110047
48/* helper */
Ben Lindstrom2f959b42001-01-11 06:20:23 +000049#define get_int64() buffer_get_int64(&iqueue);
Damien Miller7b28dc52000-09-05 13:34:53 +110050#define get_int() buffer_get_int(&iqueue);
51#define get_string(lenp) buffer_get_string(&iqueue, lenp);
Damien Miller7b28dc52000-09-05 13:34:53 +110052
Damien Millerfef95ad2006-07-10 20:46:55 +100053/* Our verbosity */
54LogLevel log_level = SYSLOG_LEVEL_ERROR;
55
56/* Our client */
57struct passwd *pw = NULL;
58char *client_addr = NULL;
Ben Lindstrom49a79c02000-11-17 03:47:20 +000059
Damien Miller7b28dc52000-09-05 13:34:53 +110060/* input and output queue */
61Buffer iqueue;
62Buffer oqueue;
63
Damien Miller058316f2001-03-08 10:08:49 +110064/* Version of client */
65int version;
66
Darren Tuckera6612d42003-06-28 12:39:03 +100067/* portable attributes, etc. */
Damien Miller7b28dc52000-09-05 13:34:53 +110068
Damien Miller7b28dc52000-09-05 13:34:53 +110069typedef struct Stat Stat;
70
Damien Miller33804262001-02-04 23:20:18 +110071struct Stat {
Damien Miller7b28dc52000-09-05 13:34:53 +110072 char *name;
73 char *long_name;
74 Attrib attrib;
75};
76
Ben Lindstrombba81212001-06-25 05:01:22 +000077static int
Damien Miller7b28dc52000-09-05 13:34:53 +110078errno_to_portable(int unixerrno)
79{
80 int ret = 0;
Ben Lindstrom1addabd2001-03-05 07:09:11 +000081
Damien Miller7b28dc52000-09-05 13:34:53 +110082 switch (unixerrno) {
83 case 0:
Ben Lindstrom2f959b42001-01-11 06:20:23 +000084 ret = SSH2_FX_OK;
Damien Miller7b28dc52000-09-05 13:34:53 +110085 break;
86 case ENOENT:
87 case ENOTDIR:
88 case EBADF:
89 case ELOOP:
Ben Lindstrom2f959b42001-01-11 06:20:23 +000090 ret = SSH2_FX_NO_SUCH_FILE;
Damien Miller7b28dc52000-09-05 13:34:53 +110091 break;
92 case EPERM:
93 case EACCES:
94 case EFAULT:
Ben Lindstrom2f959b42001-01-11 06:20:23 +000095 ret = SSH2_FX_PERMISSION_DENIED;
Damien Miller7b28dc52000-09-05 13:34:53 +110096 break;
97 case ENAMETOOLONG:
98 case EINVAL:
Ben Lindstrom2f959b42001-01-11 06:20:23 +000099 ret = SSH2_FX_BAD_MESSAGE;
Damien Miller7b28dc52000-09-05 13:34:53 +1100100 break;
101 default:
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000102 ret = SSH2_FX_FAILURE;
Damien Miller7b28dc52000-09-05 13:34:53 +1100103 break;
104 }
105 return ret;
106}
107
Ben Lindstrombba81212001-06-25 05:01:22 +0000108static int
Damien Miller7b28dc52000-09-05 13:34:53 +1100109flags_from_portable(int pflags)
110{
111 int flags = 0;
Ben Lindstrom1addabd2001-03-05 07:09:11 +0000112
Ben Lindstrom36592512001-03-05 05:02:08 +0000113 if ((pflags & SSH2_FXF_READ) &&
114 (pflags & SSH2_FXF_WRITE)) {
Damien Miller7b28dc52000-09-05 13:34:53 +1100115 flags = O_RDWR;
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000116 } else if (pflags & SSH2_FXF_READ) {
Damien Miller7b28dc52000-09-05 13:34:53 +1100117 flags = O_RDONLY;
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000118 } else if (pflags & SSH2_FXF_WRITE) {
Damien Miller7b28dc52000-09-05 13:34:53 +1100119 flags = O_WRONLY;
120 }
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000121 if (pflags & SSH2_FXF_CREAT)
Damien Miller7b28dc52000-09-05 13:34:53 +1100122 flags |= O_CREAT;
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000123 if (pflags & SSH2_FXF_TRUNC)
Damien Miller7b28dc52000-09-05 13:34:53 +1100124 flags |= O_TRUNC;
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000125 if (pflags & SSH2_FXF_EXCL)
Damien Miller7b28dc52000-09-05 13:34:53 +1100126 flags |= O_EXCL;
127 return flags;
128}
129
Damien Millerfef95ad2006-07-10 20:46:55 +1000130static const char *
131string_from_portable(int pflags)
132{
133 static char ret[128];
134
135 *ret = '\0';
136
137#define PAPPEND(str) { \
138 if (*ret != '\0') \
139 strlcat(ret, ",", sizeof(ret)); \
Damien Millerd7834352006-08-05 12:39:39 +1000140 strlcat(ret, str, sizeof(ret)); \
Damien Millerfef95ad2006-07-10 20:46:55 +1000141 }
142
143 if (pflags & SSH2_FXF_READ)
144 PAPPEND("READ")
145 if (pflags & SSH2_FXF_WRITE)
146 PAPPEND("WRITE")
147 if (pflags & SSH2_FXF_CREAT)
148 PAPPEND("CREATE")
149 if (pflags & SSH2_FXF_TRUNC)
150 PAPPEND("TRUNCATE")
151 if (pflags & SSH2_FXF_EXCL)
152 PAPPEND("EXCL")
153
154 return ret;
155}
156
Ben Lindstrombba81212001-06-25 05:01:22 +0000157static Attrib *
Damien Miller7b28dc52000-09-05 13:34:53 +1100158get_attrib(void)
159{
160 return decode_attrib(&iqueue);
161}
162
163/* handle handles */
164
165typedef struct Handle Handle;
166struct Handle {
167 int use;
168 DIR *dirp;
169 int fd;
170 char *name;
Damien Millerfef95ad2006-07-10 20:46:55 +1000171 u_int64_t bytes_read, bytes_write;
Damien Miller3397d0e2008-02-10 22:26:51 +1100172 int next_unused;
Damien Miller7b28dc52000-09-05 13:34:53 +1100173};
Ben Lindstrom1addabd2001-03-05 07:09:11 +0000174
Damien Miller7b28dc52000-09-05 13:34:53 +1100175enum {
176 HANDLE_UNUSED,
177 HANDLE_DIR,
178 HANDLE_FILE
179};
Ben Lindstrom1addabd2001-03-05 07:09:11 +0000180
Damien Miller3397d0e2008-02-10 22:26:51 +1100181Handle *handles = NULL;
182u_int num_handles = 0;
183int first_unused_handle = -1;
Damien Miller7b28dc52000-09-05 13:34:53 +1100184
Damien Miller3397d0e2008-02-10 22:26:51 +1100185static void handle_unused(int i)
Damien Miller7b28dc52000-09-05 13:34:53 +1100186{
Damien Miller3397d0e2008-02-10 22:26:51 +1100187 handles[i].use = HANDLE_UNUSED;
188 handles[i].next_unused = first_unused_handle;
189 first_unused_handle = i;
Damien Miller7b28dc52000-09-05 13:34:53 +1100190}
191
Ben Lindstrombba81212001-06-25 05:01:22 +0000192static int
Damien Millerf58b58c2003-11-17 21:18:23 +1100193handle_new(int use, const char *name, int fd, DIR *dirp)
Damien Miller7b28dc52000-09-05 13:34:53 +1100194{
Damien Miller3397d0e2008-02-10 22:26:51 +1100195 int i;
Ben Lindstrom1addabd2001-03-05 07:09:11 +0000196
Damien Miller3397d0e2008-02-10 22:26:51 +1100197 if (first_unused_handle == -1) {
198 if (num_handles + 1 <= num_handles)
199 return -1;
200 num_handles++;
201 handles = xrealloc(handles, num_handles, sizeof(Handle));
202 handle_unused(num_handles - 1);
Damien Miller7b28dc52000-09-05 13:34:53 +1100203 }
Damien Miller3397d0e2008-02-10 22:26:51 +1100204
205 i = first_unused_handle;
206 first_unused_handle = handles[i].next_unused;
207
208 handles[i].use = use;
209 handles[i].dirp = dirp;
210 handles[i].fd = fd;
211 handles[i].name = xstrdup(name);
212 handles[i].bytes_read = handles[i].bytes_write = 0;
213
214 return i;
Damien Miller7b28dc52000-09-05 13:34:53 +1100215}
216
Ben Lindstrombba81212001-06-25 05:01:22 +0000217static int
Damien Miller7b28dc52000-09-05 13:34:53 +1100218handle_is_ok(int i, int type)
219{
Damien Miller3397d0e2008-02-10 22:26:51 +1100220 return i >= 0 && (u_int)i < num_handles && handles[i].use == type;
Damien Miller7b28dc52000-09-05 13:34:53 +1100221}
222
Ben Lindstrombba81212001-06-25 05:01:22 +0000223static int
Damien Miller7b28dc52000-09-05 13:34:53 +1100224handle_to_string(int handle, char **stringp, int *hlenp)
225{
Damien Miller7b28dc52000-09-05 13:34:53 +1100226 if (stringp == NULL || hlenp == NULL)
227 return -1;
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000228 *stringp = xmalloc(sizeof(int32_t));
Damien Miller3f941882006-03-31 23:13:02 +1100229 put_u32(*stringp, handle);
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000230 *hlenp = sizeof(int32_t);
Damien Miller7b28dc52000-09-05 13:34:53 +1100231 return 0;
232}
233
Ben Lindstrombba81212001-06-25 05:01:22 +0000234static int
Damien Millerf58b58c2003-11-17 21:18:23 +1100235handle_from_string(const char *handle, u_int hlen)
Damien Miller7b28dc52000-09-05 13:34:53 +1100236{
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000237 int val;
Ben Lindstrom1addabd2001-03-05 07:09:11 +0000238
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000239 if (hlen != sizeof(int32_t))
Damien Miller7b28dc52000-09-05 13:34:53 +1100240 return -1;
Damien Miller3f941882006-03-31 23:13:02 +1100241 val = get_u32(handle);
Damien Miller7b28dc52000-09-05 13:34:53 +1100242 if (handle_is_ok(val, HANDLE_FILE) ||
243 handle_is_ok(val, HANDLE_DIR))
244 return val;
245 return -1;
246}
247
Ben Lindstrombba81212001-06-25 05:01:22 +0000248static char *
Damien Miller7b28dc52000-09-05 13:34:53 +1100249handle_to_name(int handle)
250{
251 if (handle_is_ok(handle, HANDLE_DIR)||
252 handle_is_ok(handle, HANDLE_FILE))
253 return handles[handle].name;
254 return NULL;
255}
256
Ben Lindstrombba81212001-06-25 05:01:22 +0000257static DIR *
Damien Miller7b28dc52000-09-05 13:34:53 +1100258handle_to_dir(int handle)
259{
260 if (handle_is_ok(handle, HANDLE_DIR))
261 return handles[handle].dirp;
262 return NULL;
263}
264
Ben Lindstrombba81212001-06-25 05:01:22 +0000265static int
Damien Miller7b28dc52000-09-05 13:34:53 +1100266handle_to_fd(int handle)
267{
Kevin Stevesef4eea92001-02-05 12:42:17 +0000268 if (handle_is_ok(handle, HANDLE_FILE))
Damien Miller7b28dc52000-09-05 13:34:53 +1100269 return handles[handle].fd;
270 return -1;
271}
272
Damien Millerfef95ad2006-07-10 20:46:55 +1000273static void
274handle_update_read(int handle, ssize_t bytes)
275{
276 if (handle_is_ok(handle, HANDLE_FILE) && bytes > 0)
277 handles[handle].bytes_read += bytes;
278}
279
280static void
281handle_update_write(int handle, ssize_t bytes)
282{
283 if (handle_is_ok(handle, HANDLE_FILE) && bytes > 0)
284 handles[handle].bytes_write += bytes;
285}
286
287static u_int64_t
288handle_bytes_read(int handle)
289{
290 if (handle_is_ok(handle, HANDLE_FILE))
291 return (handles[handle].bytes_read);
292 return 0;
293}
294
295static u_int64_t
296handle_bytes_write(int handle)
297{
298 if (handle_is_ok(handle, HANDLE_FILE))
299 return (handles[handle].bytes_write);
300 return 0;
301}
302
Ben Lindstrombba81212001-06-25 05:01:22 +0000303static int
Damien Miller7b28dc52000-09-05 13:34:53 +1100304handle_close(int handle)
305{
306 int ret = -1;
Ben Lindstrom1addabd2001-03-05 07:09:11 +0000307
Damien Miller7b28dc52000-09-05 13:34:53 +1100308 if (handle_is_ok(handle, HANDLE_FILE)) {
309 ret = close(handles[handle].fd);
Damien Miller00111382003-03-10 11:21:17 +1100310 xfree(handles[handle].name);
Damien Miller3397d0e2008-02-10 22:26:51 +1100311 handle_unused(handle);
Damien Miller7b28dc52000-09-05 13:34:53 +1100312 } else if (handle_is_ok(handle, HANDLE_DIR)) {
313 ret = closedir(handles[handle].dirp);
Damien Miller00111382003-03-10 11:21:17 +1100314 xfree(handles[handle].name);
Damien Miller3397d0e2008-02-10 22:26:51 +1100315 handle_unused(handle);
Damien Miller7b28dc52000-09-05 13:34:53 +1100316 } else {
317 errno = ENOENT;
318 }
319 return ret;
320}
321
Damien Millerfef95ad2006-07-10 20:46:55 +1000322static void
323handle_log_close(int handle, char *emsg)
324{
325 if (handle_is_ok(handle, HANDLE_FILE)) {
326 logit("%s%sclose \"%s\" bytes read %llu written %llu",
327 emsg == NULL ? "" : emsg, emsg == NULL ? "" : " ",
328 handle_to_name(handle),
Darren Tucker86473c52007-05-20 14:59:32 +1000329 (unsigned long long)handle_bytes_read(handle),
330 (unsigned long long)handle_bytes_write(handle));
Damien Millerfef95ad2006-07-10 20:46:55 +1000331 } else {
332 logit("%s%sclosedir \"%s\"",
333 emsg == NULL ? "" : emsg, emsg == NULL ? "" : " ",
334 handle_to_name(handle));
335 }
336}
337
338static void
339handle_log_exit(void)
340{
341 u_int i;
342
Damien Miller3397d0e2008-02-10 22:26:51 +1100343 for (i = 0; i < num_handles; i++)
Damien Millerfef95ad2006-07-10 20:46:55 +1000344 if (handles[i].use != HANDLE_UNUSED)
345 handle_log_close(i, "forced");
346}
347
Ben Lindstrombba81212001-06-25 05:01:22 +0000348static int
Damien Miller7b28dc52000-09-05 13:34:53 +1100349get_handle(void)
350{
351 char *handle;
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000352 int val = -1;
Damien Millere4340be2000-09-16 13:29:08 +1100353 u_int hlen;
Ben Lindstrom1addabd2001-03-05 07:09:11 +0000354
Damien Miller7b28dc52000-09-05 13:34:53 +1100355 handle = get_string(&hlen);
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000356 if (hlen < 256)
357 val = handle_from_string(handle, hlen);
Damien Miller7b28dc52000-09-05 13:34:53 +1100358 xfree(handle);
359 return val;
360}
361
362/* send replies */
363
Ben Lindstrombba81212001-06-25 05:01:22 +0000364static void
Damien Miller7b28dc52000-09-05 13:34:53 +1100365send_msg(Buffer *m)
366{
367 int mlen = buffer_len(m);
Ben Lindstrom1addabd2001-03-05 07:09:11 +0000368
Damien Miller7b28dc52000-09-05 13:34:53 +1100369 buffer_put_int(&oqueue, mlen);
370 buffer_append(&oqueue, buffer_ptr(m), mlen);
371 buffer_consume(m, mlen);
372}
373
Damien Millerfef95ad2006-07-10 20:46:55 +1000374static const char *
375status_to_message(u_int32_t status)
Damien Miller7b28dc52000-09-05 13:34:53 +1100376{
Damien Miller058316f2001-03-08 10:08:49 +1100377 const char *status_messages[] = {
378 "Success", /* SSH_FX_OK */
379 "End of file", /* SSH_FX_EOF */
380 "No such file", /* SSH_FX_NO_SUCH_FILE */
381 "Permission denied", /* SSH_FX_PERMISSION_DENIED */
382 "Failure", /* SSH_FX_FAILURE */
383 "Bad message", /* SSH_FX_BAD_MESSAGE */
384 "No connection", /* SSH_FX_NO_CONNECTION */
385 "Connection lost", /* SSH_FX_CONNECTION_LOST */
386 "Operation unsupported", /* SSH_FX_OP_UNSUPPORTED */
387 "Unknown error" /* Others */
388 };
Damien Millerfef95ad2006-07-10 20:46:55 +1000389 return (status_messages[MIN(status,SSH2_FX_MAX)]);
390}
Ben Lindstrom1addabd2001-03-05 07:09:11 +0000391
Damien Millerfef95ad2006-07-10 20:46:55 +1000392static void
393send_status(u_int32_t id, u_int32_t status)
394{
395 Buffer msg;
396
397 debug3("request %u: sent status %u", id, status);
398 if (log_level > SYSLOG_LEVEL_VERBOSE ||
399 (status != SSH2_FX_OK && status != SSH2_FX_EOF))
400 logit("sent status %s", status_to_message(status));
Damien Miller7b28dc52000-09-05 13:34:53 +1100401 buffer_init(&msg);
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000402 buffer_put_char(&msg, SSH2_FXP_STATUS);
Damien Miller7b28dc52000-09-05 13:34:53 +1100403 buffer_put_int(&msg, id);
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000404 buffer_put_int(&msg, status);
Damien Miller058316f2001-03-08 10:08:49 +1100405 if (version >= 3) {
Damien Millerfef95ad2006-07-10 20:46:55 +1000406 buffer_put_cstring(&msg, status_to_message(status));
Damien Miller058316f2001-03-08 10:08:49 +1100407 buffer_put_cstring(&msg, "");
408 }
Damien Miller7b28dc52000-09-05 13:34:53 +1100409 send_msg(&msg);
410 buffer_free(&msg);
411}
Ben Lindstrombba81212001-06-25 05:01:22 +0000412static void
Damien Millerf58b58c2003-11-17 21:18:23 +1100413send_data_or_handle(char type, u_int32_t id, const char *data, int dlen)
Damien Miller7b28dc52000-09-05 13:34:53 +1100414{
415 Buffer msg;
Ben Lindstrom1addabd2001-03-05 07:09:11 +0000416
Damien Miller7b28dc52000-09-05 13:34:53 +1100417 buffer_init(&msg);
418 buffer_put_char(&msg, type);
419 buffer_put_int(&msg, id);
420 buffer_put_string(&msg, data, dlen);
421 send_msg(&msg);
422 buffer_free(&msg);
423}
424
Ben Lindstrombba81212001-06-25 05:01:22 +0000425static void
Damien Millerf58b58c2003-11-17 21:18:23 +1100426send_data(u_int32_t id, const char *data, int dlen)
Damien Miller7b28dc52000-09-05 13:34:53 +1100427{
Damien Millerfef95ad2006-07-10 20:46:55 +1000428 debug("request %u: sent data len %d", id, dlen);
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000429 send_data_or_handle(SSH2_FXP_DATA, id, data, dlen);
Damien Miller7b28dc52000-09-05 13:34:53 +1100430}
431
Ben Lindstrombba81212001-06-25 05:01:22 +0000432static void
Damien Miller7b28dc52000-09-05 13:34:53 +1100433send_handle(u_int32_t id, int handle)
434{
435 char *string;
436 int hlen;
Ben Lindstrom1addabd2001-03-05 07:09:11 +0000437
Damien Miller7b28dc52000-09-05 13:34:53 +1100438 handle_to_string(handle, &string, &hlen);
Damien Millerfef95ad2006-07-10 20:46:55 +1000439 debug("request %u: sent handle handle %d", id, handle);
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000440 send_data_or_handle(SSH2_FXP_HANDLE, id, string, hlen);
Damien Miller7b28dc52000-09-05 13:34:53 +1100441 xfree(string);
442}
443
Ben Lindstrombba81212001-06-25 05:01:22 +0000444static void
Damien Millerf58b58c2003-11-17 21:18:23 +1100445send_names(u_int32_t id, int count, const Stat *stats)
Damien Miller7b28dc52000-09-05 13:34:53 +1100446{
447 Buffer msg;
448 int i;
Ben Lindstrom1addabd2001-03-05 07:09:11 +0000449
Damien Miller7b28dc52000-09-05 13:34:53 +1100450 buffer_init(&msg);
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000451 buffer_put_char(&msg, SSH2_FXP_NAME);
Damien Miller7b28dc52000-09-05 13:34:53 +1100452 buffer_put_int(&msg, id);
453 buffer_put_int(&msg, count);
Damien Millerfef95ad2006-07-10 20:46:55 +1000454 debug("request %u: sent names count %d", id, count);
Damien Miller7b28dc52000-09-05 13:34:53 +1100455 for (i = 0; i < count; i++) {
456 buffer_put_cstring(&msg, stats[i].name);
457 buffer_put_cstring(&msg, stats[i].long_name);
458 encode_attrib(&msg, &stats[i].attrib);
459 }
460 send_msg(&msg);
461 buffer_free(&msg);
462}
463
Ben Lindstrombba81212001-06-25 05:01:22 +0000464static void
Damien Millerf58b58c2003-11-17 21:18:23 +1100465send_attrib(u_int32_t id, const Attrib *a)
Damien Miller7b28dc52000-09-05 13:34:53 +1100466{
467 Buffer msg;
Ben Lindstrom1addabd2001-03-05 07:09:11 +0000468
Damien Millerfef95ad2006-07-10 20:46:55 +1000469 debug("request %u: sent attrib have 0x%x", id, a->flags);
Damien Miller7b28dc52000-09-05 13:34:53 +1100470 buffer_init(&msg);
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000471 buffer_put_char(&msg, SSH2_FXP_ATTRS);
Damien Miller7b28dc52000-09-05 13:34:53 +1100472 buffer_put_int(&msg, id);
473 encode_attrib(&msg, a);
474 send_msg(&msg);
475 buffer_free(&msg);
476}
477
478/* parse incoming */
479
Ben Lindstrombba81212001-06-25 05:01:22 +0000480static void
Damien Miller7b28dc52000-09-05 13:34:53 +1100481process_init(void)
482{
483 Buffer msg;
Damien Miller7b28dc52000-09-05 13:34:53 +1100484
Ben Lindstrom937df1d2002-06-06 21:58:35 +0000485 version = get_int();
Damien Millerfef95ad2006-07-10 20:46:55 +1000486 verbose("received client version %d", version);
Damien Miller7b28dc52000-09-05 13:34:53 +1100487 buffer_init(&msg);
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000488 buffer_put_char(&msg, SSH2_FXP_VERSION);
489 buffer_put_int(&msg, SSH2_FILEXFER_VERSION);
Damien Miller7b28dc52000-09-05 13:34:53 +1100490 send_msg(&msg);
491 buffer_free(&msg);
492}
493
Ben Lindstrombba81212001-06-25 05:01:22 +0000494static void
Damien Miller7b28dc52000-09-05 13:34:53 +1100495process_open(void)
496{
497 u_int32_t id, pflags;
498 Attrib *a;
499 char *name;
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000500 int handle, fd, flags, mode, status = SSH2_FX_FAILURE;
Damien Miller7b28dc52000-09-05 13:34:53 +1100501
502 id = get_int();
503 name = get_string(NULL);
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000504 pflags = get_int(); /* portable flags */
Damien Miller6444fe92006-07-10 21:31:27 +1000505 debug3("request %u: open flags %d", id, pflags);
Damien Miller7b28dc52000-09-05 13:34:53 +1100506 a = get_attrib();
507 flags = flags_from_portable(pflags);
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000508 mode = (a->flags & SSH2_FILEXFER_ATTR_PERMISSIONS) ? a->perm : 0666;
Damien Millerfef95ad2006-07-10 20:46:55 +1000509 logit("open \"%s\" flags %s mode 0%o",
510 name, string_from_portable(pflags), mode);
Damien Miller7b28dc52000-09-05 13:34:53 +1100511 fd = open(name, flags, mode);
512 if (fd < 0) {
513 status = errno_to_portable(errno);
514 } else {
Damien Miller00111382003-03-10 11:21:17 +1100515 handle = handle_new(HANDLE_FILE, name, fd, NULL);
Damien Miller7b28dc52000-09-05 13:34:53 +1100516 if (handle < 0) {
517 close(fd);
518 } else {
519 send_handle(id, handle);
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000520 status = SSH2_FX_OK;
Damien Miller7b28dc52000-09-05 13:34:53 +1100521 }
522 }
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000523 if (status != SSH2_FX_OK)
Damien Miller7b28dc52000-09-05 13:34:53 +1100524 send_status(id, status);
525 xfree(name);
526}
527
Ben Lindstrombba81212001-06-25 05:01:22 +0000528static void
Damien Miller7b28dc52000-09-05 13:34:53 +1100529process_close(void)
530{
531 u_int32_t id;
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000532 int handle, ret, status = SSH2_FX_FAILURE;
Damien Miller7b28dc52000-09-05 13:34:53 +1100533
534 id = get_int();
535 handle = get_handle();
Damien Millerfef95ad2006-07-10 20:46:55 +1000536 debug3("request %u: close handle %u", id, handle);
537 handle_log_close(handle, NULL);
Damien Miller7b28dc52000-09-05 13:34:53 +1100538 ret = handle_close(handle);
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000539 status = (ret == -1) ? errno_to_portable(errno) : SSH2_FX_OK;
Damien Miller7b28dc52000-09-05 13:34:53 +1100540 send_status(id, status);
541}
542
Ben Lindstrombba81212001-06-25 05:01:22 +0000543static void
Damien Miller7b28dc52000-09-05 13:34:53 +1100544process_read(void)
545{
546 char buf[64*1024];
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000547 u_int32_t id, len;
548 int handle, fd, ret, status = SSH2_FX_FAILURE;
Damien Miller7b28dc52000-09-05 13:34:53 +1100549 u_int64_t off;
550
551 id = get_int();
552 handle = get_handle();
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000553 off = get_int64();
Damien Miller7b28dc52000-09-05 13:34:53 +1100554 len = get_int();
555
Damien Millerfef95ad2006-07-10 20:46:55 +1000556 debug("request %u: read \"%s\" (handle %d) off %llu len %d",
557 id, handle_to_name(handle), handle, (unsigned long long)off, len);
Damien Miller7b28dc52000-09-05 13:34:53 +1100558 if (len > sizeof buf) {
559 len = sizeof buf;
Damien Millerfef95ad2006-07-10 20:46:55 +1000560 debug2("read change len %d", len);
Damien Miller7b28dc52000-09-05 13:34:53 +1100561 }
562 fd = handle_to_fd(handle);
563 if (fd >= 0) {
564 if (lseek(fd, off, SEEK_SET) < 0) {
565 error("process_read: seek failed");
566 status = errno_to_portable(errno);
567 } else {
568 ret = read(fd, buf, len);
569 if (ret < 0) {
570 status = errno_to_portable(errno);
571 } else if (ret == 0) {
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000572 status = SSH2_FX_EOF;
Damien Miller7b28dc52000-09-05 13:34:53 +1100573 } else {
574 send_data(id, buf, ret);
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000575 status = SSH2_FX_OK;
Damien Millerfef95ad2006-07-10 20:46:55 +1000576 handle_update_read(handle, ret);
Damien Miller7b28dc52000-09-05 13:34:53 +1100577 }
578 }
579 }
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000580 if (status != SSH2_FX_OK)
Damien Miller7b28dc52000-09-05 13:34:53 +1100581 send_status(id, status);
582}
583
Ben Lindstrombba81212001-06-25 05:01:22 +0000584static void
Damien Miller7b28dc52000-09-05 13:34:53 +1100585process_write(void)
586{
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000587 u_int32_t id;
Damien Miller7b28dc52000-09-05 13:34:53 +1100588 u_int64_t off;
Damien Millere4340be2000-09-16 13:29:08 +1100589 u_int len;
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000590 int handle, fd, ret, status = SSH2_FX_FAILURE;
Damien Miller7b28dc52000-09-05 13:34:53 +1100591 char *data;
592
593 id = get_int();
594 handle = get_handle();
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000595 off = get_int64();
Damien Miller7b28dc52000-09-05 13:34:53 +1100596 data = get_string(&len);
597
Damien Millerfef95ad2006-07-10 20:46:55 +1000598 debug("request %u: write \"%s\" (handle %d) off %llu len %d",
599 id, handle_to_name(handle), handle, (unsigned long long)off, len);
Damien Miller7b28dc52000-09-05 13:34:53 +1100600 fd = handle_to_fd(handle);
601 if (fd >= 0) {
602 if (lseek(fd, off, SEEK_SET) < 0) {
603 status = errno_to_portable(errno);
604 error("process_write: seek failed");
605 } else {
606/* XXX ATOMICIO ? */
607 ret = write(fd, data, len);
Damien Millereccb9de2005-06-17 12:59:34 +1000608 if (ret < 0) {
Damien Miller7b28dc52000-09-05 13:34:53 +1100609 error("process_write: write failed");
610 status = errno_to_portable(errno);
Damien Millereccb9de2005-06-17 12:59:34 +1000611 } else if ((size_t)ret == len) {
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000612 status = SSH2_FX_OK;
Damien Millerfef95ad2006-07-10 20:46:55 +1000613 handle_update_write(handle, ret);
Damien Miller7b28dc52000-09-05 13:34:53 +1100614 } else {
Damien Millerfef95ad2006-07-10 20:46:55 +1000615 debug2("nothing at all written");
Damien Miller7b28dc52000-09-05 13:34:53 +1100616 }
617 }
618 }
619 send_status(id, status);
620 xfree(data);
621}
622
Ben Lindstrombba81212001-06-25 05:01:22 +0000623static void
Damien Miller7b28dc52000-09-05 13:34:53 +1100624process_do_stat(int do_lstat)
625{
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000626 Attrib a;
Damien Miller7b28dc52000-09-05 13:34:53 +1100627 struct stat st;
628 u_int32_t id;
629 char *name;
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000630 int ret, status = SSH2_FX_FAILURE;
Damien Miller7b28dc52000-09-05 13:34:53 +1100631
632 id = get_int();
633 name = get_string(NULL);
Damien Millerfef95ad2006-07-10 20:46:55 +1000634 debug3("request %u: %sstat", id, do_lstat ? "l" : "");
635 verbose("%sstat name \"%s\"", do_lstat ? "l" : "", name);
Damien Miller7b28dc52000-09-05 13:34:53 +1100636 ret = do_lstat ? lstat(name, &st) : stat(name, &st);
637 if (ret < 0) {
638 status = errno_to_portable(errno);
639 } else {
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000640 stat_to_attrib(&st, &a);
641 send_attrib(id, &a);
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000642 status = SSH2_FX_OK;
Damien Miller7b28dc52000-09-05 13:34:53 +1100643 }
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000644 if (status != SSH2_FX_OK)
Damien Miller7b28dc52000-09-05 13:34:53 +1100645 send_status(id, status);
646 xfree(name);
647}
648
Ben Lindstrombba81212001-06-25 05:01:22 +0000649static void
Damien Miller7b28dc52000-09-05 13:34:53 +1100650process_stat(void)
651{
652 process_do_stat(0);
653}
654
Ben Lindstrombba81212001-06-25 05:01:22 +0000655static void
Damien Miller7b28dc52000-09-05 13:34:53 +1100656process_lstat(void)
657{
658 process_do_stat(1);
659}
660
Ben Lindstrombba81212001-06-25 05:01:22 +0000661static void
Damien Miller7b28dc52000-09-05 13:34:53 +1100662process_fstat(void)
663{
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000664 Attrib a;
Damien Miller7b28dc52000-09-05 13:34:53 +1100665 struct stat st;
666 u_int32_t id;
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000667 int fd, ret, handle, status = SSH2_FX_FAILURE;
Damien Miller7b28dc52000-09-05 13:34:53 +1100668
669 id = get_int();
670 handle = get_handle();
Damien Millerfef95ad2006-07-10 20:46:55 +1000671 debug("request %u: fstat \"%s\" (handle %u)",
672 id, handle_to_name(handle), handle);
Damien Miller7b28dc52000-09-05 13:34:53 +1100673 fd = handle_to_fd(handle);
Damien Millere2334d62007-01-05 16:31:02 +1100674 if (fd >= 0) {
Damien Miller7b28dc52000-09-05 13:34:53 +1100675 ret = fstat(fd, &st);
676 if (ret < 0) {
677 status = errno_to_portable(errno);
678 } else {
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000679 stat_to_attrib(&st, &a);
680 send_attrib(id, &a);
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000681 status = SSH2_FX_OK;
Damien Miller7b28dc52000-09-05 13:34:53 +1100682 }
683 }
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000684 if (status != SSH2_FX_OK)
Damien Miller7b28dc52000-09-05 13:34:53 +1100685 send_status(id, status);
686}
687
Ben Lindstrombba81212001-06-25 05:01:22 +0000688static struct timeval *
Damien Millerf58b58c2003-11-17 21:18:23 +1100689attrib_to_tv(const Attrib *a)
Damien Miller7b28dc52000-09-05 13:34:53 +1100690{
691 static struct timeval tv[2];
Ben Lindstrom1addabd2001-03-05 07:09:11 +0000692
Damien Miller7b28dc52000-09-05 13:34:53 +1100693 tv[0].tv_sec = a->atime;
694 tv[0].tv_usec = 0;
695 tv[1].tv_sec = a->mtime;
696 tv[1].tv_usec = 0;
697 return tv;
698}
699
Ben Lindstrombba81212001-06-25 05:01:22 +0000700static void
Damien Miller7b28dc52000-09-05 13:34:53 +1100701process_setstat(void)
702{
703 Attrib *a;
704 u_int32_t id;
705 char *name;
Ben Lindstromb1f483f2002-06-23 21:27:18 +0000706 int status = SSH2_FX_OK, ret;
Damien Miller7b28dc52000-09-05 13:34:53 +1100707
708 id = get_int();
709 name = get_string(NULL);
710 a = get_attrib();
Damien Millerfef95ad2006-07-10 20:46:55 +1000711 debug("request %u: setstat name \"%s\"", id, name);
Damien Miller00c92172002-02-13 14:05:00 +1100712 if (a->flags & SSH2_FILEXFER_ATTR_SIZE) {
Darren Tucker86473c52007-05-20 14:59:32 +1000713 logit("set \"%s\" size %llu",
714 name, (unsigned long long)a->size);
Damien Miller00c92172002-02-13 14:05:00 +1100715 ret = truncate(name, a->size);
716 if (ret == -1)
717 status = errno_to_portable(errno);
718 }
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000719 if (a->flags & SSH2_FILEXFER_ATTR_PERMISSIONS) {
Damien Millerfef95ad2006-07-10 20:46:55 +1000720 logit("set \"%s\" mode %04o", name, a->perm);
Damien Miller7b28dc52000-09-05 13:34:53 +1100721 ret = chmod(name, a->perm & 0777);
722 if (ret == -1)
723 status = errno_to_portable(errno);
724 }
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000725 if (a->flags & SSH2_FILEXFER_ATTR_ACMODTIME) {
Damien Millerfef95ad2006-07-10 20:46:55 +1000726 char buf[64];
727 time_t t = a->mtime;
728
729 strftime(buf, sizeof(buf), "%Y%m%d-%H:%M:%S",
730 localtime(&t));
731 logit("set \"%s\" modtime %s", name, buf);
Damien Miller7b28dc52000-09-05 13:34:53 +1100732 ret = utimes(name, attrib_to_tv(a));
733 if (ret == -1)
734 status = errno_to_portable(errno);
735 }
Kevin Steves8e743932001-02-05 13:24:35 +0000736 if (a->flags & SSH2_FILEXFER_ATTR_UIDGID) {
Damien Millerfef95ad2006-07-10 20:46:55 +1000737 logit("set \"%s\" owner %lu group %lu", name,
738 (u_long)a->uid, (u_long)a->gid);
Kevin Steves8e743932001-02-05 13:24:35 +0000739 ret = chown(name, a->uid, a->gid);
740 if (ret == -1)
741 status = errno_to_portable(errno);
742 }
Damien Miller7b28dc52000-09-05 13:34:53 +1100743 send_status(id, status);
744 xfree(name);
745}
746
Ben Lindstrombba81212001-06-25 05:01:22 +0000747static void
Damien Miller7b28dc52000-09-05 13:34:53 +1100748process_fsetstat(void)
749{
750 Attrib *a;
751 u_int32_t id;
752 int handle, fd, ret;
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000753 int status = SSH2_FX_OK;
Kevin Stevesf7ffab32001-01-24 20:11:06 +0000754
Damien Miller7b28dc52000-09-05 13:34:53 +1100755 id = get_int();
756 handle = get_handle();
757 a = get_attrib();
Damien Millerfef95ad2006-07-10 20:46:55 +1000758 debug("request %u: fsetstat handle %d", id, handle);
Damien Miller7b28dc52000-09-05 13:34:53 +1100759 fd = handle_to_fd(handle);
Damien Millerfef95ad2006-07-10 20:46:55 +1000760 if (fd < 0) {
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000761 status = SSH2_FX_FAILURE;
Damien Miller7b28dc52000-09-05 13:34:53 +1100762 } else {
Damien Millerfef95ad2006-07-10 20:46:55 +1000763 char *name = handle_to_name(handle);
764
Damien Miller00c92172002-02-13 14:05:00 +1100765 if (a->flags & SSH2_FILEXFER_ATTR_SIZE) {
Darren Tucker86473c52007-05-20 14:59:32 +1000766 logit("set \"%s\" size %llu",
767 name, (unsigned long long)a->size);
Damien Miller00c92172002-02-13 14:05:00 +1100768 ret = ftruncate(fd, a->size);
769 if (ret == -1)
770 status = errno_to_portable(errno);
771 }
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000772 if (a->flags & SSH2_FILEXFER_ATTR_PERMISSIONS) {
Damien Millerfef95ad2006-07-10 20:46:55 +1000773 logit("set \"%s\" mode %04o", name, a->perm);
Ben Lindstrom200e3c92001-01-15 01:56:46 +0000774#ifdef HAVE_FCHMOD
Damien Miller7b28dc52000-09-05 13:34:53 +1100775 ret = fchmod(fd, a->perm & 0777);
Ben Lindstrom200e3c92001-01-15 01:56:46 +0000776#else
Kevin Stevesb6b37ba2001-01-24 20:01:44 +0000777 ret = chmod(name, a->perm & 0777);
Ben Lindstrom200e3c92001-01-15 01:56:46 +0000778#endif
Damien Miller7b28dc52000-09-05 13:34:53 +1100779 if (ret == -1)
780 status = errno_to_portable(errno);
781 }
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000782 if (a->flags & SSH2_FILEXFER_ATTR_ACMODTIME) {
Damien Millerfef95ad2006-07-10 20:46:55 +1000783 char buf[64];
784 time_t t = a->mtime;
785
786 strftime(buf, sizeof(buf), "%Y%m%d-%H:%M:%S",
787 localtime(&t));
788 logit("set \"%s\" modtime %s", name, buf);
Damien Miller7b28dc52000-09-05 13:34:53 +1100789#ifdef HAVE_FUTIMES
790 ret = futimes(fd, attrib_to_tv(a));
791#else
792 ret = utimes(name, attrib_to_tv(a));
793#endif
794 if (ret == -1)
795 status = errno_to_portable(errno);
796 }
Kevin Steves8e743932001-02-05 13:24:35 +0000797 if (a->flags & SSH2_FILEXFER_ATTR_UIDGID) {
Damien Millerfef95ad2006-07-10 20:46:55 +1000798 logit("set \"%s\" owner %lu group %lu", name,
799 (u_long)a->uid, (u_long)a->gid);
Ben Lindstrom34bb0c72001-02-13 02:40:56 +0000800#ifdef HAVE_FCHOWN
Kevin Steves8e743932001-02-05 13:24:35 +0000801 ret = fchown(fd, a->uid, a->gid);
Ben Lindstrom34bb0c72001-02-13 02:40:56 +0000802#else
803 ret = chown(name, a->uid, a->gid);
804#endif
Kevin Steves8e743932001-02-05 13:24:35 +0000805 if (ret == -1)
806 status = errno_to_portable(errno);
807 }
Damien Miller7b28dc52000-09-05 13:34:53 +1100808 }
809 send_status(id, status);
810}
811
Ben Lindstrombba81212001-06-25 05:01:22 +0000812static void
Damien Miller7b28dc52000-09-05 13:34:53 +1100813process_opendir(void)
814{
815 DIR *dirp = NULL;
816 char *path;
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000817 int handle, status = SSH2_FX_FAILURE;
Damien Miller7b28dc52000-09-05 13:34:53 +1100818 u_int32_t id;
819
820 id = get_int();
821 path = get_string(NULL);
Damien Millerfef95ad2006-07-10 20:46:55 +1000822 debug3("request %u: opendir", id);
823 logit("opendir \"%s\"", path);
Kevin Stevesef4eea92001-02-05 12:42:17 +0000824 dirp = opendir(path);
Damien Miller7b28dc52000-09-05 13:34:53 +1100825 if (dirp == NULL) {
826 status = errno_to_portable(errno);
827 } else {
Damien Miller00111382003-03-10 11:21:17 +1100828 handle = handle_new(HANDLE_DIR, path, 0, dirp);
Damien Miller7b28dc52000-09-05 13:34:53 +1100829 if (handle < 0) {
830 closedir(dirp);
831 } else {
832 send_handle(id, handle);
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000833 status = SSH2_FX_OK;
Damien Miller7b28dc52000-09-05 13:34:53 +1100834 }
Kevin Stevesef4eea92001-02-05 12:42:17 +0000835
Damien Miller7b28dc52000-09-05 13:34:53 +1100836 }
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000837 if (status != SSH2_FX_OK)
Damien Miller7b28dc52000-09-05 13:34:53 +1100838 send_status(id, status);
839 xfree(path);
840}
841
Ben Lindstrombba81212001-06-25 05:01:22 +0000842static void
Damien Miller7b28dc52000-09-05 13:34:53 +1100843process_readdir(void)
844{
845 DIR *dirp;
846 struct dirent *dp;
847 char *path;
848 int handle;
849 u_int32_t id;
850
851 id = get_int();
852 handle = get_handle();
Damien Millerfef95ad2006-07-10 20:46:55 +1000853 debug("request %u: readdir \"%s\" (handle %d)", id,
854 handle_to_name(handle), handle);
Damien Miller7b28dc52000-09-05 13:34:53 +1100855 dirp = handle_to_dir(handle);
856 path = handle_to_name(handle);
857 if (dirp == NULL || path == NULL) {
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000858 send_status(id, SSH2_FX_FAILURE);
Damien Miller7b28dc52000-09-05 13:34:53 +1100859 } else {
Damien Miller7b28dc52000-09-05 13:34:53 +1100860 struct stat st;
Damien Millerfef95ad2006-07-10 20:46:55 +1000861 char pathname[MAXPATHLEN];
Damien Miller7b28dc52000-09-05 13:34:53 +1100862 Stat *stats;
863 int nstats = 10, count = 0, i;
Ben Lindstromb1f483f2002-06-23 21:27:18 +0000864
Damien Miller07d86be2006-03-26 14:19:21 +1100865 stats = xcalloc(nstats, sizeof(Stat));
Damien Miller7b28dc52000-09-05 13:34:53 +1100866 while ((dp = readdir(dirp)) != NULL) {
867 if (count >= nstats) {
868 nstats *= 2;
Damien Miller36812092006-03-26 14:22:47 +1100869 stats = xrealloc(stats, nstats, sizeof(Stat));
Damien Miller7b28dc52000-09-05 13:34:53 +1100870 }
871/* XXX OVERFLOW ? */
Ben Lindstrom95148e32001-08-06 21:30:53 +0000872 snprintf(pathname, sizeof pathname, "%s%s%s", path,
873 strcmp(path, "/") ? "/" : "", dp->d_name);
Damien Miller7b28dc52000-09-05 13:34:53 +1100874 if (lstat(pathname, &st) < 0)
875 continue;
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000876 stat_to_attrib(&st, &(stats[count].attrib));
Damien Miller7b28dc52000-09-05 13:34:53 +1100877 stats[count].name = xstrdup(dp->d_name);
Damien Millere1a49812002-09-12 09:54:25 +1000878 stats[count].long_name = ls_file(dp->d_name, &st, 0);
Damien Miller7b28dc52000-09-05 13:34:53 +1100879 count++;
880 /* send up to 100 entries in one message */
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000881 /* XXX check packet size instead */
Damien Miller7b28dc52000-09-05 13:34:53 +1100882 if (count == 100)
883 break;
884 }
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000885 if (count > 0) {
886 send_names(id, count, stats);
Damien Miller9f0f5c62001-12-21 14:45:46 +1100887 for (i = 0; i < count; i++) {
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000888 xfree(stats[i].name);
889 xfree(stats[i].long_name);
890 }
891 } else {
892 send_status(id, SSH2_FX_EOF);
Damien Miller7b28dc52000-09-05 13:34:53 +1100893 }
894 xfree(stats);
895 }
896}
897
Ben Lindstrombba81212001-06-25 05:01:22 +0000898static void
Damien Miller7b28dc52000-09-05 13:34:53 +1100899process_remove(void)
900{
901 char *name;
902 u_int32_t id;
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000903 int status = SSH2_FX_FAILURE;
Damien Miller7b28dc52000-09-05 13:34:53 +1100904 int ret;
905
906 id = get_int();
907 name = get_string(NULL);
Damien Millerfef95ad2006-07-10 20:46:55 +1000908 debug3("request %u: remove", id);
909 logit("remove name \"%s\"", name);
Kevin Stevesa074feb2000-12-21 22:33:45 +0000910 ret = unlink(name);
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000911 status = (ret == -1) ? errno_to_portable(errno) : SSH2_FX_OK;
Damien Miller7b28dc52000-09-05 13:34:53 +1100912 send_status(id, status);
913 xfree(name);
914}
915
Ben Lindstrombba81212001-06-25 05:01:22 +0000916static void
Damien Miller7b28dc52000-09-05 13:34:53 +1100917process_mkdir(void)
918{
919 Attrib *a;
920 u_int32_t id;
921 char *name;
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000922 int ret, mode, status = SSH2_FX_FAILURE;
Damien Miller7b28dc52000-09-05 13:34:53 +1100923
924 id = get_int();
925 name = get_string(NULL);
926 a = get_attrib();
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000927 mode = (a->flags & SSH2_FILEXFER_ATTR_PERMISSIONS) ?
928 a->perm & 0777 : 0777;
Damien Millerfef95ad2006-07-10 20:46:55 +1000929 debug3("request %u: mkdir", id);
930 logit("mkdir name \"%s\" mode 0%o", name, mode);
Damien Miller7b28dc52000-09-05 13:34:53 +1100931 ret = mkdir(name, mode);
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000932 status = (ret == -1) ? errno_to_portable(errno) : SSH2_FX_OK;
Damien Miller7b28dc52000-09-05 13:34:53 +1100933 send_status(id, status);
934 xfree(name);
935}
936
Ben Lindstrombba81212001-06-25 05:01:22 +0000937static void
Damien Miller7b28dc52000-09-05 13:34:53 +1100938process_rmdir(void)
939{
940 u_int32_t id;
941 char *name;
942 int ret, status;
943
944 id = get_int();
945 name = get_string(NULL);
Damien Millerfef95ad2006-07-10 20:46:55 +1000946 debug3("request %u: rmdir", id);
947 logit("rmdir name \"%s\"", name);
Damien Miller7b28dc52000-09-05 13:34:53 +1100948 ret = rmdir(name);
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000949 status = (ret == -1) ? errno_to_portable(errno) : SSH2_FX_OK;
Damien Miller7b28dc52000-09-05 13:34:53 +1100950 send_status(id, status);
951 xfree(name);
952}
953
Ben Lindstrombba81212001-06-25 05:01:22 +0000954static void
Damien Miller7b28dc52000-09-05 13:34:53 +1100955process_realpath(void)
956{
957 char resolvedname[MAXPATHLEN];
958 u_int32_t id;
959 char *path;
960
961 id = get_int();
962 path = get_string(NULL);
Ben Lindstromfa1b3d02000-12-10 01:55:37 +0000963 if (path[0] == '\0') {
964 xfree(path);
965 path = xstrdup(".");
966 }
Damien Millerfef95ad2006-07-10 20:46:55 +1000967 debug3("request %u: realpath", id);
968 verbose("realpath \"%s\"", path);
Damien Miller7b28dc52000-09-05 13:34:53 +1100969 if (realpath(path, resolvedname) == NULL) {
970 send_status(id, errno_to_portable(errno));
971 } else {
972 Stat s;
973 attrib_clear(&s.attrib);
974 s.name = s.long_name = resolvedname;
975 send_names(id, 1, &s);
976 }
977 xfree(path);
978}
979
Ben Lindstrombba81212001-06-25 05:01:22 +0000980static void
Damien Miller7b28dc52000-09-05 13:34:53 +1100981process_rename(void)
982{
983 u_int32_t id;
984 char *oldpath, *newpath;
Damien Miller9e51a732003-02-24 11:58:44 +1100985 int status;
Damien Millerb3207e82003-03-26 16:01:11 +1100986 struct stat sb;
Damien Miller7b28dc52000-09-05 13:34:53 +1100987
988 id = get_int();
989 oldpath = get_string(NULL);
990 newpath = get_string(NULL);
Damien Millerfef95ad2006-07-10 20:46:55 +1000991 debug3("request %u: rename", id);
992 logit("rename old \"%s\" new \"%s\"", oldpath, newpath);
Damien Millerb3207e82003-03-26 16:01:11 +1100993 status = SSH2_FX_FAILURE;
994 if (lstat(oldpath, &sb) == -1)
Damien Miller9e51a732003-02-24 11:58:44 +1100995 status = errno_to_portable(errno);
Damien Millerb3207e82003-03-26 16:01:11 +1100996 else if (S_ISREG(sb.st_mode)) {
997 /* Race-free rename of regular files */
Darren Tuckeraedc1d62004-06-25 17:06:02 +1000998 if (link(oldpath, newpath) == -1) {
Darren Tuckere59b5082004-06-28 16:01:19 +1000999 if (errno == EOPNOTSUPP
1000#ifdef LINK_OPNOTSUPP_ERRNO
1001 || errno == LINK_OPNOTSUPP_ERRNO
1002#endif
1003 ) {
Darren Tuckeraedc1d62004-06-25 17:06:02 +10001004 struct stat st;
1005
1006 /*
1007 * fs doesn't support links, so fall back to
1008 * stat+rename. This is racy.
1009 */
1010 if (stat(newpath, &st) == -1) {
1011 if (rename(oldpath, newpath) == -1)
1012 status =
1013 errno_to_portable(errno);
1014 else
1015 status = SSH2_FX_OK;
1016 }
1017 } else {
1018 status = errno_to_portable(errno);
1019 }
1020 } else if (unlink(oldpath) == -1) {
Damien Millerb3207e82003-03-26 16:01:11 +11001021 status = errno_to_portable(errno);
1022 /* clean spare link */
1023 unlink(newpath);
1024 } else
1025 status = SSH2_FX_OK;
1026 } else if (stat(newpath, &sb) == -1) {
1027 if (rename(oldpath, newpath) == -1)
1028 status = errno_to_portable(errno);
1029 else
1030 status = SSH2_FX_OK;
1031 }
Damien Miller7b28dc52000-09-05 13:34:53 +11001032 send_status(id, status);
1033 xfree(oldpath);
1034 xfree(newpath);
1035}
1036
Ben Lindstrombba81212001-06-25 05:01:22 +00001037static void
Damien Miller058316f2001-03-08 10:08:49 +11001038process_readlink(void)
1039{
1040 u_int32_t id;
Ben Lindstromabbb73d2001-05-17 03:14:57 +00001041 int len;
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001042 char buf[MAXPATHLEN];
Damien Miller058316f2001-03-08 10:08:49 +11001043 char *path;
1044
1045 id = get_int();
1046 path = get_string(NULL);
Damien Millerfef95ad2006-07-10 20:46:55 +10001047 debug3("request %u: readlink", id);
1048 verbose("readlink \"%s\"", path);
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001049 if ((len = readlink(path, buf, sizeof(buf) - 1)) == -1)
Damien Miller058316f2001-03-08 10:08:49 +11001050 send_status(id, errno_to_portable(errno));
1051 else {
1052 Stat s;
Damien Miller9f0f5c62001-12-21 14:45:46 +11001053
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001054 buf[len] = '\0';
Damien Miller058316f2001-03-08 10:08:49 +11001055 attrib_clear(&s.attrib);
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001056 s.name = s.long_name = buf;
Damien Miller058316f2001-03-08 10:08:49 +11001057 send_names(id, 1, &s);
1058 }
1059 xfree(path);
1060}
1061
Ben Lindstrombba81212001-06-25 05:01:22 +00001062static void
Damien Miller058316f2001-03-08 10:08:49 +11001063process_symlink(void)
1064{
1065 u_int32_t id;
Damien Miller058316f2001-03-08 10:08:49 +11001066 char *oldpath, *newpath;
Damien Miller9e51a732003-02-24 11:58:44 +11001067 int ret, status;
Damien Miller058316f2001-03-08 10:08:49 +11001068
1069 id = get_int();
1070 oldpath = get_string(NULL);
1071 newpath = get_string(NULL);
Damien Millerfef95ad2006-07-10 20:46:55 +10001072 debug3("request %u: symlink", id);
1073 logit("symlink old \"%s\" new \"%s\"", oldpath, newpath);
Damien Miller9e51a732003-02-24 11:58:44 +11001074 /* this will fail if 'newpath' exists */
1075 ret = symlink(oldpath, newpath);
1076 status = (ret == -1) ? errno_to_portable(errno) : SSH2_FX_OK;
Damien Miller058316f2001-03-08 10:08:49 +11001077 send_status(id, status);
1078 xfree(oldpath);
1079 xfree(newpath);
1080}
1081
Ben Lindstrombba81212001-06-25 05:01:22 +00001082static void
Ben Lindstrom2f959b42001-01-11 06:20:23 +00001083process_extended(void)
1084{
1085 u_int32_t id;
1086 char *request;
1087
1088 id = get_int();
1089 request = get_string(NULL);
1090 send_status(id, SSH2_FX_OP_UNSUPPORTED); /* MUST */
1091 xfree(request);
1092}
Damien Miller7b28dc52000-09-05 13:34:53 +11001093
1094/* stolen from ssh-agent */
1095
Ben Lindstrombba81212001-06-25 05:01:22 +00001096static void
Damien Miller7b28dc52000-09-05 13:34:53 +11001097process(void)
1098{
Ben Lindstrom46c16222000-12-22 01:43:59 +00001099 u_int msg_len;
Ben Lindstrom2c140472002-06-06 21:57:54 +00001100 u_int buf_len;
1101 u_int consumed;
Ben Lindstrom46c16222000-12-22 01:43:59 +00001102 u_int type;
1103 u_char *cp;
Damien Miller7b28dc52000-09-05 13:34:53 +11001104
Ben Lindstrom2c140472002-06-06 21:57:54 +00001105 buf_len = buffer_len(&iqueue);
1106 if (buf_len < 5)
Damien Miller7b28dc52000-09-05 13:34:53 +11001107 return; /* Incomplete message. */
Damien Miller708d21c2002-01-22 23:18:15 +11001108 cp = buffer_ptr(&iqueue);
Damien Miller3f941882006-03-31 23:13:02 +11001109 msg_len = get_u32(cp);
Damien Miller54446182006-01-02 23:40:50 +11001110 if (msg_len > SFTP_MAX_MSG_LENGTH) {
Damien Millerfef95ad2006-07-10 20:46:55 +10001111 error("bad message from %s local user %s",
1112 client_addr, pw->pw_name);
Damien Millerdfc24252008-02-10 22:29:40 +11001113 sftp_server_cleanup_exit(11);
Damien Miller7b28dc52000-09-05 13:34:53 +11001114 }
Ben Lindstrom2c140472002-06-06 21:57:54 +00001115 if (buf_len < msg_len + 4)
Damien Miller7b28dc52000-09-05 13:34:53 +11001116 return;
1117 buffer_consume(&iqueue, 4);
Ben Lindstrom2c140472002-06-06 21:57:54 +00001118 buf_len -= 4;
Damien Miller7b28dc52000-09-05 13:34:53 +11001119 type = buffer_get_char(&iqueue);
1120 switch (type) {
Ben Lindstrom2f959b42001-01-11 06:20:23 +00001121 case SSH2_FXP_INIT:
Damien Miller7b28dc52000-09-05 13:34:53 +11001122 process_init();
1123 break;
Ben Lindstrom2f959b42001-01-11 06:20:23 +00001124 case SSH2_FXP_OPEN:
Damien Miller7b28dc52000-09-05 13:34:53 +11001125 process_open();
1126 break;
Ben Lindstrom2f959b42001-01-11 06:20:23 +00001127 case SSH2_FXP_CLOSE:
Damien Miller7b28dc52000-09-05 13:34:53 +11001128 process_close();
1129 break;
Ben Lindstrom2f959b42001-01-11 06:20:23 +00001130 case SSH2_FXP_READ:
Damien Miller7b28dc52000-09-05 13:34:53 +11001131 process_read();
1132 break;
Ben Lindstrom2f959b42001-01-11 06:20:23 +00001133 case SSH2_FXP_WRITE:
Damien Miller7b28dc52000-09-05 13:34:53 +11001134 process_write();
1135 break;
Ben Lindstrom2f959b42001-01-11 06:20:23 +00001136 case SSH2_FXP_LSTAT:
Damien Miller7b28dc52000-09-05 13:34:53 +11001137 process_lstat();
1138 break;
Ben Lindstrom2f959b42001-01-11 06:20:23 +00001139 case SSH2_FXP_FSTAT:
Damien Miller7b28dc52000-09-05 13:34:53 +11001140 process_fstat();
1141 break;
Ben Lindstrom2f959b42001-01-11 06:20:23 +00001142 case SSH2_FXP_SETSTAT:
Damien Miller7b28dc52000-09-05 13:34:53 +11001143 process_setstat();
1144 break;
Ben Lindstrom2f959b42001-01-11 06:20:23 +00001145 case SSH2_FXP_FSETSTAT:
Damien Miller7b28dc52000-09-05 13:34:53 +11001146 process_fsetstat();
1147 break;
Ben Lindstrom2f959b42001-01-11 06:20:23 +00001148 case SSH2_FXP_OPENDIR:
Damien Miller7b28dc52000-09-05 13:34:53 +11001149 process_opendir();
1150 break;
Ben Lindstrom2f959b42001-01-11 06:20:23 +00001151 case SSH2_FXP_READDIR:
Damien Miller7b28dc52000-09-05 13:34:53 +11001152 process_readdir();
1153 break;
Ben Lindstrom2f959b42001-01-11 06:20:23 +00001154 case SSH2_FXP_REMOVE:
Damien Miller7b28dc52000-09-05 13:34:53 +11001155 process_remove();
1156 break;
Ben Lindstrom2f959b42001-01-11 06:20:23 +00001157 case SSH2_FXP_MKDIR:
Damien Miller7b28dc52000-09-05 13:34:53 +11001158 process_mkdir();
1159 break;
Ben Lindstrom2f959b42001-01-11 06:20:23 +00001160 case SSH2_FXP_RMDIR:
Damien Miller7b28dc52000-09-05 13:34:53 +11001161 process_rmdir();
1162 break;
Ben Lindstrom2f959b42001-01-11 06:20:23 +00001163 case SSH2_FXP_REALPATH:
Damien Miller7b28dc52000-09-05 13:34:53 +11001164 process_realpath();
1165 break;
Ben Lindstrom2f959b42001-01-11 06:20:23 +00001166 case SSH2_FXP_STAT:
Damien Miller7b28dc52000-09-05 13:34:53 +11001167 process_stat();
1168 break;
Ben Lindstrom2f959b42001-01-11 06:20:23 +00001169 case SSH2_FXP_RENAME:
Damien Miller7b28dc52000-09-05 13:34:53 +11001170 process_rename();
1171 break;
Damien Miller058316f2001-03-08 10:08:49 +11001172 case SSH2_FXP_READLINK:
1173 process_readlink();
1174 break;
1175 case SSH2_FXP_SYMLINK:
1176 process_symlink();
1177 break;
Ben Lindstrom2f959b42001-01-11 06:20:23 +00001178 case SSH2_FXP_EXTENDED:
1179 process_extended();
1180 break;
Damien Miller7b28dc52000-09-05 13:34:53 +11001181 default:
1182 error("Unknown message %d", type);
1183 break;
1184 }
Ben Lindstrom2c140472002-06-06 21:57:54 +00001185 /* discard the remaining bytes from the current packet */
Damien Millerdfc24252008-02-10 22:29:40 +11001186 if (buf_len < buffer_len(&iqueue)) {
1187 error("iqueue grew unexpectedly");
1188 sftp_server_cleanup_exit(255);
1189 }
Ben Lindstrom2c140472002-06-06 21:57:54 +00001190 consumed = buf_len - buffer_len(&iqueue);
Damien Millerdfc24252008-02-10 22:29:40 +11001191 if (msg_len < consumed) {
1192 error("msg_len %d < consumed %d", msg_len, consumed);
1193 sftp_server_cleanup_exit(255);
1194 }
Ben Lindstrom2c140472002-06-06 21:57:54 +00001195 if (msg_len > consumed)
1196 buffer_consume(&iqueue, msg_len - consumed);
Damien Miller7b28dc52000-09-05 13:34:53 +11001197}
1198
Damien Millerfef95ad2006-07-10 20:46:55 +10001199/* Cleanup handler that logs active handles upon normal exit */
1200void
Damien Millerdfc24252008-02-10 22:29:40 +11001201sftp_server_cleanup_exit(int i)
Damien Millerfef95ad2006-07-10 20:46:55 +10001202{
1203 if (pw != NULL && client_addr != NULL) {
1204 handle_log_exit();
1205 logit("session closed for local user %s from [%s]",
1206 pw->pw_name, client_addr);
1207 }
1208 _exit(i);
1209}
1210
1211static void
Damien Millerdfc24252008-02-10 22:29:40 +11001212sftp_server_usage(void)
Damien Millerfef95ad2006-07-10 20:46:55 +10001213{
1214 extern char *__progname;
1215
1216 fprintf(stderr,
1217 "usage: %s [-he] [-l log_level] [-f log_facility]\n", __progname);
1218 exit(1);
1219}
1220
Damien Miller7b28dc52000-09-05 13:34:53 +11001221int
Damien Millerd8cb1f12008-02-10 22:40:12 +11001222sftp_server_main(int argc, char **argv, struct passwd *user_pw)
Damien Miller7b28dc52000-09-05 13:34:53 +11001223{
Ben Lindstromcb80bdf2001-03-05 07:06:12 +00001224 fd_set *rset, *wset;
Damien Millerfef95ad2006-07-10 20:46:55 +10001225 int in, out, max, ch, skipargs = 0, log_stderr = 0;
Ben Lindstromcb80bdf2001-03-05 07:06:12 +00001226 ssize_t len, olen, set_size;
Damien Millerfef95ad2006-07-10 20:46:55 +10001227 SyslogFacility log_facility = SYSLOG_FACILITY_AUTH;
Darren Tuckere9405982007-05-20 15:09:04 +10001228 char *cp, buf[4*4096];
Damien Millerfef95ad2006-07-10 20:46:55 +10001229
Damien Millerfef95ad2006-07-10 20:46:55 +10001230 extern char *optarg;
1231 extern char *__progname;
Damien Miller7b28dc52000-09-05 13:34:53 +11001232
Darren Tuckerce321d82005-10-03 18:11:24 +10001233 /* Ensure that fds 0, 1 and 2 are open or directed to /dev/null */
1234 sanitise_stdfd();
1235
Damien Millerfef95ad2006-07-10 20:46:55 +10001236 __progname = ssh_get_progname(argv[0]);
1237 log_init(__progname, log_level, log_facility, log_stderr);
Ben Lindstromc7f4ccd2001-03-15 00:09:15 +00001238
Damien Millerfef95ad2006-07-10 20:46:55 +10001239 while (!skipargs && (ch = getopt(argc, argv, "C:f:l:che")) != -1) {
1240 switch (ch) {
1241 case 'c':
1242 /*
1243 * Ignore all arguments if we are invoked as a
Damien Millerd7834352006-08-05 12:39:39 +10001244 * shell using "sftp-server -c command"
Damien Millerfef95ad2006-07-10 20:46:55 +10001245 */
1246 skipargs = 1;
1247 break;
1248 case 'e':
1249 log_stderr = 1;
1250 break;
1251 case 'l':
1252 log_level = log_level_number(optarg);
1253 if (log_level == SYSLOG_LEVEL_NOT_SET)
1254 error("Invalid log level \"%s\"", optarg);
1255 break;
1256 case 'f':
1257 log_facility = log_facility_number(optarg);
Damien Miller35e18db2007-09-17 16:11:33 +10001258 if (log_facility == SYSLOG_FACILITY_NOT_SET)
Damien Millerfef95ad2006-07-10 20:46:55 +10001259 error("Invalid log facility \"%s\"", optarg);
1260 break;
1261 case 'h':
1262 default:
Damien Millerdfc24252008-02-10 22:29:40 +11001263 sftp_server_usage();
Damien Millerfef95ad2006-07-10 20:46:55 +10001264 }
1265 }
1266
1267 log_init(__progname, log_level, log_facility, log_stderr);
1268
1269 if ((cp = getenv("SSH_CONNECTION")) != NULL) {
1270 client_addr = xstrdup(cp);
Damien Millerdfc24252008-02-10 22:29:40 +11001271 if ((cp = strchr(client_addr, ' ')) == NULL) {
1272 error("Malformed SSH_CONNECTION variable: \"%s\"",
Damien Millerfef95ad2006-07-10 20:46:55 +10001273 getenv("SSH_CONNECTION"));
Damien Millerdfc24252008-02-10 22:29:40 +11001274 sftp_server_cleanup_exit(255);
1275 }
Damien Millerfef95ad2006-07-10 20:46:55 +10001276 *cp = '\0';
1277 } else
1278 client_addr = xstrdup("UNKNOWN");
1279
Damien Millerd8cb1f12008-02-10 22:40:12 +11001280 pw = pwcopy(user_pw);
Damien Millerfef95ad2006-07-10 20:46:55 +10001281
1282 logit("session opened for local user %s from [%s]",
1283 pw->pw_name, client_addr);
1284
Damien Miller7b28dc52000-09-05 13:34:53 +11001285 in = dup(STDIN_FILENO);
1286 out = dup(STDOUT_FILENO);
1287
Damien Miller402b3312001-04-14 00:28:42 +10001288#ifdef HAVE_CYGWIN
1289 setmode(in, O_BINARY);
1290 setmode(out, O_BINARY);
1291#endif
1292
Damien Miller7b28dc52000-09-05 13:34:53 +11001293 max = 0;
1294 if (in > max)
1295 max = in;
1296 if (out > max)
1297 max = out;
1298
1299 buffer_init(&iqueue);
1300 buffer_init(&oqueue);
1301
Ben Lindstromcb80bdf2001-03-05 07:06:12 +00001302 set_size = howmany(max + 1, NFDBITS) * sizeof(fd_mask);
1303 rset = (fd_set *)xmalloc(set_size);
1304 wset = (fd_set *)xmalloc(set_size);
Damien Miller7b28dc52000-09-05 13:34:53 +11001305
Ben Lindstromcb80bdf2001-03-05 07:06:12 +00001306 for (;;) {
1307 memset(rset, 0, set_size);
1308 memset(wset, 0, set_size);
1309
Darren Tuckere9405982007-05-20 15:09:04 +10001310 /*
1311 * Ensure that we can read a full buffer and handle
1312 * the worst-case length packet it can generate,
1313 * otherwise apply backpressure by stopping reads.
1314 */
1315 if (buffer_check_alloc(&iqueue, sizeof(buf)) &&
1316 buffer_check_alloc(&oqueue, SFTP_MAX_MSG_LENGTH))
1317 FD_SET(in, rset);
1318
Damien Miller7b28dc52000-09-05 13:34:53 +11001319 olen = buffer_len(&oqueue);
1320 if (olen > 0)
Ben Lindstromcb80bdf2001-03-05 07:06:12 +00001321 FD_SET(out, wset);
Damien Miller7b28dc52000-09-05 13:34:53 +11001322
Ben Lindstromcb80bdf2001-03-05 07:06:12 +00001323 if (select(max+1, rset, wset, NULL, NULL) < 0) {
Damien Miller7b28dc52000-09-05 13:34:53 +11001324 if (errno == EINTR)
1325 continue;
Damien Millerfef95ad2006-07-10 20:46:55 +10001326 error("select: %s", strerror(errno));
Damien Millerdfc24252008-02-10 22:29:40 +11001327 sftp_server_cleanup_exit(2);
Damien Miller7b28dc52000-09-05 13:34:53 +11001328 }
1329
1330 /* copy stdin to iqueue */
Ben Lindstromcb80bdf2001-03-05 07:06:12 +00001331 if (FD_ISSET(in, rset)) {
Damien Miller7b28dc52000-09-05 13:34:53 +11001332 len = read(in, buf, sizeof buf);
1333 if (len == 0) {
1334 debug("read eof");
Damien Millerdfc24252008-02-10 22:29:40 +11001335 sftp_server_cleanup_exit(0);
Damien Miller7b28dc52000-09-05 13:34:53 +11001336 } else if (len < 0) {
Damien Millerfef95ad2006-07-10 20:46:55 +10001337 error("read: %s", strerror(errno));
Damien Millerdfc24252008-02-10 22:29:40 +11001338 sftp_server_cleanup_exit(1);
Damien Miller7b28dc52000-09-05 13:34:53 +11001339 } else {
1340 buffer_append(&iqueue, buf, len);
1341 }
1342 }
1343 /* send oqueue to stdout */
Ben Lindstromcb80bdf2001-03-05 07:06:12 +00001344 if (FD_ISSET(out, wset)) {
Damien Miller7b28dc52000-09-05 13:34:53 +11001345 len = write(out, buffer_ptr(&oqueue), olen);
1346 if (len < 0) {
Damien Millerfef95ad2006-07-10 20:46:55 +10001347 error("write: %s", strerror(errno));
Damien Millerdfc24252008-02-10 22:29:40 +11001348 sftp_server_cleanup_exit(1);
Damien Miller7b28dc52000-09-05 13:34:53 +11001349 } else {
1350 buffer_consume(&oqueue, len);
1351 }
1352 }
Darren Tuckere9405982007-05-20 15:09:04 +10001353
1354 /*
1355 * Process requests from client if we can fit the results
1356 * into the output buffer, otherwise stop processing input
1357 * and let the output queue drain.
1358 */
1359 if (buffer_check_alloc(&oqueue, SFTP_MAX_MSG_LENGTH))
1360 process();
Damien Miller7b28dc52000-09-05 13:34:53 +11001361 }
1362}