Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add support for sd-event as event loop #1

Draft
wants to merge 15 commits into
base: v4.1-stable
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -62,3 +62,9 @@ doc
/q/
/b1/
/destdir/

/.idea/

/cmake-build-debug/

/cmake-build-release/
4 changes: 3 additions & 1 deletion CMakeLists-implied-options.txt
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@ if(LWS_WITH_DISTRO_RECOMMENDED)
set(LWS_WITH_LIBUV 1) # libuv
set(LWS_WITH_LIBEV 1) # libev
set(LWS_WITH_LIBEVENT 1) # libevent
set(LWS_WITH_SDEVENT 0) # sd-event
set(LWS_WITH_EVLIB_PLUGINS 1) # event libraries created as plugins / individual packages
set(LWS_WITHOUT_EXTENSIONS 0) # libz
set(LWS_ROLE_DBUS 1) # dbus-related libs
Expand Down Expand Up @@ -117,7 +118,8 @@ endif()
if (LWS_WITH_LIBEV OR
LWS_WITH_LIBUV OR
LWS_WITH_LIBEVENT OR
LWS_WITH_GLIB)
LWS_WITH_GLIB OR
LWS_WITH_SDEVENT)
set(LWS_WITH_EVENT_LIBS 1)
else()
unset(LWS_WITH_EVENT_LIBS)
Expand Down
31 changes: 23 additions & 8 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -58,14 +58,26 @@ set(LWS_WITH_POLL 1)

if (ESP_PLATFORM)
set(LWS_ESP_PLATFORM 1)
set(CMAKE_TOOLCHAIN_FILE contrib/cross-esp32.cmake)
#set(CMAKE_TOOLCHAIN_FILE contrib/cross-esp32.cmake)
set(LWIP_PROVIDE_ERRNO 1)
endif()

# it's at this point any toolchain file is brought in
project(libwebsockets C)
include(CTest)

if (ESP_PLATFORM)
include_directories(
${IDF_PATH}/components/freertos/port/xtensa/include/
${IDF_PATH}/components/hal/include
${IDF_PATH}/components/soc/${CONFIG_IDF_TARGET}/include/
${IDF_PATH}/components/soc/include/
${IDF_PATH}/components/esp_hw_support/include
${IDF_PATH}/components/hal/${CONFIG_IDF_TARGET}/include/
)
endif()


#
# Select features recommended for PC distro packaging
#
Expand Down Expand Up @@ -152,6 +164,7 @@ option(LWS_WITH_LIBEV "Compile with support for libev" OFF)
option(LWS_WITH_LIBUV "Compile with support for libuv" OFF)
option(LWS_WITH_LIBEVENT "Compile with support for libevent" OFF)
option(LWS_WITH_GLIB "Compile with support for glib event loop" OFF)
option(LWS_WITH_SDEVENT "Compile with support for sd-event loop" OFF)

if (UNIX)
# since v4.1, on unix platforms default is build any event libs as runtime plugins
Expand Down Expand Up @@ -338,7 +351,7 @@ set(CPACK_RPM_PACKAGE_LICENSE "MIT")
set(CPACK_PACKAGE_NAME "${PACKAGE}")
set(CPACK_PACKAGE_VERSION_MAJOR "4")
set(CPACK_PACKAGE_VERSION_MINOR "1")
set(CPACK_PACKAGE_VERSION_PATCH_NUMBER "4")
set(CPACK_PACKAGE_VERSION_PATCH_NUMBER "6")

set(CPACK_PACKAGE_VERSION_PATCH "${CPACK_PACKAGE_VERSION_PATCH_NUMBER}-${LWS_BUILD_HASH}")
set(CPACK_PACKAGE_RELEASE 1)
Expand Down Expand Up @@ -835,13 +848,7 @@ else()
set(DEF_INSTALL_CMAKE_DIR lib${LIB_SUFFIX}/cmake/libwebsockets)
endif()

