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 <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <errno.h>
|
|
|
|
|
|
|
|
#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/core/util.h"
|
2019-02-03 18:10:05 +00:00
|
|
|
|
|
|
|
|
2019-03-26 22:04:53 +00:00
|
|
|
#define WF_DIRBUFFER_INITIAL_SIZE 1024
|
2019-02-03 18:10:05 +00:00
|
|
|
|
2019-03-26 22:04:53 +00:00
|
|
|
struct wf_impl_operation_readdir_context
|
2019-02-09 02:08:02 +00:00
|
|
|
{
|
|
|
|
fuse_req_t request;
|
|
|
|
size_t size;
|
|
|
|
off_t offset;
|
|
|
|
};
|
|
|
|
|
2019-03-26 22:04:53 +00:00
|
|
|
struct wf_impl_dirbuffer
|
2019-02-03 18:10:05 +00:00
|
|
|
{
|
|
|
|
char * data;
|
|
|
|
size_t position;
|
|
|
|
size_t capacity;
|
|
|
|
};
|
|
|
|
|
2019-03-26 22:04:53 +00:00
|
|
|
static void wf_impl_dirbuffer_init(
|
|
|
|
struct wf_impl_dirbuffer * buffer)
|
2019-02-03 18:10:05 +00:00
|
|
|
{
|
2019-03-26 22:04:53 +00:00
|
|
|
buffer->data = malloc(WF_DIRBUFFER_INITIAL_SIZE);
|
2019-02-03 18:10:05 +00:00
|
|
|
buffer->position = 0;
|
2019-03-26 22:04:53 +00:00
|
|
|
buffer->capacity = WF_DIRBUFFER_INITIAL_SIZE;
|
2019-02-03 18:10:05 +00:00
|
|
|
}
|
|
|
|
|
2019-03-26 22:04:53 +00:00
|
|
|
static void wf_impl_dirbuffer_dispose(
|
|
|
|
struct wf_impl_dirbuffer * buffer)
|
2019-02-03 18:10:05 +00:00
|
|
|
{
|
|
|
|
free(buffer->data);
|
|
|
|
}
|
|
|
|
|
2019-03-26 22:04:53 +00:00
|
|
|
static void wf_impl_dirbuffer_add(
|
2019-02-03 18:10:05 +00:00
|
|
|
fuse_req_t request,
|
2019-03-26 22:04:53 +00:00
|
|
|
struct wf_impl_dirbuffer * buffer,
|
2019-02-03 18:10:05 +00:00
|
|
|
char const * name,
|
|
|
|
fuse_ino_t inode)
|
|
|
|
{
|
|
|
|
size_t const size = fuse_add_direntry(request, NULL, 0, name, NULL, 0);
|
|
|
|
size_t remaining = buffer->capacity - buffer->position;
|
|
|
|
while (remaining < size)
|
|
|
|
{
|
|
|
|
buffer->capacity *= 2;
|
|
|
|
buffer->data = realloc(buffer->data, buffer->capacity);
|
|
|
|
remaining = buffer->capacity - buffer->position;
|
|
|
|
}
|
2019-01-29 22:11:46 +00:00
|
|
|
|
2019-02-03 18:10:05 +00:00
|
|
|
struct stat stat_buffer;
|
|
|
|
memset(&stat_buffer, 0, sizeof(struct stat));
|
|
|
|
stat_buffer.st_ino = inode;
|
|
|
|
fuse_add_direntry(request,
|
|
|
|
&buffer->data[buffer->position], remaining, name,
|
|
|
|
&stat_buffer, buffer->position + size);
|
|
|
|
buffer->position += size;
|
|
|
|
}
|
|
|
|
|
2019-03-26 22:04:53 +00:00
|
|
|
static size_t wf_impl_min(size_t a, size_t b)
|
2019-02-03 18:10:05 +00:00
|
|
|
{
|
|
|
|
return (a < b) ? a : b;
|
|
|
|
}
|
|
|
|
|
2019-03-26 22:04:53 +00:00
|
|
|
static void wf_impl_operation_readdir_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 * result)
|
2019-01-29 22:11:46 +00:00
|
|
|
{
|
2019-03-26 22:04:53 +00:00
|
|
|
struct wf_impl_operation_readdir_context * context = user_data;
|
2019-02-03 18:10:05 +00:00
|
|
|
|
2019-03-26 22:04:53 +00:00
|
|
|
struct wf_impl_dirbuffer buffer;
|
|
|
|
wf_impl_dirbuffer_init(&buffer);
|
2019-01-29 22:11:46 +00:00
|
|
|
|
|
|
|
if (NULL != result)
|
|
|
|
{
|
|
|
|
if (json_is_array(result))
|
|
|
|
{
|
|
|
|
bool buffer_full = false;
|
|
|
|
size_t const count = json_array_size(result);
|
|
|
|
for(size_t i = 0; (!buffer_full) && (i < count); i++)
|
|
|
|
{
|
|
|
|
json_t * entry =json_array_get(result, i);
|
2019-02-03 17:12:14 +00:00
|
|
|
if (json_is_object(entry))
|
2019-01-29 22:11:46 +00:00
|
|
|
{
|
2019-02-03 17:12:14 +00:00
|
|
|
json_t * name_holder = json_object_get(entry, "name");
|
2019-02-03 18:10:05 +00:00
|
|
|
json_t * inode_holder = json_object_get(entry, "inode");
|
|
|
|
|
|
|
|
if ((NULL != name_holder) && (json_is_string(name_holder)) &&
|
|
|
|
(NULL != inode_holder) && (json_is_integer(inode_holder)))
|
2019-02-03 17:12:14 +00:00
|
|
|
{
|
2019-02-03 18:10:05 +00:00
|
|
|
char const * name = json_string_value(name_holder);
|
|
|
|
fuse_ino_t entry_inode = (fuse_ino_t) json_integer_value(inode_holder);
|
2019-03-26 22:04:53 +00:00
|
|
|
wf_impl_dirbuffer_add(context->request, &buffer, name, entry_inode);
|
2019-02-03 17:12:14 +00:00
|
|
|
}
|
2019-01-29 22:11:46 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-02-03 18:10:05 +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
|
|
|
if (((size_t) context->offset) < buffer.position)
|
2019-02-03 18:10:05 +00:00
|
|
|
{
|
2019-02-09 02:08:02 +00:00
|
|
|
fuse_reply_buf(context->request, &buffer.data[context->offset],
|
2019-03-26 22:04:53 +00:00
|
|
|
wf_impl_min(buffer.position - context->offset, context->size));
|
2019-02-03 18:10:05 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2019-02-09 02:08:02 +00:00
|
|
|
fuse_reply_buf(context->request, NULL, 0);
|
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-03-26 22:04:53 +00:00
|
|
|
wf_impl_dirbuffer_dispose(&buffer);
|
2019-02-09 02:08:02 +00:00
|
|
|
free(context);
|
|
|
|
}
|
|
|
|
|
2019-03-26 22:04:53 +00:00
|
|
|
void wf_impl_operation_readdir (
|
2019-02-09 02:08:02 +00:00
|
|
|
fuse_req_t request,
|
|
|
|
fuse_ino_t inode,
|
|
|
|
size_t size,
|
|
|
|
off_t offset,
|
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
|
|
|
{
|
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-04-01 20:15:12 +00:00
|
|
|
|
|
|
|
if (NULL != rpc)
|
|
|
|
{
|
2019-03-26 22:04:53 +00:00
|
|
|
struct wf_impl_operation_readdir_context * readdir_context = malloc(sizeof(struct wf_impl_operation_readdir_context));
|
2019-02-09 02:08:02 +00:00
|
|
|
readdir_context->request = request;
|
|
|
|
readdir_context->size = size;
|
|
|
|
readdir_context->offset = offset;
|
|
|
|
|
2019-04-17 20:51:16 +00:00
|
|
|
wf_impl_jsonrpc_proxy_invoke(rpc, &wf_impl_operation_readdir_finished, readdir_context, "readdir", "si", user_data->name, inode);
|
2019-04-01 20:15:12 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
fuse_reply_err(request, ENOENT);
|
|
|
|
}
|
2019-02-03 18:10:05 +00:00
|
|
|
}
|