Commit graph

9805 commits

Author SHA1 Message Date
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
Kim Alvefur
4a257f3ce6 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
ffe0b57c6c MUC: Persist affiliation_data in new MUC format! 2020-03-12 20:32:07 +00:00
Kim Alvefur
650690f1e2 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
27849cec9e 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
d84f765d04 mod_pubsub, mod_pep: Ensure correct number of children of <item/> (fixes #1496) 2020-02-27 20:01:54 +01:00
Kim Alvefur
85ce63a7a7 mod_muc_mam: Fix traceback saving message from non-occupant (fixes #1497)
Caused by a plugin sending a message from the room itself.
2020-02-27 19:42:51 +01:00
Kim Alvefur
aa740e0573 util.datamanager: Fix iterating over "users" (thanks marc0s)
The 'store' path componend used to be unescaped until 756a2a00e7e7 added
escaping to address issues with characters like '/' used in PEP, but
with a special case for '_' which was already in common use in 'store'
path components.

Missed adding this escaping here.
2020-02-24 23:16:08 +01:00
Kim Alvefur
a86d458923 mod_storage_sql: Move update limit check back one step, fixes traceback
0c00274528a4 moved it one step too far, so the check was performed
before connecting to the database instead of after.
2020-02-22 16:23:43 +01:00
Kim Alvefur
79d2e2b8ad mod_storage_sql: Fix check for deletion limits (fixes #1494)
The check was only performed if sql_manage_tables was set to true (the default)
It should always be performed
2020-02-21 23:00:44 +01:00
Matthew Wild
a64d9f4b58 mod_muc: Allow control over the server-admins-are-room-owners feature (see #1174) 2020-02-13 14:27:12 +00:00
Kim Alvefur
706f04ea33 mod_admin_telnet: Create a DNS resolver per console session (fixes #1492)
This is now the common pattern, eg see mod_s2s.
2020-01-24 23:27:49 +01:00
Matthew Wild
1977d05e22 mod_websocket: Fire event on session creation (thanks Aaron van Meerten) 2020-01-24 16:21:30 +00:00
Matthew Wild
a703f27284 prosodyctl: Fix some luacheck warnings 2020-01-23 21:59:13 +00:00
Matthew Wild
348f638b3a Log warning when using prosodyctl start/stop/restart 2020-01-23 21:43:36 +00:00
Kim Alvefur
9f1d1dd30b Merge 2020-01-20 19:51:49 +01:00
Matthew Wild
e3cfa62306 Added tag 0.11.5 for changeset dbd60f473164 2020-01-19 16:09:16 +00:00
Matthew Wild
09ae4c1b33 util.startup: Ensure prosody.opts exists even when no options provided 2020-01-19 15:50:32 +00:00
Matthew Wild
3a1998a4e4 util.startup: Remove accidentally-committed debugging 2020-01-19 15:50:16 +00:00
Matthew Wild
e7b09a7cc9 util.startup: Fix logic to make --config work again 2020-01-19 15:39:13 +00:00
Matthew Wild
7c65f89960 mod_posix: Support for command-line flags to override 'daemonize' config option
-D / --daemonize
-F / --no-daemonize
2020-01-19 15:28:09 +00:00