2019-03-26 22:04:53 +00:00
|
|
|
#include "webfuse/adapter/impl/operations.h"
|
2019-01-29 22:11:46 +00:00
|
|
|
|
2019-02-03 18:10:05 +00:00
|
|
|
#include <errno.h>
|
2019-01-29 22:11:46 +00:00
|
|
|
#include <string.h>
|
|
|
|
|
2019-02-03 18:10:05 +00:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <unistd.h>
|
2019-01-29 22:11:46 +00:00
|
|
|
|
2019-04-01 20:15:12 +00:00
|
|
|
#include "webfuse/adapter/impl/jsonrpc/proxy.h"
|
2019-03-26 22:04:53 +00:00
|
|
|
#include "webfuse/adapter/impl/jsonrpc/util.h"
|
|
|
|
#include "webfuse/core/util.h"
|
2019-01-29 22:11:46 +00:00
|
|
|
|
2019-03-26 22:04:53 +00:00
|
|
|
struct wf_impl_operation_getattr_context
|
2019-01-29 22:11:46 +00:00
|
|
|
{
|
2019-02-09 02:08:02 +00:00
|
|
|
fuse_req_t request;
|
2019-05-26 14:30:01 +00:00
|
|
|
fuse_ino_t inode;
|
2019-02-09 02:08:02 +00:00
|
|
|
double timeout;
|
|
|
|
uid_t uid;
|
|
|
|
gid_t gid;
|
|
|
|
};
|
|
|
|
|
2019-03-26 22:04:53 +00:00
|
|
|
static void wf_impl_operation_getattr_finished(
|
2019-02-09 02:08:02 +00:00
|
|
|
void * user_data,
|
2019-03-26 22:04:53 +00:00
|
|
|
wf_status status,
|
2019-02-09 02:08:02 +00:00
|
|
|
json_t const * data)
|
|
|
|
{
|
2019-03-26 22:04:53 +00:00
|
|
|
struct wf_impl_operation_getattr_context * context = user_data;
|
2019-01-29 22:11:46 +00:00
|
|
|
|
2019-02-03 18:10:05 +00:00
|
|
|
struct stat buffer;
|
2019-01-29 22:11:46 +00:00
|
|
|
if (NULL != data)
|
|
|
|
{
|
|
|
|
json_t * mode_holder = json_object_get(data, "mode");
|
|
|
|
json_t * type_holder = json_object_get(data, "type");
|
|
|
|
if ((NULL != mode_holder) && (json_is_integer(mode_holder)) &&
|
|
|
|
(NULL != type_holder) && (json_is_string(type_holder)))
|
|
|
|
{
|
2019-02-03 18:10:05 +00:00
|
|
|
memset(&buffer, 0, sizeof(struct stat));
|
|
|
|
|
2019-05-26 14:30:01 +00:00
|
|
|
buffer.st_ino = context->inode;
|
2019-02-03 18:10:05 +00:00
|
|
|
buffer.st_mode = json_integer_value(mode_holder) & 0555;
|
2019-01-29 22:11:46 +00:00
|
|
|
char const * type = json_string_value(type_holder);
|
|
|
|
if (0 == strcmp("file", type))
|
|
|
|
{
|
2019-02-03 18:10:05 +00:00
|
|
|
buffer.st_mode |= S_IFREG;
|
2019-01-29 22:11:46 +00:00
|
|
|
}
|
|
|
|
else if (0 == strcmp("dir", type))
|
|
|
|
{
|
2019-02-03 18:10:05 +00:00
|
|
|
buffer.st_mode |= S_IFDIR;
|
2019-01-29 22:11:46 +00:00
|
|
|
}
|
|
|
|
|
2019-02-03 18:10:05 +00:00
|
|
|
buffer.st_uid = context->uid;
|
|
|
|
buffer.st_gid = context->gid;
|
|
|
|
buffer.st_nlink = 1;
|
2019-03-26 22:04:53 +00:00
|
|
|
buffer.st_size = wf_impl_json_get_int(data, "size", 0);
|
|
|
|
buffer.st_atime = wf_impl_json_get_int(data, "atime", 0);
|
|
|
|
buffer.st_mtime = wf_impl_json_get_int(data, "mtime", 0);
|
|
|
|
buffer.st_ctime = wf_impl_json_get_int(data, "ctime", 0);
|
2019-01-29 22:11:46 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2019-03-26 22:04:53 +00:00
|
|
|
status = WF_BAD_FORMAT;
|
2019-01-29 22:11:46 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-26 22:04:53 +00:00
|
|
|
if (WF_GOOD == status)
|
2019-02-03 18:10:05 +00:00
|
|
|
{
|
2019-02-09 02:08:02 +00:00
|
|
|
fuse_reply_attr(context->request, &buffer, context->timeout);
|
2019-02-03 18:10:05 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2019-02-09 02:08:02 +00:00
|
|
|
fuse_reply_err(context->request, ENOENT);
|
2019-02-03 18:10:05 +00:00
|
|
|
}
|
2019-02-09 02:08:02 +00:00
|
|
|
|
|
|
|
free(context);
|
|
|
|
}
|
|
|
|
|
2019-03-26 22:04:53 +00:00
|
|
|
void wf_impl_operation_getattr (
|
2019-02-09 02:08:02 +00:00
|
|
|
fuse_req_t request,
|
|
|
|
fuse_ino_t inode,
|
2019-03-26 22:04:53 +00:00
|
|
|
struct fuse_file_info * WF_UNUSED_PARAM(file_info))
|
2019-02-09 02:08:02 +00:00
|
|
|
{
|
|
|
|
struct fuse_ctx const * context = fuse_req_ctx(request);
|
2019-03-26 22:04:53 +00:00
|
|
|
struct wf_impl_operations_context * user_data = fuse_req_userdata(request);
|
2019-04-17 20:51:16 +00:00
|
|
|
struct wf_impl_jsonrpc_proxy * rpc = wf_impl_operations_context_get_proxy(user_data);
|
2019-02-09 02:08:02 +00:00
|
|
|
|
2019-04-01 20:15:12 +00:00
|
|
|
if (NULL != rpc)
|
|
|
|
{
|
|
|
|
struct wf_impl_operation_getattr_context * getattr_context = malloc(sizeof(struct wf_impl_operation_getattr_context));
|
|
|
|
getattr_context->request = request;
|
2019-05-26 14:30:01 +00:00
|
|
|
getattr_context->inode = inode;
|
2019-04-01 20:15:12 +00:00
|
|
|
getattr_context->uid = context->uid;
|
|
|
|
getattr_context->gid = context->gid;
|
|
|
|
getattr_context->timeout = user_data->timeout;
|
2019-02-09 02:08:02 +00:00
|
|
|
|
2019-04-17 20:51:16 +00:00
|
|
|
wf_impl_jsonrpc_proxy_invoke(rpc, &wf_impl_operation_getattr_finished, getattr_context, "getattr", "si", user_data->name, inode);
|
2019-04-01 20:15:12 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
fuse_reply_err(request, ENOENT);
|
|
|
|
}
|
2019-01-29 22:11:46 +00:00
|
|
|
}
|