Skip to content
Snippets Groups Projects
context.c 45.4 KiB
Newer Older
  • Learn to ignore specific revisions
  • /*
     * 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
     */
    
    
    
    #ifndef LWS_BUILD_HASH
    #define LWS_BUILD_HASH "unknown-build-hash"
    #endif
    
    
    const struct lws_role_ops *available_roles[] = {
    
    #if defined(LWS_ROLE_H2)
    	&role_ops_h2,
    #endif
    #if defined(LWS_ROLE_H1)
    	&role_ops_h1,
    #endif
    #if defined(LWS_ROLE_WS)
    	&role_ops_ws,
    
    Andy Green's avatar
    Andy Green committed
    #endif
    #if defined(LWS_ROLE_DBUS)
    	&role_ops_dbus,
    
    const struct lws_event_loop_ops *available_event_libs[] = {
    #if defined(LWS_WITH_POLL)
    	&event_loop_ops_poll,
    #endif
    #if defined(LWS_WITH_LIBUV)
    	&event_loop_ops_uv,
    #endif
    #if defined(LWS_WITH_LIBEVENT)
    	&event_loop_ops_event,
    #endif
    #if defined(LWS_WITH_LIBEV)
    	&event_loop_ops_ev,
    #endif
    	NULL
    };
    
    
    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;
    }
    
    
    int
    lws_role_call_alpn_negotiated(struct lws *wsi, const char *alpn)
    {
    #if defined(LWS_WITH_TLS)
    	if (!alpn)
    		return 0;
    
    	lwsl_info("%s: '%s'\n", __func__, alpn);
    
    
    	LWS_FOR_EVERY_AVAILABLE_ROLE_START(ar)
    
    		if (ar->alpn && !strcmp(ar->alpn, alpn) && ar->alpn_negotiated)
    
    			return ar->alpn_negotiated(wsi, alpn);
    	LWS_FOR_EVERY_AVAILABLE_ROLE_END;
    
    #if !defined(LWS_WITHOUT_SERVER)
    int
    lws_role_call_adoption_bind(struct lws *wsi, int type, const char *prot)
    {
    	LWS_FOR_EVERY_AVAILABLE_ROLE_START(ar)
    		if (ar->adoption_bind)
    			if (ar->adoption_bind(wsi, type, prot))
    				return 0;
    	LWS_FOR_EVERY_AVAILABLE_ROLE_END;
    
    	/* fall back to raw socket role if, eg, h1 not configured */
    
    	if (role_ops_raw_skt.adoption_bind &&
    	    role_ops_raw_skt.adoption_bind(wsi, type, prot))
    		return 0;
    
    	/* fall back to raw file role if, eg, h1 not configured */
    
    	if (role_ops_raw_file.adoption_bind &&
    	    role_ops_raw_file.adoption_bind(wsi, type, prot))
    		return 0;
    
    	return 1;
    }
    #endif
    
    #if !defined(LWS_WITHOUT_CLIENT)
    int
    lws_role_call_client_bind(struct lws *wsi,
    			  const struct lws_client_connect_info *i)
    {
    	LWS_FOR_EVERY_AVAILABLE_ROLE_START(ar)
    		if (ar->client_bind) {
    			int m = ar->client_bind(wsi, i);
    			if (m < 0)
    				return m;
    			if (m)
    				return 0;
    		}
    	LWS_FOR_EVERY_AVAILABLE_ROLE_END;
    
    	/* fall back to raw socket role if, eg, h1 not configured */
    
    	if (role_ops_raw_skt.client_bind &&
    	    role_ops_raw_skt.client_bind(wsi, i))
    		return 0;
    
    	return 1;
    }
    #endif
    
    
    Andy Green's avatar
    Andy Green committed
    static const char * const mount_protocols[] = {
    	"http://",
    	"https://",
    	"file://",
    
    	"cgi://",
    	">http://",
    	">https://",
    
    	"callback://"
    
    Andy Green's avatar
    Andy Green committed
    };
    
    
    Andy Green's avatar
    Andy Green committed
    LWS_VISIBLE void *
    
    Andy Green's avatar
    Andy Green committed
    lws_protocol_vh_priv_zalloc(struct lws_vhost *vhost,
    			    const struct lws_protocols *prot, int size)
    
    Andy Green's avatar
    Andy Green committed
    {
    	int n = 0;
    
    	/* allocate the vh priv array only on demand */
    	if (!vhost->protocol_vh_privs) {
    		vhost->protocol_vh_privs = (void **)lws_zalloc(
    
    Andy Green's avatar
    Andy Green committed
    				vhost->count_protocols * sizeof(void *),
    				"protocol_vh_privs");
    
    Andy Green's avatar
    Andy Green committed
    		if (!vhost->protocol_vh_privs)
    			return NULL;
    	}
    
    	while (n < vhost->count_protocols && &vhost->protocols[n] != prot)
    		n++;
    
    
    Andy Green's avatar
    Andy Green committed
    	if (n == vhost->count_protocols) {
    		n = 0;
    		while (n < vhost->count_protocols &&
    		       strcmp(vhost->protocols[n].name, prot->name))
    			n++;
    
    		if (n == vhost->count_protocols)
    			return NULL;
    	}
    
    Andy Green's avatar
    Andy Green committed
    
    
    Andy Green's avatar
    Andy Green committed
    	vhost->protocol_vh_privs[n] = lws_zalloc(size, "vh priv");
    
    Andy Green's avatar
    Andy Green committed
    	return vhost->protocol_vh_privs[n];
    }
    
    LWS_VISIBLE void *
    
    Andy Green's avatar
    Andy Green committed
    lws_protocol_vh_priv_get(struct lws_vhost *vhost,
    			 const struct lws_protocols *prot)
    
    Andy Green's avatar
    Andy Green committed
    {
    	int n = 0;
    
    
    	if (!vhost || !vhost->protocol_vh_privs || !prot)
    
    Andy Green's avatar
    Andy Green committed
    		return NULL;
    
    	while (n < vhost->count_protocols && &vhost->protocols[n] != prot)
    		n++;
    
    	if (n == vhost->count_protocols) {
    
    Andy Green's avatar
    Andy Green committed
    		n = 0;
    		while (n < vhost->count_protocols &&
    		       strcmp(vhost->protocols[n].name, prot->name))
    			n++;
    
    		if (n == vhost->count_protocols) {
    			lwsl_err("%s: unknown protocol %p\n", __func__, prot);
    			return NULL;
    		}
    
    Andy Green's avatar
    Andy Green committed
    	}
    
    	return vhost->protocol_vh_privs[n];
    }
    
    
    static const struct lws_protocol_vhost_options *
    
    lws_vhost_protocol_options(struct lws_vhost *vh, const char *name)
    {
    
    	const struct lws_protocol_vhost_options *pvo = vh->pvo;
    
    	while (pvo) {
    		if (!strcmp(pvo->name, name))
    			return pvo;
    		pvo = pvo->next;
    	}
    
    	return NULL;
    }
    
    
    /*
     * inform every vhost that hasn't already done it, that
     * his protocols are initializing
     */
    
    Andy Green's avatar
    Andy Green committed
    LWS_VISIBLE int
    
    Andy Green's avatar
    Andy Green committed
    lws_protocol_init(struct lws_context *context)
    {
    	struct lws_vhost *vh = context->vhost_list;
    
    	const struct lws_protocol_vhost_options *pvo, *pvo1;
    
    Andy Green's avatar
    Andy Green committed
    	struct lws wsi;
    
    	int n, any = 0;
    
    Andy Green's avatar
    Andy Green committed
    
    
    	if (context->doing_protocol_init)
    		return 0;
    
    	context->doing_protocol_init = 1;
    
    
    Andy Green's avatar
    Andy Green committed
    	memset(&wsi, 0, sizeof(wsi));
    	wsi.context = context;
    
    
    	lwsl_info("%s\n", __func__);
    
    Andy Green's avatar
    Andy Green committed
    	while (vh) {
    		wsi.vhost = vh;
    
    
    		/* only do the protocol init once for a given vhost */
    
    		if (vh->created_vhost_protocols ||
    		    (vh->options & LWS_SERVER_OPTION_SKIP_PROTOCOL_INIT))
    
    Andy Green's avatar
    Andy Green committed
    		/* initialize supported protocols on this vhost */
    
    		for (n = 0; n < vh->count_protocols; n++) {
    			wsi.protocol = &vh->protocols[n];
    
    Andy Green's avatar
    Andy Green committed
    			if (!vh->protocols[n].name)
    				continue;
    
    			pvo = lws_vhost_protocol_options(vh,
    							 vh->protocols[n].name);
    
    			if (pvo) {
    
    				/*
    				 * linked list of options specific to
    				 * vh + protocol
    				 */
    
    				pvo1 = pvo;
    				pvo = pvo1->options;
    
    				while (pvo) {
    
    					lwsl_debug(
    
    Andy Green's avatar
    Andy Green committed
    						"    vhost \"%s\", "
    						"protocol \"%s\", "
    						"option \"%s\"\n",
    
    							vh->name,
    							vh->protocols[n].name,
    							pvo->name);
    
    					if (!strcmp(pvo->name, "default")) {
    
    						lwsl_info("Setting default "
    
    						   "protocol for vh %s to %s\n",
    						   vh->name,
    						   vh->protocols[n].name);
    						vh->default_protocol_index = n;
    					}
    
    					if (!strcmp(pvo->name, "raw")) {
    
    						lwsl_info("Setting raw "
    
    						   "protocol for vh %s to %s\n",
    						   vh->name,
    						   vh->protocols[n].name);
    						vh->raw_protocol_index = n;
    					}
    
    					pvo = pvo->next;
    				}
    
    				pvo = pvo1->options;
    			}
    
    Andy Green's avatar
    Andy Green committed
    #if defined(LWS_WITH_TLS)
    
    Andy Green's avatar
    Andy Green committed
    			/*
    
    Andy Green's avatar
    Andy Green committed
    			 * inform all the protocols that they are doing their
    			 * one-time initialization if they want to.
    
    Andy Green's avatar
    Andy Green committed
    			 *
    
    Andy Green's avatar
    Andy Green committed
    			 * NOTE the wsi is all zeros except for the context, vh
    			 * + protocol ptrs so lws_get_context(wsi) etc can work
    
    Andy Green's avatar
    Andy Green committed
    			 */
    
    Andy Green's avatar
    Andy Green committed
    			if (vh->protocols[n].callback(&wsi,
    
    Andy Green's avatar
    Andy Green committed
    					LWS_CALLBACK_PROTOCOL_INIT, NULL,
    
    Andy Green's avatar
    Andy Green committed
    				lws_free(vh->protocol_vh_privs[n]);
    				vh->protocol_vh_privs[n] = NULL;
    
    				lwsl_err("%s: protocol %s failed init\n",
    					 __func__, vh->protocols[n].name);
    
    Andy Green's avatar
    Andy Green committed
    		}
    
    
    		vh->created_vhost_protocols = 1;
    next:
    
    Andy Green's avatar
    Andy Green committed
    		vh = vh->vhost_next;
    	}
    
    
    	if (!context->protocol_init_done)
    		lws_finalize_startup(context);
    
    
    Andy Green's avatar
    Andy Green committed
    	context->protocol_init_done = 1;
    
    
    	if (any)
    		lws_tls_check_all_cert_lifetimes(context);
    
    
    Andy Green's avatar
    Andy Green committed
    	return 0;
    }
    
    
    
    /* list of supported protocols and callbacks */
    
    static const struct lws_protocols protocols_dummy[] = {
    	/* first protocol must always be HTTP handler */
    
    	{
    
    Andy Green's avatar
    Andy Green committed
    		"http-only",			/* name */
    		lws_callback_http_dummy,	/* callback */
    		0,				/* per_session_data_size */
    		0,				/* rx_buffer_size */
    		0,				/* id */
    		NULL,				/* user */
    		0				/* tx_packet_size */
    
    	},
    	/*
    	 * the other protocols are provided by lws plugins
    	 */
    
    	{ NULL, NULL, 0, 0, 0, NULL, 0} /* terminator */
    
    #ifdef LWS_PLAT_OPTEE
    #undef LWS_HAVE_GETENV
    #endif
    
    
    Andy Green's avatar
    Andy Green committed
    LWS_VISIBLE struct lws_vhost *
    lws_create_vhost(struct lws_context *context,
    
    		 const struct lws_context_creation_info *info)
    
    Andy Green's avatar
    Andy Green committed
    {
    
    Andy Green's avatar
    Andy Green committed
    	struct lws_vhost *vh = lws_zalloc(sizeof(*vh), "create vhost"),
    
    Andy Green's avatar
    Andy Green committed
    			 **vh1 = &context->vhost_list;
    
    	const struct lws_http_mount *mounts;
    
    	const struct lws_protocols *pcols = info->protocols;
    
    Andy Green's avatar
    Andy Green committed
    	const struct lws_protocol_vhost_options *pvo;
    
    Andy Green's avatar
    Andy Green committed
    #ifdef LWS_WITH_PLUGINS
    	struct lws_plugin *plugin = context->plugin_list;
    
    Andy Green's avatar
    Andy Green committed
    #endif
    
    Andy Green's avatar
    Andy Green committed
    	struct lws_protocols *lwsp;
    
    Andy Green's avatar
    Andy Green committed
    	int m, f = !info->pvo;
    
    Andy Green's avatar
    Andy Green committed
    	char buf[20];
    
    #if !defined(LWS_WITHOUT_CLIENT) && defined(LWS_HAVE_GETENV)
    
    Andy Green's avatar
    Andy Green committed
    	char *p;
    
    Andy Green's avatar
    Andy Green committed
    #endif
    
    Andy Green's avatar
    Andy Green committed
    	int n;
    
    Andy Green's avatar
    Andy Green committed
    
    	if (!vh)
    		return NULL;
    
    
    Andy Green's avatar
    Andy Green committed
    #if LWS_MAX_SMP > 1
    	pthread_mutex_init(&vh->lock, NULL);
    #endif
    
    
    	if (!pcols)
    		pcols = &protocols_dummy[0];
    
    Andy Green's avatar
    Andy Green committed
    	vh->context = context;
    	if (!info->vhost_name)
    		vh->name = "default";
    	else
    		vh->name = info->vhost_name;
    
    
    #if defined(LWS_ROLE_H1) || defined(LWS_ROLE_H2)
    	vh->http.error_document_404 = info->error_document_404;
    #endif
    
    	if (info->options & LWS_SERVER_OPTION_ONLY_RAW)
    		lwsl_info("%s set to only support RAW\n", vh->name);
    
    
    Andy Green's avatar
    Andy Green committed
    	vh->iface = info->iface;
    
    Andy Green's avatar
    Andy Green committed
    #if !defined(LWS_WITH_ESP32) && \
    
    Andy Green's avatar
    Andy Green committed
        !defined(OPTEE_TA) && !defined(WIN32)
    
    Andy Green's avatar
    Andy Green committed
    	for (vh->count_protocols = 0;
    
    	     pcols[vh->count_protocols].callback;
    
    Andy Green's avatar
    Andy Green committed
    	     vh->count_protocols++)
    		;
    
    	vh->pvo = info->pvo;
    
    	vh->headers = info->headers;
    
    	vh->finalize = info->finalize;
    	vh->finalize_arg = info->finalize_arg;
    
    Andy Green's avatar
    Andy Green committed
    
    
    	LWS_FOR_EVERY_AVAILABLE_ROLE_START(ar)
    		if (ar->init_vhost)
    			if (ar->init_vhost(vh, info))
    				return NULL;
    	LWS_FOR_EVERY_AVAILABLE_ROLE_END;
    
    Andy Green's avatar
    Andy Green committed
    
    
    Andy Green's avatar
    Andy Green committed
    	if (info->keepalive_timeout)
    		vh->keepalive_timeout = info->keepalive_timeout;
    	else
    		vh->keepalive_timeout = 5;
    
    	if (info->timeout_secs_ah_idle)
    		vh->timeout_secs_ah_idle = info->timeout_secs_ah_idle;
    	else
    		vh->timeout_secs_ah_idle = 10;
    
    
    Andy Green's avatar
    Andy Green committed
    #if defined(LWS_WITH_TLS)
    
    
    	vh->tls.alpn = info->alpn;
    	vh->tls.ssl_info_event_mask = info->ssl_info_event_mask;
    
    
    		lws_strncpy(vh->tls.ecdh_curve, info->ecdh_curve,
    			    sizeof(vh->tls.ecdh_curve));
    
    
    	/* carefully allocate and take a copy of cert + key paths if present */
    	n = 0;
    	if (info->ssl_cert_filepath)
    		n += (int)strlen(info->ssl_cert_filepath) + 1;
    	if (info->ssl_private_key_filepath)
    		n += (int)strlen(info->ssl_private_key_filepath) + 1;
    
    	if (n) {
    
    		vh->tls.key_path = vh->tls.alloc_cert_path =
    					lws_malloc(n, "vh paths");
    
    		if (info->ssl_cert_filepath) {
    			n = (int)strlen(info->ssl_cert_filepath) + 1;
    
    			memcpy(vh->tls.alloc_cert_path,
    			       info->ssl_cert_filepath, n);
    
    		}
    		if (info->ssl_private_key_filepath)
    
    			memcpy(vh->tls.key_path, info->ssl_private_key_filepath,
    
    			       strlen(info->ssl_private_key_filepath) + 1);
    	}
    
    Andy Green's avatar
    Andy Green committed
    	/*
    	 * give the vhost a unified list of protocols including the
    	 * ones that came from plugins
    	 */
    
    Andy Green's avatar
    Andy Green committed
    	lwsp = lws_zalloc(sizeof(struct lws_protocols) * (vh->count_protocols +
    				   context->plugin_protocol_count + 1),
    
    			  "vhost-specific plugin table");
    
    Andy Green's avatar
    Andy Green committed
    	if (!lwsp) {
    		lwsl_err("OOM\n");
    		return NULL;
    	}
    
    Andy Green's avatar
    Andy Green committed
    
    
    Andy Green's avatar
    Andy Green committed
    	m = vh->count_protocols;
    
    	memcpy(lwsp, pcols, sizeof(struct lws_protocols) * m);
    
    Andy Green's avatar
    Andy Green committed
    	/* 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 (context->options & LWS_SERVER_OPTION_EXPLICIT_VHOSTS)
    
    Andy Green's avatar
    Andy Green committed
    		f = 0;
    	(void)f;
    #ifdef LWS_WITH_PLUGINS
    	if (plugin) {
    
    Andy Green's avatar
    Andy Green committed
    		while (plugin) {
    
    			for (n = 0; n < plugin->caps.count_protocols; n++) {
    				/*
    				 * for compatibility's sake, no pvo implies
    				 * allow all protocols
    				 */
    
    				if (f || lws_vhost_protocol_options(vh,
    
    				    plugin->caps.protocols[n].name)) {
    					memcpy(&lwsp[m],
    					       &plugin->caps.protocols[n],
    					       sizeof(struct lws_protocols));
    					m++;
    					vh->count_protocols++;
    				}
    			}
    
    Andy Green's avatar
    Andy Green committed
    			plugin = plugin->list;
    		}
    
    Andy Green's avatar
    Andy Green committed
    	}
    
    Andy Green's avatar
    Andy Green committed
    #endif
    
    Andy Green's avatar
    Andy Green committed
    
    
    Andy Green's avatar
    Andy Green committed
    	if (
    #ifdef LWS_WITH_PLUGINS
    	    (context->plugin_list) ||
    #endif
    
    	    context->options & LWS_SERVER_OPTION_EXPLICIT_VHOSTS)
    
    Andy Green's avatar
    Andy Green committed
    		vh->protocols = lwsp;
    
    		vh->protocols = pcols;
    
    		lws_free(lwsp);
    
    Andy Green's avatar
    Andy Green committed
    
    
    	vh->same_vh_protocol_heads = (struct lws_dll_lws *)
    			lws_zalloc(sizeof(struct lws_dll_lws) *
    				   vh->count_protocols, "same vh list");
    
    #if defined(LWS_ROLE_H1) || defined(LWS_ROLE_H2)
    	vh->http.mount_list = info->mounts;
    #endif
    
    Andy Green's avatar
    Andy Green committed
    
    
    #ifdef LWS_WITH_UNIX_SOCK
    
    	if (LWS_UNIX_SOCK_ENABLED(vh)) {
    
    Yeonjun Lim's avatar
    Yeonjun Lim committed
    		lwsl_notice("Creating Vhost '%s' path \"%s\", %d protocols\n",
    
    				vh->name, vh->iface, vh->count_protocols);
    
    Yeonjun Lim's avatar
    Yeonjun Lim committed
    	} else
    #endif
    
    Andy Green's avatar
    Andy Green committed
    	{
    		switch(info->port) {
    		case CONTEXT_PORT_NO_LISTEN:
    			strcpy(buf, "(serving disabled)");
    			break;
    		case CONTEXT_PORT_NO_LISTEN_SERVER:
    			strcpy(buf, "(no listener)");
    			break;
    		default:
    			lws_snprintf(buf, sizeof(buf), "port %u", info->port);
    			break;
    		}
    		lwsl_notice("Creating Vhost '%s' %s, %d protocols, IPv6 %s\n",
    
    			    vh->name, buf, vh->count_protocols,
    			    LWS_IPV6_ENABLED(vh) ? "on" : "off");
    
    Andy Green's avatar
    Andy Green committed
    	}
    
    	mounts = info->mounts;
    
    Andy Green's avatar
    Andy Green committed
    	while (mounts) {
    
    Sergey Kovalevich's avatar
    Sergey Kovalevich committed
    		(void)mount_protocols[0];
    
    		lwsl_info("   mounting %s%s to %s\n",
    			  mount_protocols[mounts->origin_protocol],
    			  mounts->origin, mounts->mountpoint);
    
    Andy Green's avatar
    Andy Green committed
    
    		/* convert interpreter protocol names to pointers */
    		pvo = mounts->interpret;
    		while (pvo) {
    
    Andy Green's avatar
    Andy Green committed
    			for (n = 0; n < vh->count_protocols; n++) {
    				if (strcmp(pvo->value, vh->protocols[n].name))
    					continue;
    				((struct lws_protocol_vhost_options *)pvo)->
    					value = (const char *)(lws_intptr_t)n;
    				break;
    			}
    
    Andy Green's avatar
    Andy Green committed
    			if (n == vh->count_protocols)
    
    Andy Green's avatar
    Andy Green committed
    				lwsl_err("ignoring unknown interp pr %s\n",
    
    Andy Green's avatar
    Andy Green committed
    					 pvo->value);
    
    Andy Green's avatar
    Andy Green committed
    			pvo = pvo->next;
    		}
    
    
    Andy Green's avatar
    Andy Green committed
    		mounts = mounts->mount_next;
    	}
    
    	vh->listen_port = info->port;
    
    #if defined(LWS_ROLE_H1) || defined(LWS_ROLE_H2)
    	vh->http.http_proxy_port = 0;
    	vh->http.http_proxy_address[0] = '\0';
    #endif
    
    #if defined(LWS_WITH_SOCKS5)
    	vh->socks_proxy_port = 0;
    	vh->socks_proxy_address[0] = '\0';
    #endif
    
    Andy Green's avatar
    Andy Green committed
    
    
    #if !defined(LWS_WITHOUT_CLIENT)
    
    Andy Green's avatar
    Andy Green committed
    	/* either use proxy from info, or try get it from env var */
    
    	/* http proxy */
    
    Andy Green's avatar
    Andy Green committed
    	if (info->http_proxy_address) {
    		/* override for backwards compatibility */
    		if (info->http_proxy_port)
    
    Andy Green's avatar
    Andy Green committed
    		lws_set_proxy(vh, info->http_proxy_address);
    
    Andy Green's avatar
    Andy Green committed
    #ifdef LWS_HAVE_GETENV
    		p = getenv("http_proxy");
    		if (p)
    			lws_set_proxy(vh, p);
    #endif
    	}
    
    #if defined(LWS_WITH_SOCKS5)
    	/* socks proxy */
    	if (info->socks_proxy_address) {
    		/* override for backwards compatibility */
    		if (info->socks_proxy_port)
    			vh->socks_proxy_port = info->socks_proxy_port;
    		lws_set_socks(vh, info->socks_proxy_address);
    	} else {
    #ifdef LWS_HAVE_GETENV
    		p = getenv("socks_proxy");
    		if (p)
    			lws_set_socks(vh, p);
    
    Andy Green's avatar
    Andy Green committed
    #endif
    
    Andy Green's avatar
    Andy Green committed
    	vh->ka_time = info->ka_time;
    	vh->ka_interval = info->ka_interval;
    	vh->ka_probes = info->ka_probes;
    
    
    	if (vh->options & LWS_SERVER_OPTION_STS)
    		lwsl_notice("   STS enabled\n");
    
    
    #ifdef LWS_WITH_ACCESS_LOG
    	if (info->log_filepath) {
    
    		vh->log_fd = lws_open(info->log_filepath,
    
    Andy Green's avatar
    Andy Green committed
    				  O_CREAT | O_APPEND | O_RDWR, 0600);
    
    		if (vh->log_fd == (int)LWS_INVALID_FILE) {
    
    			lwsl_err("unable to open log filepath %s\n",
    				 info->log_filepath);
    			goto bail;
    		}
    
    #ifndef WIN32
    
    		if (context->uid != -1)
    			if (chown(info->log_filepath, context->uid,
    				  context->gid) == -1)
    				lwsl_err("unable to chown log file %s\n",
    						info->log_filepath);
    
    		vh->log_fd = (int)LWS_INVALID_FILE;
    
    	if (lws_context_init_server_ssl(info, vh)) {
    		lwsl_err("%s: lws_context_init_server_ssl failed\n", __func__);
    
    	}
    	if (lws_context_init_client_ssl(info, vh)) {
    		lwsl_err("%s: lws_context_init_client_ssl failed\n", __func__);
    
    Andy Green's avatar
    Andy Green committed
    	lws_context_lock(context, "create_vhost");
    
    	n = _lws_vhost_init_server(info, vh);
    
    Andy Green's avatar
    Andy Green committed
    	lws_context_unlock(context);
    	if (n < 0) {
    
    Andy Green's avatar
    Andy Green committed
    		lwsl_err("init server failed\n");
    
    Andy Green's avatar
    Andy Green committed
    	}
    
    Andy Green's avatar
    Andy Green committed
    
    	while (1) {
    		if (!(*vh1)) {
    			*vh1 = vh;
    			break;
    		}
    		vh1 = &(*vh1)->vhost_next;
    	};
    
    Andy Green's avatar
    Andy Green committed
    
    
    	/* for the case we are adding a vhost much later, after server init */
    
    	if (context->protocol_init_done)
    
    		if (lws_protocol_init(context)) {
    			lwsl_err("%s: lws_protocol_init failed\n", __func__);
    
    Andy Green's avatar
    Andy Green committed
    	return vh;
    
    
    	lws_vhost_destroy(vh);
    
    
    	return NULL;
    
    #ifdef LWS_WITH_ACCESS_LOG
    
    Andy Green's avatar
    Andy Green committed
    bail:
    	lws_free(vh);
    
    Andy Green's avatar
    Andy Green committed
    
    	return NULL;
    }
    
    
    LWS_VISIBLE int
    lws_init_vhost_client_ssl(const struct lws_context_creation_info *info,
    			  struct lws_vhost *vhost)
    {
    	struct lws_context_creation_info i;
    
    	memcpy(&i, info, sizeof(i));
    	i.port = CONTEXT_PORT_NO_LISTEN;
    
    	return lws_context_init_client_ssl(&i, vhost);
    }
    
    
    LWS_VISIBLE void
    lws_cancel_service_pt(struct lws *wsi)
    {
    	lws_plat_pipe_signal(wsi);
    }
    
    LWS_VISIBLE void
    lws_cancel_service(struct lws_context *context)
    {
    	struct lws_context_per_thread *pt = &context->pt[0];
    	short m = context->count_threads;
    
    
    Andy Green's avatar
    Andy Green committed
    	if (context->being_destroyed1)
    		return;
    
    
    Andy Green's avatar
    Andy Green committed
    	lwsl_info("%s\n", __func__);
    
    
    	while (m--) {
    		if (pt->pipe_wsi)
    			lws_plat_pipe_signal(pt->pipe_wsi);
    		pt++;
    	}
    }
    
    int
    lws_create_event_pipes(struct lws_context *context)
    {
    	struct lws *wsi;
    	int n;
    
    	/*
    	 * Create the pt event pipes... these are unique in that they are
    	 * not bound to a vhost or protocol (both are NULL)
    	 */
    
    	for (n = 0; n < context->count_threads; n++) {
    		if (context->pt[n].pipe_wsi)
    			continue;
    
    		wsi = lws_zalloc(sizeof(*wsi), "event pipe wsi");
    		if (!wsi) {
    
    			lwsl_err("%s: Out of mem\n", __func__);
    
    			return 1;
    		}
    		wsi->context = context;
    
    Andy Green's avatar
    Andy Green committed
    		lws_role_transition(wsi, 0, LRS_UNCONNECTED, &role_ops_pipe);
    
    		wsi->protocol = NULL;
    		wsi->tsi = n;
    		wsi->vhost = NULL;
    		wsi->event_pipe = 1;
    
    		wsi->desc.sockfd = LWS_SOCK_INVALID;
    		context->pt[n].pipe_wsi = wsi;
    		context->count_wsi_allocated++;
    
    		if (lws_plat_pipe_create(wsi))
    			/*
    			 * platform code returns 0 if it actually created pipes
    			 * and initialized pt->dummy_pipe_fds[].  If it used
    			 * some other mechanism outside of signaling in the
    			 * normal event loop, we skip treating the pipe as
    			 * related to dummy_pipe_fds[], adding it to the fds,
    			 * etc.
    			 */
    
    		wsi->desc.sockfd = context->pt[n].dummy_pipe_fds[0];
    		lwsl_debug("event pipe fd %d\n", wsi->desc.sockfd);
    
    
    		if (context->event_loop_ops->accept)
    
    Andy Green's avatar
    Andy Green committed
    			if (context->event_loop_ops->accept(wsi))
    				return 1;
    
    Andy Green's avatar
    Andy Green committed
    		if (__insert_wsi_socket_into_fds(context, wsi))
    
    Sungtae Kim's avatar
    Sungtae Kim committed
    lws_destroy_event_pipe(struct lws *wsi)
    {
    
    	lwsl_info("%s\n", __func__);
    
    Andy Green's avatar
    Andy Green committed
    	__remove_wsi_socket_from_fds(wsi);
    
    
    	if (wsi->context->event_loop_ops->wsi_logical_close) {
    		wsi->context->event_loop_ops->wsi_logical_close(wsi);
    		lws_plat_pipe_close(wsi);
    
    		wsi->context->count_wsi_allocated--;
    
    		return;
    	}
    
    	if (wsi->context->event_loop_ops->destroy_wsi)
    		wsi->context->event_loop_ops->destroy_wsi(wsi);
    	lws_plat_pipe_close(wsi);
    
    Sungtae Kim's avatar
    Sungtae Kim committed
    	wsi->context->count_wsi_allocated--;
    	lws_free(wsi);
    }
    
    
    LWS_VISIBLE struct lws_context *
    
    lws_create_context(const struct lws_context_creation_info *info)
    
    	struct lws_context *context = NULL;
    
    Andy Green's avatar
    Andy Green committed
    	struct lws_plat_file_ops *prev;
    
    #ifndef LWS_NO_DAEMONIZE
    
    	int pid_daemon = get_daemonize_pid();
    
    Andy Green's avatar
    Andy Green committed
    #endif
    
    Galen Ma's avatar
    Galen Ma committed
    #if defined(__ANDROID__)
    	struct rlimit rt;
    #endif
    
    
    	lwsl_info("Initial logging level %d\n", log_level);
    	lwsl_info("Libwebsockets version: %s\n", library_version);
    
    Andy Green's avatar
    Andy Green committed
    
    
    #ifdef LWS_WITH_IPV6
    
    	if (!lws_check_opt(info->options, LWS_SERVER_OPTION_DISABLE_IPV6))
    
    		lwsl_info("IPV6 compiled in and enabled\n");
    
    		lwsl_info("IPV6 compiled in but disabled\n");
    
    	lwsl_info("IPV6 not compiled in\n");
    
    Andy Green's avatar
    Andy Green committed
    	lwsl_info(" LWS_DEF_HEADER_LEN    : %u\n", LWS_DEF_HEADER_LEN);
    
    Andy Green's avatar
    Andy Green committed
    	lwsl_info(" LWS_MAX_PROTOCOLS     : %u\n", LWS_MAX_PROTOCOLS);
    	lwsl_info(" LWS_MAX_SMP           : %u\n", LWS_MAX_SMP);
    
    	lwsl_info(" sizeof (*info)        : %ld\n", (long)sizeof(*info));
    
    Andy Green's avatar
    Andy Green committed
    #if defined(LWS_WITH_STATS)
    
    	lwsl_info(" LWS_WITH_STATS        : on\n");
    
    Andy Green's avatar
    Andy Green committed
    #endif
    
    	lwsl_info(" SYSTEM_RANDOM_FILEPATH: '%s'\n", SYSTEM_RANDOM_FILEPATH);
    
    Andy Green's avatar
    Andy Green committed
    #if defined(LWS_WITH_HTTP2)
    	lwsl_info(" HTTP2 support         : available\n");
    #else
    
    Andy Green's avatar
    Andy Green committed
    	lwsl_info(" HTTP2 support         : not configured\n");
    
    	if (lws_plat_context_early_init())
    		return NULL;
    
    
    Andy Green's avatar
    Andy Green committed
    	context = lws_zalloc(sizeof(struct lws_context), "context");
    
    	if (!context) {
    		lwsl_err("No memory for websocket context\n");
    		return NULL;
    	}
    
    
    #if defined(LWS_WITH_TLS)
    #if defined(LWS_WITH_MBEDTLS)
    	context->tls_ops = &tls_ops_mbedtls;
    #else
    	context->tls_ops = &tls_ops_openssl;
    #endif
    #endif
    
    
    	if (info->pt_serv_buf_size)
    		context->pt_serv_buf_size = info->pt_serv_buf_size;
    	else
    		context->pt_serv_buf_size = 4096;
    
    
    Andy Green's avatar
    Andy Green committed
    #if defined(LWS_ROLE_H2)
    	role_ops_h2.init_context(context, info);
    
    Andy Green's avatar
    Andy Green committed
    #endif
    
    
    Andy Green's avatar
    Andy Green committed
    #if LWS_MAX_SMP > 1
    
    Andy Green's avatar
    Andy Green committed
    	lws_mutex_refcount_init(&context->mr);
    
    Andy Green's avatar
    Andy Green committed
    #endif
    
    
    Andy Green's avatar
    Andy Green committed
    #if defined(LWS_WITH_ESP32)
    	context->last_free_heap = esp_get_free_heap_size();
    #endif
    
    
    	/* default to just the platform fops implementation */
    
    
    	context->fops_platform.LWS_FOP_OPEN	= _lws_plat_file_open;
    	context->fops_platform.LWS_FOP_CLOSE	= _lws_plat_file_close;
    	context->fops_platform.LWS_FOP_SEEK_CUR	= _lws_plat_file_seek_cur;
    	context->fops_platform.LWS_FOP_READ	= _lws_plat_file_read;
    	context->fops_platform.LWS_FOP_WRITE	= _lws_plat_file_write;
    
    Andy Green's avatar
    Andy Green committed
    	context->fops_platform.fi[0].sig	= NULL;
    
    Andy Green's avatar
    Andy Green committed
    	/*
    	 *  arrange a linear linked-list of fops starting from context->fops
    	 *
    	 * platform fops
    	 * [ -> fops_zip (copied into context so .next settable) ]
    	 * [ -> info->fops ]
    	 */
    
    	context->fops = &context->fops_platform;
    	prev = (struct lws_plat_file_ops *)context->fops;
    
    Andy Green's avatar
    Andy Green committed
    #if defined(LWS_WITH_ZIP_FOPS)
    	/* make a soft copy so we can set .next */
    	context->fops_zip = fops_zip;
    	prev->next = &context->fops_zip;
    	prev = (struct lws_plat_file_ops *)prev->next;
    #endif
    
    	/* if user provided fops, tack them on the end of the list */
    
    Andy Green's avatar
    Andy Green committed
    		prev->next = info->fops;
    
    	context->reject_service_keywords = info->reject_service_keywords;
    
    	if (info->external_baggage_free_on_destroy)
    		context->external_baggage_free_on_destroy =
    			info->external_baggage_free_on_destroy;
    
    Andy Green's avatar
    Andy Green committed
    	context->time_up = time(NULL);
    
    	context->pcontext_finalize = info->pcontext;
    
    Andy Green's avatar
    Andy Green committed
    
    
    Andy Green's avatar
    Andy Green committed
    	context->simultaneous_ssl_restriction =
    			info->simultaneous_ssl_restriction;
    
    #ifndef LWS_NO_DAEMONIZE
    
    	if (pid_daemon) {
    		context->started_with_parent = pid_daemon;
    
    		lwsl_info(" Started with daemon pid %d\n", pid_daemon);
    
    Andy Green's avatar
    Andy Green committed
    #endif
    
    Galen Ma's avatar
    Galen Ma committed
    #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
    
    Andy Green's avatar
    Andy Green committed
    
    	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;
    
    
    	context->token_limits = info->token_limits;
    
    Andy Green's avatar
    Andy Green committed
    
    
    	context->options = info->options;
    
    Andy Green's avatar
    Andy Green committed
    
    
    	/*
    	 * set the context event loops ops struct
    	 *
    	 * after this, all event_loop actions use the generic ops
    	 */
    
    #if defined(LWS_WITH_POLL)
    	context->event_loop_ops = &event_loop_ops_poll;
    #endif
    
    
    	if (lws_check_opt(context->options, LWS_SERVER_OPTION_LIBUV))
    
    #if defined(LWS_WITH_LIBUV)
    		context->event_loop_ops = &event_loop_ops_uv;
    
    
    	if (lws_check_opt(context->options, LWS_SERVER_OPTION_LIBEV))
    
    #if defined(LWS_WITH_LIBEV)
    		context->event_loop_ops = &event_loop_ops_ev;
    
    
    	if (lws_check_opt(context->options, LWS_SERVER_OPTION_LIBEVENT))
    
    #if defined(LWS_WITH_LIBEVENT)
    		context->event_loop_ops = &event_loop_ops_event;
    
    	if (!context->event_loop_ops)
    		goto fail_event_libs;
    
    
    	lwsl_info("Using event loop: %s\n", context->event_loop_ops->name);
    
    
    #if defined(LWS_WITH_TLS)
    
    	time(&context->tls.last_cert_check_s);