1
0
mirror of https://github.com/falk-werner/webfuse-provider synced 2024-09-29 11:10:44 +00:00
falk-werner_webfuse-provider/lib/webfuse/adapter/impl/operation/getattr.c

95 lines
2.6 KiB
C
Raw Normal View History

#include "webfuse/adapter/impl/operation/getattr.h"
#include "webfuse/adapter/impl/operation/context.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
#include "webfuse/core/jsonrpc/proxy.h"
#include "webfuse/core/json_util.h"
2019-03-26 22:04:53 +00:00
#include "webfuse/core/util.h"
2019-01-29 22:11:46 +00:00
void wf_impl_operation_getattr_finished(
2019-02-09 02:08:02 +00:00
void * user_data,
json_t const * result,
json_t const * error)
2019-02-09 02:08:02 +00:00
{
wf_status status = wf_impl_jsonrpc_get_status(error);
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;
if (NULL != result)
2019-01-29 22:11:46 +00:00
{
json_t * mode_holder = json_object_get(result, "mode");
json_t * type_holder = json_object_get(result, "type");
if ((json_is_integer(mode_holder)) && (json_is_string(type_holder)))
2019-01-29 22:11:46 +00:00
{
2019-02-03 18:10:05 +00:00
memset(&buffer, 0, sizeof(struct stat));
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;
buffer.st_size = wf_impl_json_get_int(result, "size", 0);
buffer.st_atime = wf_impl_json_get_int(result, "atime", 0);
buffer.st_mtime = wf_impl_json_get_int(result, "mtime", 0);
buffer.st_ctime = wf_impl_json_get_int(result, "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);
2020-04-04 21:27:34 +00:00
struct wf_impl_operation_context * user_data = fuse_req_userdata(request);
struct wf_jsonrpc_proxy * rpc = wf_impl_operation_context_get_proxy(user_data);
2019-02-09 02:08:02 +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;
getattr_context->inode = inode;
getattr_context->uid = context->uid;
getattr_context->gid = context->gid;
getattr_context->timeout = user_data->timeout;
2019-02-09 02:08:02 +00:00
2020-03-01 15:55:58 +00:00
wf_jsonrpc_proxy_invoke(rpc, &wf_impl_operation_getattr_finished, getattr_context, "getattr", "si", user_data->name, inode);
}
else
{
fuse_reply_err(request, ENOENT);
}
2019-01-29 22:11:46 +00:00
}