2010-08-13 03:01:08 +02:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2010 The Android Open Source Project
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <sys/mount.h>
|
|
|
|
#include <sys/stat.h>
|
2010-08-16 20:14:44 +02:00
|
|
|
#include <sys/statfs.h>
|
2010-08-13 03:01:08 +02:00
|
|
|
#include <sys/uio.h>
|
|
|
|
#include <dirent.h>
|
2012-05-26 00:35:28 +02:00
|
|
|
#include <limits.h>
|
2011-01-13 19:38:42 +01:00
|
|
|
#include <ctype.h>
|
2012-05-26 23:32:54 +02:00
|
|
|
#include <pthread.h>
|
2010-08-13 03:01:08 +02:00
|
|
|
|
2010-08-13 03:21:12 +02:00
|
|
|
#include <private/android_filesystem_config.h>
|
|
|
|
|
2010-08-13 03:01:08 +02:00
|
|
|
#include "fuse.h"
|
|
|
|
|
|
|
|
/* README
|
|
|
|
*
|
|
|
|
* What is this?
|
|
|
|
*
|
|
|
|
* sdcard is a program that uses FUSE to emulate FAT-on-sdcard style
|
|
|
|
* directory permissions (all files are given fixed owner, group, and
|
|
|
|
* permissions at creation, owner, group, and permissions are not
|
|
|
|
* changeable, symlinks and hardlinks are not createable, etc.
|
|
|
|
*
|
|
|
|
* usage: sdcard <path> <uid> <gid>
|
|
|
|
*
|
|
|
|
* It must be run as root, but will change to uid/gid as soon as it
|
2012-04-10 02:09:38 +02:00
|
|
|
* mounts a filesystem on /storage/sdcard. It will refuse to run if uid or
|
2010-08-13 03:01:08 +02:00
|
|
|
* gid are zero.
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* Things I believe to be true:
|
|
|
|
*
|
|
|
|
* - ops that return a fuse_entry (LOOKUP, MKNOD, MKDIR, LINK, SYMLINK,
|
|
|
|
* CREAT) must bump that node's refcount
|
|
|
|
* - don't forget that FORGET can forget multiple references (req->nlookup)
|
|
|
|
* - if an op that returns a fuse_entry fails writing the reply to the
|
|
|
|
* kernel, you must rollback the refcount to reflect the reference the
|
|
|
|
* kernel did not actually acquire
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define FUSE_TRACE 0
|
|
|
|
|
|
|
|
#if FUSE_TRACE
|
|
|
|
#define TRACE(x...) fprintf(stderr,x)
|
|
|
|
#else
|
|
|
|
#define TRACE(x...) do {} while (0)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define ERROR(x...) fprintf(stderr,x)
|
|
|
|
|
|
|
|
#define FUSE_UNKNOWN_INO 0xffffffff
|
|
|
|
|
2012-04-10 02:09:38 +02:00
|
|
|
#define MOUNT_POINT "/storage/sdcard0"
|
2010-08-16 20:14:44 +02:00
|
|
|
|
2012-05-25 23:07:47 +02:00
|
|
|
/* Maximum number of bytes to write in one request. */
|
|
|
|
#define MAX_WRITE (256 * 1024)
|
|
|
|
|
|
|
|
/* Maximum number of bytes to read in one request. */
|
|
|
|
#define MAX_READ (128 * 1024)
|
|
|
|
|
|
|
|
/* Largest possible request.
|
|
|
|
* The request size is bounded by the maximum size of a FUSE_WRITE request because it has
|
|
|
|
* the largest possible data payload. */
|
|
|
|
#define MAX_REQUEST_SIZE (sizeof(struct fuse_in_header) + sizeof(struct fuse_write_in) + MAX_WRITE)
|
|
|
|
|
2012-05-26 23:32:54 +02:00
|
|
|
/* Default number of threads. */
|
|
|
|
#define DEFAULT_NUM_THREADS 2
|
|
|
|
|
|
|
|
/* Pseudo-error constant used to indicate that no fuse status is needed
|
|
|
|
* or that a reply has already been written. */
|
|
|
|
#define NO_STATUS 1
|
|
|
|
|
2010-08-13 03:01:08 +02:00
|
|
|
struct handle {
|
|
|
|
int fd;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct dirhandle {
|
|
|
|
DIR *d;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct node {
|
2012-05-26 23:32:54 +02:00
|
|
|
__u32 refcount;
|
2010-08-13 03:01:08 +02:00
|
|
|
__u64 nid;
|
|
|
|
__u64 gen;
|
|
|
|
|
2010-10-14 20:04:26 +02:00
|
|
|
struct node *next; /* per-dir sibling list */
|
|
|
|
struct node *child; /* first contained file by this dir */
|
|
|
|
struct node *parent; /* containing directory */
|
2010-08-13 03:01:08 +02:00
|
|
|
|
2012-05-26 23:32:54 +02:00
|
|
|
size_t namelen;
|
2010-10-14 20:04:26 +02:00
|
|
|
char *name;
|
2011-01-23 23:46:30 +01:00
|
|
|
/* If non-null, this is the real name of the file in the underlying storage.
|
|
|
|
* This may differ from the field "name" only by case.
|
|
|
|
* strlen(actual_name) will always equal strlen(name), so it is safe to use
|
|
|
|
* namelen for both fields.
|
|
|
|
*/
|
|
|
|
char *actual_name;
|
2010-08-13 03:01:08 +02:00
|
|
|
};
|
|
|
|
|
2012-05-26 00:35:28 +02:00
|
|
|
/* Global data structure shared by all fuse handlers. */
|
2010-08-13 03:01:08 +02:00
|
|
|
struct fuse {
|
2012-05-26 23:32:54 +02:00
|
|
|
pthread_mutex_t lock;
|
2010-08-13 03:01:08 +02:00
|
|
|
|
2012-05-26 23:32:54 +02:00
|
|
|
__u64 next_generation;
|
2010-08-13 03:01:08 +02:00
|
|
|
int fd;
|
|
|
|
struct node root;
|
2012-05-26 00:35:28 +02:00
|
|
|
char rootpath[PATH_MAX];
|
2010-08-13 03:01:08 +02:00
|
|
|
};
|
|
|
|
|
2012-05-26 00:35:28 +02:00
|
|
|
/* Private data used by a single fuse handler. */
|
|
|
|
struct fuse_handler {
|
2012-05-26 23:32:54 +02:00
|
|
|
struct fuse* fuse;
|
|
|
|
int token;
|
|
|
|
|
2012-05-26 00:35:28 +02:00
|
|
|
/* To save memory, we never use the contents of the request buffer and the read
|
|
|
|
* buffer at the same time. This allows us to share the underlying storage. */
|
|
|
|
union {
|
|
|
|
__u8 request_buffer[MAX_REQUEST_SIZE];
|
|
|
|
__u8 read_buffer[MAX_READ];
|
|
|
|
};
|
|
|
|
};
|
2010-08-13 03:01:08 +02:00
|
|
|
|
2012-05-26 23:32:54 +02:00
|
|
|
static inline void *id_to_ptr(__u64 nid)
|
|
|
|
{
|
|
|
|
return (void *) (uintptr_t) nid;
|
|
|
|
}
|
2011-01-18 06:06:26 +01:00
|
|
|
|
2012-05-26 23:32:54 +02:00
|
|
|
static inline __u64 ptr_to_id(void *ptr)
|
|
|
|
{
|
|
|
|
return (__u64) (uintptr_t) ptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void acquire_node_locked(struct node* node)
|
|
|
|
{
|
|
|
|
node->refcount++;
|
|
|
|
TRACE("ACQUIRE %p (%s) rc=%d\n", node, node->name, node->refcount);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void remove_node_from_parent_locked(struct node* node);
|
|
|
|
|
|
|
|
static void release_node_locked(struct node* node)
|
|
|
|
{
|
|
|
|
TRACE("RELEASE %p (%s) rc=%d\n", node, node->name, node->refcount);
|
|
|
|
if (node->refcount > 0) {
|
|
|
|
node->refcount--;
|
|
|
|
if (!node->refcount) {
|
|
|
|
TRACE("DESTROY %p (%s)\n", node, node->name);
|
|
|
|
remove_node_from_parent_locked(node);
|
|
|
|
|
|
|
|
/* TODO: remove debugging - poison memory */
|
|
|
|
memset(node->name, 0xef, node->namelen);
|
|
|
|
free(node->name);
|
|
|
|
free(node->actual_name);
|
|
|
|
memset(node, 0xfc, sizeof(*node));
|
|
|
|
free(node);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
ERROR("Zero refcnt %p\n", node);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void add_node_to_parent_locked(struct node *node, struct node *parent) {
|
|
|
|
node->parent = parent;
|
|
|
|
node->next = parent->child;
|
|
|
|
parent->child = node;
|
|
|
|
acquire_node_locked(parent);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void remove_node_from_parent_locked(struct node* node)
|
|
|
|
{
|
|
|
|
if (node->parent) {
|
|
|
|
if (node->parent->child == node) {
|
|
|
|
node->parent->child = node->parent->child->next;
|
|
|
|
} else {
|
|
|
|
struct node *node2;
|
|
|
|
node2 = node->parent->child;
|
|
|
|
while (node2->next != node)
|
|
|
|
node2 = node2->next;
|
|
|
|
node2->next = node->next;
|
|
|
|
}
|
|
|
|
release_node_locked(node->parent);
|
|
|
|
node->parent = NULL;
|
|
|
|
node->next = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Gets the absolute path to a node into the provided buffer.
|
|
|
|
*
|
|
|
|
* Populates 'buf' with the path and returns the length of the path on success,
|
|
|
|
* or returns -1 if the path is too long for the provided buffer.
|
2010-09-22 02:14:31 +02:00
|
|
|
*/
|
2012-05-26 23:32:54 +02:00
|
|
|
static ssize_t get_node_path_locked(struct node* node, char* buf, size_t bufsize)
|
2010-08-13 03:01:08 +02:00
|
|
|
{
|
2012-05-26 23:32:54 +02:00
|
|
|
size_t namelen = node->namelen;
|
|
|
|
if (bufsize < namelen + 1) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
ssize_t pathlen = 0;
|
|
|
|
if (node->parent) {
|
|
|
|
pathlen = get_node_path_locked(node->parent, buf, bufsize - namelen - 2);
|
|
|
|
if (pathlen < 0) {
|
|
|
|
return -1;
|
2011-01-23 23:46:30 +01:00
|
|
|
}
|
2012-05-26 23:32:54 +02:00
|
|
|
buf[pathlen++] = '/';
|
2010-08-13 03:01:08 +02:00
|
|
|
}
|
|
|
|
|
2012-05-26 23:32:54 +02:00
|
|
|
const char* name = node->actual_name ? node->actual_name : node->name;
|
|
|
|
memcpy(buf + pathlen, name, namelen + 1); /* include trailing \0 */
|
|
|
|
return pathlen + namelen;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Finds the absolute path of a file within a given directory.
|
|
|
|
* Performs a case-insensitive search for the file and sets the buffer to the path
|
|
|
|
* of the first matching file. If 'search' is zero or if no match is found, sets
|
|
|
|
* the buffer to the path that the file would have, assuming the name were case-sensitive.
|
|
|
|
*
|
|
|
|
* Populates 'buf' with the path and returns the actual name (within 'buf') on success,
|
|
|
|
* or returns NULL if the path is too long for the provided buffer.
|
|
|
|
*/
|
|
|
|
static char* find_file_within(const char* path, const char* name,
|
|
|
|
char* buf, size_t bufsize, int search)
|
|
|
|
{
|
|
|
|
size_t pathlen = strlen(path);
|
|
|
|
size_t namelen = strlen(name);
|
|
|
|
size_t childlen = pathlen + namelen + 1;
|
|
|
|
char* actual;
|
|
|
|
|
|
|
|
if (bufsize <= childlen) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
memcpy(buf, path, pathlen);
|
|
|
|
buf[pathlen] = '/';
|
|
|
|
actual = buf + pathlen + 1;
|
|
|
|
memcpy(actual, name, namelen + 1);
|
|
|
|
|
|
|
|
if (search && access(buf, F_OK)) {
|
2011-01-23 23:46:30 +01:00
|
|
|
struct dirent* entry;
|
2012-05-26 23:32:54 +02:00
|
|
|
DIR* dir = opendir(path);
|
2011-01-23 23:46:30 +01:00
|
|
|
if (!dir) {
|
|
|
|
ERROR("opendir %s failed: %s", path, strerror(errno));
|
2012-05-26 23:32:54 +02:00
|
|
|
return actual;
|
2011-01-23 23:46:30 +01:00
|
|
|
}
|
|
|
|
while ((entry = readdir(dir))) {
|
2012-05-26 23:32:54 +02:00
|
|
|
if (!strcasecmp(entry->d_name, name)) {
|
|
|
|
/* we have a match - replace the name, don't need to copy the null again */
|
|
|
|
memcpy(actual, entry->d_name, namelen);
|
2011-01-23 23:46:30 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
closedir(dir);
|
|
|
|
}
|
2012-05-26 23:32:54 +02:00
|
|
|
return actual;
|
2011-01-23 23:46:30 +01:00
|
|
|
}
|
|
|
|
|
2012-05-26 23:32:54 +02:00
|
|
|
static void attr_from_stat(struct fuse_attr *attr, const struct stat *s, __u64 nid)
|
2011-01-23 23:46:30 +01:00
|
|
|
{
|
2012-05-26 23:32:54 +02:00
|
|
|
attr->ino = nid;
|
2010-08-13 03:01:08 +02:00
|
|
|
attr->size = s->st_size;
|
|
|
|
attr->blocks = s->st_blocks;
|
2010-08-16 20:14:44 +02:00
|
|
|
attr->atime = s->st_atime;
|
|
|
|
attr->mtime = s->st_mtime;
|
|
|
|
attr->ctime = s->st_ctime;
|
|
|
|
attr->atimensec = s->st_atime_nsec;
|
|
|
|
attr->mtimensec = s->st_mtime_nsec;
|
|
|
|
attr->ctimensec = s->st_ctime_nsec;
|
2010-08-13 03:01:08 +02:00
|
|
|
attr->mode = s->st_mode;
|
|
|
|
attr->nlink = s->st_nlink;
|
|
|
|
|
2010-08-13 03:21:12 +02:00
|
|
|
/* force permissions to something reasonable:
|
|
|
|
* world readable
|
|
|
|
* writable by the sdcard group
|
|
|
|
*/
|
|
|
|
if (attr->mode & 0100) {
|
|
|
|
attr->mode = (attr->mode & (~0777)) | 0775;
|
|
|
|
} else {
|
|
|
|
attr->mode = (attr->mode & (~0777)) | 0664;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* all files owned by root.sdcard */
|
|
|
|
attr->uid = 0;
|
|
|
|
attr->gid = AID_SDCARD_RW;
|
2010-08-13 03:01:08 +02:00
|
|
|
}
|
|
|
|
|
2012-05-26 23:32:54 +02:00
|
|
|
struct node *create_node_locked(struct fuse* fuse,
|
|
|
|
struct node *parent, const char *name, const char* actual_name)
|
2010-08-13 03:01:08 +02:00
|
|
|
{
|
|
|
|
struct node *node;
|
2012-05-26 23:32:54 +02:00
|
|
|
size_t namelen = strlen(name);
|
2010-08-13 03:01:08 +02:00
|
|
|
|
2010-10-14 20:04:26 +02:00
|
|
|
node = calloc(1, sizeof(struct node));
|
2012-05-26 23:32:54 +02:00
|
|
|
if (!node) {
|
|
|
|
return NULL;
|
2010-08-13 03:01:08 +02:00
|
|
|
}
|
2010-10-14 20:04:26 +02:00
|
|
|
node->name = malloc(namelen + 1);
|
2012-05-26 23:32:54 +02:00
|
|
|
if (!node->name) {
|
2010-10-14 20:04:26 +02:00
|
|
|
free(node);
|
2012-05-26 23:32:54 +02:00
|
|
|
return NULL;
|
2010-10-14 20:04:26 +02:00
|
|
|
}
|
2010-08-13 03:01:08 +02:00
|
|
|
memcpy(node->name, name, namelen + 1);
|
2012-05-26 23:32:54 +02:00
|
|
|
if (strcmp(name, actual_name)) {
|
|
|
|
node->actual_name = malloc(namelen + 1);
|
|
|
|
if (!node->actual_name) {
|
|
|
|
free(node->name);
|
|
|
|
free(node);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
memcpy(node->actual_name, actual_name, namelen + 1);
|
|
|
|
}
|
2010-08-13 03:01:08 +02:00
|
|
|
node->namelen = namelen;
|
2012-05-26 23:32:54 +02:00
|
|
|
node->nid = ptr_to_id(node);
|
|
|
|
node->gen = fuse->next_generation++;
|
|
|
|
acquire_node_locked(node);
|
|
|
|
add_node_to_parent_locked(node, parent);
|
2010-08-13 03:01:08 +02:00
|
|
|
return node;
|
|
|
|
}
|
|
|
|
|
2012-05-26 23:32:54 +02:00
|
|
|
static int rename_node_locked(struct node *node, const char *name,
|
|
|
|
const char* actual_name)
|
2010-10-14 20:04:26 +02:00
|
|
|
{
|
2012-05-26 23:32:54 +02:00
|
|
|
size_t namelen = strlen(name);
|
|
|
|
int need_actual_name = strcmp(name, actual_name);
|
|
|
|
|
|
|
|
/* make the storage bigger without actually changing the name
|
|
|
|
* in case an error occurs part way */
|
|
|
|
if (namelen > node->namelen) {
|
|
|
|
char* new_name = realloc(node->name, namelen + 1);
|
|
|
|
if (!new_name) {
|
|
|
|
return -ENOMEM;
|
|
|
|
}
|
|
|
|
node->name = new_name;
|
|
|
|
if (need_actual_name && node->actual_name) {
|
|
|
|
char* new_actual_name = realloc(node->actual_name, namelen + 1);
|
|
|
|
if (!new_actual_name) {
|
|
|
|
return -ENOMEM;
|
|
|
|
}
|
|
|
|
node->actual_name = new_actual_name;
|
|
|
|
}
|
|
|
|
}
|
2010-08-13 03:01:08 +02:00
|
|
|
|
2012-05-26 23:32:54 +02:00
|
|
|
/* update the name, taking care to allocate storage before overwriting the old name */
|
|
|
|
if (need_actual_name) {
|
|
|
|
if (!node->actual_name) {
|
|
|
|
node->actual_name = malloc(namelen + 1);
|
|
|
|
if (!node->actual_name) {
|
|
|
|
return -ENOMEM;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
memcpy(node->actual_name, actual_name, namelen + 1);
|
|
|
|
} else {
|
|
|
|
free(node->actual_name);
|
|
|
|
node->actual_name = NULL;
|
|
|
|
}
|
|
|
|
memcpy(node->name, name, namelen + 1);
|
|
|
|
node->namelen = namelen;
|
|
|
|
return 0;
|
2010-08-13 03:01:08 +02:00
|
|
|
}
|
|
|
|
|
2012-05-26 23:32:54 +02:00
|
|
|
static struct node *lookup_node_by_id_locked(struct fuse *fuse, __u64 nid)
|
2010-08-13 03:01:08 +02:00
|
|
|
{
|
2012-05-26 23:32:54 +02:00
|
|
|
if (nid == FUSE_ROOT_ID) {
|
2010-08-13 03:01:08 +02:00
|
|
|
return &fuse->root;
|
|
|
|
} else {
|
|
|
|
return id_to_ptr(nid);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-05-26 23:32:54 +02:00
|
|
|
static struct node* lookup_node_and_path_by_id_locked(struct fuse* fuse, __u64 nid,
|
|
|
|
char* buf, size_t bufsize)
|
2010-08-13 03:01:08 +02:00
|
|
|
{
|
2012-05-26 23:32:54 +02:00
|
|
|
struct node* node = lookup_node_by_id_locked(fuse, nid);
|
|
|
|
if (node && get_node_path_locked(node, buf, bufsize) < 0) {
|
|
|
|
node = NULL;
|
2010-08-13 03:01:08 +02:00
|
|
|
}
|
2012-05-26 23:32:54 +02:00
|
|
|
return node;
|
2010-08-13 03:01:08 +02:00
|
|
|
}
|
|
|
|
|
2012-05-26 23:32:54 +02:00
|
|
|
static struct node *lookup_child_by_name_locked(struct node *node, const char *name)
|
2010-08-13 03:01:08 +02:00
|
|
|
{
|
|
|
|
for (node = node->child; node; node = node->next) {
|
2012-05-26 23:32:54 +02:00
|
|
|
/* use exact string comparison, nodes that differ by case
|
|
|
|
* must be considered distinct even if they refer to the same
|
|
|
|
* underlying file as otherwise operations such as "mv x x"
|
|
|
|
* will not work because the source and target nodes are the same. */
|
|
|
|
if (!strcmp(name, node->name)) {
|
2010-10-14 20:04:26 +02:00
|
|
|
return node;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-05-26 23:32:54 +02:00
|
|
|
static struct node* acquire_or_create_child_locked(
|
|
|
|
struct fuse* fuse, struct node* parent,
|
|
|
|
const char* name, const char* actual_name)
|
2010-08-13 03:01:08 +02:00
|
|
|
{
|
2012-05-26 23:32:54 +02:00
|
|
|
struct node* child = lookup_child_by_name_locked(parent, name);
|
|
|
|
if (child) {
|
|
|
|
acquire_node_locked(child);
|
|
|
|
} else {
|
|
|
|
child = create_node_locked(fuse, parent, name, actual_name);
|
2010-08-13 03:01:08 +02:00
|
|
|
}
|
2012-05-26 23:32:54 +02:00
|
|
|
return child;
|
2010-08-13 03:01:08 +02:00
|
|
|
}
|
|
|
|
|
2012-05-26 23:32:54 +02:00
|
|
|
static void fuse_init(struct fuse *fuse, int fd, const char *path)
|
2010-08-13 03:01:08 +02:00
|
|
|
{
|
2012-05-26 23:32:54 +02:00
|
|
|
pthread_mutex_init(&fuse->lock, NULL);
|
2010-08-13 03:01:08 +02:00
|
|
|
|
2012-05-26 23:32:54 +02:00
|
|
|
fuse->fd = fd;
|
|
|
|
fuse->next_generation = 0;
|
2010-08-13 03:01:08 +02:00
|
|
|
|
2012-05-26 23:32:54 +02:00
|
|
|
memset(&fuse->root, 0, sizeof(fuse->root));
|
|
|
|
fuse->root.nid = FUSE_ROOT_ID; /* 1 */
|
|
|
|
fuse->root.refcount = 2;
|
|
|
|
fuse->root.namelen = strlen(path);
|
|
|
|
fuse->root.name = strdup(path);
|
2010-08-13 03:01:08 +02:00
|
|
|
}
|
|
|
|
|
2012-05-26 23:32:54 +02:00
|
|
|
static void fuse_status(struct fuse *fuse, __u64 unique, int err)
|
2010-08-13 03:01:08 +02:00
|
|
|
{
|
|
|
|
struct fuse_out_header hdr;
|
|
|
|
hdr.len = sizeof(hdr);
|
|
|
|
hdr.error = err;
|
|
|
|
hdr.unique = unique;
|
|
|
|
write(fuse->fd, &hdr, sizeof(hdr));
|
|
|
|
}
|
|
|
|
|
2012-05-26 23:32:54 +02:00
|
|
|
static void fuse_reply(struct fuse *fuse, __u64 unique, void *data, int len)
|
2010-08-13 03:01:08 +02:00
|
|
|
{
|
|
|
|
struct fuse_out_header hdr;
|
|
|
|
struct iovec vec[2];
|
|
|
|
int res;
|
|
|
|
|
|
|
|
hdr.len = len + sizeof(hdr);
|
|
|
|
hdr.error = 0;
|
|
|
|
hdr.unique = unique;
|
|
|
|
|
|
|
|
vec[0].iov_base = &hdr;
|
|
|
|
vec[0].iov_len = sizeof(hdr);
|
|
|
|
vec[1].iov_base = data;
|
|
|
|
vec[1].iov_len = len;
|
|
|
|
|
|
|
|
res = writev(fuse->fd, vec, 2);
|
|
|
|
if (res < 0) {
|
|
|
|
ERROR("*** REPLY FAILED *** %d\n", errno);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-05-26 23:32:54 +02:00
|
|
|
static int fuse_reply_entry(struct fuse* fuse, __u64 unique,
|
|
|
|
struct node* parent, const char* name, const char* actual_name,
|
|
|
|
const char* path)
|
2010-08-13 03:01:08 +02:00
|
|
|
{
|
2012-05-26 02:24:17 +02:00
|
|
|
struct node* node;
|
2012-05-26 23:32:54 +02:00
|
|
|
struct fuse_entry_out out;
|
|
|
|
struct stat s;
|
2010-08-13 03:01:08 +02:00
|
|
|
|
2012-05-26 23:32:54 +02:00
|
|
|
if (lstat(path, &s) < 0) {
|
|
|
|
return -errno;
|
2010-08-13 03:01:08 +02:00
|
|
|
}
|
2012-05-26 02:24:17 +02:00
|
|
|
|
2012-05-26 23:32:54 +02:00
|
|
|
pthread_mutex_lock(&fuse->lock);
|
|
|
|
node = acquire_or_create_child_locked(fuse, parent, name, actual_name);
|
|
|
|
if (!node) {
|
|
|
|
pthread_mutex_unlock(&fuse->lock);
|
|
|
|
return -ENOMEM;
|
|
|
|
}
|
|
|
|
memset(&out, 0, sizeof(out));
|
|
|
|
attr_from_stat(&out.attr, &s, node->nid);
|
|
|
|
out.attr_valid = 10;
|
|
|
|
out.entry_valid = 10;
|
2010-08-13 03:01:08 +02:00
|
|
|
out.nodeid = node->nid;
|
|
|
|
out.generation = node->gen;
|
2012-05-26 23:32:54 +02:00
|
|
|
pthread_mutex_unlock(&fuse->lock);
|
2010-08-13 03:01:08 +02:00
|
|
|
fuse_reply(fuse, unique, &out, sizeof(out));
|
2012-05-26 23:32:54 +02:00
|
|
|
return NO_STATUS;
|
2010-08-13 03:01:08 +02:00
|
|
|
}
|
|
|
|
|
2012-05-26 23:32:54 +02:00
|
|
|
static int fuse_reply_attr(struct fuse* fuse, __u64 unique, __u64 nid,
|
|
|
|
const char* path)
|
2010-08-13 03:01:08 +02:00
|
|
|
{
|
2012-05-26 23:32:54 +02:00
|
|
|
struct fuse_attr_out out;
|
|
|
|
struct stat s;
|
2012-05-26 02:24:17 +02:00
|
|
|
|
2012-05-26 23:32:54 +02:00
|
|
|
if (lstat(path, &s) < 0) {
|
|
|
|
return -errno;
|
2012-05-26 02:24:17 +02:00
|
|
|
}
|
2012-05-26 23:32:54 +02:00
|
|
|
memset(&out, 0, sizeof(out));
|
|
|
|
attr_from_stat(&out.attr, &s, nid);
|
|
|
|
out.attr_valid = 10;
|
|
|
|
fuse_reply(fuse, unique, &out, sizeof(out));
|
|
|
|
return NO_STATUS;
|
|
|
|
}
|
2012-05-26 02:24:17 +02:00
|
|
|
|
2012-05-26 23:32:54 +02:00
|
|
|
static int handle_lookup(struct fuse* fuse, struct fuse_handler* handler,
|
|
|
|
const struct fuse_in_header *hdr, const char* name)
|
|
|
|
{
|
|
|
|
struct node* parent_node;
|
|
|
|
char parent_path[PATH_MAX];
|
|
|
|
char child_path[PATH_MAX];
|
|
|
|
const char* actual_name;
|
|
|
|
|
|
|
|
pthread_mutex_lock(&fuse->lock);
|
|
|
|
parent_node = lookup_node_and_path_by_id_locked(fuse, hdr->nodeid,
|
|
|
|
parent_path, sizeof(parent_path));
|
|
|
|
TRACE("[%d] LOOKUP %s @ %llx (%s)\n", handler->token, name, hdr->nodeid,
|
|
|
|
parent_node ? parent_node->name : "?");
|
|
|
|
pthread_mutex_unlock(&fuse->lock);
|
|
|
|
|
|
|
|
if (!parent_node || !(actual_name = find_file_within(parent_path, name,
|
|
|
|
child_path, sizeof(child_path), 1))) {
|
|
|
|
return -ENOENT;
|
|
|
|
}
|
|
|
|
return fuse_reply_entry(fuse, hdr->unique, parent_node, name, actual_name, child_path);
|
2012-05-26 02:24:17 +02:00
|
|
|
}
|
|
|
|
|
2012-05-26 23:32:54 +02:00
|
|
|
static int handle_forget(struct fuse* fuse, struct fuse_handler* handler,
|
2012-05-26 02:24:17 +02:00
|
|
|
const struct fuse_in_header *hdr, const struct fuse_forget_in *req)
|
|
|
|
{
|
2012-05-26 23:32:54 +02:00
|
|
|
struct node* node;
|
2012-05-26 02:24:17 +02:00
|
|
|
|
2012-05-26 23:32:54 +02:00
|
|
|
pthread_mutex_lock(&fuse->lock);
|
|
|
|
node = lookup_node_by_id_locked(fuse, hdr->nodeid);
|
|
|
|
TRACE("[%d] FORGET #%lld @ %llx (%s)\n", handler->token, req->nlookup,
|
|
|
|
hdr->nodeid, node ? node->name : "?");
|
|
|
|
if (node) {
|
|
|
|
__u64 n = req->nlookup;
|
|
|
|
while (n--) {
|
|
|
|
release_node_locked(node);
|
|
|
|
}
|
2012-05-26 02:24:17 +02:00
|
|
|
}
|
2012-05-26 23:32:54 +02:00
|
|
|
pthread_mutex_unlock(&fuse->lock);
|
|
|
|
return NO_STATUS; /* no reply */
|
2012-05-26 02:24:17 +02:00
|
|
|
}
|
|
|
|
|
2012-05-26 23:32:54 +02:00
|
|
|
static int handle_getattr(struct fuse* fuse, struct fuse_handler* handler,
|
2012-05-26 02:24:17 +02:00
|
|
|
const struct fuse_in_header *hdr, const struct fuse_getattr_in *req)
|
|
|
|
{
|
2012-05-26 23:32:54 +02:00
|
|
|
struct node* node;
|
|
|
|
char path[PATH_MAX];
|
|
|
|
|
|
|
|
pthread_mutex_lock(&fuse->lock);
|
|
|
|
node = lookup_node_and_path_by_id_locked(fuse, hdr->nodeid, path, sizeof(path));
|
|
|
|
TRACE("[%d] GETATTR flags=%x fh=%llx @ %llx (%s)\n", handler->token,
|
|
|
|
req->getattr_flags, req->fh, hdr->nodeid, node ? node->name : "?");
|
|
|
|
pthread_mutex_unlock(&fuse->lock);
|
2012-05-26 02:24:17 +02:00
|
|
|
|
|
|
|
if (!node) {
|
2012-05-26 23:32:54 +02:00
|
|
|
return -ENOENT;
|
2012-05-26 02:24:17 +02:00
|
|
|
}
|
2012-05-26 23:32:54 +02:00
|
|
|
return fuse_reply_attr(fuse, hdr->unique, hdr->nodeid, path);
|
2012-05-26 02:24:17 +02:00
|
|
|
}
|
|
|
|
|
2012-05-26 23:32:54 +02:00
|
|
|
static int handle_setattr(struct fuse* fuse, struct fuse_handler* handler,
|
2012-05-26 02:24:17 +02:00
|
|
|
const struct fuse_in_header *hdr, const struct fuse_setattr_in *req)
|
|
|
|
{
|
2012-05-26 23:32:54 +02:00
|
|
|
struct node* node;
|
|
|
|
char path[PATH_MAX];
|
2012-05-26 02:24:17 +02:00
|
|
|
struct timespec times[2];
|
|
|
|
|
2012-05-26 23:32:54 +02:00
|
|
|
pthread_mutex_lock(&fuse->lock);
|
|
|
|
node = lookup_node_and_path_by_id_locked(fuse, hdr->nodeid, path, sizeof(path));
|
|
|
|
TRACE("[%d] SETATTR fh=%llx valid=%x @ %llx (%s)\n", handler->token,
|
|
|
|
req->fh, req->valid, hdr->nodeid, node ? node->name : "?");
|
|
|
|
pthread_mutex_unlock(&fuse->lock);
|
|
|
|
|
2012-05-26 02:24:17 +02:00
|
|
|
if (!node) {
|
2012-05-26 23:32:54 +02:00
|
|
|
return -ENOENT;
|
2012-05-26 02:24:17 +02:00
|
|
|
}
|
|
|
|
|
2012-05-26 23:32:54 +02:00
|
|
|
/* XXX: incomplete implementation on purpose.
|
|
|
|
* chmod/chown should NEVER be implemented.*/
|
2012-05-26 02:24:17 +02:00
|
|
|
|
2012-05-26 23:32:54 +02:00
|
|
|
if ((req->valid & FATTR_SIZE) && truncate(path, req->size) < 0) {
|
|
|
|
return -errno;
|
2012-05-26 02:24:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Handle changing atime and mtime. If FATTR_ATIME_and FATTR_ATIME_NOW
|
|
|
|
* are both set, then set it to the current time. Else, set it to the
|
|
|
|
* time specified in the request. Same goes for mtime. Use utimensat(2)
|
|
|
|
* as it allows ATIME and MTIME to be changed independently, and has
|
|
|
|
* nanosecond resolution which fuse also has.
|
|
|
|
*/
|
|
|
|
if (req->valid & (FATTR_ATIME | FATTR_MTIME)) {
|
|
|
|
times[0].tv_nsec = UTIME_OMIT;
|
|
|
|
times[1].tv_nsec = UTIME_OMIT;
|
|
|
|
if (req->valid & FATTR_ATIME) {
|
|
|
|
if (req->valid & FATTR_ATIME_NOW) {
|
|
|
|
times[0].tv_nsec = UTIME_NOW;
|
|
|
|
} else {
|
|
|
|
times[0].tv_sec = req->atime;
|
|
|
|
times[0].tv_nsec = req->atimensec;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (req->valid & FATTR_MTIME) {
|
|
|
|
if (req->valid & FATTR_MTIME_NOW) {
|
|
|
|
times[1].tv_nsec = UTIME_NOW;
|
|
|
|
} else {
|
|
|
|
times[1].tv_sec = req->mtime;
|
|
|
|
times[1].tv_nsec = req->mtimensec;
|
|
|
|
}
|
|
|
|
}
|
2012-05-26 23:32:54 +02:00
|
|
|
TRACE("[%d] Calling utimensat on %s with atime %ld, mtime=%ld\n",
|
|
|
|
handler->token, path, times[0].tv_sec, times[1].tv_sec);
|
|
|
|
if (utimensat(-1, path, times, 0) < 0) {
|
|
|
|
return -errno;
|
2010-08-13 03:01:08 +02:00
|
|
|
}
|
2012-05-26 02:24:17 +02:00
|
|
|
}
|
2012-05-26 23:32:54 +02:00
|
|
|
return fuse_reply_attr(fuse, hdr->unique, hdr->nodeid, path);
|
2012-05-26 02:24:17 +02:00
|
|
|
}
|
|
|
|
|
2012-05-26 23:32:54 +02:00
|
|
|
static int handle_mknod(struct fuse* fuse, struct fuse_handler* handler,
|
2012-05-26 02:24:17 +02:00
|
|
|
const struct fuse_in_header* hdr, const struct fuse_mknod_in* req, const char* name)
|
|
|
|
{
|
2012-05-26 23:32:54 +02:00
|
|
|
struct node* parent_node;
|
|
|
|
char parent_path[PATH_MAX];
|
|
|
|
char child_path[PATH_MAX];
|
|
|
|
const char* actual_name;
|
|
|
|
|
|
|
|
pthread_mutex_lock(&fuse->lock);
|
|
|
|
parent_node = lookup_node_and_path_by_id_locked(fuse, hdr->nodeid,
|
|
|
|
parent_path, sizeof(parent_path));
|
|
|
|
TRACE("[%d] MKNOD %s 0%o @ %llx (%s)\n", handler->token,
|
|
|
|
name, req->mode, hdr->nodeid, parent_node ? parent_node->name : "?");
|
|
|
|
pthread_mutex_unlock(&fuse->lock);
|
|
|
|
|
|
|
|
if (!parent_node || !(actual_name = find_file_within(parent_path, name,
|
|
|
|
child_path, sizeof(child_path), 1))) {
|
|
|
|
return -ENOENT;
|
2012-05-26 02:24:17 +02:00
|
|
|
}
|
|
|
|
__u32 mode = (req->mode & (~0777)) | 0664;
|
2012-05-26 23:32:54 +02:00
|
|
|
if (mknod(child_path, mode, req->rdev) < 0) {
|
|
|
|
return -errno;
|
2012-05-26 02:24:17 +02:00
|
|
|
}
|
2012-05-26 23:32:54 +02:00
|
|
|
return fuse_reply_entry(fuse, hdr->unique, parent_node, name, actual_name, child_path);
|
2012-05-26 02:24:17 +02:00
|
|
|
}
|
|
|
|
|
2012-05-26 23:32:54 +02:00
|
|
|
static int handle_mkdir(struct fuse* fuse, struct fuse_handler* handler,
|
2012-05-26 02:24:17 +02:00
|
|
|
const struct fuse_in_header* hdr, const struct fuse_mkdir_in* req, const char* name)
|
|
|
|
{
|
2012-05-26 23:32:54 +02:00
|
|
|
struct node* parent_node;
|
|
|
|
char parent_path[PATH_MAX];
|
|
|
|
char child_path[PATH_MAX];
|
|
|
|
const char* actual_name;
|
|
|
|
|
|
|
|
pthread_mutex_lock(&fuse->lock);
|
|
|
|
parent_node = lookup_node_and_path_by_id_locked(fuse, hdr->nodeid,
|
|
|
|
parent_path, sizeof(parent_path));
|
|
|
|
TRACE("[%d] MKDIR %s 0%o @ %llx (%s)\n", handler->token,
|
|
|
|
name, req->mode, hdr->nodeid, parent_node ? parent_node->name : "?");
|
|
|
|
pthread_mutex_unlock(&fuse->lock);
|
|
|
|
|
|
|
|
if (!parent_node || !(actual_name = find_file_within(parent_path, name,
|
|
|
|
child_path, sizeof(child_path), 1))) {
|
|
|
|
return -ENOENT;
|
2012-05-26 02:24:17 +02:00
|
|
|
}
|
|
|
|
__u32 mode = (req->mode & (~0777)) | 0775;
|
2012-05-26 23:32:54 +02:00
|
|
|
if (mkdir(child_path, mode) < 0) {
|
|
|
|
return -errno;
|
2012-05-26 02:24:17 +02:00
|
|
|
}
|
2012-05-26 23:32:54 +02:00
|
|
|
return fuse_reply_entry(fuse, hdr->unique, parent_node, name, actual_name, child_path);
|
2012-05-26 02:24:17 +02:00
|
|
|
}
|
|
|
|
|
2012-05-26 23:32:54 +02:00
|
|
|
static int handle_unlink(struct fuse* fuse, struct fuse_handler* handler,
|
2012-05-26 02:24:17 +02:00
|
|
|
const struct fuse_in_header* hdr, const char* name)
|
|
|
|
{
|
2012-05-26 23:32:54 +02:00
|
|
|
struct node* parent_node;
|
|
|
|
char parent_path[PATH_MAX];
|
|
|
|
char child_path[PATH_MAX];
|
2012-05-26 02:24:17 +02:00
|
|
|
|
2012-05-26 23:32:54 +02:00
|
|
|
pthread_mutex_lock(&fuse->lock);
|
|
|
|
parent_node = lookup_node_and_path_by_id_locked(fuse, hdr->nodeid,
|
|
|
|
parent_path, sizeof(parent_path));
|
|
|
|
TRACE("[%d] UNLINK %s @ %llx (%s)\n", handler->token,
|
|
|
|
name, hdr->nodeid, parent_node ? parent_node->name : "?");
|
|
|
|
pthread_mutex_unlock(&fuse->lock);
|
2012-05-26 02:24:17 +02:00
|
|
|
|
2012-05-26 23:32:54 +02:00
|
|
|
if (!parent_node || !find_file_within(parent_path, name,
|
|
|
|
child_path, sizeof(child_path), 1)) {
|
|
|
|
return -ENOENT;
|
|
|
|
}
|
|
|
|
if (unlink(child_path) < 0) {
|
|
|
|
return -errno;
|
|
|
|
}
|
|
|
|
return 0;
|
2012-05-26 02:24:17 +02:00
|
|
|
}
|
|
|
|
|
2012-05-26 23:32:54 +02:00
|
|
|
static int handle_rmdir(struct fuse* fuse, struct fuse_handler* handler,
|
2012-05-26 02:24:17 +02:00
|
|
|
const struct fuse_in_header* hdr, const char* name)
|
|
|
|
{
|
2012-05-26 23:32:54 +02:00
|
|
|
struct node* parent_node;
|
|
|
|
char parent_path[PATH_MAX];
|
|
|
|
char child_path[PATH_MAX];
|
2012-05-26 02:24:17 +02:00
|
|
|
|
2012-05-26 23:32:54 +02:00
|
|
|
pthread_mutex_lock(&fuse->lock);
|
|
|
|
parent_node = lookup_node_and_path_by_id_locked(fuse, hdr->nodeid,
|
|
|
|
parent_path, sizeof(parent_path));
|
|
|
|
TRACE("[%d] RMDIR %s @ %llx (%s)\n", handler->token,
|
|
|
|
name, hdr->nodeid, parent_node ? parent_node->name : "?");
|
|
|
|
pthread_mutex_unlock(&fuse->lock);
|
2012-05-26 02:24:17 +02:00
|
|
|
|
2012-05-26 23:32:54 +02:00
|
|
|
if (!parent_node || !find_file_within(parent_path, name,
|
|
|
|
child_path, sizeof(child_path), 1)) {
|
|
|
|
return -ENOENT;
|
|
|
|
}
|
|
|
|
if (rmdir(child_path) < 0) {
|
|
|
|
return -errno;
|
|
|
|
}
|
|
|
|
return 0;
|
2012-05-26 02:24:17 +02:00
|
|
|
}
|
|
|
|
|
2012-05-26 23:32:54 +02:00
|
|
|
static int handle_rename(struct fuse* fuse, struct fuse_handler* handler,
|
2012-05-26 02:24:17 +02:00
|
|
|
const struct fuse_in_header* hdr, const struct fuse_rename_in* req,
|
2012-05-26 23:32:54 +02:00
|
|
|
const char* old_name, const char* new_name)
|
2012-05-26 02:24:17 +02:00
|
|
|
{
|
2012-05-26 23:32:54 +02:00
|
|
|
struct node* old_parent_node;
|
|
|
|
struct node* new_parent_node;
|
|
|
|
struct node* child_node;
|
|
|
|
char old_parent_path[PATH_MAX];
|
|
|
|
char new_parent_path[PATH_MAX];
|
|
|
|
char old_child_path[PATH_MAX];
|
|
|
|
char new_child_path[PATH_MAX];
|
|
|
|
const char* new_actual_name;
|
2012-05-26 02:24:17 +02:00
|
|
|
int res;
|
|
|
|
|
2012-05-26 23:32:54 +02:00
|
|
|
pthread_mutex_lock(&fuse->lock);
|
|
|
|
old_parent_node = lookup_node_and_path_by_id_locked(fuse, hdr->nodeid,
|
|
|
|
old_parent_path, sizeof(old_parent_path));
|
|
|
|
new_parent_node = lookup_node_and_path_by_id_locked(fuse, req->newdir,
|
|
|
|
new_parent_path, sizeof(new_parent_path));
|
|
|
|
TRACE("[%d] RENAME %s->%s @ %llx (%s) -> %llx (%s)\n", handler->token,
|
|
|
|
old_name, new_name,
|
|
|
|
hdr->nodeid, old_parent_node ? old_parent_node->name : "?",
|
|
|
|
req->newdir, new_parent_node ? new_parent_node->name : "?");
|
|
|
|
if (!old_parent_node || !new_parent_node) {
|
|
|
|
res = -ENOENT;
|
|
|
|
goto lookup_error;
|
|
|
|
}
|
|
|
|
child_node = lookup_child_by_name_locked(old_parent_node, old_name);
|
|
|
|
if (!child_node || get_node_path_locked(child_node,
|
|
|
|
old_child_path, sizeof(old_child_path)) < 0) {
|
|
|
|
res = -ENOENT;
|
|
|
|
goto lookup_error;
|
|
|
|
}
|
|
|
|
acquire_node_locked(child_node);
|
|
|
|
pthread_mutex_unlock(&fuse->lock);
|
|
|
|
|
|
|
|
/* Special case for renaming a file where destination is same path
|
|
|
|
* differing only by case. In this case we don't want to look for a case
|
|
|
|
* insensitive match. This allows commands like "mv foo FOO" to work as expected.
|
|
|
|
*/
|
|
|
|
int search = old_parent_node != new_parent_node
|
|
|
|
|| strcasecmp(old_name, new_name);
|
|
|
|
if (!(new_actual_name = find_file_within(new_parent_path, new_name,
|
|
|
|
new_child_path, sizeof(new_child_path), search))) {
|
|
|
|
res = -ENOENT;
|
|
|
|
goto io_error;
|
2012-05-26 02:24:17 +02:00
|
|
|
}
|
|
|
|
|
2012-05-26 23:32:54 +02:00
|
|
|
TRACE("[%d] RENAME %s->%s\n", handler->token, old_child_path, new_child_path);
|
|
|
|
res = rename(old_child_path, new_child_path);
|
|
|
|
if (res < 0) {
|
|
|
|
res = -errno;
|
|
|
|
goto io_error;
|
2012-05-26 02:24:17 +02:00
|
|
|
}
|
|
|
|
|
2012-05-26 23:32:54 +02:00
|
|
|
pthread_mutex_lock(&fuse->lock);
|
|
|
|
res = rename_node_locked(child_node, new_name, new_actual_name);
|
|
|
|
if (!res) {
|
|
|
|
remove_node_from_parent_locked(child_node);
|
|
|
|
add_node_to_parent_locked(child_node, new_parent_node);
|
2012-05-26 02:24:17 +02:00
|
|
|
}
|
2012-05-26 23:32:54 +02:00
|
|
|
goto done;
|
2012-05-26 02:24:17 +02:00
|
|
|
|
2012-05-26 23:32:54 +02:00
|
|
|
io_error:
|
|
|
|
pthread_mutex_lock(&fuse->lock);
|
|
|
|
done:
|
|
|
|
release_node_locked(child_node);
|
|
|
|
lookup_error:
|
|
|
|
pthread_mutex_unlock(&fuse->lock);
|
|
|
|
return res;
|
2012-05-26 02:24:17 +02:00
|
|
|
}
|
|
|
|
|
2012-05-26 23:32:54 +02:00
|
|
|
static int handle_open(struct fuse* fuse, struct fuse_handler* handler,
|
2012-05-26 02:24:17 +02:00
|
|
|
const struct fuse_in_header* hdr, const struct fuse_open_in* req)
|
|
|
|
{
|
2012-05-26 23:32:54 +02:00
|
|
|
struct node* node;
|
|
|
|
char path[PATH_MAX];
|
2012-05-26 02:24:17 +02:00
|
|
|
struct fuse_open_out out;
|
|
|
|
struct handle *h;
|
2010-08-13 03:01:08 +02:00
|
|
|
|
2012-05-26 23:32:54 +02:00
|
|
|
pthread_mutex_lock(&fuse->lock);
|
|
|
|
node = lookup_node_and_path_by_id_locked(fuse, hdr->nodeid, path, sizeof(path));
|
|
|
|
TRACE("[%d] OPEN 0%o @ %llx (%s)\n", handler->token,
|
|
|
|
req->flags, hdr->nodeid, node ? node->name : "?");
|
|
|
|
pthread_mutex_unlock(&fuse->lock);
|
2012-05-26 02:24:17 +02:00
|
|
|
|
|
|
|
if (!node) {
|
2012-05-26 23:32:54 +02:00
|
|
|
return -ENOENT;
|
2012-05-26 02:24:17 +02:00
|
|
|
}
|
2012-05-26 23:32:54 +02:00
|
|
|
h = malloc(sizeof(*h));
|
|
|
|
if (!h) {
|
|
|
|
return -ENOMEM;
|
|
|
|
}
|
|
|
|
TRACE("[%d] OPEN %s\n", handler->token, path);
|
2012-05-26 02:24:17 +02:00
|
|
|
h->fd = open(path, req->flags);
|
|
|
|
if (h->fd < 0) {
|
|
|
|
free(h);
|
2012-05-26 23:32:54 +02:00
|
|
|
return -errno;
|
2012-05-26 02:24:17 +02:00
|
|
|
}
|
|
|
|
out.fh = ptr_to_id(h);
|
|
|
|
out.open_flags = 0;
|
|
|
|
out.padding = 0;
|
|
|
|
fuse_reply(fuse, hdr->unique, &out, sizeof(out));
|
2012-05-26 23:32:54 +02:00
|
|
|
return NO_STATUS;
|
2012-05-26 02:24:17 +02:00
|
|
|
}
|
|
|
|
|
2012-05-26 23:32:54 +02:00
|
|
|
static int handle_read(struct fuse* fuse, struct fuse_handler* handler,
|
2012-05-26 02:24:17 +02:00
|
|
|
const struct fuse_in_header* hdr, const struct fuse_read_in* req)
|
|
|
|
{
|
|
|
|
struct handle *h = id_to_ptr(req->fh);
|
|
|
|
__u64 unique = hdr->unique;
|
|
|
|
__u32 size = req->size;
|
|
|
|
__u64 offset = req->offset;
|
2012-05-26 23:32:54 +02:00
|
|
|
int res;
|
|
|
|
|
2012-05-26 02:24:17 +02:00
|
|
|
/* Don't access any other fields of hdr or req beyond this point, the read buffer
|
|
|
|
* overlaps the request buffer and will clobber data in the request. This
|
|
|
|
* saves us 128KB per request handler thread at the cost of this scary comment. */
|
2012-05-26 23:32:54 +02:00
|
|
|
|
|
|
|
TRACE("[%d] READ %p(%d) %u@%llu\n", handler->token,
|
|
|
|
h, h->fd, size, offset);
|
2012-05-26 02:24:17 +02:00
|
|
|
if (size > sizeof(handler->read_buffer)) {
|
2012-05-26 23:32:54 +02:00
|
|
|
return -EINVAL;
|
2012-05-26 02:24:17 +02:00
|
|
|
}
|
|
|
|
res = pread64(h->fd, handler->read_buffer, size, offset);
|
|
|
|
if (res < 0) {
|
2012-05-26 23:32:54 +02:00
|
|
|
return -errno;
|
2012-05-26 02:24:17 +02:00
|
|
|
}
|
|
|
|
fuse_reply(fuse, unique, handler->read_buffer, res);
|
2012-05-26 23:32:54 +02:00
|
|
|
return NO_STATUS;
|
2012-05-26 02:24:17 +02:00
|
|
|
}
|
|
|
|
|
2012-05-26 23:32:54 +02:00
|
|
|
static int handle_write(struct fuse* fuse, struct fuse_handler* handler,
|
2012-05-26 02:24:17 +02:00
|
|
|
const struct fuse_in_header* hdr, const struct fuse_write_in* req,
|
|
|
|
const void* buffer)
|
|
|
|
{
|
|
|
|
struct fuse_write_out out;
|
|
|
|
struct handle *h = id_to_ptr(req->fh);
|
|
|
|
int res;
|
2012-05-26 23:32:54 +02:00
|
|
|
|
|
|
|
TRACE("[%d] WRITE %p(%d) %u@%llu\n", handler->token,
|
|
|
|
h, h->fd, req->size, req->offset);
|
2012-05-26 02:24:17 +02:00
|
|
|
res = pwrite64(h->fd, buffer, req->size, req->offset);
|
|
|
|
if (res < 0) {
|
2012-05-26 23:32:54 +02:00
|
|
|
return -errno;
|
2012-05-26 02:24:17 +02:00
|
|
|
}
|
|
|
|
out.size = res;
|
|
|
|
fuse_reply(fuse, hdr->unique, &out, sizeof(out));
|
2012-05-26 23:32:54 +02:00
|
|
|
return NO_STATUS;
|
2012-05-26 02:24:17 +02:00
|
|
|
}
|
|
|
|
|
2012-05-26 23:32:54 +02:00
|
|
|
static int handle_statfs(struct fuse* fuse, struct fuse_handler* handler,
|
2012-05-26 02:24:17 +02:00
|
|
|
const struct fuse_in_header* hdr)
|
|
|
|
{
|
2012-05-26 23:32:54 +02:00
|
|
|
char path[PATH_MAX];
|
2012-05-26 02:24:17 +02:00
|
|
|
struct statfs stat;
|
|
|
|
struct fuse_statfs_out out;
|
|
|
|
int res;
|
|
|
|
|
2012-05-26 23:32:54 +02:00
|
|
|
pthread_mutex_lock(&fuse->lock);
|
|
|
|
TRACE("[%d] STATFS\n", handler->token);
|
|
|
|
res = get_node_path_locked(&fuse->root, path, sizeof(path));
|
|
|
|
pthread_mutex_unlock(&fuse->lock);
|
|
|
|
if (res < 0) {
|
|
|
|
return -ENOENT;
|
|
|
|
}
|
|
|
|
if (statfs(fuse->root.name, &stat) < 0) {
|
|
|
|
return -errno;
|
2012-05-26 02:24:17 +02:00
|
|
|
}
|
|
|
|
memset(&out, 0, sizeof(out));
|
|
|
|
out.st.blocks = stat.f_blocks;
|
|
|
|
out.st.bfree = stat.f_bfree;
|
|
|
|
out.st.bavail = stat.f_bavail;
|
|
|
|
out.st.files = stat.f_files;
|
|
|
|
out.st.ffree = stat.f_ffree;
|
|
|
|
out.st.bsize = stat.f_bsize;
|
|
|
|
out.st.namelen = stat.f_namelen;
|
|
|
|
out.st.frsize = stat.f_frsize;
|
|
|
|
fuse_reply(fuse, hdr->unique, &out, sizeof(out));
|
2012-05-26 23:32:54 +02:00
|
|
|
return NO_STATUS;
|
2012-05-26 02:24:17 +02:00
|
|
|
}
|
|
|
|
|
2012-05-26 23:32:54 +02:00
|
|
|
static int handle_release(struct fuse* fuse, struct fuse_handler* handler,
|
2012-05-26 02:24:17 +02:00
|
|
|
const struct fuse_in_header* hdr, const struct fuse_release_in* req)
|
|
|
|
{
|
|
|
|
struct handle *h = id_to_ptr(req->fh);
|
2012-05-26 23:32:54 +02:00
|
|
|
|
|
|
|
TRACE("[%d] RELEASE %p(%d)\n", handler->token, h, h->fd);
|
2012-05-26 02:24:17 +02:00
|
|
|
close(h->fd);
|
|
|
|
free(h);
|
2012-05-26 23:32:54 +02:00
|
|
|
return 0;
|
2012-05-26 02:24:17 +02:00
|
|
|
}
|
|
|
|
|
2012-05-26 23:32:54 +02:00
|
|
|
static int handle_fsync(struct fuse* fuse, struct fuse_handler* handler,
|
2012-05-26 02:24:17 +02:00
|
|
|
const struct fuse_in_header* hdr, const struct fuse_fsync_in* req)
|
|
|
|
{
|
|
|
|
int is_data_sync = req->fsync_flags & 1;
|
|
|
|
struct handle *h = id_to_ptr(req->fh);
|
|
|
|
int res;
|
2012-05-26 23:32:54 +02:00
|
|
|
|
|
|
|
TRACE("[%d] FSYNC %p(%d) is_data_sync=%d\n", handler->token,
|
|
|
|
h, h->fd, is_data_sync);
|
2012-05-26 02:24:17 +02:00
|
|
|
res = is_data_sync ? fdatasync(h->fd) : fsync(h->fd);
|
|
|
|
if (res < 0) {
|
2012-05-26 23:32:54 +02:00
|
|
|
return -errno;
|
2012-05-26 02:24:17 +02:00
|
|
|
}
|
2012-05-26 23:32:54 +02:00
|
|
|
return 0;
|
2012-05-26 02:24:17 +02:00
|
|
|
}
|
|
|
|
|
2012-05-26 23:32:54 +02:00
|
|
|
static int handle_flush(struct fuse* fuse, struct fuse_handler* handler,
|
2012-05-26 02:24:17 +02:00
|
|
|
const struct fuse_in_header* hdr)
|
|
|
|
{
|
2012-05-26 23:32:54 +02:00
|
|
|
TRACE("[%d] FLUSH\n", handler->token);
|
|
|
|
return 0;
|
2012-05-26 02:24:17 +02:00
|
|
|
}
|
|
|
|
|
2012-05-26 23:32:54 +02:00
|
|
|
static int handle_opendir(struct fuse* fuse, struct fuse_handler* handler,
|
2012-05-26 02:24:17 +02:00
|
|
|
const struct fuse_in_header* hdr, const struct fuse_open_in* req)
|
|
|
|
{
|
2012-05-26 23:32:54 +02:00
|
|
|
struct node* node;
|
|
|
|
char path[PATH_MAX];
|
2012-05-26 02:24:17 +02:00
|
|
|
struct fuse_open_out out;
|
|
|
|
struct dirhandle *h;
|
|
|
|
|
2012-05-26 23:32:54 +02:00
|
|
|
pthread_mutex_lock(&fuse->lock);
|
|
|
|
node = lookup_node_and_path_by_id_locked(fuse, hdr->nodeid, path, sizeof(path));
|
|
|
|
TRACE("[%d] OPENDIR @ %llx (%s)\n", handler->token,
|
|
|
|
hdr->nodeid, node ? node->name : "?");
|
|
|
|
pthread_mutex_unlock(&fuse->lock);
|
|
|
|
|
2012-05-26 02:24:17 +02:00
|
|
|
if (!node) {
|
2012-05-26 23:32:54 +02:00
|
|
|
return -ENOENT;
|
2012-05-26 02:24:17 +02:00
|
|
|
}
|
|
|
|
h = malloc(sizeof(*h));
|
|
|
|
if (!h) {
|
2012-05-26 23:32:54 +02:00
|
|
|
return -ENOMEM;
|
2012-05-26 02:24:17 +02:00
|
|
|
}
|
2012-05-26 23:32:54 +02:00
|
|
|
TRACE("[%d] OPENDIR %s\n", handler->token, path);
|
2012-05-26 02:24:17 +02:00
|
|
|
h->d = opendir(path);
|
2012-05-26 23:32:54 +02:00
|
|
|
if (!h->d) {
|
2012-05-26 02:24:17 +02:00
|
|
|
free(h);
|
2012-05-26 23:32:54 +02:00
|
|
|
return -errno;
|
2012-05-26 02:24:17 +02:00
|
|
|
}
|
|
|
|
out.fh = ptr_to_id(h);
|
|
|
|
fuse_reply(fuse, hdr->unique, &out, sizeof(out));
|
2012-05-26 23:32:54 +02:00
|
|
|
return NO_STATUS;
|
2012-05-26 02:24:17 +02:00
|
|
|
}
|
|
|
|
|
2012-05-26 23:32:54 +02:00
|
|
|
static int handle_readdir(struct fuse* fuse, struct fuse_handler* handler,
|
2012-05-26 02:24:17 +02:00
|
|
|
const struct fuse_in_header* hdr, const struct fuse_read_in* req)
|
|
|
|
{
|
|
|
|
char buffer[8192];
|
|
|
|
struct fuse_dirent *fde = (struct fuse_dirent*) buffer;
|
|
|
|
struct dirent *de;
|
|
|
|
struct dirhandle *h = id_to_ptr(req->fh);
|
2012-05-26 23:32:54 +02:00
|
|
|
|
|
|
|
TRACE("[%d] READDIR %p\n", handler->token, h);
|
2012-05-26 02:24:17 +02:00
|
|
|
if (req->offset == 0) {
|
|
|
|
/* rewinddir() might have been called above us, so rewind here too */
|
2012-05-26 23:32:54 +02:00
|
|
|
TRACE("[%d] calling rewinddir()\n", handler->token);
|
2012-05-26 02:24:17 +02:00
|
|
|
rewinddir(h->d);
|
|
|
|
}
|
|
|
|
de = readdir(h->d);
|
|
|
|
if (!de) {
|
2012-05-26 23:32:54 +02:00
|
|
|
return 0;
|
2012-05-26 02:24:17 +02:00
|
|
|
}
|
|
|
|
fde->ino = FUSE_UNKNOWN_INO;
|
|
|
|
/* increment the offset so we can detect when rewinddir() seeks back to the beginning */
|
|
|
|
fde->off = req->offset + 1;
|
|
|
|
fde->type = de->d_type;
|
|
|
|
fde->namelen = strlen(de->d_name);
|
|
|
|
memcpy(fde->name, de->d_name, fde->namelen + 1);
|
|
|
|
fuse_reply(fuse, hdr->unique, fde,
|
2012-05-26 23:32:54 +02:00
|
|
|
FUSE_DIRENT_ALIGN(sizeof(struct fuse_dirent) + fde->namelen));
|
|
|
|
return NO_STATUS;
|
2012-05-26 02:24:17 +02:00
|
|
|
}
|
|
|
|
|
2012-05-26 23:32:54 +02:00
|
|
|
static int handle_releasedir(struct fuse* fuse, struct fuse_handler* handler,
|
2012-05-26 02:24:17 +02:00
|
|
|
const struct fuse_in_header* hdr, const struct fuse_release_in* req)
|
|
|
|
{
|
|
|
|
struct dirhandle *h = id_to_ptr(req->fh);
|
2012-05-26 23:32:54 +02:00
|
|
|
|
|
|
|
TRACE("[%d] RELEASEDIR %p\n", handler->token, h);
|
2012-05-26 02:24:17 +02:00
|
|
|
closedir(h->d);
|
|
|
|
free(h);
|
2012-05-26 23:32:54 +02:00
|
|
|
return 0;
|
2012-05-26 02:24:17 +02:00
|
|
|
}
|
|
|
|
|
2012-05-26 23:32:54 +02:00
|
|
|
static int handle_init(struct fuse* fuse, struct fuse_handler* handler,
|
2012-05-26 02:24:17 +02:00
|
|
|
const struct fuse_in_header* hdr, const struct fuse_init_in* req)
|
|
|
|
{
|
|
|
|
struct fuse_init_out out;
|
|
|
|
|
2012-05-26 23:32:54 +02:00
|
|
|
TRACE("[%d] INIT ver=%d.%d maxread=%d flags=%x\n",
|
|
|
|
handler->token, req->major, req->minor, req->max_readahead, req->flags);
|
2012-05-26 02:24:17 +02:00
|
|
|
out.major = FUSE_KERNEL_VERSION;
|
|
|
|
out.minor = FUSE_KERNEL_MINOR_VERSION;
|
|
|
|
out.max_readahead = req->max_readahead;
|
|
|
|
out.flags = FUSE_ATOMIC_O_TRUNC | FUSE_BIG_WRITES;
|
|
|
|
out.max_background = 32;
|
|
|
|
out.congestion_threshold = 32;
|
|
|
|
out.max_write = MAX_WRITE;
|
|
|
|
fuse_reply(fuse, hdr->unique, &out, sizeof(out));
|
2012-05-26 23:32:54 +02:00
|
|
|
return NO_STATUS;
|
2012-05-26 02:24:17 +02:00
|
|
|
}
|
|
|
|
|
2012-05-26 23:32:54 +02:00
|
|
|
static int handle_fuse_request(struct fuse *fuse, struct fuse_handler* handler,
|
2012-05-26 02:24:17 +02:00
|
|
|
const struct fuse_in_header *hdr, const void *data, size_t data_len)
|
|
|
|
{
|
2010-08-13 03:01:08 +02:00
|
|
|
switch (hdr->opcode) {
|
|
|
|
case FUSE_LOOKUP: { /* bytez[] -> entry_out */
|
2012-05-25 23:07:47 +02:00
|
|
|
const char* name = data;
|
2012-05-26 23:32:54 +02:00
|
|
|
return handle_lookup(fuse, handler, hdr, name);
|
2010-08-13 03:01:08 +02:00
|
|
|
}
|
2012-05-25 23:07:47 +02:00
|
|
|
|
2010-08-13 03:01:08 +02:00
|
|
|
case FUSE_FORGET: {
|
2012-05-25 23:07:47 +02:00
|
|
|
const struct fuse_forget_in *req = data;
|
2012-05-26 23:32:54 +02:00
|
|
|
return handle_forget(fuse, handler, hdr, req);
|
2010-08-13 03:01:08 +02:00
|
|
|
}
|
2012-05-25 23:07:47 +02:00
|
|
|
|
2010-08-13 03:01:08 +02:00
|
|
|
case FUSE_GETATTR: { /* getattr_in -> attr_out */
|
2012-05-25 23:07:47 +02:00
|
|
|
const struct fuse_getattr_in *req = data;
|
2012-05-26 23:32:54 +02:00
|
|
|
return handle_getattr(fuse, handler, hdr, req);
|
2010-08-13 03:01:08 +02:00
|
|
|
}
|
2012-05-25 23:07:47 +02:00
|
|
|
|
2010-08-13 03:01:08 +02:00
|
|
|
case FUSE_SETATTR: { /* setattr_in -> attr_out */
|
2012-05-25 23:07:47 +02:00
|
|
|
const struct fuse_setattr_in *req = data;
|
2012-05-26 23:32:54 +02:00
|
|
|
return handle_setattr(fuse, handler, hdr, req);
|
2010-08-13 03:01:08 +02:00
|
|
|
}
|
2012-05-25 23:07:47 +02:00
|
|
|
|
2010-08-13 03:01:08 +02:00
|
|
|
// case FUSE_READLINK:
|
|
|
|
// case FUSE_SYMLINK:
|
|
|
|
case FUSE_MKNOD: { /* mknod_in, bytez[] -> entry_out */
|
2012-05-25 23:07:47 +02:00
|
|
|
const struct fuse_mknod_in *req = data;
|
|
|
|
const char *name = ((const char*) data) + sizeof(*req);
|
2012-05-26 23:32:54 +02:00
|
|
|
return handle_mknod(fuse, handler, hdr, req, name);
|
2010-08-13 03:01:08 +02:00
|
|
|
}
|
2012-05-25 23:07:47 +02:00
|
|
|
|
2010-08-13 03:01:08 +02:00
|
|
|
case FUSE_MKDIR: { /* mkdir_in, bytez[] -> entry_out */
|
2012-05-25 23:07:47 +02:00
|
|
|
const struct fuse_mkdir_in *req = data;
|
|
|
|
const char *name = ((const char*) data) + sizeof(*req);
|
2012-05-26 23:32:54 +02:00
|
|
|
return handle_mkdir(fuse, handler, hdr, req, name);
|
2010-08-13 03:01:08 +02:00
|
|
|
}
|
2012-05-25 23:07:47 +02:00
|
|
|
|
2010-08-13 03:01:08 +02:00
|
|
|
case FUSE_UNLINK: { /* bytez[] -> */
|
2012-05-25 23:07:47 +02:00
|
|
|
const char* name = data;
|
2012-05-26 23:32:54 +02:00
|
|
|
return handle_unlink(fuse, handler, hdr, name);
|
2010-08-13 03:01:08 +02:00
|
|
|
}
|
2012-05-25 23:07:47 +02:00
|
|
|
|
2010-08-13 03:01:08 +02:00
|
|
|
case FUSE_RMDIR: { /* bytez[] -> */
|
2012-05-25 23:07:47 +02:00
|
|
|
const char* name = data;
|
2012-05-26 23:32:54 +02:00
|
|
|
return handle_rmdir(fuse, handler, hdr, name);
|
2010-08-13 03:01:08 +02:00
|
|
|
}
|
2012-05-25 23:07:47 +02:00
|
|
|
|
2010-08-13 03:01:08 +02:00
|
|
|
case FUSE_RENAME: { /* rename_in, oldname, newname -> */
|
2012-05-25 23:07:47 +02:00
|
|
|
const struct fuse_rename_in *req = data;
|
2012-05-26 23:32:54 +02:00
|
|
|
const char *old_name = ((const char*) data) + sizeof(*req);
|
|
|
|
const char *new_name = old_name + strlen(old_name) + 1;
|
|
|
|
return handle_rename(fuse, handler, hdr, req, old_name, new_name);
|
2010-08-13 03:01:08 +02:00
|
|
|
}
|
2012-05-25 23:07:47 +02:00
|
|
|
|
2012-05-26 02:24:17 +02:00
|
|
|
// case FUSE_LINK:
|
2010-08-13 03:01:08 +02:00
|
|
|
case FUSE_OPEN: { /* open_in -> open_out */
|
2012-05-25 23:07:47 +02:00
|
|
|
const struct fuse_open_in *req = data;
|
2012-05-26 23:32:54 +02:00
|
|
|
return handle_open(fuse, handler, hdr, req);
|
2010-08-13 03:01:08 +02:00
|
|
|
}
|
2012-05-25 23:07:47 +02:00
|
|
|
|
2010-08-13 03:01:08 +02:00
|
|
|
case FUSE_READ: { /* read_in -> byte[] */
|
2012-05-25 23:07:47 +02:00
|
|
|
const struct fuse_read_in *req = data;
|
2012-05-26 23:32:54 +02:00
|
|
|
return handle_read(fuse, handler, hdr, req);
|
2010-08-13 03:01:08 +02:00
|
|
|
}
|
2012-05-25 23:07:47 +02:00
|
|
|
|
2010-08-13 03:01:08 +02:00
|
|
|
case FUSE_WRITE: { /* write_in, byte[write_in.size] -> write_out */
|
2012-05-25 23:07:47 +02:00
|
|
|
const struct fuse_write_in *req = data;
|
|
|
|
const void* buffer = (const __u8*)data + sizeof(*req);
|
2012-05-26 23:32:54 +02:00
|
|
|
return handle_write(fuse, handler, hdr, req, buffer);
|
2010-08-13 03:01:08 +02:00
|
|
|
}
|
2012-05-25 23:07:47 +02:00
|
|
|
|
2010-08-16 20:14:44 +02:00
|
|
|
case FUSE_STATFS: { /* getattr_in -> attr_out */
|
2012-05-26 23:32:54 +02:00
|
|
|
return handle_statfs(fuse, handler, hdr);
|
2010-08-16 20:14:44 +02:00
|
|
|
}
|
2012-05-25 23:07:47 +02:00
|
|
|
|
2010-08-13 03:01:08 +02:00
|
|
|
case FUSE_RELEASE: { /* release_in -> */
|
2012-05-25 23:07:47 +02:00
|
|
|
const struct fuse_release_in *req = data;
|
2012-05-26 23:32:54 +02:00
|
|
|
return handle_release(fuse, handler, hdr, req);
|
2010-08-13 03:01:08 +02:00
|
|
|
}
|
2012-05-25 23:07:47 +02:00
|
|
|
|
2012-05-26 00:01:21 +02:00
|
|
|
case FUSE_FSYNC: {
|
|
|
|
const struct fuse_fsync_in *req = data;
|
2012-05-26 23:32:54 +02:00
|
|
|
return handle_fsync(fuse, handler, hdr, req);
|
2012-05-26 00:01:21 +02:00
|
|
|
}
|
|
|
|
|
2010-08-13 03:01:08 +02:00
|
|
|
// case FUSE_SETXATTR:
|
|
|
|
// case FUSE_GETXATTR:
|
|
|
|
// case FUSE_LISTXATTR:
|
|
|
|
// case FUSE_REMOVEXATTR:
|
2012-05-25 23:07:47 +02:00
|
|
|
case FUSE_FLUSH: {
|
2012-05-26 23:32:54 +02:00
|
|
|
return handle_flush(fuse, handler, hdr);
|
2012-05-25 23:07:47 +02:00
|
|
|
}
|
|
|
|
|
2010-08-13 03:01:08 +02:00
|
|
|
case FUSE_OPENDIR: { /* open_in -> open_out */
|
2012-05-25 23:07:47 +02:00
|
|
|
const struct fuse_open_in *req = data;
|
2012-05-26 23:32:54 +02:00
|
|
|
return handle_opendir(fuse, handler, hdr, req);
|
2010-08-13 03:01:08 +02:00
|
|
|
}
|
2012-05-25 23:07:47 +02:00
|
|
|
|
2010-08-13 03:01:08 +02:00
|
|
|
case FUSE_READDIR: {
|
2012-05-25 23:07:47 +02:00
|
|
|
const struct fuse_read_in *req = data;
|
2012-05-26 23:32:54 +02:00
|
|
|
return handle_readdir(fuse, handler, hdr, req);
|
2010-08-13 03:01:08 +02:00
|
|
|
}
|
2012-05-25 23:07:47 +02:00
|
|
|
|
2010-08-13 03:01:08 +02:00
|
|
|
case FUSE_RELEASEDIR: { /* release_in -> */
|
2012-05-25 23:07:47 +02:00
|
|
|
const struct fuse_release_in *req = data;
|
2012-05-26 23:32:54 +02:00
|
|
|
return handle_releasedir(fuse, handler, hdr, req);
|
2010-08-13 03:01:08 +02:00
|
|
|
}
|
2012-05-25 23:07:47 +02:00
|
|
|
|
2010-08-13 03:01:08 +02:00
|
|
|
// case FUSE_FSYNCDIR:
|
|
|
|
case FUSE_INIT: { /* init_in -> init_out */
|
2012-05-25 23:07:47 +02:00
|
|
|
const struct fuse_init_in *req = data;
|
2012-05-26 23:32:54 +02:00
|
|
|
return handle_init(fuse, handler, hdr, req);
|
2010-08-13 03:01:08 +02:00
|
|
|
}
|
2012-05-25 23:07:47 +02:00
|
|
|
|
2010-08-13 03:01:08 +02:00
|
|
|
default: {
|
2012-05-26 23:32:54 +02:00
|
|
|
TRACE("[%d] NOTIMPL op=%d uniq=%llx nid=%llx\n",
|
|
|
|
handler->token, hdr->opcode, hdr->unique, hdr->nodeid);
|
|
|
|
return -ENOSYS;
|
2010-08-13 03:01:08 +02:00
|
|
|
}
|
2012-05-25 23:07:47 +02:00
|
|
|
}
|
2010-08-13 03:01:08 +02:00
|
|
|
}
|
|
|
|
|
2012-05-26 23:32:54 +02:00
|
|
|
static void handle_fuse_requests(struct fuse_handler* handler)
|
2010-08-13 03:01:08 +02:00
|
|
|
{
|
2012-05-26 23:32:54 +02:00
|
|
|
struct fuse* fuse = handler->fuse;
|
2010-08-13 03:01:08 +02:00
|
|
|
for (;;) {
|
2012-05-26 23:32:54 +02:00
|
|
|
ssize_t len = read(fuse->fd,
|
|
|
|
handler->request_buffer, sizeof(handler->request_buffer));
|
2010-08-13 03:01:08 +02:00
|
|
|
if (len < 0) {
|
2012-05-26 23:32:54 +02:00
|
|
|
if (errno != EINTR) {
|
|
|
|
ERROR("[%d] handle_fuse_requests: errno=%d\n", handler->token, errno);
|
|
|
|
}
|
|
|
|
continue;
|
2010-08-13 03:01:08 +02:00
|
|
|
}
|
2012-05-25 23:07:47 +02:00
|
|
|
|
|
|
|
if ((size_t)len < sizeof(struct fuse_in_header)) {
|
2012-05-26 23:32:54 +02:00
|
|
|
ERROR("[%d] request too short: len=%zu\n", handler->token, (size_t)len);
|
|
|
|
continue;
|
2012-05-25 23:07:47 +02:00
|
|
|
}
|
|
|
|
|
2012-05-26 00:35:28 +02:00
|
|
|
const struct fuse_in_header *hdr = (void*)handler->request_buffer;
|
2012-05-25 23:07:47 +02:00
|
|
|
if (hdr->len != (size_t)len) {
|
2012-05-26 23:32:54 +02:00
|
|
|
ERROR("[%d] malformed header: len=%zu, hdr->len=%u\n",
|
|
|
|
handler->token, (size_t)len, hdr->len);
|
|
|
|
continue;
|
2012-05-25 23:07:47 +02:00
|
|
|
}
|
|
|
|
|
2012-05-26 00:35:28 +02:00
|
|
|
const void *data = handler->request_buffer + sizeof(struct fuse_in_header);
|
2012-05-25 23:07:47 +02:00
|
|
|
size_t data_len = len - sizeof(struct fuse_in_header);
|
2012-05-26 23:32:54 +02:00
|
|
|
__u64 unique = hdr->unique;
|
|
|
|
int res = handle_fuse_request(fuse, handler, hdr, data, data_len);
|
2012-05-26 00:35:28 +02:00
|
|
|
|
|
|
|
/* We do not access the request again after this point because the underlying
|
|
|
|
* buffer storage may have been reused while processing the request. */
|
2012-05-26 23:32:54 +02:00
|
|
|
|
|
|
|
if (res != NO_STATUS) {
|
|
|
|
if (res) {
|
|
|
|
TRACE("[%d] ERROR %d\n", handler->token, res);
|
|
|
|
}
|
|
|
|
fuse_status(fuse, unique, res);
|
|
|
|
}
|
2010-08-13 03:01:08 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-05-26 23:32:54 +02:00
|
|
|
static void* start_handler(void* data)
|
2012-05-26 00:35:28 +02:00
|
|
|
{
|
2012-05-26 23:32:54 +02:00
|
|
|
struct fuse_handler* handler = data;
|
|
|
|
handle_fuse_requests(handler);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int ignite_fuse(struct fuse* fuse, int num_threads)
|
|
|
|
{
|
|
|
|
struct fuse_handler* handlers;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
handlers = malloc(num_threads * sizeof(struct fuse_handler));
|
|
|
|
if (!handlers) {
|
|
|
|
ERROR("cannot allocate storage for threads");
|
|
|
|
return -ENOMEM;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < num_threads; i++) {
|
|
|
|
handlers[i].fuse = fuse;
|
|
|
|
handlers[i].token = i;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 1; i < num_threads; i++) {
|
|
|
|
pthread_t thread;
|
|
|
|
int res = pthread_create(&thread, NULL, start_handler, &handlers[i]);
|
|
|
|
if (res) {
|
|
|
|
ERROR("failed to start thread #%d, error=%d", i, res);
|
|
|
|
goto quit;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
handle_fuse_requests(&handlers[0]);
|
|
|
|
ERROR("terminated prematurely");
|
|
|
|
|
|
|
|
/* don't bother killing all of the other threads or freeing anything,
|
|
|
|
* should never get here anyhow */
|
|
|
|
quit:
|
|
|
|
exit(1);
|
2012-05-26 00:35:28 +02:00
|
|
|
}
|
|
|
|
|
2011-01-12 20:39:44 +01:00
|
|
|
static int usage()
|
|
|
|
{
|
2012-05-26 23:32:54 +02:00
|
|
|
ERROR("usage: sdcard [-t<threads>] <path> <uid> <gid>\n"
|
|
|
|
" -t<threads>: specify number of threads to use, default -t%d\n"
|
|
|
|
"\n", DEFAULT_NUM_THREADS);
|
2012-05-25 22:27:43 +02:00
|
|
|
return 1;
|
2011-01-12 20:39:44 +01:00
|
|
|
}
|
|
|
|
|
2012-05-26 23:32:54 +02:00
|
|
|
static int run(const char* path, uid_t uid, gid_t gid, int num_threads)
|
2010-08-13 03:01:08 +02:00
|
|
|
{
|
2012-05-25 22:27:43 +02:00
|
|
|
int fd;
|
2010-08-13 03:01:08 +02:00
|
|
|
char opts[256];
|
2012-05-25 22:27:43 +02:00
|
|
|
int res;
|
|
|
|
struct fuse fuse;
|
|
|
|
|
|
|
|
/* cleanup from previous instance, if necessary */
|
|
|
|
umount2(MOUNT_POINT, 2);
|
|
|
|
|
|
|
|
fd = open("/dev/fuse", O_RDWR);
|
|
|
|
if (fd < 0){
|
|
|
|
ERROR("cannot open fuse device (error %d)\n", errno);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
snprintf(opts, sizeof(opts),
|
|
|
|
"fd=%i,rootmode=40000,default_permissions,allow_other,user_id=%d,group_id=%d",
|
|
|
|
fd, uid, gid);
|
|
|
|
|
|
|
|
res = mount("/dev/fuse", MOUNT_POINT, "fuse", MS_NOSUID | MS_NODEV, opts);
|
|
|
|
if (res < 0) {
|
|
|
|
ERROR("cannot mount fuse filesystem (error %d)\n", errno);
|
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
|
|
|
|
res = setgid(gid);
|
|
|
|
if (res < 0) {
|
|
|
|
ERROR("cannot setgid (error %d)\n", errno);
|
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
|
|
|
|
res = setuid(uid);
|
|
|
|
if (res < 0) {
|
|
|
|
ERROR("cannot setuid (error %d)\n", errno);
|
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
|
|
|
|
fuse_init(&fuse, fd, path);
|
|
|
|
|
|
|
|
umask(0);
|
2012-05-26 23:32:54 +02:00
|
|
|
res = ignite_fuse(&fuse, num_threads);
|
2012-05-25 22:27:43 +02:00
|
|
|
|
|
|
|
/* we do not attempt to umount the file system here because we are no longer
|
|
|
|
* running as the root user */
|
|
|
|
|
|
|
|
error:
|
|
|
|
close(fd);
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
int main(int argc, char **argv)
|
|
|
|
{
|
2010-08-13 03:01:08 +02:00
|
|
|
int res;
|
2011-01-12 20:39:44 +01:00
|
|
|
const char *path = NULL;
|
2012-05-25 22:27:43 +02:00
|
|
|
uid_t uid = 0;
|
|
|
|
gid_t gid = 0;
|
2012-05-26 23:32:54 +02:00
|
|
|
int num_threads = DEFAULT_NUM_THREADS;
|
2011-01-12 20:39:44 +01:00
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 1; i < argc; i++) {
|
|
|
|
char* arg = argv[i];
|
2012-05-26 23:32:54 +02:00
|
|
|
if (!strncmp(arg, "-t", 2))
|
|
|
|
num_threads = strtoul(arg + 2, 0, 10);
|
|
|
|
else if (!path)
|
2011-01-23 23:46:30 +01:00
|
|
|
path = arg;
|
2012-05-25 22:27:43 +02:00
|
|
|
else if (!uid)
|
2011-01-23 23:46:30 +01:00
|
|
|
uid = strtoul(arg, 0, 10);
|
2012-05-25 22:27:43 +02:00
|
|
|
else if (!gid)
|
2011-01-23 23:46:30 +01:00
|
|
|
gid = strtoul(arg, 0, 10);
|
|
|
|
else {
|
|
|
|
ERROR("too many arguments\n");
|
|
|
|
return usage();
|
2011-01-12 20:39:44 +01:00
|
|
|
}
|
2010-08-13 03:01:08 +02:00
|
|
|
}
|
|
|
|
|
2011-01-12 20:39:44 +01:00
|
|
|
if (!path) {
|
|
|
|
ERROR("no path specified\n");
|
|
|
|
return usage();
|
|
|
|
}
|
2012-05-25 22:27:43 +02:00
|
|
|
if (!uid || !gid) {
|
2010-08-13 03:01:08 +02:00
|
|
|
ERROR("uid and gid must be nonzero\n");
|
2011-01-12 20:39:44 +01:00
|
|
|
return usage();
|
2010-08-13 03:01:08 +02:00
|
|
|
}
|
2012-05-26 23:32:54 +02:00
|
|
|
if (num_threads < 1) {
|
|
|
|
ERROR("number of threads must be at least 1\n");
|
|
|
|
return usage();
|
|
|
|
}
|
2010-08-13 03:01:08 +02:00
|
|
|
|
2012-05-26 23:32:54 +02:00
|
|
|
res = run(path, uid, gid, num_threads);
|
2012-05-25 22:27:43 +02:00
|
|
|
return res < 0 ? 1 : 0;
|
2010-08-13 03:01:08 +02:00
|
|
|
}
|