]> git.proxmox.com Git - mirror_qemu.git/blame - tools/virtiofsd/passthrough_ll.c
virtiofsd: fv_create_listen_socket error path socket leak
[mirror_qemu.git] / tools / virtiofsd / passthrough_ll.c
CommitLineData
7c6b6602 1/*
7387863d
DDAG
2 * FUSE: Filesystem in Userspace
3 * Copyright (C) 2001-2007 Miklos Szeredi <miklos@szeredi.hu>
4 *
5 * This program can be distributed under the terms of the GNU GPLv2.
6 * See the file COPYING.
7 */
7c6b6602 8
7387863d 9/*
7c6b6602
DDAG
10 *
11 * This file system mirrors the existing file system hierarchy of the
12 * system, starting at the root file system. This is implemented by
13 * just "passing through" all requests to the corresponding user-space
14 * libc functions. In contrast to passthrough.c and passthrough_fh.c,
15 * this implementation uses the low-level API. Its performance should
16 * be the least bad among the three, but many operations are not
17 * implemented. In particular, it is not possible to remove files (or
18 * directories) because the code necessary to defer actual removal
19 * until the file is not opened anymore would make the example much
20 * more complicated.
21 *
22 * When writeback caching is enabled (-o writeback mount option), it
23 * is only possible to write to files for which the mounting user has
24 * read permissions. This is because the writeback cache requires the
25 * kernel to be able to issue read requests for all files (which the
26 * passthrough filesystem cannot satisfy if it can't read the file in
27 * the underlying filesystem).
28 *
29 * Compile with:
30 *
7387863d
DDAG
31 * gcc -Wall passthrough_ll.c `pkg-config fuse3 --cflags --libs` -o
32 * passthrough_ll
7c6b6602
DDAG
33 *
34 * ## Source code ##
35 * \include passthrough_ll.c
36 */
37
09863ebc 38#include "qemu/osdep.h"
50fb955a 39#include "qemu/timer.h"
f6f3573c 40#include "fuse_virtio.h"
d240314a 41#include "fuse_log.h"
09863ebc 42#include "fuse_lowlevel.h"
7c6b6602 43#include <assert.h>
2405f3c0 44#include <cap-ng.h>
7387863d 45#include <dirent.h>
7c6b6602 46#include <errno.h>
36f38469 47#include <glib.h>
7c6b6602 48#include <inttypes.h>
7387863d 49#include <limits.h>
7c6b6602 50#include <pthread.h>
7387863d
DDAG
51#include <stdbool.h>
52#include <stddef.h>
53#include <stdio.h>
54#include <stdlib.h>
55#include <string.h>
7c6b6602 56#include <sys/file.h>
5baa3b8e 57#include <sys/mount.h>
8e1d4ef2 58#include <sys/prctl.h>
01a6dc95 59#include <sys/resource.h>
929cfb7a 60#include <sys/syscall.h>
8e1d4ef2
SH
61#include <sys/types.h>
62#include <sys/wait.h>
7c6b6602 63#include <sys/xattr.h>
f185621d 64#include <syslog.h>
7387863d 65#include <unistd.h>
7c6b6602
DDAG
66
67#include "passthrough_helpers.h"
4f8bde99 68#include "seccomp.h"
7c6b6602 69
0e81414c
VG
70/* Keep track of inode posix locks for each owner. */
71struct lo_inode_plock {
72 uint64_t lock_owner;
73 int fd; /* fd for OFD locks */
74};
75
25c13572
SH
76struct lo_map_elem {
77 union {
92fb57b8 78 struct lo_inode *inode;
b39bce12 79 struct lo_dirp *dirp;
73b4d19d 80 int fd;
25c13572
SH
81 ssize_t freelist;
82 };
83 bool in_use;
84};
85
86/* Maps FUSE fh or ino values to internal objects */
87struct lo_map {
88 struct lo_map_elem *elems;
89 size_t nelems;
90 ssize_t freelist;
91};
92
bfc50a6e
MS
93struct lo_key {
94 ino_t ino;
95 dev_t dev;
96};
97
7c6b6602 98struct lo_inode {
7387863d 99 int fd;
c241aa94
SH
100
101 /*
102 * Atomic reference count for this object. The nlookup field holds a
103 * reference and release it when nlookup reaches 0.
104 */
105 gint refcount;
106
bfc50a6e 107 struct lo_key key;
1222f015
SH
108
109 /*
110 * This counter keeps the inode alive during the FUSE session.
111 * Incremented when the FUSE inode number is sent in a reply
112 * (FUSE_LOOKUP, FUSE_READDIRPLUS, etc). Decremented when an inode is
113 * released by requests like FUSE_FORGET, FUSE_RMDIR, FUSE_RENAME, etc.
114 *
115 * Note that this value is untrusted because the client can manipulate
116 * it arbitrarily using FUSE_FORGET requests.
117 *
118 * Protected by lo->mutex.
119 */
120 uint64_t nlookup;
121
92fb57b8 122 fuse_ino_t fuse_ino;
0e81414c
VG
123 pthread_mutex_t plock_mutex;
124 GHashTable *posix_locks; /* protected by lo_inode->plock_mutex */
c241aa94
SH
125
126 bool is_symlink;
7c6b6602
DDAG
127};
128
929cfb7a
VG
129struct lo_cred {
130 uid_t euid;
131 gid_t egid;
132};
133
7c6b6602 134enum {
230e777b
MS
135 CACHE_NONE,
136 CACHE_AUTO,
7387863d 137 CACHE_ALWAYS,
7c6b6602
DDAG
138};
139
140struct lo_data {
7387863d
DDAG
141 pthread_mutex_t mutex;
142 int debug;
5fe319a7 143 int norace;
7387863d
DDAG
144 int writeback;
145 int flock;
0e81414c 146 int posix_lock;
7387863d 147 int xattr;
eb68a33b 148 char *source;
7387863d
DDAG
149 double timeout;
150 int cache;
151 int timeout_set;
59aef494
MS
152 int readdirplus_set;
153 int readdirplus_clear;
bfc50a6e
MS
154 struct lo_inode root;
155 GHashTable *inodes; /* protected by lo->mutex */
92fb57b8 156 struct lo_map ino_map; /* protected by lo->mutex */
b39bce12 157 struct lo_map dirp_map; /* protected by lo->mutex */
73b4d19d 158 struct lo_map fd_map; /* protected by lo->mutex */
9f59d175
SH
159
160 /* An O_PATH file descriptor to /proc/self/fd/ */
161 int proc_self_fd;
7c6b6602
DDAG
162};
163
164static const struct fuse_opt lo_opts[] = {
7387863d
DDAG
165 { "writeback", offsetof(struct lo_data, writeback), 1 },
166 { "no_writeback", offsetof(struct lo_data, writeback), 0 },
167 { "source=%s", offsetof(struct lo_data, source), 0 },
168 { "flock", offsetof(struct lo_data, flock), 1 },
169 { "no_flock", offsetof(struct lo_data, flock), 0 },
0e81414c
VG
170 { "posix_lock", offsetof(struct lo_data, posix_lock), 1 },
171 { "no_posix_lock", offsetof(struct lo_data, posix_lock), 0 },
7387863d
DDAG
172 { "xattr", offsetof(struct lo_data, xattr), 1 },
173 { "no_xattr", offsetof(struct lo_data, xattr), 0 },
174 { "timeout=%lf", offsetof(struct lo_data, timeout), 0 },
175 { "timeout=", offsetof(struct lo_data, timeout_set), 1 },
230e777b
MS
176 { "cache=none", offsetof(struct lo_data, cache), CACHE_NONE },
177 { "cache=auto", offsetof(struct lo_data, cache), CACHE_AUTO },
7387863d 178 { "cache=always", offsetof(struct lo_data, cache), CACHE_ALWAYS },
5fe319a7 179 { "norace", offsetof(struct lo_data, norace), 1 },
59aef494
MS
180 { "readdirplus", offsetof(struct lo_data, readdirplus_set), 1 },
181 { "no_readdirplus", offsetof(struct lo_data, readdirplus_clear), 1 },
7387863d 182 FUSE_OPT_END
7c6b6602 183};
f185621d 184static bool use_syslog = false;
d240314a 185static int current_log_level;
95d27157
MS
186static void unref_inode_lolocked(struct lo_data *lo, struct lo_inode *inode,
187 uint64_t n);
5fe319a7 188
2405f3c0
DDAG
189static struct {
190 pthread_mutex_t mutex;
191 void *saved;
192} cap;
193/* That we loaded cap-ng in the current thread from the saved */
194static __thread bool cap_loaded = 0;
195
5fe319a7
MS
196static struct lo_inode *lo_find(struct lo_data *lo, struct stat *st);
197
25dae28c
SH
198static int is_dot_or_dotdot(const char *name)
199{
200 return name[0] == '.' &&
201 (name[1] == '\0' || (name[1] == '.' && name[2] == '\0'));
202}
203
204/* Is `path` a single path component that is not "." or ".."? */
205static int is_safe_path_component(const char *path)
206{
207 if (strchr(path, '/')) {
208 return 0;
209 }
210
211 return !is_dot_or_dotdot(path);
212}
5fe319a7 213
7c6b6602
DDAG
214static struct lo_data *lo_data(fuse_req_t req)
215{
7387863d 216 return (struct lo_data *)fuse_req_userdata(req);
7c6b6602
DDAG
217}
218
2405f3c0
DDAG
219/*
220 * Load capng's state from our saved state if the current thread
221 * hadn't previously been loaded.
222 * returns 0 on success
223 */
224static int load_capng(void)
225{
226 if (!cap_loaded) {
227 pthread_mutex_lock(&cap.mutex);
228 capng_restore_state(&cap.saved);
229 /*
230 * restore_state free's the saved copy
231 * so make another.
232 */
233 cap.saved = capng_save_state();
234 if (!cap.saved) {
235 fuse_log(FUSE_LOG_ERR, "capng_save_state (thread)\n");
236 return -EINVAL;
237 }
238 pthread_mutex_unlock(&cap.mutex);
239
240 /*
241 * We want to use the loaded state for our pid,
242 * not the original
243 */
244 capng_setpid(syscall(SYS_gettid));
245 cap_loaded = true;
246 }
247 return 0;
248}
249
ee884652
VG
250/*
251 * Helpers for dropping and regaining effective capabilities. Returns 0
252 * on success, error otherwise
253 */
254static int drop_effective_cap(const char *cap_name, bool *cap_dropped)
255{
256 int cap, ret;
257
258 cap = capng_name_to_capability(cap_name);
259 if (cap < 0) {
260 ret = errno;
261 fuse_log(FUSE_LOG_ERR, "capng_name_to_capability(%s) failed:%s\n",
262 cap_name, strerror(errno));
263 goto out;
264 }
265
266 if (load_capng()) {
267 ret = errno;
268 fuse_log(FUSE_LOG_ERR, "load_capng() failed\n");
269 goto out;
270 }
271
272 /* We dont have this capability in effective set already. */
273 if (!capng_have_capability(CAPNG_EFFECTIVE, cap)) {
274 ret = 0;
275 goto out;
276 }
277
278 if (capng_update(CAPNG_DROP, CAPNG_EFFECTIVE, cap)) {
279 ret = errno;
280 fuse_log(FUSE_LOG_ERR, "capng_update(DROP,) failed\n");
281 goto out;
282 }
283
284 if (capng_apply(CAPNG_SELECT_CAPS)) {
285 ret = errno;
286 fuse_log(FUSE_LOG_ERR, "drop:capng_apply() failed\n");
287 goto out;
288 }
289
290 ret = 0;
291 if (cap_dropped) {
292 *cap_dropped = true;
293 }
294
295out:
296 return ret;
297}
298
299static int gain_effective_cap(const char *cap_name)
300{
301 int cap;
302 int ret = 0;
303
304 cap = capng_name_to_capability(cap_name);
305 if (cap < 0) {
306 ret = errno;
307 fuse_log(FUSE_LOG_ERR, "capng_name_to_capability(%s) failed:%s\n",
308 cap_name, strerror(errno));
309 goto out;
310 }
311
312 if (load_capng()) {
313 ret = errno;
314 fuse_log(FUSE_LOG_ERR, "load_capng() failed\n");
315 goto out;
316 }
317
318 if (capng_update(CAPNG_ADD, CAPNG_EFFECTIVE, cap)) {
319 ret = errno;
320 fuse_log(FUSE_LOG_ERR, "capng_update(ADD,) failed\n");
321 goto out;
322 }
323
324 if (capng_apply(CAPNG_SELECT_CAPS)) {
325 ret = errno;
326 fuse_log(FUSE_LOG_ERR, "gain:capng_apply() failed\n");
327 goto out;
328 }
329 ret = 0;
330
331out:
332 return ret;
333}
334
92fb57b8 335static void lo_map_init(struct lo_map *map)
25c13572
SH
336{
337 map->elems = NULL;
338 map->nelems = 0;
339 map->freelist = -1;
340}
341
92fb57b8 342static void lo_map_destroy(struct lo_map *map)
25c13572
SH
343{
344 free(map->elems);
345}
346
347static int lo_map_grow(struct lo_map *map, size_t new_nelems)
348{
349 struct lo_map_elem *new_elems;
350 size_t i;
351
352 if (new_nelems <= map->nelems) {
353 return 1;
354 }
355
356 new_elems = realloc(map->elems, sizeof(map->elems[0]) * new_nelems);
357 if (!new_elems) {
358 return 0;
359 }
360
361 for (i = map->nelems; i < new_nelems; i++) {
362 new_elems[i].freelist = i + 1;
363 new_elems[i].in_use = false;
364 }
365 new_elems[new_nelems - 1].freelist = -1;
366
367 map->elems = new_elems;
368 map->freelist = map->nelems;
369 map->nelems = new_nelems;
370 return 1;
371}
372
92fb57b8 373static struct lo_map_elem *lo_map_alloc_elem(struct lo_map *map)
25c13572
SH
374{
375 struct lo_map_elem *elem;
376
377 if (map->freelist == -1 && !lo_map_grow(map, map->nelems + 256)) {
378 return NULL;
379 }
380
381 elem = &map->elems[map->freelist];
382 map->freelist = elem->freelist;
383
384 elem->in_use = true;
385
386 return elem;
387}
388
92fb57b8 389static struct lo_map_elem *lo_map_reserve(struct lo_map *map, size_t key)
25c13572
SH
390{
391 ssize_t *prev;
392
393 if (!lo_map_grow(map, key + 1)) {
394 return NULL;
395 }
396
397 for (prev = &map->freelist; *prev != -1;
398 prev = &map->elems[*prev].freelist) {
399 if (*prev == key) {
400 struct lo_map_elem *elem = &map->elems[key];
401
402 *prev = elem->freelist;
403 elem->in_use = true;
404 return elem;
405 }
406 }
407 return NULL;
408}
409
92fb57b8 410static struct lo_map_elem *lo_map_get(struct lo_map *map, size_t key)
25c13572
SH
411{
412 if (key >= map->nelems) {
413 return NULL;
414 }
415 if (!map->elems[key].in_use) {
416 return NULL;
417 }
418 return &map->elems[key];
419}
420
92fb57b8 421static void lo_map_remove(struct lo_map *map, size_t key)
25c13572
SH
422{
423 struct lo_map_elem *elem;
424
425 if (key >= map->nelems) {
426 return;
427 }
428
429 elem = &map->elems[key];
430 if (!elem->in_use) {
431 return;
432 }
433
434 elem->in_use = false;
435
436 elem->freelist = map->freelist;
437 map->freelist = key;
438}
439
73b4d19d
SH
440/* Assumes lo->mutex is held */
441static ssize_t lo_add_fd_mapping(fuse_req_t req, int fd)
442{
443 struct lo_map_elem *elem;
444
445 elem = lo_map_alloc_elem(&lo_data(req)->fd_map);
446 if (!elem) {
447 return -1;
448 }
449
450 elem->fd = fd;
451 return elem - lo_data(req)->fd_map.elems;
452}
453
b39bce12
SH
454/* Assumes lo->mutex is held */
455static ssize_t lo_add_dirp_mapping(fuse_req_t req, struct lo_dirp *dirp)
456{
457 struct lo_map_elem *elem;
458
459 elem = lo_map_alloc_elem(&lo_data(req)->dirp_map);
460 if (!elem) {
461 return -1;
462 }
463
464 elem->dirp = dirp;
465 return elem - lo_data(req)->dirp_map.elems;
466}
467
92fb57b8
SH
468/* Assumes lo->mutex is held */
469static ssize_t lo_add_inode_mapping(fuse_req_t req, struct lo_inode *inode)
470{
471 struct lo_map_elem *elem;
472
473 elem = lo_map_alloc_elem(&lo_data(req)->ino_map);
474 if (!elem) {
475 return -1;
476 }
477
478 elem->inode = inode;
479 return elem - lo_data(req)->ino_map.elems;
480}
481
c241aa94
SH
482static void lo_inode_put(struct lo_data *lo, struct lo_inode **inodep)
483{
484 struct lo_inode *inode = *inodep;
485
486 if (!inode) {
487 return;
488 }
489
490 *inodep = NULL;
491
492 if (g_atomic_int_dec_and_test(&inode->refcount)) {
493 close(inode->fd);
494 free(inode);
495 }
496}
497
498/* Caller must release refcount using lo_inode_put() */
7c6b6602
DDAG
499static struct lo_inode *lo_inode(fuse_req_t req, fuse_ino_t ino)
500{
92fb57b8
SH
501 struct lo_data *lo = lo_data(req);
502 struct lo_map_elem *elem;
503
504 pthread_mutex_lock(&lo->mutex);
505 elem = lo_map_get(&lo->ino_map, ino);
c241aa94
SH
506 if (elem) {
507 g_atomic_int_inc(&elem->inode->refcount);
508 }
92fb57b8
SH
509 pthread_mutex_unlock(&lo->mutex);
510
511 if (!elem) {
512 return NULL;
7387863d 513 }
92fb57b8
SH
514
515 return elem->inode;
7c6b6602
DDAG
516}
517
c241aa94
SH
518/*
519 * TODO Remove this helper and force callers to hold an inode refcount until
520 * they are done with the fd. This will be done in a later patch to make
521 * review easier.
522 */
7c6b6602
DDAG
523static int lo_fd(fuse_req_t req, fuse_ino_t ino)
524{
92fb57b8 525 struct lo_inode *inode = lo_inode(req, ino);
c241aa94
SH
526 int fd;
527
528 if (!inode) {
529 return -1;
530 }
531
532 fd = inode->fd;
533 lo_inode_put(lo_data(req), &inode);
534 return fd;
7c6b6602
DDAG
535}
536
7387863d 537static void lo_init(void *userdata, struct fuse_conn_info *conn)
7c6b6602 538{
7387863d
DDAG
539 struct lo_data *lo = (struct lo_data *)userdata;
540
541 if (conn->capable & FUSE_CAP_EXPORT_SUPPORT) {
542 conn->want |= FUSE_CAP_EXPORT_SUPPORT;
543 }
544
545 if (lo->writeback && conn->capable & FUSE_CAP_WRITEBACK_CACHE) {
d240314a 546 fuse_log(FUSE_LOG_DEBUG, "lo_init: activating writeback\n");
7387863d
DDAG
547 conn->want |= FUSE_CAP_WRITEBACK_CACHE;
548 }
e468d4af
PT
549 if (conn->capable & FUSE_CAP_FLOCK_LOCKS) {
550 if (lo->flock) {
551 fuse_log(FUSE_LOG_DEBUG, "lo_init: activating flock locks\n");
552 conn->want |= FUSE_CAP_FLOCK_LOCKS;
553 } else {
554 fuse_log(FUSE_LOG_DEBUG, "lo_init: disabling flock locks\n");
555 conn->want &= ~FUSE_CAP_FLOCK_LOCKS;
556 }
7387863d 557 }
0e81414c
VG
558
559 if (conn->capable & FUSE_CAP_POSIX_LOCKS) {
560 if (lo->posix_lock) {
561 fuse_log(FUSE_LOG_DEBUG, "lo_init: activating posix locks\n");
562 conn->want |= FUSE_CAP_POSIX_LOCKS;
563 } else {
564 fuse_log(FUSE_LOG_DEBUG, "lo_init: disabling posix locks\n");
565 conn->want &= ~FUSE_CAP_POSIX_LOCKS;
566 }
567 }
568
230e777b 569 if ((lo->cache == CACHE_NONE && !lo->readdirplus_set) ||
59aef494 570 lo->readdirplus_clear) {
ddcbabcb
MS
571 fuse_log(FUSE_LOG_DEBUG, "lo_init: disabling readdirplus\n");
572 conn->want &= ~FUSE_CAP_READDIRPLUS;
573 }
7c6b6602
DDAG
574}
575
576static void lo_getattr(fuse_req_t req, fuse_ino_t ino,
7387863d 577 struct fuse_file_info *fi)
7c6b6602 578{
7387863d
DDAG
579 int res;
580 struct stat buf;
581 struct lo_data *lo = lo_data(req);
7c6b6602 582
7387863d 583 (void)fi;
7c6b6602 584
7387863d
DDAG
585 res =
586 fstatat(lo_fd(req, ino), "", &buf, AT_EMPTY_PATH | AT_SYMLINK_NOFOLLOW);
587 if (res == -1) {
588 return (void)fuse_reply_err(req, errno);
589 }
7c6b6602 590
7387863d 591 fuse_reply_attr(req, &buf, lo->timeout);
7c6b6602
DDAG
592}
593
c241aa94
SH
594/*
595 * Increments parent->nlookup and caller must release refcount using
596 * lo_inode_put(&parent).
597 */
5fe319a7
MS
598static int lo_parent_and_name(struct lo_data *lo, struct lo_inode *inode,
599 char path[PATH_MAX], struct lo_inode **parent)
7c6b6602 600{
7387863d 601 char procname[64];
5fe319a7
MS
602 char *last;
603 struct stat stat;
604 struct lo_inode *p;
605 int retries = 2;
606 int res;
607
608retry:
9f59d175 609 sprintf(procname, "%i", inode->fd);
5fe319a7 610
9f59d175 611 res = readlinkat(lo->proc_self_fd, procname, path, PATH_MAX);
5fe319a7
MS
612 if (res < 0) {
613 fuse_log(FUSE_LOG_WARNING, "%s: readlink failed: %m\n", __func__);
614 goto fail_noretry;
615 }
616
617 if (res >= PATH_MAX) {
618 fuse_log(FUSE_LOG_WARNING, "%s: readlink overflowed\n", __func__);
619 goto fail_noretry;
620 }
621 path[res] = '\0';
622
623 last = strrchr(path, '/');
624 if (last == NULL) {
625 /* Shouldn't happen */
626 fuse_log(
627 FUSE_LOG_WARNING,
628 "%s: INTERNAL ERROR: bad path read from proc\n", __func__);
629 goto fail_noretry;
630 }
631 if (last == path) {
632 p = &lo->root;
633 pthread_mutex_lock(&lo->mutex);
1222f015 634 p->nlookup++;
c241aa94 635 g_atomic_int_inc(&p->refcount);
5fe319a7
MS
636 pthread_mutex_unlock(&lo->mutex);
637 } else {
638 *last = '\0';
639 res = fstatat(AT_FDCWD, last == path ? "/" : path, &stat, 0);
640 if (res == -1) {
641 if (!retries) {
642 fuse_log(FUSE_LOG_WARNING,
643 "%s: failed to stat parent: %m\n", __func__);
644 }
645 goto fail;
646 }
647 p = lo_find(lo, &stat);
648 if (p == NULL) {
649 if (!retries) {
650 fuse_log(FUSE_LOG_WARNING,
651 "%s: failed to find parent\n", __func__);
652 }
653 goto fail;
654 }
655 }
656 last++;
657 res = fstatat(p->fd, last, &stat, AT_SYMLINK_NOFOLLOW);
658 if (res == -1) {
659 if (!retries) {
660 fuse_log(FUSE_LOG_WARNING,
661 "%s: failed to stat last\n", __func__);
662 }
663 goto fail_unref;
664 }
bfc50a6e 665 if (stat.st_dev != inode->key.dev || stat.st_ino != inode->key.ino) {
5fe319a7
MS
666 if (!retries) {
667 fuse_log(FUSE_LOG_WARNING,
668 "%s: failed to match last\n", __func__);
669 }
670 goto fail_unref;
671 }
672 *parent = p;
673 memmove(path, last, strlen(last) + 1);
674
675 return 0;
676
677fail_unref:
95d27157 678 unref_inode_lolocked(lo, p, 1);
c241aa94 679 lo_inode_put(lo, &p);
5fe319a7
MS
680fail:
681 if (retries) {
682 retries--;
683 goto retry;
684 }
685fail_noretry:
686 errno = EIO;
687 return -1;
688}
689
690static int utimensat_empty(struct lo_data *lo, struct lo_inode *inode,
691 const struct timespec *tv)
692{
693 int res;
694 struct lo_inode *parent;
695 char path[PATH_MAX];
7387863d
DDAG
696
697 if (inode->is_symlink) {
5fe319a7 698 res = utimensat(inode->fd, "", tv, AT_EMPTY_PATH);
7387863d
DDAG
699 if (res == -1 && errno == EINVAL) {
700 /* Sorry, no race free way to set times on symlink. */
5fe319a7
MS
701 if (lo->norace) {
702 errno = EPERM;
703 } else {
704 goto fallback;
705 }
7387863d
DDAG
706 }
707 return res;
708 }
9f59d175 709 sprintf(path, "%i", inode->fd);
5fe319a7 710
9f59d175 711 return utimensat(lo->proc_self_fd, path, tv, 0);
7387863d 712
5fe319a7
MS
713fallback:
714 res = lo_parent_and_name(lo, inode, path, &parent);
715 if (res != -1) {
716 res = utimensat(parent->fd, path, tv, AT_SYMLINK_NOFOLLOW);
95d27157 717 unref_inode_lolocked(lo, parent, 1);
c241aa94 718 lo_inode_put(lo, &parent);
5fe319a7
MS
719 }
720
721 return res;
7c6b6602
DDAG
722}
723
73b4d19d
SH
724static int lo_fi_fd(fuse_req_t req, struct fuse_file_info *fi)
725{
726 struct lo_data *lo = lo_data(req);
727 struct lo_map_elem *elem;
728
729 pthread_mutex_lock(&lo->mutex);
730 elem = lo_map_get(&lo->fd_map, fi->fh);
731 pthread_mutex_unlock(&lo->mutex);
732
733 if (!elem) {
734 return -1;
735 }
736
737 return elem->fd;
738}
739
7c6b6602 740static void lo_setattr(fuse_req_t req, fuse_ino_t ino, struct stat *attr,
7387863d 741 int valid, struct fuse_file_info *fi)
7c6b6602 742{
7387863d
DDAG
743 int saverr;
744 char procname[64];
5fe319a7 745 struct lo_data *lo = lo_data(req);
92fb57b8
SH
746 struct lo_inode *inode;
747 int ifd;
7387863d 748 int res;
73b4d19d 749 int fd;
7387863d 750
92fb57b8
SH
751 inode = lo_inode(req, ino);
752 if (!inode) {
753 fuse_reply_err(req, EBADF);
754 return;
755 }
756
757 ifd = inode->fd;
758
73b4d19d
SH
759 /* If fi->fh is invalid we'll report EBADF later */
760 if (fi) {
761 fd = lo_fi_fd(req, fi);
762 }
763
7387863d
DDAG
764 if (valid & FUSE_SET_ATTR_MODE) {
765 if (fi) {
73b4d19d 766 res = fchmod(fd, attr->st_mode);
7387863d 767 } else {
9f59d175
SH
768 sprintf(procname, "%i", ifd);
769 res = fchmodat(lo->proc_self_fd, procname, attr->st_mode, 0);
7387863d
DDAG
770 }
771 if (res == -1) {
772 goto out_err;
773 }
774 }
775 if (valid & (FUSE_SET_ATTR_UID | FUSE_SET_ATTR_GID)) {
776 uid_t uid = (valid & FUSE_SET_ATTR_UID) ? attr->st_uid : (uid_t)-1;
777 gid_t gid = (valid & FUSE_SET_ATTR_GID) ? attr->st_gid : (gid_t)-1;
778
779 res = fchownat(ifd, "", uid, gid, AT_EMPTY_PATH | AT_SYMLINK_NOFOLLOW);
780 if (res == -1) {
781 goto out_err;
782 }
783 }
784 if (valid & FUSE_SET_ATTR_SIZE) {
9f59d175
SH
785 int truncfd;
786
7387863d 787 if (fi) {
9f59d175 788 truncfd = fd;
7387863d 789 } else {
9f59d175
SH
790 sprintf(procname, "%i", ifd);
791 truncfd = openat(lo->proc_self_fd, procname, O_RDWR);
792 if (truncfd < 0) {
793 goto out_err;
794 }
795 }
796
797 res = ftruncate(truncfd, attr->st_size);
798 if (!fi) {
799 saverr = errno;
800 close(truncfd);
801 errno = saverr;
7387863d
DDAG
802 }
803 if (res == -1) {
804 goto out_err;
805 }
806 }
807 if (valid & (FUSE_SET_ATTR_ATIME | FUSE_SET_ATTR_MTIME)) {
808 struct timespec tv[2];
809
810 tv[0].tv_sec = 0;
811 tv[1].tv_sec = 0;
812 tv[0].tv_nsec = UTIME_OMIT;
813 tv[1].tv_nsec = UTIME_OMIT;
814
815 if (valid & FUSE_SET_ATTR_ATIME_NOW) {
816 tv[0].tv_nsec = UTIME_NOW;
817 } else if (valid & FUSE_SET_ATTR_ATIME) {
818 tv[0] = attr->st_atim;
819 }
820
821 if (valid & FUSE_SET_ATTR_MTIME_NOW) {
822 tv[1].tv_nsec = UTIME_NOW;
823 } else if (valid & FUSE_SET_ATTR_MTIME) {
824 tv[1] = attr->st_mtim;
825 }
826
827 if (fi) {
73b4d19d 828 res = futimens(fd, tv);
7387863d 829 } else {
5fe319a7 830 res = utimensat_empty(lo, inode, tv);
7387863d
DDAG
831 }
832 if (res == -1) {
833 goto out_err;
834 }
835 }
c241aa94 836 lo_inode_put(lo, &inode);
7387863d
DDAG
837
838 return lo_getattr(req, ino, fi);
7c6b6602
DDAG
839
840out_err:
7387863d 841 saverr = errno;
c241aa94 842 lo_inode_put(lo, &inode);
7387863d 843 fuse_reply_err(req, saverr);
7c6b6602
DDAG
844}
845
846static struct lo_inode *lo_find(struct lo_data *lo, struct stat *st)
847{
7387863d 848 struct lo_inode *p;
bfc50a6e
MS
849 struct lo_key key = {
850 .ino = st->st_ino,
851 .dev = st->st_dev,
852 };
7387863d
DDAG
853
854 pthread_mutex_lock(&lo->mutex);
bfc50a6e
MS
855 p = g_hash_table_lookup(lo->inodes, &key);
856 if (p) {
1222f015
SH
857 assert(p->nlookup > 0);
858 p->nlookup++;
c241aa94 859 g_atomic_int_inc(&p->refcount);
7387863d
DDAG
860 }
861 pthread_mutex_unlock(&lo->mutex);
bfc50a6e
MS
862
863 return p;
7c6b6602
DDAG
864}
865
0e81414c
VG
866/* value_destroy_func for posix_locks GHashTable */
867static void posix_locks_value_destroy(gpointer data)
868{
869 struct lo_inode_plock *plock = data;
870
871 /*
872 * We had used open() for locks and had only one fd. So
873 * closing this fd should release all OFD locks.
874 */
875 close(plock->fd);
876 free(plock);
877}
878
c241aa94
SH
879/*
880 * Increments nlookup and caller must release refcount using
881 * lo_inode_put(&parent).
882 */
7c6b6602 883static int lo_do_lookup(fuse_req_t req, fuse_ino_t parent, const char *name,
7387863d 884 struct fuse_entry_param *e)
7c6b6602 885{
7387863d
DDAG
886 int newfd;
887 int res;
888 int saverr;
889 struct lo_data *lo = lo_data(req);
c241aa94
SH
890 struct lo_inode *inode = NULL;
891 struct lo_inode *dir = lo_inode(req, parent);
7387863d 892
9de4fab5
MS
893 /*
894 * name_to_handle_at() and open_by_handle_at() can reach here with fuse
895 * mount point in guest, but we don't have its inode info in the
896 * ino_map.
897 */
898 if (!dir) {
899 return ENOENT;
900 }
901
7387863d
DDAG
902 memset(e, 0, sizeof(*e));
903 e->attr_timeout = lo->timeout;
904 e->entry_timeout = lo->timeout;
905
854684bc
SH
906 /* Do not allow escaping root directory */
907 if (dir == &lo->root && strcmp(name, "..") == 0) {
908 name = ".";
909 }
910
9de4fab5 911 newfd = openat(dir->fd, name, O_PATH | O_NOFOLLOW);
7387863d
DDAG
912 if (newfd == -1) {
913 goto out_err;
914 }
915
916 res = fstatat(newfd, "", &e->attr, AT_EMPTY_PATH | AT_SYMLINK_NOFOLLOW);
917 if (res == -1) {
918 goto out_err;
919 }
920
9de4fab5 921 inode = lo_find(lo, &e->attr);
7387863d
DDAG
922 if (inode) {
923 close(newfd);
924 newfd = -1;
925 } else {
7387863d
DDAG
926 inode = calloc(1, sizeof(struct lo_inode));
927 if (!inode) {
928 goto out_err;
929 }
930
931 inode->is_symlink = S_ISLNK(e->attr.st_mode);
c241aa94
SH
932
933 /*
934 * One for the caller and one for nlookup (released in
935 * unref_inode_lolocked())
936 */
937 g_atomic_int_set(&inode->refcount, 2);
938
1222f015 939 inode->nlookup = 1;
7387863d 940 inode->fd = newfd;
9de4fab5 941 newfd = -1;
bfc50a6e
MS
942 inode->key.ino = e->attr.st_ino;
943 inode->key.dev = e->attr.st_dev;
0e81414c
VG
944 pthread_mutex_init(&inode->plock_mutex, NULL);
945 inode->posix_locks = g_hash_table_new_full(
946 g_direct_hash, g_direct_equal, NULL, posix_locks_value_destroy);
7387863d
DDAG
947
948 pthread_mutex_lock(&lo->mutex);
92fb57b8 949 inode->fuse_ino = lo_add_inode_mapping(req, inode);
bfc50a6e 950 g_hash_table_insert(lo->inodes, &inode->key, inode);
7387863d
DDAG
951 pthread_mutex_unlock(&lo->mutex);
952 }
92fb57b8 953 e->ino = inode->fuse_ino;
c241aa94
SH
954 lo_inode_put(lo, &inode);
955 lo_inode_put(lo, &dir);
7387863d 956
d240314a
EG
957 fuse_log(FUSE_LOG_DEBUG, " %lli/%s -> %lli\n", (unsigned long long)parent,
958 name, (unsigned long long)e->ino);
7387863d
DDAG
959
960 return 0;
7c6b6602
DDAG
961
962out_err:
7387863d
DDAG
963 saverr = errno;
964 if (newfd != -1) {
965 close(newfd);
966 }
c241aa94
SH
967 lo_inode_put(lo, &inode);
968 lo_inode_put(lo, &dir);
7387863d 969 return saverr;
7c6b6602
DDAG
970}
971
972static void lo_lookup(fuse_req_t req, fuse_ino_t parent, const char *name)
973{
7387863d
DDAG
974 struct fuse_entry_param e;
975 int err;
976
d240314a
EG
977 fuse_log(FUSE_LOG_DEBUG, "lo_lookup(parent=%" PRIu64 ", name=%s)\n", parent,
978 name);
7387863d 979
25dae28c
SH
980 /*
981 * Don't use is_safe_path_component(), allow "." and ".." for NFS export
982 * support.
983 */
984 if (strchr(name, '/')) {
985 fuse_reply_err(req, EINVAL);
986 return;
987 }
988
7387863d
DDAG
989 err = lo_do_lookup(req, parent, name, &e);
990 if (err) {
991 fuse_reply_err(req, err);
992 } else {
993 fuse_reply_entry(req, &e);
994 }
7c6b6602
DDAG
995}
996
929cfb7a
VG
997/*
998 * On some archs, setres*id is limited to 2^16 but they
999 * provide setres*id32 variants that allow 2^32.
1000 * Others just let setres*id do 2^32 anyway.
1001 */
1002#ifdef SYS_setresgid32
1003#define OURSYS_setresgid SYS_setresgid32
1004#else
1005#define OURSYS_setresgid SYS_setresgid
1006#endif
1007
1008#ifdef SYS_setresuid32
1009#define OURSYS_setresuid SYS_setresuid32
1010#else
1011#define OURSYS_setresuid SYS_setresuid
1012#endif
1013
1014/*
1015 * Change to uid/gid of caller so that file is created with
1016 * ownership of caller.
1017 * TODO: What about selinux context?
1018 */
1019static int lo_change_cred(fuse_req_t req, struct lo_cred *old)
1020{
1021 int res;
1022
1023 old->euid = geteuid();
1024 old->egid = getegid();
1025
1026 res = syscall(OURSYS_setresgid, -1, fuse_req_ctx(req)->gid, -1);
1027 if (res == -1) {
1028 return errno;
1029 }
1030
1031 res = syscall(OURSYS_setresuid, -1, fuse_req_ctx(req)->uid, -1);
1032 if (res == -1) {
1033 int errno_save = errno;
1034
1035 syscall(OURSYS_setresgid, -1, old->egid, -1);
1036 return errno_save;
1037 }
1038
1039 return 0;
1040}
1041
1042/* Regain Privileges */
1043static void lo_restore_cred(struct lo_cred *old)
1044{
1045 int res;
1046
1047 res = syscall(OURSYS_setresuid, -1, old->euid, -1);
1048 if (res == -1) {
1049 fuse_log(FUSE_LOG_ERR, "seteuid(%u): %m\n", old->euid);
1050 exit(1);
1051 }
1052
1053 res = syscall(OURSYS_setresgid, -1, old->egid, -1);
1054 if (res == -1) {
1055 fuse_log(FUSE_LOG_ERR, "setegid(%u): %m\n", old->egid);
1056 exit(1);
1057 }
1058}
1059
7c6b6602 1060static void lo_mknod_symlink(fuse_req_t req, fuse_ino_t parent,
7387863d
DDAG
1061 const char *name, mode_t mode, dev_t rdev,
1062 const char *link)
7c6b6602 1063{
7387863d
DDAG
1064 int res;
1065 int saverr;
c241aa94 1066 struct lo_data *lo = lo_data(req);
92fb57b8 1067 struct lo_inode *dir;
7387863d 1068 struct fuse_entry_param e;
929cfb7a 1069 struct lo_cred old = {};
7c6b6602 1070
25dae28c
SH
1071 if (!is_safe_path_component(name)) {
1072 fuse_reply_err(req, EINVAL);
1073 return;
1074 }
1075
92fb57b8
SH
1076 dir = lo_inode(req, parent);
1077 if (!dir) {
1078 fuse_reply_err(req, EBADF);
1079 return;
1080 }
1081
7387863d 1082 saverr = ENOMEM;
7c6b6602 1083
929cfb7a
VG
1084 saverr = lo_change_cred(req, &old);
1085 if (saverr) {
1086 goto out;
1087 }
1088
7387863d 1089 res = mknod_wrapper(dir->fd, name, link, mode, rdev);
7c6b6602 1090
7387863d 1091 saverr = errno;
929cfb7a
VG
1092
1093 lo_restore_cred(&old);
1094
7387863d
DDAG
1095 if (res == -1) {
1096 goto out;
1097 }
7c6b6602 1098
7387863d
DDAG
1099 saverr = lo_do_lookup(req, parent, name, &e);
1100 if (saverr) {
1101 goto out;
1102 }
7c6b6602 1103
d240314a
EG
1104 fuse_log(FUSE_LOG_DEBUG, " %lli/%s -> %lli\n", (unsigned long long)parent,
1105 name, (unsigned long long)e.ino);
7c6b6602 1106
7387863d 1107 fuse_reply_entry(req, &e);
c241aa94 1108 lo_inode_put(lo, &dir);
7387863d 1109 return;
7c6b6602
DDAG
1110
1111out:
c241aa94 1112 lo_inode_put(lo, &dir);
7387863d 1113 fuse_reply_err(req, saverr);
7c6b6602
DDAG
1114}
1115
7387863d
DDAG
1116static void lo_mknod(fuse_req_t req, fuse_ino_t parent, const char *name,
1117 mode_t mode, dev_t rdev)
7c6b6602 1118{
7387863d 1119 lo_mknod_symlink(req, parent, name, mode, rdev, NULL);
7c6b6602
DDAG
1120}
1121
1122static void lo_mkdir(fuse_req_t req, fuse_ino_t parent, const char *name,
7387863d 1123 mode_t mode)
7c6b6602 1124{
7387863d 1125 lo_mknod_symlink(req, parent, name, S_IFDIR | mode, 0, NULL);
7c6b6602
DDAG
1126}
1127
7387863d
DDAG
1128static void lo_symlink(fuse_req_t req, const char *link, fuse_ino_t parent,
1129 const char *name)
7c6b6602 1130{
7387863d 1131 lo_mknod_symlink(req, parent, name, S_IFLNK, 0, link);
7c6b6602
DDAG
1132}
1133
5fe319a7
MS
1134static int linkat_empty_nofollow(struct lo_data *lo, struct lo_inode *inode,
1135 int dfd, const char *name)
7c6b6602 1136{
7387863d 1137 int res;
5fe319a7
MS
1138 struct lo_inode *parent;
1139 char path[PATH_MAX];
7c6b6602 1140
7387863d
DDAG
1141 if (inode->is_symlink) {
1142 res = linkat(inode->fd, "", dfd, name, AT_EMPTY_PATH);
1143 if (res == -1 && (errno == ENOENT || errno == EINVAL)) {
1144 /* Sorry, no race free way to hard-link a symlink. */
5fe319a7
MS
1145 if (lo->norace) {
1146 errno = EPERM;
1147 } else {
1148 goto fallback;
1149 }
7387863d
DDAG
1150 }
1151 return res;
1152 }
7c6b6602 1153
9f59d175 1154 sprintf(path, "%i", inode->fd);
5fe319a7 1155
9f59d175 1156 return linkat(lo->proc_self_fd, path, dfd, name, AT_SYMLINK_FOLLOW);
5fe319a7
MS
1157
1158fallback:
1159 res = lo_parent_and_name(lo, inode, path, &parent);
1160 if (res != -1) {
1161 res = linkat(parent->fd, path, dfd, name, 0);
95d27157 1162 unref_inode_lolocked(lo, parent, 1);
c241aa94 1163 lo_inode_put(lo, &parent);
5fe319a7 1164 }
7c6b6602 1165
5fe319a7 1166 return res;
7c6b6602
DDAG
1167}
1168
1169static void lo_link(fuse_req_t req, fuse_ino_t ino, fuse_ino_t parent,
7387863d 1170 const char *name)
7c6b6602 1171{
7387863d
DDAG
1172 int res;
1173 struct lo_data *lo = lo_data(req);
c241aa94 1174 struct lo_inode *parent_inode;
92fb57b8 1175 struct lo_inode *inode;
7387863d
DDAG
1176 struct fuse_entry_param e;
1177 int saverr;
1178
25dae28c
SH
1179 if (!is_safe_path_component(name)) {
1180 fuse_reply_err(req, EINVAL);
1181 return;
1182 }
1183
c241aa94 1184 parent_inode = lo_inode(req, parent);
92fb57b8 1185 inode = lo_inode(req, ino);
c241aa94
SH
1186 if (!parent_inode || !inode) {
1187 errno = EBADF;
1188 goto out_err;
92fb57b8
SH
1189 }
1190
7387863d
DDAG
1191 memset(&e, 0, sizeof(struct fuse_entry_param));
1192 e.attr_timeout = lo->timeout;
1193 e.entry_timeout = lo->timeout;
1194
c241aa94 1195 res = linkat_empty_nofollow(lo, inode, parent_inode->fd, name);
7387863d
DDAG
1196 if (res == -1) {
1197 goto out_err;
1198 }
1199
1200 res = fstatat(inode->fd, "", &e.attr, AT_EMPTY_PATH | AT_SYMLINK_NOFOLLOW);
1201 if (res == -1) {
1202 goto out_err;
1203 }
1204
1205 pthread_mutex_lock(&lo->mutex);
1222f015 1206 inode->nlookup++;
7387863d 1207 pthread_mutex_unlock(&lo->mutex);
92fb57b8 1208 e.ino = inode->fuse_ino;
7387863d 1209
d240314a
EG
1210 fuse_log(FUSE_LOG_DEBUG, " %lli/%s -> %lli\n", (unsigned long long)parent,
1211 name, (unsigned long long)e.ino);
7387863d
DDAG
1212
1213 fuse_reply_entry(req, &e);
c241aa94
SH
1214 lo_inode_put(lo, &parent_inode);
1215 lo_inode_put(lo, &inode);
7387863d 1216 return;
7c6b6602
DDAG
1217
1218out_err:
7387863d 1219 saverr = errno;
c241aa94
SH
1220 lo_inode_put(lo, &parent_inode);
1221 lo_inode_put(lo, &inode);
7387863d 1222 fuse_reply_err(req, saverr);
7c6b6602
DDAG
1223}
1224
c241aa94 1225/* Increments nlookup and caller must release refcount using lo_inode_put() */
9257e514
MS
1226static struct lo_inode *lookup_name(fuse_req_t req, fuse_ino_t parent,
1227 const char *name)
1228{
1229 int res;
1230 struct stat attr;
1231
1232 res = fstatat(lo_fd(req, parent), name, &attr,
1233 AT_EMPTY_PATH | AT_SYMLINK_NOFOLLOW);
1234 if (res == -1) {
1235 return NULL;
1236 }
1237
1238 return lo_find(lo_data(req), &attr);
1239}
1240
7c6b6602
DDAG
1241static void lo_rmdir(fuse_req_t req, fuse_ino_t parent, const char *name)
1242{
7387863d 1243 int res;
9257e514
MS
1244 struct lo_inode *inode;
1245 struct lo_data *lo = lo_data(req);
1246
25dae28c
SH
1247 if (!is_safe_path_component(name)) {
1248 fuse_reply_err(req, EINVAL);
1249 return;
1250 }
7c6b6602 1251
9257e514
MS
1252 inode = lookup_name(req, parent, name);
1253 if (!inode) {
1254 fuse_reply_err(req, EIO);
1255 return;
1256 }
1257
7387863d 1258 res = unlinkat(lo_fd(req, parent), name, AT_REMOVEDIR);
7c6b6602 1259
7387863d 1260 fuse_reply_err(req, res == -1 ? errno : 0);
9257e514 1261 unref_inode_lolocked(lo, inode, 1);
c241aa94 1262 lo_inode_put(lo, &inode);
7c6b6602
DDAG
1263}
1264
1265static void lo_rename(fuse_req_t req, fuse_ino_t parent, const char *name,
7387863d
DDAG
1266 fuse_ino_t newparent, const char *newname,
1267 unsigned int flags)
7c6b6602 1268{
7387863d 1269 int res;
c241aa94
SH
1270 struct lo_inode *parent_inode;
1271 struct lo_inode *newparent_inode;
1272 struct lo_inode *oldinode = NULL;
1273 struct lo_inode *newinode = NULL;
9257e514 1274 struct lo_data *lo = lo_data(req);
7c6b6602 1275
25dae28c
SH
1276 if (!is_safe_path_component(name) || !is_safe_path_component(newname)) {
1277 fuse_reply_err(req, EINVAL);
1278 return;
1279 }
1280
c241aa94
SH
1281 parent_inode = lo_inode(req, parent);
1282 newparent_inode = lo_inode(req, newparent);
1283 if (!parent_inode || !newparent_inode) {
1284 fuse_reply_err(req, EBADF);
1285 goto out;
1286 }
1287
9257e514
MS
1288 oldinode = lookup_name(req, parent, name);
1289 newinode = lookup_name(req, newparent, newname);
1290
1291 if (!oldinode) {
1292 fuse_reply_err(req, EIO);
1293 goto out;
1294 }
1295
7387863d 1296 if (flags) {
f0ab7d6f 1297#ifndef SYS_renameat2
7387863d 1298 fuse_reply_err(req, EINVAL);
f0ab7d6f 1299#else
c241aa94
SH
1300 res = syscall(SYS_renameat2, parent_inode->fd, name,
1301 newparent_inode->fd, newname, flags);
f0ab7d6f
MS
1302 if (res == -1 && errno == ENOSYS) {
1303 fuse_reply_err(req, EINVAL);
1304 } else {
1305 fuse_reply_err(req, res == -1 ? errno : 0);
1306 }
1307#endif
9257e514 1308 goto out;
7387863d 1309 }
7c6b6602 1310
c241aa94 1311 res = renameat(parent_inode->fd, name, newparent_inode->fd, newname);
7c6b6602 1312
7387863d 1313 fuse_reply_err(req, res == -1 ? errno : 0);
9257e514
MS
1314out:
1315 unref_inode_lolocked(lo, oldinode, 1);
1316 unref_inode_lolocked(lo, newinode, 1);
c241aa94
SH
1317 lo_inode_put(lo, &oldinode);
1318 lo_inode_put(lo, &newinode);
1319 lo_inode_put(lo, &parent_inode);
1320 lo_inode_put(lo, &newparent_inode);
7c6b6602
DDAG
1321}
1322
1323static void lo_unlink(fuse_req_t req, fuse_ino_t parent, const char *name)
1324{
7387863d 1325 int res;
9257e514
MS
1326 struct lo_inode *inode;
1327 struct lo_data *lo = lo_data(req);
7c6b6602 1328
25dae28c
SH
1329 if (!is_safe_path_component(name)) {
1330 fuse_reply_err(req, EINVAL);
1331 return;
1332 }
1333
9257e514
MS
1334 inode = lookup_name(req, parent, name);
1335 if (!inode) {
1336 fuse_reply_err(req, EIO);
1337 return;
1338 }
1339
7387863d 1340 res = unlinkat(lo_fd(req, parent), name, 0);
7c6b6602 1341
7387863d 1342 fuse_reply_err(req, res == -1 ? errno : 0);
9257e514 1343 unref_inode_lolocked(lo, inode, 1);
c241aa94 1344 lo_inode_put(lo, &inode);
7c6b6602
DDAG
1345}
1346
fe4c1579
DDAG
1347/* To be called with lo->mutex held */
1348static void unref_inode(struct lo_data *lo, struct lo_inode *inode, uint64_t n)
7c6b6602 1349{
7387863d
DDAG
1350 if (!inode) {
1351 return;
1352 }
1353
1222f015
SH
1354 assert(inode->nlookup >= n);
1355 inode->nlookup -= n;
1356 if (!inode->nlookup) {
92fb57b8 1357 lo_map_remove(&lo->ino_map, inode->fuse_ino);
bfc50a6e 1358 g_hash_table_remove(lo->inodes, &inode->key);
0e81414c
VG
1359 if (g_hash_table_size(inode->posix_locks)) {
1360 fuse_log(FUSE_LOG_WARNING, "Hash table is not empty\n");
1361 }
1362 g_hash_table_destroy(inode->posix_locks);
1363 pthread_mutex_destroy(&inode->plock_mutex);
c241aa94
SH
1364
1365 /* Drop our refcount from lo_do_lookup() */
1366 lo_inode_put(lo, &inode);
7387863d 1367 }
7c6b6602
DDAG
1368}
1369
fe4c1579
DDAG
1370static void unref_inode_lolocked(struct lo_data *lo, struct lo_inode *inode,
1371 uint64_t n)
1372{
1373 if (!inode) {
1374 return;
1375 }
1376
1377 pthread_mutex_lock(&lo->mutex);
1378 unref_inode(lo, inode, n);
1379 pthread_mutex_unlock(&lo->mutex);
1380}
1381
7c6b6602
DDAG
1382static void lo_forget_one(fuse_req_t req, fuse_ino_t ino, uint64_t nlookup)
1383{
7387863d 1384 struct lo_data *lo = lo_data(req);
92fb57b8
SH
1385 struct lo_inode *inode;
1386
1387 inode = lo_inode(req, ino);
1388 if (!inode) {
1389 return;
1390 }
7c6b6602 1391
d240314a 1392 fuse_log(FUSE_LOG_DEBUG, " forget %lli %lli -%lli\n",
1222f015 1393 (unsigned long long)ino, (unsigned long long)inode->nlookup,
d240314a 1394 (unsigned long long)nlookup);
7c6b6602 1395
95d27157 1396 unref_inode_lolocked(lo, inode, nlookup);
c241aa94 1397 lo_inode_put(lo, &inode);
7c6b6602
DDAG
1398}
1399
1400static void lo_forget(fuse_req_t req, fuse_ino_t ino, uint64_t nlookup)
1401{
7387863d
DDAG
1402 lo_forget_one(req, ino, nlookup);
1403 fuse_reply_none(req);
7c6b6602
DDAG
1404}
1405
1406static void lo_forget_multi(fuse_req_t req, size_t count,
7387863d 1407 struct fuse_forget_data *forgets)
7c6b6602 1408{
7387863d 1409 int i;
7c6b6602 1410
7387863d
DDAG
1411 for (i = 0; i < count; i++) {
1412 lo_forget_one(req, forgets[i].ino, forgets[i].nlookup);
1413 }
1414 fuse_reply_none(req);
7c6b6602
DDAG
1415}
1416
1417static void lo_readlink(fuse_req_t req, fuse_ino_t ino)
1418{
7387863d
DDAG
1419 char buf[PATH_MAX + 1];
1420 int res;
7c6b6602 1421
7387863d
DDAG
1422 res = readlinkat(lo_fd(req, ino), "", buf, sizeof(buf));
1423 if (res == -1) {
1424 return (void)fuse_reply_err(req, errno);
1425 }
7c6b6602 1426
7387863d
DDAG
1427 if (res == sizeof(buf)) {
1428 return (void)fuse_reply_err(req, ENAMETOOLONG);
1429 }
7c6b6602 1430
7387863d 1431 buf[res] = '\0';
7c6b6602 1432
7387863d 1433 fuse_reply_readlink(req, buf);
7c6b6602
DDAG
1434}
1435
1436struct lo_dirp {
acefdde7 1437 gint refcount;
7387863d
DDAG
1438 DIR *dp;
1439 struct dirent *entry;
1440 off_t offset;
7c6b6602
DDAG
1441};
1442
acefdde7
SH
1443static void lo_dirp_put(struct lo_dirp **dp)
1444{
1445 struct lo_dirp *d = *dp;
1446
1447 if (!d) {
1448 return;
1449 }
1450 *dp = NULL;
1451
1452 if (g_atomic_int_dec_and_test(&d->refcount)) {
1453 closedir(d->dp);
1454 free(d);
1455 }
1456}
1457
1458/* Call lo_dirp_put() on the return value when no longer needed */
b39bce12 1459static struct lo_dirp *lo_dirp(fuse_req_t req, struct fuse_file_info *fi)
7c6b6602 1460{
b39bce12
SH
1461 struct lo_data *lo = lo_data(req);
1462 struct lo_map_elem *elem;
1463
1464 pthread_mutex_lock(&lo->mutex);
1465 elem = lo_map_get(&lo->dirp_map, fi->fh);
acefdde7
SH
1466 if (elem) {
1467 g_atomic_int_inc(&elem->dirp->refcount);
1468 }
b39bce12
SH
1469 pthread_mutex_unlock(&lo->mutex);
1470 if (!elem) {
1471 return NULL;
1472 }
1473
1474 return elem->dirp;
7c6b6602
DDAG
1475}
1476
7387863d
DDAG
1477static void lo_opendir(fuse_req_t req, fuse_ino_t ino,
1478 struct fuse_file_info *fi)
7c6b6602 1479{
7387863d
DDAG
1480 int error = ENOMEM;
1481 struct lo_data *lo = lo_data(req);
1482 struct lo_dirp *d;
1483 int fd;
b39bce12 1484 ssize_t fh;
7387863d
DDAG
1485
1486 d = calloc(1, sizeof(struct lo_dirp));
1487 if (d == NULL) {
1488 goto out_err;
1489 }
1490
1491 fd = openat(lo_fd(req, ino), ".", O_RDONLY);
1492 if (fd == -1) {
1493 goto out_errno;
1494 }
1495
1496 d->dp = fdopendir(fd);
1497 if (d->dp == NULL) {
1498 goto out_errno;
1499 }
1500
1501 d->offset = 0;
1502 d->entry = NULL;
1503
acefdde7 1504 g_atomic_int_set(&d->refcount, 1); /* paired with lo_releasedir() */
b39bce12
SH
1505 pthread_mutex_lock(&lo->mutex);
1506 fh = lo_add_dirp_mapping(req, d);
1507 pthread_mutex_unlock(&lo->mutex);
1508 if (fh == -1) {
1509 goto out_err;
1510 }
1511
1512 fi->fh = fh;
7387863d 1513 if (lo->cache == CACHE_ALWAYS) {
9b610b09 1514 fi->cache_readdir = 1;
7387863d
DDAG
1515 }
1516 fuse_reply_open(req, fi);
1517 return;
7c6b6602
DDAG
1518
1519out_errno:
7387863d 1520 error = errno;
7c6b6602 1521out_err:
7387863d 1522 if (d) {
b39bce12
SH
1523 if (d->dp) {
1524 closedir(d->dp);
1525 }
7387863d
DDAG
1526 if (fd != -1) {
1527 close(fd);
1528 }
1529 free(d);
1530 }
1531 fuse_reply_err(req, error);
7c6b6602
DDAG
1532}
1533
7c6b6602 1534static void lo_do_readdir(fuse_req_t req, fuse_ino_t ino, size_t size,
7387863d 1535 off_t offset, struct fuse_file_info *fi, int plus)
7c6b6602 1536{
752272da 1537 struct lo_data *lo = lo_data(req);
acefdde7 1538 struct lo_dirp *d = NULL;
752272da 1539 struct lo_inode *dinode;
b39bce12 1540 char *buf = NULL;
7387863d
DDAG
1541 char *p;
1542 size_t rem = size;
752272da 1543 int err = EBADF;
7387863d 1544
752272da
SH
1545 dinode = lo_inode(req, ino);
1546 if (!dinode) {
1547 goto error;
1548 }
7387863d 1549
b39bce12
SH
1550 d = lo_dirp(req, fi);
1551 if (!d) {
1552 goto error;
1553 }
1554
752272da 1555 err = ENOMEM;
7387863d
DDAG
1556 buf = calloc(1, size);
1557 if (!buf) {
7387863d
DDAG
1558 goto error;
1559 }
1560 p = buf;
1561
1562 if (offset != d->offset) {
1563 seekdir(d->dp, offset);
1564 d->entry = NULL;
1565 d->offset = offset;
1566 }
1567 while (1) {
1568 size_t entsize;
1569 off_t nextoff;
1570 const char *name;
1571
1572 if (!d->entry) {
1573 errno = 0;
1574 d->entry = readdir(d->dp);
1575 if (!d->entry) {
1576 if (errno) { /* Error */
1577 err = errno;
1578 goto error;
1579 } else { /* End of stream */
1580 break;
1581 }
1582 }
1583 }
1584 nextoff = d->entry->d_off;
1585 name = d->entry->d_name;
752272da 1586
7387863d 1587 fuse_ino_t entry_ino = 0;
752272da
SH
1588 struct fuse_entry_param e = (struct fuse_entry_param){
1589 .attr.st_ino = d->entry->d_ino,
1590 .attr.st_mode = d->entry->d_type << 12,
1591 };
1592
1593 /* Hide root's parent directory */
1594 if (dinode == &lo->root && strcmp(name, "..") == 0) {
bfc50a6e 1595 e.attr.st_ino = lo->root.key.ino;
752272da
SH
1596 e.attr.st_mode = DT_DIR << 12;
1597 }
1598
7387863d 1599 if (plus) {
752272da 1600 if (!is_dot_or_dotdot(name)) {
7387863d
DDAG
1601 err = lo_do_lookup(req, ino, name, &e);
1602 if (err) {
1603 goto error;
1604 }
1605 entry_ino = e.ino;
1606 }
1607
1608 entsize = fuse_add_direntry_plus(req, p, rem, name, &e, nextoff);
1609 } else {
752272da 1610 entsize = fuse_add_direntry(req, p, rem, name, &e.attr, nextoff);
7387863d
DDAG
1611 }
1612 if (entsize > rem) {
1613 if (entry_ino != 0) {
1614 lo_forget_one(req, entry_ino, 1);
1615 }
1616 break;
1617 }
1618
1619 p += entsize;
1620 rem -= entsize;
1621
1622 d->entry = NULL;
1623 d->offset = nextoff;
1624 }
7c6b6602
DDAG
1625
1626 err = 0;
1627error:
acefdde7 1628 lo_dirp_put(&d);
c241aa94 1629 lo_inode_put(lo, &dinode);
acefdde7 1630
7387863d
DDAG
1631 /*
1632 * If there's an error, we can only signal it if we haven't stored
1633 * any entries yet - otherwise we'd end up with wrong lookup
1634 * counts for the entries that are already in the buffer. So we
1635 * return what we've collected until that point.
1636 */
1637 if (err && rem == size) {
1638 fuse_reply_err(req, err);
1639 } else {
1640 fuse_reply_buf(req, buf, size - rem);
1641 }
7c6b6602
DDAG
1642 free(buf);
1643}
1644
1645static void lo_readdir(fuse_req_t req, fuse_ino_t ino, size_t size,
7387863d 1646 off_t offset, struct fuse_file_info *fi)
7c6b6602 1647{
7387863d 1648 lo_do_readdir(req, ino, size, offset, fi, 0);
7c6b6602
DDAG
1649}
1650
1651static void lo_readdirplus(fuse_req_t req, fuse_ino_t ino, size_t size,
7387863d 1652 off_t offset, struct fuse_file_info *fi)
7c6b6602 1653{
7387863d 1654 lo_do_readdir(req, ino, size, offset, fi, 1);
7c6b6602
DDAG
1655}
1656
7387863d
DDAG
1657static void lo_releasedir(fuse_req_t req, fuse_ino_t ino,
1658 struct fuse_file_info *fi)
7c6b6602 1659{
b39bce12 1660 struct lo_data *lo = lo_data(req);
acefdde7 1661 struct lo_map_elem *elem;
b39bce12
SH
1662 struct lo_dirp *d;
1663
7387863d 1664 (void)ino;
b39bce12 1665
acefdde7
SH
1666 pthread_mutex_lock(&lo->mutex);
1667 elem = lo_map_get(&lo->dirp_map, fi->fh);
1668 if (!elem) {
1669 pthread_mutex_unlock(&lo->mutex);
b39bce12
SH
1670 fuse_reply_err(req, EBADF);
1671 return;
1672 }
1673
acefdde7 1674 d = elem->dirp;
b39bce12
SH
1675 lo_map_remove(&lo->dirp_map, fi->fh);
1676 pthread_mutex_unlock(&lo->mutex);
1677
acefdde7
SH
1678 lo_dirp_put(&d); /* paired with lo_opendir() */
1679
7387863d 1680 fuse_reply_err(req, 0);
7c6b6602
DDAG
1681}
1682
8e4e41e3
MT
1683static void update_open_flags(int writeback, struct fuse_file_info *fi)
1684{
1685 /*
1686 * With writeback cache, kernel may send read requests even
1687 * when userspace opened write-only
1688 */
1689 if (writeback && (fi->flags & O_ACCMODE) == O_WRONLY) {
1690 fi->flags &= ~O_ACCMODE;
1691 fi->flags |= O_RDWR;
1692 }
1693
1694 /*
1695 * With writeback cache, O_APPEND is handled by the kernel.
1696 * This breaks atomicity (since the file may change in the
1697 * underlying filesystem, so that the kernel's idea of the
1698 * end of the file isn't accurate anymore). In this example,
1699 * we just accept that. A more rigorous filesystem may want
1700 * to return an error here
1701 */
1702 if (writeback && (fi->flags & O_APPEND)) {
1703 fi->flags &= ~O_APPEND;
1704 }
1705
1706 /*
1707 * O_DIRECT in guest should not necessarily mean bypassing page
1708 * cache on host as well. If somebody needs that behavior, it
1709 * probably should be a configuration knob in daemon.
1710 */
1711 fi->flags &= ~O_DIRECT;
1712}
1713
7c6b6602 1714static void lo_create(fuse_req_t req, fuse_ino_t parent, const char *name,
7387863d 1715 mode_t mode, struct fuse_file_info *fi)
7c6b6602 1716{
7387863d
DDAG
1717 int fd;
1718 struct lo_data *lo = lo_data(req);
c241aa94 1719 struct lo_inode *parent_inode;
7387863d
DDAG
1720 struct fuse_entry_param e;
1721 int err;
929cfb7a 1722 struct lo_cred old = {};
7387863d 1723
d240314a
EG
1724 fuse_log(FUSE_LOG_DEBUG, "lo_create(parent=%" PRIu64 ", name=%s)\n", parent,
1725 name);
7387863d 1726
25dae28c
SH
1727 if (!is_safe_path_component(name)) {
1728 fuse_reply_err(req, EINVAL);
1729 return;
1730 }
1731
c241aa94
SH
1732 parent_inode = lo_inode(req, parent);
1733 if (!parent_inode) {
1734 fuse_reply_err(req, EBADF);
1735 return;
1736 }
1737
929cfb7a
VG
1738 err = lo_change_cred(req, &old);
1739 if (err) {
1740 goto out;
1741 }
1742
8e4e41e3 1743 update_open_flags(lo->writeback, fi);
65da4539 1744
c241aa94 1745 fd = openat(parent_inode->fd, name, (fi->flags | O_CREAT) & ~O_NOFOLLOW,
7387863d 1746 mode);
929cfb7a
VG
1747 err = fd == -1 ? errno : 0;
1748 lo_restore_cred(&old);
7387863d 1749
929cfb7a 1750 if (!err) {
73b4d19d
SH
1751 ssize_t fh;
1752
1753 pthread_mutex_lock(&lo->mutex);
1754 fh = lo_add_fd_mapping(req, fd);
1755 pthread_mutex_unlock(&lo->mutex);
1756 if (fh == -1) {
1757 close(fd);
c241aa94
SH
1758 err = ENOMEM;
1759 goto out;
73b4d19d
SH
1760 }
1761
1762 fi->fh = fh;
929cfb7a
VG
1763 err = lo_do_lookup(req, parent, name, &e);
1764 }
230e777b 1765 if (lo->cache == CACHE_NONE) {
7387863d
DDAG
1766 fi->direct_io = 1;
1767 } else if (lo->cache == CACHE_ALWAYS) {
1768 fi->keep_cache = 1;
1769 }
1770
929cfb7a 1771out:
c241aa94
SH
1772 lo_inode_put(lo, &parent_inode);
1773
7387863d
DDAG
1774 if (err) {
1775 fuse_reply_err(req, err);
1776 } else {
1777 fuse_reply_create(req, &e, fi);
1778 }
7c6b6602
DDAG
1779}
1780
0e81414c
VG
1781/* Should be called with inode->plock_mutex held */
1782static struct lo_inode_plock *lookup_create_plock_ctx(struct lo_data *lo,
1783 struct lo_inode *inode,
1784 uint64_t lock_owner,
1785 pid_t pid, int *err)
1786{
1787 struct lo_inode_plock *plock;
1788 char procname[64];
1789 int fd;
1790
1791 plock =
1792 g_hash_table_lookup(inode->posix_locks, GUINT_TO_POINTER(lock_owner));
1793
1794 if (plock) {
1795 return plock;
1796 }
1797
1798 plock = malloc(sizeof(struct lo_inode_plock));
1799 if (!plock) {
1800 *err = ENOMEM;
1801 return NULL;
1802 }
1803
1804 /* Open another instance of file which can be used for ofd locks. */
1805 sprintf(procname, "%i", inode->fd);
1806
1807 /* TODO: What if file is not writable? */
1808 fd = openat(lo->proc_self_fd, procname, O_RDWR);
1809 if (fd == -1) {
1810 *err = errno;
1811 free(plock);
1812 return NULL;
1813 }
1814
1815 plock->lock_owner = lock_owner;
1816 plock->fd = fd;
1817 g_hash_table_insert(inode->posix_locks, GUINT_TO_POINTER(plock->lock_owner),
1818 plock);
1819 return plock;
1820}
1821
1822static void lo_getlk(fuse_req_t req, fuse_ino_t ino, struct fuse_file_info *fi,
1823 struct flock *lock)
1824{
1825 struct lo_data *lo = lo_data(req);
1826 struct lo_inode *inode;
1827 struct lo_inode_plock *plock;
1828 int ret, saverr = 0;
1829
1830 fuse_log(FUSE_LOG_DEBUG,
1831 "lo_getlk(ino=%" PRIu64 ", flags=%d)"
1832 " owner=0x%lx, l_type=%d l_start=0x%lx"
1833 " l_len=0x%lx\n",
1834 ino, fi->flags, fi->lock_owner, lock->l_type, lock->l_start,
1835 lock->l_len);
1836
1837 inode = lo_inode(req, ino);
1838 if (!inode) {
1839 fuse_reply_err(req, EBADF);
1840 return;
1841 }
1842
1843 pthread_mutex_lock(&inode->plock_mutex);
1844 plock =
1845 lookup_create_plock_ctx(lo, inode, fi->lock_owner, lock->l_pid, &ret);
1846 if (!plock) {
c241aa94
SH
1847 saverr = ret;
1848 goto out;
0e81414c
VG
1849 }
1850
1851 ret = fcntl(plock->fd, F_OFD_GETLK, lock);
1852 if (ret == -1) {
1853 saverr = errno;
1854 }
c241aa94
SH
1855
1856out:
0e81414c 1857 pthread_mutex_unlock(&inode->plock_mutex);
c241aa94 1858 lo_inode_put(lo, &inode);
0e81414c
VG
1859
1860 if (saverr) {
1861 fuse_reply_err(req, saverr);
1862 } else {
1863 fuse_reply_lock(req, lock);
1864 }
1865}
1866
1867static void lo_setlk(fuse_req_t req, fuse_ino_t ino, struct fuse_file_info *fi,
1868 struct flock *lock, int sleep)
1869{
1870 struct lo_data *lo = lo_data(req);
1871 struct lo_inode *inode;
1872 struct lo_inode_plock *plock;
1873 int ret, saverr = 0;
1874
1875 fuse_log(FUSE_LOG_DEBUG,
1876 "lo_setlk(ino=%" PRIu64 ", flags=%d)"
1877 " cmd=%d pid=%d owner=0x%lx sleep=%d l_whence=%d"
1878 " l_start=0x%lx l_len=0x%lx\n",
1879 ino, fi->flags, lock->l_type, lock->l_pid, fi->lock_owner, sleep,
1880 lock->l_whence, lock->l_start, lock->l_len);
1881
1882 if (sleep) {
1883 fuse_reply_err(req, EOPNOTSUPP);
1884 return;
1885 }
1886
1887 inode = lo_inode(req, ino);
1888 if (!inode) {
1889 fuse_reply_err(req, EBADF);
1890 return;
1891 }
1892
1893 pthread_mutex_lock(&inode->plock_mutex);
1894 plock =
1895 lookup_create_plock_ctx(lo, inode, fi->lock_owner, lock->l_pid, &ret);
1896
1897 if (!plock) {
c241aa94
SH
1898 saverr = ret;
1899 goto out;
0e81414c
VG
1900 }
1901
1902 /* TODO: Is it alright to modify flock? */
1903 lock->l_pid = 0;
1904 ret = fcntl(plock->fd, F_OFD_SETLK, lock);
1905 if (ret == -1) {
1906 saverr = errno;
1907 }
c241aa94
SH
1908
1909out:
0e81414c 1910 pthread_mutex_unlock(&inode->plock_mutex);
c241aa94
SH
1911 lo_inode_put(lo, &inode);
1912
0e81414c
VG
1913 fuse_reply_err(req, saverr);
1914}
1915
7c6b6602 1916static void lo_fsyncdir(fuse_req_t req, fuse_ino_t ino, int datasync,
7387863d 1917 struct fuse_file_info *fi)
7c6b6602 1918{
7387863d 1919 int res;
b39bce12
SH
1920 struct lo_dirp *d;
1921 int fd;
1922
7387863d 1923 (void)ino;
b39bce12
SH
1924
1925 d = lo_dirp(req, fi);
1926 if (!d) {
1927 fuse_reply_err(req, EBADF);
1928 return;
1929 }
1930
1931 fd = dirfd(d->dp);
7387863d
DDAG
1932 if (datasync) {
1933 res = fdatasync(fd);
1934 } else {
1935 res = fsync(fd);
1936 }
acefdde7
SH
1937
1938 lo_dirp_put(&d);
1939
7387863d 1940 fuse_reply_err(req, res == -1 ? errno : 0);
7c6b6602
DDAG
1941}
1942
1943static void lo_open(fuse_req_t req, fuse_ino_t ino, struct fuse_file_info *fi)
1944{
7387863d 1945 int fd;
73b4d19d 1946 ssize_t fh;
7387863d
DDAG
1947 char buf[64];
1948 struct lo_data *lo = lo_data(req);
1949
d240314a
EG
1950 fuse_log(FUSE_LOG_DEBUG, "lo_open(ino=%" PRIu64 ", flags=%d)\n", ino,
1951 fi->flags);
7387863d 1952
8e4e41e3 1953 update_open_flags(lo->writeback, fi);
65da4539 1954
9f59d175
SH
1955 sprintf(buf, "%i", lo_fd(req, ino));
1956 fd = openat(lo->proc_self_fd, buf, fi->flags & ~O_NOFOLLOW);
7387863d
DDAG
1957 if (fd == -1) {
1958 return (void)fuse_reply_err(req, errno);
1959 }
1960
73b4d19d
SH
1961 pthread_mutex_lock(&lo->mutex);
1962 fh = lo_add_fd_mapping(req, fd);
1963 pthread_mutex_unlock(&lo->mutex);
1964 if (fh == -1) {
1965 close(fd);
1966 fuse_reply_err(req, ENOMEM);
1967 return;
1968 }
1969
1970 fi->fh = fh;
230e777b 1971 if (lo->cache == CACHE_NONE) {
7387863d
DDAG
1972 fi->direct_io = 1;
1973 } else if (lo->cache == CACHE_ALWAYS) {
1974 fi->keep_cache = 1;
1975 }
1976 fuse_reply_open(req, fi);
7c6b6602
DDAG
1977}
1978
7387863d
DDAG
1979static void lo_release(fuse_req_t req, fuse_ino_t ino,
1980 struct fuse_file_info *fi)
7c6b6602 1981{
73b4d19d 1982 struct lo_data *lo = lo_data(req);
baed65c0
SH
1983 struct lo_map_elem *elem;
1984 int fd = -1;
73b4d19d 1985
7387863d 1986 (void)ino;
7c6b6602 1987
73b4d19d 1988 pthread_mutex_lock(&lo->mutex);
baed65c0
SH
1989 elem = lo_map_get(&lo->fd_map, fi->fh);
1990 if (elem) {
1991 fd = elem->fd;
1992 elem = NULL;
1993 lo_map_remove(&lo->fd_map, fi->fh);
1994 }
73b4d19d
SH
1995 pthread_mutex_unlock(&lo->mutex);
1996
1997 close(fd);
7387863d 1998 fuse_reply_err(req, 0);
7c6b6602
DDAG
1999}
2000
2001static void lo_flush(fuse_req_t req, fuse_ino_t ino, struct fuse_file_info *fi)
2002{
7387863d
DDAG
2003 int res;
2004 (void)ino;
0e81414c
VG
2005 struct lo_inode *inode;
2006
2007 inode = lo_inode(req, ino);
2008 if (!inode) {
2009 fuse_reply_err(req, EBADF);
2010 return;
2011 }
2012
2013 /* An fd is going away. Cleanup associated posix locks */
2014 pthread_mutex_lock(&inode->plock_mutex);
2015 g_hash_table_remove(inode->posix_locks, GUINT_TO_POINTER(fi->lock_owner));
2016 pthread_mutex_unlock(&inode->plock_mutex);
2017
73b4d19d 2018 res = close(dup(lo_fi_fd(req, fi)));
c241aa94 2019 lo_inode_put(lo_data(req), &inode);
7387863d 2020 fuse_reply_err(req, res == -1 ? errno : 0);
7c6b6602
DDAG
2021}
2022
2023static void lo_fsync(fuse_req_t req, fuse_ino_t ino, int datasync,
7387863d 2024 struct fuse_file_info *fi)
7c6b6602 2025{
7387863d 2026 int res;
1b209805
VG
2027 int fd;
2028 char *buf;
2029
2030 fuse_log(FUSE_LOG_DEBUG, "lo_fsync(ino=%" PRIu64 ", fi=0x%p)\n", ino,
2031 (void *)fi);
2032
2033 if (!fi) {
9f59d175
SH
2034 struct lo_data *lo = lo_data(req);
2035
2036 res = asprintf(&buf, "%i", lo_fd(req, ino));
1b209805
VG
2037 if (res == -1) {
2038 return (void)fuse_reply_err(req, errno);
2039 }
2040
9f59d175 2041 fd = openat(lo->proc_self_fd, buf, O_RDWR);
1b209805
VG
2042 free(buf);
2043 if (fd == -1) {
2044 return (void)fuse_reply_err(req, errno);
2045 }
2046 } else {
73b4d19d 2047 fd = lo_fi_fd(req, fi);
1b209805
VG
2048 }
2049
7387863d 2050 if (datasync) {
1b209805 2051 res = fdatasync(fd);
7387863d 2052 } else {
1b209805
VG
2053 res = fsync(fd);
2054 }
2055 if (!fi) {
2056 close(fd);
7387863d
DDAG
2057 }
2058 fuse_reply_err(req, res == -1 ? errno : 0);
7c6b6602
DDAG
2059}
2060
7387863d
DDAG
2061static void lo_read(fuse_req_t req, fuse_ino_t ino, size_t size, off_t offset,
2062 struct fuse_file_info *fi)
7c6b6602 2063{
7387863d 2064 struct fuse_bufvec buf = FUSE_BUFVEC_INIT(size);
7c6b6602 2065
d240314a
EG
2066 fuse_log(FUSE_LOG_DEBUG,
2067 "lo_read(ino=%" PRIu64 ", size=%zd, "
2068 "off=%lu)\n",
2069 ino, size, (unsigned long)offset);
7c6b6602 2070
7387863d 2071 buf.buf[0].flags = FUSE_BUF_IS_FD | FUSE_BUF_FD_SEEK;
73b4d19d 2072 buf.buf[0].fd = lo_fi_fd(req, fi);
7387863d 2073 buf.buf[0].pos = offset;
7c6b6602 2074
8c3fe75e 2075 fuse_reply_data(req, &buf);
7c6b6602
DDAG
2076}
2077
2078static void lo_write_buf(fuse_req_t req, fuse_ino_t ino,
7387863d
DDAG
2079 struct fuse_bufvec *in_buf, off_t off,
2080 struct fuse_file_info *fi)
7c6b6602 2081{
7387863d
DDAG
2082 (void)ino;
2083 ssize_t res;
2084 struct fuse_bufvec out_buf = FUSE_BUFVEC_INIT(fuse_buf_size(in_buf));
ee884652 2085 bool cap_fsetid_dropped = false;
7387863d
DDAG
2086
2087 out_buf.buf[0].flags = FUSE_BUF_IS_FD | FUSE_BUF_FD_SEEK;
73b4d19d 2088 out_buf.buf[0].fd = lo_fi_fd(req, fi);
7387863d
DDAG
2089 out_buf.buf[0].pos = off;
2090
d240314a
EG
2091 fuse_log(FUSE_LOG_DEBUG,
2092 "lo_write_buf(ino=%" PRIu64 ", size=%zd, off=%lu)\n", ino,
2093 out_buf.buf[0].size, (unsigned long)off);
7387863d 2094
ee884652
VG
2095 /*
2096 * If kill_priv is set, drop CAP_FSETID which should lead to kernel
2097 * clearing setuid/setgid on file.
2098 */
2099 if (fi->kill_priv) {
2100 res = drop_effective_cap("FSETID", &cap_fsetid_dropped);
2101 if (res != 0) {
2102 fuse_reply_err(req, res);
2103 return;
2104 }
2105 }
2106
8c3fe75e 2107 res = fuse_buf_copy(&out_buf, in_buf);
7387863d
DDAG
2108 if (res < 0) {
2109 fuse_reply_err(req, -res);
2110 } else {
2111 fuse_reply_write(req, (size_t)res);
2112 }
ee884652
VG
2113
2114 if (cap_fsetid_dropped) {
2115 res = gain_effective_cap("FSETID");
2116 if (res) {
2117 fuse_log(FUSE_LOG_ERR, "Failed to gain CAP_FSETID\n");
2118 }
2119 }
7c6b6602
DDAG
2120}
2121
2122static void lo_statfs(fuse_req_t req, fuse_ino_t ino)
2123{
7387863d
DDAG
2124 int res;
2125 struct statvfs stbuf;
2126
2127 res = fstatvfs(lo_fd(req, ino), &stbuf);
2128 if (res == -1) {
2129 fuse_reply_err(req, errno);
2130 } else {
2131 fuse_reply_statfs(req, &stbuf);
2132 }
7c6b6602
DDAG
2133}
2134
7387863d
DDAG
2135static void lo_fallocate(fuse_req_t req, fuse_ino_t ino, int mode, off_t offset,
2136 off_t length, struct fuse_file_info *fi)
7c6b6602 2137{
7387863d
DDAG
2138 int err = EOPNOTSUPP;
2139 (void)ino;
7c6b6602 2140
9776457c 2141#ifdef CONFIG_FALLOCATE
73b4d19d 2142 err = fallocate(lo_fi_fd(req, fi), mode, offset, length);
7387863d
DDAG
2143 if (err < 0) {
2144 err = errno;
2145 }
7c6b6602 2146
9776457c 2147#elif defined(CONFIG_POSIX_FALLOCATE)
7387863d
DDAG
2148 if (mode) {
2149 fuse_reply_err(req, EOPNOTSUPP);
2150 return;
2151 }
7c6b6602 2152
73b4d19d 2153 err = posix_fallocate(lo_fi_fd(req, fi), offset, length);
7c6b6602
DDAG
2154#endif
2155
7387863d 2156 fuse_reply_err(req, err);
7c6b6602
DDAG
2157}
2158
2159static void lo_flock(fuse_req_t req, fuse_ino_t ino, struct fuse_file_info *fi,
7387863d 2160 int op)
7c6b6602 2161{
7387863d
DDAG
2162 int res;
2163 (void)ino;
7c6b6602 2164
73b4d19d 2165 res = flock(lo_fi_fd(req, fi), op);
7c6b6602 2166
7387863d 2167 fuse_reply_err(req, res == -1 ? errno : 0);
7c6b6602
DDAG
2168}
2169
2170static void lo_getxattr(fuse_req_t req, fuse_ino_t ino, const char *name,
7387863d 2171 size_t size)
7c6b6602 2172{
9f59d175 2173 struct lo_data *lo = lo_data(req);
7387863d
DDAG
2174 char *value = NULL;
2175 char procname[64];
92fb57b8 2176 struct lo_inode *inode;
7387863d
DDAG
2177 ssize_t ret;
2178 int saverr;
9f59d175 2179 int fd = -1;
7387863d 2180
92fb57b8
SH
2181 inode = lo_inode(req, ino);
2182 if (!inode) {
2183 fuse_reply_err(req, EBADF);
2184 return;
2185 }
2186
7387863d
DDAG
2187 saverr = ENOSYS;
2188 if (!lo_data(req)->xattr) {
2189 goto out;
2190 }
2191
d240314a
EG
2192 fuse_log(FUSE_LOG_DEBUG, "lo_getxattr(ino=%" PRIu64 ", name=%s size=%zd)\n",
2193 ino, name, size);
7387863d
DDAG
2194
2195 if (inode->is_symlink) {
2196 /* Sorry, no race free way to getxattr on symlink. */
2197 saverr = EPERM;
2198 goto out;
2199 }
2200
9f59d175
SH
2201 sprintf(procname, "%i", inode->fd);
2202 fd = openat(lo->proc_self_fd, procname, O_RDONLY);
2203 if (fd < 0) {
2204 goto out_err;
2205 }
7387863d
DDAG
2206
2207 if (size) {
2208 value = malloc(size);
2209 if (!value) {
2210 goto out_err;
2211 }
2212
9f59d175 2213 ret = fgetxattr(fd, name, value, size);
7387863d
DDAG
2214 if (ret == -1) {
2215 goto out_err;
2216 }
2217 saverr = 0;
2218 if (ret == 0) {
2219 goto out;
2220 }
2221
2222 fuse_reply_buf(req, value, ret);
2223 } else {
9f59d175 2224 ret = fgetxattr(fd, name, NULL, 0);
7387863d
DDAG
2225 if (ret == -1) {
2226 goto out_err;
2227 }
2228
2229 fuse_reply_xattr(req, ret);
2230 }
7c6b6602 2231out_free:
7387863d 2232 free(value);
9f59d175
SH
2233
2234 if (fd >= 0) {
2235 close(fd);
2236 }
c241aa94
SH
2237
2238 lo_inode_put(lo, &inode);
7387863d 2239 return;
7c6b6602
DDAG
2240
2241out_err:
7387863d 2242 saverr = errno;
7c6b6602 2243out:
c241aa94 2244 lo_inode_put(lo, &inode);
7387863d
DDAG
2245 fuse_reply_err(req, saverr);
2246 goto out_free;
7c6b6602
DDAG
2247}
2248
2249static void lo_listxattr(fuse_req_t req, fuse_ino_t ino, size_t size)
2250{
9f59d175 2251 struct lo_data *lo = lo_data(req);
7387863d
DDAG
2252 char *value = NULL;
2253 char procname[64];
92fb57b8 2254 struct lo_inode *inode;
7387863d
DDAG
2255 ssize_t ret;
2256 int saverr;
9f59d175 2257 int fd = -1;
7387863d 2258
92fb57b8
SH
2259 inode = lo_inode(req, ino);
2260 if (!inode) {
2261 fuse_reply_err(req, EBADF);
2262 return;
2263 }
2264
7387863d
DDAG
2265 saverr = ENOSYS;
2266 if (!lo_data(req)->xattr) {
2267 goto out;
2268 }
2269
d240314a
EG
2270 fuse_log(FUSE_LOG_DEBUG, "lo_listxattr(ino=%" PRIu64 ", size=%zd)\n", ino,
2271 size);
7387863d
DDAG
2272
2273 if (inode->is_symlink) {
2274 /* Sorry, no race free way to listxattr on symlink. */
2275 saverr = EPERM;
2276 goto out;
2277 }
2278
9f59d175
SH
2279 sprintf(procname, "%i", inode->fd);
2280 fd = openat(lo->proc_self_fd, procname, O_RDONLY);
2281 if (fd < 0) {
2282 goto out_err;
2283 }
7387863d
DDAG
2284
2285 if (size) {
2286 value = malloc(size);
2287 if (!value) {
2288 goto out_err;
2289 }
2290
9f59d175 2291 ret = flistxattr(fd, value, size);
7387863d
DDAG
2292 if (ret == -1) {
2293 goto out_err;
2294 }
2295 saverr = 0;
2296 if (ret == 0) {
2297 goto out;
2298 }
2299
2300 fuse_reply_buf(req, value, ret);
2301 } else {
9f59d175 2302 ret = flistxattr(fd, NULL, 0);
7387863d
DDAG
2303 if (ret == -1) {
2304 goto out_err;
2305 }
2306
2307 fuse_reply_xattr(req, ret);
2308 }
7c6b6602 2309out_free:
7387863d 2310 free(value);
9f59d175
SH
2311
2312 if (fd >= 0) {
2313 close(fd);
2314 }
c241aa94
SH
2315
2316 lo_inode_put(lo, &inode);
7387863d 2317 return;
7c6b6602
DDAG
2318
2319out_err:
7387863d 2320 saverr = errno;
7c6b6602 2321out:
c241aa94 2322 lo_inode_put(lo, &inode);
7387863d
DDAG
2323 fuse_reply_err(req, saverr);
2324 goto out_free;
7c6b6602
DDAG
2325}
2326
2327static void lo_setxattr(fuse_req_t req, fuse_ino_t ino, const char *name,
7387863d 2328 const char *value, size_t size, int flags)
7c6b6602 2329{
7387863d 2330 char procname[64];
9f59d175 2331 struct lo_data *lo = lo_data(req);
92fb57b8 2332 struct lo_inode *inode;
7387863d
DDAG
2333 ssize_t ret;
2334 int saverr;
9f59d175 2335 int fd = -1;
7c6b6602 2336
92fb57b8
SH
2337 inode = lo_inode(req, ino);
2338 if (!inode) {
2339 fuse_reply_err(req, EBADF);
2340 return;
2341 }
2342
7387863d
DDAG
2343 saverr = ENOSYS;
2344 if (!lo_data(req)->xattr) {
2345 goto out;
2346 }
7c6b6602 2347
d240314a
EG
2348 fuse_log(FUSE_LOG_DEBUG, "lo_setxattr(ino=%" PRIu64
2349 ", name=%s value=%s size=%zd)\n", ino, name, value, size);
7c6b6602 2350
7387863d
DDAG
2351 if (inode->is_symlink) {
2352 /* Sorry, no race free way to setxattr on symlink. */
2353 saverr = EPERM;
2354 goto out;
2355 }
7c6b6602 2356
9f59d175
SH
2357 sprintf(procname, "%i", inode->fd);
2358 fd = openat(lo->proc_self_fd, procname, O_RDWR);
2359 if (fd < 0) {
2360 saverr = errno;
2361 goto out;
2362 }
7c6b6602 2363
9f59d175 2364 ret = fsetxattr(fd, name, value, size, flags);
7387863d 2365 saverr = ret == -1 ? errno : 0;
7c6b6602
DDAG
2366
2367out:
9f59d175
SH
2368 if (fd >= 0) {
2369 close(fd);
2370 }
c241aa94
SH
2371
2372 lo_inode_put(lo, &inode);
7387863d 2373 fuse_reply_err(req, saverr);
7c6b6602
DDAG
2374}
2375
2376static void lo_removexattr(fuse_req_t req, fuse_ino_t ino, const char *name)
2377{
7387863d 2378 char procname[64];
9f59d175 2379 struct lo_data *lo = lo_data(req);
92fb57b8 2380 struct lo_inode *inode;
7387863d
DDAG
2381 ssize_t ret;
2382 int saverr;
9f59d175 2383 int fd = -1;
7c6b6602 2384
92fb57b8
SH
2385 inode = lo_inode(req, ino);
2386 if (!inode) {
2387 fuse_reply_err(req, EBADF);
2388 return;
2389 }
2390
7387863d
DDAG
2391 saverr = ENOSYS;
2392 if (!lo_data(req)->xattr) {
2393 goto out;
2394 }
7c6b6602 2395
d240314a
EG
2396 fuse_log(FUSE_LOG_DEBUG, "lo_removexattr(ino=%" PRIu64 ", name=%s)\n", ino,
2397 name);
7c6b6602 2398
7387863d
DDAG
2399 if (inode->is_symlink) {
2400 /* Sorry, no race free way to setxattr on symlink. */
2401 saverr = EPERM;
2402 goto out;
2403 }
7c6b6602 2404
9f59d175
SH
2405 sprintf(procname, "%i", inode->fd);
2406 fd = openat(lo->proc_self_fd, procname, O_RDWR);
2407 if (fd < 0) {
2408 saverr = errno;
2409 goto out;
2410 }
7c6b6602 2411
9f59d175 2412 ret = fremovexattr(fd, name);
7387863d 2413 saverr = ret == -1 ? errno : 0;
7c6b6602
DDAG
2414
2415out:
9f59d175
SH
2416 if (fd >= 0) {
2417 close(fd);
2418 }
c241aa94
SH
2419
2420 lo_inode_put(lo, &inode);
7387863d 2421 fuse_reply_err(req, saverr);
7c6b6602
DDAG
2422}
2423
2424#ifdef HAVE_COPY_FILE_RANGE
2425static void lo_copy_file_range(fuse_req_t req, fuse_ino_t ino_in, off_t off_in,
7387863d
DDAG
2426 struct fuse_file_info *fi_in, fuse_ino_t ino_out,
2427 off_t off_out, struct fuse_file_info *fi_out,
2428 size_t len, int flags)
7c6b6602 2429{
73b4d19d 2430 int in_fd, out_fd;
7387863d
DDAG
2431 ssize_t res;
2432
73b4d19d
SH
2433 in_fd = lo_fi_fd(req, fi_in);
2434 out_fd = lo_fi_fd(req, fi_out);
2435
2436 fuse_log(FUSE_LOG_DEBUG,
2437 "lo_copy_file_range(ino=%" PRIu64 "/fd=%d, "
2438 "off=%lu, ino=%" PRIu64 "/fd=%d, "
2439 "off=%lu, size=%zd, flags=0x%x)\n",
2440 ino_in, in_fd, off_in, ino_out, out_fd, off_out, len, flags);
7387863d 2441
73b4d19d 2442 res = copy_file_range(in_fd, &off_in, out_fd, &off_out, len, flags);
7387863d 2443 if (res < 0) {
a931b686 2444 fuse_reply_err(req, errno);
7387863d
DDAG
2445 } else {
2446 fuse_reply_write(req, res);
2447 }
7c6b6602
DDAG
2448}
2449#endif
2450
2451static void lo_lseek(fuse_req_t req, fuse_ino_t ino, off_t off, int whence,
7387863d 2452 struct fuse_file_info *fi)
7c6b6602 2453{
7387863d
DDAG
2454 off_t res;
2455
2456 (void)ino;
73b4d19d 2457 res = lseek(lo_fi_fd(req, fi), off, whence);
7387863d
DDAG
2458 if (res != -1) {
2459 fuse_reply_lseek(req, res);
2460 } else {
2461 fuse_reply_err(req, errno);
2462 }
7c6b6602
DDAG
2463}
2464
771b01eb
DDAG
2465static void lo_destroy(void *userdata)
2466{
2467 struct lo_data *lo = (struct lo_data *)userdata;
28f7a3b0 2468
fe4c1579 2469 pthread_mutex_lock(&lo->mutex);
28f7a3b0
SH
2470 while (true) {
2471 GHashTableIter iter;
2472 gpointer key, value;
2473
2474 g_hash_table_iter_init(&iter, lo->inodes);
2475 if (!g_hash_table_iter_next(&iter, &key, &value)) {
2476 break;
2477 }
2478
2479 struct lo_inode *inode = value;
fe4c1579 2480 unref_inode(lo, inode, inode->nlookup);
28f7a3b0 2481 }
fe4c1579 2482 pthread_mutex_unlock(&lo->mutex);
771b01eb
DDAG
2483}
2484
7c6b6602 2485static struct fuse_lowlevel_ops lo_oper = {
7387863d
DDAG
2486 .init = lo_init,
2487 .lookup = lo_lookup,
2488 .mkdir = lo_mkdir,
2489 .mknod = lo_mknod,
2490 .symlink = lo_symlink,
2491 .link = lo_link,
2492 .unlink = lo_unlink,
2493 .rmdir = lo_rmdir,
2494 .rename = lo_rename,
2495 .forget = lo_forget,
2496 .forget_multi = lo_forget_multi,
2497 .getattr = lo_getattr,
2498 .setattr = lo_setattr,
2499 .readlink = lo_readlink,
2500 .opendir = lo_opendir,
2501 .readdir = lo_readdir,
2502 .readdirplus = lo_readdirplus,
2503 .releasedir = lo_releasedir,
2504 .fsyncdir = lo_fsyncdir,
2505 .create = lo_create,
0e81414c
VG
2506 .getlk = lo_getlk,
2507 .setlk = lo_setlk,
7387863d
DDAG
2508 .open = lo_open,
2509 .release = lo_release,
2510 .flush = lo_flush,
2511 .fsync = lo_fsync,
2512 .read = lo_read,
2513 .write_buf = lo_write_buf,
2514 .statfs = lo_statfs,
2515 .fallocate = lo_fallocate,
2516 .flock = lo_flock,
2517 .getxattr = lo_getxattr,
2518 .listxattr = lo_listxattr,
2519 .setxattr = lo_setxattr,
2520 .removexattr = lo_removexattr,
7c6b6602 2521#ifdef HAVE_COPY_FILE_RANGE
7387863d 2522 .copy_file_range = lo_copy_file_range,
7c6b6602 2523#endif
7387863d 2524 .lseek = lo_lseek,
771b01eb 2525 .destroy = lo_destroy,
7c6b6602
DDAG
2526};
2527
45018fbb
SH
2528/* Print vhost-user.json backend program capabilities */
2529static void print_capabilities(void)
2530{
2531 printf("{\n");
2532 printf(" \"type\": \"fs\"\n");
2533 printf("}\n");
2534}
2535
d74830d1 2536/*
8e1d4ef2 2537 * Move to a new mount, net, and pid namespaces to isolate this process.
d74830d1 2538 */
8e1d4ef2 2539static void setup_namespaces(struct lo_data *lo, struct fuse_session *se)
d74830d1 2540{
8e1d4ef2
SH
2541 pid_t child;
2542
2543 /*
2544 * Create a new pid namespace for *child* processes. We'll have to
2545 * fork in order to enter the new pid namespace. A new mount namespace
2546 * is also needed so that we can remount /proc for the new pid
2547 * namespace.
2548 *
2549 * Our UNIX domain sockets have been created. Now we can move to
2550 * an empty network namespace to prevent TCP/IP and other network
2551 * activity in case this process is compromised.
2552 */
2553 if (unshare(CLONE_NEWPID | CLONE_NEWNS | CLONE_NEWNET) != 0) {
2554 fuse_log(FUSE_LOG_ERR, "unshare(CLONE_NEWPID | CLONE_NEWNS): %m\n");
2555 exit(1);
2556 }
2557
2558 child = fork();
2559 if (child < 0) {
2560 fuse_log(FUSE_LOG_ERR, "fork() failed: %m\n");
2561 exit(1);
2562 }
2563 if (child > 0) {
2564 pid_t waited;
2565 int wstatus;
2566
2567 /* The parent waits for the child */
2568 do {
2569 waited = waitpid(child, &wstatus, 0);
2570 } while (waited < 0 && errno == EINTR && !se->exited);
2571
2572 /* We were terminated by a signal, see fuse_signals.c */
2573 if (se->exited) {
2574 exit(0);
2575 }
2576
2577 if (WIFEXITED(wstatus)) {
2578 exit(WEXITSTATUS(wstatus));
2579 }
2580
2581 exit(1);
2582 }
2583
2584 /* Send us SIGTERM when the parent thread terminates, see prctl(2) */
2585 prctl(PR_SET_PDEATHSIG, SIGTERM);
2586
2587 /*
2588 * If the mounts have shared propagation then we want to opt out so our
2589 * mount changes don't affect the parent mount namespace.
2590 */
2591 if (mount(NULL, "/", NULL, MS_REC | MS_SLAVE, NULL) < 0) {
2592 fuse_log(FUSE_LOG_ERR, "mount(/, MS_REC|MS_SLAVE): %m\n");
2593 exit(1);
2594 }
2595
2596 /* The child must remount /proc to use the new pid namespace */
2597 if (mount("proc", "/proc", "proc",
2598 MS_NODEV | MS_NOEXEC | MS_NOSUID | MS_RELATIME, NULL) < 0) {
2599 fuse_log(FUSE_LOG_ERR, "mount(/proc): %m\n");
2600 exit(1);
2601 }
2602
2603 /* Now we can get our /proc/self/fd directory file descriptor */
2604 lo->proc_self_fd = open("/proc/self/fd", O_PATH);
2605 if (lo->proc_self_fd == -1) {
2606 fuse_log(FUSE_LOG_ERR, "open(/proc/self/fd, O_PATH): %m\n");
d74830d1
SH
2607 exit(1);
2608 }
2609}
2610
2405f3c0
DDAG
2611/*
2612 * Capture the capability state, we'll need to restore this for individual
2613 * threads later; see load_capng.
2614 */
2615static void setup_capng(void)
2616{
2617 /* Note this accesses /proc so has to happen before the sandbox */
2618 if (capng_get_caps_process()) {
2619 fuse_log(FUSE_LOG_ERR, "capng_get_caps_process\n");
2620 exit(1);
2621 }
2622 pthread_mutex_init(&cap.mutex, NULL);
2623 pthread_mutex_lock(&cap.mutex);
2624 cap.saved = capng_save_state();
2625 if (!cap.saved) {
2626 fuse_log(FUSE_LOG_ERR, "capng_save_state\n");
2627 exit(1);
2628 }
2629 pthread_mutex_unlock(&cap.mutex);
2630}
2631
2632static void cleanup_capng(void)
2633{
2634 free(cap.saved);
2635 cap.saved = NULL;
2636 pthread_mutex_destroy(&cap.mutex);
2637}
2638
2639
8e1d4ef2
SH
2640/*
2641 * Make the source directory our root so symlinks cannot escape and no other
2642 * files are accessible. Assumes unshare(CLONE_NEWNS) was already called.
2643 */
2644static void setup_mounts(const char *source)
5baa3b8e
SH
2645{
2646 int oldroot;
2647 int newroot;
2648
8e1d4ef2
SH
2649 if (mount(source, source, NULL, MS_BIND, NULL) < 0) {
2650 fuse_log(FUSE_LOG_ERR, "mount(%s, %s, MS_BIND): %m\n", source, source);
2651 exit(1);
2652 }
2653
2654 /* This magic is based on lxc's lxc_pivot_root() */
5baa3b8e
SH
2655 oldroot = open("/", O_DIRECTORY | O_RDONLY | O_CLOEXEC);
2656 if (oldroot < 0) {
2657 fuse_log(FUSE_LOG_ERR, "open(/): %m\n");
2658 exit(1);
2659 }
2660
2661 newroot = open(source, O_DIRECTORY | O_RDONLY | O_CLOEXEC);
2662 if (newroot < 0) {
2663 fuse_log(FUSE_LOG_ERR, "open(%s): %m\n", source);
2664 exit(1);
2665 }
2666
2667 if (fchdir(newroot) < 0) {
2668 fuse_log(FUSE_LOG_ERR, "fchdir(newroot): %m\n");
2669 exit(1);
2670 }
2671
2672 if (syscall(__NR_pivot_root, ".", ".") < 0) {
2673 fuse_log(FUSE_LOG_ERR, "pivot_root(., .): %m\n");
2674 exit(1);
2675 }
2676
2677 if (fchdir(oldroot) < 0) {
2678 fuse_log(FUSE_LOG_ERR, "fchdir(oldroot): %m\n");
2679 exit(1);
2680 }
2681
2682 if (mount("", ".", "", MS_SLAVE | MS_REC, NULL) < 0) {
2683 fuse_log(FUSE_LOG_ERR, "mount(., MS_SLAVE | MS_REC): %m\n");
2684 exit(1);
2685 }
2686
2687 if (umount2(".", MNT_DETACH) < 0) {
2688 fuse_log(FUSE_LOG_ERR, "umount2(., MNT_DETACH): %m\n");
2689 exit(1);
2690 }
2691
2692 if (fchdir(newroot) < 0) {
2693 fuse_log(FUSE_LOG_ERR, "fchdir(newroot): %m\n");
2694 exit(1);
2695 }
2696
2697 close(newroot);
2698 close(oldroot);
2699}
2700
5baa3b8e
SH
2701/*
2702 * Lock down this process to prevent access to other processes or files outside
2703 * source directory. This reduces the impact of arbitrary code execution bugs.
2704 */
f185621d
SH
2705static void setup_sandbox(struct lo_data *lo, struct fuse_session *se,
2706 bool enable_syslog)
5baa3b8e 2707{
8e1d4ef2
SH
2708 setup_namespaces(lo, se);
2709 setup_mounts(lo->source);
f185621d 2710 setup_seccomp(enable_syslog);
5baa3b8e
SH
2711}
2712
01a6dc95
SH
2713/* Raise the maximum number of open file descriptors */
2714static void setup_nofile_rlimit(void)
2715{
2716 const rlim_t max_fds = 1000000;
2717 struct rlimit rlim;
2718
2719 if (getrlimit(RLIMIT_NOFILE, &rlim) < 0) {
2720 fuse_log(FUSE_LOG_ERR, "getrlimit(RLIMIT_NOFILE): %m\n");
2721 exit(1);
2722 }
2723
2724 if (rlim.rlim_cur >= max_fds) {
2725 return; /* nothing to do */
2726 }
2727
2728 rlim.rlim_cur = max_fds;
2729 rlim.rlim_max = max_fds;
2730
2731 if (setrlimit(RLIMIT_NOFILE, &rlim) < 0) {
2732 /* Ignore SELinux denials */
2733 if (errno == EPERM) {
2734 return;
2735 }
2736
2737 fuse_log(FUSE_LOG_ERR, "setrlimit(RLIMIT_NOFILE): %m\n");
2738 exit(1);
2739 }
2740}
2741
f185621d
SH
2742static void log_func(enum fuse_log_level level, const char *fmt, va_list ap)
2743{
36f38469
MM
2744 g_autofree char *localfmt = NULL;
2745
d240314a
EG
2746 if (current_log_level < level) {
2747 return;
2748 }
2749
36f38469 2750 if (current_log_level == FUSE_LOG_DEBUG) {
50fb955a
MM
2751 if (!use_syslog) {
2752 localfmt = g_strdup_printf("[%" PRId64 "] [ID: %08ld] %s",
2753 get_clock(), syscall(__NR_gettid), fmt);
2754 } else {
2755 localfmt = g_strdup_printf("[ID: %08ld] %s", syscall(__NR_gettid),
2756 fmt);
2757 }
36f38469
MM
2758 fmt = localfmt;
2759 }
2760
f185621d
SH
2761 if (use_syslog) {
2762 int priority = LOG_ERR;
2763 switch (level) {
2764 case FUSE_LOG_EMERG:
2765 priority = LOG_EMERG;
2766 break;
2767 case FUSE_LOG_ALERT:
2768 priority = LOG_ALERT;
2769 break;
2770 case FUSE_LOG_CRIT:
2771 priority = LOG_CRIT;
2772 break;
2773 case FUSE_LOG_ERR:
2774 priority = LOG_ERR;
2775 break;
2776 case FUSE_LOG_WARNING:
2777 priority = LOG_WARNING;
2778 break;
2779 case FUSE_LOG_NOTICE:
2780 priority = LOG_NOTICE;
2781 break;
2782 case FUSE_LOG_INFO:
2783 priority = LOG_INFO;
2784 break;
2785 case FUSE_LOG_DEBUG:
2786 priority = LOG_DEBUG;
2787 break;
2788 }
2789 vsyslog(priority, fmt, ap);
2790 } else {
2791 vfprintf(stderr, fmt, ap);
2792 }
2793}
2794
3ca8a2b1
MS
2795static void setup_root(struct lo_data *lo, struct lo_inode *root)
2796{
2797 int fd, res;
2798 struct stat stat;
2799
2800 fd = open("/", O_PATH);
2801 if (fd == -1) {
2802 fuse_log(FUSE_LOG_ERR, "open(%s, O_PATH): %m\n", lo->source);
2803 exit(1);
2804 }
2805
2806 res = fstatat(fd, "", &stat, AT_EMPTY_PATH | AT_SYMLINK_NOFOLLOW);
2807 if (res == -1) {
2808 fuse_log(FUSE_LOG_ERR, "fstatat(%s): %m\n", lo->source);
2809 exit(1);
2810 }
2811
2812 root->is_symlink = false;
2813 root->fd = fd;
bfc50a6e
MS
2814 root->key.ino = stat.st_ino;
2815 root->key.dev = stat.st_dev;
1222f015 2816 root->nlookup = 2;
c241aa94 2817 g_atomic_int_set(&root->refcount, 2);
3ca8a2b1
MS
2818}
2819
bfc50a6e
MS
2820static guint lo_key_hash(gconstpointer key)
2821{
2822 const struct lo_key *lkey = key;
2823
2824 return (guint)lkey->ino + (guint)lkey->dev;
2825}
2826
2827static gboolean lo_key_equal(gconstpointer a, gconstpointer b)
2828{
2829 const struct lo_key *la = a;
2830 const struct lo_key *lb = b;
2831
2832 return la->ino == lb->ino && la->dev == lb->dev;
2833}
2834
18a69cbb
LB
2835static void fuse_lo_data_cleanup(struct lo_data *lo)
2836{
2837 if (lo->inodes) {
2838 g_hash_table_destroy(lo->inodes);
2839 }
2840 lo_map_destroy(&lo->fd_map);
2841 lo_map_destroy(&lo->dirp_map);
2842 lo_map_destroy(&lo->ino_map);
2843
2844 if (lo->proc_self_fd >= 0) {
2845 close(lo->proc_self_fd);
2846 }
2847
2848 if (lo->root.fd >= 0) {
2849 close(lo->root.fd);
2850 }
2851
2852 free(lo->source);
2853}
2854
7c6b6602
DDAG
2855int main(int argc, char *argv[])
2856{
7387863d
DDAG
2857 struct fuse_args args = FUSE_ARGS_INIT(argc, argv);
2858 struct fuse_session *se;
2859 struct fuse_cmdline_opts opts;
9f59d175
SH
2860 struct lo_data lo = {
2861 .debug = 0,
2862 .writeback = 0,
0e81414c 2863 .posix_lock = 1,
9f59d175
SH
2864 .proc_self_fd = -1,
2865 };
92fb57b8 2866 struct lo_map_elem *root_elem;
7387863d
DDAG
2867 int ret = -1;
2868
2869 /* Don't mask creation mode, kernel already did that */
2870 umask(0);
2871
2872 pthread_mutex_init(&lo.mutex, NULL);
bfc50a6e 2873 lo.inodes = g_hash_table_new(lo_key_hash, lo_key_equal);
7387863d 2874 lo.root.fd = -1;
92fb57b8 2875 lo.root.fuse_ino = FUSE_ROOT_ID;
230e777b 2876 lo.cache = CACHE_AUTO;
7387863d 2877
92fb57b8
SH
2878 /*
2879 * Set up the ino map like this:
2880 * [0] Reserved (will not be used)
2881 * [1] Root inode
2882 */
2883 lo_map_init(&lo.ino_map);
2884 lo_map_reserve(&lo.ino_map, 0)->in_use = false;
2885 root_elem = lo_map_reserve(&lo.ino_map, lo.root.fuse_ino);
2886 root_elem->inode = &lo.root;
2887
b39bce12 2888 lo_map_init(&lo.dirp_map);
73b4d19d 2889 lo_map_init(&lo.fd_map);
b39bce12 2890
7387863d 2891 if (fuse_parse_cmdline(&args, &opts) != 0) {
c6de8046 2892 goto err_out1;
7387863d 2893 }
f185621d
SH
2894 fuse_set_log_func(log_func);
2895 use_syslog = opts.syslog;
2896 if (use_syslog) {
2897 openlog("virtiofsd", LOG_PID, LOG_DAEMON);
2898 }
c6de8046 2899
7387863d 2900 if (opts.show_help) {
67aab022 2901 printf("usage: %s [options]\n\n", argv[0]);
7387863d 2902 fuse_cmdline_help();
4ff075f7 2903 printf(" -o source=PATH shared directory tree\n");
7387863d
DDAG
2904 fuse_lowlevel_help();
2905 ret = 0;
2906 goto err_out1;
2907 } else if (opts.show_version) {
2908 fuse_lowlevel_version();
2909 ret = 0;
2910 goto err_out1;
45018fbb
SH
2911 } else if (opts.print_capabilities) {
2912 print_capabilities();
2913 ret = 0;
2914 goto err_out1;
7387863d
DDAG
2915 }
2916
7387863d 2917 if (fuse_opt_parse(&args, &lo, lo_opts, NULL) == -1) {
c6de8046 2918 goto err_out1;
7387863d
DDAG
2919 }
2920
d240314a
EG
2921 /*
2922 * log_level is 0 if not configured via cmd options (0 is LOG_EMERG,
2923 * and we don't use this log level).
2924 */
2925 if (opts.log_level != 0) {
2926 current_log_level = opts.log_level;
2927 }
7387863d 2928 lo.debug = opts.debug;
d240314a
EG
2929 if (lo.debug) {
2930 current_log_level = FUSE_LOG_DEBUG;
2931 }
7387863d
DDAG
2932 if (lo.source) {
2933 struct stat stat;
2934 int res;
2935
2936 res = lstat(lo.source, &stat);
2937 if (res == -1) {
2938 fuse_log(FUSE_LOG_ERR, "failed to stat source (\"%s\"): %m\n",
2939 lo.source);
2940 exit(1);
2941 }
2942 if (!S_ISDIR(stat.st_mode)) {
2943 fuse_log(FUSE_LOG_ERR, "source is not a directory\n");
2944 exit(1);
2945 }
7387863d 2946 } else {
eb68a33b 2947 lo.source = strdup("/");
7387863d 2948 }
7387863d
DDAG
2949 if (!lo.timeout_set) {
2950 switch (lo.cache) {
230e777b 2951 case CACHE_NONE:
7387863d
DDAG
2952 lo.timeout = 0.0;
2953 break;
2954
230e777b 2955 case CACHE_AUTO:
7387863d
DDAG
2956 lo.timeout = 1.0;
2957 break;
2958
2959 case CACHE_ALWAYS:
2960 lo.timeout = 86400.0;
2961 break;
2962 }
2963 } else if (lo.timeout < 0) {
2964 fuse_log(FUSE_LOG_ERR, "timeout is negative (%lf)\n", lo.timeout);
2965 exit(1);
2966 }
2967
7387863d
DDAG
2968 se = fuse_session_new(&args, &lo_oper, sizeof(lo_oper), &lo);
2969 if (se == NULL) {
2970 goto err_out1;
2971 }
2972
2973 if (fuse_set_signal_handlers(se) != 0) {
2974 goto err_out2;
2975 }
2976
67aab022 2977 if (fuse_session_mount(se) != 0) {
7387863d
DDAG
2978 goto err_out3;
2979 }
2980
2981 fuse_daemonize(opts.foreground);
2982
01a6dc95
SH
2983 setup_nofile_rlimit();
2984
2405f3c0
DDAG
2985 /* Must be before sandbox since it wants /proc */
2986 setup_capng();
2987
f185621d 2988 setup_sandbox(&lo, se, opts.syslog);
5baa3b8e 2989
3ca8a2b1 2990 setup_root(&lo, &lo.root);
7387863d 2991 /* Block until ctrl+c or fusermount -u */
f6f3573c 2992 ret = virtio_loop(se);
7387863d
DDAG
2993
2994 fuse_session_unmount(se);
2405f3c0 2995 cleanup_capng();
7c6b6602 2996err_out3:
7387863d 2997 fuse_remove_signal_handlers(se);
7c6b6602 2998err_out2:
7387863d 2999 fuse_session_destroy(se);
7c6b6602 3000err_out1:
7387863d 3001 fuse_opt_free_args(&args);
7c6b6602 3002
18a69cbb 3003 fuse_lo_data_cleanup(&lo);
eb68a33b 3004
7387863d 3005 return ret ? 1 : 0;
7c6b6602 3006}