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-01-29 22:47:08 +00:00
|
|
|
#include <limits.h>
|
2019-01-29 22:11:46 +00:00
|
|
|
#include <jansson.h>
|
2019-02-10 21:18:22 +00:00
|
|
|
#include <libwebsockets.h>
|
2019-01-29 22:11:46 +00:00
|
|
|
|
2019-02-09 02:08:02 +00:00
|
|
|
#include "wsfs/jsonrpc/server.h"
|
2019-01-29 22:11:46 +00:00
|
|
|
|
|
|
|
#define WSFS_MAX_READ_LENGTH 4096
|
|
|
|
|
|
|
|
static wsfs_status wsfs_fill_buffer(
|
2019-02-17 01:01:12 +00:00
|
|
|
char * * buffer,
|
2019-01-29 22:11:46 +00:00
|
|
|
char const * format,
|
|
|
|
char const * data,
|
|
|
|
size_t count)
|
|
|
|
{
|
|
|
|
wsfs_status status = WSFS_GOOD;
|
|
|
|
|
2019-02-17 01:01:12 +00:00
|
|
|
if (0 < count)
|
2019-01-29 22:11:46 +00:00
|
|
|
{
|
2019-02-17 01:01:12 +00:00
|
|
|
*buffer = malloc(count);
|
2019-01-29 22:11:46 +00:00
|
|
|
if (0 == strcmp("identity", format))
|
|
|
|
{
|
2019-02-17 01:01:12 +00:00
|
|
|
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-02-17 01:01:12 +00:00
|
|
|
lws_b64_decode_string(data, *buffer, count);
|
2019-02-10 21:18:22 +00:00
|
|
|
}
|
2019-01-29 22:11:46 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
status = WSFS_BAD;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
2019-02-09 02:08:02 +00:00
|
|
|
static void wsfs_operation_read_finished(void * user_data, wsfs_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");
|
|
|
|
|
|
|
|
if ((NULL != data_holder) && (json_is_string(data_holder)) &&
|
|
|
|
(NULL != format_holder) && (json_is_string(format_holder)) &&
|
|
|
|
(NULL != count_holder) && (json_is_integer(count_holder)))
|
|
|
|
{
|
|
|
|
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-02-17 01:01:12 +00:00
|
|
|
status = wsfs_fill_buffer(&buffer, format, data, length);
|
2019-01-29 22:11:46 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
status = WSFS_BAD_FORMAT;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-03 18:10:05 +00:00
|
|
|
if (WSFS_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
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void wsfs_operation_read(
|
|
|
|
fuse_req_t request,
|
|
|
|
fuse_ino_t inode,
|
|
|
|
size_t size,
|
|
|
|
off_t offset,
|
|
|
|
struct fuse_file_info * file_info)
|
|
|
|
{
|
|
|
|
struct wsfs_operations_context * user_data = fuse_req_userdata(request);
|
|
|
|
struct wsfs_jsonrpc_server * rpc = user_data->rpc;
|
|
|
|
|
|
|
|
int const length = (size <= WSFS_MAX_READ_LENGTH) ? (int) size : WSFS_MAX_READ_LENGTH;
|
|
|
|
int handle = (file_info->fh & INT_MAX);
|
|
|
|
wsfs_jsonrpc_server_invoke(rpc, &wsfs_operation_read_finished, request, "read", "iiii", inode, handle, (int) offset, length);
|
2019-01-29 22:11:46 +00:00
|
|
|
}
|