Commit graph

5044 commits

Author SHA1 Message Date
Kim Alvefur
168197a05f plugins: Update for namespace bump in XEP-0353 v0.4.0 2022-01-11 17:51:26 +01:00
Kim Alvefur
8fbf286e64 mod_admin_shell: Add descriptions of each column to 'help columns'
Since some of the titles are quite dense
2022-01-30 12:49:43 +01:00
Kim Alvefur
b5a87898ee mod_admin_shell: Use exact match instead of Lua patterns in c2s,s2s:show
It is unexpected that 'example.com' matches 'exampleicom.org' and this
use of Lua patterns is undocumented and unlikely to be widely known or
used.
2022-01-30 11:10:51 +01:00
Kim Alvefur
ca19260145 mod_http_file_share: Use alternate syntax for filename in Content-Disposition
The Lua string.format %q doesn't behave correctly for all characters
that should be escaped in a quoted-string. And who knows what effects
higher Unicode might have here.

Applying percent-encoding of filenames seems like the safest way to deal
with filenames, as well as being easier than implementing the actual
quoted-string transform, which seems complicated and I'm not even sure
it covers every possible character.

Filenames can safely be assumed to be UTF-8 since they are passed in an
attribute in the query without any escaping.
2022-01-29 16:11:38 +01:00
Kim Alvefur
46ad556ca0 mod_admin_shell: Fix traceback on rendering graph of stats without extra labels
Stops an error when extra_labels is nil since it attempts to index it

Unsure about correctness
2022-01-29 15:01:38 +01:00
Kim Alvefur
d9f7b26328 mod_admin_shell: Add help section about stats 2022-01-29 14:58:37 +01:00
Kim Alvefur
09d7e131d0 mod_admin_shell: Add help section about customizing table columns 2022-01-28 20:39:13 +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
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
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
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
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
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
Matthew Wild
65dff38bbb mod_storage_xep0227: Allow overriding the input/output layer for XEP-0227 data
This can (and will) be used to support in-memory import/export functions.
2022-01-10 15:47:59 +00:00
Kim Alvefur
125249a322 mod_bookmarks: Skip migration of legacy data when empty
Should save some cycles and not log the debug message on every login.
2022-01-10 00:13:17 +01:00
Kim Alvefur
939e49685c mod_bookmarks: Make sure legacy bookmarks node exists to hold access model 2022-01-10 00:11:36 +01:00
Kim Alvefur
8a53094a7d mod_bookmarks: Broadcast notifications per XEP-0048 and XEP-0411
For compatibility with clients relying on the notifications
2022-01-09 18:42:22 +01:00
Kim Alvefur
475ab4aed2 mod_bookmarks: Add option for disabling upgrade of legacy bookmarks
Might be nice to reduce amount of things happening on connect once
all users has upgraded
2022-01-08 00:32:33 +01:00
Kim Alvefur
1fa49be063 mod_bookmarks: Unhook PEP service objects on removal from cache
See 1dc00ca6ee9d
2022-01-08 00:30:26 +01:00
Kim Alvefur
8a97d634a4 util.pubsub: Fix item store resize to "max"
Previously this would end up passing the "max" directly to the
underlying storage.
2022-01-06 01:18:35 +01:00
Emmanuel Gil Peyrot
b5b67241e0 mod_bookmarks: Override the node configuration if it was wrong 2022-01-06 00:59:40 +01:00
Kim Alvefur
f1dd97cb9c mod_invites: Comment on module loading for HTTP invite URLs 2022-01-05 22:37:42 +01:00
Emmanuel Gil Peyrot
91172308d6 mod_bookmarks: Remove compatibility with 0.11 2022-01-04 23:16:02 +01:00
Emmanuel Gil Peyrot
be16e27957 mod_bookmarks: Import mod_bookmarks2 from prosody-modules @ ad7767a9f3ea 2022-01-04 23:04:14 +01:00
Kim Alvefur
1385404fee mod_invites_adhoc: Import from prosody-modules@5001104f0275 2022-01-05 04:37:14 +01:00
Kim Alvefur
40c2fa85d2 mod_invites_register: Import from prosody-modules@797b51043767 2021-12-29 00:12:26 +01:00
Kim Alvefur
3cffb62920 mod_invites: Silence luacheck warning 2022-01-05 20:43:18 +01:00
Kim Alvefur
93578db96d mod_invites: Import from prosdy-modules@5fc306239db3 2021-12-27 20:46:34 +01:00
Kim Alvefur
64c385c9f7 mod_smacks: Log error to silence luacheck 2021-12-31 00:59:10 +01:00
Kim Alvefur
f017e61543 mod_smacks: Limit "old" session resumption counters
Doing this when creating a whole new session seems reasonable because it
is already expensive and this is when it may be adding to the old
session store, while a successful resumption should be plus-minus zero.
2021-12-31 00:48:38 +01:00