Commit graph

9920 commits

Author SHA1 Message Date
Kim Alvefur
846862e1e7 mod_c2s: Improve code style
We don't use the quoted table indexing style that often, it's not needed
here and it's enough to check for falsyness rather than `nil`.
2021-03-18 16:23:47 +01:00
Kim Alvefur
b5f808c769 mod_c2s: Fix traceback in session close when conn is nil
Unclear how this happens.
2021-03-17 12:47:16 +01:00
tmolitor
a7cc31c6bb mod_saslauth: Don't throw errors in async code when connections are gone
Fixes #1515
2021-03-18 14:30:47 +01:00
tmolitor
2b0c472f87 mod_c2s: Don't throw errors in async code when connections are gone
Fixes #1507
2021-03-18 14:30:32 +01:00
Kim Alvefur
aa9e2741d5 mod_http: Restore ip field for requests without proxies
8603011e51fe optimized out more than just the loop, leaving the .ip
field blank when the request wasn't from a proxy.
2021-02-27 20:45:45 +01:00
Kim Alvefur
e52a77ff84 mod_http: Fix trusted proxies check (thanks buildbot)
is_trusted_proxy() is only in trunk, I dun goofed when I rebased
8603011e51fe from trunk.
2021-02-18 14:34:38 +01:00
Kim Alvefur
80116bf0e3 mod_http: Skip IP resolution in non-proxied case
Skips doing the whole get_ip_from_request() dance if the request isn't
from a proxy at all, even if the client sent the header for some reason.
2021-02-18 12:00:00 +01:00
Kim Alvefur
269069faa6 Tag 0.11.8 2021-02-15 18:16:07 +01:00
Kim Alvefur
f01247ec56 mod_pep: Advertise base pubsub feature (fixes #1632)
Noticed while discussing feature discovery in Gajim
Thanks lovetox
2021-02-15 16:29:13 +01:00
Kim Alvefur
1f45b63544 util.interpolation: Fix combination of filters and fallback values #1623 2021-01-25 20:58:11 +01:00
Kim Alvefur
f36531b53a 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
5cf3eea245 net.server_epoll: Fix off-by-one in 2c559953ad41
Thanks tmolitor
2021-01-10 14:54:03 +01:00
Kim Alvefur
365e5b0cb4 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
861e5125c7 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
7f7ec9e1ed 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
db3c36c69d 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
4bceaa2443 MUC: Fix logic bug causing unnecessary presence to be sent, fixes #1615 (thanks damencho) 2020-12-15 13:36:08 +00:00
Kim Alvefur
f4c821cc4a 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
15b64ea4ff 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
b62216fab3 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
a247cea4df util.promise: Use xpcall() for promise function to preserve tracebacks 2020-11-23 20:38:51 +00:00
Kim Alvefur
8328e6681e util.stanza: Reject ASCII control characters (fixes #1606) 2020-11-11 16:00:41 +01:00
Kim Alvefur
63f44f3640 mod_pubsub: Fix notification stanza type setting (fixes #1605) 2020-11-06 13:49:40 +01:00
Kim Alvefur
ce3e3808f5 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
01c5bf5529 util.dbuffer: Optimize :sub() and :byte() 2020-10-28 14:21:09 +00:00
Matthew Wild
a095a0c533 util.debug: Fix locals being reported under wrong stack frame in some cases (+tests!!) 2020-10-16 13:38:04 +01:00
Kim Alvefur
20fc0c9c15 Back out changeset 2c1583bb0e0f
Same reason as 712b2e6a09d9
2020-10-15 17:21:58 +02:00
Kim Alvefur
bad47be8f9 Back out 6dde2c9fa272: Doesn't work on Lua 5.1 2020-10-15 17:12:33 +02:00
Kim Alvefur
9b8a54345f 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
da8eca639a 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
d5161fbf6f util.strbitop: Add tests covering basics
Also as docs
2020-10-15 16:41:51 +02:00
Kim Alvefur
539255c692 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
64856637ce net.websocket.frames: Add test for empty frame with MASK and key set 2020-10-15 14:01:22 +01:00
Kim Alvefur
00bad1a9fe net.websocket.frames: Use C string XOR implementation 2020-10-14 19:41:42 +02:00
Kim Alvefur
fb1808b185 util.strbitop: Library for bitwise operations on strings 2019-09-07 13:37:47 +02:00
Kim Alvefur
d69cf3b007 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
518904b66c 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
fb63187afc 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
d3b3e21720 util.dbuffer: Expose length as :len() method, like strings
Ref #1598
2020-10-12 20:20:02 +02:00
Kim Alvefur
0e0a75de4e MUC: Preserve disco 'node' attribute (or lack thereof) in response (fix #1595) (thanks lessthan3) 2020-10-07 13:33:02 +02:00
Kim Alvefur
c91cc915b6 util.dependencies: Check for bitop library same way as net.websocket.frames (fixes #1594) 2020-10-05 22:12:29 +02:00
Kim Alvefur
1a0df81387 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
62eee94e2b mod_bosh: Ensure that stream is directed to a VirtualHost (fixes #425) 2020-10-03 15:03:09 +02:00
Kim Alvefur
8f2b039615 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
e55d037cdf Added tag 0.11.7 for changeset ece430d49809 2020-10-01 15:08:58 +01:00
Kim Alvefur
c90918837e mod_c2s,mod_s2s: Make stanza size limits configurable 2020-05-31 22:39:34 +02:00
Matthew Wild
f5f2a709cd Merge 2020-09-30 09:46:30 +01:00
Waqas Hussain
80beeeb187 util.indexedbheap: Fix heap datastructure corruption in :reschedule(smaller_value) 2020-09-29 21:27:16 -05:00
Matthew Wild
a481251b29 mod_websocket: Refactor frame validity checking, also check partially-received frames against constraints 2020-09-29 15:18:32 +01:00
Matthew Wild
a0fb8d876f net.websocket.frames: Additionally return partial frame if there is one 2020-09-29 13:58:32 +01:00