mirror of
https://github.com/warmcat/libwebsockets.git
synced 2025-03-16 00:00:07 +01:00

Until now the uv watcher has been composed in the wsi. This works fine except in the case of a client wsi that meets a redirect when the event loop is libuv with its requirement for handle close via the event loop. We want to reuse the wsi, since the originator of it has a copy of the wsi pointer, and we want to conceal the redirect. Since the redirect is commonly to a different IP, we want to keep the wsi alive while closing its socket cleanly. That's not too difficult, unless you are using uv. With UV the comoposed watcher is a disaster, since after the close is requested the wsi will start to reconnect. We tried to deal with that by copying the uv handle and freeing it when the handle close finalizes. But it turns out the handle is in a linked-list scheme in uv. This patch hopefully finally solves it by giving the uv handle its own allocation from the start. When we want to close the socket and reuse the wsi, we simply take responsibility for freeing the handle and set the wsi watcher pointer to NULL.
71 lines
2.2 KiB
C
71 lines
2.2 KiB
C
/*
|
|
* libwebsockets - small server side websockets and web server implementation
|
|
*
|
|
* Copyright (C) 2010 - 2018 Andy Green <andy@warmcat.com>
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation:
|
|
* version 2.1 of the License.
|
|
*
|
|
* This library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
|
* MA 02110-1301 USA
|
|
*
|
|
* This is included from core/private.h if LWS_WITH_LIBUV
|
|
*/
|
|
|
|
#include <uv.h>
|
|
|
|
/*
|
|
* libuv's async destroy cb means that asking to close something doesn't mean
|
|
* you can destroy it or parent things until after the close completes.
|
|
*
|
|
* So we must reference-count creation and close completions with libuv.
|
|
*
|
|
* All "static" (per-pt or per-context) uv handles must
|
|
*
|
|
* - have their .data set to point to the context
|
|
*
|
|
* - contribute to context->uv_count_static_asset_handles
|
|
* counting
|
|
*/
|
|
#define LWS_UV_REFCOUNT_STATIC_HANDLE_NEW(_x, _ctx) \
|
|
{ uv_handle_t *_uht = (uv_handle_t *)(_x); _uht->data = _ctx; \
|
|
_ctx->count_event_loop_static_asset_handles++; }
|
|
#define LWS_UV_REFCOUNT_STATIC_HANDLE_TO_CONTEXT(_x) \
|
|
((struct lws_context *)((uv_handle_t *)((_x)->data)))
|
|
#define LWS_UV_REFCOUNT_STATIC_HANDLE_DESTROYED(_x) \
|
|
(--(LWS_UV_REFCOUNT_STATIC_HANDLE_TO_CONTEXT(_x)-> \
|
|
count_event_loop_static_asset_handles))
|
|
|
|
struct lws_pt_eventlibs_libuv {
|
|
uv_loop_t *io_loop;
|
|
uv_signal_t signals[8];
|
|
uv_timer_t timeout_watcher;
|
|
uv_timer_t hrtimer;
|
|
uv_idle_t idle;
|
|
};
|
|
|
|
struct lws_context_eventlibs_libuv {
|
|
uv_loop_t loop;
|
|
};
|
|
|
|
struct lws_io_watcher_libuv {
|
|
uv_poll_t *pwatcher;
|
|
};
|
|
|
|
struct lws_signal_watcher_libuv {
|
|
uv_signal_t watcher;
|
|
};
|
|
|
|
extern struct lws_event_loop_ops event_loop_ops_uv;
|
|
|
|
LWS_VISIBLE uv_loop_t *
|
|
lws_uv_getloop(struct lws_context *context, int tsi);
|