Commit graph

13727 commits

Author SHA1 Message Date
Kim Alvefur
ab148f782f muc: Update link to XEP-0421 (instead of inbox) 2024-11-23 16:46:34 +01:00
Matthew Wild
9de5f1149b mod_smacks: Run session destruction code in session's async context
This is the Right Thing and should fix various potential issues and race
conditions.
2024-11-21 17:02:55 +00:00
Matthew Wild
6bbfcd801a mod_c2s, mod_s2s: Support for queuing callbacks to run in session thread
This allows certain session-specific code that needs to run in the async
context, but is itself triggered outside of that context (e.g. timers), to
be queued.

An example of this is the session destruction code of mod_smacks, when the
hibernation timeout is reached.
2024-11-21 17:02:07 +00:00
Matthew Wild
a3b71e8fc9 util.pposix: Add fdopen() to return a Lua file object from an fd
Now we can, for example, read/write pipes using Lua's standard I/O routines.
2024-11-20 12:08:59 +00:00
Kim Alvefur
19429a5e7d mod_smacks: Fix previous commit for case of no session found 2024-11-19 00:57:24 +01:00
Kim Alvefur
fff5a91e37 mod_smacks: Prevent traceback on attempting to resume destroyed session
This shouldn't be possible, but seems to happen anyway after net.server
somehow calling the close handler twice, which also should not happen.
2024-11-19 00:53:01 +01:00
Kim Alvefur
61b0c0cd3a net.server_epoll: Don't try to flush buffer on closed connections
Attempt to fix a bug where connections are somehow closed twice, leading
to bad things happening elsewhere.

With LuaSec, closed connections are generally already too closed to
write anything to anyway since it does not support unidirectional
shutdown.
2024-11-19 00:41:02 +01:00
Kim Alvefur
ff00c6707f net.server_epoll: Revert opportunistic_writes tweak
Added in f0b2c026e542 and not sure why
2024-11-19 00:31:21 +01:00
Kim Alvefur
885fde62be util.stanza: Handle Clark notation for attributes in :find() 2024-11-17 13:40:20 +01:00
Kim Alvefur
00584c4d61 util.stanza: Handle namespace prefixes for attributes in :find()
More correct handling of namespaces here.

This works with both prefixes from the parser and hacky .attr["foo:bar"]
2024-11-17 12:35:51 +01:00
Jonas Schäfer
b9f73bc724 util.datamanager: fix duplicated word in log message 2024-11-16 09:20:29 +01:00
Jonas Schäfer
9f53fd30a9 mod_roster: do not store number in attribute
Attributes are strings. That definitely is a number. So we
tostring() it. This is important when the API becomes stricter,
for whatever reason that might happen.

Practically, this moves the overhead of converting to a string
to a place where it is visible.
2024-11-16 09:12:11 +01:00
Kim Alvefur
4bf9c26a26 core.loggingmanager: Bump expected util.pposix version
Otherwise no syslog or console detection
2024-11-16 14:35:36 +01:00
Kim Alvefur
35e92231f8 util.startup: Bump expected util.pposix version
Otherwise Prosody refuses to start.
2024-11-16 14:35:11 +01:00
Matthew Wild
6480651a93 util.pposix: Add pipe() (with support for pipe2() flags on Linux) 2024-11-16 12:26:55 +00:00
Kim Alvefur
7b8f6e3c3e mod_admin_shell: Report when a module is already loaded
Hopefully less confusing than "Module loaded onto 0 hosts"
2024-11-15 15:52:37 +01:00
Kim Alvefur
53edd95324 mod_admin_shell: Refactor end of module:load
Meant to improve clarity and make improving easier
2024-11-15 15:48:07 +01:00
Matthew Wild
d89b7fa672 Merge 0.12->trunk 2024-11-15 14:37:10 +00:00
Matthew Wild
48b271450d MUC: optimizations for broadcast of visitor presence (thanks Jitsi team)
This avoids doing performing unnecessary work in the case of visitors joining
a MUC, no functionality changes are intended.
2024-11-15 14:36:41 +00:00
Matthew Wild
c9cc6f4b67 util.queue: tests: Add test for :replace() method 2024-11-12 11:25:49 +00:00
Kim Alvefur
cc34f41086 mod_s2s: Really fix logging of outgoing stanza queue counts
Some confusion happened in 42b98ee73ca8, possibly because .count()
returns the items?
2024-11-11 08:49:57 +01:00
Kim Alvefur
e097713883 mod_s2s: Clone queued outgoing stanzas to prevent changes
This clone call was lost in 902d25cd0557

