Commit graph

13739 commits

Author SHA1 Message Date
Kim Alvefur
77833e7394 scansion: Remove publisher attribute from bookmarks2 tests
Seems exposing publisher is not enabled in mod_pep, but then it'll be
the user themselves most of the time
2024-10-31 17:18:43 +01:00
Kim Alvefur
12b787430a scansion: Import XEP-0402 test from prosody-modules rev 2c6b14207271
This corresponds to the file mod_bookmarks2/tests/bookmarks2.scs
2024-10-31 17:22:38 +01:00
Stephen Paul Weber
d477528e67 util.crypto: Add more ECC methods
pkey_meth_derive: to derive a shared symmetric key from two ECC keys
pkey_meth_public_raw: to get the raw form of the public key
import_public_ec_raw: to import the raw form of the public key
generate_p256_keypair: key generation for the P-256 curve
2024-10-29 09:15:50 -05:00
Kim Alvefur
25754509f4 util.pubsub: Fix test to account for not using util.error 2024-10-29 15:05:14 +01:00
Kim Alvefur
c175dc8265 mod_pubsub: Move precondition error wrangling out of util.pubsub
Removes dependency on util.error from util.pubsub which was only used
for this one special case.

Line count reduction!

Would be even nicer if templating could be done by util.error itself.
2024-10-29 14:56:02 +01:00
Kim Alvefur
73b512d3a6 util.error: Use is_error() instead of is_err() everywhere
Continuation of 4b39691a274e
2024-10-29 14:10:02 +01:00
Kim Alvefur
ff05b0773d mod_pubsub: Allow passing additional error context
Sometimes it is useful to pass additional information along.
2024-10-27 15:23:45 +01:00
Kim Alvefur
9dd5775dce mod_pubsub: Use error registry
This is what util.error was made for!

This replaces the custom error stanza builder with common code in
util.stanza that knows enough about util.error and namespaced errors.

Some awkwardness remains in the way util.pubsub returns conflicting
form fields.
2024-10-27 15:18:24 +01:00
Kim Alvefur
91f9db5ffc doap: Update XEP for mostly editorial changes
XEP-0004: Changes <reported> which is not implemented
XEP-0030: A note on some implementations not advertising disco#info
XEP-0106: Now references PRECIS which we don't have access to
XEP-0107: Editorial fixing of a typo
XEP-0133: Removal of 'Get User Password' already done in 21a1b9fb08a1, editorial changes
XEP-0153: Editorial changes
XEP-0198: Editorial changes and clarifications
XEP-0223: Updated security considerations
XEP-0292: The difference is that the iq syntax implemented in mod_vcard4 is removed. To become compliant, simply unload this module.
XEP-0313: Editorial and minor changes
XEP-0398: Advanced to Stable, no other changes
XEP-0398: Now mentions the implementation method used in mod_vcard_legacy
XEP-0402: Changes only affecting clients
XEP-0421: Added requirements we already satisfy
XEP-0440: Editorial changes
XEP-0478: Editorial changes

Due to their size, review of changes to XEP-0045 and XEP-0060 has been left for later.
2024-10-26 18:06:49 +02:00
Kim Alvefur
2de66b31bd util.dnsregistry: Refresh from IANA
For freshness. Not that it matters a lot for Prosody
2024-10-26 14:44:06 +02:00
Kim Alvefur
a7cff6b464 Merge 0.12->trunk 2024-10-26 12:43:53 +02:00
Kim Alvefur
a63544d6cf mod_invites_adhoc: Add password reset command
To support cases where the admin does not have easy access to the
command line to generate a password reset invite for someone who forgot
their password.
2024-10-20 12:11:21 +02:00
Menel
bd90f33e28 Add Info about mod_announce in the CHANGES file of trunk 2024-10-21 17:15:06 +02:00
Kim Alvefur
2ef0e122fd util.xtemplate: Use same argument order in filters even without 'args'
This removes the different argument order used between '{x|foo}' and
'{x|foo(y)}' because the differing order was awkward and confusing.

