Commit graph

12223 commits

Author SHA1 Message Date
Kim Alvefur
c4e87ac9fb README: Reflow text to ~78 columns
It's what `gwl` in my vim did. Must be optimal then.
2022-01-28 14:19:05 +01:00
Kim Alvefur
f5d2ee89b1 INSTALL: Update from site version 2022-01-28 11:57:58 +01:00
Kim Alvefur
dccab4e10f util.format: Expand explanation of purpose in comments 2022-01-27 21:40:13 +01:00
Kim Alvefur
c551d3d8dd util.format: Skip control code escaping when doing full serialization
Fixes that a multi-line string ended up "like\
\9this" instead of "like\nthis" as can be demonstrated by somehow
initiating a connection to a HTTP server.
2022-01-27 21:14:22 +01:00
Kim Alvefur
d607d2898f util.prosodyctl.cert: Look for certs matching 'http_host'
This should ensure any certificate needed for HTTP services will also be
included in the certificate import.
2022-01-27 16:23:26 +01:00
Kim Alvefur
cde551332e util.prosodyctl.check: Fix use of LuaSocket URL parser 2022-01-27 12:52:01 +01:00
Kim Alvefur
0448e82513 util.prosodyctl.check: Add HTTP related DNS checks
Since XEP-0363 is essentially mandatory now this will hopefully help
diagnose some common issues.
2022-01-27 12:36:50 +01:00
Kim Alvefur
04910e15b6 util.prosodyctl.cert: Look for certificates in a consistent order
Shortest first, then alphabetically, so that it prefers the base domain
over subdomains.

Fixes that it might otherwise pick a random sub-domain for filename on
each run, cluttering the certs directory and potentially tricking
Prosody into using an older certificate that might be about to expire.
2022-01-26 13:24:23 +01:00
Kim Alvefur
b0e565598a mod_pubsub: Allow configuring summary templates
Enables generation of summaries for more than Atom without additional
modules.
2022-01-24 23:06:45 +01:00
Kim Alvefur
c8ea4743f2 mod_pubsub: Use the util.xtemplate to render Atom summary 2022-01-24 23:04:38 +01:00
Kim Alvefur
7e65b1deef util.xtemplate: Yet another string template library
This one takes a stanza as input

Roughly based on util.interpolation
2022-01-24 23:54:32 +01:00
Kim Alvefur
55da054c9b mod_pubsub: Use the 'pubsub#type' setting to pick summary generator
Allows using different ones even if multiple semantically different
formats share the same root element xmlns, e.g. generic Atom and
XEP-0277 entries.
2022-01-24 23:05:26 +01:00
Kim Alvefur
c0be43a098 mod_tls: Set ALPN on outgoing connections
Relevant and sometimes needed for Direct TLS which mod_s2s uses this
context for. Primarily when e.g. mod_net_multiplex or equivalent ALPN
based dispatch is used.

All these contexts should likely move away from mod_tls and into either
mod_s2s or portmanager. The later already duplicates some of this work.
2022-01-25 13:20:26 +01:00
Kim Alvefur
7a706aecec mod_admin_shell: Add command to show current user roles 2022-01-23 20:06:50 +01:00
Kim Alvefur
1809c0460f mod_admin_shell: Add help section about roles
As in the argument to user:create() and user:roles()

Tricky to come up with something sensible to write when Prosody core
only knows of the 'prosody:admin' role so far.
2022-01-23 19:55:32 +01:00
Kim Alvefur
90215f635b mod_s2s: Retrieve TLS context for outgoing Direct TLS connections from mod_tls
So that the same TLS context is used for both Direct TLS and starttls,
since they are supposed to be functionally identical apart from the few
extra round trips.

A new event is added because the 's2s-created' event fires much later,
after a connection has already been established, where we need the TLS
context before that.
2022-01-21 18:42:38 +01:00
Kim Alvefur
268dfa38c0 mod_s2s: Enable outgoing Direct TLS connections
Makes it faster by cutting out the roundtrips involved in <starttls/>,
at the cost of making an additional SRV lookup.

