blob: 74151afe8255e26e3d135434b234ab2b6f2b647f [file] [log] [blame]
Andy Greena35c86f2013-01-31 10:16:44 +08001Changelog
2---------
3
Andy Greene6bd6292017-07-28 14:13:42 +08004v2.3.0
5======
6
7 - ESP32 OpenSSL support for client and server
8
9 - ESP32 4 x WLAN credential slots may be configured
10
11 - Libevent event loop support
12
13 - SOCKS5 proxy support
14
15 - lws_meta protocol for websocket connection multiplexing
16
17 - lws_vhost_destroy() added... allows dynamic removal of listening
18 vhosts. Vhosts with shared listen sockets adopt the listen socket
19 automatically if the owner is destroyed.
20
21 - IPv6 on Windows
22
23 - Improved CGI handling suitable for general CGI scripting, eg, PHP
24
25 - Convert even the "old style" test servers to use statically included
26 plugin sources
27
28 - LWS_WITH_STATS cmake option dumps resource usage and timing information
29 every few seconds to debug log, including latency information about
30 delay from asking for writeable callback to getting it
31
32 - Large (> 2GB) files may be served
33
34 - LWS_WITH_HTTP_PROXY Cmake option adds proxying mounts
35
36 - Workaround for libev build by disabling -Werror on the test app
37
38 - HTTP2 support disabled since no way to serve websockets on it
39
40
Andy Green6be573f2017-03-06 15:35:45 +080041v2.2.0
42======
43
44Major new features
45
46 - A mount can be protected by Basic Auth... in lwsws it looks like this
47
48 ```
49{
50 "mountpoint": "/basic-auth",
51 "origin": "file://_lws_ddir_/libwebsockets-test-server/private",
52 "basic-auth": "/var/www/balogins-private"
53}
54```
55
56The text file named in `basic-auth` contains user:password information
57one per line.
58
59See README.lwsws.md for more information.
60
61 - RFC7233 RANGES support in lws server... both single and multipart.
62 This allows seeking for multimedia file serving and download resume.
63 It's enabled by default but can be disabled by CMake option.
64
65 - On Linux, lwsws can reload configuration without dropping ongoing
66 connections, when sent a SIGHUP. The old configuration drops its
67 listen sockets so the new configuration can listen on them.
68 New connections connect to the server instance with the new
69 configuration. When all old connections eventually close, the old
70 instance automatically exits. This is equivalent to
71 `systemctl reload apache`
72
73 - New `adopt` api allow adoption including SSL negotiation and
74 for raw sockets and file descriptors.
75
76 - Chunked transfer encoding supported for client and server
77
78 - Adaptations to allow operations inside OPTEE Secure World
79
80 - ESP32 initial port - able to do all test server functions. See
81 README.build.md
82
83 - Serving gzipped files from inside a ZIP file is supported... this
84 includes directly serving the gzipped content if the client
85 indicated it could accept it (ie, almost all browsers) saving
86 bandwidth and time. For clients that can't accept it, lws
87 automatically decompresses and serves the content in memory-
88 efficient chunks. Only a few hundred bytes of heap are needed
89 to serve any size file from inside the zip. See README.coding.md
90
91 - RAW file descriptors may now be adopted into the lws event loop,
92 independent of event backend (including poll service).
93 See README.coding.md
94
95 - RAW server socket descriptors may now be enabled on the vhost if
96 the first thing sent on the connection is not a valid http method.
97 The user code can associate these with a specific protocol per
98 vhost, and RAW-specific callbacks appear there for creation, rx,
99 writable and close. See libwebsockets-test-server-v2.0 for an example.
100 See README.coding.md
101
102 - RAW client connections are now possible using the method "RAW".
103 After connection, the socket is associated to the protocol
104 named in the client connection info and RAW-specific callbacks
105 appear there for creation, rx, writable and close.
106 See libwebsockets-test-client (with raw://) for an example.
107 See README.coding.md
108
109
Andy Green73557502016-10-06 21:48:20 +0800110v2.1.0
111======
112
113Major new features
114
115 - Support POST arguments, including multipart and file attachment
116
117 - Move most of lwsws into lws, make the stub CC0
118
119 - Add loopback test plugin to confirm client ws / http coexistence
120
121 - Integrate lwsws testing on Appveyor (ie, windows)
122
123 - Introduce helpers for sql, urlencode and urldecode sanitation
124
125 - Introduce LWS_CALLBACK_HTTP_BIND_PROTOCOL / DROP_PROTOCOL that
126 are compatible with http:/1.1 pipelining and different plugins
127 owning different parts of the URL space
128
129 - lwsgs - Generic Sessions plugin supports serverside sessions,
130 cookies, hashed logins, forgot password etc
131
132 - Added APIs for sending email to SMTP servers
133
134 - Messageboard example plugin for lwsgs
135
136 - Automatic PING sending at fixed intervals and close if no response
137
138 - Change default header limit in ah to 4096 (from 1024)
139
140 - Add SNI matching for wildcards if no specific wildcard vhost name match
141
142 - Convert docs to Doxygen
143
144 - ESP8266 support ^^
145
Enno Boland7731a3e2016-05-05 22:08:41 +0200146Fixes
147-----
148
Andy Green73557502016-10-06 21:48:20 +0800149See git log v2.0.0..
Enno Boland7731a3e2016-05-05 22:08:41 +0200150
Andy Greenfb8be052016-05-12 19:39:29 +0800151
Enno Boland7731a3e2016-05-05 22:08:41 +0200152
Andy Green55006432016-05-05 09:40:18 +0800153v2.0.0
154======
155
156Summary
157-------
158
159 - There are only api additions, the api is compatible with v1.7.x. But
160 there is necessarily an soname bump to 8.
161
162 - If you are using lws client, you mainly need to be aware the option
163 LWS_SERVER_OPTION_DO_SSL_GLOBAL_INIT is needed at context-creation time
164 if you will use SSL.
165
166 - If you are using lws for serving, the above is also true but there are
167 many new features to simplify your code (and life). There is a
168 summany online here
169
170 https://libwebsockets.org/lws-2.0-new-features.html
171
172 but basically the keywords are vhosts, mounts and plugins. You can now
173 do the web serving part from lws without any user callback code at all.
174 See ./test-server/test-server-v2.0.c for an example, it has no user
175 code for ws either since it uses the protocol plugins... that one C file
176 is all that is needed to do the whole test server function.
177
178 You now have the option to use a small generic ws-capable webserver
179 "lwsws" and write your ws part as a plugin. That eliminates even
180 cut-and-pasting the test server code and offers more configurable
181 features like control over http cacheability in JSON.
182
183
Andy Green0c3cc2e2016-02-20 09:12:52 +0800184Fixes
185-----
186
Andy Green55006432016-05-05 09:40:18 +0800187These are already in 1.7.x series
188
Andy Green0c3cc2e2016-02-20 09:12:52 +08001891) MAJOR (Windows-only) fix assert firing
190
1912) MAJOR http:/1.1 connections handled by lws_return_http_status() did not
192get sent a content-length resulting in the link hanging until the peer closed
193it. attack.sh updated to add a test for this.
194
Andy Green26d42492016-02-24 12:40:21 +08001953) MINOR An error about hdr struct in _lws_ws_related is corrected, it's not
196known to affect anything until after it was fixed
197
Andy Green5c0bcf42016-02-24 21:27:46 +08001984) MINOR During the close shutdown wait state introduced at v1.7, if something
199requests callback on writeable for the socket it will busywait until the
200socket closes
201
Andy Greendbfbbb42016-02-24 20:58:19 +08002025) MAJOR Although the test server has done it for a few versions already, it
203is now required for the user code to explicitly call
204
205 if (lws_http_transaction_completed(wsi))
206 return -1;
207
208when it finishes replying to a transaction in http. Previously the library
209did it for you, but that disallowed large, long transfers with multiple
210trips around the event loop (and cgi...).
211
Andy Green4ba798d2016-02-25 21:50:49 +08002126) MAJOR connections on ah waiting list that closed did not get removed from
213the waiting list...
214
Andy Green83af28a2016-02-28 10:55:31 +08002157) MAJOR since we added the ability to hold an ah across http keepalive
216transactions where more headers had already arrived, we broke the ability
217to tell if more headers had arrived. Result was if the browser didn't
218close the keepalive, we retained ah for the lifetime of the keepalive,
219using up the pool.
220
Andy Green442e1c82016-02-29 10:10:42 +08002218) MAJOR windows-only-POLLHUP was not coming
222
Andy Green4f5ebec2016-03-09 23:13:31 +08002239) Client should not send ext hdr if no exts
Andy Greendbfbbb42016-02-24 20:58:19 +0800224
Andy Green0c3cc2e2016-02-20 09:12:52 +0800225Changes
226-------
227
2281) MINOR test-server gained some new switches
229
230 -C <file> use external SSL cert file
231 -K <file> use external SSL key file
232 -A <file> use external SSL CA cert file
233
234 -u <uid> set effective uid
235 -g <gid> set effective gid
236
237together you can use them like this to have the test-server work with the
238usual purchased SSL certs from an official CA.
239
240 --ssl -C your.crt -K your.key -A your.cer -u 99 -g 99
241
2422) MINOR the OpenSSL magic to setup ECDH cipher usage is implemented in the
243library, and the ciphers restricted to use ECDH only.
244Using this, the lws test server can score an A at SSLLABS test
245
2463) MINOR STS (SSL always) header is added to the test server if you use --ssl. With
247that, we score A+ at SSLLABS test
248
2494) MINOR daemonize function (disabled at cmake by default) is updated to work
250with systemd
251
2525) MINOR example systemd .service file now provided for test server
253(not installed by default)
254
Andy Green0ad1a6e2016-02-20 14:05:55 +08002556) test server html is updated with tabs and a new live server monitoring
256feature. Input sanitization added to the js.
257
Andy Green2d8d35a2016-02-29 14:19:16 +08002587) client connections attempted when no ah is free no longer fail, they are
259just deferred until an ah becomes available.
260
Andy Greena661ee52016-02-29 13:18:30 +08002618) The test client pays attention to if you give it an http:/ or https://
262protocol string to its argument in URL format. If so, it stays in http[s]
263client mode and doesn't upgrade to ws[s], allowing you to do generic http client
Andy Green5c8906e2016-03-13 16:44:19 +0800264operations. Receiving transfer-encoding: chunked is supported.
Andy Greena661ee52016-02-29 13:18:30 +0800265
Andy Green1e5a9ad2016-03-20 11:59:53 +08002669) If you enable -DLWS_WITH_HTTP_PROXY=1 at cmake, the test server has a
267new URI path http://localhost:7681/proxytest If you visit here, a client
268connection to http://example.com:80 is spawned, and the results piped on
269to your original connection.
270
27110) Also with LWS_WITH_HTTP_PROXY enabled at cmake, lws wants to link to an
272additional library, "libhubbub". This allows lws to do html rewriting on the
273fly, adjusting proxied urls in a lightweight and fast way.
Andy Greenfb5f33b2016-03-01 07:19:01 +0800274
Andy Greenc6fd3602016-03-23 09:22:11 +080027511) There's a new context creation flag LWS_SERVER_OPTION_DO_SSL_GLOBAL_INIT,
276this is included automatically if you give any other SSL-related option flag.
277If you give no SSL-related option flag, nor this one directly, then even
278though SSL support may be compiled in, it is never initialized nor used for the
279whole lifetime of the lws context.
280
281Conversely in order to prepare the context to use SSL, even though, eg, you
282are not listening on SSL but will use SSL client connections later, you must
283give this flag explicitly to make sure SSL is initialized.
284
Andy Green2d8d35a2016-02-29 14:19:16 +0800285
Andy Greend7fddad2016-02-18 20:36:55 +0800286User API additions
287------------------
288
Andy Green0c3cc2e2016-02-20 09:12:52 +08002891) MINOR APIBREAK There's a new member in struct lws_context_creation_info, ecdh_curve,
Andy Greend7fddad2016-02-18 20:36:55 +0800290which lets you set the name of the ECDH curve OpenSSL should use. By
291default (if you leave ecdh_curve NULL) it will use "prime256v1"
292
Andy Green51d9afa2016-02-24 11:05:56 +08002932) MINOR NEWAPI It was already possible to adopt a foreign socket that had not
294been read from using lws_adopt_socket() since v1.7. Now you can adopt a
295partially-used socket if you don't need SSL, by passing it what you read
296so it can drain that before reading from the socket.
297
298LWS_VISIBLE LWS_EXTERN struct lws *
299lws_adopt_socket_readbuf(struct lws_context *context, lws_sockfd_type accept_fd,
300 const char *readbuf, size_t len);
Andy Greend7fddad2016-02-18 20:36:55 +0800301
Andy Green6a8099b2016-02-21 21:25:48 +08003023) MINOR NEWAPI CGI type "network io" subprocess execution is now possible from
303a simple api.
304
305LWS_VISIBLE LWS_EXTERN int
Andy Green1a138852016-03-20 11:55:25 +0800306lws_cgi(struct lws *wsi, char * const *exec_array, int script_uri_path_len,
307 int timeout_secs);
Andy Green6a8099b2016-02-21 21:25:48 +0800308
309LWS_VISIBLE LWS_EXTERN int
310lws_cgi_kill(struct lws *wsi);
311
312To use it, you must first set the cmake option
313
314$ cmake .. -DLWS_WITH_CGI=1
315
316See test-server-http.c and test server path
317
318http://localhost:7681/cgitest
319
320stdin gets http body, you can test it with wget
321
322$ echo hello > hello.txt
323$ wget http://localhost:7681/cgitest --post-file=hello.txt -O- --quiet
324lwstest script
325read="hello"
326
Andy Green1a138852016-03-20 11:55:25 +0800327The test script returns text/html table showing /proc/meminfo. But the cgi
328support is complete enough to run cgit cgi.
329
Andy Greend61bed32016-02-25 15:01:55 +08003304) There is a helper api for forming logging timestamps
331
332LWS_VISIBLE int
333lwsl_timestamp(int level, char *p, int len)
334
335this generates this kind of timestamp for use as logging preamble
336
337lwsts[13116]: [2016/01/25 14:52:52:8386] NOTICE: Initial logging level 7
338
Andy Greena661ee52016-02-29 13:18:30 +08003395) struct lws_client_connect_info has a new member
340
341 const char *method
342
343If it's NULL, then everything happens as before, lws_client_connect_via_info()
344makes a ws or wss connection to the address given.
345
346If you set method to a valid http method like "GET", though, then this method
347is used and the connection remains in http[s], it's not upgraded to ws[s].
348
349So with this, you can perform http[s] client operations as well as ws[s] ones.
350
351There are 4 new related callbacks
352
353 LWS_CALLBACK_ESTABLISHED_CLIENT_HTTP = 44,
354 LWS_CALLBACK_CLOSED_CLIENT_HTTP = 45,
355 LWS_CALLBACK_RECEIVE_CLIENT_HTTP = 46,
356 LWS_CALLBACK_COMPLETED_CLIENT_HTTP = 47,
Andy Green6a8099b2016-02-21 21:25:48 +0800357
Andy Green494418a2016-03-02 09:17:22 +08003586) struct lws_client_connect_info has a new member
359
360 const char *parent_wsi
361
362if non-NULL, the client wsi is set to be a child of parent_wsi. This ensures
363if parent_wsi closes, then the client child is closed just before.
364
Andy Green0f9904f2016-03-17 15:26:49 +08003657) If you're using SSL, there's a new context creation-time option flag
366LWS_SERVER_OPTION_REDIRECT_HTTP_TO_HTTPS. If you give this, non-ssl
367connections to the server listen port are accepted and receive a 301
368redirect to / on the same host and port using https://
369
Andy Greenc5376b12016-04-08 09:45:49 +08003708) User code may set per-connection extension options now, using a new api
371"lws_set_extension_option()".
372
373This should be called from the ESTABLISHED callback like this
374
375 lws_set_extension_option(wsi, "permessage-deflate",
376 "rx_buf_size", "12"); /* 1 << 12 */
377
378If the extension is not active (missing or not negotiated for the
379connection, or extensions are disabled on the library) the call is
380just returns -1. Otherwise the connection's extension has its
381named option changed.
382
383The extension may decide to alter or disallow the change, in the
384example above permessage-deflate restricts the size of his rx
385output buffer also considering the protocol's rx_buf_size member.
386
387
Andy Greencd0c6962016-03-28 10:12:37 +0800388New application lwsws
389---------------------
390
391A libwebsockets-based general webserver is built by default now, lwsws.
392
393It's configured by JSON, by default in
394
395 /etc/lwsws/conf
396
397which contains global lws context settings like this
398
399{
400 "global": {
401 "uid": "99",
402 "gid": "99",
403 "interface": "eth0",
404 "count-threads": "1"
405 }
406}
407
408 /etc/lwsws/conf.d/*
409
410which contains zero or more files describing vhosts, like this
411
412{
413 "vhosts": [
414 { "name": "warmcat.com",
415 "port": "443",
416 "host-ssl-key": "/etc/pki/tls/private/warmcat.com.key",
417 "host-ssl-cert": "/etc/pki/tls/certs/warmcat.com.crt",
418 "host-ssl-ca": "/etc/pki/tls/certs/warmcat.com.cer",
419 "mounts": [
420 { "/": [
421 { "home": "file:///var/www/warmcat.com" },
422 { "default": "index.html" }
423 ]
424 }
425 ]
426 }
427 ]
428}
429
430
Andy Green0c3cc2e2016-02-20 09:12:52 +0800431
Andy Green9c60ed92016-02-16 12:32:18 +0800432v1.7.0
433======
434
Andy Green67112662016-01-11 11:34:01 +0800435Extension Changes
436-----------------
437
4381) There is now a "permessage-deflate" / RFC7692 implementation. It's very
439similar to "deflate-frame" we have offered for a long while; deflate-frame is
440now provided as an alias of permessage-deflate.
441
442The main differences are that the new permessage-deflate implementation:
443
444 - properly performs streaming respecting input and output buffer limits. The
445 old deflate-frame implementation could only work on complete deflate input
446 and produce complete inflate output for each frame. The new implementation
447 only mallocs buffers at initialization.
448
449 - goes around the event loop after each input package is processed allowing
450 interleaved output processing. The RX flow control api can be used to
451 force compressed input processing to match the rate of compressed output
452 processing (test--echo shows an example of how to do this).
453
454 - when being "deflate-frame" for compatibility he uses the same default zlib
455 settings as the old "deflate-frame", but instead of exponentially increasing
456 malloc allocations until the whole output will fit, he observes the default
457 input and output chunking buffer sizes of "permessage-deflate", that's
458 1024 in and 1024 out at a time.
459
4602) deflate-stream has been disabled for many versions (for over a year) and is
461now removed. Browsers are now standardizing on "permessage-deflate" / RFC7692
462
4633) struct lws_extension is simplified, and lws extensions now have a public
464api (their callback) for use in user code to compose extensions and options
465the user code wants. lws_get_internal_exts() is deprecated but kept around
466as a NOP. The changes allow one extension implementation to go by different
467names and allows the user client code to control option offers per-ext.
468
469The test client and server are updated to use the new way. If you use
470the old way it should still work, but extensions will be disabled until you
471update your code.
472
473Extensions are now responsible for allocating and per-instance private struct
474at instance construction time and freeing it when the instance is destroyed.
475Not needing to know the size means the extension's struct can be opaque
476to user code.
477
478
Andy Green3df58002015-12-25 12:44:12 +0800479User api additions
480------------------
481
Andy Green200a6a22016-02-15 20:36:02 +08004821) The info struct gained three new members
Andy Green3df58002015-12-25 12:44:12 +0800483
484 - max_http_header_data: 0 for default (1024) or set the maximum amount of known
485 http header payload that lws can deal with. Payload in unknown http
486 headers is dropped silently. If for some reason you need to send huge
487 cookies or other HTTP-level headers, you can now increase this at context-
488 creation time.
489
490 - max_http_header_pool: 0 for default (16) or set the maximum amount of http
491 headers that can be tracked by lws in this context. For the server, if
492 the header pool is completely in use then accepts on the listen socket
493 are disabled until one becomes free. For the client, if you simultaneously
494 have pending connects for more than this number of client connections,
495 additional connects will fail until some of the pending connections timeout
496 or complete.
497
Andy Green200a6a22016-02-15 20:36:02 +0800498 - timeout_secs: 0 for default (currently 20s), or set the library's
499 network activity timeout to the given number of seconds
500
Andy Green3df58002015-12-25 12:44:12 +0800501HTTP header processing in lws only exists until just after the first main
502callback after the HTTP handshake... for ws connections that is ESTABLISHED and
503for HTTP connections the HTTP callback.
504
505So these settings are not related to the maximum number of simultaneous
Andy Green3246ebb2015-12-26 12:03:06 +0800506connections, but the number of HTTP handshakes that may be expected or ongoing,
Andy Green3df58002015-12-25 12:44:12 +0800507or have just completed, at one time. The reason it's useful is it changes the
508memory allocation for header processing to be one-time at context creation
509instead of every time there is a new connection, and gives you control over
510the peak allocation.
511
512Setting max_http_header_pool to 1 is fine it will just queue incoming
513connections before the accept as necessary, you can still have as many
Andy Green5b85e392015-12-26 13:23:11 +0800514simultaneous post-header connections as you like. Since the http header
515processing is completed and the allocation released after ESTABLISHED or the
516HTTP callback, even with a pool of 1 many connections can be handled rapidly.
517
Andy Green066a7a12015-12-26 15:47:06 +08005182) There is a new callback that allows the user code to get acccess to the
519optional close code + aux data that may have been sent by the peer.
520
521LWS_CALLBACK_WS_PEER_INITIATED_CLOSE:
522 The peer has sent an unsolicited Close WS packet. @in and
523 @len are the optional close code (first 2 bytes, network
524 order) and the optional additional information which is not
525 defined in the standard, and may be a string or non-human-
526 readble data.
527 If you return 0 lws will echo the close and then close the
Andy Green67112662016-01-11 11:34:01 +0800528 connection. If you return nonzero lws will just close the
529 connection.
Andy Green066a7a12015-12-26 15:47:06 +0800530
531As usual not handling it does the right thing, if you're not interested in it
532just ignore it.
533
534The test server has "open and close" testing buttons at the bottom, if you
535open and close that connection, on close it will send a close code 3000 decimal
536and the string "Bye!" as the aux data.
537
538The test server dumb-increment callback handles this callback reason and prints
539
540lwsts[15714]: LWS_CALLBACK_WS_PEER_INITIATED_CLOSE: len 6
541lwsts[15714]: 0: 0x0B
542lwsts[15714]: 1: 0xB8
543lwsts[15714]: 2: 0x42
544lwsts[15714]: 3: 0x79
545lwsts[15714]: 4: 0x65
546lwsts[15714]: 5: 0x21
547
Andy Green1fb95e82015-12-26 17:20:34 +08005483) There is a new API to allow the user code to control the content of the
549close frame sent when about to return nonzero from the user callback to
550indicate the connection should close.
551
552/**
553 * lws_close_reason - Set reason and aux data to send with Close packet
554 * If you are going to return nonzero from the callback
555 * requesting the connection to close, you can optionally
556 * call this to set the reason the peer will be told if
557 * possible.
558 *
559 * @wsi: The websocket connection to set the close reason on
560 * @status: A valid close status from websocket standard
561 * @buf: NULL or buffer containing up to 124 bytes of auxiliary data
562 * @len: Length of data in @buf to send
563 */
564LWS_VISIBLE LWS_EXTERN void
565lws_close_reason(struct lws *wsi, enum lws_close_status status,
566 unsigned char *buf, size_t len);
567
568An extra button is added to the "open and close" test server page that requests
569that the test server close the connection from his end.
570
571The test server code will do so by
572
573 lws_close_reason(wsi, LWS_CLOSE_STATUS_GOINGAWAY,
574 (unsigned char *)"seeya", 5);
575 return -1;
576
577The browser shows the close code and reason he received
578
579websocket connection CLOSED, code: 1001, reason: seeya
580
Vijay Khurdiyae73d4462016-01-15 16:21:51 +08005814) There's a new context creation time option flag
Andy Green44a7f652015-12-29 11:20:09 +0800582
583LWS_SERVER_OPTION_VALIDATE_UTF8
584
585if you set it in info->options, then TEXT and CLOSE frames will get checked to
586confirm that they contain valid UTF-8. If they don't, the connection will get
587closed by lws.
588
Vijay Khurdiyae73d4462016-01-15 16:21:51 +08005895) ECDH Certs are now supported. Enable the CMake option
590
591cmake .. -DLWS_SSL_SERVER_WITH_ECDH_CERT=1
592
593**and** the info->options flag
594
Andy Greenff696482016-02-17 07:46:27 +0800595LWS_SERVER_OPTION_SSL_ECDH
Vijay Khurdiyae73d4462016-01-15 16:21:51 +0800596
597to build in support and select it at runtime.
598
Andy Greenff696482016-02-17 07:46:27 +08005996) There's a new api lws_parse_uri() that simplifies chopping up
Andy Green809d69a2016-01-14 11:37:56 +0800600https://xxx:yyy/zzz uris into parts nicely. The test client now uses this
Andy Greend3a55052016-01-19 03:34:24 +0800601to allow proper uris as well as the old address style.
602
6037) SMP support is integrated into LWS without any internal threading. It's
604very simple to use, libwebsockets-test-server-pthread shows how to do it,
605use -j <n> argument there to control the number of service threads up to 32.
606
607Two new members are added to the info struct
608
609 unsigned int count_threads;
610 unsigned int fd_limit_per_thread;
611
612leave them at the default 0 to get the normal singlethreaded service loop.
613
614Set count_threads to n to tell lws you will have n simultaneous service threads
615operating on the context.
616
617There is still a single listen socket on one port, no matter how many
618service threads.
619
620When a connection is made, it is accepted by the service thread with the least
621connections active to perform load balancing.
622
623The user code is responsible for spawning n threads running the service loop
624associated to a specific tsi (Thread Service Index, 0 .. n - 1). See
625the libwebsockets-test-server-pthread for how to do.
626
627If you leave fd_limit_per_thread at 0, then the process limit of fds is shared
628between the service threads; if you process was allowed 1024 fds overall then
629each thread is limited to 1024 / n.
630
631You can set fd_limit_per_thread to a nonzero number to control this manually, eg
632the overall supported fd limit is less than the process allowance.
633
634You can control the context basic data allocation for multithreading from Cmake
635using -DLWS_MAX_SMP=, if not given it's set to 32. The serv_buf allocation
636for the threads (currently 4096) is made at runtime only for active threads.
637
638Because lws will limit the requested number of actual threads supported
639according to LWS_MAX_SMP, there is an api lws_get_count_threads(context) to
640discover how many threads were actually allowed when the context was created.
641
642It's required to implement locking in the user code in the same way that
643libwebsockets-test-server-pthread does it, for the FD locking callbacks.
644
Andy Greenba119e92016-01-26 21:40:32 +0800645If LWS_MAX_SMP=1, then there is no code related to pthreads compiled in the
646library. If more than 1, a small amount of pthread mutex code is built into
647the library.
Andy Green809d69a2016-01-14 11:37:56 +0800648
Andy Greenba119e92016-01-26 21:40:32 +08006498) New API
650
651LWS_VISIBLE struct lws *
652lws_adopt_socket(struct lws_context *context, lws_sockfd_type accept_fd)
653
654allows foreign sockets accepted by non-lws code to be adopted by lws as if they
655had just been accepted by lws' own listen socket.
Andy Green3df58002015-12-25 12:44:12 +0800656
Danomi Czaski4e9c7f32016-01-28 09:40:53 +08006579) X-Real-IP: header has been added as WSI_TOKEN_HTTP_X_REAL_IP
658
Andy Green86ed65f2016-02-14 09:27:41 +080065910) Libuv support is added, there are new related user apis
660
661typedef void (lws_uv_signal_cb_t)(uv_loop_t *l, uv_signal_t *w, int revents);
662
663LWS_VISIBLE LWS_EXTERN int
664lws_uv_sigint_cfg(struct lws_context *context, int use_uv_sigint,
665 lws_uv_signal_cb_t *cb);
666
667LWS_VISIBLE LWS_EXTERN int
668lws_uv_initloop(struct lws_context *context, uv_loop_t *loop, int tsi);
669
670LWS_VISIBLE void
671lws_uv_sigint_cb(uv_loop_t *loop, uv_signal_t *watcher, int revents);
672
673and CMAKE option
674
675LWS_WITH_LIBUV
676
Danomi Czaski4e9c7f32016-01-28 09:40:53 +0800677
Andy Green3246ebb2015-12-26 12:03:06 +0800678User api changes
679----------------
680
6811) LWS_SEND_BUFFER_POST_PADDING is now 0 and deprecated. You can remove it; if
682you still use it, obviously it does nothing. Old binary code with nonzero
683LWS_SEND_BUFFER_POST_PADDING is perfectly compatible, the old code just
Andy Green5b85e392015-12-26 13:23:11 +0800684allocated a buffer bigger than the library is going to use.
Andy Green3246ebb2015-12-26 12:03:06 +0800685
Andy Green5b85e392015-12-26 13:23:11 +0800686The example apps no longer use LWS_SEND_BUFFER_POST_PADDING.
Andy Green3246ebb2015-12-26 12:03:06 +0800687
Andy Green4e2ac762015-12-26 20:26:11 +0800688The only path who made use of it was sending with LWS_WRITE_CLOSE --->
Andy Green3246ebb2015-12-26 12:03:06 +0800689
Andy Green1fb95e82015-12-26 17:20:34 +08006902) Because of lws_close_reason() formalizing handling close frames,
691LWS_WRITE_CLOSE is removed from libwebsockets.h. It was only of use to send
692close frames...close frame content should be managed using lws_close_reason()
693now.
694
Andy Green44a7f652015-12-29 11:20:09 +08006953) We check for invalid CLOSE codes and complain about protocol violation in
696our close code. But it changes little since we were in the middle of closing
697anyway.
698
6994) zero-length RX frames and zero length TX frames are now allowed.
700
7015) Pings and close used to be limited to 124 bytes, the correct limit is 125
702so that is now also allowed.
Andy Green3246ebb2015-12-26 12:03:06 +0800703
Steffen Vogelf9267172016-02-09 07:19:15 +01007046) LWS_PRE is provided as a synonym for LWS_SEND_BUFFER_PRE_PADDING, either is
Andy Green67112662016-01-11 11:34:01 +0800705valid to use now.
706
7077) There's generic support for RFC7462 style extension options built into the
708library now. As a consequence, a field "options" is added to lws_extension.
709It can be NULL if there are no options on the extension. Extension internal
710info is part of the public abi because extensions may be implemented outside
711the library.
712
Danomi Czaski4e9c7f32016-01-28 09:40:53 +08007138) WSI_TOKEN_PROXY enum was accidentally defined to collide with another token
714of value 73. That's now corrected and WSI_TOKEN_PROXY moved to his own place at
71577.
716
Andy Green86ed65f2016-02-14 09:27:41 +08007179) With the addition of libuv support, libev is not the only event loop
718library in town and his api names must be elaborated with _ev_
719
720 Callback typedef: lws_signal_cb ---> lws_ev_signal_cb_t
721 lws_sigint_cfg --> lws_ev_sigint_cfg
722 lws_initloop --> lws_ev_initloop
723 lws_sigint_cb --> lws_ev_sigint_cb
724
72510) Libev support is made compatible with multithreaded service,
726lws_ev_initloop (was lws_initloop) gets an extra argument for the
727thread service index (use 0 if you will just have 1 service thread).
728
729LWS_VISIBLE LWS_EXTERN int
Andy Greenff696482016-02-17 07:46:27 +0800730lws_ev_initloop(struct lws_context *context, ev_loop_t *loop, int tsi);
Andy Green86ed65f2016-02-14 09:27:41 +0800731
Andy Green3df58002015-12-25 12:44:12 +0800732
Andy Greenaef3dc42016-05-06 07:45:19 +0800733(for earlier changelogs, see the tagged releases)