2020-06-11 16:07:42 +00:00
|
|
|
#include "webfuse/adapter/impl/client_protocol.h"
|
|
|
|
#include "webfuse/adapter/client_callback.h"
|
2020-06-12 18:38:20 +00:00
|
|
|
#include "webfuse/adapter/impl/credentials.h"
|
2020-06-11 16:07:42 +00:00
|
|
|
#include "webfuse/core/protocol_names.h"
|
2020-06-11 20:57:56 +00:00
|
|
|
#include "webfuse/core/url.h"
|
2020-06-11 16:07:42 +00:00
|
|
|
#include "webfuse/core/util.h"
|
2020-06-12 18:38:20 +00:00
|
|
|
#include "webfuse/core/timer/manager.h"
|
|
|
|
#include "webfuse/core/jsonrpc/response.h"
|
|
|
|
#include "webfuse/core/jsonrpc/proxy.h"
|
|
|
|
|
|
|
|
#include "webfuse/core/message.h"
|
|
|
|
#include "webfuse/core/message_queue.h"
|
|
|
|
#include "webfuse/core/container_of.h"
|
|
|
|
|
2020-06-11 16:07:42 +00:00
|
|
|
|
|
|
|
#include <stddef.h>
|
|
|
|
#include <libwebsockets.h>
|
|
|
|
|
2020-06-12 18:38:20 +00:00
|
|
|
#define WF_DEFAULT_TIMEOUT (10 * 1000)
|
|
|
|
|
|
|
|
static void
|
|
|
|
wf_impl_client_protocol_process(
|
|
|
|
struct wf_client_protocol * protocol,
|
|
|
|
char const * data,
|
|
|
|
size_t length)
|
|
|
|
{
|
|
|
|
json_t * message = json_loadb(data, length, 0, NULL);
|
|
|
|
if (NULL != message)
|
|
|
|
{
|
|
|
|
if (wf_jsonrpc_is_response(message))
|
|
|
|
{
|
|
|
|
wf_jsonrpc_proxy_onresult(protocol->proxy, message);
|
|
|
|
}
|
|
|
|
|
|
|
|
json_decref(message);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool
|
|
|
|
wf_impl_client_protocol_send(
|
|
|
|
json_t * request,
|
|
|
|
void * user_data)
|
|
|
|
{
|
|
|
|
bool result = false;
|
|
|
|
struct wf_client_protocol * protocol = user_data;
|
|
|
|
|
|
|
|
struct wf_message * message = wf_message_create(request);
|
|
|
|
if (NULL != message)
|
|
|
|
{
|
|
|
|
wf_slist_append(&protocol->messages, &message->item);
|
|
|
|
lws_callback_on_writable(protocol->wsi);
|
|
|
|
result = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
wf_impl_client_protocol_on_authenticate_finished(
|
|
|
|
void * user_data,
|
|
|
|
json_t const * result,
|
|
|
|
json_t const * WF_UNUSED_PARAM(error))
|
|
|
|
{
|
|
|
|
struct wf_client_protocol * protocol = user_data;
|
|
|
|
int const reason = (NULL != result) ? WF_CLIENT_AUTHENTICATED : WF_CLIENT_AUTHENTICATION_FAILED;
|
|
|
|
|
|
|
|
protocol->callback(protocol->user_data, reason, NULL);
|
|
|
|
}
|
|
|
|
|
2020-06-11 16:07:42 +00:00
|
|
|
static int wf_impl_client_protocol_lws_callback(
|
2020-06-11 20:57:56 +00:00
|
|
|
struct lws * wsi,
|
|
|
|
enum lws_callback_reasons reason,
|
2020-06-11 16:07:42 +00:00
|
|
|
void * WF_UNUSED_PARAM(user),
|
2020-06-11 20:57:56 +00:00
|
|
|
void * in,
|
2020-06-11 16:07:42 +00:00
|
|
|
size_t WF_UNUSED_PARAM(len))
|
|
|
|
{
|
2020-06-11 20:57:56 +00:00
|
|
|
int result = 0;
|
|
|
|
struct lws_protocols const * ws_protocol = lws_get_protocol(wsi);
|
|
|
|
struct wf_client_protocol * protocol = (NULL != ws_protocol) ? ws_protocol->user : NULL;
|
|
|
|
|
|
|
|
if (NULL != protocol)
|
|
|
|
{
|
2020-06-12 18:38:20 +00:00
|
|
|
wf_timer_manager_check(protocol->timer_manager);
|
|
|
|
|
2020-06-11 20:57:56 +00:00
|
|
|
switch (reason)
|
|
|
|
{
|
|
|
|
case LWS_CALLBACK_CLIENT_ESTABLISHED:
|
|
|
|
protocol->is_connected = true;
|
|
|
|
protocol->callback(protocol->user_data, WF_CLIENT_CONNECTED, NULL);
|
|
|
|
break;
|
|
|
|
case LWS_CALLBACK_CLIENT_CONNECTION_ERROR:
|
|
|
|
protocol->is_connected = false;
|
|
|
|
protocol->callback(protocol->user_data, WF_CLIENT_DISCONNECTED, NULL);
|
|
|
|
break;
|
|
|
|
case LWS_CALLBACK_CLIENT_CLOSED:
|
|
|
|
protocol->is_connected = false;
|
|
|
|
protocol->callback(protocol->user_data, WF_CLIENT_DISCONNECTED, NULL);
|
|
|
|
protocol->wsi = NULL;
|
|
|
|
break;
|
2020-06-12 18:38:20 +00:00
|
|
|
case LWS_CALLBACK_CLIENT_RECEIVE:
|
|
|
|
wf_impl_client_protocol_process(protocol, in, len);
|
2020-06-11 20:57:56 +00:00
|
|
|
case LWS_CALLBACK_SERVER_WRITEABLE:
|
|
|
|
// fall-through
|
|
|
|
case LWS_CALLBACK_CLIENT_WRITEABLE:
|
|
|
|
if (wsi == protocol->wsi)
|
|
|
|
{
|
|
|
|
if (protocol->is_shutdown_requested)
|
|
|
|
{
|
|
|
|
result = 1;
|
|
|
|
}
|
2020-06-12 18:38:20 +00:00
|
|
|
else if (!wf_slist_empty(&protocol->messages))
|
|
|
|
{
|
|
|
|
struct wf_slist_item * item = wf_slist_remove_first(&protocol->messages);
|
|
|
|
struct wf_message * message = wf_container_of(item, struct wf_message, item);
|
|
|
|
lws_write(wsi, (unsigned char*) message->data, message->length, LWS_WRITE_TEXT);
|
|
|
|
wf_message_dispose(message);
|
|
|
|
|
|
|
|
if (!wf_slist_empty(&protocol->messages))
|
|
|
|
{
|
|
|
|
lws_callback_on_writable(wsi);
|
|
|
|
}
|
|
|
|
}
|
2020-06-11 20:57:56 +00:00
|
|
|
}
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
2020-06-11 16:07:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
wf_impl_client_protocol_init(
|
|
|
|
struct wf_client_protocol * protocol,
|
|
|
|
wf_client_callback_fn * callback,
|
|
|
|
void * user_data)
|
|
|
|
{
|
2020-06-11 20:57:56 +00:00
|
|
|
protocol->is_connected = false,
|
|
|
|
protocol->is_shutdown_requested = false;
|
|
|
|
protocol->wsi = NULL;
|
2020-06-11 16:07:42 +00:00
|
|
|
protocol->callback = callback;
|
|
|
|
protocol->user_data = user_data;
|
|
|
|
protocol->callback(protocol->user_data, WF_CLIENT_INIT, NULL);
|
2020-06-12 18:38:20 +00:00
|
|
|
|
|
|
|
wf_slist_init(&protocol->messages);
|
|
|
|
protocol->timer_manager = wf_timer_manager_create();
|
|
|
|
protocol->proxy = wf_jsonrpc_proxy_create(protocol->timer_manager, WF_DEFAULT_TIMEOUT, &wf_impl_client_protocol_send, protocol);
|
|
|
|
|
2020-06-11 16:07:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
wf_impl_client_protocol_cleanup(
|
|
|
|
struct wf_client_protocol * protocol)
|
|
|
|
{
|
|
|
|
protocol->callback(protocol->user_data, WF_CLIENT_CLEANUP, NULL);
|
2020-06-12 18:38:20 +00:00
|
|
|
wf_jsonrpc_proxy_dispose(protocol->proxy);
|
|
|
|
wf_timer_manager_dispose(protocol->timer_manager);
|
|
|
|
wf_message_queue_cleanup(&protocol->messages);
|
2020-06-11 16:07:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
wf_impl_client_protocol_callback(
|
|
|
|
struct wf_client_protocol * protocol,
|
|
|
|
int reason,
|
|
|
|
void * arg)
|
|
|
|
{
|
|
|
|
protocol->callback(protocol->user_data, reason, arg);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
wf_impl_client_protocol_init_lws(
|
|
|
|
struct wf_client_protocol * protocol,
|
|
|
|
struct lws_protocols * lws_protocol)
|
|
|
|
{
|
|
|
|
lws_protocol->name = WF_PROTOCOL_NAME_ADAPTER_CLIENT;
|
|
|
|
lws_protocol->callback = &wf_impl_client_protocol_lws_callback;
|
|
|
|
lws_protocol->per_session_data_size = 0;
|
|
|
|
lws_protocol->user = protocol;
|
|
|
|
}
|
2020-06-11 17:12:07 +00:00
|
|
|
|
|
|
|
void
|
|
|
|
wf_impl_client_protocol_connect(
|
|
|
|
struct wf_client_protocol * protocol,
|
2020-06-11 20:57:56 +00:00
|
|
|
struct lws_context * context,
|
2020-06-11 17:12:07 +00:00
|
|
|
char const * url)
|
|
|
|
{
|
2020-06-11 20:57:56 +00:00
|
|
|
struct wf_url url_data;
|
|
|
|
bool const success = wf_url_init(&url_data, url);
|
|
|
|
if (success)
|
|
|
|
{
|
|
|
|
struct lws_client_connect_info info;
|
|
|
|
memset(&info, 0 ,sizeof(struct lws_client_connect_info));
|
|
|
|
info.context = context;
|
|
|
|
info.port = url_data.port;
|
|
|
|
info.address = url_data.host;
|
|
|
|
info.path = url_data.path;
|
|
|
|
info.host = info.address;
|
|
|
|
info.origin = info.address;
|
|
|
|
info.ssl_connection = (url_data.use_tls) ? LCCSCF_USE_SSL : 0;
|
|
|
|
info.protocol = WF_PROTOCOL_NAME_PROVIDER_SERVER;
|
|
|
|
info.local_protocol_name = WF_PROTOCOL_NAME_ADAPTER_CLIENT;
|
|
|
|
info.pwsi = &protocol->wsi;
|
2020-06-11 17:12:07 +00:00
|
|
|
|
2020-06-11 20:57:56 +00:00
|
|
|
lws_client_connect_via_info(&info);
|
|
|
|
wf_url_cleanup(&url_data);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
protocol->callback(protocol->user_data, WF_CLIENT_DISCONNECTED, NULL);
|
|
|
|
}
|
2020-06-11 17:12:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
wf_impl_client_protocol_disconnect(
|
|
|
|
struct wf_client_protocol * protocol)
|
|
|
|
{
|
2020-06-11 20:57:56 +00:00
|
|
|
if (protocol->is_connected)
|
|
|
|
{
|
|
|
|
protocol->is_shutdown_requested = true;
|
|
|
|
lws_callback_on_writable(protocol->wsi);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
protocol->callback(protocol->user_data, WF_CLIENT_DISCONNECTED, NULL);
|
|
|
|
}
|
|
|
|
|
2020-06-11 17:12:07 +00:00
|
|
|
}
|
2020-06-12 18:38:20 +00:00
|
|
|
|
|
|
|
void
|
|
|
|
wf_impl_client_protocol_authenticate(
|
|
|
|
struct wf_client_protocol * protocol)
|
|
|
|
{
|
|
|
|
struct wf_credentials creds;
|
|
|
|
wf_impl_credentials_init_default(&creds);
|
|
|
|
protocol->callback(protocol->user_data, WF_CLIENT_AUTHENTICATE_GET_CREDENTIALS, &creds);
|
|
|
|
|
|
|
|
json_incref(creds.data);
|
|
|
|
wf_jsonrpc_proxy_invoke(
|
|
|
|
protocol->proxy,
|
|
|
|
&wf_impl_client_protocol_on_authenticate_finished,
|
|
|
|
protocol,
|
|
|
|
"authenticate",
|
|
|
|
"sj",
|
|
|
|
creds.type, creds.data);
|
|
|
|
|
|
|
|
wf_impl_credentials_cleanup(&creds);
|
|
|
|
}
|