1
0
mirror of https://github.com/falk-werner/webfuse-provider synced 2024-09-29 13:20:46 +00:00
falk-werner_webfuse-provider/src/wsfs/operation/getattr.c

71 lines
1.8 KiB
C
Raw Normal View History

2019-01-29 22:11:46 +00:00
#include "wsfs/operations.h"
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 "wsfs/jsonrpc.h"
2019-02-03 18:10:05 +00:00
#include "wsfs/util.h"
2019-01-29 22:11:46 +00:00
2019-02-03 18:10:05 +00:00
extern void wsfs_operation_getattr (
fuse_req_t request,
fuse_ino_t inode,
2019-01-29 22:11:46 +00:00
struct fuse_file_info * WSFS_UNUSED_PARAM(file_info))
{
2019-02-03 18:10:05 +00:00
struct fuse_ctx const * context = fuse_req_ctx(request);
struct wsfs_operations_context * user_data = fuse_req_userdata(request);
struct wsfs_jsonrpc * rpc = user_data->rpc;
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
json_t * data = NULL;
2019-02-03 18:10:05 +00:00
wsfs_status status = wsfs_jsonrpc_invoke(rpc, &data, "getattr", "i", inode);
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));
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 = wsfs_json_get_int(data, "size", 0);
buffer.st_atime = wsfs_json_get_int(data, "atime", 0);
buffer.st_mtime = wsfs_json_get_int(data, "mtime", 0);
buffer.st_ctime = wsfs_json_get_int(data, "ctime", 0);
2019-01-29 22:11:46 +00:00
}
else
{
2019-02-03 18:10:05 +00:00
status = WSFS_BAD_FORMAT;
2019-01-29 22:11:46 +00:00
}
json_decref(data);
}
2019-02-03 18:10:05 +00:00
if (WSFS_GOOD == status)
{
fuse_reply_attr(request, &buffer, user_data->timeout);
}
else
{
fuse_reply_err(request, ENOENT);
}
2019-01-29 22:11:46 +00:00
}