2 * libwebsockets-test-server - libwebsockets test 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,
21 #include "test-server.h"
24 * This demo server shows how to use libwebsockets for one or more
25 * websocket protocols in the same server
27 * It defines the following websocket protocols:
29 * dumb-increment-protocol: once the socket is opened, an incrementing
30 * ascii string is sent down it every 50ms.
31 * If you send "reset\n" on the websocket, then
32 * the incrementing number is reset to 0.
34 * lws-mirror-protocol: copies any received packet to every connection also
35 * using this protocol, including the sender
42 PROTOCOL_DUMB_INCREMENT,
50 * We take a strict whitelist approach to stop ../ attacks
58 * this is just an example of parsing handshake headers, you don't need this
59 * in your code unless you will filter allowing connections by the header
63 dump_handshake_info(struct libwebsocket *wsi)
67 const unsigned char *c;
70 c = lws_token_to_string(n);
76 if (!lws_hdr_total_length(wsi, n)) {
81 lws_hdr_copy(wsi, buf, sizeof buf, n);
83 fprintf(stderr, " %s = %s\n", (char *)c, buf);
88 const char * get_mimetype(const char *file)
95 if (!strcmp(&file[n - 4], ".ico"))
96 return "image/x-icon";
98 if (!strcmp(&file[n - 4], ".png"))
101 if (!strcmp(&file[n - 5], ".html"))
107 /* this protocol server (always the first one) handles HTTP,
109 * Some misc callbacks that aren't associated with a protocol also turn up only
110 * here on the first protocol server.
113 int callback_http(struct libwebsocket_context *context,
114 struct libwebsocket *wsi,
115 enum libwebsocket_callback_reasons reason, void *user,
116 void *in, size_t len)
118 struct per_session_data__http *pss =
119 (struct per_session_data__http *)user;
120 static unsigned char buffer[4096];
121 struct stat stat_buf;
122 char leaf_path[1024];
123 const char *mimetype;
133 struct libwebsocket_pollargs *pa = (struct libwebsocket_pollargs *)in;
137 case LWS_CALLBACK_HTTP:
139 dump_handshake_info(wsi);
142 lws_return_http_status(context, wsi,
143 HTTP_STATUS_BAD_REQUEST, NULL);
147 /* this example server has no concept of directories */
148 if (strchr((const char *)in + 1, '/')) {
149 lws_return_http_status(context, wsi,
150 HTTP_STATUS_FORBIDDEN, NULL);
154 /* if a legal POST URL, let it continue and accept data */
155 if (lws_hdr_total_length(wsi, WSI_TOKEN_POST_URI))
158 /* check for the "send a big file by hand" example case */
160 if (!strcmp((const char *)in, "/leaf.jpg")) {
161 if (strlen(resource_path) > sizeof(leaf_path) - 10)
163 sprintf(leaf_path, "%s/leaf.jpg", resource_path);
165 /* well, let's demonstrate how to send the hard way */
167 p = buffer + LWS_SEND_BUFFER_PRE_PADDING;
168 end = p + sizeof(buffer) - LWS_SEND_BUFFER_PRE_PADDING;
170 pss->fd = open(leaf_path, O_RDONLY | _O_BINARY);
172 pss->fd = open(leaf_path, O_RDONLY);
178 if (fstat(pss->fd, &stat_buf) < 0)
182 * we will send a big jpeg file, but it could be
183 * anything. Set the Content-Type: appropriately
184 * so the browser knows what to do with it.
186 * Notice we use the APIs to build the header, which
187 * will do the right thing for HTTP 1/1.1 and HTTP2
188 * depending on what connection it happens to be working
191 if (lws_add_http_header_status(context, wsi, 200, &p, end))
193 if (lws_add_http_header_by_token(context, wsi,
194 WSI_TOKEN_HTTP_SERVER,
195 (unsigned char *)"libwebsockets",
198 if (lws_add_http_header_by_token(context, wsi,
199 WSI_TOKEN_HTTP_CONTENT_TYPE,
200 (unsigned char *)"image/jpeg",
203 if (lws_add_http_header_content_length(context, wsi,
204 stat_buf.st_size, &p, end))
206 if (lws_finalize_http_header(context, wsi, &p, end))
210 * send the http headers...
211 * this won't block since it's the first payload sent
212 * on the connection since it was established
213 * (too small for partial)
215 * Notice they are sent using LWS_WRITE_HTTP_HEADERS
216 * which also means you can't send body too in one step,
217 * this is mandated by changes in HTTP2
221 buffer + LWS_SEND_BUFFER_PRE_PADDING,
222 p - (buffer + LWS_SEND_BUFFER_PRE_PADDING),
223 LWS_WRITE_HTTP_HEADERS);
230 * book us a LWS_CALLBACK_HTTP_WRITEABLE callback
232 lws_callback_on_writable(context, wsi);
236 /* if not, send a file the easy way */
237 strcpy(buf, resource_path);
238 if (strcmp(in, "/")) {
239 if (*((const char *)in) != '/')
241 strncat(buf, in, sizeof(buf) - strlen(resource_path));
242 } else /* default file to serve */
243 strcat(buf, "/test.html");
244 buf[sizeof(buf) - 1] = '\0';
246 /* refuse to serve files we don't understand */
247 mimetype = get_mimetype(buf);
249 lwsl_err("Unknown mimetype for %s\n", buf);
250 lws_return_http_status(context, wsi,
251 HTTP_STATUS_UNSUPPORTED_MEDIA_TYPE, NULL);
255 /* demostrates how to set a cookie on / */
257 other_headers = NULL;
259 if (!strcmp((const char *)in, "/") &&
260 !lws_hdr_total_length(wsi, WSI_TOKEN_HTTP_COOKIE)) {
261 /* this isn't very unguessable but it'll do for us */
262 gettimeofday(&tv, NULL);
263 n = sprintf(b64, "test=LWS_%u_%u_COOKIE;Max-Age=360000",
264 (unsigned int)tv.tv_sec,
265 (unsigned int)tv.tv_usec);
267 p = (unsigned char *)leaf_path;
269 if (lws_add_http_header_by_name(context, wsi,
270 (unsigned char *)"set-cookie:",
271 (unsigned char *)b64, n, &p,
272 (unsigned char *)leaf_path + sizeof(leaf_path)))
274 n = (char *)p - leaf_path;
275 other_headers = leaf_path;
278 n = lws_serve_http_file(context, wsi, buf,
279 mimetype, other_headers, n);
280 if (n < 0 || ((n > 0) && lws_http_transaction_completed(wsi)))
281 return -1; /* error or can't reuse connection: close the socket */
284 * notice that the sending of the file completes asynchronously,
285 * we'll get a LWS_CALLBACK_HTTP_FILE_COMPLETION callback when
291 case LWS_CALLBACK_HTTP_BODY:
292 strncpy(buf, in, 20);
297 lwsl_notice("LWS_CALLBACK_HTTP_BODY: %s... len %d\n",
298 (const char *)buf, (int)len);
302 case LWS_CALLBACK_HTTP_BODY_COMPLETION:
303 lwsl_notice("LWS_CALLBACK_HTTP_BODY_COMPLETION\n");
304 /* the whole of the sent body arrived, close or reuse the connection */
305 lws_return_http_status(context, wsi,
306 HTTP_STATUS_OK, NULL);
309 case LWS_CALLBACK_HTTP_FILE_COMPLETION:
312 case LWS_CALLBACK_HTTP_WRITEABLE:
314 * we can send more of whatever it is we were sending
317 /* we'd like the send this much */
318 n = sizeof(buffer) - LWS_SEND_BUFFER_PRE_PADDING;
320 /* but if the peer told us he wants less, we can adapt */
321 m = lws_get_peer_write_allowance(wsi);
323 /* -1 means not using a protocol that has this info */
325 /* right now, peer can't handle anything */
328 if (m != -1 && m < n)
329 /* he couldn't handle that much */
332 n = read(pss->fd, buffer + LWS_SEND_BUFFER_PRE_PADDING,
334 /* problem reading, close conn */
337 /* sent it all, close conn */
341 * To support HTTP2, must take care about preamble space
343 * identification of when we send the last payload frame
344 * is handled by the library itself if you sent a
345 * content-length header
348 buffer + LWS_SEND_BUFFER_PRE_PADDING,
351 /* write failed, close conn */
355 * http2 won't do this
358 /* partial write, adjust */
359 if (lseek(pss->fd, m - n, SEEK_CUR) < 0)
362 if (m) /* while still active, extend timeout */
364 PENDING_TIMEOUT_HTTP_CONTENT, 5);
366 /* if we have indigestion, let him clear it before eating more */
367 if (lws_partial_buffered(wsi))
370 } while (!lws_send_pipe_choked(wsi));
373 lws_callback_on_writable(context, wsi);
376 /* true if still partial pending */
377 if (lws_partial_buffered(wsi)) {
378 lws_callback_on_writable(context, wsi);
389 * callback for confirming to continue with client IP appear in
390 * protocol 0 callback since no websocket protocol has been agreed
391 * yet. You can just ignore this if you won't filter on client IP
392 * since the default uhandled callback return is 0 meaning let the
393 * connection continue.
395 case LWS_CALLBACK_FILTER_NETWORK_CONNECTION:
397 /* if we returned non-zero from here, we kill the connection */
401 * callbacks for managing the external poll() array appear in
402 * protocol 0 callback
405 case LWS_CALLBACK_LOCK_POLL:
407 * lock mutex to protect pollfd state
408 * called before any other POLL related callback
409 * if protecting wsi lifecycle change, len == 1
411 test_server_lock(len);
414 case LWS_CALLBACK_UNLOCK_POLL:
416 * unlock mutex to protect pollfd state when
417 * called after any other POLL related callback
418 * if protecting wsi lifecycle change, len == 1
420 test_server_unlock(len);
424 case LWS_CALLBACK_ADD_POLL_FD:
426 if (count_pollfds >= max_poll_elements) {
427 lwsl_err("LWS_CALLBACK_ADD_POLL_FD: too many sockets to track\n");
431 fd_lookup[pa->fd] = count_pollfds;
432 pollfds[count_pollfds].fd = pa->fd;
433 pollfds[count_pollfds].events = pa->events;
434 pollfds[count_pollfds++].revents = 0;
437 case LWS_CALLBACK_DEL_POLL_FD:
438 if (!--count_pollfds)
440 m = fd_lookup[pa->fd];
441 /* have the last guy take up the vacant slot */
442 pollfds[m] = pollfds[count_pollfds];
443 fd_lookup[pollfds[count_pollfds].fd] = m;
446 case LWS_CALLBACK_CHANGE_MODE_POLL_FD:
447 pollfds[fd_lookup[pa->fd]].events = pa->events;
451 case LWS_CALLBACK_GET_THREAD_ID:
453 * if you will call "lws_callback_on_writable"
454 * from a different thread, return the caller thread ID
455 * here so lws can use this information to work out if it
456 * should signal the poll() loop to exit and restart early
459 /* return pthread_getthreadid_np(); */
469 /* if we're on HTTP1.1 or 2.0, will keep the idle connection alive */
471 if (lws_http_transaction_completed(wsi))