/* * libwebsockets - small server side websockets and web server implementation * * Copyright (C) 2010 - 2019 Andy Green * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ #include "private-lib-core.h" static int lws_get_idlest_tsi(struct lws_context *context) { unsigned int lowest = ~0; int n = 0, hit = -1; for (; n < context->count_threads; n++) { lwsl_debug("%s: %d %d\n", __func__, context->pt[n].fds_count, context->fd_limit_per_thread - 1); if ((unsigned int)context->pt[n].fds_count != context->fd_limit_per_thread - 1 && (unsigned int)context->pt[n].fds_count < lowest) { lowest = context->pt[n].fds_count; hit = n; } } return hit; } struct lws * lws_create_new_server_wsi(struct lws_vhost *vhost, int fixed_tsi) { struct lws *new_wsi; int n = fixed_tsi; size_t s = sizeof(struct lws); if (n < 0) n = lws_get_idlest_tsi(vhost->context); if (n < 0) { lwsl_err("no space for new conn\n"); return NULL; } #if defined(LWS_WITH_EVENT_LIBS) s += vhost->context->event_loop_ops->evlib_size_wsi; #endif new_wsi = lws_zalloc(s, "new server wsi"); if (new_wsi == NULL) { lwsl_err("Out of memory for new connection\n"); return NULL; } #if defined(LWS_WITH_EVENT_LIBS) new_wsi->evlib_wsi = (uint8_t *)new_wsi + sizeof(*new_wsi); #endif new_wsi->wsistate |= LWSIFR_SERVER; new_wsi->tsi = n; lwsl_debug("new wsi %p joining vhost %s, tsi %d\n", new_wsi, vhost->name, new_wsi->tsi); lws_vhost_bind_wsi(vhost, new_wsi); new_wsi->a.context = vhost->context; new_wsi->pending_timeout = NO_PENDING_TIMEOUT; new_wsi->rxflow_change_to = LWS_RXFLOW_ALLOW; new_wsi->retry_policy = vhost->retry_policy; #if defined(LWS_WITH_DETAILED_LATENCY) if (vhost->context->detailed_latency_cb) new_wsi->detlat.earliest_write_req_pre_write = lws_now_usecs(); #endif /* initialize the instance struct */ lwsi_set_state(new_wsi, LRS_UNCONNECTED); new_wsi->hdr_parsing_completed = 0; #ifdef LWS_WITH_TLS new_wsi->tls.use_ssl = LWS_SSL_ENABLED(vhost); #endif /* * these can only be set once the protocol is known * we set an un-established connection's protocol pointer * to the start of the supported list, so it can look * for matching ones during the handshake */ new_wsi->a.protocol = vhost->protocols; new_wsi->user_space = NULL; new_wsi->desc.sockfd = LWS_SOCK_INVALID; new_wsi->position_in_fds_table = LWS_NO_FDS_POS; vhost->context->count_wsi_allocated++; /* * outermost create notification for wsi * no user_space because no protocol selection */ vhost->protocols[0].callback(new_wsi, LWS_CALLBACK_WSI_CREATE, NULL, NULL, 0); return new_wsi; } /* if not a socket, it's a raw, non-ssl file descriptor */ static struct lws * lws_adopt_descriptor_vhost1(struct lws_vhost *vh, lws_adoption_type type, const char *vh_prot_name, struct lws *parent, void *opaque) { struct lws_context *context = vh->context; struct lws_context_per_thread *pt; struct lws *new_wsi; int n; /* * Notice that in SMP case, the wsi may be being created on an * entirely different pt / tsi for load balancing. In that case as * we initialize it, it may become "live" concurrently unexpectedly... */ lws_context_lock(vh->context, __func__); n = -1; if (parent) n = parent->tsi; new_wsi = lws_create_new_server_wsi(vh, n); if (!new_wsi) { lws_context_unlock(vh->context); return NULL; } new_wsi->a.opaque_user_data = opaque; pt = &context->pt[(int)new_wsi->tsi]; lws_pt_lock(pt, __func__); lws_stats_bump(pt, LWSSTATS_C_CONNECTIONS, 1); if (parent) { new_wsi->parent = parent; new_wsi->sibling_list = parent->child_list; parent->child_list = new_wsi; } if (vh_prot_name) { new_wsi->a.protocol = lws_vhost_name_to_protocol(new_wsi->a.vhost, vh_prot_name); if (!new_wsi->a.protocol) { lwsl_err("Protocol %s not enabled on vhost %s\n", vh_prot_name, new_wsi->a.vhost->name); goto bail; } if (lws_ensure_user_space(new_wsi)) { lwsl_notice("OOM trying to get user_space\n"); goto bail; } } if (!LWS_SSL_ENABLED(new_wsi->a.vhost) || !(type & LWS_ADOPT_SOCKET)) type &= ~LWS_ADOPT_ALLOW_SSL; if (lws_role_call_adoption_bind(new_wsi, type, vh_prot_name)) { lwsl_err("%s: no role for desc type 0x%x\n", __func__, type); goto bail; } lws_pt_unlock(pt); /* * he's an allocated wsi, but he's not on any fds list or child list, * join him to the vhost's list of these kinds of incomplete wsi until * he gets another identity (he may do async dns now...) */ lws_vhost_lock(new_wsi->a.vhost); lws_dll2_add_head(&new_wsi->vh_awaiting_socket, &new_wsi->a.vhost->vh_awaiting_socket_owner); lws_vhost_unlock(new_wsi->a.vhost); lws_context_unlock(vh->context); return new_wsi; bail: lwsl_notice("%s: exiting on bail\n", __func__); if (parent) parent->child_list = new_wsi->sibling_list; if (new_wsi->user_space) lws_free(new_wsi->user_space); vh->context->count_wsi_allocated--; lws_vhost_unbind_wsi(new_wsi); lws_free(new_wsi); lws_pt_unlock(pt); lws_context_unlock(vh->context); return NULL; } #if defined(LWS_WITH_SERVER) && defined(LWS_WITH_SECURE_STREAMS) /* * If the incoming wsi is bound to a vhost that is a ss server, this creates * an accepted ss bound to the wsi. * * For h1 or raw, we can do the binding here, but for muxed protocols like h2 * or mqtt we have to do it not on the nwsi but on the stream. And for h2 we * start off bound to h1 role, since we don't know if we will upgrade to h2 * until we meet the server. * * 1) No tls is assumed to mean no muxed protocol so can do it at adopt. * * 2) After alpn if not muxed we can do it. * * 3) For muxed, do it at the nwsi migration and on new stream */ int lws_adopt_ss_server_accept(struct lws *new_wsi) { lws_ss_handle_t *h; void *pv, **ppv; if (!new_wsi->a.vhost->ss_handle) return 0; pv = (char *)&new_wsi->a.vhost->ss_handle[1]; /* * Yes... the vhost is pointing to its secure stream representing the * server... we want to create an accepted SS and bind it to new_wsi, * the info/ssi from the server SS (so the SS callbacks defined there), * the opaque_user_data of the server object and the policy of it. */ ppv = (void **)((char *)pv + new_wsi->a.vhost->ss_handle->info.opaque_user_data_offset); /* * indicate we are an accepted connection referencing the * server object */ new_wsi->a.vhost->ss_handle->info.flags |= LWSSSINFLAGS_SERVER; if (lws_ss_create(new_wsi->a.context, new_wsi->tsi, &new_wsi->a.vhost->ss_handle->info, *ppv, &h, NULL, NULL)) { lwsl_err("%s: accept ss creation failed\n", __func__); goto fail1; } /* * We made a fresh accepted SS conn from the server pieces, * now bind the wsi... the problem is, this is the nwsi if it's * h2. */ h->wsi = new_wsi; new_wsi->a.opaque_user_data = h; h->info.flags |= LWSSSINFLAGS_ACCEPTED; new_wsi->for_ss = 1; /* indicate wsi should invalidate any ss link to it on close */ // lwsl_notice("%s: opaq %p, role %s\n", __func__, // new_wsi->a.opaque_user_data, new_wsi->role_ops->name); h->policy = new_wsi->a.vhost->ss_handle->policy; /* * Let's give it appropriate state notifications */ if (lws_ss_event_helper(h, LWSSSCS_CREATING)) goto fail; if (lws_ss_event_helper(h, LWSSSCS_CONNECTING)) goto fail; if (lws_ss_event_helper(h, LWSSSCS_CONNECTED)) goto fail; // lwsl_notice("%s: accepted ss complete, pcol %s\n", __func__, // new_wsi->a.protocol->name); return 0; fail: lws_ss_destroy(&h); fail1: return 1; } #endif static struct lws * lws_adopt_descriptor_vhost2(struct lws *new_wsi, lws_adoption_type type, lws_sock_file_fd_type fd) { struct lws_context_per_thread *pt = &new_wsi->a.context->pt[(int)new_wsi->tsi]; int n; /* enforce that every fd is nonblocking */ if (type & LWS_ADOPT_SOCKET) { if (lws_plat_set_nonblocking(fd.sockfd)) { lwsl_err("%s: unable to set sockfd %d nonblocking\n", __func__, fd.sockfd); goto fail; } } #if !defined(WIN32) else if (lws_plat_set_nonblocking(fd.filefd)) { lwsl_err("%s: unable to set filefd nonblocking\n", __func__); goto fail; } #endif new_wsi->desc = fd; if (!LWS_SSL_ENABLED(new_wsi->a.vhost) || !(type & LWS_ADOPT_SOCKET)) type &= ~LWS_ADOPT_ALLOW_SSL; /* * A new connection was accepted. Give the user a chance to * set properties of the newly created wsi. There's no protocol * selected yet so we issue this to the vhosts's default protocol, * itself by default protocols[0] */ new_wsi->wsistate |= LWSIFR_SERVER; n = LWS_CALLBACK_SERVER_NEW_CLIENT_INSTANTIATED; if (new_wsi->role_ops->adoption_cb[lwsi_role_server(new_wsi)]) n = new_wsi->role_ops->adoption_cb[lwsi_role_server(new_wsi)]; if (new_wsi->a.context->event_loop_ops->sock_accept) if (new_wsi->a.context->event_loop_ops->sock_accept(new_wsi)) goto fail; #if LWS_MAX_SMP > 1 /* * Caution: after this point the wsi is live on its service thread * which may be concurrent to this. We mark the wsi as still undergoing * init in another pt so the assigned pt leaves it alone. */ new_wsi->undergoing_init_from_other_pt = 1; #endif if (!(type & LWS_ADOPT_ALLOW_SSL)) { lws_pt_lock(pt, __func__); if (__insert_wsi_socket_into_fds(new_wsi->a.context, new_wsi)) { lws_pt_unlock(pt); lwsl_err("%s: fail inserting socket\n", __func__); goto fail; } lws_pt_unlock(pt); } #if defined(LWS_WITH_SERVER) else if (lws_server_socket_service_ssl(new_wsi, fd.sockfd, 0)) { #if defined(LWS_WITH_ACCESS_LOG) lwsl_notice("%s: fail ssl negotiation: %s\n", __func__, new_wsi->simple_ip); #else lwsl_info("%s: fail ssl negotiation\n", __func__); #endif goto fail; } #endif lws_vhost_lock(new_wsi->a.vhost); /* he has fds visibility now, remove from vhost orphan list */ lws_dll2_remove(&new_wsi->vh_awaiting_socket); lws_vhost_unlock(new_wsi->a.vhost); /* * by deferring callback to this point, after insertion to fds, * lws_callback_on_writable() can work from the callback */ if ((new_wsi->a.protocol->callback)(new_wsi, n, new_wsi->user_space, NULL, 0)) goto fail; /* role may need to do something after all adoption completed */ lws_role_call_adoption_bind(new_wsi, type | _LWS_ADOPT_FINISH, new_wsi->a.protocol->name); #if defined(LWS_WITH_SERVER) && defined(LWS_WITH_SECURE_STREAMS) /* * Did we come from an accepted client connection to a ss server? * * !!! For mux protocols, this will cause an additional inactive ss * representing the nwsi. Doing that allows us to support both h1 * (here) and h2 (at lws_wsi_server_new()) */ lwsl_info("%s: wsi %p, vhost %s ss_handle %p\n", __func__, new_wsi, new_wsi->a.vhost->name, new_wsi->a.vhost->ss_handle); if (lws_adopt_ss_server_accept(new_wsi)) goto fail; #endif #if LWS_MAX_SMP > 1 /* its actual pt can service it now */ new_wsi->undergoing_init_from_other_pt = 0; #endif lws_cancel_service_pt(new_wsi); return new_wsi; fail: if (type & LWS_ADOPT_SOCKET) lws_close_free_wsi(new_wsi, LWS_CLOSE_STATUS_NOSTATUS, "adopt skt fail"); return NULL; } /* if not a socket, it's a raw, non-ssl file descriptor */ struct lws * lws_adopt_descriptor_vhost(struct lws_vhost *vh, lws_adoption_type type, lws_sock_file_fd_type fd, const char *vh_prot_name, struct lws *parent) { lws_adopt_desc_t info; memset(&info, 0, sizeof(info)); info.vh = vh; info.type = type; info.fd = fd; info.vh_prot_name = vh_prot_name; info.parent = parent; return lws_adopt_descriptor_vhost_via_info(&info); } struct lws * lws_adopt_descriptor_vhost_via_info(const lws_adopt_desc_t *info) { struct lws *new_wsi; #if defined(LWS_WITH_PEER_LIMITS) struct lws_peer *peer = NULL; if (info->type & LWS_ADOPT_SOCKET) { peer = lws_get_or_create_peer(info->vh, info->fd.sockfd); if (peer && info->vh->context->ip_limit_wsi && peer->count_wsi >= info->vh->context->ip_limit_wsi) { lwsl_info("Peer reached wsi limit %d\n", info->vh->context->ip_limit_wsi); lws_stats_bump(&info->vh->context->pt[0], LWSSTATS_C_PEER_LIMIT_WSI_DENIED, 1); if (info->vh->context->pl_notify_cb) info->vh->context->pl_notify_cb( info->vh->context, info->fd.sockfd, &peer->sa46); compatible_close(info->fd.sockfd); return NULL; } } #endif new_wsi = lws_adopt_descriptor_vhost1(info->vh, info->type, info->vh_prot_name, info->parent, info->opaque); if (!new_wsi) { if (info->type & LWS_ADOPT_SOCKET) compatible_close(info->fd.sockfd); return NULL; } #if defined(LWS_WITH_ACCESS_LOG) lws_get_peer_simple_fd(info->fd.sockfd, new_wsi->simple_ip, sizeof(new_wsi->simple_ip)); #endif #if defined(LWS_WITH_PEER_LIMITS) if (peer) lws_peer_add_wsi(info->vh->context, peer, new_wsi); #endif return lws_adopt_descriptor_vhost2(new_wsi, info->type, info->fd); } struct lws * lws_adopt_socket_vhost(struct lws_vhost *vh, lws_sockfd_type accept_fd) { lws_sock_file_fd_type fd; fd.sockfd = accept_fd; return lws_adopt_descriptor_vhost(vh, LWS_ADOPT_SOCKET | LWS_ADOPT_HTTP | LWS_ADOPT_ALLOW_SSL, fd, NULL, NULL); } struct lws * lws_adopt_socket(struct lws_context *context, lws_sockfd_type accept_fd) { return lws_adopt_socket_vhost(context->vhost_list, accept_fd); } /* Common read-buffer adoption for lws_adopt_*_readbuf */ static struct lws* adopt_socket_readbuf(struct lws *wsi, const char *readbuf, size_t len) { struct lws_context_per_thread *pt; struct lws_pollfd *pfd; int n; if (!wsi) return NULL; if (!readbuf || len == 0) return wsi; if (wsi->position_in_fds_table == LWS_NO_FDS_POS) return wsi; pt = &wsi->a.context->pt[(int)wsi->tsi]; n = lws_buflist_append_segment(&wsi->buflist, (const uint8_t *)readbuf, len); if (n < 0) goto bail; if (n) lws_dll2_add_head(&wsi->dll_buflist, &pt->dll_buflist_owner); /* * we can't process the initial read data until we can attach an ah. * * if one is available, get it and place the data in his ah rxbuf... * wsi with ah that have pending rxbuf get auto-POLLIN service. * * no autoservice because we didn't get a chance to attach the * readbuf data to wsi or ah yet, and we will do it next if we get * the ah. */ if (wsi->http.ah || !lws_header_table_attach(wsi, 0)) { lwsl_notice("%s: calling service on readbuf ah\n", __func__); /* * unlike a normal connect, we have the headers already * (or the first part of them anyway). * libuv won't come back and service us without a network * event, so we need to do the header service right here. */ pfd = &pt->fds[wsi->position_in_fds_table]; pfd->revents |= LWS_POLLIN; lwsl_err("%s: calling service\n", __func__); if (lws_service_fd_tsi(wsi->a.context, pfd, wsi->tsi)) /* service closed us */ return NULL; return wsi; } lwsl_err("%s: deferring handling ah\n", __func__); return wsi; bail: lws_close_free_wsi(wsi, LWS_CLOSE_STATUS_NOSTATUS, "adopt skt readbuf fail"); return NULL; } #if defined(LWS_WITH_UDP) #if defined(LWS_WITH_CLIENT) static struct lws * lws_create_adopt_udp2(struct lws *wsi, const char *ads, const struct addrinfo *r, int n, void *opaque) { lws_sock_file_fd_type sock; int bc = 1; assert(wsi); if (!wsi->dns_results) wsi->dns_results_next = wsi->dns_results = r; if (ads && (n < 0 || !r)) { /* * DNS lookup failed: there are no usable results. Fail the * overall connection request. */ lwsl_notice("%s: bad: n %d, r %p\n", __func__, n, r); /* * We didn't get a callback on a cache item and bump the * refcount. So don't let the cleanup continue to think it * needs to decrement any refcount. */ wsi->dns_results_next = wsi->dns_results = NULL; goto bail; } while (wsi->dns_results_next) { /* * We have done the dns lookup, identify the result we want * if any, and then complete the adoption by binding wsi to * socket opened on it. * * Ignore the weak assumptions about protocol driven by port * number and force to DGRAM / UDP since that's what this * function is for. */ #if !defined(__linux__) /* PF_PACKET is linux-only */ sock.sockfd = socket(wsi->dns_results_next->ai_family, SOCK_DGRAM, IPPROTO_UDP); #else sock.sockfd = socket(wsi->pf_packet ? PF_PACKET : wsi->dns_results_next->ai_family, SOCK_DGRAM, wsi->pf_packet ? htons(0x800) : IPPROTO_UDP); #endif if (sock.sockfd == LWS_SOCK_INVALID) goto resume; ((struct sockaddr_in *)wsi->dns_results_next->ai_addr)->sin_port = htons(wsi->c_port); if (setsockopt(sock.sockfd, SOL_SOCKET, SO_REUSEADDR, (const char *)&bc, sizeof(bc)) < 0) lwsl_err("%s: failed to set reuse\n", __func__); if (wsi->do_broadcast && setsockopt(sock.sockfd, SOL_SOCKET, SO_BROADCAST, (const char *)&bc, sizeof(bc)) < 0) lwsl_err("%s: failed to set broadcast\n", __func__); /* Bind the udp socket to a particular network interface */ if (opaque && lws_plat_BINDTODEVICE(sock.sockfd, (const char *)opaque)) goto resume; if (wsi->do_bind && bind(sock.sockfd, wsi->dns_results_next->ai_addr, #if defined(_WIN32) (int)wsi->dns_results_next->ai_addrlen #else sizeof(struct sockaddr)//wsi->dns_results_next->ai_addrlen #endif ) == -1) { lwsl_err("%s: bind failed\n", __func__); goto resume; } if (!wsi->do_bind && !wsi->pf_packet) { #if !defined(__APPLE__) if (connect(sock.sockfd, wsi->dns_results_next->ai_addr, (socklen_t)wsi->dns_results_next->ai_addrlen) == -1) { lwsl_err("%s: conn fd %d fam %d %s:%u failed " "(salen %d) errno %d\n", __func__, sock.sockfd, wsi->dns_results_next->ai_addr->sa_family, ads ? ads : "null", wsi->c_port, (int)wsi->dns_results_next->ai_addrlen, LWS_ERRNO); compatible_close(sock.sockfd); goto resume; } #endif memcpy(&wsi->udp->sa, wsi->dns_results_next->ai_addr, wsi->dns_results_next->ai_addrlen); wsi->udp->salen = (socklen_t)wsi->dns_results_next->ai_addrlen; } /* we connected: complete the udp socket adoption flow */ lws_addrinfo_clean(wsi); return lws_adopt_descriptor_vhost2(wsi, LWS_ADOPT_RAW_SOCKET_UDP, sock); resume: wsi->dns_results_next = wsi->dns_results_next->ai_next; } lwsl_err("%s: unable to create INET socket %d\n", __func__, LWS_ERRNO); lws_addrinfo_clean(wsi); bail: lws_close_free_wsi(wsi, LWS_CLOSE_STATUS_NOSTATUS, "adopt udp2 fail"); return NULL; } struct lws * lws_create_adopt_udp(struct lws_vhost *vhost, const char *ads, int port, int flags, const char *protocol_name, const char *ifname, struct lws *parent_wsi, void *opaque, const lws_retry_bo_t *retry_policy) { #if !defined(LWS_PLAT_OPTEE) struct lws *wsi; int n; lwsl_info("%s: %s:%u\n", __func__, ads ? ads : "null", port); /* create the logical wsi without any valid fd */ wsi = lws_adopt_descriptor_vhost1(vhost, LWS_ADOPT_RAW_SOCKET_UDP, protocol_name, parent_wsi, opaque); if (!wsi) { lwsl_err("%s: udp wsi creation failed\n", __func__); goto bail; } wsi->do_bind = !!(flags & LWS_CAUDP_BIND); wsi->do_broadcast = !!(flags & LWS_CAUDP_BROADCAST); wsi->pf_packet = !!(flags & LWS_CAUDP_PF_PACKET); wsi->c_port = port; if (retry_policy) wsi->retry_policy = retry_policy; else wsi->retry_policy = vhost->retry_policy; #if !defined(LWS_WITH_SYS_ASYNC_DNS) { struct addrinfo *r, h; char buf[16]; memset(&h, 0, sizeof(h)); h.ai_family = AF_UNSPEC; /* Allow IPv4 or IPv6 */ h.ai_socktype = SOCK_DGRAM; h.ai_protocol = IPPROTO_UDP; #if defined(AI_PASSIVE) h.ai_flags = AI_PASSIVE; #endif #ifdef AI_ADDRCONFIG h.ai_flags |= AI_ADDRCONFIG; #endif /* if the dns lookup is synchronous, do the whole thing now */ lws_snprintf(buf, sizeof(buf), "%u", port); n = getaddrinfo(ads, buf, &h, &r); if (n) { #if !defined(LWS_PLAT_FREERTOS) lwsl_info("%s: getaddrinfo error: %s\n", __func__, gai_strerror(n)); #else lwsl_info("%s: getaddrinfo error: %s\n", __func__, strerror(n)); #endif //freeaddrinfo(r); goto bail1; } /* complete it immediately after the blocking dns lookup * finished... free r when connect either completed or failed */ wsi = lws_create_adopt_udp2(wsi, ads, r, 0, NULL); return wsi; } #else if (ads) { /* * with async dns, use the wsi as the point about which to do * the dns lookup and have it call the second part when it's * done. * * Keep a refcount on the results and free it when we connected * or definitively failed. * * Notice wsi has no socket at this point (we don't know what * kind to ask for until we get the dns back). But it is bound * to a vhost and can be cleaned up from that at vhost destroy. */ n = lws_async_dns_query(vhost->context, 0, ads, LWS_ADNS_RECORD_A, lws_create_adopt_udp2, wsi, (void *)ifname); lwsl_debug("%s: dns query returned %d\n", __func__, n); if (n == LADNS_RET_FAILED) { lwsl_err("%s: async dns failed\n", __func__); wsi = NULL; /* * It was already closed by calling callback with error * from lws_async_dns_query() */ goto bail; } } else { lwsl_debug("%s: udp adopt has no ads\n", __func__); wsi = lws_create_adopt_udp2(wsi, ads, NULL, 0, (void *)ifname); } /* dns lookup is happening asynchronously */ lwsl_debug("%s: returning wsi %p\n", __func__, wsi); return wsi; #endif #if !defined(LWS_WITH_SYS_ASYNC_DNS) bail1: lws_close_free_wsi(wsi, LWS_CLOSE_STATUS_NOSTATUS, "adopt udp2 fail"); wsi = NULL; #endif bail: return wsi; #else return NULL; #endif } #endif #endif struct lws * lws_adopt_socket_readbuf(struct lws_context *context, lws_sockfd_type accept_fd, const char *readbuf, size_t len) { return adopt_socket_readbuf(lws_adopt_socket(context, accept_fd), readbuf, len); } struct lws * lws_adopt_socket_vhost_readbuf(struct lws_vhost *vhost, lws_sockfd_type accept_fd, const char *readbuf, size_t len) { return adopt_socket_readbuf(lws_adopt_socket_vhost(vhost, accept_fd), readbuf, len); }