Commit graph

13748 commits

Author SHA1 Message Date
Kim Alvefur
9005d35b48 util.pubsub: Add method returning subset of config as metadata
Allows granting read only access to other sets of users using a separate
access control capability, which makes sense as some properties may be
intended to be public but read-only.
2024-11-08 02:11:00 +01:00
Matthew Wild
ef342f9734 Merge 0.12->trunk 2024-11-08 10:31:25 +00:00
Kim Alvefur
664895700d mod_http_file_share: Revert 9c62ffbdf2ae
No, that wasn't running in a thread, but in a next tick timer.
2024-11-02 23:08:28 +01:00
Kim Alvefur
95dddbdea1 Merge 0.12->trunk 2024-11-02 22:33:38 +01:00
Kim Alvefur
2c61955e3a mod_smacks: Destroy timed out session in async context (fixes #1884)
Prevents ASYNC-01 due to storage interactions in a timer.

Also considered modifying mod_c2s to allow passing arbitrary closures
into its runner thread but this seems like a big step away from the
current code for just this module.

Also considered creating a dedicated runner in mod_smacks, but ensuring
continuity across module reloads might be tricky.

We could further improve this in the next major version.
2024-11-02 18:10:25 +01:00
Kim Alvefur
ad83ddfb78 mod_admin_shell: Reject attempt to add or remove roles for unrelated hosts
The three-argument version seems to be a left-over from 0.12
2024-11-01 13:10:45 +01:00
Kim Alvefur
e47e8e7ec7 mod_authz_internal: Hint at roles for external JIDs being read-only
Roles for JIDs outside the current host are derived from configuration
only with this module.
2024-11-01 13:08:35 +01:00
Kim Alvefur
577e6d8370 mod_admin_shell: Allow assigning roles to arbitrary JIDs when supported
mod_authz_internal does not support this
2024-11-01 13:07:25 +01:00
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