Andy Green | a35c86f | 2013-01-31 10:16:44 +0800 | [diff] [blame] | 1 | Changelog |
| 2 | --------- |
| 3 | |
Andy Green | ac03254 | 2018-11-16 09:10:41 +0800 | [diff] [blame^] | 4 | v3.1.0 |
| 5 | ====== |
| 6 | |
Andy Green | 502130d | 2018-05-10 16:13:26 +0800 | [diff] [blame] | 7 | - CHANGE: REMOVED: lws_client_connect() and lws_client_connect_extended() |
| 8 | compatibility apis for lws_client_connect_via_info() have been marked as |
| 9 | deprecated for several versions and are now removed. Use |
Andy Green | ac03254 | 2018-11-16 09:10:41 +0800 | [diff] [blame^] | 10 | lws_client_connect_via_info() directly instead. |
Andy Green | 502130d | 2018-05-10 16:13:26 +0800 | [diff] [blame] | 11 | |
Andy Green | ac03254 | 2018-11-16 09:10:41 +0800 | [diff] [blame^] | 12 | - CHANGE: CMAKE: |
| 13 | - LWS_WITH_HTTP2: now defaults ON |
| 14 | |
| 15 | - NEW: CMAKE |
| 16 | - LWS_FOR_GITOHASHI: sets various cmake options suitable for gitohashi |
| 17 | - LWS_WITH_ASAN: for Linux, enable build with ASAN |
| 18 | |
| 19 | Don't forget LWS_WITH_DISTRO_RECOMMENDED, which enables a wide range of lws |
| 20 | options suitable for a distro build of the library. |
| 21 | |
| 22 | - NEW: lws threadpool - lightweight pool of pthreads integrated to lws wsi, with |
| 23 | all synchronization to event loop handled internally, queue for excess tasks |
| 24 | [threadpool docs](https://libwebsockets.org/git/libwebsockets/tree/lib/misc/threadpool) |
| 25 | [threadpool minimal example](https://libwebsockets.org/git/libwebsockets/tree/minimal-examples/ws-server/minimal-ws-server-threadpool) |
| 26 | Cmake config: `-DLWS_WITH_THREADPOOL=1` |
| 27 | |
| 28 | - NEW: libdbus support integrated on lws event loop |
| 29 | [lws dbus docs](https://libwebsockets.org/git/libwebsockets/tree/lib/roles/dbus) |
| 30 | [lws dbus client minimal examples](https://libwebsockets.org/git/libwebsockets/tree/minimal-examples/dbus-client) |
| 31 | [lws dbus server minimal examples](https://libwebsockets.org/git/libwebsockets/tree/minimal-examples/dbus-server) |
| 32 | Cmake config: `-DLWS_ROLE_DBUS=1` |
| 33 | |
| 34 | - NEW: lws allocated chunks (lwsac) - helpers for optimized mass allocation of small |
| 35 | objects inside a few larger malloc chunks... if you need to allocate a lot of |
| 36 | inter-related structs for a limited time, this removes per-struct allocation |
| 37 | library overhead completely and removes the need for any destruction handling |
| 38 | [lwsac docs](https://libwebsockets.org/git/libwebsockets/tree/lib/misc/lwsac) |
| 39 | [lwsac minimal example](https://libwebsockets.org/git/libwebsockets/tree/minimal-examples/api-tests/api-test-lwsac) |
| 40 | Cmake Config: `-DLWS_WITH_LWSAC=1` |
| 41 | |
| 42 | - NEW: lws tokenizer - helper api for robustly tokenizing your own strings without |
| 43 | allocating or adding complexity. Configurable by flags for common delimiter |
| 44 | sets and comma-separated-lists in the tokenizer. Detects and reports syntax |
| 45 | errors. |
| 46 | [lws_tokenize docs](https://libwebsockets.org/git/libwebsockets/tree/include/libwebsockets/lws-tokenize.h) |
| 47 | [lws_tokenize minimal example / api test](https://libwebsockets.org/git/libwebsockets/tree/minimal-examples/api-tests/api-test-lws_tokenize) |
| 48 | |
| 49 | - NEW: lws full-text search - optimized trie generation, serialization, |
| 50 | autocomplete suggestion generation and instant global search support extensible |
| 51 | to huge corpuses of UTF-8 text while remaining super lightweight on resources. |
| 52 | [full-text search docs](https://libwebsockets.org/git/libwebsockets/tree/lib/misc/fts) |
| 53 | [full-text search minimal example / api test](https://libwebsockets.org/git/libwebsockets/tree/minimal-examples/api-tests/api-test-fts) |
| 54 | [demo](https://libwebsockets.org/ftsdemo/) |
| 55 | [demo sources](https://libwebsockets.org/git/libwebsockets/tree/plugins/protocol_fulltext_demo.c) |
| 56 | Cmake config: `-DLWS_WITH_FTS=1 -DLWS_WITH_LWSAC=1` |
| 57 | |
| 58 | - NEW: gzip + brotli http server-side compression - h1 and h2 automatic advertising |
| 59 | of server compression and application to files with mimetypes "text/*", |
| 60 | "application/javascript" and "image/svg.xml". |
| 61 | Cmake config: `-DLWS_WITH_HTTP_STREAM_COMPRESSION=1`, `-DLWS_WITH_HTTP_BROTLI=1` |
| 62 | |
| 63 | - NEW: managed disk cache - API for managing a directory containing cached files |
| 64 | with hashed names, and automatic deletion of LRU files once the cache is |
| 65 | above a given limit. |
| 66 | [lws diskcache docs](https://libwebsockets.org/git/libwebsockets/tree/include/libwebsockets/lws-diskcache.h) |
| 67 | Cmake config: `-DLWS_WITH_DISKCACHE=1` |
| 68 | |
| 69 | - NEW: http reverse proxy - lws mounts support proxying h1 or h2 requests to |
| 70 | a local or remote IP, or unix domain socket over h1. This allows microservice |
| 71 | type architectures where parts of the common URL space are actually handled |
| 72 | by external processes which may be remote or on the same machine. |
| 73 | [lws gitohashi serving](https://libwebsockets.org/git/) is handled this way. |
| 74 | CMake config: `-DLWS_WITH_HTTP_PROXY=1` |
| 75 | |
| 76 | - NEW: lws_buflist - internally several types of ad-hoc malloc'd buffer have |
| 77 | been replaced by a new, exported api `struct lws_buflist`. This allows |
| 78 | multiple buffers to be chained and drawn down in strict FIFO order. |
| 79 | |
| 80 | - NEW: In the case of h1 upgrade, the connection header is checked to contain |
| 81 | "upgrade". The vhost flag LWS_SERVER_OPTION_VHOST_UPG_STRICT_HOST_CHECK |
| 82 | also causes the Host: header to be confirmed to match the vhost name and |
| 83 | listen port. |
Andy Green | 502130d | 2018-05-10 16:13:26 +0800 | [diff] [blame] | 84 | |
Andy Green | 1c08a96 | 2018-05-04 13:27:12 +0800 | [diff] [blame] | 85 | v3.0.0 |
| 86 | ====== |
| 87 | |
| 88 | - CHANGE: Clients used to call LWS_CALLBACK_CLOSED same as servers... |
| 89 | LWS_CALLBACK_CLIENT_CLOSED has been introduced and is called for clients |
| 90 | now. |
| 91 | |
| 92 | - CHANGE: LWS_CALLBACK_CLIENT_CONNECTION_ERROR used to only be directed at |
| 93 | protocols[0]. However in many cases, the protocol to bind to was provided |
| 94 | at client connection info time and the wsi bound accordingly. In those |
| 95 | cases, CONNECTION_ERROR is directed at the bound protocol, not protcols[0] |
| 96 | any more. |
| 97 | |
| 98 | - CHANGE: CMAKE: the following cmake defaults have changed with this version: |
| 99 | |
| 100 | - LWS_WITH_ZIP_FOPS: now defaults OFF |
| 101 | - LWS_WITH_RANGES: now defaults OFF |
| 102 | - LWS_WITH_ZLIB: now defaults OFF |
| 103 | - LWS_WITHOUT_EXTENSIONS: now defaults ON |
| 104 | |
| 105 | - CHANGE: REMOVED: lws_alloc_vfs_file() (read a file to malloc buffer) |
| 106 | |
| 107 | - CHANGE: REMOVED: lws_read() (no longer useful outside of lws internals) |
| 108 | |
| 109 | - CHANGE: REMOVED: ESP8266... ESP32 is now within the same price range and much |
| 110 | more performant |
| 111 | |
| 112 | - CHANGE: soname bump... don't forget to `ldconfig` |
| 113 | |
| 114 | - NEW: all event libraries support "foreign" loop integration where lws itself |
| 115 | if just a temporary user of the loop unrelated to the actual loop lifecycle. |
| 116 | |
| 117 | See `minimal-http-server-eventlib-foreign` for example code demonstrating |
| 118 | this for all the event libraries. |
| 119 | |
| 120 | Internal loop in lws is also supported and demonstrated by |
| 121 | `minimal-http-server-eventlib`. |
| 122 | |
| 123 | - NEW: ws-over-h2 support. This is a new RFC-on-the-way supported by Chrome |
| 124 | and shortly firefox that allows ws connections to be multiplexed back to the |
| 125 | server on the same tcp + tls wrapper h2 connection that the html and scripts |
| 126 | came in on. This is hugely faster that discrete connections. |
| 127 | |
| 128 | - NEW: UDP socket adoption and related event callbacks |
| 129 | |
| 130 | - NEW: Multi-client connection binding, queuing and pipelining support. |
| 131 | |
| 132 | Lws detects multiple client connections to the same server and port, and |
| 133 | optimizes how it handles them according to the server type and provided |
| 134 | flags. For http/1.0, all occur with individual parallel connections. For |
| 135 | http/1.1, you can enable keepalive pipelining, so the connections occur |
| 136 | sequentially on a single network connection. For http/2, they all occur |
| 137 | as parallel streams within a single h2 network connection. |
| 138 | |
| 139 | See minimal-http-client-multi for example code. |
| 140 | |
| 141 | - NEW: High resolution timer API for wsi, get a callback on your wsi with |
| 142 | LWS_CALLBACK_TIMER, set and reset the timer with lws_set_timer_usecs(wsi, us) |
| 143 | Actual resolution depends on event backend. Works with all backends, poll, |
| 144 | libuv, libevent, and libev. |
| 145 | |
| 146 | - NEW: Protocols can arrange vhost-protocol instance specific callbacks with |
| 147 | second resolution using `lws_timed_callback_vh_protocol()` |
| 148 | |
| 149 | - NEW: ACME client plugin for self-service TLS certificates |
| 150 | |
| 151 | - NEW: RFC7517 JSON Web Keys RFC7638 JWK thumbprint, and RFC7515 JSON Web |
| 152 | signatures support |
| 153 | |
| 154 | - NEW: lws_cancel_service() now provides a generic way to synchronize events |
| 155 | from other threads, which appear as a LWS_CALLBACK_EVENT_WAIT_CANCELLED |
| 156 | callback on all protocols. This is compatible with all the event libraries. |
| 157 | |
| 158 | - NEW: support BSD poll() where changes to the poll wait while waiting are |
| 159 | undone. |
| 160 | |
| 161 | - NEW: Introduce generic hash, hmac and RSA apis that operate the same |
| 162 | regardless of OpenSSL or mbedTLS tls backend |
| 163 | |
| 164 | - NEW: Introduce X509 element query api that works the same regardless of |
| 165 | OpenSSL or mbedTLS tls backend |
| 166 | |
| 167 | - NEW: Introduce over 30 "minimal examples" in ./minimal-examples... these |
| 168 | replace most of the old test servers |
| 169 | |
| 170 | - test-echo -> minimal-ws-server-echo and minimal-ws-client-echo |
| 171 | |
| 172 | - test-server-libuv / -libevent / -libev -> |
| 173 | minimal-https-server-eventlib / -eventlib-foreign / -eventlib-demos |
| 174 | |
| 175 | - test-server-v2.0 -> folded into all the minimal servers |
| 176 | |
| 177 | - test-server direct http serving -> minimal-http-server-dynamic |
| 178 | |
| 179 | The minimal examples allow individual standalone build using their own |
| 180 | small CMakeLists.txt. |
| 181 | |
| 182 | - NEW: lws now detects any back-to-back writes that did not go through the |
| 183 | event loop inbetween and reports them. This will flag any possibility of |
| 184 | failure rather than wait until the problem happens. |
| 185 | |
| 186 | - NEW: CMake has LWS_WITH_DISTRO_RECOMMENDED to select features that are |
| 187 | appropriate for distros |
| 188 | |
| 189 | - NEW: Optional vhost URL `error_document_404` if given causes a redirect there |
| 190 | instead of serve the default 404 page. |
| 191 | |
| 192 | - NEW: lws_strncpy() wrapper guarantees NUL in copied string even if it was |
| 193 | truncated to fit. |
| 194 | |
| 195 | - NEW: for client connections, local protocol binding name can be separated |
| 196 | from the ws subprotocol name if needed, using .local_protocol_name |
| 197 | |
| 198 | - NEW: Automatic detection of time discontiguities |
| 199 | |
| 200 | - NEW: Applies TCP_USER_TIMEOUT for Linux tcp keepalive where available |
| 201 | |
| 202 | - QA: 1600 tests run on each commit in Travis CI, including almost all |
| 203 | Autobahn in client and server mode, various h2load tests, h2spec, attack.sh |
| 204 | the minimal example selftests and others. |
| 205 | |
| 206 | - QA: fix small warnings introduced on gcc8.x (eg, Fedora 28) |
| 207 | |
| 208 | - QA: Add most of -Wextra on gcc (-Wsign-compare, -Wignored-qualifiers, |
| 209 | -Wtype-limits, -Wuninitialized) |
| 210 | |
| 211 | - QA: clean out warnings on windows |
| 212 | |
| 213 | - QA: pass all 146 h2spec tests now on strict |
| 214 | |
| 215 | - QA: introduce 35 selftests that operate different minimal examples against |
| 216 | each other and confirm the results. |
| 217 | |
| 218 | - QA: LWS_WITH_MINIMAL_EXAMPLES allows mass build of all relevant minimal- |
| 219 | examples with the LWS build, for CI and to make all the example binaries |
| 220 | available from the lws build dir ./bin |
| 221 | |
| 222 | - REFACTOR: the lws source directory layout in ./lib has been radically |
| 223 | improved, and there are now README.md files in selected subdirs with extra |
| 224 | documentation of interest to people working on lws itself. |
| 225 | |
| 226 | - REFACTOR: pipelined transactions return to the event loop before starting the |
| 227 | next part. |
| 228 | |
| 229 | - REFACTOR: TLS: replace all TLS library constants with generic LWS ones and |
| 230 | adapt all the TLS library code to translate to these common ones. |
| 231 | |
| 232 | Isolated all the tls-related private stuff in `./lib/tls/private.h`, and all |
| 233 | the mbedTLS stuff in `./lib/tls/mbedtls` + openSSL stuff in |
| 234 | `./lib/tls/openssl` |
| 235 | |
| 236 | - REFACTOR: the various kinds of wsi possible with lws have been extracted |
| 237 | from the main code and isolated into "roles" in `./lib/roles` which |
| 238 | communicate with the core code via an ops struct. Everything related to |
| 239 | ah is migrated to the http role. |
| 240 | |
| 241 | wsi modes are eliminated and replaced by the ops pointer for the role the |
| 242 | wsi is performing. Generic states for wsi are available to control the |
| 243 | lifecycle using core code. |
| 244 | |
| 245 | Adding new "roles" is now much easier with the changes and ops struct to |
| 246 | plug into. |
| 247 | |
| 248 | - REFACTOR: reduce four different kinds of buffer management in lws into a |
| 249 | generic scatter-gather struct lws_buflist. |
| 250 | |
| 251 | - REFACTOR: close notifications go through event loop |
| 252 | |
| 253 | |
Andy Green | fcf5b2c | 2017-10-16 20:09:58 +0800 | [diff] [blame] | 254 | v2.4.0 |
| 255 | ====== |
| 256 | |
| 257 | - HTTP/2 server support is now mature and usable! LWS_WITH_HTTP2=1 enables it. |
| 258 | Uses ALPN to serve HTTP/2, HTTP/1 and ws[s] connections all from the same |
| 259 | listen port seamlessly. (Requires ALPN-capable OpenSSL 1.1 or mbedTLS). |
| 260 | |
| 261 | - LWS_WITH_MBEDTLS=1 at CMake now builds and works against mbedTLS instead of |
| 262 | OpenSSL. Most things work identically, although on common targets where |
| 263 | OpenSSL has acceleration, mbedTLS is many times slower in operation. However |
| 264 | it is a lot smaller codewise. |
| 265 | |
| 266 | - Generic hash apis introduced that work the same on mbedTLS or OpenSSL backend |
| 267 | |
| 268 | - LWS_WITH_PEER_LIMITS tracks IPs across all vhosts and allows restrictions on |
| 269 | both the number of simultaneous connections and wsi in use for any single IP |
| 270 | |
| 271 | - lws_ring apis provide a generic single- or multi-tail ringbuffer... mirror |
| 272 | protocol now uses this. Features include ring elements may be sized to fit |
| 273 | structs in the ringbuffer, callback when no tail any longer needs an element |
| 274 | and it can be deleted, and zerocopy options to write new members directly |
| 275 | into the ringbuffer, and use the ringbuffer element by address too. |
| 276 | |
| 277 | - abstract ssh 2 server plugin included, with both plugin and standalone |
| 278 | demos provided. You can bind the plugin to a vhost and also serve full- |
| 279 | strength ssh from the vhost. IO from the ssh server is controlled by an |
| 280 | "ops" struct of callbacks for tx, rx, auth etc. |
| 281 | |
| 282 | - Many fixes, cleanups, source refactors and other improvements. |
| 283 | |
| 284 | |
Andy Green | e6bd629 | 2017-07-28 14:13:42 +0800 | [diff] [blame] | 285 | v2.3.0 |
| 286 | ====== |
| 287 | |
| 288 | - ESP32 OpenSSL support for client and server |
| 289 | |
| 290 | - ESP32 4 x WLAN credential slots may be configured |
| 291 | |
| 292 | - Libevent event loop support |
| 293 | |
| 294 | - SOCKS5 proxy support |
| 295 | |
| 296 | - lws_meta protocol for websocket connection multiplexing |
| 297 | |
| 298 | - lws_vhost_destroy() added... allows dynamic removal of listening |
| 299 | vhosts. Vhosts with shared listen sockets adopt the listen socket |
| 300 | automatically if the owner is destroyed. |
| 301 | |
| 302 | - IPv6 on Windows |
| 303 | |
| 304 | - Improved CGI handling suitable for general CGI scripting, eg, PHP |
| 305 | |
| 306 | - Convert even the "old style" test servers to use statically included |
| 307 | plugin sources |
| 308 | |
| 309 | - LWS_WITH_STATS cmake option dumps resource usage and timing information |
| 310 | every few seconds to debug log, including latency information about |
| 311 | delay from asking for writeable callback to getting it |
| 312 | |
| 313 | - Large (> 2GB) files may be served |
| 314 | |
| 315 | - LWS_WITH_HTTP_PROXY Cmake option adds proxying mounts |
| 316 | |
| 317 | - Workaround for libev build by disabling -Werror on the test app |
| 318 | |
| 319 | - HTTP2 support disabled since no way to serve websockets on it |
| 320 | |
| 321 | |
Andy Green | 6be573f | 2017-03-06 15:35:45 +0800 | [diff] [blame] | 322 | v2.2.0 |
| 323 | ====== |
| 324 | |
| 325 | Major new features |
| 326 | |
| 327 | - A mount can be protected by Basic Auth... in lwsws it looks like this |
| 328 | |
| 329 | ``` |
| 330 | { |
| 331 | "mountpoint": "/basic-auth", |
| 332 | "origin": "file://_lws_ddir_/libwebsockets-test-server/private", |
| 333 | "basic-auth": "/var/www/balogins-private" |
| 334 | } |
| 335 | ``` |
| 336 | |
| 337 | The text file named in `basic-auth` contains user:password information |
| 338 | one per line. |
| 339 | |
| 340 | See README.lwsws.md for more information. |
| 341 | |
| 342 | - RFC7233 RANGES support in lws server... both single and multipart. |
| 343 | This allows seeking for multimedia file serving and download resume. |
| 344 | It's enabled by default but can be disabled by CMake option. |
| 345 | |
| 346 | - On Linux, lwsws can reload configuration without dropping ongoing |
| 347 | connections, when sent a SIGHUP. The old configuration drops its |
| 348 | listen sockets so the new configuration can listen on them. |
| 349 | New connections connect to the server instance with the new |
| 350 | configuration. When all old connections eventually close, the old |
| 351 | instance automatically exits. This is equivalent to |
| 352 | `systemctl reload apache` |
| 353 | |
| 354 | - New `adopt` api allow adoption including SSL negotiation and |
| 355 | for raw sockets and file descriptors. |
| 356 | |
| 357 | - Chunked transfer encoding supported for client and server |
| 358 | |
| 359 | - Adaptations to allow operations inside OPTEE Secure World |
| 360 | |
| 361 | - ESP32 initial port - able to do all test server functions. See |
| 362 | README.build.md |
| 363 | |
| 364 | - Serving gzipped files from inside a ZIP file is supported... this |
| 365 | includes directly serving the gzipped content if the client |
| 366 | indicated it could accept it (ie, almost all browsers) saving |
| 367 | bandwidth and time. For clients that can't accept it, lws |
| 368 | automatically decompresses and serves the content in memory- |
| 369 | efficient chunks. Only a few hundred bytes of heap are needed |
| 370 | to serve any size file from inside the zip. See README.coding.md |
| 371 | |
| 372 | - RAW file descriptors may now be adopted into the lws event loop, |
| 373 | independent of event backend (including poll service). |
| 374 | See README.coding.md |
| 375 | |
| 376 | - RAW server socket descriptors may now be enabled on the vhost if |
| 377 | the first thing sent on the connection is not a valid http method. |
| 378 | The user code can associate these with a specific protocol per |
| 379 | vhost, and RAW-specific callbacks appear there for creation, rx, |
| 380 | writable and close. See libwebsockets-test-server-v2.0 for an example. |
| 381 | See README.coding.md |
| 382 | |
| 383 | - RAW client connections are now possible using the method "RAW". |
| 384 | After connection, the socket is associated to the protocol |
| 385 | named in the client connection info and RAW-specific callbacks |
| 386 | appear there for creation, rx, writable and close. |
| 387 | See libwebsockets-test-client (with raw://) for an example. |
| 388 | See README.coding.md |
| 389 | |
| 390 | |
Andy Green | 7355750 | 2016-10-06 21:48:20 +0800 | [diff] [blame] | 391 | v2.1.0 |
| 392 | ====== |
| 393 | |
| 394 | Major new features |
| 395 | |
| 396 | - Support POST arguments, including multipart and file attachment |
| 397 | |
| 398 | - Move most of lwsws into lws, make the stub CC0 |
| 399 | |
| 400 | - Add loopback test plugin to confirm client ws / http coexistence |
| 401 | |
| 402 | - Integrate lwsws testing on Appveyor (ie, windows) |
| 403 | |
| 404 | - Introduce helpers for sql, urlencode and urldecode sanitation |
| 405 | |
| 406 | - Introduce LWS_CALLBACK_HTTP_BIND_PROTOCOL / DROP_PROTOCOL that |
| 407 | are compatible with http:/1.1 pipelining and different plugins |
| 408 | owning different parts of the URL space |
| 409 | |
| 410 | - lwsgs - Generic Sessions plugin supports serverside sessions, |
| 411 | cookies, hashed logins, forgot password etc |
| 412 | |
| 413 | - Added APIs for sending email to SMTP servers |
| 414 | |
| 415 | - Messageboard example plugin for lwsgs |
| 416 | |
| 417 | - Automatic PING sending at fixed intervals and close if no response |
| 418 | |
| 419 | - Change default header limit in ah to 4096 (from 1024) |
| 420 | |
| 421 | - Add SNI matching for wildcards if no specific wildcard vhost name match |
| 422 | |
| 423 | - Convert docs to Doxygen |
| 424 | |
| 425 | - ESP8266 support ^^ |
| 426 | |
Enno Boland | 7731a3e | 2016-05-05 22:08:41 +0200 | [diff] [blame] | 427 | Fixes |
| 428 | ----- |
| 429 | |
Andy Green | 7355750 | 2016-10-06 21:48:20 +0800 | [diff] [blame] | 430 | See git log v2.0.0.. |
Enno Boland | 7731a3e | 2016-05-05 22:08:41 +0200 | [diff] [blame] | 431 | |
Andy Green | fb8be05 | 2016-05-12 19:39:29 +0800 | [diff] [blame] | 432 | |
Enno Boland | 7731a3e | 2016-05-05 22:08:41 +0200 | [diff] [blame] | 433 | |
Andy Green | 5500643 | 2016-05-05 09:40:18 +0800 | [diff] [blame] | 434 | v2.0.0 |
| 435 | ====== |
| 436 | |
| 437 | Summary |
| 438 | ------- |
| 439 | |
| 440 | - There are only api additions, the api is compatible with v1.7.x. But |
| 441 | there is necessarily an soname bump to 8. |
| 442 | |
| 443 | - If you are using lws client, you mainly need to be aware the option |
| 444 | LWS_SERVER_OPTION_DO_SSL_GLOBAL_INIT is needed at context-creation time |
| 445 | if you will use SSL. |
| 446 | |
| 447 | - If you are using lws for serving, the above is also true but there are |
| 448 | many new features to simplify your code (and life). There is a |
| 449 | summany online here |
| 450 | |
| 451 | https://libwebsockets.org/lws-2.0-new-features.html |
| 452 | |
| 453 | but basically the keywords are vhosts, mounts and plugins. You can now |
| 454 | do the web serving part from lws without any user callback code at all. |
| 455 | See ./test-server/test-server-v2.0.c for an example, it has no user |
| 456 | code for ws either since it uses the protocol plugins... that one C file |
| 457 | is all that is needed to do the whole test server function. |
| 458 | |
| 459 | You now have the option to use a small generic ws-capable webserver |
| 460 | "lwsws" and write your ws part as a plugin. That eliminates even |
| 461 | cut-and-pasting the test server code and offers more configurable |
| 462 | features like control over http cacheability in JSON. |
| 463 | |
| 464 | |
Andy Green | 0c3cc2e | 2016-02-20 09:12:52 +0800 | [diff] [blame] | 465 | Fixes |
| 466 | ----- |
| 467 | |
Andy Green | 5500643 | 2016-05-05 09:40:18 +0800 | [diff] [blame] | 468 | These are already in 1.7.x series |
| 469 | |
Andy Green | 0c3cc2e | 2016-02-20 09:12:52 +0800 | [diff] [blame] | 470 | 1) MAJOR (Windows-only) fix assert firing |
| 471 | |
| 472 | 2) MAJOR http:/1.1 connections handled by lws_return_http_status() did not |
| 473 | get sent a content-length resulting in the link hanging until the peer closed |
| 474 | it. attack.sh updated to add a test for this. |
| 475 | |
Andy Green | 26d4249 | 2016-02-24 12:40:21 +0800 | [diff] [blame] | 476 | 3) MINOR An error about hdr struct in _lws_ws_related is corrected, it's not |
| 477 | known to affect anything until after it was fixed |
| 478 | |
Andy Green | 5c0bcf4 | 2016-02-24 21:27:46 +0800 | [diff] [blame] | 479 | 4) MINOR During the close shutdown wait state introduced at v1.7, if something |
| 480 | requests callback on writeable for the socket it will busywait until the |
| 481 | socket closes |
| 482 | |
Andy Green | dbfbbb4 | 2016-02-24 20:58:19 +0800 | [diff] [blame] | 483 | 5) MAJOR Although the test server has done it for a few versions already, it |
| 484 | is now required for the user code to explicitly call |
| 485 | |
| 486 | if (lws_http_transaction_completed(wsi)) |
| 487 | return -1; |
| 488 | |
| 489 | when it finishes replying to a transaction in http. Previously the library |
| 490 | did it for you, but that disallowed large, long transfers with multiple |
| 491 | trips around the event loop (and cgi...). |
| 492 | |
Andy Green | 4ba798d | 2016-02-25 21:50:49 +0800 | [diff] [blame] | 493 | 6) MAJOR connections on ah waiting list that closed did not get removed from |
| 494 | the waiting list... |
| 495 | |
Andy Green | 83af28a | 2016-02-28 10:55:31 +0800 | [diff] [blame] | 496 | 7) MAJOR since we added the ability to hold an ah across http keepalive |
| 497 | transactions where more headers had already arrived, we broke the ability |
| 498 | to tell if more headers had arrived. Result was if the browser didn't |
| 499 | close the keepalive, we retained ah for the lifetime of the keepalive, |
| 500 | using up the pool. |
| 501 | |
Andy Green | 442e1c8 | 2016-02-29 10:10:42 +0800 | [diff] [blame] | 502 | 8) MAJOR windows-only-POLLHUP was not coming |
| 503 | |
Andy Green | 4f5ebec | 2016-03-09 23:13:31 +0800 | [diff] [blame] | 504 | 9) Client should not send ext hdr if no exts |
Andy Green | dbfbbb4 | 2016-02-24 20:58:19 +0800 | [diff] [blame] | 505 | |
Andy Green | 0c3cc2e | 2016-02-20 09:12:52 +0800 | [diff] [blame] | 506 | Changes |
| 507 | ------- |
| 508 | |
| 509 | 1) MINOR test-server gained some new switches |
| 510 | |
| 511 | -C <file> use external SSL cert file |
| 512 | -K <file> use external SSL key file |
| 513 | -A <file> use external SSL CA cert file |
| 514 | |
| 515 | -u <uid> set effective uid |
| 516 | -g <gid> set effective gid |
| 517 | |
| 518 | together you can use them like this to have the test-server work with the |
| 519 | usual purchased SSL certs from an official CA. |
| 520 | |
| 521 | --ssl -C your.crt -K your.key -A your.cer -u 99 -g 99 |
| 522 | |
| 523 | 2) MINOR the OpenSSL magic to setup ECDH cipher usage is implemented in the |
| 524 | library, and the ciphers restricted to use ECDH only. |
| 525 | Using this, the lws test server can score an A at SSLLABS test |
| 526 | |
| 527 | 3) MINOR STS (SSL always) header is added to the test server if you use --ssl. With |
| 528 | that, we score A+ at SSLLABS test |
| 529 | |
| 530 | 4) MINOR daemonize function (disabled at cmake by default) is updated to work |
| 531 | with systemd |
| 532 | |
| 533 | 5) MINOR example systemd .service file now provided for test server |
| 534 | (not installed by default) |
| 535 | |
Andy Green | 0ad1a6e | 2016-02-20 14:05:55 +0800 | [diff] [blame] | 536 | 6) test server html is updated with tabs and a new live server monitoring |
| 537 | feature. Input sanitization added to the js. |
| 538 | |
Andy Green | 2d8d35a | 2016-02-29 14:19:16 +0800 | [diff] [blame] | 539 | 7) client connections attempted when no ah is free no longer fail, they are |
| 540 | just deferred until an ah becomes available. |
| 541 | |
Andy Green | a661ee5 | 2016-02-29 13:18:30 +0800 | [diff] [blame] | 542 | 8) The test client pays attention to if you give it an http:/ or https:// |
| 543 | protocol string to its argument in URL format. If so, it stays in http[s] |
| 544 | client mode and doesn't upgrade to ws[s], allowing you to do generic http client |
Andy Green | 5c8906e | 2016-03-13 16:44:19 +0800 | [diff] [blame] | 545 | operations. Receiving transfer-encoding: chunked is supported. |
Andy Green | a661ee5 | 2016-02-29 13:18:30 +0800 | [diff] [blame] | 546 | |
Andy Green | 1e5a9ad | 2016-03-20 11:59:53 +0800 | [diff] [blame] | 547 | 9) If you enable -DLWS_WITH_HTTP_PROXY=1 at cmake, the test server has a |
| 548 | new URI path http://localhost:7681/proxytest If you visit here, a client |
| 549 | connection to http://example.com:80 is spawned, and the results piped on |
| 550 | to your original connection. |
| 551 | |
| 552 | 10) Also with LWS_WITH_HTTP_PROXY enabled at cmake, lws wants to link to an |
| 553 | additional library, "libhubbub". This allows lws to do html rewriting on the |
| 554 | fly, adjusting proxied urls in a lightweight and fast way. |
Andy Green | fb5f33b | 2016-03-01 07:19:01 +0800 | [diff] [blame] | 555 | |
Andy Green | c6fd360 | 2016-03-23 09:22:11 +0800 | [diff] [blame] | 556 | 11) There's a new context creation flag LWS_SERVER_OPTION_DO_SSL_GLOBAL_INIT, |
| 557 | this is included automatically if you give any other SSL-related option flag. |
| 558 | If you give no SSL-related option flag, nor this one directly, then even |
| 559 | though SSL support may be compiled in, it is never initialized nor used for the |
| 560 | whole lifetime of the lws context. |
| 561 | |
| 562 | Conversely in order to prepare the context to use SSL, even though, eg, you |
| 563 | are not listening on SSL but will use SSL client connections later, you must |
| 564 | give this flag explicitly to make sure SSL is initialized. |
| 565 | |
Andy Green | 2d8d35a | 2016-02-29 14:19:16 +0800 | [diff] [blame] | 566 | |
Andy Green | d7fddad | 2016-02-18 20:36:55 +0800 | [diff] [blame] | 567 | User API additions |
| 568 | ------------------ |
| 569 | |
Andy Green | 0c3cc2e | 2016-02-20 09:12:52 +0800 | [diff] [blame] | 570 | 1) MINOR APIBREAK There's a new member in struct lws_context_creation_info, ecdh_curve, |
Andy Green | d7fddad | 2016-02-18 20:36:55 +0800 | [diff] [blame] | 571 | which lets you set the name of the ECDH curve OpenSSL should use. By |
| 572 | default (if you leave ecdh_curve NULL) it will use "prime256v1" |
| 573 | |
Andy Green | 51d9afa | 2016-02-24 11:05:56 +0800 | [diff] [blame] | 574 | 2) MINOR NEWAPI It was already possible to adopt a foreign socket that had not |
| 575 | been read from using lws_adopt_socket() since v1.7. Now you can adopt a |
| 576 | partially-used socket if you don't need SSL, by passing it what you read |
| 577 | so it can drain that before reading from the socket. |
| 578 | |
| 579 | LWS_VISIBLE LWS_EXTERN struct lws * |
| 580 | lws_adopt_socket_readbuf(struct lws_context *context, lws_sockfd_type accept_fd, |
| 581 | const char *readbuf, size_t len); |
Andy Green | d7fddad | 2016-02-18 20:36:55 +0800 | [diff] [blame] | 582 | |
Andy Green | 6a8099b | 2016-02-21 21:25:48 +0800 | [diff] [blame] | 583 | 3) MINOR NEWAPI CGI type "network io" subprocess execution is now possible from |
| 584 | a simple api. |
| 585 | |
| 586 | LWS_VISIBLE LWS_EXTERN int |
Andy Green | 1a13885 | 2016-03-20 11:55:25 +0800 | [diff] [blame] | 587 | lws_cgi(struct lws *wsi, char * const *exec_array, int script_uri_path_len, |
| 588 | int timeout_secs); |
Andy Green | 6a8099b | 2016-02-21 21:25:48 +0800 | [diff] [blame] | 589 | |
| 590 | LWS_VISIBLE LWS_EXTERN int |
| 591 | lws_cgi_kill(struct lws *wsi); |
| 592 | |
| 593 | To use it, you must first set the cmake option |
| 594 | |
| 595 | $ cmake .. -DLWS_WITH_CGI=1 |
| 596 | |
| 597 | See test-server-http.c and test server path |
| 598 | |
| 599 | http://localhost:7681/cgitest |
| 600 | |
| 601 | stdin gets http body, you can test it with wget |
| 602 | |
| 603 | $ echo hello > hello.txt |
| 604 | $ wget http://localhost:7681/cgitest --post-file=hello.txt -O- --quiet |
| 605 | lwstest script |
| 606 | read="hello" |
| 607 | |
Andy Green | 1a13885 | 2016-03-20 11:55:25 +0800 | [diff] [blame] | 608 | The test script returns text/html table showing /proc/meminfo. But the cgi |
| 609 | support is complete enough to run cgit cgi. |
| 610 | |
Andy Green | d61bed3 | 2016-02-25 15:01:55 +0800 | [diff] [blame] | 611 | 4) There is a helper api for forming logging timestamps |
| 612 | |
| 613 | LWS_VISIBLE int |
| 614 | lwsl_timestamp(int level, char *p, int len) |
| 615 | |
| 616 | this generates this kind of timestamp for use as logging preamble |
| 617 | |
| 618 | lwsts[13116]: [2016/01/25 14:52:52:8386] NOTICE: Initial logging level 7 |
| 619 | |
Andy Green | a661ee5 | 2016-02-29 13:18:30 +0800 | [diff] [blame] | 620 | 5) struct lws_client_connect_info has a new member |
| 621 | |
| 622 | const char *method |
| 623 | |
| 624 | If it's NULL, then everything happens as before, lws_client_connect_via_info() |
| 625 | makes a ws or wss connection to the address given. |
| 626 | |
| 627 | If you set method to a valid http method like "GET", though, then this method |
| 628 | is used and the connection remains in http[s], it's not upgraded to ws[s]. |
| 629 | |
| 630 | So with this, you can perform http[s] client operations as well as ws[s] ones. |
| 631 | |
| 632 | There are 4 new related callbacks |
| 633 | |
| 634 | LWS_CALLBACK_ESTABLISHED_CLIENT_HTTP = 44, |
| 635 | LWS_CALLBACK_CLOSED_CLIENT_HTTP = 45, |
| 636 | LWS_CALLBACK_RECEIVE_CLIENT_HTTP = 46, |
| 637 | LWS_CALLBACK_COMPLETED_CLIENT_HTTP = 47, |
Andy Green | 6a8099b | 2016-02-21 21:25:48 +0800 | [diff] [blame] | 638 | |
Andy Green | 494418a | 2016-03-02 09:17:22 +0800 | [diff] [blame] | 639 | 6) struct lws_client_connect_info has a new member |
| 640 | |
| 641 | const char *parent_wsi |
| 642 | |
| 643 | if non-NULL, the client wsi is set to be a child of parent_wsi. This ensures |
| 644 | if parent_wsi closes, then the client child is closed just before. |
| 645 | |
Andy Green | 0f9904f | 2016-03-17 15:26:49 +0800 | [diff] [blame] | 646 | 7) If you're using SSL, there's a new context creation-time option flag |
| 647 | LWS_SERVER_OPTION_REDIRECT_HTTP_TO_HTTPS. If you give this, non-ssl |
| 648 | connections to the server listen port are accepted and receive a 301 |
| 649 | redirect to / on the same host and port using https:// |
| 650 | |
Andy Green | c5376b1 | 2016-04-08 09:45:49 +0800 | [diff] [blame] | 651 | 8) User code may set per-connection extension options now, using a new api |
| 652 | "lws_set_extension_option()". |
| 653 | |
| 654 | This should be called from the ESTABLISHED callback like this |
| 655 | |
| 656 | lws_set_extension_option(wsi, "permessage-deflate", |
| 657 | "rx_buf_size", "12"); /* 1 << 12 */ |
| 658 | |
| 659 | If the extension is not active (missing or not negotiated for the |
| 660 | connection, or extensions are disabled on the library) the call is |
| 661 | just returns -1. Otherwise the connection's extension has its |
| 662 | named option changed. |
| 663 | |
| 664 | The extension may decide to alter or disallow the change, in the |
| 665 | example above permessage-deflate restricts the size of his rx |
| 666 | output buffer also considering the protocol's rx_buf_size member. |
| 667 | |
| 668 | |
Andy Green | cd0c696 | 2016-03-28 10:12:37 +0800 | [diff] [blame] | 669 | New application lwsws |
| 670 | --------------------- |
| 671 | |
| 672 | A libwebsockets-based general webserver is built by default now, lwsws. |
| 673 | |
| 674 | It's configured by JSON, by default in |
| 675 | |
| 676 | /etc/lwsws/conf |
| 677 | |
| 678 | which contains global lws context settings like this |
| 679 | |
| 680 | { |
| 681 | "global": { |
| 682 | "uid": "99", |
| 683 | "gid": "99", |
| 684 | "interface": "eth0", |
| 685 | "count-threads": "1" |
| 686 | } |
| 687 | } |
| 688 | |
| 689 | /etc/lwsws/conf.d/* |
| 690 | |
| 691 | which contains zero or more files describing vhosts, like this |
| 692 | |
| 693 | { |
| 694 | "vhosts": [ |
| 695 | { "name": "warmcat.com", |
| 696 | "port": "443", |
| 697 | "host-ssl-key": "/etc/pki/tls/private/warmcat.com.key", |
| 698 | "host-ssl-cert": "/etc/pki/tls/certs/warmcat.com.crt", |
| 699 | "host-ssl-ca": "/etc/pki/tls/certs/warmcat.com.cer", |
| 700 | "mounts": [ |
| 701 | { "/": [ |
| 702 | { "home": "file:///var/www/warmcat.com" }, |
| 703 | { "default": "index.html" } |
| 704 | ] |
| 705 | } |
| 706 | ] |
| 707 | } |
| 708 | ] |
| 709 | } |
| 710 | |
| 711 | |
Andy Green | 0c3cc2e | 2016-02-20 09:12:52 +0800 | [diff] [blame] | 712 | |
Andy Green | 9c60ed9 | 2016-02-16 12:32:18 +0800 | [diff] [blame] | 713 | v1.7.0 |
| 714 | ====== |
| 715 | |
Andy Green | 6711266 | 2016-01-11 11:34:01 +0800 | [diff] [blame] | 716 | Extension Changes |
| 717 | ----------------- |
| 718 | |
| 719 | 1) There is now a "permessage-deflate" / RFC7692 implementation. It's very |
| 720 | similar to "deflate-frame" we have offered for a long while; deflate-frame is |
| 721 | now provided as an alias of permessage-deflate. |
| 722 | |
| 723 | The main differences are that the new permessage-deflate implementation: |
| 724 | |
| 725 | - properly performs streaming respecting input and output buffer limits. The |
| 726 | old deflate-frame implementation could only work on complete deflate input |
| 727 | and produce complete inflate output for each frame. The new implementation |
| 728 | only mallocs buffers at initialization. |
| 729 | |
| 730 | - goes around the event loop after each input package is processed allowing |
| 731 | interleaved output processing. The RX flow control api can be used to |
| 732 | force compressed input processing to match the rate of compressed output |
| 733 | processing (test--echo shows an example of how to do this). |
| 734 | |
| 735 | - when being "deflate-frame" for compatibility he uses the same default zlib |
| 736 | settings as the old "deflate-frame", but instead of exponentially increasing |
| 737 | malloc allocations until the whole output will fit, he observes the default |
| 738 | input and output chunking buffer sizes of "permessage-deflate", that's |
| 739 | 1024 in and 1024 out at a time. |
| 740 | |
| 741 | 2) deflate-stream has been disabled for many versions (for over a year) and is |
| 742 | now removed. Browsers are now standardizing on "permessage-deflate" / RFC7692 |
| 743 | |
| 744 | 3) struct lws_extension is simplified, and lws extensions now have a public |
| 745 | api (their callback) for use in user code to compose extensions and options |
| 746 | the user code wants. lws_get_internal_exts() is deprecated but kept around |
| 747 | as a NOP. The changes allow one extension implementation to go by different |
| 748 | names and allows the user client code to control option offers per-ext. |
| 749 | |
| 750 | The test client and server are updated to use the new way. If you use |
| 751 | the old way it should still work, but extensions will be disabled until you |
| 752 | update your code. |
| 753 | |
| 754 | Extensions are now responsible for allocating and per-instance private struct |
| 755 | at instance construction time and freeing it when the instance is destroyed. |
| 756 | Not needing to know the size means the extension's struct can be opaque |
| 757 | to user code. |
| 758 | |
| 759 | |
Andy Green | 3df5800 | 2015-12-25 12:44:12 +0800 | [diff] [blame] | 760 | User api additions |
| 761 | ------------------ |
| 762 | |
Andy Green | 200a6a2 | 2016-02-15 20:36:02 +0800 | [diff] [blame] | 763 | 1) The info struct gained three new members |
Andy Green | 3df5800 | 2015-12-25 12:44:12 +0800 | [diff] [blame] | 764 | |
| 765 | - max_http_header_data: 0 for default (1024) or set the maximum amount of known |
| 766 | http header payload that lws can deal with. Payload in unknown http |
| 767 | headers is dropped silently. If for some reason you need to send huge |
| 768 | cookies or other HTTP-level headers, you can now increase this at context- |
| 769 | creation time. |
| 770 | |
| 771 | - max_http_header_pool: 0 for default (16) or set the maximum amount of http |
| 772 | headers that can be tracked by lws in this context. For the server, if |
| 773 | the header pool is completely in use then accepts on the listen socket |
| 774 | are disabled until one becomes free. For the client, if you simultaneously |
| 775 | have pending connects for more than this number of client connections, |
| 776 | additional connects will fail until some of the pending connections timeout |
| 777 | or complete. |
| 778 | |
Andy Green | 200a6a2 | 2016-02-15 20:36:02 +0800 | [diff] [blame] | 779 | - timeout_secs: 0 for default (currently 20s), or set the library's |
| 780 | network activity timeout to the given number of seconds |
| 781 | |
Andy Green | 3df5800 | 2015-12-25 12:44:12 +0800 | [diff] [blame] | 782 | HTTP header processing in lws only exists until just after the first main |
| 783 | callback after the HTTP handshake... for ws connections that is ESTABLISHED and |
| 784 | for HTTP connections the HTTP callback. |
| 785 | |
| 786 | So these settings are not related to the maximum number of simultaneous |
Andy Green | 3246ebb | 2015-12-26 12:03:06 +0800 | [diff] [blame] | 787 | connections, but the number of HTTP handshakes that may be expected or ongoing, |
Andy Green | 3df5800 | 2015-12-25 12:44:12 +0800 | [diff] [blame] | 788 | or have just completed, at one time. The reason it's useful is it changes the |
| 789 | memory allocation for header processing to be one-time at context creation |
| 790 | instead of every time there is a new connection, and gives you control over |
| 791 | the peak allocation. |
| 792 | |
| 793 | Setting max_http_header_pool to 1 is fine it will just queue incoming |
| 794 | connections before the accept as necessary, you can still have as many |
Andy Green | 5b85e39 | 2015-12-26 13:23:11 +0800 | [diff] [blame] | 795 | simultaneous post-header connections as you like. Since the http header |
| 796 | processing is completed and the allocation released after ESTABLISHED or the |
| 797 | HTTP callback, even with a pool of 1 many connections can be handled rapidly. |
| 798 | |
Andy Green | 066a7a1 | 2015-12-26 15:47:06 +0800 | [diff] [blame] | 799 | 2) There is a new callback that allows the user code to get acccess to the |
| 800 | optional close code + aux data that may have been sent by the peer. |
| 801 | |
| 802 | LWS_CALLBACK_WS_PEER_INITIATED_CLOSE: |
| 803 | The peer has sent an unsolicited Close WS packet. @in and |
| 804 | @len are the optional close code (first 2 bytes, network |
| 805 | order) and the optional additional information which is not |
| 806 | defined in the standard, and may be a string or non-human- |
| 807 | readble data. |
| 808 | If you return 0 lws will echo the close and then close the |
Andy Green | 6711266 | 2016-01-11 11:34:01 +0800 | [diff] [blame] | 809 | connection. If you return nonzero lws will just close the |
| 810 | connection. |
Andy Green | 066a7a1 | 2015-12-26 15:47:06 +0800 | [diff] [blame] | 811 | |
| 812 | As usual not handling it does the right thing, if you're not interested in it |
| 813 | just ignore it. |
| 814 | |
| 815 | The test server has "open and close" testing buttons at the bottom, if you |
| 816 | open and close that connection, on close it will send a close code 3000 decimal |
| 817 | and the string "Bye!" as the aux data. |
| 818 | |
| 819 | The test server dumb-increment callback handles this callback reason and prints |
| 820 | |
| 821 | lwsts[15714]: LWS_CALLBACK_WS_PEER_INITIATED_CLOSE: len 6 |
| 822 | lwsts[15714]: 0: 0x0B |
| 823 | lwsts[15714]: 1: 0xB8 |
| 824 | lwsts[15714]: 2: 0x42 |
| 825 | lwsts[15714]: 3: 0x79 |
| 826 | lwsts[15714]: 4: 0x65 |
| 827 | lwsts[15714]: 5: 0x21 |
| 828 | |
Andy Green | 1fb95e8 | 2015-12-26 17:20:34 +0800 | [diff] [blame] | 829 | 3) There is a new API to allow the user code to control the content of the |
| 830 | close frame sent when about to return nonzero from the user callback to |
| 831 | indicate the connection should close. |
| 832 | |
| 833 | /** |
| 834 | * lws_close_reason - Set reason and aux data to send with Close packet |
| 835 | * If you are going to return nonzero from the callback |
| 836 | * requesting the connection to close, you can optionally |
| 837 | * call this to set the reason the peer will be told if |
| 838 | * possible. |
| 839 | * |
| 840 | * @wsi: The websocket connection to set the close reason on |
| 841 | * @status: A valid close status from websocket standard |
| 842 | * @buf: NULL or buffer containing up to 124 bytes of auxiliary data |
| 843 | * @len: Length of data in @buf to send |
| 844 | */ |
| 845 | LWS_VISIBLE LWS_EXTERN void |
| 846 | lws_close_reason(struct lws *wsi, enum lws_close_status status, |
| 847 | unsigned char *buf, size_t len); |
| 848 | |
| 849 | An extra button is added to the "open and close" test server page that requests |
| 850 | that the test server close the connection from his end. |
| 851 | |
| 852 | The test server code will do so by |
| 853 | |
| 854 | lws_close_reason(wsi, LWS_CLOSE_STATUS_GOINGAWAY, |
| 855 | (unsigned char *)"seeya", 5); |
| 856 | return -1; |
| 857 | |
| 858 | The browser shows the close code and reason he received |
| 859 | |
| 860 | websocket connection CLOSED, code: 1001, reason: seeya |
| 861 | |
Vijay Khurdiya | e73d446 | 2016-01-15 16:21:51 +0800 | [diff] [blame] | 862 | 4) There's a new context creation time option flag |
Andy Green | 44a7f65 | 2015-12-29 11:20:09 +0800 | [diff] [blame] | 863 | |
| 864 | LWS_SERVER_OPTION_VALIDATE_UTF8 |
| 865 | |
| 866 | if you set it in info->options, then TEXT and CLOSE frames will get checked to |
| 867 | confirm that they contain valid UTF-8. If they don't, the connection will get |
| 868 | closed by lws. |
| 869 | |
Vijay Khurdiya | e73d446 | 2016-01-15 16:21:51 +0800 | [diff] [blame] | 870 | 5) ECDH Certs are now supported. Enable the CMake option |
| 871 | |
| 872 | cmake .. -DLWS_SSL_SERVER_WITH_ECDH_CERT=1 |
| 873 | |
| 874 | **and** the info->options flag |
| 875 | |
Andy Green | ff69648 | 2016-02-17 07:46:27 +0800 | [diff] [blame] | 876 | LWS_SERVER_OPTION_SSL_ECDH |
Vijay Khurdiya | e73d446 | 2016-01-15 16:21:51 +0800 | [diff] [blame] | 877 | |
| 878 | to build in support and select it at runtime. |
| 879 | |
Andy Green | ff69648 | 2016-02-17 07:46:27 +0800 | [diff] [blame] | 880 | 6) There's a new api lws_parse_uri() that simplifies chopping up |
Andy Green | 809d69a | 2016-01-14 11:37:56 +0800 | [diff] [blame] | 881 | https://xxx:yyy/zzz uris into parts nicely. The test client now uses this |
Andy Green | d3a5505 | 2016-01-19 03:34:24 +0800 | [diff] [blame] | 882 | to allow proper uris as well as the old address style. |
| 883 | |
| 884 | 7) SMP support is integrated into LWS without any internal threading. It's |
| 885 | very simple to use, libwebsockets-test-server-pthread shows how to do it, |
| 886 | use -j <n> argument there to control the number of service threads up to 32. |
| 887 | |
| 888 | Two new members are added to the info struct |
| 889 | |
| 890 | unsigned int count_threads; |
| 891 | unsigned int fd_limit_per_thread; |
| 892 | |
| 893 | leave them at the default 0 to get the normal singlethreaded service loop. |
| 894 | |
| 895 | Set count_threads to n to tell lws you will have n simultaneous service threads |
| 896 | operating on the context. |
| 897 | |
| 898 | There is still a single listen socket on one port, no matter how many |
| 899 | service threads. |
| 900 | |
| 901 | When a connection is made, it is accepted by the service thread with the least |
| 902 | connections active to perform load balancing. |
| 903 | |
| 904 | The user code is responsible for spawning n threads running the service loop |
| 905 | associated to a specific tsi (Thread Service Index, 0 .. n - 1). See |
| 906 | the libwebsockets-test-server-pthread for how to do. |
| 907 | |
| 908 | If you leave fd_limit_per_thread at 0, then the process limit of fds is shared |
| 909 | between the service threads; if you process was allowed 1024 fds overall then |
| 910 | each thread is limited to 1024 / n. |
| 911 | |
| 912 | You can set fd_limit_per_thread to a nonzero number to control this manually, eg |
| 913 | the overall supported fd limit is less than the process allowance. |
| 914 | |
| 915 | You can control the context basic data allocation for multithreading from Cmake |
| 916 | using -DLWS_MAX_SMP=, if not given it's set to 32. The serv_buf allocation |
| 917 | for the threads (currently 4096) is made at runtime only for active threads. |
| 918 | |
| 919 | Because lws will limit the requested number of actual threads supported |
| 920 | according to LWS_MAX_SMP, there is an api lws_get_count_threads(context) to |
| 921 | discover how many threads were actually allowed when the context was created. |
| 922 | |
| 923 | It's required to implement locking in the user code in the same way that |
| 924 | libwebsockets-test-server-pthread does it, for the FD locking callbacks. |
| 925 | |
Andy Green | ba119e9 | 2016-01-26 21:40:32 +0800 | [diff] [blame] | 926 | If LWS_MAX_SMP=1, then there is no code related to pthreads compiled in the |
| 927 | library. If more than 1, a small amount of pthread mutex code is built into |
| 928 | the library. |
Andy Green | 809d69a | 2016-01-14 11:37:56 +0800 | [diff] [blame] | 929 | |
Andy Green | ba119e9 | 2016-01-26 21:40:32 +0800 | [diff] [blame] | 930 | 8) New API |
| 931 | |
| 932 | LWS_VISIBLE struct lws * |
| 933 | lws_adopt_socket(struct lws_context *context, lws_sockfd_type accept_fd) |
| 934 | |
| 935 | allows foreign sockets accepted by non-lws code to be adopted by lws as if they |
| 936 | had just been accepted by lws' own listen socket. |
Andy Green | 3df5800 | 2015-12-25 12:44:12 +0800 | [diff] [blame] | 937 | |
Danomi Czaski | 4e9c7f3 | 2016-01-28 09:40:53 +0800 | [diff] [blame] | 938 | 9) X-Real-IP: header has been added as WSI_TOKEN_HTTP_X_REAL_IP |
| 939 | |
Andy Green | 86ed65f | 2016-02-14 09:27:41 +0800 | [diff] [blame] | 940 | 10) Libuv support is added, there are new related user apis |
| 941 | |
| 942 | typedef void (lws_uv_signal_cb_t)(uv_loop_t *l, uv_signal_t *w, int revents); |
| 943 | |
| 944 | LWS_VISIBLE LWS_EXTERN int |
| 945 | lws_uv_sigint_cfg(struct lws_context *context, int use_uv_sigint, |
| 946 | lws_uv_signal_cb_t *cb); |
| 947 | |
| 948 | LWS_VISIBLE LWS_EXTERN int |
| 949 | lws_uv_initloop(struct lws_context *context, uv_loop_t *loop, int tsi); |
| 950 | |
| 951 | LWS_VISIBLE void |
| 952 | lws_uv_sigint_cb(uv_loop_t *loop, uv_signal_t *watcher, int revents); |
| 953 | |
| 954 | and CMAKE option |
| 955 | |
| 956 | LWS_WITH_LIBUV |
| 957 | |
Danomi Czaski | 4e9c7f3 | 2016-01-28 09:40:53 +0800 | [diff] [blame] | 958 | |
Andy Green | 3246ebb | 2015-12-26 12:03:06 +0800 | [diff] [blame] | 959 | User api changes |
| 960 | ---------------- |
| 961 | |
| 962 | 1) LWS_SEND_BUFFER_POST_PADDING is now 0 and deprecated. You can remove it; if |
| 963 | you still use it, obviously it does nothing. Old binary code with nonzero |
| 964 | LWS_SEND_BUFFER_POST_PADDING is perfectly compatible, the old code just |
Andy Green | 5b85e39 | 2015-12-26 13:23:11 +0800 | [diff] [blame] | 965 | allocated a buffer bigger than the library is going to use. |
Andy Green | 3246ebb | 2015-12-26 12:03:06 +0800 | [diff] [blame] | 966 | |
Andy Green | 5b85e39 | 2015-12-26 13:23:11 +0800 | [diff] [blame] | 967 | The example apps no longer use LWS_SEND_BUFFER_POST_PADDING. |
Andy Green | 3246ebb | 2015-12-26 12:03:06 +0800 | [diff] [blame] | 968 | |
Andy Green | 4e2ac76 | 2015-12-26 20:26:11 +0800 | [diff] [blame] | 969 | The only path who made use of it was sending with LWS_WRITE_CLOSE ---> |
Andy Green | 3246ebb | 2015-12-26 12:03:06 +0800 | [diff] [blame] | 970 | |
Andy Green | 1fb95e8 | 2015-12-26 17:20:34 +0800 | [diff] [blame] | 971 | 2) Because of lws_close_reason() formalizing handling close frames, |
| 972 | LWS_WRITE_CLOSE is removed from libwebsockets.h. It was only of use to send |
| 973 | close frames...close frame content should be managed using lws_close_reason() |
| 974 | now. |
| 975 | |
Andy Green | 44a7f65 | 2015-12-29 11:20:09 +0800 | [diff] [blame] | 976 | 3) We check for invalid CLOSE codes and complain about protocol violation in |
| 977 | our close code. But it changes little since we were in the middle of closing |
| 978 | anyway. |
| 979 | |
| 980 | 4) zero-length RX frames and zero length TX frames are now allowed. |
| 981 | |
| 982 | 5) Pings and close used to be limited to 124 bytes, the correct limit is 125 |
| 983 | so that is now also allowed. |
Andy Green | 3246ebb | 2015-12-26 12:03:06 +0800 | [diff] [blame] | 984 | |
Steffen Vogel | f926717 | 2016-02-09 07:19:15 +0100 | [diff] [blame] | 985 | 6) LWS_PRE is provided as a synonym for LWS_SEND_BUFFER_PRE_PADDING, either is |
Andy Green | 6711266 | 2016-01-11 11:34:01 +0800 | [diff] [blame] | 986 | valid to use now. |
| 987 | |
| 988 | 7) There's generic support for RFC7462 style extension options built into the |
| 989 | library now. As a consequence, a field "options" is added to lws_extension. |
| 990 | It can be NULL if there are no options on the extension. Extension internal |
| 991 | info is part of the public abi because extensions may be implemented outside |
| 992 | the library. |
| 993 | |
Danomi Czaski | 4e9c7f3 | 2016-01-28 09:40:53 +0800 | [diff] [blame] | 994 | 8) WSI_TOKEN_PROXY enum was accidentally defined to collide with another token |
| 995 | of value 73. That's now corrected and WSI_TOKEN_PROXY moved to his own place at |
| 996 | 77. |
| 997 | |
Andy Green | 86ed65f | 2016-02-14 09:27:41 +0800 | [diff] [blame] | 998 | 9) With the addition of libuv support, libev is not the only event loop |
| 999 | library in town and his api names must be elaborated with _ev_ |
| 1000 | |
| 1001 | Callback typedef: lws_signal_cb ---> lws_ev_signal_cb_t |
| 1002 | lws_sigint_cfg --> lws_ev_sigint_cfg |
| 1003 | lws_initloop --> lws_ev_initloop |
| 1004 | lws_sigint_cb --> lws_ev_sigint_cb |
| 1005 | |
| 1006 | 10) Libev support is made compatible with multithreaded service, |
| 1007 | lws_ev_initloop (was lws_initloop) gets an extra argument for the |
| 1008 | thread service index (use 0 if you will just have 1 service thread). |
| 1009 | |
| 1010 | LWS_VISIBLE LWS_EXTERN int |
Andy Green | ff69648 | 2016-02-17 07:46:27 +0800 | [diff] [blame] | 1011 | lws_ev_initloop(struct lws_context *context, ev_loop_t *loop, int tsi); |
Andy Green | 86ed65f | 2016-02-14 09:27:41 +0800 | [diff] [blame] | 1012 | |
Andy Green | 3df5800 | 2015-12-25 12:44:12 +0800 | [diff] [blame] | 1013 | |
Andy Green | aef3dc4 | 2016-05-06 07:45:19 +0800 | [diff] [blame] | 1014 | (for earlier changelogs, see the tagged releases) |