blob: 359204fa7e33a0998ba6167cc6f1890e6cdaa251 [file] [log] [blame]
djm@openbsd.org569b6502019-07-05 04:55:40 +00001/* $OpenBSD: sftp-server.c,v 1.117 2019/07/05 04:55:40 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>
21#include <sys/stat.h>
Damien Miller9aec9192006-08-05 10:57:45 +100022#ifdef HAVE_SYS_TIME_H
23# include <sys/time.h>
24#endif
Darren Tucker5b2e2ba2008-06-08 09:25:28 +100025#ifdef HAVE_SYS_MOUNT_H
Damien Millerd671e5a2008-05-19 14:53:33 +100026#include <sys/mount.h>
Darren Tucker5b2e2ba2008-06-08 09:25:28 +100027#endif
28#ifdef HAVE_SYS_STATVFS_H
Damien Millerd671e5a2008-05-19 14:53:33 +100029#include <sys/statvfs.h>
Darren Tucker5b2e2ba2008-06-08 09:25:28 +100030#endif
Damien Miller88f254b2006-03-15 11:25:13 +110031
32#include <dirent.h>
Darren Tucker39972492006-07-12 22:22:46 +100033#include <errno.h>
Damien Miller57cf6382006-07-10 21:13:46 +100034#include <fcntl.h>
Damien Miller9f2abc42006-07-10 20:53:08 +100035#include <pwd.h>
Damien Millere7a1e5c2006-08-05 11:34:19 +100036#include <stdlib.h>
Damien Millera7a73ee2006-08-05 11:37:59 +100037#include <stdio.h>
Damien Millere3476ed2006-07-24 14:13:33 +100038#include <string.h>
Damien Miller5598b4f2006-07-24 14:09:40 +100039#include <time.h>
Damien Millere3476ed2006-07-24 14:13:33 +100040#include <unistd.h>
Damien Millerd7834352006-08-05 12:39:39 +100041#include <stdarg.h>
Damien Miller7b28dc52000-09-05 13:34:53 +110042
Damien Miller7b28dc52000-09-05 13:34:53 +110043#include "xmalloc.h"
djm@openbsd.org7d845f42015-01-14 13:54:13 +000044#include "sshbuf.h"
45#include "ssherr.h"
Damien Millerd7834352006-08-05 12:39:39 +100046#include "log.h"
Darren Tuckerce321d82005-10-03 18:11:24 +100047#include "misc.h"
Damien Miller6eaeebf2013-10-15 11:55:57 +110048#include "match.h"
Damien Millerfef95ad2006-07-10 20:46:55 +100049#include "uidswap.h"
Damien Miller7b28dc52000-09-05 13:34:53 +110050
Ben Lindstrom2f959b42001-01-11 06:20:23 +000051#include "sftp.h"
Damien Miller33804262001-02-04 23:20:18 +110052#include "sftp-common.h"
Damien Miller7b28dc52000-09-05 13:34:53 +110053
djm@openbsd.org569b6502019-07-05 04:55:40 +000054char *sftp_realpath(const char *, char *); /* sftp-realpath.c */
55
Damien Millerfef95ad2006-07-10 20:46:55 +100056/* Our verbosity */
Damien Miller6eaeebf2013-10-15 11:55:57 +110057static LogLevel log_level = SYSLOG_LEVEL_ERROR;
Damien Millerfef95ad2006-07-10 20:46:55 +100058
59/* Our client */
Damien Miller6eaeebf2013-10-15 11:55:57 +110060static struct passwd *pw = NULL;
61static char *client_addr = NULL;
Ben Lindstrom49a79c02000-11-17 03:47:20 +000062
Damien Miller7b28dc52000-09-05 13:34:53 +110063/* input and output queue */
djm@openbsd.org7d845f42015-01-14 13:54:13 +000064struct sshbuf *iqueue;
65struct sshbuf *oqueue;
Damien Miller7b28dc52000-09-05 13:34:53 +110066
Damien Miller058316f2001-03-08 10:08:49 +110067/* Version of client */
Damien Miller6eaeebf2013-10-15 11:55:57 +110068static u_int version;
69
70/* SSH2_FXP_INIT received */
71static int init_done;
Damien Miller058316f2001-03-08 10:08:49 +110072
Darren Tuckerdb7bf822010-01-09 22:24:33 +110073/* Disable writes */
Damien Miller6eaeebf2013-10-15 11:55:57 +110074static int readonly;
75
76/* Requests that are allowed/denied */
77static char *request_whitelist, *request_blacklist;
Darren Tuckerdb7bf822010-01-09 22:24:33 +110078
Darren Tuckera6612d42003-06-28 12:39:03 +100079/* portable attributes, etc. */
Damien Miller7b28dc52000-09-05 13:34:53 +110080typedef struct Stat Stat;
81
Damien Miller33804262001-02-04 23:20:18 +110082struct Stat {
Damien Miller7b28dc52000-09-05 13:34:53 +110083 char *name;
84 char *long_name;
85 Attrib attrib;
86};
87
Damien Miller6eaeebf2013-10-15 11:55:57 +110088/* Packet handlers */
89static void process_open(u_int32_t id);
90static void process_close(u_int32_t id);
91static void process_read(u_int32_t id);
92static void process_write(u_int32_t id);
93static void process_stat(u_int32_t id);
94static void process_lstat(u_int32_t id);
95static void process_fstat(u_int32_t id);
96static void process_setstat(u_int32_t id);
97static void process_fsetstat(u_int32_t id);
98static void process_opendir(u_int32_t id);
99static void process_readdir(u_int32_t id);
100static void process_remove(u_int32_t id);
101static void process_mkdir(u_int32_t id);
102static void process_rmdir(u_int32_t id);
103static void process_realpath(u_int32_t id);
104static void process_rename(u_int32_t id);
105static void process_readlink(u_int32_t id);
106static void process_symlink(u_int32_t id);
107static void process_extended_posix_rename(u_int32_t id);
108static void process_extended_statvfs(u_int32_t id);
109static void process_extended_fstatvfs(u_int32_t id);
110static void process_extended_hardlink(u_int32_t id);
Damien Millerf29238e2013-10-17 11:48:52 +1100111static void process_extended_fsync(u_int32_t id);
djm@openbsd.orgdbbc7e02019-01-16 23:22:10 +0000112static void process_extended_lsetstat(u_int32_t id);
Damien Miller6eaeebf2013-10-15 11:55:57 +1100113static void process_extended(u_int32_t id);
114
115struct sftp_handler {
116 const char *name; /* user-visible name for fine-grained perms */
117 const char *ext_name; /* extended request name */
118 u_int type; /* packet type, for non extended packets */
119 void (*handler)(u_int32_t);
120 int does_write; /* if nonzero, banned for readonly mode */
121};
122
djm@openbsd.org5bed70a2019-01-01 23:10:53 +0000123static const struct sftp_handler handlers[] = {
Damien Miller6eaeebf2013-10-15 11:55:57 +1100124 /* NB. SSH2_FXP_OPEN does the readonly check in the handler itself */
125 { "open", NULL, SSH2_FXP_OPEN, process_open, 0 },
126 { "close", NULL, SSH2_FXP_CLOSE, process_close, 0 },
127 { "read", NULL, SSH2_FXP_READ, process_read, 0 },
128 { "write", NULL, SSH2_FXP_WRITE, process_write, 1 },
129 { "lstat", NULL, SSH2_FXP_LSTAT, process_lstat, 0 },
130 { "fstat", NULL, SSH2_FXP_FSTAT, process_fstat, 0 },
131 { "setstat", NULL, SSH2_FXP_SETSTAT, process_setstat, 1 },
132 { "fsetstat", NULL, SSH2_FXP_FSETSTAT, process_fsetstat, 1 },
133 { "opendir", NULL, SSH2_FXP_OPENDIR, process_opendir, 0 },
134 { "readdir", NULL, SSH2_FXP_READDIR, process_readdir, 0 },
135 { "remove", NULL, SSH2_FXP_REMOVE, process_remove, 1 },
136 { "mkdir", NULL, SSH2_FXP_MKDIR, process_mkdir, 1 },
137 { "rmdir", NULL, SSH2_FXP_RMDIR, process_rmdir, 1 },
138 { "realpath", NULL, SSH2_FXP_REALPATH, process_realpath, 0 },
139 { "stat", NULL, SSH2_FXP_STAT, process_stat, 0 },
140 { "rename", NULL, SSH2_FXP_RENAME, process_rename, 1 },
141 { "readlink", NULL, SSH2_FXP_READLINK, process_readlink, 0 },
142 { "symlink", NULL, SSH2_FXP_SYMLINK, process_symlink, 1 },
143 { NULL, NULL, 0, NULL, 0 }
144};
145
146/* SSH2_FXP_EXTENDED submessages */
djm@openbsd.org5bed70a2019-01-01 23:10:53 +0000147static const struct sftp_handler extended_handlers[] = {
Damien Miller6eaeebf2013-10-15 11:55:57 +1100148 { "posix-rename", "posix-rename@openssh.com", 0,
149 process_extended_posix_rename, 1 },
150 { "statvfs", "statvfs@openssh.com", 0, process_extended_statvfs, 0 },
151 { "fstatvfs", "fstatvfs@openssh.com", 0, process_extended_fstatvfs, 0 },
152 { "hardlink", "hardlink@openssh.com", 0, process_extended_hardlink, 1 },
Damien Millerf29238e2013-10-17 11:48:52 +1100153 { "fsync", "fsync@openssh.com", 0, process_extended_fsync, 1 },
djm@openbsd.orgdbbc7e02019-01-16 23:22:10 +0000154 { "lsetstat", "lsetstat@openssh.com", 0, process_extended_lsetstat, 1 },
Damien Miller6eaeebf2013-10-15 11:55:57 +1100155 { NULL, NULL, 0, NULL, 0 }
156};
157
158static int
djm@openbsd.org5bed70a2019-01-01 23:10:53 +0000159request_permitted(const struct sftp_handler *h)
Damien Miller6eaeebf2013-10-15 11:55:57 +1100160{
161 char *result;
162
163 if (readonly && h->does_write) {
164 verbose("Refusing %s request in read-only mode", h->name);
165 return 0;
166 }
167 if (request_blacklist != NULL &&
168 ((result = match_list(h->name, request_blacklist, NULL))) != NULL) {
169 free(result);
170 verbose("Refusing blacklisted %s request", h->name);
171 return 0;
172 }
173 if (request_whitelist != NULL &&
174 ((result = match_list(h->name, request_whitelist, NULL))) != NULL) {
175 free(result);
176 debug2("Permitting whitelisted %s request", h->name);
177 return 1;
178 }
179 if (request_whitelist != NULL) {
180 verbose("Refusing non-whitelisted %s request", h->name);
181 return 0;
182 }
183 return 1;
184}
185
Ben Lindstrombba81212001-06-25 05:01:22 +0000186static int
Damien Miller7b28dc52000-09-05 13:34:53 +1100187errno_to_portable(int unixerrno)
188{
189 int ret = 0;
Ben Lindstrom1addabd2001-03-05 07:09:11 +0000190
Damien Miller7b28dc52000-09-05 13:34:53 +1100191 switch (unixerrno) {
192 case 0:
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000193 ret = SSH2_FX_OK;
Damien Miller7b28dc52000-09-05 13:34:53 +1100194 break;
195 case ENOENT:
196 case ENOTDIR:
197 case EBADF:
198 case ELOOP:
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000199 ret = SSH2_FX_NO_SUCH_FILE;
Damien Miller7b28dc52000-09-05 13:34:53 +1100200 break;
201 case EPERM:
202 case EACCES:
203 case EFAULT:
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000204 ret = SSH2_FX_PERMISSION_DENIED;
Damien Miller7b28dc52000-09-05 13:34:53 +1100205 break;
206 case ENAMETOOLONG:
207 case EINVAL:
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000208 ret = SSH2_FX_BAD_MESSAGE;
Damien Miller7b28dc52000-09-05 13:34:53 +1100209 break;
Darren Tucker422c34c2008-06-09 22:48:31 +1000210 case ENOSYS:
211 ret = SSH2_FX_OP_UNSUPPORTED;
212 break;
Damien Miller7b28dc52000-09-05 13:34:53 +1100213 default:
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000214 ret = SSH2_FX_FAILURE;
Damien Miller7b28dc52000-09-05 13:34:53 +1100215 break;
216 }
217 return ret;
218}
219
Ben Lindstrombba81212001-06-25 05:01:22 +0000220static int
Damien Miller7b28dc52000-09-05 13:34:53 +1100221flags_from_portable(int pflags)
222{
223 int flags = 0;
Ben Lindstrom1addabd2001-03-05 07:09:11 +0000224
Ben Lindstrom36592512001-03-05 05:02:08 +0000225 if ((pflags & SSH2_FXF_READ) &&
226 (pflags & SSH2_FXF_WRITE)) {
Damien Miller7b28dc52000-09-05 13:34:53 +1100227 flags = O_RDWR;
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000228 } else if (pflags & SSH2_FXF_READ) {
Damien Miller7b28dc52000-09-05 13:34:53 +1100229 flags = O_RDONLY;
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000230 } else if (pflags & SSH2_FXF_WRITE) {
Damien Miller7b28dc52000-09-05 13:34:53 +1100231 flags = O_WRONLY;
232 }
Damien Millere9fc72e2013-10-15 12:14:12 +1100233 if (pflags & SSH2_FXF_APPEND)
234 flags |= O_APPEND;
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000235 if (pflags & SSH2_FXF_CREAT)
Damien Miller7b28dc52000-09-05 13:34:53 +1100236 flags |= O_CREAT;
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000237 if (pflags & SSH2_FXF_TRUNC)
Damien Miller7b28dc52000-09-05 13:34:53 +1100238 flags |= O_TRUNC;
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000239 if (pflags & SSH2_FXF_EXCL)
Damien Miller7b28dc52000-09-05 13:34:53 +1100240 flags |= O_EXCL;
241 return flags;
242}
243
Damien Millerfef95ad2006-07-10 20:46:55 +1000244static const char *
245string_from_portable(int pflags)
246{
247 static char ret[128];
248
249 *ret = '\0';
250
251#define PAPPEND(str) { \
252 if (*ret != '\0') \
253 strlcat(ret, ",", sizeof(ret)); \
Damien Millerd7834352006-08-05 12:39:39 +1000254 strlcat(ret, str, sizeof(ret)); \
Damien Millerfef95ad2006-07-10 20:46:55 +1000255 }
256
257 if (pflags & SSH2_FXF_READ)
258 PAPPEND("READ")
259 if (pflags & SSH2_FXF_WRITE)
260 PAPPEND("WRITE")
Damien Millere9fc72e2013-10-15 12:14:12 +1100261 if (pflags & SSH2_FXF_APPEND)
262 PAPPEND("APPEND")
Damien Millerfef95ad2006-07-10 20:46:55 +1000263 if (pflags & SSH2_FXF_CREAT)
264 PAPPEND("CREATE")
265 if (pflags & SSH2_FXF_TRUNC)
266 PAPPEND("TRUNCATE")
267 if (pflags & SSH2_FXF_EXCL)
268 PAPPEND("EXCL")
269
270 return ret;
271}
272
Damien Miller7b28dc52000-09-05 13:34:53 +1100273/* handle handles */
274
275typedef struct Handle Handle;
276struct Handle {
277 int use;
278 DIR *dirp;
279 int fd;
Damien Millere9fc72e2013-10-15 12:14:12 +1100280 int flags;
Damien Miller7b28dc52000-09-05 13:34:53 +1100281 char *name;
Damien Millerfef95ad2006-07-10 20:46:55 +1000282 u_int64_t bytes_read, bytes_write;
Damien Miller3397d0e2008-02-10 22:26:51 +1100283 int next_unused;
Damien Miller7b28dc52000-09-05 13:34:53 +1100284};
Ben Lindstrom1addabd2001-03-05 07:09:11 +0000285
Damien Miller7b28dc52000-09-05 13:34:53 +1100286enum {
287 HANDLE_UNUSED,
288 HANDLE_DIR,
289 HANDLE_FILE
290};
Ben Lindstrom1addabd2001-03-05 07:09:11 +0000291
djm@openbsd.org5bed70a2019-01-01 23:10:53 +0000292static Handle *handles = NULL;
293static u_int num_handles = 0;
294static int first_unused_handle = -1;
Damien Miller7b28dc52000-09-05 13:34:53 +1100295
Damien Miller3397d0e2008-02-10 22:26:51 +1100296static void handle_unused(int i)
Damien Miller7b28dc52000-09-05 13:34:53 +1100297{
Damien Miller3397d0e2008-02-10 22:26:51 +1100298 handles[i].use = HANDLE_UNUSED;
299 handles[i].next_unused = first_unused_handle;
300 first_unused_handle = i;
Damien Miller7b28dc52000-09-05 13:34:53 +1100301}
302
Ben Lindstrombba81212001-06-25 05:01:22 +0000303static int
Damien Millere9fc72e2013-10-15 12:14:12 +1100304handle_new(int use, const char *name, int fd, int flags, DIR *dirp)
Damien Miller7b28dc52000-09-05 13:34:53 +1100305{
Damien Miller3397d0e2008-02-10 22:26:51 +1100306 int i;
Ben Lindstrom1addabd2001-03-05 07:09:11 +0000307
Damien Miller3397d0e2008-02-10 22:26:51 +1100308 if (first_unused_handle == -1) {
309 if (num_handles + 1 <= num_handles)
310 return -1;
311 num_handles++;
deraadt@openbsd.org657a5fb2015-04-24 01:36:00 +0000312 handles = xreallocarray(handles, num_handles, sizeof(Handle));
Damien Miller3397d0e2008-02-10 22:26:51 +1100313 handle_unused(num_handles - 1);
Damien Miller7b28dc52000-09-05 13:34:53 +1100314 }
Damien Miller3397d0e2008-02-10 22:26:51 +1100315
316 i = first_unused_handle;
317 first_unused_handle = handles[i].next_unused;
318
319 handles[i].use = use;
320 handles[i].dirp = dirp;
321 handles[i].fd = fd;
Damien Millere9fc72e2013-10-15 12:14:12 +1100322 handles[i].flags = flags;
Damien Miller3397d0e2008-02-10 22:26:51 +1100323 handles[i].name = xstrdup(name);
324 handles[i].bytes_read = handles[i].bytes_write = 0;
325
326 return i;
Damien Miller7b28dc52000-09-05 13:34:53 +1100327}
328
Ben Lindstrombba81212001-06-25 05:01:22 +0000329static int
Damien Miller7b28dc52000-09-05 13:34:53 +1100330handle_is_ok(int i, int type)
331{
Damien Miller3397d0e2008-02-10 22:26:51 +1100332 return i >= 0 && (u_int)i < num_handles && handles[i].use == type;
Damien Miller7b28dc52000-09-05 13:34:53 +1100333}
334
Ben Lindstrombba81212001-06-25 05:01:22 +0000335static int
djm@openbsd.org7d845f42015-01-14 13:54:13 +0000336handle_to_string(int handle, u_char **stringp, int *hlenp)
Damien Miller7b28dc52000-09-05 13:34:53 +1100337{
Damien Miller7b28dc52000-09-05 13:34:53 +1100338 if (stringp == NULL || hlenp == NULL)
339 return -1;
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000340 *stringp = xmalloc(sizeof(int32_t));
Damien Miller3f941882006-03-31 23:13:02 +1100341 put_u32(*stringp, handle);
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000342 *hlenp = sizeof(int32_t);
Damien Miller7b28dc52000-09-05 13:34:53 +1100343 return 0;
344}
345
Ben Lindstrombba81212001-06-25 05:01:22 +0000346static int
djm@openbsd.org7d845f42015-01-14 13:54:13 +0000347handle_from_string(const u_char *handle, u_int hlen)
Damien Miller7b28dc52000-09-05 13:34:53 +1100348{
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000349 int val;
Ben Lindstrom1addabd2001-03-05 07:09:11 +0000350
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000351 if (hlen != sizeof(int32_t))
Damien Miller7b28dc52000-09-05 13:34:53 +1100352 return -1;
Damien Miller3f941882006-03-31 23:13:02 +1100353 val = get_u32(handle);
Damien Miller7b28dc52000-09-05 13:34:53 +1100354 if (handle_is_ok(val, HANDLE_FILE) ||
355 handle_is_ok(val, HANDLE_DIR))
356 return val;
357 return -1;
358}
359
Ben Lindstrombba81212001-06-25 05:01:22 +0000360static char *
Damien Miller7b28dc52000-09-05 13:34:53 +1100361handle_to_name(int handle)
362{
363 if (handle_is_ok(handle, HANDLE_DIR)||
364 handle_is_ok(handle, HANDLE_FILE))
365 return handles[handle].name;
366 return NULL;
367}
368
Ben Lindstrombba81212001-06-25 05:01:22 +0000369static DIR *
Damien Miller7b28dc52000-09-05 13:34:53 +1100370handle_to_dir(int handle)
371{
372 if (handle_is_ok(handle, HANDLE_DIR))
373 return handles[handle].dirp;
374 return NULL;
375}
376
Ben Lindstrombba81212001-06-25 05:01:22 +0000377static int
Damien Miller7b28dc52000-09-05 13:34:53 +1100378handle_to_fd(int handle)
379{
Kevin Stevesef4eea92001-02-05 12:42:17 +0000380 if (handle_is_ok(handle, HANDLE_FILE))
Damien Miller7b28dc52000-09-05 13:34:53 +1100381 return handles[handle].fd;
382 return -1;
383}
384
Damien Millere9fc72e2013-10-15 12:14:12 +1100385static int
386handle_to_flags(int handle)
387{
388 if (handle_is_ok(handle, HANDLE_FILE))
389 return handles[handle].flags;
390 return 0;
391}
392
Damien Millerfef95ad2006-07-10 20:46:55 +1000393static void
394handle_update_read(int handle, ssize_t bytes)
395{
396 if (handle_is_ok(handle, HANDLE_FILE) && bytes > 0)
397 handles[handle].bytes_read += bytes;
398}
399
400static void
401handle_update_write(int handle, ssize_t bytes)
402{
403 if (handle_is_ok(handle, HANDLE_FILE) && bytes > 0)
404 handles[handle].bytes_write += bytes;
405}
406
407static u_int64_t
408handle_bytes_read(int handle)
409{
410 if (handle_is_ok(handle, HANDLE_FILE))
411 return (handles[handle].bytes_read);
412 return 0;
413}
414
415static u_int64_t
416handle_bytes_write(int handle)
417{
418 if (handle_is_ok(handle, HANDLE_FILE))
419 return (handles[handle].bytes_write);
420 return 0;
421}
422
Ben Lindstrombba81212001-06-25 05:01:22 +0000423static int
Damien Miller7b28dc52000-09-05 13:34:53 +1100424handle_close(int handle)
425{
426 int ret = -1;
Ben Lindstrom1addabd2001-03-05 07:09:11 +0000427
Damien Miller7b28dc52000-09-05 13:34:53 +1100428 if (handle_is_ok(handle, HANDLE_FILE)) {
429 ret = close(handles[handle].fd);
Darren Tuckera627d422013-06-02 07:31:17 +1000430 free(handles[handle].name);
Damien Miller3397d0e2008-02-10 22:26:51 +1100431 handle_unused(handle);
Damien Miller7b28dc52000-09-05 13:34:53 +1100432 } else if (handle_is_ok(handle, HANDLE_DIR)) {
433 ret = closedir(handles[handle].dirp);
Darren Tuckera627d422013-06-02 07:31:17 +1000434 free(handles[handle].name);
Damien Miller3397d0e2008-02-10 22:26:51 +1100435 handle_unused(handle);
Damien Miller7b28dc52000-09-05 13:34:53 +1100436 } else {
437 errno = ENOENT;
438 }
439 return ret;
440}
441
Damien Millerfef95ad2006-07-10 20:46:55 +1000442static void
443handle_log_close(int handle, char *emsg)
444{
445 if (handle_is_ok(handle, HANDLE_FILE)) {
446 logit("%s%sclose \"%s\" bytes read %llu written %llu",
447 emsg == NULL ? "" : emsg, emsg == NULL ? "" : " ",
448 handle_to_name(handle),
Darren Tucker86473c52007-05-20 14:59:32 +1000449 (unsigned long long)handle_bytes_read(handle),
450 (unsigned long long)handle_bytes_write(handle));
Damien Millerfef95ad2006-07-10 20:46:55 +1000451 } else {
452 logit("%s%sclosedir \"%s\"",
453 emsg == NULL ? "" : emsg, emsg == NULL ? "" : " ",
454 handle_to_name(handle));
455 }
456}
457
458static void
459handle_log_exit(void)
460{
461 u_int i;
462
Damien Miller3397d0e2008-02-10 22:26:51 +1100463 for (i = 0; i < num_handles; i++)
Damien Millerfef95ad2006-07-10 20:46:55 +1000464 if (handles[i].use != HANDLE_UNUSED)
465 handle_log_close(i, "forced");
466}
467
Ben Lindstrombba81212001-06-25 05:01:22 +0000468static int
djm@openbsd.org7d845f42015-01-14 13:54:13 +0000469get_handle(struct sshbuf *queue, int *hp)
Damien Miller7b28dc52000-09-05 13:34:53 +1100470{
djm@openbsd.org7d845f42015-01-14 13:54:13 +0000471 u_char *handle;
472 int r;
473 size_t hlen;
Ben Lindstrom1addabd2001-03-05 07:09:11 +0000474
djm@openbsd.org7d845f42015-01-14 13:54:13 +0000475 *hp = -1;
476 if ((r = sshbuf_get_string(queue, &handle, &hlen)) != 0)
477 return r;
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000478 if (hlen < 256)
djm@openbsd.org7d845f42015-01-14 13:54:13 +0000479 *hp = handle_from_string(handle, hlen);
Darren Tuckera627d422013-06-02 07:31:17 +1000480 free(handle);
djm@openbsd.org7d845f42015-01-14 13:54:13 +0000481 return 0;
Damien Miller7b28dc52000-09-05 13:34:53 +1100482}
483
484/* send replies */
485
Ben Lindstrombba81212001-06-25 05:01:22 +0000486static void
djm@openbsd.org7d845f42015-01-14 13:54:13 +0000487send_msg(struct sshbuf *m)
Damien Miller7b28dc52000-09-05 13:34:53 +1100488{
djm@openbsd.org7d845f42015-01-14 13:54:13 +0000489 int r;
Ben Lindstrom1addabd2001-03-05 07:09:11 +0000490
djm@openbsd.org7d845f42015-01-14 13:54:13 +0000491 if ((r = sshbuf_put_stringb(oqueue, m)) != 0)
492 fatal("%s: buffer error: %s", __func__, ssh_err(r));
493 sshbuf_reset(m);
Damien Miller7b28dc52000-09-05 13:34:53 +1100494}
495
Damien Millerfef95ad2006-07-10 20:46:55 +1000496static const char *
497status_to_message(u_int32_t status)
Damien Miller7b28dc52000-09-05 13:34:53 +1100498{
Damien Miller058316f2001-03-08 10:08:49 +1100499 const char *status_messages[] = {
500 "Success", /* SSH_FX_OK */
501 "End of file", /* SSH_FX_EOF */
502 "No such file", /* SSH_FX_NO_SUCH_FILE */
503 "Permission denied", /* SSH_FX_PERMISSION_DENIED */
504 "Failure", /* SSH_FX_FAILURE */
505 "Bad message", /* SSH_FX_BAD_MESSAGE */
506 "No connection", /* SSH_FX_NO_CONNECTION */
507 "Connection lost", /* SSH_FX_CONNECTION_LOST */
508 "Operation unsupported", /* SSH_FX_OP_UNSUPPORTED */
509 "Unknown error" /* Others */
510 };
deraadt@openbsd.org9136ec12016-09-12 01:22:38 +0000511 return (status_messages[MINIMUM(status,SSH2_FX_MAX)]);
Damien Millerfef95ad2006-07-10 20:46:55 +1000512}
Ben Lindstrom1addabd2001-03-05 07:09:11 +0000513
Damien Millerfef95ad2006-07-10 20:46:55 +1000514static void
515send_status(u_int32_t id, u_int32_t status)
516{
djm@openbsd.org7d845f42015-01-14 13:54:13 +0000517 struct sshbuf *msg;
518 int r;
Damien Millerfef95ad2006-07-10 20:46:55 +1000519
520 debug3("request %u: sent status %u", id, status);
521 if (log_level > SYSLOG_LEVEL_VERBOSE ||
522 (status != SSH2_FX_OK && status != SSH2_FX_EOF))
523 logit("sent status %s", status_to_message(status));
djm@openbsd.org7d845f42015-01-14 13:54:13 +0000524 if ((msg = sshbuf_new()) == NULL)
525 fatal("%s: sshbuf_new failed", __func__);
526 if ((r = sshbuf_put_u8(msg, SSH2_FXP_STATUS)) != 0 ||
527 (r = sshbuf_put_u32(msg, id)) != 0 ||
528 (r = sshbuf_put_u32(msg, status)) != 0)
529 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Damien Miller058316f2001-03-08 10:08:49 +1100530 if (version >= 3) {
djm@openbsd.org7d845f42015-01-14 13:54:13 +0000531 if ((r = sshbuf_put_cstring(msg,
532 status_to_message(status))) != 0 ||
533 (r = sshbuf_put_cstring(msg, "")) != 0)
534 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Damien Miller058316f2001-03-08 10:08:49 +1100535 }
djm@openbsd.org7d845f42015-01-14 13:54:13 +0000536 send_msg(msg);
537 sshbuf_free(msg);
Damien Miller7b28dc52000-09-05 13:34:53 +1100538}
Ben Lindstrombba81212001-06-25 05:01:22 +0000539static void
djm@openbsd.org7d845f42015-01-14 13:54:13 +0000540send_data_or_handle(char type, u_int32_t id, const u_char *data, int dlen)
Damien Miller7b28dc52000-09-05 13:34:53 +1100541{
djm@openbsd.org7d845f42015-01-14 13:54:13 +0000542 struct sshbuf *msg;
543 int r;
Ben Lindstrom1addabd2001-03-05 07:09:11 +0000544
djm@openbsd.org7d845f42015-01-14 13:54:13 +0000545 if ((msg = sshbuf_new()) == NULL)
546 fatal("%s: sshbuf_new failed", __func__);
547 if ((r = sshbuf_put_u8(msg, type)) != 0 ||
548 (r = sshbuf_put_u32(msg, id)) != 0 ||
549 (r = sshbuf_put_string(msg, data, dlen)) != 0)
550 fatal("%s: buffer error: %s", __func__, ssh_err(r));
551 send_msg(msg);
552 sshbuf_free(msg);
Damien Miller7b28dc52000-09-05 13:34:53 +1100553}
554
Ben Lindstrombba81212001-06-25 05:01:22 +0000555static void
djm@openbsd.org7d845f42015-01-14 13:54:13 +0000556send_data(u_int32_t id, const u_char *data, int dlen)
Damien Miller7b28dc52000-09-05 13:34:53 +1100557{
Damien Millerfef95ad2006-07-10 20:46:55 +1000558 debug("request %u: sent data len %d", id, dlen);
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000559 send_data_or_handle(SSH2_FXP_DATA, id, data, dlen);
Damien Miller7b28dc52000-09-05 13:34:53 +1100560}
561
Ben Lindstrombba81212001-06-25 05:01:22 +0000562static void
Damien Miller7b28dc52000-09-05 13:34:53 +1100563send_handle(u_int32_t id, int handle)
564{
djm@openbsd.org7d845f42015-01-14 13:54:13 +0000565 u_char *string;
Damien Miller7b28dc52000-09-05 13:34:53 +1100566 int hlen;
Ben Lindstrom1addabd2001-03-05 07:09:11 +0000567
Damien Miller7b28dc52000-09-05 13:34:53 +1100568 handle_to_string(handle, &string, &hlen);
Damien Millerfef95ad2006-07-10 20:46:55 +1000569 debug("request %u: sent handle handle %d", id, handle);
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000570 send_data_or_handle(SSH2_FXP_HANDLE, id, string, hlen);
Darren Tuckera627d422013-06-02 07:31:17 +1000571 free(string);
Damien Miller7b28dc52000-09-05 13:34:53 +1100572}
573
Ben Lindstrombba81212001-06-25 05:01:22 +0000574static void
Damien Millerf58b58c2003-11-17 21:18:23 +1100575send_names(u_int32_t id, int count, const Stat *stats)
Damien Miller7b28dc52000-09-05 13:34:53 +1100576{
djm@openbsd.org7d845f42015-01-14 13:54:13 +0000577 struct sshbuf *msg;
578 int i, r;
Ben Lindstrom1addabd2001-03-05 07:09:11 +0000579
djm@openbsd.org7d845f42015-01-14 13:54:13 +0000580 if ((msg = sshbuf_new()) == NULL)
581 fatal("%s: sshbuf_new failed", __func__);
582 if ((r = sshbuf_put_u8(msg, SSH2_FXP_NAME)) != 0 ||
583 (r = sshbuf_put_u32(msg, id)) != 0 ||
584 (r = sshbuf_put_u32(msg, count)) != 0)
585 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Damien Millerfef95ad2006-07-10 20:46:55 +1000586 debug("request %u: sent names count %d", id, count);
Damien Miller7b28dc52000-09-05 13:34:53 +1100587 for (i = 0; i < count; i++) {
djm@openbsd.org7d845f42015-01-14 13:54:13 +0000588 if ((r = sshbuf_put_cstring(msg, stats[i].name)) != 0 ||
589 (r = sshbuf_put_cstring(msg, stats[i].long_name)) != 0 ||
590 (r = encode_attrib(msg, &stats[i].attrib)) != 0)
591 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Damien Miller7b28dc52000-09-05 13:34:53 +1100592 }
djm@openbsd.org7d845f42015-01-14 13:54:13 +0000593 send_msg(msg);
594 sshbuf_free(msg);
Damien Miller7b28dc52000-09-05 13:34:53 +1100595}
596
Ben Lindstrombba81212001-06-25 05:01:22 +0000597static void
Damien Millerf58b58c2003-11-17 21:18:23 +1100598send_attrib(u_int32_t id, const Attrib *a)
Damien Miller7b28dc52000-09-05 13:34:53 +1100599{
djm@openbsd.org7d845f42015-01-14 13:54:13 +0000600 struct sshbuf *msg;
601 int r;
Ben Lindstrom1addabd2001-03-05 07:09:11 +0000602
Damien Millerfef95ad2006-07-10 20:46:55 +1000603 debug("request %u: sent attrib have 0x%x", id, a->flags);
djm@openbsd.org7d845f42015-01-14 13:54:13 +0000604 if ((msg = sshbuf_new()) == NULL)
605 fatal("%s: sshbuf_new failed", __func__);
606 if ((r = sshbuf_put_u8(msg, SSH2_FXP_ATTRS)) != 0 ||
607 (r = sshbuf_put_u32(msg, id)) != 0 ||
608 (r = encode_attrib(msg, a)) != 0)
609 fatal("%s: buffer error: %s", __func__, ssh_err(r));
610 send_msg(msg);
611 sshbuf_free(msg);
Damien Miller7b28dc52000-09-05 13:34:53 +1100612}
613
Damien Millerd671e5a2008-05-19 14:53:33 +1000614static void
615send_statvfs(u_int32_t id, struct statvfs *st)
616{
djm@openbsd.org7d845f42015-01-14 13:54:13 +0000617 struct sshbuf *msg;
Damien Millerd671e5a2008-05-19 14:53:33 +1000618 u_int64_t flag;
djm@openbsd.org7d845f42015-01-14 13:54:13 +0000619 int r;
Damien Millerd671e5a2008-05-19 14:53:33 +1000620
621 flag = (st->f_flag & ST_RDONLY) ? SSH2_FXE_STATVFS_ST_RDONLY : 0;
622 flag |= (st->f_flag & ST_NOSUID) ? SSH2_FXE_STATVFS_ST_NOSUID : 0;
623
djm@openbsd.org7d845f42015-01-14 13:54:13 +0000624 if ((msg = sshbuf_new()) == NULL)
625 fatal("%s: sshbuf_new failed", __func__);
626 if ((r = sshbuf_put_u8(msg, SSH2_FXP_EXTENDED_REPLY)) != 0 ||
627 (r = sshbuf_put_u32(msg, id)) != 0 ||
628 (r = sshbuf_put_u64(msg, st->f_bsize)) != 0 ||
629 (r = sshbuf_put_u64(msg, st->f_frsize)) != 0 ||
630 (r = sshbuf_put_u64(msg, st->f_blocks)) != 0 ||
631 (r = sshbuf_put_u64(msg, st->f_bfree)) != 0 ||
632 (r = sshbuf_put_u64(msg, st->f_bavail)) != 0 ||
633 (r = sshbuf_put_u64(msg, st->f_files)) != 0 ||
634 (r = sshbuf_put_u64(msg, st->f_ffree)) != 0 ||
635 (r = sshbuf_put_u64(msg, st->f_favail)) != 0 ||
636 (r = sshbuf_put_u64(msg, FSID_TO_ULONG(st->f_fsid))) != 0 ||
637 (r = sshbuf_put_u64(msg, flag)) != 0 ||
638 (r = sshbuf_put_u64(msg, st->f_namemax)) != 0)
639 fatal("%s: buffer error: %s", __func__, ssh_err(r));
640 send_msg(msg);
641 sshbuf_free(msg);
Damien Millerd671e5a2008-05-19 14:53:33 +1000642}
643
Damien Miller7b28dc52000-09-05 13:34:53 +1100644/* parse incoming */
645
Ben Lindstrombba81212001-06-25 05:01:22 +0000646static void
Damien Miller7b28dc52000-09-05 13:34:53 +1100647process_init(void)
648{
djm@openbsd.org7d845f42015-01-14 13:54:13 +0000649 struct sshbuf *msg;
650 int r;
Damien Miller7b28dc52000-09-05 13:34:53 +1100651
djm@openbsd.org7d845f42015-01-14 13:54:13 +0000652 if ((r = sshbuf_get_u32(iqueue, &version)) != 0)
653 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Damien Millerf145a5b2011-06-20 14:42:51 +1000654 verbose("received client version %u", version);
djm@openbsd.org7d845f42015-01-14 13:54:13 +0000655 if ((msg = sshbuf_new()) == NULL)
656 fatal("%s: sshbuf_new failed", __func__);
657 if ((r = sshbuf_put_u8(msg, SSH2_FXP_VERSION)) != 0 ||
658 (r = sshbuf_put_u32(msg, SSH2_FILEXFER_VERSION)) != 0 ||
659 /* POSIX rename extension */
660 (r = sshbuf_put_cstring(msg, "posix-rename@openssh.com")) != 0 ||
661 (r = sshbuf_put_cstring(msg, "1")) != 0 || /* version */
662 /* statvfs extension */
663 (r = sshbuf_put_cstring(msg, "statvfs@openssh.com")) != 0 ||
664 (r = sshbuf_put_cstring(msg, "2")) != 0 || /* version */
665 /* fstatvfs extension */
666 (r = sshbuf_put_cstring(msg, "fstatvfs@openssh.com")) != 0 ||
667 (r = sshbuf_put_cstring(msg, "2")) != 0 || /* version */
668 /* hardlink extension */
669 (r = sshbuf_put_cstring(msg, "hardlink@openssh.com")) != 0 ||
670 (r = sshbuf_put_cstring(msg, "1")) != 0 || /* version */
671 /* fsync extension */
672 (r = sshbuf_put_cstring(msg, "fsync@openssh.com")) != 0 ||
djm@openbsd.orgdbbc7e02019-01-16 23:22:10 +0000673 (r = sshbuf_put_cstring(msg, "1")) != 0 || /* version */
674 (r = sshbuf_put_cstring(msg, "lsetstat@openssh.com")) != 0 ||
djm@openbsd.org7d845f42015-01-14 13:54:13 +0000675 (r = sshbuf_put_cstring(msg, "1")) != 0) /* version */
676 fatal("%s: buffer error: %s", __func__, ssh_err(r));
677 send_msg(msg);
678 sshbuf_free(msg);
Damien Miller7b28dc52000-09-05 13:34:53 +1100679}
680
Ben Lindstrombba81212001-06-25 05:01:22 +0000681static void
Damien Miller6eaeebf2013-10-15 11:55:57 +1100682process_open(u_int32_t id)
Damien Miller7b28dc52000-09-05 13:34:53 +1100683{
Damien Miller6eaeebf2013-10-15 11:55:57 +1100684 u_int32_t pflags;
djm@openbsd.org7d845f42015-01-14 13:54:13 +0000685 Attrib a;
Damien Miller7b28dc52000-09-05 13:34:53 +1100686 char *name;
djm@openbsd.org7d845f42015-01-14 13:54:13 +0000687 int r, handle, fd, flags, mode, status = SSH2_FX_FAILURE;
Damien Miller7b28dc52000-09-05 13:34:53 +1100688
djm@openbsd.org7d845f42015-01-14 13:54:13 +0000689 if ((r = sshbuf_get_cstring(iqueue, &name, NULL)) != 0 ||
690 (r = sshbuf_get_u32(iqueue, &pflags)) != 0 || /* portable flags */
691 (r = decode_attrib(iqueue, &a)) != 0)
692 fatal("%s: buffer error: %s", __func__, ssh_err(r));
693
Damien Miller6444fe92006-07-10 21:31:27 +1000694 debug3("request %u: open flags %d", id, pflags);
Damien Miller7b28dc52000-09-05 13:34:53 +1100695 flags = flags_from_portable(pflags);
djm@openbsd.org7d845f42015-01-14 13:54:13 +0000696 mode = (a.flags & SSH2_FILEXFER_ATTR_PERMISSIONS) ? a.perm : 0666;
Damien Millerfef95ad2006-07-10 20:46:55 +1000697 logit("open \"%s\" flags %s mode 0%o",
698 name, string_from_portable(pflags), mode);
Darren Tuckerdb7bf822010-01-09 22:24:33 +1100699 if (readonly &&
djm@openbsd.org4d827f02017-04-04 00:24:56 +0000700 ((flags & O_ACCMODE) != O_RDONLY ||
701 (flags & (O_CREAT|O_TRUNC)) != 0)) {
Damien Miller6eaeebf2013-10-15 11:55:57 +1100702 verbose("Refusing open request in read-only mode");
djm@openbsd.org7d845f42015-01-14 13:54:13 +0000703 status = SSH2_FX_PERMISSION_DENIED;
Damien Miller6eaeebf2013-10-15 11:55:57 +1100704 } else {
Darren Tuckerdb7bf822010-01-09 22:24:33 +1100705 fd = open(name, flags, mode);
deraadt@openbsd.org4d28fa72019-06-28 13:35:04 +0000706 if (fd == -1) {
Darren Tuckerdb7bf822010-01-09 22:24:33 +1100707 status = errno_to_portable(errno);
Damien Miller7b28dc52000-09-05 13:34:53 +1100708 } else {
Damien Millere9fc72e2013-10-15 12:14:12 +1100709 handle = handle_new(HANDLE_FILE, name, fd, flags, NULL);
Darren Tuckerdb7bf822010-01-09 22:24:33 +1100710 if (handle < 0) {
711 close(fd);
712 } else {
713 send_handle(id, handle);
714 status = SSH2_FX_OK;
715 }
Damien Miller7b28dc52000-09-05 13:34:53 +1100716 }
717 }
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000718 if (status != SSH2_FX_OK)
Damien Miller7b28dc52000-09-05 13:34:53 +1100719 send_status(id, status);
Darren Tuckera627d422013-06-02 07:31:17 +1000720 free(name);
Damien Miller7b28dc52000-09-05 13:34:53 +1100721}
722
Ben Lindstrombba81212001-06-25 05:01:22 +0000723static void
Damien Miller6eaeebf2013-10-15 11:55:57 +1100724process_close(u_int32_t id)
Damien Miller7b28dc52000-09-05 13:34:53 +1100725{
djm@openbsd.org7d845f42015-01-14 13:54:13 +0000726 int r, handle, ret, status = SSH2_FX_FAILURE;
Damien Miller7b28dc52000-09-05 13:34:53 +1100727
djm@openbsd.org7d845f42015-01-14 13:54:13 +0000728 if ((r = get_handle(iqueue, &handle)) != 0)
729 fatal("%s: buffer error: %s", __func__, ssh_err(r));
730
Damien Millerfef95ad2006-07-10 20:46:55 +1000731 debug3("request %u: close handle %u", id, handle);
732 handle_log_close(handle, NULL);
Damien Miller7b28dc52000-09-05 13:34:53 +1100733 ret = handle_close(handle);
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000734 status = (ret == -1) ? errno_to_portable(errno) : SSH2_FX_OK;
Damien Miller7b28dc52000-09-05 13:34:53 +1100735 send_status(id, status);
736}
737
Ben Lindstrombba81212001-06-25 05:01:22 +0000738static void
Damien Miller6eaeebf2013-10-15 11:55:57 +1100739process_read(u_int32_t id)
Damien Miller7b28dc52000-09-05 13:34:53 +1100740{
djm@openbsd.org7d845f42015-01-14 13:54:13 +0000741 u_char buf[64*1024];
Damien Miller6eaeebf2013-10-15 11:55:57 +1100742 u_int32_t len;
djm@openbsd.org7d845f42015-01-14 13:54:13 +0000743 int r, handle, fd, ret, status = SSH2_FX_FAILURE;
Damien Miller7b28dc52000-09-05 13:34:53 +1100744 u_int64_t off;
745
djm@openbsd.org7d845f42015-01-14 13:54:13 +0000746 if ((r = get_handle(iqueue, &handle)) != 0 ||
747 (r = sshbuf_get_u64(iqueue, &off)) != 0 ||
748 (r = sshbuf_get_u32(iqueue, &len)) != 0)
749 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Damien Miller7b28dc52000-09-05 13:34:53 +1100750
Damien Millerfef95ad2006-07-10 20:46:55 +1000751 debug("request %u: read \"%s\" (handle %d) off %llu len %d",
752 id, handle_to_name(handle), handle, (unsigned long long)off, len);
Damien Miller7b28dc52000-09-05 13:34:53 +1100753 if (len > sizeof buf) {
754 len = sizeof buf;
Damien Millerfef95ad2006-07-10 20:46:55 +1000755 debug2("read change len %d", len);
Damien Miller7b28dc52000-09-05 13:34:53 +1100756 }
757 fd = handle_to_fd(handle);
758 if (fd >= 0) {
deraadt@openbsd.org4d28fa72019-06-28 13:35:04 +0000759 if (lseek(fd, off, SEEK_SET) == -1) {
Damien Miller7b28dc52000-09-05 13:34:53 +1100760 error("process_read: seek failed");
761 status = errno_to_portable(errno);
762 } else {
763 ret = read(fd, buf, len);
deraadt@openbsd.org4d28fa72019-06-28 13:35:04 +0000764 if (ret == -1) {
Damien Miller7b28dc52000-09-05 13:34:53 +1100765 status = errno_to_portable(errno);
766 } else if (ret == 0) {
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000767 status = SSH2_FX_EOF;
Damien Miller7b28dc52000-09-05 13:34:53 +1100768 } else {
769 send_data(id, buf, ret);
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000770 status = SSH2_FX_OK;
Damien Millerfef95ad2006-07-10 20:46:55 +1000771 handle_update_read(handle, ret);
Damien Miller7b28dc52000-09-05 13:34:53 +1100772 }
773 }
774 }
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000775 if (status != SSH2_FX_OK)
Damien Miller7b28dc52000-09-05 13:34:53 +1100776 send_status(id, status);
777}
778
Ben Lindstrombba81212001-06-25 05:01:22 +0000779static void
Damien Miller6eaeebf2013-10-15 11:55:57 +1100780process_write(u_int32_t id)
Damien Miller7b28dc52000-09-05 13:34:53 +1100781{
Damien Miller7b28dc52000-09-05 13:34:53 +1100782 u_int64_t off;
djm@openbsd.org7d845f42015-01-14 13:54:13 +0000783 size_t len;
784 int r, handle, fd, ret, status;
785 u_char *data;
Damien Miller7b28dc52000-09-05 13:34:53 +1100786
djm@openbsd.org7d845f42015-01-14 13:54:13 +0000787 if ((r = get_handle(iqueue, &handle)) != 0 ||
788 (r = sshbuf_get_u64(iqueue, &off)) != 0 ||
789 (r = sshbuf_get_string(iqueue, &data, &len)) != 0)
790 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Damien Miller7b28dc52000-09-05 13:34:53 +1100791
djm@openbsd.org7d845f42015-01-14 13:54:13 +0000792 debug("request %u: write \"%s\" (handle %d) off %llu len %zu",
Damien Millerfef95ad2006-07-10 20:46:55 +1000793 id, handle_to_name(handle), handle, (unsigned long long)off, len);
Damien Miller7b28dc52000-09-05 13:34:53 +1100794 fd = handle_to_fd(handle);
djm@openbsd.org7d845f42015-01-14 13:54:13 +0000795
Darren Tuckerdb7bf822010-01-09 22:24:33 +1100796 if (fd < 0)
797 status = SSH2_FX_FAILURE;
Darren Tuckerdb7bf822010-01-09 22:24:33 +1100798 else {
Damien Millere9fc72e2013-10-15 12:14:12 +1100799 if (!(handle_to_flags(handle) & O_APPEND) &&
deraadt@openbsd.org4d28fa72019-06-28 13:35:04 +0000800 lseek(fd, off, SEEK_SET) == -1) {
Damien Miller7b28dc52000-09-05 13:34:53 +1100801 status = errno_to_portable(errno);
802 error("process_write: seek failed");
803 } else {
804/* XXX ATOMICIO ? */
805 ret = write(fd, data, len);
deraadt@openbsd.org4d28fa72019-06-28 13:35:04 +0000806 if (ret == -1) {
Damien Miller7b28dc52000-09-05 13:34:53 +1100807 error("process_write: write failed");
808 status = errno_to_portable(errno);
Damien Millereccb9de2005-06-17 12:59:34 +1000809 } else if ((size_t)ret == len) {
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000810 status = SSH2_FX_OK;
Damien Millerfef95ad2006-07-10 20:46:55 +1000811 handle_update_write(handle, ret);
Damien Miller7b28dc52000-09-05 13:34:53 +1100812 } else {
Damien Millerfef95ad2006-07-10 20:46:55 +1000813 debug2("nothing at all written");
Darren Tuckerdb7bf822010-01-09 22:24:33 +1100814 status = SSH2_FX_FAILURE;
Damien Miller7b28dc52000-09-05 13:34:53 +1100815 }
816 }
817 }
818 send_status(id, status);
Darren Tuckera627d422013-06-02 07:31:17 +1000819 free(data);
Damien Miller7b28dc52000-09-05 13:34:53 +1100820}
821
Ben Lindstrombba81212001-06-25 05:01:22 +0000822static void
Damien Miller6eaeebf2013-10-15 11:55:57 +1100823process_do_stat(u_int32_t id, int do_lstat)
Damien Miller7b28dc52000-09-05 13:34:53 +1100824{
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000825 Attrib a;
Damien Miller7b28dc52000-09-05 13:34:53 +1100826 struct stat st;
Damien Miller7b28dc52000-09-05 13:34:53 +1100827 char *name;
djm@openbsd.org7d845f42015-01-14 13:54:13 +0000828 int r, status = SSH2_FX_FAILURE;
Damien Miller7b28dc52000-09-05 13:34:53 +1100829
djm@openbsd.org7d845f42015-01-14 13:54:13 +0000830 if ((r = sshbuf_get_cstring(iqueue, &name, NULL)) != 0)
831 fatal("%s: buffer error: %s", __func__, ssh_err(r));
832
Damien Millerfef95ad2006-07-10 20:46:55 +1000833 debug3("request %u: %sstat", id, do_lstat ? "l" : "");
834 verbose("%sstat name \"%s\"", do_lstat ? "l" : "", name);
djm@openbsd.org7d845f42015-01-14 13:54:13 +0000835 r = do_lstat ? lstat(name, &st) : stat(name, &st);
deraadt@openbsd.org4d28fa72019-06-28 13:35:04 +0000836 if (r == -1) {
Damien Miller7b28dc52000-09-05 13:34:53 +1100837 status = errno_to_portable(errno);
838 } else {
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000839 stat_to_attrib(&st, &a);
840 send_attrib(id, &a);
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000841 status = SSH2_FX_OK;
Damien Miller7b28dc52000-09-05 13:34:53 +1100842 }
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000843 if (status != SSH2_FX_OK)
Damien Miller7b28dc52000-09-05 13:34:53 +1100844 send_status(id, status);
Darren Tuckera627d422013-06-02 07:31:17 +1000845 free(name);
Damien Miller7b28dc52000-09-05 13:34:53 +1100846}
847
Ben Lindstrombba81212001-06-25 05:01:22 +0000848static void
Damien Miller6eaeebf2013-10-15 11:55:57 +1100849process_stat(u_int32_t id)
Damien Miller7b28dc52000-09-05 13:34:53 +1100850{
Damien Miller6eaeebf2013-10-15 11:55:57 +1100851 process_do_stat(id, 0);
Damien Miller7b28dc52000-09-05 13:34:53 +1100852}
853
Ben Lindstrombba81212001-06-25 05:01:22 +0000854static void
Damien Miller6eaeebf2013-10-15 11:55:57 +1100855process_lstat(u_int32_t id)
Damien Miller7b28dc52000-09-05 13:34:53 +1100856{
Damien Miller6eaeebf2013-10-15 11:55:57 +1100857 process_do_stat(id, 1);
Damien Miller7b28dc52000-09-05 13:34:53 +1100858}
859
Ben Lindstrombba81212001-06-25 05:01:22 +0000860static void
Damien Miller6eaeebf2013-10-15 11:55:57 +1100861process_fstat(u_int32_t id)
Damien Miller7b28dc52000-09-05 13:34:53 +1100862{
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000863 Attrib a;
Damien Miller7b28dc52000-09-05 13:34:53 +1100864 struct stat st;
djm@openbsd.org7d845f42015-01-14 13:54:13 +0000865 int fd, r, handle, status = SSH2_FX_FAILURE;
Damien Miller7b28dc52000-09-05 13:34:53 +1100866
djm@openbsd.org7d845f42015-01-14 13:54:13 +0000867 if ((r = get_handle(iqueue, &handle)) != 0)
868 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Damien Millerfef95ad2006-07-10 20:46:55 +1000869 debug("request %u: fstat \"%s\" (handle %u)",
870 id, handle_to_name(handle), handle);
Damien Miller7b28dc52000-09-05 13:34:53 +1100871 fd = handle_to_fd(handle);
Damien Millere2334d62007-01-05 16:31:02 +1100872 if (fd >= 0) {
djm@openbsd.org7d845f42015-01-14 13:54:13 +0000873 r = fstat(fd, &st);
deraadt@openbsd.org4d28fa72019-06-28 13:35:04 +0000874 if (r == -1) {
Damien Miller7b28dc52000-09-05 13:34:53 +1100875 status = errno_to_portable(errno);
876 } else {
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000877 stat_to_attrib(&st, &a);
878 send_attrib(id, &a);
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000879 status = SSH2_FX_OK;
Damien Miller7b28dc52000-09-05 13:34:53 +1100880 }
881 }
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000882 if (status != SSH2_FX_OK)
Damien Miller7b28dc52000-09-05 13:34:53 +1100883 send_status(id, status);
884}
885
Ben Lindstrombba81212001-06-25 05:01:22 +0000886static struct timeval *
Damien Millerf58b58c2003-11-17 21:18:23 +1100887attrib_to_tv(const Attrib *a)
Damien Miller7b28dc52000-09-05 13:34:53 +1100888{
889 static struct timeval tv[2];
Ben Lindstrom1addabd2001-03-05 07:09:11 +0000890
Damien Miller7b28dc52000-09-05 13:34:53 +1100891 tv[0].tv_sec = a->atime;
892 tv[0].tv_usec = 0;
893 tv[1].tv_sec = a->mtime;
894 tv[1].tv_usec = 0;
895 return tv;
896}
897
djm@openbsd.orgdbbc7e02019-01-16 23:22:10 +0000898static struct timespec *
899attrib_to_ts(const Attrib *a)
900{
901 static struct timespec ts[2];
902
903 ts[0].tv_sec = a->atime;
904 ts[0].tv_nsec = 0;
905 ts[1].tv_sec = a->mtime;
906 ts[1].tv_nsec = 0;
907 return ts;
908}
909
Ben Lindstrombba81212001-06-25 05:01:22 +0000910static void
Damien Miller6eaeebf2013-10-15 11:55:57 +1100911process_setstat(u_int32_t id)
Damien Miller7b28dc52000-09-05 13:34:53 +1100912{
djm@openbsd.org7d845f42015-01-14 13:54:13 +0000913 Attrib a;
Damien Miller7b28dc52000-09-05 13:34:53 +1100914 char *name;
djm@openbsd.org7d845f42015-01-14 13:54:13 +0000915 int r, status = SSH2_FX_OK;
Damien Miller7b28dc52000-09-05 13:34:53 +1100916
djm@openbsd.org7d845f42015-01-14 13:54:13 +0000917 if ((r = sshbuf_get_cstring(iqueue, &name, NULL)) != 0 ||
918 (r = decode_attrib(iqueue, &a)) != 0)
919 fatal("%s: buffer error: %s", __func__, ssh_err(r));
920
Damien Millerfef95ad2006-07-10 20:46:55 +1000921 debug("request %u: setstat name \"%s\"", id, name);
djm@openbsd.org7d845f42015-01-14 13:54:13 +0000922 if (a.flags & SSH2_FILEXFER_ATTR_SIZE) {
Darren Tucker86473c52007-05-20 14:59:32 +1000923 logit("set \"%s\" size %llu",
djm@openbsd.org7d845f42015-01-14 13:54:13 +0000924 name, (unsigned long long)a.size);
925 r = truncate(name, a.size);
926 if (r == -1)
Damien Miller00c92172002-02-13 14:05:00 +1100927 status = errno_to_portable(errno);
928 }
djm@openbsd.org7d845f42015-01-14 13:54:13 +0000929 if (a.flags & SSH2_FILEXFER_ATTR_PERMISSIONS) {
930 logit("set \"%s\" mode %04o", name, a.perm);
931 r = chmod(name, a.perm & 07777);
932 if (r == -1)
Damien Miller7b28dc52000-09-05 13:34:53 +1100933 status = errno_to_portable(errno);
934 }
djm@openbsd.org7d845f42015-01-14 13:54:13 +0000935 if (a.flags & SSH2_FILEXFER_ATTR_ACMODTIME) {
Damien Millerfef95ad2006-07-10 20:46:55 +1000936 char buf[64];
djm@openbsd.org7d845f42015-01-14 13:54:13 +0000937 time_t t = a.mtime;
Damien Millerfef95ad2006-07-10 20:46:55 +1000938
939 strftime(buf, sizeof(buf), "%Y%m%d-%H:%M:%S",
940 localtime(&t));
941 logit("set \"%s\" modtime %s", name, buf);
djm@openbsd.org7d845f42015-01-14 13:54:13 +0000942 r = utimes(name, attrib_to_tv(&a));
943 if (r == -1)
Damien Miller7b28dc52000-09-05 13:34:53 +1100944 status = errno_to_portable(errno);
945 }
djm@openbsd.org7d845f42015-01-14 13:54:13 +0000946 if (a.flags & SSH2_FILEXFER_ATTR_UIDGID) {
Damien Millerfef95ad2006-07-10 20:46:55 +1000947 logit("set \"%s\" owner %lu group %lu", name,
djm@openbsd.org7d845f42015-01-14 13:54:13 +0000948 (u_long)a.uid, (u_long)a.gid);
949 r = chown(name, a.uid, a.gid);
950 if (r == -1)
Kevin Steves8e743932001-02-05 13:24:35 +0000951 status = errno_to_portable(errno);
952 }
Damien Miller7b28dc52000-09-05 13:34:53 +1100953 send_status(id, status);
Darren Tuckera627d422013-06-02 07:31:17 +1000954 free(name);
Damien Miller7b28dc52000-09-05 13:34:53 +1100955}
956
Ben Lindstrombba81212001-06-25 05:01:22 +0000957static void
Damien Miller6eaeebf2013-10-15 11:55:57 +1100958process_fsetstat(u_int32_t id)
Damien Miller7b28dc52000-09-05 13:34:53 +1100959{
djm@openbsd.org7d845f42015-01-14 13:54:13 +0000960 Attrib a;
961 int handle, fd, r;
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000962 int status = SSH2_FX_OK;
Kevin Stevesf7ffab32001-01-24 20:11:06 +0000963
djm@openbsd.org7d845f42015-01-14 13:54:13 +0000964 if ((r = get_handle(iqueue, &handle)) != 0 ||
965 (r = decode_attrib(iqueue, &a)) != 0)
966 fatal("%s: buffer error: %s", __func__, ssh_err(r));
967
968 debug("request %u: fsetstat handle %d", id, handle);
969 fd = handle_to_fd(handle);
970 if (fd < 0)
971 status = SSH2_FX_FAILURE;
972 else {
973 char *name = handle_to_name(handle);
974
975 if (a.flags & SSH2_FILEXFER_ATTR_SIZE) {
976 logit("set \"%s\" size %llu",
977 name, (unsigned long long)a.size);
978 r = ftruncate(fd, a.size);
979 if (r == -1)
980 status = errno_to_portable(errno);
981 }
982 if (a.flags & SSH2_FILEXFER_ATTR_PERMISSIONS) {
983 logit("set \"%s\" mode %04o", name, a.perm);
984#ifdef HAVE_FCHMOD
Damien Miller83b96782015-01-15 02:35:50 +1100985 r = fchmod(fd, a.perm & 07777);
djm@openbsd.org7d845f42015-01-14 13:54:13 +0000986#else
Damien Miller83b96782015-01-15 02:35:50 +1100987 r = chmod(name, a.perm & 07777);
djm@openbsd.org7d845f42015-01-14 13:54:13 +0000988#endif
989 if (r == -1)
990 status = errno_to_portable(errno);
991 }
992 if (a.flags & SSH2_FILEXFER_ATTR_ACMODTIME) {
993 char buf[64];
994 time_t t = a.mtime;
995
996 strftime(buf, sizeof(buf), "%Y%m%d-%H:%M:%S",
997 localtime(&t));
998 logit("set \"%s\" modtime %s", name, buf);
999#ifdef HAVE_FUTIMES
Damien Miller83b96782015-01-15 02:35:50 +11001000 r = futimes(fd, attrib_to_tv(&a));
djm@openbsd.org7d845f42015-01-14 13:54:13 +00001001#else
Damien Miller83b96782015-01-15 02:35:50 +11001002 r = utimes(name, attrib_to_tv(&a));
djm@openbsd.org7d845f42015-01-14 13:54:13 +00001003#endif
1004 if (r == -1)
1005 status = errno_to_portable(errno);
1006 }
1007 if (a.flags & SSH2_FILEXFER_ATTR_UIDGID) {
1008 logit("set \"%s\" owner %lu group %lu", name,
1009 (u_long)a.uid, (u_long)a.gid);
1010#ifdef HAVE_FCHOWN
Damien Miller83b96782015-01-15 02:35:50 +11001011 r = fchown(fd, a.uid, a.gid);
djm@openbsd.org7d845f42015-01-14 13:54:13 +00001012#else
Damien Miller83b96782015-01-15 02:35:50 +11001013 r = chown(name, a.uid, a.gid);
djm@openbsd.org7d845f42015-01-14 13:54:13 +00001014#endif
1015 if (r == -1)
1016 status = errno_to_portable(errno);
1017 }
1018 }
1019 send_status(id, status);
1020}
Damien Miller7b28dc52000-09-05 13:34:53 +11001021
Ben Lindstrombba81212001-06-25 05:01:22 +00001022static void
Damien Miller6eaeebf2013-10-15 11:55:57 +11001023process_opendir(u_int32_t id)
Damien Miller7b28dc52000-09-05 13:34:53 +11001024{
1025 DIR *dirp = NULL;
1026 char *path;
djm@openbsd.org7d845f42015-01-14 13:54:13 +00001027 int r, handle, status = SSH2_FX_FAILURE;
Damien Miller7b28dc52000-09-05 13:34:53 +11001028
djm@openbsd.org7d845f42015-01-14 13:54:13 +00001029 if ((r = sshbuf_get_cstring(iqueue, &path, NULL)) != 0)
1030 fatal("%s: buffer error: %s", __func__, ssh_err(r));
1031
Damien Millerfef95ad2006-07-10 20:46:55 +10001032 debug3("request %u: opendir", id);
1033 logit("opendir \"%s\"", path);
Kevin Stevesef4eea92001-02-05 12:42:17 +00001034 dirp = opendir(path);
Damien Miller7b28dc52000-09-05 13:34:53 +11001035 if (dirp == NULL) {
1036 status = errno_to_portable(errno);
1037 } else {
Damien Millere9fc72e2013-10-15 12:14:12 +11001038 handle = handle_new(HANDLE_DIR, path, 0, 0, dirp);
Damien Miller7b28dc52000-09-05 13:34:53 +11001039 if (handle < 0) {
1040 closedir(dirp);
1041 } else {
1042 send_handle(id, handle);
Ben Lindstrom2f959b42001-01-11 06:20:23 +00001043 status = SSH2_FX_OK;
Damien Miller7b28dc52000-09-05 13:34:53 +11001044 }
Kevin Stevesef4eea92001-02-05 12:42:17 +00001045
Damien Miller7b28dc52000-09-05 13:34:53 +11001046 }
Ben Lindstrom2f959b42001-01-11 06:20:23 +00001047 if (status != SSH2_FX_OK)
Damien Miller7b28dc52000-09-05 13:34:53 +11001048 send_status(id, status);
Darren Tuckera627d422013-06-02 07:31:17 +10001049 free(path);
Damien Miller7b28dc52000-09-05 13:34:53 +11001050}
1051
Ben Lindstrombba81212001-06-25 05:01:22 +00001052static void
Damien Miller6eaeebf2013-10-15 11:55:57 +11001053process_readdir(u_int32_t id)
Damien Miller7b28dc52000-09-05 13:34:53 +11001054{
1055 DIR *dirp;
1056 struct dirent *dp;
1057 char *path;
djm@openbsd.org7d845f42015-01-14 13:54:13 +00001058 int r, handle;
Damien Miller7b28dc52000-09-05 13:34:53 +11001059
djm@openbsd.org7d845f42015-01-14 13:54:13 +00001060 if ((r = get_handle(iqueue, &handle)) != 0)
1061 fatal("%s: buffer error: %s", __func__, ssh_err(r));
1062
Damien Millerfef95ad2006-07-10 20:46:55 +10001063 debug("request %u: readdir \"%s\" (handle %d)", id,
1064 handle_to_name(handle), handle);
Damien Miller7b28dc52000-09-05 13:34:53 +11001065 dirp = handle_to_dir(handle);
1066 path = handle_to_name(handle);
1067 if (dirp == NULL || path == NULL) {
Ben Lindstrom2f959b42001-01-11 06:20:23 +00001068 send_status(id, SSH2_FX_FAILURE);
Damien Miller7b28dc52000-09-05 13:34:53 +11001069 } else {
Damien Miller7b28dc52000-09-05 13:34:53 +11001070 struct stat st;
deraadt@openbsd.org087266e2015-01-20 23:14:00 +00001071 char pathname[PATH_MAX];
Damien Miller7b28dc52000-09-05 13:34:53 +11001072 Stat *stats;
1073 int nstats = 10, count = 0, i;
Ben Lindstromb1f483f2002-06-23 21:27:18 +00001074
Damien Miller07d86be2006-03-26 14:19:21 +11001075 stats = xcalloc(nstats, sizeof(Stat));
Damien Miller7b28dc52000-09-05 13:34:53 +11001076 while ((dp = readdir(dirp)) != NULL) {
1077 if (count >= nstats) {
1078 nstats *= 2;
deraadt@openbsd.org657a5fb2015-04-24 01:36:00 +00001079 stats = xreallocarray(stats, nstats, sizeof(Stat));
Damien Miller7b28dc52000-09-05 13:34:53 +11001080 }
1081/* XXX OVERFLOW ? */
Ben Lindstrom95148e32001-08-06 21:30:53 +00001082 snprintf(pathname, sizeof pathname, "%s%s%s", path,
1083 strcmp(path, "/") ? "/" : "", dp->d_name);
deraadt@openbsd.org4d28fa72019-06-28 13:35:04 +00001084 if (lstat(pathname, &st) == -1)
Damien Miller7b28dc52000-09-05 13:34:53 +11001085 continue;
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001086 stat_to_attrib(&st, &(stats[count].attrib));
Damien Miller7b28dc52000-09-05 13:34:53 +11001087 stats[count].name = xstrdup(dp->d_name);
Darren Tucker2901e2d2010-01-13 22:44:06 +11001088 stats[count].long_name = ls_file(dp->d_name, &st, 0, 0);
Damien Miller7b28dc52000-09-05 13:34:53 +11001089 count++;
1090 /* send up to 100 entries in one message */
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001091 /* XXX check packet size instead */
Damien Miller7b28dc52000-09-05 13:34:53 +11001092 if (count == 100)
1093 break;
1094 }
Ben Lindstrom2f959b42001-01-11 06:20:23 +00001095 if (count > 0) {
1096 send_names(id, count, stats);
Damien Miller9f0f5c62001-12-21 14:45:46 +11001097 for (i = 0; i < count; i++) {
Darren Tuckera627d422013-06-02 07:31:17 +10001098 free(stats[i].name);
1099 free(stats[i].long_name);
Ben Lindstrom2f959b42001-01-11 06:20:23 +00001100 }
1101 } else {
1102 send_status(id, SSH2_FX_EOF);
Damien Miller7b28dc52000-09-05 13:34:53 +11001103 }
Darren Tuckera627d422013-06-02 07:31:17 +10001104 free(stats);
Damien Miller7b28dc52000-09-05 13:34:53 +11001105 }
1106}
1107
Ben Lindstrombba81212001-06-25 05:01:22 +00001108static void
Damien Miller6eaeebf2013-10-15 11:55:57 +11001109process_remove(u_int32_t id)
Damien Miller7b28dc52000-09-05 13:34:53 +11001110{
1111 char *name;
djm@openbsd.org7d845f42015-01-14 13:54:13 +00001112 int r, status = SSH2_FX_FAILURE;
Damien Miller7b28dc52000-09-05 13:34:53 +11001113
djm@openbsd.org7d845f42015-01-14 13:54:13 +00001114 if ((r = sshbuf_get_cstring(iqueue, &name, NULL)) != 0)
1115 fatal("%s: buffer error: %s", __func__, ssh_err(r));
1116
Damien Millerfef95ad2006-07-10 20:46:55 +10001117 debug3("request %u: remove", id);
1118 logit("remove name \"%s\"", name);
djm@openbsd.org7d845f42015-01-14 13:54:13 +00001119 r = unlink(name);
1120 status = (r == -1) ? errno_to_portable(errno) : SSH2_FX_OK;
Damien Miller7b28dc52000-09-05 13:34:53 +11001121 send_status(id, status);
Darren Tuckera627d422013-06-02 07:31:17 +10001122 free(name);
Damien Miller7b28dc52000-09-05 13:34:53 +11001123}
1124
Ben Lindstrombba81212001-06-25 05:01:22 +00001125static void
Damien Miller6eaeebf2013-10-15 11:55:57 +11001126process_mkdir(u_int32_t id)
Damien Miller7b28dc52000-09-05 13:34:53 +11001127{
djm@openbsd.org7d845f42015-01-14 13:54:13 +00001128 Attrib a;
Damien Miller7b28dc52000-09-05 13:34:53 +11001129 char *name;
djm@openbsd.org7d845f42015-01-14 13:54:13 +00001130 int r, mode, status = SSH2_FX_FAILURE;
Damien Miller7b28dc52000-09-05 13:34:53 +11001131
djm@openbsd.org7d845f42015-01-14 13:54:13 +00001132 if ((r = sshbuf_get_cstring(iqueue, &name, NULL)) != 0 ||
1133 (r = decode_attrib(iqueue, &a)) != 0)
1134 fatal("%s: buffer error: %s", __func__, ssh_err(r));
1135
1136 mode = (a.flags & SSH2_FILEXFER_ATTR_PERMISSIONS) ?
1137 a.perm & 07777 : 0777;
Damien Millerfef95ad2006-07-10 20:46:55 +10001138 debug3("request %u: mkdir", id);
1139 logit("mkdir name \"%s\" mode 0%o", name, mode);
djm@openbsd.org7d845f42015-01-14 13:54:13 +00001140 r = mkdir(name, mode);
1141 status = (r == -1) ? errno_to_portable(errno) : SSH2_FX_OK;
Damien Miller7b28dc52000-09-05 13:34:53 +11001142 send_status(id, status);
Darren Tuckera627d422013-06-02 07:31:17 +10001143 free(name);
Damien Miller7b28dc52000-09-05 13:34:53 +11001144}
1145
Ben Lindstrombba81212001-06-25 05:01:22 +00001146static void
Damien Miller6eaeebf2013-10-15 11:55:57 +11001147process_rmdir(u_int32_t id)
Damien Miller7b28dc52000-09-05 13:34:53 +11001148{
Damien Miller7b28dc52000-09-05 13:34:53 +11001149 char *name;
djm@openbsd.org7d845f42015-01-14 13:54:13 +00001150 int r, status;
Damien Miller7b28dc52000-09-05 13:34:53 +11001151
djm@openbsd.org7d845f42015-01-14 13:54:13 +00001152 if ((r = sshbuf_get_cstring(iqueue, &name, NULL)) != 0)
1153 fatal("%s: buffer error: %s", __func__, ssh_err(r));
1154
Damien Millerfef95ad2006-07-10 20:46:55 +10001155 debug3("request %u: rmdir", id);
1156 logit("rmdir name \"%s\"", name);
djm@openbsd.org7d845f42015-01-14 13:54:13 +00001157 r = rmdir(name);
1158 status = (r == -1) ? errno_to_portable(errno) : SSH2_FX_OK;
Damien Miller7b28dc52000-09-05 13:34:53 +11001159 send_status(id, status);
Darren Tuckera627d422013-06-02 07:31:17 +10001160 free(name);
Damien Miller7b28dc52000-09-05 13:34:53 +11001161}
1162
Ben Lindstrombba81212001-06-25 05:01:22 +00001163static void
Damien Miller6eaeebf2013-10-15 11:55:57 +11001164process_realpath(u_int32_t id)
Damien Miller7b28dc52000-09-05 13:34:53 +11001165{
deraadt@openbsd.org087266e2015-01-20 23:14:00 +00001166 char resolvedname[PATH_MAX];
Damien Miller7b28dc52000-09-05 13:34:53 +11001167 char *path;
djm@openbsd.org7d845f42015-01-14 13:54:13 +00001168 int r;
Damien Miller7b28dc52000-09-05 13:34:53 +11001169
djm@openbsd.org7d845f42015-01-14 13:54:13 +00001170 if ((r = sshbuf_get_cstring(iqueue, &path, NULL)) != 0)
1171 fatal("%s: buffer error: %s", __func__, ssh_err(r));
1172
Ben Lindstromfa1b3d02000-12-10 01:55:37 +00001173 if (path[0] == '\0') {
Darren Tuckera627d422013-06-02 07:31:17 +10001174 free(path);
Ben Lindstromfa1b3d02000-12-10 01:55:37 +00001175 path = xstrdup(".");
1176 }
Damien Millerfef95ad2006-07-10 20:46:55 +10001177 debug3("request %u: realpath", id);
1178 verbose("realpath \"%s\"", path);
djm@openbsd.org569b6502019-07-05 04:55:40 +00001179 if (sftp_realpath(path, resolvedname) == NULL) {
Damien Miller7b28dc52000-09-05 13:34:53 +11001180 send_status(id, errno_to_portable(errno));
1181 } else {
1182 Stat s;
1183 attrib_clear(&s.attrib);
1184 s.name = s.long_name = resolvedname;
1185 send_names(id, 1, &s);
1186 }
Darren Tuckera627d422013-06-02 07:31:17 +10001187 free(path);
Damien Miller7b28dc52000-09-05 13:34:53 +11001188}
1189
Ben Lindstrombba81212001-06-25 05:01:22 +00001190static void
Damien Miller6eaeebf2013-10-15 11:55:57 +11001191process_rename(u_int32_t id)
Damien Miller7b28dc52000-09-05 13:34:53 +11001192{
Damien Miller7b28dc52000-09-05 13:34:53 +11001193 char *oldpath, *newpath;
djm@openbsd.org7d845f42015-01-14 13:54:13 +00001194 int r, status;
Damien Millerb3207e82003-03-26 16:01:11 +11001195 struct stat sb;
Damien Miller7b28dc52000-09-05 13:34:53 +11001196
djm@openbsd.org7d845f42015-01-14 13:54:13 +00001197 if ((r = sshbuf_get_cstring(iqueue, &oldpath, NULL)) != 0 ||
1198 (r = sshbuf_get_cstring(iqueue, &newpath, NULL)) != 0)
1199 fatal("%s: buffer error: %s", __func__, ssh_err(r));
1200
Damien Millerfef95ad2006-07-10 20:46:55 +10001201 debug3("request %u: rename", id);
1202 logit("rename old \"%s\" new \"%s\"", oldpath, newpath);
Damien Millerb3207e82003-03-26 16:01:11 +11001203 status = SSH2_FX_FAILURE;
Damien Miller6eaeebf2013-10-15 11:55:57 +11001204 if (lstat(oldpath, &sb) == -1)
Damien Miller9e51a732003-02-24 11:58:44 +11001205 status = errno_to_portable(errno);
Damien Millerb3207e82003-03-26 16:01:11 +11001206 else if (S_ISREG(sb.st_mode)) {
1207 /* Race-free rename of regular files */
Darren Tuckeraedc1d62004-06-25 17:06:02 +10001208 if (link(oldpath, newpath) == -1) {
Damien Miller0e265512009-08-28 10:43:13 +10001209 if (errno == EOPNOTSUPP || errno == ENOSYS
Darren Tuckerf7fa7062008-07-04 14:10:19 +10001210#ifdef EXDEV
1211 || errno == EXDEV
1212#endif
Darren Tuckere59b5082004-06-28 16:01:19 +10001213#ifdef LINK_OPNOTSUPP_ERRNO
1214 || errno == LINK_OPNOTSUPP_ERRNO
1215#endif
1216 ) {
Darren Tuckeraedc1d62004-06-25 17:06:02 +10001217 struct stat st;
1218
1219 /*
1220 * fs doesn't support links, so fall back to
1221 * stat+rename. This is racy.
1222 */
1223 if (stat(newpath, &st) == -1) {
1224 if (rename(oldpath, newpath) == -1)
1225 status =
1226 errno_to_portable(errno);
1227 else
1228 status = SSH2_FX_OK;
1229 }
1230 } else {
1231 status = errno_to_portable(errno);
1232 }
1233 } else if (unlink(oldpath) == -1) {
Damien Millerb3207e82003-03-26 16:01:11 +11001234 status = errno_to_portable(errno);
1235 /* clean spare link */
1236 unlink(newpath);
1237 } else
1238 status = SSH2_FX_OK;
1239 } else if (stat(newpath, &sb) == -1) {
1240 if (rename(oldpath, newpath) == -1)
1241 status = errno_to_portable(errno);
1242 else
1243 status = SSH2_FX_OK;
1244 }
Damien Miller7b28dc52000-09-05 13:34:53 +11001245 send_status(id, status);
Darren Tuckera627d422013-06-02 07:31:17 +10001246 free(oldpath);
1247 free(newpath);
Damien Miller7b28dc52000-09-05 13:34:53 +11001248}
1249
Ben Lindstrombba81212001-06-25 05:01:22 +00001250static void
Damien Miller6eaeebf2013-10-15 11:55:57 +11001251process_readlink(u_int32_t id)
Damien Miller058316f2001-03-08 10:08:49 +11001252{
djm@openbsd.org7d845f42015-01-14 13:54:13 +00001253 int r, len;
deraadt@openbsd.org087266e2015-01-20 23:14:00 +00001254 char buf[PATH_MAX];
Damien Miller058316f2001-03-08 10:08:49 +11001255 char *path;
1256
djm@openbsd.org7d845f42015-01-14 13:54:13 +00001257 if ((r = sshbuf_get_cstring(iqueue, &path, NULL)) != 0)
1258 fatal("%s: buffer error: %s", __func__, ssh_err(r));
1259
Damien Millerfef95ad2006-07-10 20:46:55 +10001260 debug3("request %u: readlink", id);
1261 verbose("readlink \"%s\"", path);
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001262 if ((len = readlink(path, buf, sizeof(buf) - 1)) == -1)
Damien Miller058316f2001-03-08 10:08:49 +11001263 send_status(id, errno_to_portable(errno));
1264 else {
1265 Stat s;
Damien Miller9f0f5c62001-12-21 14:45:46 +11001266
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001267 buf[len] = '\0';
Damien Miller058316f2001-03-08 10:08:49 +11001268 attrib_clear(&s.attrib);
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001269 s.name = s.long_name = buf;
Damien Miller058316f2001-03-08 10:08:49 +11001270 send_names(id, 1, &s);
1271 }
Darren Tuckera627d422013-06-02 07:31:17 +10001272 free(path);
Damien Miller058316f2001-03-08 10:08:49 +11001273}
1274
Ben Lindstrombba81212001-06-25 05:01:22 +00001275static void
Damien Miller6eaeebf2013-10-15 11:55:57 +11001276process_symlink(u_int32_t id)
Damien Miller058316f2001-03-08 10:08:49 +11001277{
Damien Miller058316f2001-03-08 10:08:49 +11001278 char *oldpath, *newpath;
djm@openbsd.org7d845f42015-01-14 13:54:13 +00001279 int r, status;
Damien Miller058316f2001-03-08 10:08:49 +11001280
djm@openbsd.org7d845f42015-01-14 13:54:13 +00001281 if ((r = sshbuf_get_cstring(iqueue, &oldpath, NULL)) != 0 ||
1282 (r = sshbuf_get_cstring(iqueue, &newpath, NULL)) != 0)
1283 fatal("%s: buffer error: %s", __func__, ssh_err(r));
1284
Damien Millerfef95ad2006-07-10 20:46:55 +10001285 debug3("request %u: symlink", id);
1286 logit("symlink old \"%s\" new \"%s\"", oldpath, newpath);
Damien Miller9e51a732003-02-24 11:58:44 +11001287 /* this will fail if 'newpath' exists */
djm@openbsd.org7d845f42015-01-14 13:54:13 +00001288 r = symlink(oldpath, newpath);
1289 status = (r == -1) ? errno_to_portable(errno) : SSH2_FX_OK;
Damien Miller058316f2001-03-08 10:08:49 +11001290 send_status(id, status);
Darren Tuckera627d422013-06-02 07:31:17 +10001291 free(oldpath);
1292 free(newpath);
Damien Miller058316f2001-03-08 10:08:49 +11001293}
1294
Ben Lindstrombba81212001-06-25 05:01:22 +00001295static void
Damien Miller7c296612008-03-07 18:33:53 +11001296process_extended_posix_rename(u_int32_t id)
1297{
1298 char *oldpath, *newpath;
djm@openbsd.org7d845f42015-01-14 13:54:13 +00001299 int r, status;
Damien Miller7c296612008-03-07 18:33:53 +11001300
djm@openbsd.org7d845f42015-01-14 13:54:13 +00001301 if ((r = sshbuf_get_cstring(iqueue, &oldpath, NULL)) != 0 ||
1302 (r = sshbuf_get_cstring(iqueue, &newpath, NULL)) != 0)
1303 fatal("%s: buffer error: %s", __func__, ssh_err(r));
1304
Damien Miller7c296612008-03-07 18:33:53 +11001305 debug3("request %u: posix-rename", id);
1306 logit("posix-rename old \"%s\" new \"%s\"", oldpath, newpath);
djm@openbsd.org7d845f42015-01-14 13:54:13 +00001307 r = rename(oldpath, newpath);
1308 status = (r == -1) ? errno_to_portable(errno) : SSH2_FX_OK;
Darren Tuckerdb7bf822010-01-09 22:24:33 +11001309 send_status(id, status);
Darren Tuckera627d422013-06-02 07:31:17 +10001310 free(oldpath);
1311 free(newpath);
Damien Miller7c296612008-03-07 18:33:53 +11001312}
1313
1314static void
Damien Millerd671e5a2008-05-19 14:53:33 +10001315process_extended_statvfs(u_int32_t id)
1316{
1317 char *path;
1318 struct statvfs st;
djm@openbsd.org7d845f42015-01-14 13:54:13 +00001319 int r;
Damien Millerd671e5a2008-05-19 14:53:33 +10001320
djm@openbsd.org7d845f42015-01-14 13:54:13 +00001321 if ((r = sshbuf_get_cstring(iqueue, &path, NULL)) != 0)
1322 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Darren Tucker2aca1592014-01-19 15:25:34 +11001323 debug3("request %u: statvfs", id);
1324 logit("statvfs \"%s\"", path);
Damien Millerd671e5a2008-05-19 14:53:33 +10001325
1326 if (statvfs(path, &st) != 0)
1327 send_status(id, errno_to_portable(errno));
1328 else
1329 send_statvfs(id, &st);
Darren Tuckera627d422013-06-02 07:31:17 +10001330 free(path);
Damien Millerd671e5a2008-05-19 14:53:33 +10001331}
1332
1333static void
1334process_extended_fstatvfs(u_int32_t id)
1335{
djm@openbsd.org7d845f42015-01-14 13:54:13 +00001336 int r, handle, fd;
Damien Millerd671e5a2008-05-19 14:53:33 +10001337 struct statvfs st;
1338
djm@openbsd.org7d845f42015-01-14 13:54:13 +00001339 if ((r = get_handle(iqueue, &handle)) != 0)
1340 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Damien Millerd671e5a2008-05-19 14:53:33 +10001341 debug("request %u: fstatvfs \"%s\" (handle %u)",
1342 id, handle_to_name(handle), handle);
1343 if ((fd = handle_to_fd(handle)) < 0) {
1344 send_status(id, SSH2_FX_FAILURE);
1345 return;
1346 }
1347 if (fstatvfs(fd, &st) != 0)
1348 send_status(id, errno_to_portable(errno));
1349 else
1350 send_statvfs(id, &st);
1351}
1352
1353static void
Darren Tuckeraf1f9092010-12-05 09:02:47 +11001354process_extended_hardlink(u_int32_t id)
1355{
1356 char *oldpath, *newpath;
djm@openbsd.org7d845f42015-01-14 13:54:13 +00001357 int r, status;
Darren Tuckeraf1f9092010-12-05 09:02:47 +11001358
djm@openbsd.org7d845f42015-01-14 13:54:13 +00001359 if ((r = sshbuf_get_cstring(iqueue, &oldpath, NULL)) != 0 ||
1360 (r = sshbuf_get_cstring(iqueue, &newpath, NULL)) != 0)
1361 fatal("%s: buffer error: %s", __func__, ssh_err(r));
1362
Darren Tuckeraf1f9092010-12-05 09:02:47 +11001363 debug3("request %u: hardlink", id);
1364 logit("hardlink old \"%s\" new \"%s\"", oldpath, newpath);
djm@openbsd.org7d845f42015-01-14 13:54:13 +00001365 r = link(oldpath, newpath);
1366 status = (r == -1) ? errno_to_portable(errno) : SSH2_FX_OK;
Darren Tuckeraf1f9092010-12-05 09:02:47 +11001367 send_status(id, status);
Darren Tuckera627d422013-06-02 07:31:17 +10001368 free(oldpath);
1369 free(newpath);
Darren Tuckeraf1f9092010-12-05 09:02:47 +11001370}
1371
1372static void
Damien Millerf29238e2013-10-17 11:48:52 +11001373process_extended_fsync(u_int32_t id)
1374{
djm@openbsd.org7d845f42015-01-14 13:54:13 +00001375 int handle, fd, r, status = SSH2_FX_OP_UNSUPPORTED;
Damien Millerf29238e2013-10-17 11:48:52 +11001376
djm@openbsd.org7d845f42015-01-14 13:54:13 +00001377 if ((r = get_handle(iqueue, &handle)) != 0)
1378 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Damien Millerf29238e2013-10-17 11:48:52 +11001379 debug3("request %u: fsync (handle %u)", id, handle);
1380 verbose("fsync \"%s\"", handle_to_name(handle));
1381 if ((fd = handle_to_fd(handle)) < 0)
1382 status = SSH2_FX_NO_SUCH_FILE;
1383 else if (handle_is_ok(handle, HANDLE_FILE)) {
djm@openbsd.org7d845f42015-01-14 13:54:13 +00001384 r = fsync(fd);
1385 status = (r == -1) ? errno_to_portable(errno) : SSH2_FX_OK;
Damien Millerf29238e2013-10-17 11:48:52 +11001386 }
1387 send_status(id, status);
1388}
1389
1390static void
djm@openbsd.orgdbbc7e02019-01-16 23:22:10 +00001391process_extended_lsetstat(u_int32_t id)
1392{
1393 Attrib a;
1394 char *name;
1395 int r, status = SSH2_FX_OK;
1396
1397 if ((r = sshbuf_get_cstring(iqueue, &name, NULL)) != 0 ||
1398 (r = decode_attrib(iqueue, &a)) != 0)
1399 fatal("%s: buffer error: %s", __func__, ssh_err(r));
1400
1401 debug("request %u: lsetstat name \"%s\"", id, name);
1402 if (a.flags & SSH2_FILEXFER_ATTR_SIZE) {
1403 /* nonsensical for links */
1404 status = SSH2_FX_BAD_MESSAGE;
1405 goto out;
1406 }
1407 if (a.flags & SSH2_FILEXFER_ATTR_PERMISSIONS) {
1408 logit("set \"%s\" mode %04o", name, a.perm);
1409 r = fchmodat(AT_FDCWD, name,
1410 a.perm & 07777, AT_SYMLINK_NOFOLLOW);
1411 if (r == -1)
1412 status = errno_to_portable(errno);
1413 }
1414 if (a.flags & SSH2_FILEXFER_ATTR_ACMODTIME) {
1415 char buf[64];
1416 time_t t = a.mtime;
1417
1418 strftime(buf, sizeof(buf), "%Y%m%d-%H:%M:%S",
1419 localtime(&t));
1420 logit("set \"%s\" modtime %s", name, buf);
1421 r = utimensat(AT_FDCWD, name,
1422 attrib_to_ts(&a), AT_SYMLINK_NOFOLLOW);
1423 if (r == -1)
1424 status = errno_to_portable(errno);
1425 }
1426 if (a.flags & SSH2_FILEXFER_ATTR_UIDGID) {
1427 logit("set \"%s\" owner %lu group %lu", name,
1428 (u_long)a.uid, (u_long)a.gid);
1429 r = fchownat(AT_FDCWD, name, a.uid, a.gid,
1430 AT_SYMLINK_NOFOLLOW);
1431 if (r == -1)
1432 status = errno_to_portable(errno);
1433 }
1434 out:
1435 send_status(id, status);
1436 free(name);
1437}
1438
1439static void
Damien Miller6eaeebf2013-10-15 11:55:57 +11001440process_extended(u_int32_t id)
Ben Lindstrom2f959b42001-01-11 06:20:23 +00001441{
Ben Lindstrom2f959b42001-01-11 06:20:23 +00001442 char *request;
djm@openbsd.org7d845f42015-01-14 13:54:13 +00001443 int i, r;
Ben Lindstrom2f959b42001-01-11 06:20:23 +00001444
djm@openbsd.org7d845f42015-01-14 13:54:13 +00001445 if ((r = sshbuf_get_cstring(iqueue, &request, NULL)) != 0)
1446 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Damien Miller6eaeebf2013-10-15 11:55:57 +11001447 for (i = 0; extended_handlers[i].handler != NULL; i++) {
1448 if (strcmp(request, extended_handlers[i].ext_name) == 0) {
1449 if (!request_permitted(&extended_handlers[i]))
1450 send_status(id, SSH2_FX_PERMISSION_DENIED);
1451 else
1452 extended_handlers[i].handler(id);
1453 break;
1454 }
1455 }
1456 if (extended_handlers[i].handler == NULL) {
1457 error("Unknown extended request \"%.100s\"", request);
Damien Miller7c296612008-03-07 18:33:53 +11001458 send_status(id, SSH2_FX_OP_UNSUPPORTED); /* MUST */
Damien Miller6eaeebf2013-10-15 11:55:57 +11001459 }
Darren Tuckera627d422013-06-02 07:31:17 +10001460 free(request);
Ben Lindstrom2f959b42001-01-11 06:20:23 +00001461}
Damien Miller7b28dc52000-09-05 13:34:53 +11001462
1463/* stolen from ssh-agent */
1464
Ben Lindstrombba81212001-06-25 05:01:22 +00001465static void
Damien Miller7b28dc52000-09-05 13:34:53 +11001466process(void)
1467{
djm@openbsd.org7d845f42015-01-14 13:54:13 +00001468 u_int msg_len;
1469 u_int buf_len;
1470 u_int consumed;
1471 u_char type;
1472 const u_char *cp;
1473 int i, r;
Damien Miller6eaeebf2013-10-15 11:55:57 +11001474 u_int32_t id;
Damien Miller7b28dc52000-09-05 13:34:53 +11001475
djm@openbsd.org7d845f42015-01-14 13:54:13 +00001476 buf_len = sshbuf_len(iqueue);
Ben Lindstrom2c140472002-06-06 21:57:54 +00001477 if (buf_len < 5)
Damien Miller7b28dc52000-09-05 13:34:53 +11001478 return; /* Incomplete message. */
djm@openbsd.org7d845f42015-01-14 13:54:13 +00001479 cp = sshbuf_ptr(iqueue);
Damien Miller3f941882006-03-31 23:13:02 +11001480 msg_len = get_u32(cp);
Damien Miller54446182006-01-02 23:40:50 +11001481 if (msg_len > SFTP_MAX_MSG_LENGTH) {
Damien Millerfef95ad2006-07-10 20:46:55 +10001482 error("bad message from %s local user %s",
1483 client_addr, pw->pw_name);
Damien Millerdfc24252008-02-10 22:29:40 +11001484 sftp_server_cleanup_exit(11);
Damien Miller7b28dc52000-09-05 13:34:53 +11001485 }
Ben Lindstrom2c140472002-06-06 21:57:54 +00001486 if (buf_len < msg_len + 4)
Damien Miller7b28dc52000-09-05 13:34:53 +11001487 return;
djm@openbsd.org7d845f42015-01-14 13:54:13 +00001488 if ((r = sshbuf_consume(iqueue, 4)) != 0)
1489 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Ben Lindstrom2c140472002-06-06 21:57:54 +00001490 buf_len -= 4;
djm@openbsd.org7d845f42015-01-14 13:54:13 +00001491 if ((r = sshbuf_get_u8(iqueue, &type)) != 0)
1492 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Damien Miller6eaeebf2013-10-15 11:55:57 +11001493
Damien Miller7b28dc52000-09-05 13:34:53 +11001494 switch (type) {
Ben Lindstrom2f959b42001-01-11 06:20:23 +00001495 case SSH2_FXP_INIT:
Damien Miller7b28dc52000-09-05 13:34:53 +11001496 process_init();
Damien Miller6eaeebf2013-10-15 11:55:57 +11001497 init_done = 1;
Damien Miller058316f2001-03-08 10:08:49 +11001498 break;
Ben Lindstrom2f959b42001-01-11 06:20:23 +00001499 case SSH2_FXP_EXTENDED:
Damien Miller6eaeebf2013-10-15 11:55:57 +11001500 if (!init_done)
1501 fatal("Received extended request before init");
djm@openbsd.org7d845f42015-01-14 13:54:13 +00001502 if ((r = sshbuf_get_u32(iqueue, &id)) != 0)
1503 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Damien Miller6eaeebf2013-10-15 11:55:57 +11001504 process_extended(id);
Ben Lindstrom2f959b42001-01-11 06:20:23 +00001505 break;
Damien Miller7b28dc52000-09-05 13:34:53 +11001506 default:
Damien Miller6eaeebf2013-10-15 11:55:57 +11001507 if (!init_done)
1508 fatal("Received %u request before init", type);
djm@openbsd.org7d845f42015-01-14 13:54:13 +00001509 if ((r = sshbuf_get_u32(iqueue, &id)) != 0)
1510 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Damien Miller6eaeebf2013-10-15 11:55:57 +11001511 for (i = 0; handlers[i].handler != NULL; i++) {
1512 if (type == handlers[i].type) {
1513 if (!request_permitted(&handlers[i])) {
1514 send_status(id,
1515 SSH2_FX_PERMISSION_DENIED);
1516 } else {
1517 handlers[i].handler(id);
1518 }
1519 break;
1520 }
1521 }
1522 if (handlers[i].handler == NULL)
1523 error("Unknown message %u", type);
Damien Miller7b28dc52000-09-05 13:34:53 +11001524 }
Ben Lindstrom2c140472002-06-06 21:57:54 +00001525 /* discard the remaining bytes from the current packet */
djm@openbsd.org7d845f42015-01-14 13:54:13 +00001526 if (buf_len < sshbuf_len(iqueue)) {
Damien Millerdfc24252008-02-10 22:29:40 +11001527 error("iqueue grew unexpectedly");
1528 sftp_server_cleanup_exit(255);
1529 }
djm@openbsd.org7d845f42015-01-14 13:54:13 +00001530 consumed = buf_len - sshbuf_len(iqueue);
Damien Millerdfc24252008-02-10 22:29:40 +11001531 if (msg_len < consumed) {
Damien Miller6eaeebf2013-10-15 11:55:57 +11001532 error("msg_len %u < consumed %u", msg_len, consumed);
Damien Millerdfc24252008-02-10 22:29:40 +11001533 sftp_server_cleanup_exit(255);
1534 }
djm@openbsd.org7d845f42015-01-14 13:54:13 +00001535 if (msg_len > consumed &&
1536 (r = sshbuf_consume(iqueue, msg_len - consumed)) != 0)
1537 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Damien Miller7b28dc52000-09-05 13:34:53 +11001538}
1539
Damien Millerfef95ad2006-07-10 20:46:55 +10001540/* Cleanup handler that logs active handles upon normal exit */
1541void
Damien Millerdfc24252008-02-10 22:29:40 +11001542sftp_server_cleanup_exit(int i)
Damien Millerfef95ad2006-07-10 20:46:55 +10001543{
1544 if (pw != NULL && client_addr != NULL) {
1545 handle_log_exit();
1546 logit("session closed for local user %s from [%s]",
1547 pw->pw_name, client_addr);
1548 }
1549 _exit(i);
1550}
1551
1552static void
Damien Millerdfc24252008-02-10 22:29:40 +11001553sftp_server_usage(void)
Damien Millerfef95ad2006-07-10 20:46:55 +10001554{
1555 extern char *__progname;
1556
1557 fprintf(stderr,
Damien Milleraa7ad302013-01-09 15:58:21 +11001558 "usage: %s [-ehR] [-d start_directory] [-f log_facility] "
Damien Miller6efab272013-10-15 12:07:05 +11001559 "[-l log_level]\n\t[-P blacklisted_requests] "
1560 "[-p whitelisted_requests] [-u umask]\n"
1561 " %s -Q protocol_feature\n",
1562 __progname, __progname);
Damien Millerfef95ad2006-07-10 20:46:55 +10001563 exit(1);
1564}
1565
Damien Miller7b28dc52000-09-05 13:34:53 +11001566int
Damien Millerd8cb1f12008-02-10 22:40:12 +11001567sftp_server_main(int argc, char **argv, struct passwd *user_pw)
Damien Miller7b28dc52000-09-05 13:34:53 +11001568{
Ben Lindstromcb80bdf2001-03-05 07:06:12 +00001569 fd_set *rset, *wset;
djm@openbsd.org7d845f42015-01-14 13:54:13 +00001570 int i, r, in, out, max, ch, skipargs = 0, log_stderr = 0;
Ben Lindstromcb80bdf2001-03-05 07:06:12 +00001571 ssize_t len, olen, set_size;
Damien Millerfef95ad2006-07-10 20:46:55 +10001572 SyslogFacility log_facility = SYSLOG_FACILITY_AUTH;
djm@openbsd.org9c935dd2018-06-01 03:33:53 +00001573 char *cp, *homedir = NULL, uidstr[32], buf[4*4096];
Damien Miller07331212010-11-05 10:20:31 +11001574 long mask;
Damien Millerfef95ad2006-07-10 20:46:55 +10001575
Damien Millerfef95ad2006-07-10 20:46:55 +10001576 extern char *optarg;
1577 extern char *__progname;
Damien Miller7b28dc52000-09-05 13:34:53 +11001578
Damien Millerfef95ad2006-07-10 20:46:55 +10001579 __progname = ssh_get_progname(argv[0]);
1580 log_init(__progname, log_level, log_facility, log_stderr);
Ben Lindstromc7f4ccd2001-03-15 00:09:15 +00001581
Damien Miller502ab0e2013-01-09 15:57:36 +11001582 pw = pwcopy(user_pw);
1583
Damien Miller6eaeebf2013-10-15 11:55:57 +11001584 while (!skipargs && (ch = getopt(argc, argv,
1585 "d:f:l:P:p:Q:u:cehR")) != -1) {
Damien Millerfef95ad2006-07-10 20:46:55 +10001586 switch (ch) {
Damien Miller6eaeebf2013-10-15 11:55:57 +11001587 case 'Q':
1588 if (strcasecmp(optarg, "requests") != 0) {
1589 fprintf(stderr, "Invalid query type\n");
1590 exit(1);
1591 }
1592 for (i = 0; handlers[i].handler != NULL; i++)
1593 printf("%s\n", handlers[i].name);
1594 for (i = 0; extended_handlers[i].handler != NULL; i++)
1595 printf("%s\n", extended_handlers[i].name);
1596 exit(0);
1597 break;
Darren Tuckerdb7bf822010-01-09 22:24:33 +11001598 case 'R':
1599 readonly = 1;
1600 break;
Damien Millerfef95ad2006-07-10 20:46:55 +10001601 case 'c':
1602 /*
1603 * Ignore all arguments if we are invoked as a
Damien Millerd7834352006-08-05 12:39:39 +10001604 * shell using "sftp-server -c command"
Damien Millerfef95ad2006-07-10 20:46:55 +10001605 */
1606 skipargs = 1;
1607 break;
1608 case 'e':
1609 log_stderr = 1;
1610 break;
1611 case 'l':
1612 log_level = log_level_number(optarg);
1613 if (log_level == SYSLOG_LEVEL_NOT_SET)
1614 error("Invalid log level \"%s\"", optarg);
1615 break;
1616 case 'f':
1617 log_facility = log_facility_number(optarg);
Damien Miller35e18db2007-09-17 16:11:33 +10001618 if (log_facility == SYSLOG_FACILITY_NOT_SET)
Damien Millerfef95ad2006-07-10 20:46:55 +10001619 error("Invalid log facility \"%s\"", optarg);
1620 break;
Damien Miller502ab0e2013-01-09 15:57:36 +11001621 case 'd':
1622 cp = tilde_expand_filename(optarg, user_pw->pw_uid);
djm@openbsd.org9c935dd2018-06-01 03:33:53 +00001623 snprintf(uidstr, sizeof(uidstr), "%llu",
1624 (unsigned long long)pw->pw_uid);
Damien Miller502ab0e2013-01-09 15:57:36 +11001625 homedir = percent_expand(cp, "d", user_pw->pw_dir,
djm@openbsd.org9c935dd2018-06-01 03:33:53 +00001626 "u", user_pw->pw_name, "U", uidstr, (char *)NULL);
Damien Miller502ab0e2013-01-09 15:57:36 +11001627 free(cp);
1628 break;
Damien Miller6eaeebf2013-10-15 11:55:57 +11001629 case 'p':
1630 if (request_whitelist != NULL)
1631 fatal("Permitted requests already set");
1632 request_whitelist = xstrdup(optarg);
1633 break;
1634 case 'P':
1635 if (request_blacklist != NULL)
1636 fatal("Refused requests already set");
1637 request_blacklist = xstrdup(optarg);
1638 break;
Darren Tucker7dc48502009-10-07 08:44:42 +11001639 case 'u':
Damien Miller07331212010-11-05 10:20:31 +11001640 errno = 0;
1641 mask = strtol(optarg, &cp, 8);
1642 if (mask < 0 || mask > 0777 || *cp != '\0' ||
1643 cp == optarg || (mask == 0 && errno != 0))
1644 fatal("Invalid umask \"%s\"", optarg);
1645 (void)umask((mode_t)mask);
Darren Tucker7dc48502009-10-07 08:44:42 +11001646 break;
Damien Millerfef95ad2006-07-10 20:46:55 +10001647 case 'h':
1648 default:
Damien Millerdfc24252008-02-10 22:29:40 +11001649 sftp_server_usage();
Damien Millerfef95ad2006-07-10 20:46:55 +10001650 }
1651 }
1652
1653 log_init(__progname, log_level, log_facility, log_stderr);
1654
Damien Miller14928b72014-04-01 14:38:07 +11001655 /*
Darren Tucker0fb7f592016-06-09 16:23:07 +10001656 * On platforms where we can, avoid making /proc/self/{mem,maps}
Damien Miller14928b72014-04-01 14:38:07 +11001657 * available to the user so that sftp access doesn't automatically
1658 * imply arbitrary code execution access that will break
1659 * restricted configurations.
1660 */
Darren Tucker0fb7f592016-06-09 16:23:07 +10001661 platform_disable_tracing(1); /* strict */
Damien Miller14928b72014-04-01 14:38:07 +11001662
Damien Miller4626cba2016-01-08 14:24:56 +11001663 /* Drop any fine-grained privileges we don't need */
1664 platform_pledge_sftp_server();
1665
Damien Millerfef95ad2006-07-10 20:46:55 +10001666 if ((cp = getenv("SSH_CONNECTION")) != NULL) {
1667 client_addr = xstrdup(cp);
Damien Millerdfc24252008-02-10 22:29:40 +11001668 if ((cp = strchr(client_addr, ' ')) == NULL) {
1669 error("Malformed SSH_CONNECTION variable: \"%s\"",
Damien Millerfef95ad2006-07-10 20:46:55 +10001670 getenv("SSH_CONNECTION"));
Damien Millerdfc24252008-02-10 22:29:40 +11001671 sftp_server_cleanup_exit(255);
1672 }
Damien Millerfef95ad2006-07-10 20:46:55 +10001673 *cp = '\0';
1674 } else
1675 client_addr = xstrdup("UNKNOWN");
1676
Damien Millerfef95ad2006-07-10 20:46:55 +10001677 logit("session opened for local user %s from [%s]",
1678 pw->pw_name, client_addr);
1679
Darren Tuckeraaf51d22010-01-08 19:04:49 +11001680 in = STDIN_FILENO;
1681 out = STDOUT_FILENO;
Damien Miller7b28dc52000-09-05 13:34:53 +11001682
Damien Miller402b3312001-04-14 00:28:42 +10001683#ifdef HAVE_CYGWIN
1684 setmode(in, O_BINARY);
1685 setmode(out, O_BINARY);
1686#endif
1687
Damien Miller7b28dc52000-09-05 13:34:53 +11001688 max = 0;
1689 if (in > max)
1690 max = in;
1691 if (out > max)
1692 max = out;
1693
djm@openbsd.org7d845f42015-01-14 13:54:13 +00001694 if ((iqueue = sshbuf_new()) == NULL)
1695 fatal("%s: sshbuf_new failed", __func__);
1696 if ((oqueue = sshbuf_new()) == NULL)
1697 fatal("%s: sshbuf_new failed", __func__);
Damien Miller7b28dc52000-09-05 13:34:53 +11001698
logan@openbsd.orgdb6f8dc2015-11-16 06:13:04 +00001699 rset = xcalloc(howmany(max + 1, NFDBITS), sizeof(fd_mask));
1700 wset = xcalloc(howmany(max + 1, NFDBITS), sizeof(fd_mask));
Damien Miller7b28dc52000-09-05 13:34:53 +11001701
Damien Miller502ab0e2013-01-09 15:57:36 +11001702 if (homedir != NULL) {
1703 if (chdir(homedir) != 0) {
1704 error("chdir to \"%s\" failed: %s", homedir,
1705 strerror(errno));
1706 }
1707 }
1708
logan@openbsd.orgdb6f8dc2015-11-16 06:13:04 +00001709 set_size = howmany(max + 1, NFDBITS) * sizeof(fd_mask);
Ben Lindstromcb80bdf2001-03-05 07:06:12 +00001710 for (;;) {
1711 memset(rset, 0, set_size);
1712 memset(wset, 0, set_size);
1713
Darren Tuckere9405982007-05-20 15:09:04 +10001714 /*
1715 * Ensure that we can read a full buffer and handle
1716 * the worst-case length packet it can generate,
1717 * otherwise apply backpressure by stopping reads.
1718 */
djm@openbsd.org7d845f42015-01-14 13:54:13 +00001719 if ((r = sshbuf_check_reserve(iqueue, sizeof(buf))) == 0 &&
1720 (r = sshbuf_check_reserve(oqueue,
1721 SFTP_MAX_MSG_LENGTH)) == 0)
Darren Tuckere9405982007-05-20 15:09:04 +10001722 FD_SET(in, rset);
djm@openbsd.org7d845f42015-01-14 13:54:13 +00001723 else if (r != SSH_ERR_NO_BUFFER_SPACE)
1724 fatal("%s: sshbuf_check_reserve failed: %s",
1725 __func__, ssh_err(r));
Darren Tuckere9405982007-05-20 15:09:04 +10001726
djm@openbsd.org7d845f42015-01-14 13:54:13 +00001727 olen = sshbuf_len(oqueue);
Damien Miller7b28dc52000-09-05 13:34:53 +11001728 if (olen > 0)
Ben Lindstromcb80bdf2001-03-05 07:06:12 +00001729 FD_SET(out, wset);
Damien Miller7b28dc52000-09-05 13:34:53 +11001730
deraadt@openbsd.org4d28fa72019-06-28 13:35:04 +00001731 if (select(max+1, rset, wset, NULL, NULL) == -1) {
Damien Miller7b28dc52000-09-05 13:34:53 +11001732 if (errno == EINTR)
1733 continue;
Damien Millerfef95ad2006-07-10 20:46:55 +10001734 error("select: %s", strerror(errno));
Damien Millerdfc24252008-02-10 22:29:40 +11001735 sftp_server_cleanup_exit(2);
Damien Miller7b28dc52000-09-05 13:34:53 +11001736 }
1737
1738 /* copy stdin to iqueue */
Ben Lindstromcb80bdf2001-03-05 07:06:12 +00001739 if (FD_ISSET(in, rset)) {
Damien Miller7b28dc52000-09-05 13:34:53 +11001740 len = read(in, buf, sizeof buf);
1741 if (len == 0) {
1742 debug("read eof");
Damien Millerdfc24252008-02-10 22:29:40 +11001743 sftp_server_cleanup_exit(0);
deraadt@openbsd.org4d28fa72019-06-28 13:35:04 +00001744 } else if (len == -1) {
Damien Millerfef95ad2006-07-10 20:46:55 +10001745 error("read: %s", strerror(errno));
Damien Millerdfc24252008-02-10 22:29:40 +11001746 sftp_server_cleanup_exit(1);
djm@openbsd.org7d845f42015-01-14 13:54:13 +00001747 } else if ((r = sshbuf_put(iqueue, buf, len)) != 0) {
1748 fatal("%s: buffer error: %s",
1749 __func__, ssh_err(r));
Damien Miller7b28dc52000-09-05 13:34:53 +11001750 }
1751 }
1752 /* send oqueue to stdout */
Ben Lindstromcb80bdf2001-03-05 07:06:12 +00001753 if (FD_ISSET(out, wset)) {
djm@openbsd.org7d845f42015-01-14 13:54:13 +00001754 len = write(out, sshbuf_ptr(oqueue), olen);
deraadt@openbsd.org4d28fa72019-06-28 13:35:04 +00001755 if (len == -1) {
Damien Millerfef95ad2006-07-10 20:46:55 +10001756 error("write: %s", strerror(errno));
Damien Millerdfc24252008-02-10 22:29:40 +11001757 sftp_server_cleanup_exit(1);
djm@openbsd.org7d845f42015-01-14 13:54:13 +00001758 } else if ((r = sshbuf_consume(oqueue, len)) != 0) {
1759 fatal("%s: buffer error: %s",
1760 __func__, ssh_err(r));
Damien Miller7b28dc52000-09-05 13:34:53 +11001761 }
1762 }
Darren Tuckere9405982007-05-20 15:09:04 +10001763
1764 /*
1765 * Process requests from client if we can fit the results
1766 * into the output buffer, otherwise stop processing input
1767 * and let the output queue drain.
1768 */
djm@openbsd.org7d845f42015-01-14 13:54:13 +00001769 r = sshbuf_check_reserve(oqueue, SFTP_MAX_MSG_LENGTH);
1770 if (r == 0)
Darren Tuckere9405982007-05-20 15:09:04 +10001771 process();
djm@openbsd.org7d845f42015-01-14 13:54:13 +00001772 else if (r != SSH_ERR_NO_BUFFER_SPACE)
1773 fatal("%s: sshbuf_check_reserve: %s",
1774 __func__, ssh_err(r));
Damien Miller7b28dc52000-09-05 13:34:53 +11001775 }
1776}