Since we already ignore a missing <starttls/> offer and try anyway there
is not much difference in security. The fact that XMPP is used and the
hostnames involved might still be visible until the future Encrypted
ClientHello extension allows hiding those too.
2022-01-21 17:59:19 +01:00
Kim Alvefur
9f1af0be2e net.connect: Allow passing TLS context from resolver
Only allowing it to be passed directly makes it hard to combine plain
(i.e. starttls) and Direct TLS connections in the same connection
resolution procedure. But now we can, using chained resolvers!
2022-01-21 17:57:47 +01:00
Kim Alvefur
f31762a075 net.resolvers.chain: A resolver for combining other resolvers
Say if you wanted to try both _xmpp and _xmpps services
2022-01-21 17:56:20 +01:00
Kim Alvefur
991e6531ab Merge 0.11->trunk 2022-01-20 13:02:24 +01:00
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
Kim Alvefur
41e0ddd791 util.prosodyctl.cert: Check success of copy operations, warn on fail
Debugging a case where certs are not imported correctly but prosodyctl
still reports success. Hoping this will shed some light on it.
2022-01-19 10:28:09 +01:00
Kim Alvefur
2a1f14fc26 util.prosodyctl.cert: Pass variables via formatting instead of concatenation
Prevents potential weirdness in case there's any %s or such in a host,
file or directory name, since show_warning() is printf().
2022-01-19 10:26:43 +01:00
Kim Alvefur
456d91e7d7 tools/xep227toprosody: Remove obsolete tool in favor of storage driver
This tool hasn't been updated for recent XEP-0227 changes, hasn't seen
many changes at all since its introduction and I don't remember anyone
mentioning ever using it.

Using mod_storage_xmlarchive and the migrator or the 3rd party
mod_migrate tool should work better these days and should be the way
forward.
2022-01-18 15:43:17 +01:00
Kim Alvefur
73c3ab7888 core.certmanager: Use 'tls_profile' instead of 'tls_preset' to match documentation
Confusion!

Thanks Martin
2022-01-18 11:52:35 +01:00
Kim Alvefur
8edd063114 core.certmanager: Apply TLS preset before global settings (thanks Menel)
Allows overriding settings via the global 'ssl' settings as before.
This order was probably accidental. That said, 'ssl' is a giant footgun
we will want to discourage use of.
2022-01-18 08:04:16 +01:00
Matthew Wild
d595ebf9e1 mod_storage_xep0227: Fix luacheck warning 2022-01-17 14:18:27 +00:00
Matthew Wild
2e538ffc6b mod_storage_xep0227: Fix traceback during iteration of driver stores
:include(other_set), :add(item)
2022-01-17 14:12:45 +00:00
Matthew Wild
ee1f7077e3 mod_storage_xep0227: Fix file export (missing parameter) from refactor in 270047afa6af 2022-01-17 14:11:45 +00:00
Kim Alvefur
a798505a97 mod_http: Increase severity of loading unreachable http modules
This is either caused by an earlier failure to bind http/s ports, in
which case that should be corrected, or explicitly disbling the http/s
ports, in which case ... why enable http modules?

Suggested by jonas’
2022-01-15 17:37:07 +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
77630b72ff mod_http: Skip querying portmanager when http_external_url when is set
When http_external_url is set then the portmanager usage only really
serves as a check of whether any http service is enabled at all.

Should allow generating an URL from prosodyctl when http_external_url is
set.
2021-11-27 12:26:15 +01:00
Kim Alvefur
cced954ac3 util.jid: Explicitly check for nil rather than falsy
A boolean false should blow up.
2022-01-15 16:25:25 +01:00
Jonas Schäfer
91055b49bb mod_storage_xep0227: treat roster metadata pseudo-entry correctly
The roster version is stored in a pseudo-item which has the key `false`.
The if condition in the touched code attempts to guard against this, but
it does not take into account that the jid prepping returns nil instead
of false.