if (DEFINED REL_INCLUDE_DIR)
set(LWS__INCLUDE_DIRS "\${LWS_CMAKE_DIR}/${REL_INCLUDE_DIR}")
endif()

configure_file(${PROJECT_SOURCE_DIR}/cmake/libwebsockets-config.cmake.in
${PROJECT_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/libwebsockets-config.cmake
@ONLY)

# Generate version info for both build-tree and install-tree.
configure_file(${PROJECT_SOURCE_DIR}/cmake/libwebsockets-config-version.cmake.in
Expand Down Expand Up @@ -938,6 +945,14 @@ file(RELATIVE_PATH
"${LWS_ABSOLUTE_INSTALL_CMAKE_DIR}"
"${LWS_ABSOLUTE_INSTALL_INCLUDE_DIR}") # Calculate the relative directory from the cmake dir.

if (DEFINED REL_INCLUDE_DIR)
set(LWS__INCLUDE_DIRS "\${LWS_CMAKE_DIR}/${REL_INCLUDE_DIR}")
endif()

configure_file(${PROJECT_SOURCE_DIR}/cmake/libwebsockets-config.cmake.in
${PROJECT_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/libwebsockets-config.cmake
@ONLY)

set_target_properties(${LWS_LIBRARIES}
PROPERTIES PUBLIC_HEADER "${HDR_PUBLIC}")

Expand Down
1 change: 1 addition & 0 deletions cmake/lws_config.h.in
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,7 @@
#cmakedefine LWS_WITH_LIBEV
#cmakedefine LWS_WITH_LIBEVENT
#cmakedefine LWS_WITH_LIBUV
#cmakedefine LWS_WITH_SDEVENT
#cmakedefine LWS_WITH_LWSAC
#cmakedefine LWS_LOGS_TIMESTAMP
#cmakedefine LWS_WITH_MBEDTLS
Expand Down
3 changes: 3 additions & 0 deletions include/libwebsockets/lws-context-vhost.h
Original file line number Diff line number Diff line change
Expand Up @@ -230,6 +230,9 @@
/**< (CTX) Disable lws_system state, eg, because we are a secure streams
* proxy client that is not trying to track system state by itself. */

#define LWS_SERVER_OPTION_SDEVENT (1ll << 36)
/**< (CTX) Use sd-event loop */

/****** add new things just above ---^ ******/


Expand Down
8 changes: 4 additions & 4 deletions lib/core-net/dummy-callback.c
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ lws_callback_http_dummy(struct lws *wsi, enum lws_callback_reasons reason,
case LWS_CALLBACK_HTTP_BODY_COMPLETION:
#if defined(LWS_WITH_HTTP_PROXY)
if (wsi->child_list) {
lwsl_user("%s: LWS_CALLBACK_HTTP_BODY_COMPLETION: %d\n", __func__, (int)len);
lwsl_info("%s: LWS_CALLBACK_HTTP_BODY_COMPLETION: %d\n", __func__, (int)len);
break;
}
#endif
Expand All @@ -308,7 +308,7 @@ lws_callback_http_dummy(struct lws *wsi, enum lws_callback_reasons reason,
#if defined(LWS_WITH_HTTP_PROXY)
case LWS_CALLBACK_HTTP_BODY:
if (wsi->child_list) {
lwsl_user("%s: LWS_CALLBACK_HTTP_BODY: stashing %d\n", __func__, (int)len);
lwsl_info("%s: LWS_CALLBACK_HTTP_BODY: stashing %d\n", __func__, (int)len);
if (lws_buflist_append_segment(&wsi->http.buflist_post_body, in, len) < 0)
return -1;
lws_callback_on_writable(wsi->child_list);
Expand Down Expand Up @@ -790,7 +790,7 @@ lws_callback_http_dummy(struct lws *wsi, enum lws_callback_reasons reason,
lwsl_notice("LWS_CALLBACK_CGI_STDIN_DATA: "
"sent %d only %d went", n, args->len);

lwsl_notice("%s: proxied %d bytes\n", __func__, n);
lwsl_info("%s: proxied %d bytes\n", __func__, n);

if (wsi->http.cgi->post_in_expected && args->stdwsi[LWS_STDIN] &&
args->stdwsi[LWS_STDIN]->desc.filefd > 0) {
Expand All @@ -807,7 +807,7 @@ lws_callback_http_dummy(struct lws *wsi, enum lws_callback_reasons reason,
* if no content-length)...
*/

lwsl_notice("%s: expected POST in end: "
lwsl_info("%s: expected POST in end: "
"closing stdin wsi %p, fd %d\n",
__func__, siwsi,
siwsi->desc.sockfd);
Expand Down
68 changes: 54 additions & 14 deletions lib/core/context.c
Original file line number Diff line number Diff line change
Expand Up @@ -340,6 +340,7 @@ static const struct lws_evlib_map {
{ LWS_SERVER_OPTION_LIBEVENT, "evlib_event" },
{ LWS_SERVER_OPTION_GLIB, "evlib_glib" },
{ LWS_SERVER_OPTION_LIBEV, "evlib_ev" },
{ LWS_SERVER_OPTION_SDEVENT, "evlib_sd" },
};
static const char * const dlist[] = {
LWS_INSTALL_LIBDIR,
Expand Down Expand Up @@ -380,6 +381,9 @@ lws_create_context(const struct lws_context_creation_info *info)
#if defined(LWS_WITH_EVLIB_PLUGINS) && defined(LWS_WITH_EVENT_LIBS)
struct lws_plugin *evlib_plugin_list = NULL;
#endif
#if defined(LWS_WITH_LIBUV)
char fatal_exit_defer = 0;
#endif

if (lpf) {
lpf+= 2;
Expand Down Expand Up @@ -459,6 +463,11 @@ lws_create_context(const struct lws_context_creation_info *info)
goto bail;
}

#if defined(LWS_WITH_LIBUV)
if (!n) /* libuv */
fatal_exit_defer = !!info->foreign_loops;
#endif

if (!evlib_plugin_list) {
lwsl_err("%s: unable to load evlib plugin %s\n",
__func__, map[n].name);
Expand Down Expand Up @@ -487,6 +496,7 @@ lws_create_context(const struct lws_context_creation_info *info)
if (lws_check_opt(info->options, LWS_SERVER_OPTION_LIBUV)) {
extern const lws_plugin_evlib_t evlib_uv;
plev = &evlib_uv;
fatal_exit_defer = !!info->foreign_loops;
}
#endif

Expand All @@ -511,6 +521,13 @@ lws_create_context(const struct lws_context_creation_info *info)
}
#endif

#if defined(LWS_WITH_SDEVENT)
if (lws_check_opt(info->options, LWS_SERVER_OPTION_SDEVENT)) {
extern const lws_plugin_evlib_t evlib_sd;
plev = &evlib_sd;
}
#endif

#endif /* with event libs */

#endif /* not with ev plugins */
Expand Down Expand Up @@ -699,7 +716,7 @@ lws_create_context(const struct lws_context_creation_info *info)
if (n == -1) {
lwsl_err("Get RLIMIT_NOFILE failed!\n");

return NULL;
goto free_context_fail;
}
context->max_fds = rt.rlim_cur;
#else
Expand All @@ -723,7 +740,7 @@ lws_create_context(const struct lws_context_creation_info *info)
lwsl_err("%s: problem getting process max files\n",
__func__);

return NULL;
goto free_context_fail;
}
#endif

Expand Down Expand Up @@ -959,13 +976,19 @@ lws_create_context(const struct lws_context_creation_info *info)
context->fd_limit_per_thread;
#endif


/*
* Past here, we may have added handles to the event lib
* loop and if libuv, have to take care about how to unpick them...
*/

if (lws_plat_init(context, info))
goto bail;
goto bail_libuv_aware;

#if defined(LWS_WITH_NETWORK)
if (context->event_loop_ops->init_context)
if (context->event_loop_ops->init_context(context, info))
goto bail;
goto bail_libuv_aware;


if (context->event_loop_ops->init_pt)
Expand All @@ -976,11 +999,11 @@ lws_create_context(const struct lws_context_creation_info *info)
lp = info->foreign_loops[n];

if (context->event_loop_ops->init_pt(context, lp, n))
goto bail;
goto bail_libuv_aware;
}

if (lws_create_event_pipes(context))
goto bail;
goto bail_libuv_aware;
#endif

lws_context_init_ssl_library(info);
Expand Down Expand Up @@ -1053,18 +1076,18 @@ lws_create_context(const struct lws_context_creation_info *info)
if (!vh) {
lwsl_err("%s: failed to create system vhost\n",
__func__);
goto bail;
goto bail_libuv_aware;
}

context->vhost_system = vh;

if (lws_protocol_init_vhost(vh, NULL)) {
lwsl_err("%s: failed to init system vhost\n", __func__);
goto bail;
goto bail_libuv_aware;
}
#if defined(LWS_WITH_SYS_ASYNC_DNS)
if (lws_async_dns_init(context))
goto bail;
goto bail_libuv_aware;
#endif
}
#endif
Expand Down Expand Up @@ -1124,17 +1147,17 @@ lws_create_context(const struct lws_context_creation_info *info)
LWS_SERVER_OPTION_EXPLICIT_VHOSTS));

if (lws_ss_policy_parse_begin(context, 0))
goto bail;
goto bail_libuv_aware;

n = lws_ss_policy_parse(context,
(uint8_t *)context->pss_policies_json,
strlen(context->pss_policies_json));
if (n != LEJP_CONTINUE && n < 0)
goto bail;
goto bail_libuv_aware;

if (lws_ss_policy_set(context, "hardcoded")) {
lwsl_err("%s: policy set failed\n", __func__);
goto bail;
goto bail_libuv_aware;
}
} else
#else
Expand All @@ -1143,7 +1166,7 @@ lws_create_context(const struct lws_context_creation_info *info)

if (lws_ss_policy_set(context, "hardcoded")) {
lwsl_err("%s: policy set failed\n", __func__);
goto bail;
goto bail_libuv_aware;
}
} //else
#endif
Expand All @@ -1162,7 +1185,7 @@ lws_create_context(const struct lws_context_creation_info *info)
*/
if (!lws_check_opt(info->options, LWS_SERVER_OPTION_EXPLICIT_VHOSTS))
if (lws_plat_drop_app_privileges(context, 1))
goto bail;
goto bail_libuv_aware;

#if defined(LWS_WITH_SYS_STATE)
/*
Expand All @@ -1186,6 +1209,14 @@ lws_create_context(const struct lws_context_creation_info *info)

#if defined(LWS_WITH_NETWORK)
fail_clean_pipes:

#if defined(LWS_WITH_LIBUV)
if (fatal_exit_defer) {
lws_context_destroy(context);
return context;
}
#endif

for (n = 0; n < context->count_threads; n++)
lws_destroy_event_pipe(context->pt[n].pipe_wsi);

Expand All @@ -1201,9 +1232,18 @@ lws_create_context(const struct lws_context_creation_info *info)

return NULL;

bail_libuv_aware:
lws_context_destroy(context);
#if defined(LWS_WITH_LIBUV)
return fatal_exit_defer ? context : NULL;
#else
return NULL;
#endif

fail_event_libs:
lwsl_err("Requested event library support not configured\n");

free_context_fail:
lws_free(context);

return NULL;
Expand Down
4 changes: 4 additions & 0 deletions lib/event-libs/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,10 @@ if (LWS_WITH_LIBEV)
set(LWS_HAVE_EVBACKEND_IOURING ${LWS_HAVE_EVBACKEND_IOURING} PARENT_SCOPE)
endif()

if (LWS_WITH_SDEVENT)
add_subdir_include_directories(sdevent)
endif()



#
Expand Down
Loading