Commit graph

9920 commits

Author SHA1 Message Date
Kim Alvefur
785d327308 util.xml: Deduplicate handlers for restricted XML
Makes the code more like util.xmppstream, allowing easier comparisons if
we ever need to apply fixes in the future.
2022-01-20 10:51:46 +01:00
Kim Alvefur
d17619344d util.xml: Break reference to help the GC (fix #1711)
LuaExpat uses a registry reference to track handlers, which makes
it so that an upvalue like this creates a reference loop that keeps the
parser and its handlers from being garbage collected. The same issue has
affected util.xmppstream in the past.

Code for checking:

	local xml_parse = require"util.xml".parse;
	for i = 1, 10000 do xml_parse("<root/>") end
	collectgarbage(); collectgarbage();
	print(collectgarbage("count"), "KiB");

A future release of LuaExpat may fix the underlying issue there.
2022-01-20 09:57:20 +01:00
Matthew Wild
695fb9b8fb Added tag 0.11.12 for changeset 783056b4e448 2022-01-13 12:18:49 +00:00
Jonas Schäfer
23a43df6fb util.xml: Do not allow doctypes, comments or processing instructions
Yes. This is as bad as it sounds. CVE pending.

In Prosody itself, this only affects mod_websocket, which uses util.xml
to parse the <open/> frame, thus allowing unauthenticated remote DoS
using Billion Laughs. However, third-party modules using util.xml may
also be affected by this.

This commit installs handlers which disallow the use of doctype
declarations and processing instructions without any escape hatch. It,
by default, also introduces such a handler for comments, however, there
is a way to enable comments nontheless.

This is because util.xml is used to parse human-facing data, where
comments are generally a desirable feature, and also because comments
are generally harmless.
2022-01-10 18:23:54 +01:00
Kim Alvefur
e812ce9b4a Tag 0.11.11 2021-12-20 16:24:52 +01:00
Kim Alvefur
ca08584d74 mod_pep: Wipe pubsub service on user deletion
Data is already wiped from storage, but this ensures everything is
properly unsubscribed, possibly with notifications etc.

Clears recipient cache as well, since it is no longer relevant.
2021-11-04 01:00:06 +01:00
Kim Alvefur
db0e630ad7 mod_pep: Prevent creation of services for non-existent users
Using a dedicated service should give identical behavior, except for a
possible timing difference in the user existence lookup.
2021-11-04 00:55:59 +01:00
Kim Alvefur
4a89e829d4 mod_pep: Limit possible growth of node subscription info 2021-11-04 00:36:41 +01:00
Kim Alvefur
cc03265206 mod_pep: Limit possible growth of number of pubsub services 2021-11-04 00:35:44 +01:00
Kim Alvefur
a4491e8bd9 mod_pep: Don't pass pubsub services across reloads
Ensures configuration is refreshed, releases some memory.
2021-11-04 00:33:58 +01:00
Kim Alvefur
577c21a269 net.server_epoll: Process all queued events from epoll before timers
Should call timers less frequently when many sockets are waiting for
processing. May help under heavy load.

Requested by Ge0rG

Backport of 2bcd84123eba requested by Roi
2021-10-21 15:59:16 +02:00
Kim Alvefur
7ba9ee013c util.startup: Correctly point out unknown short param (fixes #1691) 2021-10-12 14:53:45 +02:00
Kim Alvefur
cdea694e0d Merge wayward 0.11.10 tag commit 2021-10-01 00:21:49 +02:00
Kim Alvefur
24111569bb net.server_epoll: Add a hard deadline on shutdown to extra-fix #1670
Should ensure shutdown even if sockets somehow take a very long to get closed.
2021-09-20 14:38:08 +02:00
Kim Alvefur
6d5ff6d2be net.server_epoll: Close sockets added after shutdown signal (fixes #1670)
This should ensure that sockets get closed even if they are added after
the quit signal. Otherwise they may keep the server alive.
2021-09-20 14:42:18 +02:00
Kim Alvefur
8fe336b4a1 prosodyctl: Fix later import of LuaFileSystem
lfs or WHAT

How did this even happen?
2021-09-11 22:26:50 +02:00
Kim Alvefur
6be7cf935f net.server_epoll: Fix to preserve ids of readded timers
Likely affected rescheduling but have no reports of this.

After readding a timer, it would have been issued a new id. Rescheduling
would use the previous id, thus not working.
2021-08-31 12:58:38 +02:00
Lucas
5f69d4a129 makefile: fix prosody.version target
POSIX is quite explicit regarding the precedence of AND-OR lists [0]:

> The operators "&&" and "||" shall have equal precedence and shall be
> evaluated with left associativity. For example, both of the following
> commands write solely `bar` to standard output:
>       false && echo foo || echo bar
>       true || echo foo && echo bar

Given that, `prosody.version` target behaves as

	((((((test -f prosody.release && cp ...) ||
	    test -f ...) &&
	    sed ...) ||
	    test -f ...) &&
	    hexdump ...) ||
	    echo unknown > $@)

In the case of release tarballs, `prosody.release` does exist, so the
first AND pair is executed. Given that it's successful, then the first
`test -f` in the OR pair is ignored, and instead the `sed` in the AND
pair is executed. `sed` success, as `.hg_archival.txt` exists, making
the second `test -f` in the OR pair ignored, and `hexdump` in the AND
pair is executed. Now, given that `.hg` doesn't exist, it fails, so the
last `echo` is run, overwriting `prosody.version` with `unknown`.

This can be worked around placing `()` around the AND pairs. Decided to use
conditionals instead, as I think they better communicate the intention
of the block.

[0]: https://pubs.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#tag_18_09_03
2021-08-15 04:10:36 +00:00
Kim Alvefur
5ec33a42c1 Tag 0.11.10 2021-08-03 11:44:31 +02:00
Kim Alvefur
00735e4759 MUC: Fix logic for access to affiliation lists
Fixes https://prosody.im/security/advisory_20210722/

Backs out 4d7b925652d9
2021-07-22 17:18:39 +02:00
Matthew Wild
6367311519 mod_c2s: Indicate stream secure state in error text when no stream features to offer 2021-07-06 08:18:28 +01:00
Kim Alvefur
59d820880f util.ip: Fix netmask for link-local address range
This may have mistakenly caused link-local addresses to be considered
global.  May have caused mod_s2s and prosodyctl check dns to behave
incorrectly on networks using link-local IPv4 addresses. By my
guesstimate, these are extremely rare.  Probably minimal impact beyond
a bit longer to establish s2s and some possible confusion from
prosodyctl check dns results.

Ref RFC 3927
2021-07-03 03:27:57 +02:00
Kim Alvefur
13c5a2359d prosodyctl: Add 'limits' to known globals to warn about misplacing it
It will do nothing in a VirtualHost section for example.
2021-05-27 12:35:55 +02:00
Kim Alvefur
0c6f17043f mod_pep: Remove obsolete node restoration code (now done by util.pubsub)
Originally added in 202b9951b037 but util.pubsub gained a better method
in 6c2c2fc4b8dd since then, which mod_pep uses since 9194431b6447 which
should have deleted this.

All these :create calls would have failed with a 'conflict' error, since
the nodes had already been created. This was never noticed because of
missing error handling.

Also note that this code did not restore node configuration.
2021-05-16 16:14:23 +02:00
Kim Alvefur
0e1bf3c061 util.pubsub: Fix traceback if node data not initialized
This should not be possible, but a traceback indicating node_data being
nil here was reported by Ron in the chat.
2021-05-16 16:02:00 +02:00
Matthew Wild
a95576d485 Added tag 0.11.9 for changeset d0e9ffccdef9 2021-05-12 16:42:51 +01:00
Kim Alvefur
c2ce30433a mod_dialback: Remove d-w-d feature
Backs out 1d0862814bfc and 2fdd71b08126

Largely unused, undocumented and did not have enough tests to provide
confidence in its correct operation.
2021-05-12 17:22:02 +02:00
Kim Alvefur
1cd5049c77 mod_dialback: Use correct host for certificate check (fixes #1381) 2019-06-23 16:16:26 +02:00
Matthew Wild
0a3d796623 mod_dialback: Use constant-time comparison with hmac 2021-05-12 14:00:53 +01:00
Matthew Wild
0d3dc2e522 mod_proxy65: Restrict access to local c2s connections by default
Previously no 'proxy65_acl' option would allow unrestricted access by local or
remote JIDs.
2021-05-12 13:59:49 +01:00
Matthew Wild
6f6c807bdf mod_limits: Use default limits if none configured 2021-05-11 14:22:59 +01:00
Matthew Wild
6d15e34180 prosody.cfg.lua.dist: Enable rate limits by default 2021-05-11 14:17:12 +01:00
Matthew Wild
3fd3d2cd99 prosodyctl about: Report libexpat version if known 2021-05-11 14:15:22 +01:00
Matthew Wild
f0c2ed1201 certmanager: Disable renegotiation by default
This requires LuaSec 0.7+ and OpenSSL 1.1.1+
2021-05-11 14:14:15 +01:00
Matthew Wild
08f721a072 mod_limits: Don't emit error when no burst period is configured 2021-05-11 14:10:26 +01:00
Kim Alvefur
b369dea3d8 core.certmanager: Test for SSL options in absence of LuaSec config 2021-04-26 15:32:05 +02:00
Kim Alvefur
a174420e52 core.certmanager: Attempt to directly access LuaSec config table
Due to a bug this field was not properly exported before
See https://github.com/brunoos/luasec/issues/149
2021-04-26 15:30:13 +02:00
Matthew Wild
92cec56e97 util.xmppstream: Allow dynamically configuring the stanza size limit for a stream
This may be useful for any plugins that want to experiment with different policies
for stanza size limits (e.g. unauthenticated vs authenticated streams).
2021-05-10 17:03:27 +01:00
Matthew Wild
7cb3ec61d5 util.xmppstream: Mark bytes for stream closure as handled 2021-05-10 17:02:37 +01:00
Matthew Wild
1e42cdef09 MUC: Add support for advertising muc#roomconfig_allowinvites in room disco#info
The de-facto interpretation of this (undocumented) option is to indicate to
the client whether it is allowed to invite other users to the MUC.

This is differs from the existing option in our config form, which only
controls the behaviour of sending of invites in a members-only MUC (we always
allow invites in open rooms).

Conversations is one client known to use this disco#info item to determine
whether it may send invites.
2021-05-10 17:01:38 +01:00
Matthew Wild
6a54d2d2c4 mod_auth_internal_{plain,hashed}: Use constant-time string comparison for secrets 2021-05-10 16:50:24 +01:00
Matthew Wild
d126ee88bc util.xmppstream: Reduce default xmppstream limit to 1MB 2021-05-10 16:44:55 +01:00
Matthew Wild
06161ab766 util.set: Add is_set() to test if an object is a set 2021-05-10 16:41:56 +01:00
Matthew Wild
f5460a5037 util.hashes: Add constant-time string comparison (binding to CRYPTO_memcmp) 2021-05-10 16:24:54 +01:00
Matthew Wild
4c4e764e23 mod_c2s, mod_s2s, mod_component, mod_bosh, mod_websockets: Set default stanza size limits
c2s/bosh/ws streams will default to 256KB, s2s and components to 512KB.

These values are aligned with ejabberd's default settings, which should reduce
issues related to inconsistent size limits between servers on the XMPP network.

The previous default (10MB) is excessive for any production server, and allows
significant memory usage by even unauthenticated sessions.
2021-05-07 17:03:49 +01:00
Matthew Wild
4c7989e7e4 util.startup: Set more aggressive defaults for GC
Testing has demonstrated that the default GC parameters are not
sufficient to prevent runaway memory growth when running under Lua 5.2
and Lua 5.3.

Setting the GC speed to 500 was tested on Lua versions 5.1->5.4 and did
not display unbounded memory growth.
2021-05-07 16:41:39 +01:00
Matthew Wild
e9b383cdb2 prosodyctl: check config: Add 'gc' to list of global options 2021-04-30 21:20:14 +01:00
Kim Alvefur
f1550b900d mod_saslauth: Use a defined SASL error 2021-03-18 16:16:54 +01:00
Kim Alvefur
139cafdbaf mod_saslauth: Improve code style
This many returns deserve their own line.

`session["sasl_handler"]` style isn't used anywhere else.
2021-03-18 16:17:45 +01:00
Kim Alvefur
72cb2e0362 mod_c2s: Log about missing conn on async state changes 2021-03-18 16:24:46 +01:00