By moving the jid prepping into the if, we can check for the metadata
entry safely.
2022-01-15 15:40:29 +01:00
Jonas Schäfer
bb100ed33e mod_storage_xep0227: be defensive against empty vCard
An empty vCard store may look like the empty table, which does not have
the `attr` key, which would then blow up in util.stanza.deserialize.
2022-01-15 15:39:13 +01:00
Kim Alvefur
b187489802 mod_http: Limit unencrypted http port (5280) to loopback by default
Since accessing this port directly over the wider Internet is unlikely
to intentional anymore.  Most uses will likely be by reverse proxies, by
mistake or because of trouble configuring HTTPS.

Blocking mistaken uses is just a good thing, letting users send
potentially private things unencrypted tends to be Strongly Discouraged
these days.

Many reverse proxy setups operate over loopback, so listening there
instead of all interfaces is a net improvement.

Improved automatic certificate location and SNI support has mostly
eliminated the need for manual certificate configuration so HTTPS should
Just Work once certificates have been provided.

For local testing during development, connecting over loopback is likely
fine as well. When really needed, `http_interfaces` can still be set.

Suggested by Link Mauve
2022-01-15 15:13:41 +01:00
Kim Alvefur
e0e180aa9d mod_cron: Allow for a small amount of timer drift
If the timer activates a bit early then a task might be just a few
seconds short of being allowed to run. This would run such a task rather
than wait another hour.

The value 0.5% chosen so that a weekly task does not run an entire hour
earlier than last time.
2022-01-15 09:09:24 +01:00
Matthew Wild
9767804146 mod_storage_xep0227: Fix luacheck warnings 2022-01-14 17:00:13 +00:00
Matthew Wild
843e4ad49d mod_storage_xep0227: Add API to iterate all stores of a user 2022-01-14 16:57:19 +00:00
Matthew Wild
2d0db1b0a3 mod_storage_xep0227: Skip self-contacts on roster import 2022-01-14 16:55:18 +00:00
Jonas Schäfer
e0b15fcba3 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
ec9ec1b9a0 mod_http_file_share: Always measure total disk usage for statistics!
Metrics available or not depending on configuration is weird, even tho
it might be expensive to calculate and it's only really needed when
there is a global quota.

Default quota is set to infinity, which is essentially what it was.

Reports NaN if there is an error, which should count as over the
infinite default quota.
2022-01-11 04:15:29 +01:00
Kim Alvefur
2a0311098c mod_bookmarks: Fix traceback on attempt to convert invalid bookmark
Found by accidentally publishing {urn:xmpp:bookmarks:0}conference
instead of :1 due to testing this earlier for the blocking.

By the principle of garbage in, garbage out, just generate a bookmark
from the item id / JID and carry on with a warning.
2022-01-11 00:06:48 +01:00
Kim Alvefur
ba50691289 mod_bookmarks: Block publishing to older XEP-0402 v0.3.0 node
Having both the :0 and :1 nodes would be especially awkward, since there
is no upgrade path for this case. In theory, these should be rare since
no clients should have been doing XEP-0402 unless mod_bookmarks(2) was
enabled. This was guesstimated to be rare with most clients doing
XEP-0048 with Private XML.
2022-01-10 22:15:55 +01:00
Kim Alvefur
bdd8dddff5 mod_storage_xep0227: Fix writing non-user data
Attempt to concatenate nil 'user'

Not much data actually makes sense but the migrator tries to write or
clear these.
2022-01-10 16:53:58 +01:00
Matthew Wild
e65e3cad0f mod_storage_xep0227: Ignore luacheck warning 2022-01-10 15:50:55 +00:00
Matthew Wild
68636e702c mod_storage_xep0227: Support for exporting nodes with no stored configuration 2022-01-10 15:48:45 +00:00