Commit graph

9920 commits

Author SHA1 Message Date
Matthew Wild
71256641f4 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
364146dbb1 mod_websocket: Enforce stanza size limit and close stream 2020-09-17 16:42:36 +01:00
Matthew Wild
3c0924eee1 mod_websocket: Add separate limit for frame buffer size 2020-09-17 16:42:14 +01:00
Matthew Wild
a4e9e4815c mod_websocket: handle full frame buffer and raise stream error 2020-09-17 16:41:48 +01:00
Matthew Wild
5a1c206ece 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
3989ff2ddc 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
095c4f8344 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
91d42d3218 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
254b65a030 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
c313b10cd9 util.startup: Configure the GC on startup, using the config or built-in defaults 2020-06-15 14:16:34 +01:00
Matthew Wild
42ff12bb04 util.gc: Linter fixes [luacheck] 2020-06-15 14:23:47 +01:00
Matthew Wild
9277a27ce4 util.gc: New module for configuring the Lua garbage collector 2020-06-15 14:16:10 +01:00
Matthew Wild
047f03ec09 net.http: Add feature discovery (currently just contains SNI) 2020-09-15 09:08:21 +01:00
Kim Alvefur
93d0d13fbb 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
5da7c3dac3 Added tag 0.11.6 for changeset bacca65ce107 2020-09-09 10:23:32 +01:00
Kim Alvefur
63b5689d50 mod_s2s: Escape invalid XML in loggin (same way as mod_c2s) fix #1574 2020-08-01 12:58:37 +02:00
Matthew Wild
dc206f0ff4 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
11e49af5e8 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
a80cdecc46 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
bfd9789cb1 net.http: Fix traceback on invalid URL passed to request() 2020-07-07 13:52:25 +01:00
Kim Alvefur
540be50a3c 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
48c9a60d19 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
bd36651336 util.startup: Remove duplicated initialization of logging (fix #1527) 2020-06-22 14:56:44 +02:00
Kim Alvefur
28f0267645 mod_muc_mam: Don't strip MUC <x> tags, fix #1567 2020-06-21 19:20:54 +02:00
Kim Alvefur
71c6728e69 mod_auth_internal_*: Apply saslprep to passwords
Related to #1560
2020-05-23 14:17:04 +02:00
Kim Alvefur
a7083d1ded 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
5dd049acf0 util.sasl.scram: Apply saslprep before hashing password, fixes #1560 2020-05-22 20:59:01 +02:00
Kim Alvefur
faa381e3ed 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
031e272a9c 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
b8779399f6 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
ed4cc77c76 mod_muc_mam: Fix missing advertising of XEP-0359, fixes #1547 2020-05-08 22:39:01 +02:00
Kim Alvefur
e0a9efae01 mod_muc_mam: Fix stanza id filter event name, fixes #1546
Nice typo
2020-04-29 18:04:05 +02:00
Kim Alvefur
7c18043404 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
156f32c823 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
58663a07ca mod_http_files: Avoid using inode in etag, fix #1498 2020-04-25 20:55:00 +02:00
Matthew Wild
145f8fbad7 MUC tests: Add missing affiliation attribute 2020-04-23 13:44:47 +01:00
Matthew Wild
fef49a627e Backed out changeset 18f2c7bc5795 (was testing against wrong branch) 2020-04-23 13:43:29 +01:00
Matthew Wild
7d8f93d688 MUC tests: Add <required/> to expected form field 2020-04-23 13:29:23 +01:00
Matthew Wild
57124da02a MUC: Always include 'affiliation'/'role' attributes, defaulting to 'none' if nil 2020-04-23 13:16:25 +01:00
Kim Alvefur
5291ea4c7c 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
375b817e8a 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
96620cafe5 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
710339a838 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
7484fb15cb 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
65a654d726 mod_storage_sql: Add index covering sort_id to improve performance (fixes #1505) 2020-03-22 21:05:59 +01:00
Kim Alvefur
89af997157 mod_admin_telnet: Handle unavailable cipher info (fixes #1510)
The LuaSec :info() method gathers info using the OpenSSL function
SSL_get_current_cipher(). Documentation for this function states that it
may return NULL if no session has been established (yet). If so, the
LuaSec functions wrapping this return nil, triggering a nil-indexing
error in mod_admin_telnet.
2020-03-22 17:35:26 +01:00
Matthew Wild
520e494813 MUC: Persist affiliation_data in new MUC format! 2020-03-12 20:32:07 +00:00
Kim Alvefur
e3911ce5da mod_mam,mod_muc_mam: Allow other work to be performed during archive cleanup (fixes #1504)
This lets Prosody handle socket related work between each step in the
cleanup in order to prevent the server from being completely blocked
during this.

An async storage backend would not need this but those are currently
rare.
2020-03-11 21:15:01 +01:00
Kim Alvefur
e59b70638c net.server_epoll: Fix indentation
Some lines seem to have gotten the wrong indentation, possibly caused by
Meld which often ignores lines with only whitespace changes and leaves
their previous indentation.
2020-03-11 18:07:03 +01:00
Kim Alvefur
042b514235 mod_pubsub, mod_pep: Ensure correct number of children of <item/> (fixes #1496) 2020-02-27 20:01:54 +01:00