2 * libwebsockets - small server side websockets and web server implementation
4 * Copyright (C) 2010-2015 Andy Green <andy@warmcat.com>
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation:
9 * version 2.1 of the License.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
22 #include "private-libwebsockets.h"
25 * -04 of the protocol (actually the 80th version) has a radically different
26 * handshake. The 04 spec gives the following idea
28 * The handshake from the client looks as follows:
31 * Host: server.example.com
34 * Sec-WebSocket-Key: dGhlIHNhbXBsZSBub25jZQ==
35 * Sec-WebSocket-Origin: http://example.com
36 * Sec-WebSocket-Protocol: chat, superchat
37 * Sec-WebSocket-Version: 4
39 * The handshake from the server looks as follows:
41 * HTTP/1.1 101 Switching Protocols
44 * Sec-WebSocket-Accept: me89jWimTRKTWwrS3aRrL53YZSo=
45 * Sec-WebSocket-Nonce: AQIDBAUGBwgJCgsMDQ4PEC==
46 * Sec-WebSocket-Protocol: chat
50 #define min(a, b) ((a) < (b) ? (a) : (b))
54 * We have to take care about parsing because the headers may be split
55 * into multiple fragments. They may contain unknown headers with arbitrary
56 * argument lengths. So, we parse using a single-character at a time state
57 * machine that is completely independent of packet size.
59 * Returns <0 for error or length of chars consumed from buf (up to len)
63 lws_read(struct lws *wsi, unsigned char *buf, size_t len)
65 unsigned char *last_char, *oldbuf = buf;
69 lwsl_debug("%s: incoming len %d state %d\n", __func__, (int)len, wsi->state);
73 case LWSS_HTTP2_AWAIT_CLIENT_PREFACE:
74 case LWSS_HTTP2_ESTABLISHED_PRE_SETTINGS:
75 case LWSS_HTTP2_ESTABLISHED:
79 * we were accepting input but now we stopped doing so
81 if (!(wsi->rxflow_change_to & LWS_RXFLOW_ALLOW)) {
82 lws_rxflow_cache(wsi, buf, n, len);
87 /* account for what we're using in rxflow buffer */
88 if (wsi->rxflow_buffer)
90 if (lws_http2_parser(wsi, buf[n++])) {
91 lwsl_debug("%s: http2_parser bailed\n", __func__);
98 case LWSS_CLIENT_HTTP_ESTABLISHED:
102 wsi->hdr_parsing_completed = 0;
104 case LWSS_HTTP_ISSUING_FILE:
105 wsi->state = LWSS_HTTP_HEADERS;
106 wsi->u.hdr.parser_state = WSI_TOKEN_NAME_PART;
107 wsi->u.hdr.lextable_pos = 0;
109 case LWSS_HTTP_HEADERS:
111 assert(wsi->u.hdr.ah);
112 lwsl_parser("issuing %d bytes to parser\n", (int)len);
114 if (lws_handshake_client(wsi, &buf, len))
118 if (lws_handshake_server(wsi, &buf, len))
119 /* Handshake indicates this session is done. */
123 * It's possible that we've exhausted our data already, or
124 * rx flow control has stopped us dealing with this early,
125 * but lws_handshake_server doesn't update len for us.
126 * Figure out how much was read, so that we can proceed
129 len -= (buf - last_char);
130 lwsl_debug("%s: thinks we have used %d\n", __func__, len);
132 if (!wsi->hdr_parsing_completed)
133 /* More header content on the way */
136 switch (wsi->state) {
138 case LWSS_HTTP_HEADERS:
140 case LWSS_HTTP_ISSUING_FILE:
143 wsi->u.http.content_remain =
144 wsi->u.http.content_length;
145 if (wsi->u.http.content_remain)
148 /* there is no POST content */
149 goto postbody_completion;
157 while (len && wsi->u.http.content_remain) {
158 /* Copy as much as possible, up to the limit of:
159 * what we have in the read buffer (len)
160 * remaining portion of the POST body (content_remain)
162 body_chunk_len = min(wsi->u.http.content_remain,len);
163 wsi->u.http.content_remain -= body_chunk_len;
164 len -= body_chunk_len;
167 struct lws_cgi_args args;
170 args.stdwsi = &wsi->cgi->stdwsi[0];
172 args.len = body_chunk_len;
174 /* returns how much used */
175 n = user_callback_handle_rxflow(
176 wsi->protocol->callback,
177 wsi, LWS_CALLBACK_CGI_STDIN_DATA,
184 n = wsi->protocol->callback(wsi,
185 LWS_CALLBACK_HTTP_BODY, wsi->user_space,
186 buf, body_chunk_len);
195 if (wsi->u.http.content_remain) {
196 lws_set_timeout(wsi, PENDING_TIMEOUT_HTTP_CONTENT,
197 wsi->context->timeout_secs);
200 /* he sent all the content in time */
202 lws_set_timeout(wsi, NO_PENDING_TIMEOUT, 0);
207 n = wsi->protocol->callback(wsi,
208 LWS_CALLBACK_HTTP_BODY_COMPLETION,
209 wsi->user_space, NULL, 0);
218 case LWSS_ESTABLISHED:
219 case LWSS_AWAITING_CLOSE_ACK:
221 if (lws_handshake_client(wsi, &buf, len))
224 case LWSCM_WS_SERVING:
226 if (lws_interpret_incoming_packet(wsi, &buf, len) < 0) {
227 lwsl_info("interpret_incoming_packet has bailed\n");
234 lwsl_err("%s: Unhandled state %d\n", __func__, wsi->state);
239 /* Nothing more to do for now */
240 lwsl_info("%s: read_ok, used %d\n", __func__, buf - oldbuf);
245 lwsl_debug("%s: http_complete\n", __func__);
247 #ifndef LWS_NO_SERVER
248 /* Did the client want to keep the HTTP connection going? */
249 if (lws_http_transaction_completed(wsi))
252 /* we may have next header set already, but return to event loop first
253 * so a heaily-pipelined http/1.1 connection cannot monopolize the
254 * service thread with GET hugefile.bin GET hugefile.bin etc
259 lwsl_debug("closing connection at lws_read bail:\n");
260 lws_close_free_wsi(wsi, LWS_CLOSE_STATUS_NOSTATUS);