This util does not seem to be widely used so should not be problematic
to change this part. The only known use is in mod_pubsub, which does not
use the filter function feature.
2024-10-16 16:15:05 +02:00
Kim Alvefur
eb612ac519 mod_pubsub: Check new role framework for node creation privileges
This enables granting regular users permission to create nodes via the
new roles framework. Previously this required either making everyone an
admin or writing a custom mod_pubsub variant with different permission
details.

Previous default behavior of only allowing creation by admin is kept as
to not give out unexpected permissions on upgrade, but could be
reevaluated at a later time.

Fixes #1324
2024-10-13 13:03:08 +02:00
Aidan Epstein
f964cc51bb mod_admin_adhoc: Fix log messages for reloading modules.
Also rename for loop item so that it doesn't shadow module variable.
2024-09-29 18:09:17 -07:00
Aidan Epstein
712540db35 MUC: Fix error with nonlegacy hats. 2024-09-28 12:38:42 -07:00
Kim Alvefur
98795d0b6e mod_csi: Update correct variables when counting states 2024-09-21 22:07:36 +02:00
Kim Alvefur
07d96d6b75 mod_csi: Use same label name for gauge as for older counter
Consistency.
2024-09-06 20:49:44 +02:00
Kim Alvefur
84ca2bd960 Merge 0.12->trunk 2024-08-30 18:16:01 +02:00
Kim Alvefur
ad41d2b5d8 mod_admin_shell: Prevent traceback due to type error
Here too
2024-08-26 22:26:59 +02:00
Kim Alvefur
8362c4824e mod_s2s: Fix traceback due to type confusion (Thanks Menel)
The code assumed a 2-d sparse array but it could also be a string.
2024-08-26 19:21:03 +02:00
Kim Alvefur
df1e43d1ad Merge 0.12->trunk 2024-08-18 17:01:47 +02:00
Kim Alvefur
65386e9810 core.moduleapi: Default labels to empty list to fix error if omitted
In a host-scoped module in the `if is_scoped` clause the resulting
`array:append(nil)` call throws.
2024-08-18 16:58:30 +02:00
Kim Alvefur
ce8b91e4a7 mod_csi: Optimize metrics collection (prematurely)
I did not measure, but this should be way fewer function calls.
2024-08-18 16:56:36 +02:00
Kim Alvefur
8d00eaa0c7 mod_csi: Rename unused loop variables to '_' [luacheck] 2024-08-17 23:15:14 +02:00
Kim Alvefur
0a910917e7 mod_csi: Count how many sessions are using CSI and their state 2024-08-17 23:13:28 +02:00
Kim Alvefur
4ca4a6af7d mod_s2s_bidi: Include empty list of labels in metrics
Throws error attempting to append the nil label list to an array for
host-scoped metrics.
2024-08-16 18:39:46 +02:00
Kim Alvefur
9327c4342a Merge 0.12->trunk 2024-08-16 17:06:41 +02:00
Kim Alvefur
ffbf4e39d2 mod_s2s_bidi: Collect some metrics 2024-08-11 17:25:47 +02:00
Kim Alvefur
04f45b1afa mod_auth_internal_{hashed,plain}: Respect flag for disabled accounts in test_password()
This API method is used e.g. in HTTP modules which also should respect
disabled accounts.
2024-08-09 20:23:46 +02:00
Kim Alvefur
4f7c829b1e net.http: Throw error if missing TLS context for HTTPS request
Prevents the mistake of creating a http context without any TLS context
and then trying to use HTTPS, which doesn't work right.

Thanks nils
2024-08-08 19:18:22 +02:00
Kim Alvefur
73aed09475 mod_c2s,mod_s2s: Advertise idle-seconds per XEP-0478
This is the time after liveness checks are performed via the respective
read-timeout event, which by default involves sending a space character
but could be overridden e.g. as is done by mod_smacks.

