mirror of
https://github.com/warmcat/libwebsockets.git
synced 2025-03-30 00:00:16 +01:00
![]() Saw this on travis selftests during context destroy ==18895== Invalid read of size 8 ==18895== at 0x415909: __lws_vhost_destroy2 (vhost.c:1063) ==18895== by 0x40E65B: lws_context_destroy2 (context.c:929) ==18895== by 0x40EBE5: lws_context_destroy (context.c:1128) ==18895== by 0x40CC41: main (minimal-http-client-post.c:267) ==18895== Address 0x6168688 is 728 bytes inside a block of size 792 free'd ==18895== at 0x4C2BDEC: free (in /usr/lib/valgrind/vgpreload_memcheck-amd64-linux.so) ==18895== by 0x45B29E: _realloc (alloc.c:120) ==18895== by 0x45B2D6: lws_realloc (alloc.c:130) ==18895== by 0x415ED7: __lws_vhost_destroy2 (vhost.c:1204) ==18895== by 0x419164: lws_vhost_unbind_wsi (wsi.c:82) ==18895== by 0x41236B: __lws_free_wsi (close.c:154) ==18895== by 0x4134CF: __lws_close_free_wsi_final (close.c:650) ==18895== by 0x4133BA: __lws_close_free_wsi (close.c:610) ==18895== by 0x413528: lws_close_free_wsi (close.c:660) ==18895== by 0x4158C7: __lws_vhost_destroy2 (vhost.c:1053) ==18895== by 0x40E65B: lws_context_destroy2 (context.c:929) ==18895== by 0x40EBE5: lws_context_destroy (context.c:1128) Removing the last wsi from the vhost we started to destroy finalized the vhost destruction, which is aimed at libuv async close cleanup. But if we already entered __lws_vhost_destroy2, we will definitely destroy the vhost ourselves at the end of that function already. So defeat the wsi close triggering it. |
||
---|---|---|
.. | ||
abstract | ||
core | ||
core-net | ||
event-libs | ||
jose | ||
misc | ||
plat | ||
roles | ||
system | ||
tls | ||
README.md |
Library sources layout
Code that goes in the libwebsockets library itself lives down ./lib
Path | Sources |
---|---|
lib/core | Core lws code related to generic fd and wsi servicing and management |
lib/event-libs | Code containing optional event-lib specific adaptations |
lib/jose | JOSE / JWS / JWK / JWE implementations |
lib/misc | Code for various mostly optional miscellaneous features |
lib/plat | Platform-specific adaptation code |
lib/roles | Code for specific optional wsi roles, eg, http/1, h2, ws, raw, etc |
lib/tls | Code supporting the various TLS libraries |
libwebsockets.h | Public API header for the whole of lws |