Commit graph

9825 commits

Author SHA1 Message Date
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
Matthew Wild
6a9eb753e0 util.startup: Configure the GC on startup, using the config or built-in defaults 2020-06-15 14:16:34 +01:00
Matthew Wild
0b812aacb0 util.gc: Linter fixes [luacheck] 2020-06-15 14:23:47 +01:00
Matthew Wild
7ab56e6629 util.gc: New module for configuring the Lua garbage collector 2020-06-15 14:16:10 +01:00
Matthew Wild
ea6374c282 net.http: Add feature discovery (currently just contains SNI) 2020-09-15 09:08:21 +01:00
Kim Alvefur
cfb1daec94 net.server: Backport client parts of SNI support from trunk (#409)
Partial backports of the following commits from trunk:

6c804b6b2ca2 net.http: Pass server name along for SNI (fixes #1408)
75d2874502c3 net.server_select: SNI support (#409)
9a905888b96c net.server_event: Add SNI support (#409)
adc0672b700e net.server_epoll: Add support for SNI (#409)
d4390c427a66 net.server: Handle server name (SNI) as extra argument
2020-08-17 23:01:14 +02:00
Matthew Wild
799d7b3b52 Added tag 0.11.6 for changeset bacca65ce107 2020-09-09 10:23:32 +01:00
Kim Alvefur
302dfe821e mod_s2s: Escape invalid XML in loggin (same way as mod_c2s) fix #1574 2020-08-01 12:58:37 +02:00
Matthew Wild
348d2a8e1c net.http: Add request:cancel() method
This is a new API that should be used in preference to http.destroy_request()
when possible, as it ensures the callback is always called (with an error of
course).

APIs that have edge-cases where they don't call callbacks have, from experience,
shown to be difficult to work with and often lead to unintentional leaks when
the callback was expected to free up certain resources.
2020-08-08 13:13:50 +01:00
Matthew Wild
2e03c08945 net.http: Re-expose destroy_request() function
This was accidentally turned private in 647adfd8f738 as part of refactoring
for Lua 5.2+.
2020-08-08 13:11:11 +01:00
Matthew Wild
41af73564b net.resolvers.basic: Default conn_type to 'tcp' consistently if unspecified (thanks marc0s)
Fixes a traceback when passed an IP address with no conn_type.
2020-07-10 13:00:02 +01:00
Matthew Wild
b3512456a0 net.http: Fix traceback on invalid URL passed to request() 2020-07-07 13:52:25 +01:00
Kim Alvefur
76f3ab72a4 net.http.server: Fix reporting of missing Host header
The "Missing or invalid 'Host' header" case was dead code previously
because `host` was always at least an empty string.
2020-06-23 15:43:57 +02:00
Kim Alvefur
90f2c8519c net.http.server: Strip port from Host header in IPv6 friendly way (fix #1302)
E.g. given `[::1]:5280` it would previously result in only `[` instead
of the correct `[::1]`
2020-06-23 15:39:31 +02:00
Kim Alvefur
f700fbd8f7 util.startup: Remove duplicated initialization of logging (fix #1527) 2020-06-22 14:56:44 +02:00
Kim Alvefur
2246d11149 mod_muc_mam: Don't strip MUC <x> tags, fix #1567 2020-06-21 19:20:54 +02:00
Kim Alvefur
a384654839 mod_auth_internal_*: Apply saslprep to passwords
Related to #1560
2020-05-23 14:17:04 +02:00
Kim Alvefur
cca0d8ed20 util.sasl.plain: Apply saslprep to stored password
Fixes something like #1560 here too.

The password sent by the user already had saslprep applied.
2020-05-22 21:05:45 +02:00
Kim Alvefur
f6bef24491 util.sasl.scram: Apply saslprep before hashing password, fixes #1560 2020-05-22 20:59:01 +02:00
Kim Alvefur
f5d112f832 mod_storage_internal: Fix error in time limited queries on items without 'when' field, fixes #1557 2020-05-15 21:22:35 +02:00
Kim Alvefur
5e6a56e92f mod_muc_mam: Remove spoofed archive IDs before archiving, fix #1552
The stanza-id added during archiving looks exactly like what should be
stripped, so the stripping must happen before archiving.

Getting priorities right is hard!

Also no test coverage yet.
2020-05-11 21:14:02 +02:00
Kim Alvefur
8532c071e4 mod_csi_simple: Consider XEP-0353: Jingle Message Initiation important
Improves experience with VoIP calls initiated via JMI

Closes #1548
2020-05-08 23:47:48 +02:00
Kim Alvefur
d2ea46dcc0 mod_muc_mam: Fix missing advertising of XEP-0359, fixes #1547 2020-05-08 22:39:01 +02:00
Kim Alvefur
b9aa2ccc77 mod_muc_mam: Fix stanza id filter event name, fixes #1546
Nice typo
2020-04-29 18:04:05 +02:00
Kim Alvefur
9a480a1f1a mod_tls: Log when certificates are (re)loaded
Meant to reduce user confusion over what's reloaded and not.
2020-04-26 20:58:51 +02:00
Kim Alvefur
347a7b20c9 mod_carbons: Fix handling of incoming MUC PMs #1540
27f5db07bec9 fixed this wrong. The code is supposed to check if the
stanza is NOT sent to your bare JID. A MUC PM is always sent to your
full JID. Hopefully nobody sends MUC invites to full JIDs, because those
would be skipped by this as well.
2020-04-26 20:39:39 +02:00
Kim Alvefur
29a4d0f107 mod_http_files: Avoid using inode in etag, fix #1498 2020-04-25 20:55:00 +02:00
Matthew Wild
848f4af9ed MUC tests: Add missing affiliation attribute 2020-04-23 13:44:47 +01:00
Matthew Wild
d8998ad43d Backed out changeset 18f2c7bc5795 (was testing against wrong branch) 2020-04-23 13:43:29 +01:00
Matthew Wild
016f6e3cb5 MUC tests: Add <required/> to expected form field 2020-04-23 13:29:23 +01:00
Matthew Wild
5d4025bf01 MUC: Always include 'affiliation'/'role' attributes, defaulting to 'none' if nil 2020-04-23 13:16:25 +01:00
Kim Alvefur
c9cf442b30 core.certmanager: Move EECDH ciphers before EDH in default cipherstring (fixes #1513)
Backport of 94e341dee51c

The original intent of having kEDH before kEECDH was that if a `dhparam`
file was specified, this would be interpreted as a preference by the
admin for old and well-tested Diffie-Hellman key agreement over newer
elliptic curve ones. Otherwise the faster elliptic curve ciphersuites
would be preferred. This didn't really work as intended since this
affects the ClientHello on outgoing s2s connections, leading to some
servers using poorly configured kEDH.

With Debian shipping OpenSSL settings that enforce a higher security
level, this caused interoperability problems with servers that use DH
params smaller than 2048 bits. E.g. jabber.org at the time of this
writing has 1024 bit DH params.

MattJ says
> Curves have won, and OpenSSL is less weird about them now
2019-08-25 20:22:35 +02:00
Kim Alvefur
f00f039f4b util.prosodyctl: Tell prosody do daemonize via command line flag (fixes #1514)
Backport of 88be11e9f9b9
2020-01-26 16:40:21 +01:00
Kim Alvefur
82c2f6fe22 core.certmanager: Look for privkey.pem to go with fullchain.pem (fix #1526)
This makes
`prosodyctl cert import example.com /path/to/example.com/fullchain.pem`
work. This was never intended to, yet users commonly tried this and got
problems.
2020-04-10 16:11:09 +02:00
Kim Alvefur
8c3758b34c mod_vcard4: Report correct error condition (fixes #1521)
On error, the second return value is the error condition, not the third.
2020-04-03 22:35:47 +02:00
Emmanuel Gil Peyrot
e985473ef7 mod_register_ibr: Add FORM_TYPE as required by XEP-0077 (fixes #1511)
Backport of f90abf142d53 from trunk
2019-09-29 15:05:17 +02:00
Kim Alvefur
a94da35eb0 mod_storage_sql: Add index covering sort_id to improve performance (fixes #1505) 2020-03-22 21:05:59 +01:00