Andy Green [Thu, 12 May 2016 14:15:15 +0000 (22:15 +0800)]
v1.7.8
Signed-off-by: Andy Green <andy@warmcat.com>
Andy Green [Thu, 12 May 2016 13:54:29 +0000 (21:54 +0800)]
check oom on lws_malloc
Signed-off-by: Andy Green <andy@warmcat.com>
Andy Green [Sat, 7 May 2016 01:39:15 +0000 (09:39 +0800)]
appveyor openssl 1.0.2h
Signed-off-by: Andy Green <andy@warmcat.com>
Andy Green [Sat, 7 May 2016 00:33:07 +0000 (08:33 +0800)]
fix %3d handling in path part and add attack.sh
https://github.com/warmcat/libwebsockets/issues/518
Signed-off-by: Andy Green <andy@warmcat.com>
Andy Green [Thu, 5 May 2016 01:23:05 +0000 (09:23 +0800)]
recv revert treating zero as hangup
While checking with ab, I found
commit
30cdb3ac8f24a4c289a3b4e8a41d6c5f2e6ec959
Author: Justin Chen <justinchen00@github.invalid.com>
Date: Thu Apr 14 21:40:53 2016 +0800
recv treat zero return as error
https://github.com/warmcat/libwebsockets/issues/475
turned ab performance to crap, reverting it made everything fast again.
recv manpage says there is three ways to get zero returned
1) When a stream socket peer has performed an orderly shutdown, the return value will be 0 (the traditional "end-of-file"
return).
2) Datagram sockets in various domains (e.g., the UNIX and Internet domains) permit zero-length datagrams. When such a
datagram is received, the return value is 0.
3) The value 0 may also be returned if the requested number of bytes to receive from a stream socket was 0.
we can't just assume it means the peer shut down.
If the peer shut down, then the event loop should get an event on the socket like POLLHUP and deal with it that way.
So the patch mentioned above is simply reverted here.
Signed-off-by: Andy Green <andy@warmcat.com>
Andy Green [Tue, 3 May 2016 13:41:24 +0000 (21:41 +0800)]
client provide user_space on LWS_CALLBACK_CLIENT_APPEND_HANDSHAKE_HEADER
https://github.com/warmcat/libwebsockets/issues/509
Signed-off-by: Andy Green <andy@warmcat.com>
Andy Green [Tue, 3 May 2016 06:29:07 +0000 (14:29 +0800)]
v1.7.7
Signed-off-by: Andy Green <andy@warmcat.com>
Andy Green [Tue, 3 May 2016 00:08:32 +0000 (08:08 +0800)]
client fix reaction to tls failure
https://github.com/warmcat/libwebsockets/issues/508
Signed-off-by: Andy Green <andy@warmcat.com>
Patrick Farrell [Tue, 5 Apr 2016 20:59:07 +0000 (16:59 -0400)]
Add warn_unused_result check, attribute only supported by GCC 3.4 or later
warn_unused_result was introduced in GCC version 3.4.
Change-Id: I6c2cc938d2b868ddfe0889cc41d7fa9d70e1b907
Alexander Bruines [Sat, 23 Apr 2016 09:10:18 +0000 (11:10 +0200)]
Android needs sys/resource.h
Andy Green [Sat, 23 Apr 2016 02:09:33 +0000 (10:09 +0800)]
v1.7.6
Signed-off-by: Andy Green <andy@warmcat.com>
Andy Green [Fri, 22 Apr 2016 13:58:38 +0000 (21:58 +0800)]
cruft remove sigusr2 handling
Signed-off-by: Andy Green <andy@warmcat.com>
Andy Green [Fri, 22 Apr 2016 04:40:44 +0000 (12:40 +0800)]
client account for retries
Signed-off-by: Andy Green <andy@warmcat.com>
hgrundy [Thu, 21 Apr 2016 09:20:10 +0000 (17:20 +0800)]
Update libwebsockets.h
Fix for FreeBSD
Justin Chen [Thu, 14 Apr 2016 13:42:11 +0000 (21:42 +0800)]
recv treat zero return as error
https://github.com/warmcat/libwebsockets/issues/475
Meir Yanovich [Fri, 8 Apr 2016 08:07:46 +0000 (16:07 +0800)]
windows snprintf is _snprintf
https://github.com/warmcat/libwebsockets/issues/411#issuecomment-
207290650
Galen Ma [Fri, 8 Apr 2016 08:04:58 +0000 (16:04 +0800)]
android fix rlimit
https://github.com/warmcat/libwebsockets/issues/488
Andy Green [Thu, 7 Apr 2016 10:57:28 +0000 (18:57 +0800)]
urldecode forbid malformed
And update attack.sh to confirm the new test cases
Signed-off-by: Andy Green <andy@warmcat.com>
Andy Green [Wed, 6 Apr 2016 01:25:46 +0000 (09:25 +0800)]
libuv add idle processing to force service where needed
https://github.com/warmcat/libwebsockets/issues/485
Signed-off-by: Andy Green <andy@warmcat.com>
Andy Green [Wed, 6 Apr 2016 01:39:48 +0000 (09:39 +0800)]
lws_service_adjust_timeout optimize
Make it exit quicker if something is pending
Signed-off-by: Andy Green <andy@warmcat.com>
Andy Green [Tue, 5 Apr 2016 11:51:55 +0000 (19:51 +0800)]
revert 622d9f2 ssl pending handcrank
https://github.com/warmcat/libwebsockets/issues/483
Signed-off-by: Andy Green <andy@warmcat.com>
Meir Yanovich [Tue, 5 Apr 2016 11:51:43 +0000 (19:51 +0800)]
win32 libuv build notes
Meir Yanovich [Tue, 5 Apr 2016 11:51:25 +0000 (19:51 +0800)]
win32 needs strange strftime args
Meir Yanovich [Mon, 4 Apr 2016 23:31:16 +0000 (07:31 +0800)]
libuv win32 fixes 2
https://github.com/warmcat/libwebsockets/issues/411#issuecomment-
204284368
Andy Green [Mon, 4 Apr 2016 23:31:11 +0000 (07:31 +0800)]
libuv win32 fixes
Signed-off-by: Andy Green <andy@warmcat.com>
Andy Green [Sat, 2 Apr 2016 00:03:48 +0000 (08:03 +0800)]
uri processing reject paths not starting with slash
https://github.com/warmcat/libwebsockets/issues/481
Return 403 Forbidden if we don't end up with a uri path starting with /
Test server already did this, but this makes it built into the
library.
Signed-off-by: Andy Green <andy@warmcat.com>
Andy Green [Fri, 1 Apr 2016 01:45:57 +0000 (09:45 +0800)]
v1.7.5
Signed-off-by: Andy Green <andy@warmcat.com>
Andy Green [Fri, 1 Apr 2016 01:30:09 +0000 (09:30 +0800)]
test server align rxbuf with permessage deflate rx buf size
Add a test html button that will send 9KB of junk to confirm it
https://github.com/warmcat/libwebsockets/issues/480
permessage-deflate now checks the protocol rx buffer size for being
>=128, if not, permessage-deflate is disabled on that connection.
If it is >=128 but less than the zlib decompress buffer size, the
zlib decompress buffer size for that connection is reduced to the
nearest power of two of the protocol rx buf size.
To test this, dumb_increment is left violating the >= 128 rx buffer
size and permessage-deflte can be seen to be disabled on his
connections in the test html.
Signed-off-by: Andy Green <andy@warmcat.com>
V.Krishn [Sun, 8 Mar 2015 09:35:27 +0000 (09:35 +0000)]
Fix build with musl libc
Fix building libwebsockets with the musl C libary.
<sys/cdefs.h> is an internal glibc header and should be avoided in user code.
__P() was used for compatibility with some old K&R C compilers, when there were
no prototypes (which were introduced to C with C89). As supporting legacy
non-ANSI compilers is nowadays not necessary anymore get rid of the unnecessary
function prototype using __P().
Andy Green [Tue, 29 Mar 2016 13:49:47 +0000 (21:49 +0800)]
revert cmake remove targets from install path
Signed-off-by: Andy Green <andy@warmcat.com>
Andy Green [Fri, 25 Mar 2016 13:03:01 +0000 (21:03 +0800)]
http2 build with alpn capable ssl no debug
Signed-off-by: Andy Green <andy@warmcat.com>
Denis Osvald [Tue, 22 Mar 2016 14:19:10 +0000 (15:19 +0100)]
libuv: handle signals only if requested
Signed-off-by: Denis Osvald <denis.osvald@sartura.hr>
Andy Green [Tue, 22 Mar 2016 01:19:32 +0000 (09:19 +0800)]
v1.7.4
Signed-off-by: Andy Green <andy@warmcat.com>
Andy Green [Fri, 18 Mar 2016 23:48:24 +0000 (07:48 +0800)]
b64decode correct decode of some strings
https://github.com/warmcat/libwebsockets/issues/467
Signed-off-by: Andy Green <andy@warmcat.com>
Alex Hultman [Wed, 16 Mar 2016 22:56:23 +0000 (23:56 +0100)]
Optimize payload exhaustion
https://github.com/warmcat/libwebsockets/pull/462
AG refactor and do loop unrolling
Andy Green [Thu, 17 Mar 2016 00:58:12 +0000 (08:58 +0800)]
appveyor update 1.0.2g
Signed-off-by: Andy Green <andy.green@linaro.org>
Andy Green [Tue, 15 Mar 2016 13:24:04 +0000 (21:24 +0800)]
clang fixes 1
https://github.com/warmcat/libwebsockets/issues/461
Signed-off-by: Andy Green <andy.green@linaro.org>
bjqiwei [Tue, 15 Mar 2016 08:27:49 +0000 (16:27 +0800)]
client perform WSI_CREATE callback
Joakim Soderberg [Sat, 12 Mar 2016 00:49:09 +0000 (08:49 +0800)]
ssl ecdh adapt if missing ecdh.h include
https://github.com/warmcat/libwebsockets/issues/457
Andy Green [Wed, 9 Mar 2016 15:35:41 +0000 (23:35 +0800)]
client ext hdr skip if no arg
https://github.com/warmcat/libwebsockets/issues/453
Signed-off-by: Andy Green <andy.green@linaro.org>
Andy Green [Wed, 9 Mar 2016 02:48:49 +0000 (10:48 +0800)]
release checklist specfile install soname
Signed-off-by: Andy Green <andy.green@linaro.org>
Andy Green [Wed, 9 Mar 2016 02:45:00 +0000 (10:45 +0800)]
rpm specfile so install list bump
Signed-off-by: Andy Green <andy.green@linaro.org>
Andy Green [Tue, 8 Mar 2016 23:47:34 +0000 (07:47 +0800)]
libev set foreign loop properly
After gaby64
https://github.com/warmcat/libwebsockets/issues/455
Signed-off-by: Andy Green <andy.green@linaro.org>
Andy Green [Fri, 4 Mar 2016 02:58:52 +0000 (10:58 +0800)]
windows deal with no snprintf
Signed-off-by: Andy Green <andy.green@linaro.org>
Alex Hultman [Wed, 2 Mar 2016 10:39:37 +0000 (11:39 +0100)]
libuv.c: Service fd with LWS_POLLHUP on poll errors
Ondraco [Mon, 29 Feb 2016 23:33:56 +0000 (07:33 +0800)]
wince minor adaptations
https://github.com/warmcat/libwebsockets/issues/444
Andy Green [Mon, 29 Feb 2016 03:30:07 +0000 (11:30 +0800)]
v1.7.3
Signed-off-by: Andy Green <andy.green@linaro.org>
Andy Green [Mon, 29 Feb 2016 03:11:48 +0000 (11:11 +0800)]
libuv when in use skip shutdown close phase
Signed-off-by: Andy Green <andy.green@linaro.org>
Andy Green [Mon, 29 Feb 2016 02:08:26 +0000 (10:08 +0800)]
windows listen for pollhup
After Ondraco
https://github.com/warmcat/libwebsockets/issues/441
Signed-off-by: Andy Green <andy.green@linaro.org>
Andy Green [Sun, 28 Feb 2016 17:11:08 +0000 (01:11 +0800)]
test server libuv support status protocol
Signed-off-by: Andy Green <andy.green@linaro.org>
Andy Green [Sun, 28 Feb 2016 17:09:01 +0000 (01:09 +0800)]
libuv create 1Hz background timeout check
Signed-off-by: Andy Green <andy.green@linaro.org>
Andy Green [Sun, 28 Feb 2016 03:02:42 +0000 (11:02 +0800)]
ah move more_rx_waiting to wsi scope
Originally this was alright in wsi->u.hdr, because ah implied header
processing. But since we allowed ah to be held across http
keep-alive transactions if we saw we had more header data, it means
we were trying to read this union member out of scope after it had
transitioned.
Moving the more_rx_waiting member to be a 1-bit bifield in the wsi
solves it and lets us check the state any time later at http
transaction completion.
https://github.com/warmcat/libwebsockets/issues/441
Signed-off-by: Andy Green <andy.green@linaro.org>
Kamil Rytarowski [Sat, 27 Feb 2016 02:18:43 +0000 (03:18 +0100)]
Don't include <sys/cdefs.h> for NetBSD
We needed it for the BSD symbol to be defined, while __NetBSD__ is defined
with a compiler.
Thanks Andy Green for the initial fix.
Signed-off-by: Kamil Rytarowski <n54@gmx.com>
Andy Green [Sat, 27 Feb 2016 01:34:48 +0000 (09:34 +0800)]
netbsd netinet include
https://github.com/warmcat/libwebsockets/issues/442
Signed-off-by: Andy Green <andy.green@linaro.org>
Andy Green [Fri, 26 Feb 2016 02:50:04 +0000 (10:50 +0800)]
force service properly when unconsumed rxbuf in ah
Signed-off-by: Andy Green <andy.green@linaro.org>
Andy Green [Thu, 25 Feb 2016 13:55:06 +0000 (21:55 +0800)]
close wsi must do detatch ah flow even if no ah
Signed-off-by: Andy Green <andy.green@linaro.org>
Andy Green [Thu, 25 Feb 2016 13:54:31 +0000 (21:54 +0800)]
improve timeout and ah list comments
Signed-off-by: Andy Green <andy.green@linaro.org>
Andy Green [Thu, 25 Feb 2016 13:54:06 +0000 (21:54 +0800)]
remove ah scan
Signed-off-by: Andy Green <andy.green@linaro.org>
Andy Green [Thu, 25 Feb 2016 12:23:45 +0000 (20:23 +0800)]
fix missing callback return check
Signed-off-by: Andy Green <andy.green@linaro.org>
Andy Green [Thu, 25 Feb 2016 07:15:41 +0000 (15:15 +0800)]
unix privs change group before user
Otherwise we no longer have privs to change the group after doing the user
Signed-off-by: Andy Green <andy.green@linaro.org>
Andy Green [Thu, 25 Feb 2016 07:08:03 +0000 (15:08 +0800)]
test server log LWS_CALLBACK_HTTP
Signed-off-by: Andy Green <andy.green@linaro.org>
Andy Green [Thu, 25 Feb 2016 02:11:01 +0000 (10:11 +0800)]
v1.7.2
Signed-off-by: Andy Green <andy.green@linaro.org>
Andy Green [Thu, 25 Feb 2016 01:27:02 +0000 (09:27 +0800)]
lws status fix LWS_PRE
Signed-off-by: Andy Green <andy.green@linaro.org>
Andy Green [Wed, 24 Feb 2016 13:32:31 +0000 (21:32 +0800)]
defeat POLLOUT if socket in shutdown wait
After andrejs.hanins@ubnt.com
Signed-off-by: Andy Green <andy.green@linaro.org>
Andy Green [Wed, 24 Feb 2016 05:42:12 +0000 (13:42 +0800)]
ws union member must have actual struct at start not pointer
Signed-off-by: Andy Green <andy.green@linaro.org>
Andrejs Hanins [Wed, 24 Feb 2016 11:18:46 +0000 (19:18 +0800)]
client callback closed if not upgraded also for server connection
https://github.com/warmcat/libwebsockets/issues/437
https://github.com/warmcat/libwebsockets/pull/440
Andrejs Hanins [Mon, 22 Feb 2016 15:35:12 +0000 (23:35 +0800)]
client connect must init position_in_fds_table
Andy Green [Sun, 21 Feb 2016 13:41:22 +0000 (21:41 +0800)]
windows doesnt have localtime_r
Signed-off-by: Andy Green <andy.green@linaro.org>
Andy Green [Sun, 21 Feb 2016 07:12:20 +0000 (15:12 +0800)]
test server status no ssl include time header
Signed-off-by: Andy Green <andy.green@linaro.org>
Andy Green [Sun, 21 Feb 2016 05:44:07 +0000 (13:44 +0800)]
test server add lws_status
Signed-off-by: Andy Green <andy.green@linaro.org>
Andy Green [Sun, 21 Feb 2016 05:43:53 +0000 (13:43 +0800)]
LWS_BUILD_HASH improve
Signed-off-by: Andy Green <andy.green@linaro.org>
Andy Green [Sun, 21 Feb 2016 05:43:41 +0000 (13:43 +0800)]
test html add tabs
Signed-off-by: Andy Green <andy.green@linaro.org>
Andy Green [Sun, 21 Feb 2016 02:49:04 +0000 (10:49 +0800)]
libwebsockets.org url updates
Signed-off-by: Andy Green <andy.green@linaro.org>
Sebastian Reimer [Sat, 20 Feb 2016 23:45:03 +0000 (07:45 +0800)]
lwsl stderr sink use formatted time
AG change to use localtime_r for threadsafety and leave old method as fallback
Andy Green [Sat, 20 Feb 2016 23:10:55 +0000 (07:10 +0800)]
ssl get rid of build_cert_chain
It's not supported on major distro SSL (Fedora is 1.1) and
libressl (on 2.x) doesn't have it either.
https://github.com/warmcat/libwebsockets/issues/435
Signed-off-by: Andy Green <andy.green@linaro.org>
Alex Hultman [Sat, 20 Feb 2016 15:01:12 +0000 (16:01 +0100)]
Stop uv loop in default signal handler, clean-ups
Alex Hultman [Sat, 20 Feb 2016 14:32:57 +0000 (15:32 +0100)]
Make sure every handle is closed before destroying the uv loop
Alex Hultman [Sat, 20 Feb 2016 10:58:49 +0000 (11:58 +0100)]
Don't destroy ev/uv loops if they haven't been created yet
Andy Green [Sat, 20 Feb 2016 01:19:54 +0000 (09:19 +0800)]
v1.7.1
Signed-off-by: Andy Green <andy.green@linaro.org>
Andy Green [Sat, 20 Feb 2016 01:13:15 +0000 (09:13 +0800)]
changelog sync
Signed-off-by: Andy Green <andy.green@linaro.org>
Andy Green [Sat, 20 Feb 2016 00:11:35 +0000 (08:11 +0800)]
attack.sh add check for nonexistant file processing
Signed-off-by: Andy Green <andy.green@linaro.org>
Andy Green [Sat, 20 Feb 2016 00:02:49 +0000 (08:02 +0800)]
lws_return_http_status send content length
If we're sending content, we must do so with a
content-length on http/1.1
Signed-off-by: Andy Green <andy.green@linaro.org>
Andy Green [Sat, 20 Feb 2016 00:04:53 +0000 (08:04 +0800)]
test server example systemd service file
Make sure you have daemonization enabled to use this
make .. -DLWS_WITHOUT_DAEMONIZE=0
Signed-off-by: Andy Green <andy.green@linaro.org>
Andy Green [Sat, 20 Feb 2016 00:04:32 +0000 (08:04 +0800)]
daemonize work under systemd
Signed-off-by: Andy Green <andy.green@linaro.org>
Andy Green [Sat, 20 Feb 2016 00:04:09 +0000 (08:04 +0800)]
ah pool lifetime use dynamic rxpos
Signed-off-by: Andy Green <andy.green@linaro.org>
Andy Green [Sat, 20 Feb 2016 00:03:51 +0000 (08:03 +0800)]
test server allow set uid gid from cmdline
Signed-off-by: Andy Green <andy.green@linaro.org>
Andy Green [Thu, 18 Feb 2016 13:02:34 +0000 (21:02 +0800)]
windows plat correct assert test in lws_poll_listen_fd
After https://github.com/warmcat/libwebsockets/issues/430
Signed-off-by: Andy Green <andy.green@linaro.org>
Andy Green [Thu, 18 Feb 2016 11:39:24 +0000 (19:39 +0800)]
test server SSL STS header delivery example
Signed-off-by: Andy Green <andy.green@linaro.org>
Andy Green [Thu, 18 Feb 2016 11:20:02 +0000 (19:20 +0800)]
test server allow only best quality ciphers
Signed-off-by: Andy Green <andy.green@linaro.org>
Andy Green [Wed, 17 Feb 2016 13:11:13 +0000 (21:11 +0800)]
ssl add server ecdh curve init
Using "real" SSL certs requires some init for openssl ECDH
curve. Add a default curve "prime256v1" and allow overriding it
at context creation time.
Signed-off-by: Andy Green <andy.green@linaro.org>
Andy Green [Wed, 17 Feb 2016 04:00:40 +0000 (12:00 +0800)]
test server allow external certs
Allow the test server to use external certs for testing
libwebsockets-test-server --ssl -C libwebsockets.org.crt -K libwebsockets.org.key -A libwebsockets.org.cer
Signed-off-by: Andy Green <andy.green@linaro.org>
Andy Green [Wed, 17 Feb 2016 03:10:39 +0000 (11:10 +0800)]
ssl ecdh check errors properly
Signed-off-by: Andy Green <andy.green@linaro.org>
Andy Green [Tue, 16 Feb 2016 23:47:42 +0000 (07:47 +0800)]
more documentation typos
Signed-off-by: Andy Green <andy.green@linaro.org>
Peter Pentchev [Tue, 16 Feb 2016 13:19:36 +0000 (15:19 +0200)]
Fix some typos.
Andy Green [Tue, 16 Feb 2016 10:47:24 +0000 (18:47 +0800)]
debug reduce noise
Signed-off-by: Andy Green <andy.green@linaro.org>
Andy Green [Tue, 16 Feb 2016 04:32:18 +0000 (12:32 +0800)]
v1.7.0
Signed-off-by: Andy Green <andy.green@linaro.org>
Andy Green [Tue, 16 Feb 2016 05:20:30 +0000 (13:20 +0800)]
appveyor update openssl url
Signed-off-by: Andy Green <andy.green@linaro.org>
Andy Green [Mon, 15 Feb 2016 13:08:18 +0000 (21:08 +0800)]
coverity 158147 test ping sprintf bounds
Well, just in the test app arg processing, but yes...
Signed-off-by: Andy Green <andy.green@linaro.org>
Andy Green [Mon, 15 Feb 2016 13:07:09 +0000 (21:07 +0800)]
coverity 158146 test fraggle sprintf bounds
Well, just in the test app arg processing, but yes...
Signed-off-by: Andy Green <andy.green@linaro.org>
Andy Green [Mon, 15 Feb 2016 13:00:39 +0000 (21:00 +0800)]
coverity 158145 lws_header_table_detatch must handle no ah attached
callers should protect it so this doesn't make a problem. But
Coverity is correct the code is confused about it.
Make it okay if we close a connection before the ah got attached.
Signed-off-by: Andy Green <andy.green@linaro.org>