Only advertised, unsure what we would do with it.
2024-08-03 16:28:59 +02:00
Emmanuel Gil Peyrot
a719f5897c mod_invites: Fix traceback when token_info isn’t set 2024-07-31 22:06:18 +02:00
Kim Alvefur
f7d0caa5ac util.prosodyctl.cert: Ensure old cert is moved out of the way
This should make it visible if the move fails
2024-08-30 17:41:40 +02:00
Kim Alvefur
cf446f4188 core.certmanager: Include ffdhe2048 from RFC 7919 as default DH param
This removes one manual (yet undocumented) step that was supposed to be
done to get a complete 'intermediate' configuration.

This file can be found on the Internet by searching for "ffdhe2048" and
can be verified by comparing the hexadecimal representation of p from
the RFC with the output of `openssl asn1parse`.

Given the preference and prevalence of ECDHE, it seems likely that few
would have noticed this.
2024-07-12 15:06:42 +02:00
Kim Alvefur
dd657746b4 util.sslconfig: Support DH parameters as literal string
Simplifies shipping well-known DH parameters in the config
2024-07-12 15:21:08 +02:00
Kim Alvefur
b9cfebff24 Merge 0.12->trunk 2024-07-11 15:25:57 +02:00
Kim Alvefur
bb278430cf util.xtemplate: Fix error on applying each() to zero stanzas
Backport of 1f93e4f78c53
2024-07-11 15:24:19 +02:00
Kim Alvefur
8a96854733 util.xtemplate: Fix error on applying each() to zero stanzas 2024-07-11 15:04:29 +02:00
Kim Alvefur
b522fd0e05 Merge 0.12->trunk 2024-07-07 18:40:25 +02:00
Kim Alvefur
ca417ab776 net.server_event: Add 'wrapserver' API
This enables accepting admin stream socket (UNIX) connections trough the
same procedures as any other (TCP) socket, which avoids problems caused
by using the wrapclient API, which ends up discarding early data due to
only expecting early connection failure.

Fixes #1867
2024-07-07 18:28:17 +02:00
Matthew Wild
29148cfe9c MUC: Don't default component admins to being room owners
This change has various technical and social benefits. If ownership of a MUC
is really needed, it can be gained using the 'Set affiliation' ad-hoc command
or prosodyctl shell.

Example client incompatibility with the old behaviour:

  - https://github.com/monal-im/Monal/issues/1085
2024-06-18 15:08:30 +01:00
Kim Alvefur
11bc995c0b scansion: Enable blocklist compat during tests to fix CI 2024-06-12 23:00:24 +02:00
Matthew Wild
aa6b79c20c MUC: Add per-room PM restriction functionality (thanks Wirlaburla)
Based on mod_muc_restrict_pm in prosody-modules d82c0383106a
2024-05-23 17:39:20 +01:00
Kim Alvefur
5915d6fbcd Merge 0.12->trunk 2024-06-12 23:20:48 +02:00
Kim Alvefur
935de9b5e7 scansion: Add roster groups setting to pubsub form in tests 2024-06-12 23:14:55 +02:00
Kim Alvefur
4701e73a72 util.prosodyctl: Use notify socket to wait for Prosody to be ready
Previously, prosodyctl only waits for the pidfile to appear, which does
not necessarily mean that Prosody is fully ready to receive traffic.

By waiting until Prosody says it's ready via the systemd notify socket
we know for sure that Prosody is really ready.

Notably this should ensure that when running `make integration-test`
Prosody is really ready when Scansion starts running tests.

Not sure if this timeout handling is optimal.
2024-05-19 13:06:55 +02:00
Kim Alvefur
2647c56106 net.server_epoll: Add support for systemd socket activation
Allows creating listening sockets and accepting client connections
before Prosody starts.
This is unlike normal Prosody dynamic resource management, where ports
may added and removed at any time, and the ports defined by the config.

Weird things happen if these are closed (e.g. due to reload) so here we
prevent closing and ensure sockets are reused when opened again.
2024-05-14 17:07:47 +02:00
Kim Alvefur
58af0798b7 Merge 0.12->trunk 2024-04-27 15:59:46 +02:00