2014-04-03 07:29:50 +08:00
|
|
|
/*
|
|
|
|
* libwebsockets - small server side websockets and web server implementation
|
|
|
|
*
|
2015-11-02 13:10:33 +08:00
|
|
|
* Copyright (C) 2010-2015 Andy Green <andy@warmcat.com>
|
2014-04-03 07:29:50 +08:00
|
|
|
*
|
|
|
|
* 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
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "private-libwebsockets.h"
|
|
|
|
|
|
|
|
#ifndef LWS_BUILD_HASH
|
|
|
|
#define LWS_BUILD_HASH "unknown-build-hash"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
static const char *library_version = LWS_LIBRARY_VERSION " " LWS_BUILD_HASH;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* lws_get_library_version: get version and git hash library built from
|
|
|
|
*
|
|
|
|
* returns a const char * to a string like "1.1 178d78c"
|
|
|
|
* representing the library version followed by the git head hash it
|
|
|
|
* was built from
|
|
|
|
*/
|
|
|
|
LWS_VISIBLE const char *
|
|
|
|
lws_get_library_version(void)
|
|
|
|
{
|
|
|
|
return library_version;
|
|
|
|
}
|
|
|
|
|
2016-03-28 10:10:43 +08:00
|
|
|
static const char * const mount_protocols[] = {
|
|
|
|
"http://",
|
|
|
|
"https://",
|
|
|
|
"file://",
|
2016-04-08 18:30:45 +08:00
|
|
|
"cgi://",
|
|
|
|
">http://",
|
|
|
|
">https://",
|
2016-03-28 10:10:43 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
LWS_VISIBLE LWS_EXTERN int
|
|
|
|
lws_write_http_mount(struct lws_http_mount *next, struct lws_http_mount **res,
|
|
|
|
void *store, const char *mountpoint, const char *origin,
|
2016-04-13 11:42:53 +08:00
|
|
|
const char *def, struct lws_protocol_vhost_options *cgienv,
|
|
|
|
int cgi_timeout)
|
2016-03-28 10:10:43 +08:00
|
|
|
{
|
|
|
|
struct lws_http_mount *m;
|
|
|
|
void *orig = store;
|
|
|
|
unsigned long l = (unsigned long)store;
|
|
|
|
int n;
|
|
|
|
|
|
|
|
if (l & 15)
|
|
|
|
l += 16 - (l & 15);
|
|
|
|
|
|
|
|
store = (void *)l;
|
|
|
|
m = (struct lws_http_mount *)store;
|
|
|
|
*res = m;
|
|
|
|
|
|
|
|
m->def = def;
|
|
|
|
m->mountpoint = mountpoint;
|
|
|
|
m->mountpoint_len = (unsigned char)strlen(mountpoint);
|
|
|
|
m->mount_next = NULL;
|
2016-04-13 11:49:07 +08:00
|
|
|
m->cgienv = cgienv;
|
2016-04-13 11:42:53 +08:00
|
|
|
m->cgi_timeout = cgi_timeout;
|
|
|
|
|
2016-03-28 10:10:43 +08:00
|
|
|
if (next)
|
|
|
|
next->mount_next = m;
|
2016-04-08 18:30:45 +08:00
|
|
|
|
2016-03-28 10:10:43 +08:00
|
|
|
for (n = 0; n < ARRAY_SIZE(mount_protocols); n++)
|
|
|
|
if (!strncmp(origin, mount_protocols[n],
|
|
|
|
strlen(mount_protocols[n]))) {
|
|
|
|
m->origin_protocol = n;
|
|
|
|
m->origin = origin + strlen(mount_protocols[n]);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (n == ARRAY_SIZE(mount_protocols)) {
|
2016-04-13 11:42:53 +08:00
|
|
|
lwsl_err("unsupported protocol:// %s\n", origin);
|
2016-03-28 10:10:43 +08:00
|
|
|
return 0; /* ie, fail */
|
|
|
|
}
|
|
|
|
|
|
|
|
return ((char *)store + sizeof(*m)) - (char *)orig;
|
|
|
|
}
|
|
|
|
|
2016-04-06 16:15:40 +08:00
|
|
|
LWS_VISIBLE void *
|
|
|
|
lws_protocol_vh_priv_zalloc(struct lws_vhost *vhost, const struct lws_protocols *prot,
|
|
|
|
int size)
|
|
|
|
{
|
|
|
|
int n = 0;
|
|
|
|
|
|
|
|
/* allocate the vh priv array only on demand */
|
|
|
|
if (!vhost->protocol_vh_privs) {
|
|
|
|
vhost->protocol_vh_privs = (void **)lws_zalloc(
|
|
|
|
vhost->count_protocols * sizeof(void *));
|
|
|
|
if (!vhost->protocol_vh_privs)
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
while (n < vhost->count_protocols && &vhost->protocols[n] != prot)
|
|
|
|
n++;
|
|
|
|
|
|
|
|
if (n == vhost->count_protocols)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
vhost->protocol_vh_privs[n] = lws_zalloc(size);
|
|
|
|
return vhost->protocol_vh_privs[n];
|
|
|
|
}
|
|
|
|
|
|
|
|
LWS_VISIBLE void *
|
|
|
|
lws_protocol_vh_priv_get(struct lws_vhost *vhost, const struct lws_protocols *prot)
|
|
|
|
{
|
|
|
|
int n = 0;
|
|
|
|
|
|
|
|
if (!vhost->protocol_vh_privs)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
while (n < vhost->count_protocols && &vhost->protocols[n] != prot)
|
|
|
|
n++;
|
|
|
|
|
|
|
|
if (n == vhost->count_protocols) {
|
|
|
|
lwsl_err("%s: unknown protocol %p\n", __func__, prot);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return vhost->protocol_vh_privs[n];
|
|
|
|
}
|
|
|
|
|
2016-04-08 13:25:34 +08:00
|
|
|
static struct lws_protocol_vhost_options *
|
|
|
|
lws_vhost_protocol_options(struct lws_vhost *vh, const char *name)
|
|
|
|
{
|
|
|
|
struct lws_protocol_vhost_options *pvo = vh->pvo;
|
|
|
|
|
|
|
|
while (pvo) {
|
|
|
|
// lwsl_notice("%s: '%s' '%s'\n", __func__, pvo->name, name);
|
|
|
|
if (!strcmp(pvo->name, name))
|
|
|
|
return pvo;
|
|
|
|
pvo = pvo->next;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2016-04-06 16:15:40 +08:00
|
|
|
int
|
|
|
|
lws_protocol_init(struct lws_context *context)
|
|
|
|
{
|
|
|
|
struct lws_vhost *vh = context->vhost_list;
|
2016-04-08 13:25:34 +08:00
|
|
|
struct lws_protocol_vhost_options *pvo;
|
2016-04-06 16:15:40 +08:00
|
|
|
struct lws wsi;
|
|
|
|
int n;
|
|
|
|
|
|
|
|
memset(&wsi, 0, sizeof(wsi));
|
|
|
|
wsi.context = context;
|
|
|
|
|
|
|
|
while (vh) {
|
|
|
|
wsi.vhost = vh;
|
|
|
|
|
|
|
|
/* initialize supported protocols on this vhost */
|
|
|
|
|
|
|
|
for (n = 0; n < vh->count_protocols; n++) {
|
|
|
|
wsi.protocol = &vh->protocols[n];
|
|
|
|
|
2016-04-08 13:25:34 +08:00
|
|
|
pvo = lws_vhost_protocol_options(vh,
|
|
|
|
vh->protocols[n].name);
|
|
|
|
if (pvo)
|
|
|
|
/*
|
|
|
|
* linked list of options specific to
|
|
|
|
* vh + protocol
|
|
|
|
*/
|
|
|
|
pvo = pvo->options;
|
|
|
|
|
2016-04-06 16:15:40 +08:00
|
|
|
/*
|
|
|
|
* inform all the protocols that they are doing their one-time
|
|
|
|
* initialization if they want to.
|
|
|
|
*
|
|
|
|
* NOTE the wsi is all zeros except for the context, vh and
|
|
|
|
* protocol ptrs so lws_get_context(wsi) etc can work
|
|
|
|
*/
|
|
|
|
vh->protocols[n].callback(&wsi,
|
2016-04-08 13:25:34 +08:00
|
|
|
LWS_CALLBACK_PROTOCOL_INIT, NULL, pvo, 0);
|
2016-04-06 16:15:40 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
vh = vh->vhost_next;
|
|
|
|
}
|
|
|
|
|
|
|
|
context->protocol_init_done = 1;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-03-28 10:10:43 +08:00
|
|
|
LWS_VISIBLE struct lws_vhost *
|
|
|
|
lws_create_vhost(struct lws_context *context,
|
|
|
|
struct lws_context_creation_info *info,
|
|
|
|
struct lws_http_mount *mounts)
|
|
|
|
{
|
|
|
|
struct lws_vhost *vh = lws_zalloc(sizeof(*vh)),
|
|
|
|
**vh1 = &context->vhost_list;
|
2016-04-06 16:15:40 +08:00
|
|
|
#ifdef LWS_WITH_PLUGINS
|
|
|
|
struct lws_plugin *plugin = context->plugin_list;
|
|
|
|
struct lws_protocols *lwsp;
|
2016-04-12 16:41:31 +08:00
|
|
|
int m, n, f = !info->pvo;
|
2016-04-06 16:15:40 +08:00
|
|
|
#endif
|
2016-03-28 10:10:43 +08:00
|
|
|
char *p;
|
|
|
|
|
|
|
|
if (!vh)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
vh->context = context;
|
|
|
|
if (!info->vhost_name)
|
|
|
|
vh->name = "default";
|
|
|
|
else
|
|
|
|
vh->name = info->vhost_name;
|
|
|
|
|
|
|
|
vh->iface = info->iface;
|
|
|
|
for (vh->count_protocols = 0;
|
|
|
|
info->protocols[vh->count_protocols].callback;
|
|
|
|
vh->count_protocols++)
|
|
|
|
;
|
2016-04-08 13:25:34 +08:00
|
|
|
|
|
|
|
vh->pvo = info->pvo;
|
|
|
|
|
2016-04-06 16:15:40 +08:00
|
|
|
#ifdef LWS_WITH_PLUGINS
|
|
|
|
if (plugin) {
|
|
|
|
/*
|
|
|
|
* give the vhost a unified list of protocols including the
|
|
|
|
* ones that came from plugins
|
|
|
|
*/
|
|
|
|
lwsp = lws_zalloc(sizeof(struct lws_protocols) *
|
|
|
|
(vh->count_protocols +
|
|
|
|
context->plugin_protocol_count + 1));
|
|
|
|
if (!lwsp)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
m = vh->count_protocols;
|
|
|
|
memcpy(lwsp, info->protocols,
|
|
|
|
sizeof(struct lws_protocols) * m);
|
2016-04-08 13:25:34 +08:00
|
|
|
|
2016-04-12 16:41:31 +08:00
|
|
|
/* for compatibility, all protocols enabled on vhost if only
|
|
|
|
* the default vhost exists. Otherwise only vhosts who ask
|
|
|
|
* for a protocol get it enabled.
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (info->options & LWS_SERVER_OPTION_EXPLICIT_VHOSTS)
|
|
|
|
f = 0;
|
|
|
|
|
2016-04-06 16:15:40 +08:00
|
|
|
while (plugin) {
|
2016-04-08 13:25:34 +08:00
|
|
|
for (n = 0; n < plugin->caps.count_protocols; n++) {
|
|
|
|
/*
|
|
|
|
* for compatibility's sake, no pvo implies
|
|
|
|
* allow all protocols
|
|
|
|
*/
|
2016-04-12 16:41:31 +08:00
|
|
|
if (f || lws_vhost_protocol_options(vh,
|
2016-04-08 13:25:34 +08:00
|
|
|
plugin->caps.protocols[n].name)) {
|
|
|
|
memcpy(&lwsp[m],
|
|
|
|
&plugin->caps.protocols[n],
|
|
|
|
sizeof(struct lws_protocols));
|
|
|
|
m++;
|
|
|
|
vh->count_protocols++;
|
|
|
|
}
|
|
|
|
}
|
2016-04-06 16:15:40 +08:00
|
|
|
plugin = plugin->list;
|
|
|
|
}
|
|
|
|
vh->protocols = lwsp;
|
|
|
|
} else
|
|
|
|
#endif
|
|
|
|
vh->protocols = info->protocols;
|
|
|
|
|
2016-03-28 10:10:43 +08:00
|
|
|
vh->mount_list = mounts;
|
|
|
|
|
|
|
|
lwsl_notice("Creating Vhost '%s' port %d, %d protocols\n",
|
|
|
|
vh->name, info->port, vh->count_protocols);
|
|
|
|
|
|
|
|
while (mounts) {
|
|
|
|
lwsl_notice(" mounting %s%s to %s\n",
|
|
|
|
mount_protocols[mounts->origin_protocol],
|
|
|
|
mounts->origin, mounts->mountpoint);
|
|
|
|
mounts = mounts->mount_next;
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifndef LWS_NO_EXTENSIONS
|
2016-04-06 16:15:40 +08:00
|
|
|
#ifdef LWS_WITH_PLUGINS
|
|
|
|
if (context->plugin_extension_count) {
|
|
|
|
|
|
|
|
m = 0;
|
|
|
|
while (info->extensions && info->extensions[m].callback)
|
|
|
|
m++;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* give the vhost a unified list of extensions including the
|
|
|
|
* ones that came from plugins
|
|
|
|
*/
|
|
|
|
vh->extensions = lws_zalloc(sizeof(struct lws_extension) *
|
|
|
|
(m +
|
|
|
|
context->plugin_extension_count + 1));
|
|
|
|
if (!vh->extensions)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
memcpy((struct lws_extension *)vh->extensions, info->extensions,
|
|
|
|
sizeof(struct lws_extension) * m);
|
|
|
|
while (plugin) {
|
|
|
|
memcpy((struct lws_extension *)&vh->extensions[m], plugin->caps.extensions,
|
|
|
|
sizeof(struct lws_extension) *
|
|
|
|
plugin->caps.count_extensions);
|
|
|
|
m += plugin->caps.count_extensions;
|
|
|
|
plugin = plugin->list;
|
|
|
|
}
|
|
|
|
} else
|
|
|
|
#endif
|
|
|
|
vh->extensions = info->extensions;
|
2016-03-28 10:10:43 +08:00
|
|
|
#endif
|
|
|
|
|
|
|
|
vh->listen_port = info->port;
|
|
|
|
vh->http_proxy_port = 0;
|
|
|
|
vh->http_proxy_address[0] = '\0';
|
|
|
|
|
|
|
|
/* either use proxy from info, or try get it from env var */
|
|
|
|
|
|
|
|
if (info->http_proxy_address) {
|
|
|
|
/* override for backwards compatibility */
|
|
|
|
if (info->http_proxy_port)
|
|
|
|
vh->http_proxy_port = info->http_proxy_port;
|
|
|
|
lws_set_proxy(vh, info->http_proxy_address);
|
|
|
|
} else {
|
|
|
|
#ifdef LWS_HAVE_GETENV
|
|
|
|
p = getenv("http_proxy");
|
|
|
|
if (p)
|
|
|
|
lws_set_proxy(vh, p);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
vh->ka_time = info->ka_time;
|
|
|
|
vh->ka_interval = info->ka_interval;
|
|
|
|
vh->ka_probes = info->ka_probes;
|
|
|
|
|
|
|
|
if (lws_context_init_server_ssl(info, vh))
|
|
|
|
goto bail;
|
|
|
|
|
|
|
|
if (lws_context_init_client_ssl(info, vh))
|
|
|
|
goto bail;
|
|
|
|
|
|
|
|
if (lws_context_init_server(info, vh))
|
|
|
|
goto bail;
|
|
|
|
|
|
|
|
while (1) {
|
|
|
|
if (!(*vh1)) {
|
|
|
|
*vh1 = vh;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
vh1 = &(*vh1)->vhost_next;
|
|
|
|
};
|
|
|
|
|
|
|
|
return vh;
|
|
|
|
|
|
|
|
bail:
|
|
|
|
lws_free(vh);
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2014-04-03 07:29:50 +08:00
|
|
|
/**
|
2015-12-04 08:43:54 +08:00
|
|
|
* lws_create_context() - Create the websocket handler
|
2014-04-03 07:29:50 +08:00
|
|
|
* @info: pointer to struct with parameters
|
|
|
|
*
|
|
|
|
* This function creates the listening socket (if serving) and takes care
|
|
|
|
* of all initialization in one step.
|
|
|
|
*
|
2015-12-04 11:08:32 +08:00
|
|
|
* After initialization, it returns a struct lws_context * that
|
2014-04-03 07:29:50 +08:00
|
|
|
* represents this server. After calling, user code needs to take care
|
2015-12-04 08:43:54 +08:00
|
|
|
* of calling lws_service() with the context pointer to get the
|
2014-04-10 10:13:43 +08:00
|
|
|
* server's sockets serviced. This must be done in the same process
|
|
|
|
* context as the initialization call.
|
2014-04-03 07:29:50 +08:00
|
|
|
*
|
|
|
|
* The protocol callback functions are called for a handful of events
|
|
|
|
* including http requests coming in, websocket connections becoming
|
|
|
|
* established, and data arriving; it's also called periodically to allow
|
|
|
|
* async transmission.
|
|
|
|
*
|
|
|
|
* HTTP requests are sent always to the FIRST protocol in @protocol, since
|
|
|
|
* at that time websocket protocol has not been negotiated. Other
|
|
|
|
* protocols after the first one never see any HTTP callack activity.
|
|
|
|
*
|
|
|
|
* The server created is a simple http server by default; part of the
|
|
|
|
* websocket standard is upgrading this http connection to a websocket one.
|
|
|
|
*
|
|
|
|
* This allows the same server to provide files like scripts and favicon /
|
|
|
|
* images or whatever over http and dynamic data over websockets all in
|
|
|
|
* one place; they're all handled in the user callback.
|
|
|
|
*/
|
2015-12-04 11:08:32 +08:00
|
|
|
LWS_VISIBLE struct lws_context *
|
2015-12-04 08:43:54 +08:00
|
|
|
lws_create_context(struct lws_context_creation_info *info)
|
2014-04-03 07:29:50 +08:00
|
|
|
{
|
2015-12-04 11:08:32 +08:00
|
|
|
struct lws_context *context = NULL;
|
2015-12-17 07:54:44 +08:00
|
|
|
struct lws wsi;
|
2015-12-06 11:00:36 +08:00
|
|
|
#ifndef LWS_NO_DAEMONIZE
|
2014-04-03 07:29:50 +08:00
|
|
|
int pid_daemon = get_daemonize_pid();
|
2015-11-02 20:34:12 +08:00
|
|
|
#endif
|
2016-01-26 20:56:56 +08:00
|
|
|
int n, m;
|
2016-04-08 16:02:59 +08:00
|
|
|
#if defined(__ANDROID__)
|
|
|
|
struct rlimit rt;
|
|
|
|
#endif
|
|
|
|
|
2014-04-03 07:29:50 +08:00
|
|
|
|
|
|
|
lwsl_notice("Initial logging level %d\n", log_level);
|
2015-11-02 20:34:12 +08:00
|
|
|
lwsl_notice("Libwebsockets version: %s\n", library_version);
|
|
|
|
#if LWS_POSIX
|
2014-04-03 07:29:50 +08:00
|
|
|
#ifdef LWS_USE_IPV6
|
2016-03-23 09:22:11 +08:00
|
|
|
if (!lws_check_opt(info->options, LWS_SERVER_OPTION_DISABLE_IPV6))
|
2014-04-03 07:29:50 +08:00
|
|
|
lwsl_notice("IPV6 compiled in and enabled\n");
|
|
|
|
else
|
|
|
|
lwsl_notice("IPV6 compiled in but disabled\n");
|
|
|
|
#else
|
|
|
|
lwsl_notice("IPV6 not compiled in\n");
|
|
|
|
#endif
|
2014-04-11 13:14:37 +08:00
|
|
|
lws_feature_status_libev(info);
|
2016-03-28 10:10:43 +08:00
|
|
|
lws_feature_status_libuv(info);
|
2015-12-04 16:54:12 +08:00
|
|
|
#endif
|
2016-01-26 20:56:56 +08:00
|
|
|
lwsl_info(" LWS_DEF_HEADER_LEN : %u\n", LWS_DEF_HEADER_LEN);
|
2016-01-19 03:34:24 +08:00
|
|
|
lwsl_info(" LWS_MAX_PROTOCOLS : %u\n", LWS_MAX_PROTOCOLS);
|
|
|
|
lwsl_info(" LWS_MAX_SMP : %u\n", LWS_MAX_SMP);
|
|
|
|
lwsl_info(" SPEC_LATEST_SUPPORTED : %u\n", SPEC_LATEST_SUPPORTED);
|
|
|
|
lwsl_info(" sizeof (*info) : %u\n", sizeof(*info));
|
2015-11-08 12:10:26 +08:00
|
|
|
#if LWS_POSIX
|
2014-04-03 07:29:50 +08:00
|
|
|
lwsl_info(" SYSTEM_RANDOM_FILEPATH: '%s'\n", SYSTEM_RANDOM_FILEPATH);
|
2015-11-08 12:10:26 +08:00
|
|
|
#endif
|
2014-04-03 07:29:50 +08:00
|
|
|
if (lws_plat_context_early_init())
|
|
|
|
return NULL;
|
|
|
|
|
2015-12-04 11:08:32 +08:00
|
|
|
context = lws_zalloc(sizeof(struct lws_context));
|
2014-04-03 07:29:50 +08:00
|
|
|
if (!context) {
|
|
|
|
lwsl_err("No memory for websocket context\n");
|
|
|
|
return NULL;
|
|
|
|
}
|
2015-12-06 11:00:36 +08:00
|
|
|
#ifndef LWS_NO_DAEMONIZE
|
2014-04-12 10:07:02 +08:00
|
|
|
if (pid_daemon) {
|
|
|
|
context->started_with_parent = pid_daemon;
|
|
|
|
lwsl_notice(" Started with daemon pid %d\n", pid_daemon);
|
|
|
|
}
|
2015-11-02 20:34:12 +08:00
|
|
|
#endif
|
2016-04-08 16:02:59 +08:00
|
|
|
#if defined(__ANDROID__)
|
|
|
|
n = getrlimit ( RLIMIT_NOFILE,&rt);
|
|
|
|
if (-1 == n) {
|
|
|
|
lwsl_err("Get RLIMIT_NOFILE failed!\n");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
context->max_fds = rt.rlim_cur;
|
|
|
|
#else
|
|
|
|
context->max_fds = getdtablesize();
|
|
|
|
#endif
|
2016-01-19 03:34:24 +08:00
|
|
|
|
|
|
|
if (info->count_threads)
|
|
|
|
context->count_threads = info->count_threads;
|
|
|
|
else
|
|
|
|
context->count_threads = 1;
|
|
|
|
|
|
|
|
if (context->count_threads > LWS_MAX_SMP)
|
|
|
|
context->count_threads = LWS_MAX_SMP;
|
|
|
|
|
2014-06-29 00:25:19 -04:00
|
|
|
context->token_limits = info->token_limits;
|
2016-03-28 10:10:43 +08:00
|
|
|
|
2014-04-03 07:29:50 +08:00
|
|
|
context->options = info->options;
|
2016-03-28 10:10:43 +08:00
|
|
|
|
2016-02-15 20:36:02 +08:00
|
|
|
if (info->timeout_secs)
|
|
|
|
context->timeout_secs = info->timeout_secs;
|
|
|
|
else
|
|
|
|
context->timeout_secs = AWAITING_TIMEOUT;
|
|
|
|
|
|
|
|
lwsl_info(" default timeout (secs): %u\n", context->timeout_secs);
|
2014-07-29 15:36:06 +03:00
|
|
|
|
2016-01-26 20:56:56 +08:00
|
|
|
if (info->max_http_header_data)
|
|
|
|
context->max_http_header_data = info->max_http_header_data;
|
|
|
|
else
|
|
|
|
context->max_http_header_data = LWS_DEF_HEADER_LEN;
|
|
|
|
if (info->max_http_header_pool)
|
|
|
|
context->max_http_header_pool = info->max_http_header_pool;
|
|
|
|
else
|
|
|
|
context->max_http_header_pool = LWS_DEF_HEADER_POOL;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Allocate the per-thread storage for scratchpad buffers,
|
|
|
|
* and header data pool
|
2016-01-19 03:34:24 +08:00
|
|
|
*/
|
|
|
|
for (n = 0; n < context->count_threads; n++) {
|
|
|
|
context->pt[n].serv_buf = lws_zalloc(LWS_MAX_SOCKET_IO_BUF);
|
|
|
|
if (!context->pt[n].serv_buf) {
|
|
|
|
lwsl_err("OOM\n");
|
|
|
|
return NULL;
|
|
|
|
}
|
2016-01-26 20:56:56 +08:00
|
|
|
|
2016-02-27 11:03:27 +08:00
|
|
|
context->pt[n].context = context;
|
|
|
|
context->pt[n].tid = n;
|
2016-01-26 20:56:56 +08:00
|
|
|
context->pt[n].http_header_data = lws_malloc(context->max_http_header_data *
|
|
|
|
context->max_http_header_pool);
|
|
|
|
if (!context->pt[n].http_header_data)
|
|
|
|
goto bail;
|
|
|
|
|
|
|
|
context->pt[n].ah_pool = lws_zalloc(sizeof(struct allocated_headers) *
|
|
|
|
context->max_http_header_pool);
|
|
|
|
for (m = 0; m < context->max_http_header_pool; m++)
|
|
|
|
context->pt[n].ah_pool[m].data =
|
|
|
|
(char *)context->pt[n].http_header_data +
|
|
|
|
(m * context->max_http_header_data);
|
|
|
|
if (!context->pt[n].ah_pool)
|
|
|
|
goto bail;
|
|
|
|
|
|
|
|
lws_pt_mutex_init(&context->pt[n]);
|
2016-01-19 03:34:24 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if (info->fd_limit_per_thread)
|
|
|
|
context->fd_limit_per_thread = info->fd_limit_per_thread;
|
|
|
|
else
|
|
|
|
context->fd_limit_per_thread = context->max_fds /
|
|
|
|
context->count_threads;
|
|
|
|
|
|
|
|
lwsl_notice(" Threads: %d each %d fds\n", context->count_threads,
|
|
|
|
context->fd_limit_per_thread);
|
|
|
|
|
2015-12-17 07:54:44 +08:00
|
|
|
memset(&wsi, 0, sizeof(wsi));
|
|
|
|
wsi.context = context;
|
|
|
|
|
2015-10-16 10:54:04 +08:00
|
|
|
if (!info->ka_interval && info->ka_time > 0) {
|
|
|
|
lwsl_err("info->ka_interval can't be 0 if ka_time used\n");
|
|
|
|
return NULL;
|
|
|
|
}
|
2015-12-14 08:52:03 +08:00
|
|
|
|
2015-04-26 23:32:16 -04:00
|
|
|
#ifdef LWS_USE_LIBEV
|
|
|
|
/* (Issue #264) In order to *avoid breaking backwards compatibility*, we
|
|
|
|
* enable libev mediated SIGINT handling with a default handler of
|
2015-12-04 08:43:54 +08:00
|
|
|
* lws_sigint_cb. The handler can be overridden or disabled
|
|
|
|
* by invoking lws_sigint_cfg after creating the context, but
|
|
|
|
* before invoking lws_initloop:
|
2015-04-26 23:32:16 -04:00
|
|
|
*/
|
|
|
|
context->use_ev_sigint = 1;
|
2016-02-14 09:27:41 +08:00
|
|
|
context->lws_ev_sigint_cb = &lws_ev_sigint_cb;
|
2015-04-26 23:32:16 -04:00
|
|
|
#endif /* LWS_USE_LIBEV */
|
2016-02-14 09:27:41 +08:00
|
|
|
#ifdef LWS_USE_LIBUV
|
|
|
|
/* (Issue #264) In order to *avoid breaking backwards compatibility*, we
|
|
|
|
* enable libev mediated SIGINT handling with a default handler of
|
|
|
|
* lws_sigint_cb. The handler can be overridden or disabled
|
|
|
|
* by invoking lws_sigint_cfg after creating the context, but
|
|
|
|
* before invoking lws_initloop:
|
|
|
|
*/
|
|
|
|
context->use_ev_sigint = 1;
|
|
|
|
context->lws_uv_sigint_cb = &lws_uv_sigint_cb;
|
|
|
|
#endif
|
2015-04-26 23:32:16 -04:00
|
|
|
|
2016-01-26 20:56:56 +08:00
|
|
|
lwsl_info(" mem: context: %5u bytes (%d ctx + (%d thr x %d))\n",
|
2016-01-19 03:34:24 +08:00
|
|
|
sizeof(struct lws_context) +
|
|
|
|
(context->count_threads * LWS_MAX_SOCKET_IO_BUF),
|
|
|
|
sizeof(struct lws_context),
|
|
|
|
context->count_threads,
|
|
|
|
LWS_MAX_SOCKET_IO_BUF);
|
2015-12-25 12:44:12 +08:00
|
|
|
|
2016-01-26 20:56:56 +08:00
|
|
|
lwsl_info(" mem: http hdr rsvd: %5u bytes (%u thr x (%u + %u) x %u))\n",
|
2016-01-19 03:34:24 +08:00
|
|
|
(context->max_http_header_data +
|
|
|
|
sizeof(struct allocated_headers)) *
|
2016-01-26 20:56:56 +08:00
|
|
|
context->max_http_header_pool * context->count_threads,
|
|
|
|
context->count_threads,
|
2016-01-19 03:34:24 +08:00
|
|
|
context->max_http_header_data,
|
|
|
|
sizeof(struct allocated_headers),
|
2015-12-25 12:44:12 +08:00
|
|
|
context->max_http_header_pool);
|
2016-01-19 03:34:24 +08:00
|
|
|
n = sizeof(struct lws_pollfd) * context->count_threads *
|
|
|
|
context->fd_limit_per_thread;
|
|
|
|
context->pt[0].fds = lws_zalloc(n);
|
|
|
|
if (context->pt[0].fds == NULL) {
|
2015-12-04 16:54:12 +08:00
|
|
|
lwsl_err("OOM allocating %d fds\n", context->max_fds);
|
2015-06-25 17:51:07 +02:00
|
|
|
goto bail;
|
2014-04-03 07:29:50 +08:00
|
|
|
}
|
2016-01-19 03:34:24 +08:00
|
|
|
lwsl_info(" mem: pollfd map: %5u\n", n);
|
2016-01-26 20:56:56 +08:00
|
|
|
|
|
|
|
#if LWS_MAX_SMP > 1
|
2016-01-19 03:34:24 +08:00
|
|
|
/* each thread serves his own chunk of fds */
|
|
|
|
for (n = 1; n < (int)info->count_threads; n++)
|
2016-01-26 20:56:56 +08:00
|
|
|
context->pt[n].fds = context->pt[n - 1].fds +
|
|
|
|
context->fd_limit_per_thread;
|
|
|
|
#endif
|
2015-12-25 12:44:12 +08:00
|
|
|
|
2015-12-10 07:14:16 +08:00
|
|
|
if (lws_plat_init(context, info))
|
2015-06-25 17:51:07 +02:00
|
|
|
goto bail;
|
2015-11-08 12:10:26 +08:00
|
|
|
|
2016-03-28 10:10:43 +08:00
|
|
|
lws_context_init_ssl_library(info);
|
|
|
|
|
2016-04-13 11:42:53 +08:00
|
|
|
context->user_space = info->user;
|
|
|
|
|
2016-03-28 10:10:43 +08:00
|
|
|
/*
|
|
|
|
* if he's not saying he'll make his own vhosts later then act
|
|
|
|
* compatibly and make a default vhost using the data in the info
|
|
|
|
*/
|
|
|
|
if (!lws_check_opt(info->options, LWS_SERVER_OPTION_EXPLICIT_VHOSTS))
|
|
|
|
if (!lws_create_vhost(context, info, NULL)) {
|
|
|
|
lwsl_err("Failed to create default vhost\n");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2014-04-12 10:07:02 +08:00
|
|
|
lws_context_init_extensions(info, context);
|
|
|
|
|
2015-12-25 12:44:12 +08:00
|
|
|
lwsl_notice(" mem: per-conn: %5u bytes + protocol rx buf\n",
|
|
|
|
sizeof(struct lws));
|
2014-04-03 07:29:50 +08:00
|
|
|
|
2015-12-25 12:44:12 +08:00
|
|
|
strcpy(context->canonical_hostname, "unknown");
|
2014-04-12 10:07:02 +08:00
|
|
|
lws_server_get_canonical_hostname(context, info);
|
2014-04-03 07:29:50 +08:00
|
|
|
|
2016-03-28 10:10:43 +08:00
|
|
|
context->uid = info->uid;
|
|
|
|
context->gid = info->gid;
|
2014-04-03 07:29:50 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* drop any root privs for this process
|
|
|
|
* to listen on port < 1023 we would have needed root, but now we are
|
|
|
|
* listening, we don't want the power for anything else
|
|
|
|
*/
|
2016-03-28 10:10:43 +08:00
|
|
|
if (!lws_check_opt(info->options, LWS_SERVER_OPTION_EXPLICIT_VHOSTS))
|
|
|
|
lws_plat_drop_app_privileges(info);
|
2014-04-03 07:29:50 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* give all extensions a chance to create any per-context
|
|
|
|
* allocations they need
|
|
|
|
*/
|
|
|
|
if (info->port != CONTEXT_PORT_NO_LISTEN) {
|
2015-12-17 17:03:59 +08:00
|
|
|
if (lws_ext_cb_all_exts(context, NULL,
|
2016-01-11 11:34:01 +08:00
|
|
|
LWS_EXT_CB_SERVER_CONTEXT_CONSTRUCT, NULL, 0) < 0)
|
2014-04-03 07:29:50 +08:00
|
|
|
goto bail;
|
|
|
|
} else
|
2015-12-17 17:03:59 +08:00
|
|
|
if (lws_ext_cb_all_exts(context, NULL,
|
2016-01-11 11:34:01 +08:00
|
|
|
LWS_EXT_CB_CLIENT_CONTEXT_CONSTRUCT, NULL, 0) < 0)
|
2014-04-03 07:29:50 +08:00
|
|
|
goto bail;
|
2015-12-14 08:52:03 +08:00
|
|
|
|
2014-04-03 07:29:50 +08:00
|
|
|
return context;
|
|
|
|
|
|
|
|
bail:
|
2015-12-04 08:43:54 +08:00
|
|
|
lws_context_destroy(context);
|
2014-04-03 07:29:50 +08:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2015-12-04 08:43:54 +08:00
|
|
|
* lws_context_destroy() - Destroy the websocket context
|
2014-04-03 07:29:50 +08:00
|
|
|
* @context: Websocket context
|
|
|
|
*
|
|
|
|
* This function closes any active connections and then frees the
|
|
|
|
* context. After calling this, any further use of the context is
|
|
|
|
* undefined.
|
|
|
|
*/
|
|
|
|
LWS_VISIBLE void
|
2015-12-04 11:08:32 +08:00
|
|
|
lws_context_destroy(struct lws_context *context)
|
2014-04-03 07:29:50 +08:00
|
|
|
{
|
2015-12-11 10:45:35 +08:00
|
|
|
const struct lws_protocols *protocol = NULL;
|
2016-02-14 09:27:41 +08:00
|
|
|
struct lws_context_per_thread *pt;
|
2016-04-06 16:15:40 +08:00
|
|
|
struct lws_vhost *vh, *vh1;
|
2015-12-18 01:08:14 +08:00
|
|
|
struct lws wsi;
|
2016-01-19 21:29:34 +08:00
|
|
|
int n, m;
|
2014-04-03 07:29:50 +08:00
|
|
|
|
2014-04-12 10:07:02 +08:00
|
|
|
lwsl_notice("%s\n", __func__);
|
|
|
|
|
2015-06-25 17:51:07 +02:00
|
|
|
if (!context)
|
|
|
|
return;
|
|
|
|
|
2016-01-19 21:29:34 +08:00
|
|
|
m = context->count_threads;
|
2016-01-18 11:49:41 +08:00
|
|
|
context->being_destroyed = 1;
|
|
|
|
|
2015-12-18 01:08:14 +08:00
|
|
|
memset(&wsi, 0, sizeof(wsi));
|
|
|
|
wsi.context = context;
|
|
|
|
|
2014-04-03 07:29:50 +08:00
|
|
|
#ifdef LWS_LATENCY
|
|
|
|
if (context->worst_latency_info[0])
|
|
|
|
lwsl_notice("Worst latency: %s\n", context->worst_latency_info);
|
|
|
|
#endif
|
|
|
|
|
2016-02-14 09:27:41 +08:00
|
|
|
while (m--) {
|
|
|
|
pt = &context->pt[m];
|
|
|
|
|
2016-01-26 20:56:56 +08:00
|
|
|
for (n = 0; (unsigned int)n < context->pt[m].fds_count; n++) {
|
2016-02-14 09:27:41 +08:00
|
|
|
struct lws *wsi = wsi_from_fd(context, pt->fds[n].fd);
|
2016-01-19 03:34:24 +08:00
|
|
|
if (!wsi)
|
|
|
|
continue;
|
2016-02-14 09:27:41 +08:00
|
|
|
|
|
|
|
lws_close_free_wsi(wsi,
|
|
|
|
LWS_CLOSE_STATUS_NOSTATUS_CONTEXT_DESTROY
|
2015-12-04 16:54:12 +08:00
|
|
|
/* no protocol close */);
|
2016-01-19 03:34:24 +08:00
|
|
|
n--;
|
|
|
|
}
|
2016-02-14 09:27:41 +08:00
|
|
|
}
|
2014-04-03 07:29:50 +08:00
|
|
|
/*
|
|
|
|
* give all extensions a chance to clean up any per-context
|
|
|
|
* allocations they might have made
|
|
|
|
*/
|
2015-12-04 16:54:12 +08:00
|
|
|
|
2015-12-17 17:03:59 +08:00
|
|
|
n = lws_ext_cb_all_exts(context, NULL,
|
2016-02-14 09:27:41 +08:00
|
|
|
LWS_EXT_CB_SERVER_CONTEXT_DESTRUCT, NULL, 0);
|
2015-12-04 16:54:12 +08:00
|
|
|
|
2015-12-17 17:03:59 +08:00
|
|
|
n = lws_ext_cb_all_exts(context, NULL,
|
2016-02-14 09:27:41 +08:00
|
|
|
LWS_EXT_CB_CLIENT_CONTEXT_DESTRUCT, NULL, 0);
|
2014-04-03 07:29:50 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* inform all the protocols that they are done and will have no more
|
2016-04-06 16:15:40 +08:00
|
|
|
* callbacks.
|
|
|
|
*
|
|
|
|
* We can't free things until after the event loop shuts down.
|
2014-04-03 07:29:50 +08:00
|
|
|
*/
|
2016-03-28 10:10:43 +08:00
|
|
|
vh = context->vhost_list;
|
|
|
|
while (vh) {
|
2016-04-06 16:15:40 +08:00
|
|
|
wsi.vhost = vh;
|
2016-03-28 10:10:43 +08:00
|
|
|
protocol = vh->protocols;
|
2016-04-06 16:15:40 +08:00
|
|
|
if (protocol) {
|
|
|
|
n = 0;
|
|
|
|
while (n < vh->count_protocols) {
|
|
|
|
wsi.protocol = protocol;
|
2016-03-28 10:10:43 +08:00
|
|
|
protocol->callback(&wsi, LWS_CALLBACK_PROTOCOL_DESTROY,
|
|
|
|
NULL, NULL, 0);
|
|
|
|
protocol++;
|
2016-04-06 16:15:40 +08:00
|
|
|
n++;
|
2016-03-28 10:10:43 +08:00
|
|
|
}
|
2016-04-06 16:15:40 +08:00
|
|
|
}
|
|
|
|
|
2016-03-28 10:10:43 +08:00
|
|
|
vh = vh->vhost_next;
|
|
|
|
}
|
2014-04-03 07:29:50 +08:00
|
|
|
|
2016-01-26 20:56:56 +08:00
|
|
|
for (n = 0; n < context->count_threads; n++) {
|
2016-02-14 09:27:41 +08:00
|
|
|
pt = &context->pt[n];
|
|
|
|
|
|
|
|
lws_libev_destroyloop(context, n);
|
|
|
|
lws_libuv_destroyloop(context, n);
|
|
|
|
|
2016-01-19 03:34:24 +08:00
|
|
|
lws_free_set_NULL(context->pt[n].serv_buf);
|
2016-02-14 09:27:41 +08:00
|
|
|
if (pt->ah_pool)
|
|
|
|
lws_free(pt->ah_pool);
|
|
|
|
if (pt->http_header_data)
|
|
|
|
lws_free(pt->http_header_data);
|
2016-01-26 20:56:56 +08:00
|
|
|
}
|
2014-04-03 07:29:50 +08:00
|
|
|
lws_plat_context_early_destroy(context);
|
2014-04-12 10:07:02 +08:00
|
|
|
lws_ssl_context_destroy(context);
|
2016-03-28 10:10:43 +08:00
|
|
|
|
2016-01-19 03:34:24 +08:00
|
|
|
if (context->pt[0].fds)
|
2016-02-14 09:27:41 +08:00
|
|
|
lws_free_set_NULL(context->pt[0].fds);
|
2015-06-25 17:51:07 +02:00
|
|
|
|
2016-04-06 16:15:40 +08:00
|
|
|
/* free all the vhost allocations */
|
|
|
|
|
|
|
|
vh = context->vhost_list;
|
|
|
|
while (vh) {
|
|
|
|
protocol = vh->protocols;
|
|
|
|
if (protocol) {
|
|
|
|
n = 0;
|
|
|
|
while (n < vh->count_protocols) {
|
|
|
|
if (vh->protocol_vh_privs &&
|
|
|
|
vh->protocol_vh_privs[n]) {
|
|
|
|
lws_free(vh->protocol_vh_privs[n]);
|
|
|
|
vh->protocol_vh_privs[n] = NULL;
|
|
|
|
}
|
|
|
|
protocol++;
|
|
|
|
n++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (vh->protocol_vh_privs)
|
|
|
|
lws_free(vh->protocol_vh_privs);
|
|
|
|
lws_ssl_SSL_CTX_destroy(vh);
|
|
|
|
#ifdef LWS_WITH_PLUGINS
|
|
|
|
if (context->plugin_list)
|
|
|
|
lws_free((void *)vh->protocols);
|
|
|
|
#ifndef LWS_NO_EXTENSIONS
|
|
|
|
if (context->plugin_extension_count)
|
|
|
|
lws_free((void *)vh->extensions);
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
vh1 = vh->vhost_next;
|
|
|
|
lws_free(vh);
|
|
|
|
vh = vh1;
|
|
|
|
}
|
|
|
|
|
2014-04-03 07:29:50 +08:00
|
|
|
lws_plat_context_late_destroy(context);
|
2014-04-12 10:07:02 +08:00
|
|
|
|
2014-12-04 23:59:35 +01:00
|
|
|
lws_free(context);
|
2014-04-03 07:29:50 +08:00
|
|
|
}
|