1
0
mirror of https://github.com/falk-werner/webfuse-provider synced 2024-10-01 13:21:57 +00:00
falk-werner_webfuse-provider/lib/webfuse/adapter/impl/operation/read.c

103 lines
2.3 KiB
C
Raw Normal View History

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-01-29 22:47:08 +00:00
#include <limits.h>
2019-01-29 22:11:46 +00:00
#include <jansson.h>
#include "webfuse/adapter/impl/jsonrpc/proxy.h"
2019-12-01 16:17:21 +00:00
#include "webfuse/core/base64.h"
2019-01-29 22:11:46 +00:00
2019-03-26 22:04:53 +00:00
#define WF_MAX_READ_LENGTH 4096
2019-01-29 22:11:46 +00:00
2019-03-26 22:04:53 +00:00
static char * wf_impl_fill_buffer(
2019-01-29 22:11:46 +00:00
char const * data,
2019-03-03 17:02:02 +00:00
char const * format,
size_t count,
2019-03-26 22:04:53 +00:00
wf_status * status)
2019-01-29 22:11:46 +00:00
{
2019-03-26 22:04:53 +00:00
*status = WF_GOOD;
2019-12-01 16:17:21 +00:00
char * buffer = malloc(count);
2019-01-29 22:11:46 +00:00
2019-03-03 17:02:02 +00:00
if ((NULL != buffer) && (0 < count))
2019-01-29 22:11:46 +00:00
{
if (0 == strcmp("identity", format))
{
memcpy(buffer, data, count);
2019-01-29 22:11:46 +00:00
}
2019-02-10 21:18:22 +00:00
else if (0 == strcmp("base64", format))
{
2019-12-01 16:17:21 +00:00
wf_base64_decode(data, strlen(data), (uint8_t *) buffer, count);
2019-02-10 21:18:22 +00:00
}
2019-01-29 22:11:46 +00:00
else
{
2019-03-26 22:04:53 +00:00
*status = WF_BAD;
2019-01-29 22:11:46 +00:00
}
}
2019-03-03 17:02:02 +00:00
return buffer;
2019-01-29 22:11:46 +00:00
}
2019-03-26 22:04:53 +00:00
static void wf_impl_operation_read_finished(void * user_data, wf_status status, json_t const * data)
2019-01-29 22:11:46 +00:00
{
2019-02-09 02:08:02 +00:00
fuse_req_t request = user_data;
2019-01-29 22:11:46 +00:00
2019-02-09 02:08:02 +00:00
char * buffer = NULL;
2019-02-09 18:02:53 +00:00
size_t length = 0;
2019-01-29 22:11:46 +00:00
if (NULL != data)
{
json_t * data_holder = json_object_get(data, "data");
json_t * format_holder = json_object_get(data, "format");
json_t * count_holder = json_object_get(data, "count");
2019-03-03 17:02:02 +00:00
if (json_is_string(data_holder) &&
json_is_string(format_holder) &&
json_is_integer(count_holder))
2019-01-29 22:11:46 +00:00
{
char const * const data = json_string_value(data_holder);
char const * const format = json_string_value(format_holder);
2019-02-09 02:08:02 +00:00
length = (size_t) json_integer_value(count_holder);
2019-01-29 22:11:46 +00:00
2019-03-26 22:04:53 +00:00
buffer = wf_impl_fill_buffer(data, format, length, &status);
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-01-29 22:11:46 +00:00
{
2019-02-09 02:08:02 +00:00
fuse_reply_buf(request, buffer, length);
2019-01-29 22:11:46 +00:00
}
2019-02-03 18:10:05 +00:00
else
{
fuse_reply_err(request, ENOENT);
}
free(buffer);
2019-02-09 02:08:02 +00:00
}
2019-03-26 22:04:53 +00:00
void wf_impl_operation_read(
2019-02-09 02:08:02 +00:00
fuse_req_t request,
fuse_ino_t inode,
size_t size,
off_t offset,
struct fuse_file_info * file_info)
{
2019-03-26 22:04:53 +00:00
struct wf_impl_operations_context * user_data = fuse_req_userdata(request);
feat(webfuse): add multiclient support (#23) * fixes verbosity option when set through command line * adds support for build type and allows to run gdb in container * adds missing toolchain headers to project * renames container macros * adds gdbserver * fixes verbosity option when set through command line * adds support for build type and allows to run gdb in container * adds missing toolchain headers to project * renames container macros * adds gdbserver * removes language settings, which contains alternating values * adds wrapper script to launch gdbserver * fix docker command in wrapper script * fixes run in dind setup * replaces docker's init through dump-init * moves filesystem to session * fixes verbosity option when set through command line * adds support for build type and allows to run gdb in container * renames container macros * adds gdbserver * fixes verbosity option when set through command line * adds support for build type and allows to run gdb in container * renames container macros * adds gdbserver * adds wrapper script to launch gdbserver * fix docker command in wrapper script * fixes run in dind setup * replaces docker's init through dump-init * moves filesystem to session * adds container_of * added dlist * allows multiple clients to connect * removes directory when session is closed * adds dependecy to uuid-dev * allow clients to register filesystems * updates documentation * moves mountpoint handling into filesystem: mountpoints are removed during session cleanup * adds filesystem name/id to request parameters * fixes security issue: add_filesystem did not check name * removes default link, if it is broken * recreates symlink "default", if filesystem is gone * updates documentation * fixes memory leak * makes authentication work .. again * updates provider to support changed protocol * removes execute right of hello.txt * fixes style issues * fixes javascript style issues * fixes flase positive from Flawfinder * fixes some javascript style issues * removes use of PATH_MAX * removes use of GNU extensions in container_of implementation * ignores findings of flawfinder * replaces dlist by slist * removes duplicate implementation of slist (message_queue)
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
if (NULL != rpc)
{
int const length = (size <= WF_MAX_READ_LENGTH) ? (int) size : WF_MAX_READ_LENGTH;
int handle = (file_info->fh & INT_MAX);
wf_impl_jsonrpc_proxy_invoke(rpc, &wf_impl_operation_read_finished, request, "read", "siiii", user_data->name, (int) inode, handle, (int) offset, length);
}
else
{
fuse_reply_err(request, ENOENT);
}
2019-01-29 22:11:46 +00:00
}