Affects e.g. presence broadcasts, where the same stanza is sent many
times while mutating the 'to' attribute.
2024-11-10 15:10:26 +01:00
Kim Alvefur
b126efdd1c mod_s2s: Fix counting items in outgoing stanza queue (in logs) 2024-11-10 15:06:00 +01:00
Kim Alvefur
1b68565d70 mod_s2s: Limit size of outgoing stanza queue
This queue is used to buffer stanzas while waiting for an outgoing s2s
connection to be established.

Limit it to prevent excessive memory usage.

Default chosen to approximate how many average stanzas fits in the
server_epoll default max_send_buffer_size of 32 MiB

Returns a custom error instead of the default core.stanza_router
"Communication with remote domains is not enabled" from is sent back,
which does not describe what is happening here.

Closes #1106
2024-11-09 16:47:14 +01:00
Kim Alvefur
52178d7430 net.server_epoll: Make running out of buffer space a fatal error
Prevent Bad Things from happening when the buffer gets full.
This of course opens up the possibility of intentionally killing
connections by sending much stuff, which need to be mitigated with rate
limits elsewhere.
2024-11-09 15:42:31 +01:00
Kim Alvefur
693079c619 net.server_epoll: Improve efficiency of sending much buffered data
Problem: The string slice operations when a lot of data gets buffered
ends up being expensive and memory-consuming. We have util.dbuffer for
precisely this kind of thing.

I want to keep the behavior of writebuffer being upgraded from nil to a
string to full buffer since the last step involves three table
allocations, where the previous buffer method only used one. Avoiding
those allocations for simple writes like white space keep alive feels
like it would keep memory churn down.

This work was started in 2020
2024-11-09 00:37:15 +01:00
Matthew Wild
cf3403f90c mod_bookmarks: Clarify log messages on failure to sync to modern PEP bookmarks
Previously the error messages said that it failed to "publish" to PEP, but
sometimes a sync involves removing items, which can be confusing.

The log was also the same for both legacy PEP and private XML bookmarks.
Having different log messages makes it easier to debug the cause and location
of any sync errors.
2024-11-08 10:28:29 +00:00
Matthew Wild
f8c85b7c1e mod_bookmarks: Suppress error publishing empty legacy bookmarks w/ no PEP node
It appears that when:

1) The user has no bookmarks 2 node in PEP
2) The client publishes an empty bookmark set to a legacy bookmarks location
3) mod_bookmarks will attempt to purge items from the non-existent node and
   log an error about the failure (item-not-found).

This new code will suppress an item-not-found error from the purge operation
in the empty-bookmarks case, and adds a log message for any other error (this
is helpful because the existing log message confusingly says it was an error
*publishing* to the node, which isn't always accurate).
2024-11-08 10:24:42 +00:00
Kim Alvefur
3b07918800 mod_pubsub: Pass metadata directly into form
Reduces duplication and need to edit in two places when adding another
metadata field.
2024-11-08 02:15:10 +01:00
Kim Alvefur
e32aba4c53 mod_pubsub: Use new metadata method
No longer bypasses access control to retrieve this config subset, which
is also explicitly named in the service config now.
2024-11-08 02:12:45 +01:00
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