Commit graph

9861 commits

Author SHA1 Message Date
Kim Alvefur
206be83885 util.interpolation: Fix combination of filters and fallback values #1623 2021-01-25 20:58:11 +01:00
Kim Alvefur
0303e09dbb net.adns: Prevent empty packets from being sent on "connect" (fix #1619)
Thanks Ge0rG for testing
2021-01-12 13:25:08 +01:00
Kim Alvefur
0f3dae441b net.server_epoll: Fix off-by-one in 2c559953ad41
Thanks tmolitor
2021-01-10 14:54:03 +01:00
Kim Alvefur
a7c018ed86 util.timer: Ensure timers can't run more than once per tick (fixes #1620)
See longer explanation in 2c559953ad41
2021-01-08 23:23:56 +01:00
Kim Alvefur
1bf1a1ba69 net.server_epoll: Ensure timers can't run more than once per tick
This makes sure that a timer that returns 0 (or less) does not prevent
runtimers() from completing, as well as making sure a timer added with
zero timeout from within a timer does not run until the next tick.

Thanks tmolitor
2021-01-08 21:57:19 +01:00
Kim Alvefur
24e57b7590 util.stanza: Move misplaced argument to correct place
valid_utf8() takes only one argument, so the false was probably meant
to be valid_xml_cdata(text, attribute=false)
2020-12-24 17:57:28 +01:00
Kim Alvefur
a0b5b349a6 mod_s2s: Fix copypaste mistake in b3ae48362f78
Directly sending something over s2s needs to use sends2s() but the code
copied from mod_c2s had .send()
2020-12-16 08:50:20 +01:00
Matthew Wild
b501b46962 MUC: Fix logic bug causing unnecessary presence to be sent, fixes #1615 (thanks damencho) 2020-12-15 13:36:08 +00:00
Kim Alvefur
507554e685 mod_s2s: Prevent whitespace keepalives the stream has been opened
This will result in the stream timing out instead, which is probably
correct if the stream has not been opened yet.

This was already done for c2s in e69df8093387

Thanks Ge0rG
2020-12-10 11:53:10 +01:00
Kim Alvefur
bc31871529 mod_saslauth: Only advertise channel binding if a finished message is available
In some cases this method returns nothing, unclear why.
2020-11-23 21:52:46 +01:00
Kim Alvefur
cc0e5dc34b mod_saslauth: Disable 'tls-unique' channel binding with TLS 1.3 (closes #1542)
The 'tls-unique' channel binding is undefined in TLS 1.3 according to a
single sentence in parenthesis in Apendix C of RFC 8446

This may trigger downgrade protection in clients that were expecting
channel binding to be available.
2020-11-23 21:42:52 +01:00
Matthew Wild
6d9006436e util.promise: Use xpcall() for promise function to preserve tracebacks 2020-11-23 20:38:51 +00:00
Kim Alvefur
7a1c57ac6b util.stanza: Reject ASCII control characters (fixes #1606) 2020-11-11 16:00:41 +01:00
Kim Alvefur
bb70517315 mod_pubsub: Fix notification stanza type setting (fixes #1605) 2020-11-06 13:49:40 +01:00
Kim Alvefur
33776b811d mod_pubsub: Lower priority of default <body> generator
in order to avoid conflict with a handler at the default (0) priority,
making it easier to write your own formatting in plugins.

this follows the common pattern of default modules having lower priority
2020-11-05 22:27:17 +01:00
Matthew Wild
0b9a8e9ac3 util.dbuffer: Optimize :sub() and :byte() 2020-10-28 14:21:09 +00:00
Matthew Wild
667b367b5f util.debug: Fix locals being reported under wrong stack frame in some cases (+tests!!) 2020-10-16 13:38:04 +01:00
Kim Alvefur
022725ee9a Back out changeset 2c1583bb0e0f
Same reason as 712b2e6a09d9
2020-10-15 17:21:58 +02:00
Kim Alvefur
a7da61a180 Back out 6dde2c9fa272: Doesn't work on Lua 5.1 2020-10-15 17:12:33 +02:00
Kim Alvefur
1ea5b454e7 util.strbitop: Remove redundant init function
When you have 3 almost identical functions, you tend to edit one and
then copypaste. Forgot to remove this line from the other two.
2020-10-15 17:05:53 +02:00
Kim Alvefur
b85eec8763 util.strbitop: Create buffer in the correct size (optimization)
This avoids dynamically growing the buffer as Lua does when luaL_addchar
is used, thus saving on realloc calls.
2020-10-15 16:43:30 +02:00
Kim Alvefur
2b119eadb8 util.strbitop: Add tests covering basics
Also as docs
2020-10-15 16:41:51 +02:00
Kim Alvefur
00c763eed0 util.strbitop: Reformat code
astyle \
	--indent=tab \
	--attach-classes \
	--indent-switches \
	--break-blocks \
	--pad-oper \
	--unpad-paren \
	--add-braces \
	--align-pointer=name \
	--lineend=linux \
	*.c
2020-10-15 16:26:56 +02:00
Matthew Wild
aaf61ce16d net.websocket.frames: Add test for empty frame with MASK and key set 2020-10-15 14:01:22 +01:00
Kim Alvefur
2fa0aa06d5 net.websocket.frames: Use C string XOR implementation 2020-10-14 19:41:42 +02:00
Kim Alvefur
5d87a7d46f util.strbitop: Library for bitwise operations on strings 2019-09-07 13:37:47 +02:00
Kim Alvefur
2f28ade873 net.websocket.frames: Add small test covering xor-masking
This is basically a recording of current behavior, to detect changes.
2020-10-14 19:02:48 +02:00
Matthew Wild
3aa0f12f41 net.http.server: Don't send Content-Length on 1xx/204 responses, per RFC (fixes #1596) 2020-10-13 11:55:28 +01:00
Kim Alvefur
ee30af806d net.websocket.frames: Read buffer length correctly in Lua 5.1 (fix #1598)
COMPAT: The __len metamethod does not work with tables in Lua 5.1.

Both strings and util.dbuffer now expose their length as a :len()
method.
2020-10-12 20:21:18 +02:00
Kim Alvefur
8f3d5ab4fb util.dbuffer: Expose length as :len() method, like strings
Ref #1598
2020-10-12 20:20:02 +02:00
Kim Alvefur
687d48da48 MUC: Preserve disco 'node' attribute (or lack thereof) in response (fix #1595) (thanks lessthan3) 2020-10-07 13:33:02 +02:00
Kim Alvefur
93b40432fe util.dependencies: Check for bitop library same way as net.websocket.frames (fixes #1594) 2020-10-05 22:12:29 +02:00
Kim Alvefur
6411b17b59 MUC: Correct advertising of subject write access (really fixes #1155)
Thanks pep. and lovetox

XEP-0045 §6.4:
> any field defined for the muc\#roomconfig FORM_TYPE can be included in
> the extended service discovery fields

Probably happened because the same mistake is in #1155
2020-10-04 18:00:32 +02:00
Kim Alvefur
0bac63e373 mod_bosh: Ensure that stream is directed to a VirtualHost (fixes #425) 2020-10-03 15:03:09 +02:00
Kim Alvefur
03066936bc mod_bosh: Pick out the 'wait' before checking it instead of earlier
Going to add more host related checks, so to keep the wait variable
closer to the related checks
2020-10-03 14:59:11 +02:00
Matthew Wild
d3f0b6e038 Added tag 0.11.7 for changeset ece430d49809 2020-10-01 15:08:58 +01:00
Kim Alvefur
958854febd mod_c2s,mod_s2s: Make stanza size limits configurable 2020-05-31 22:39:34 +02:00
Matthew Wild
4051f5e653 Merge 2020-09-30 09:46:30 +01:00
Waqas Hussain
771534a2e4 util.indexedbheap: Fix heap datastructure corruption in :reschedule(smaller_value) 2020-09-29 21:27:16 -05:00
Matthew Wild
1b29c3c9f9 mod_websocket: Refactor frame validity checking, also check partially-received frames against constraints 2020-09-29 15:18:32 +01:00
Matthew Wild
4836410c4f net.websocket.frames: Additionally return partial frame if there is one 2020-09-29 13:58:32 +01:00
Matthew Wild
15aaf9446b mod_websocket: Continue to process data already in the buffer after an error occurs
Previously any error, or even a normal websocket close frame, would return early,
leaving potentially entire frames in the buffer unprocessed and then discarded.

This change stops processing new data, but returns an existing processed data up
to the point of the error/close.
2020-09-28 16:36:12 +01:00
Matthew Wild
e7f545bae6 mod_websocket: Enforce stanza size limit and close stream 2020-09-17 16:42:36 +01:00
Matthew Wild
359de0c75d mod_websocket: Add separate limit for frame buffer size 2020-09-17 16:42:14 +01:00
Matthew Wild
6b5f159103 mod_websocket: handle full frame buffer and raise stream error 2020-09-17 16:41:48 +01:00
Matthew Wild
bd7d32aa8d mod_websocket: Switch partial frame buffering to util.dbuffer
This improves performance and enforces stanza size limits earlier
in the pipeline.
2020-09-17 13:04:46 +01:00
Matthew Wild
8a24ec9653 net.websocket.frames: Allow all methods to work on non-string objects
Instead of using the string library, use methods from the passed object,
which are assumed to be equivalent.

This provides compatibility with objects from util.ringbuffer and
util.dbuffer, for example.
2020-09-17 13:00:19 +01:00
Kim Alvefur
0b1193317b util.dbuffer: Simplify test case
An earlier theory involved the bug being related to collapsing multiple
items, so it exercised that too.

Also correct the comment, it referred to the space in "hello world" in
an earlier version before the test string was changed to "foobar", which
was what was tested in a REPL
2020-08-24 17:28:48 +02:00
Matthew Wild
83e593ac2b util.dbuffer: Fix :sub() not working with partially-consumed chunks (thanks Zash for test case)
This also appears to fix some bugs with chunk-encoded streams in net.http.parser.
2020-08-24 16:18:13 +01:00
Matthew Wild
b0d2bea61e util.dbuffer: dynamic string buffer
Similar to util.ringbuffer (and shares almost identical API). Differences:

- size limit is optional and dynamic
- does not allocate a fixed buffer of max_size bytes
- focus on simply storing references to existing string objects where possible,
  avoiding unnecessary allocations
- references are still stored in a ring buffer to enable use as a fast FIFO

Optional second parameter to new() provides the number of ring buffer segments. On
Lua 5.2 on my laptop, a segment is ~19 bytes. If the ring buffer fills up, the next
write will compact all strings into a single item.
2020-06-26 16:41:31 +01:00