Commit graph

12535 commits

Author SHA1 Message Date
Matthew Wild
bca60e609d util.prosodyctl.check: Improve error handling of UDP socket setup (for #1803)
Not necessarily a fix, but may give us more information about failure cases.
2024-12-20 14:21:02 +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
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
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
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
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
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
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
bb278430cf util.xtemplate: Fix error on applying each() to zero stanzas
Backport of 1f93e4f78c53
2024-07-11 15:24:19 +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
Kim Alvefur
11bc995c0b scansion: Enable blocklist compat during tests to fix CI 2024-06-12 23:00:24 +02:00
Kim Alvefur
f3b1b57a70 mod_admin_shell: Allow matching on host or bare JID in c2s:show
Only supporting exact match on full JID isn't helpful if you want to
list sessions per host or user.

Backport of 430333198e4c

Fixes #1857
2023-03-31 22:01:27 +02:00
Kim Alvefur
4414f8402f mod_blocklist: Drop blocked messages without error, option to restore compliant behavior
From XEP-0191:
> For message stanzas, the server SHOULD return an error, which SHOULD
> be <service-unavailable/>.

Following this may leak to a blocked JID that they have been blocked,
which seems contrary to the goal of pretending to be perpetually
offline.
2024-04-27 15:55:23 +02:00
Kim Alvefur
ec3655ced6 mod_invites_adhoc: Fix result form type (thanks betarays) 2024-04-04 19:39:33 +02:00
Matthew Wild
655c972a7d prosodyctl check: Warn about invalid domain names in the config file
This ensures that domain names of virtual hosts and components are valid in
XMPP, and that they are encoded correctly.
2024-03-27 15:35:15 +00:00
Kim Alvefur
f7b35d516f net.http.files: Validate argument to setup function
Fixes error in #1765 by throwing an error earlier
2024-02-27 17:14:16 +01:00
Kim Alvefur
4ca636bb7e mod_disco: Advertise disco#info and #items on bare JIDs to fix #1664
Having to add these in *there* places seems less than ideal.

I would also think that advertising disco#info is a bit redundant, since
it is a requirement for everything in XMPP and if it was missing you
would get an error back.
2023-12-17 18:55:14 +01:00
Kim Alvefur
674b91b82b net.http.parser: Reject overlarge header section earlier
This case would eventually be rejected by the buffer size limit.
2023-08-23 12:18:34 +02:00
Kim Alvefur
e8128c1d60 core.certmanager: Validate that 'tls_profile' is one of the valid values
A typo should not result in ending up with "legacy"
2023-10-27 19:03:59 +02:00
Kim Alvefur
4d9916d1e5 mod_muc_mam: Improve wording of enable setting
Suggested by jstein in the chat

This option label is used by XMPP clients to explain what the option does.
a) The user should know where the data is archived.
b) The user needs a statement that can be enabled/disabled by the variable. A question would have the wrong logic here.
2023-10-15 14:43:11 +02:00
Kim Alvefur
d0e69c4e15 Added tag 0.12.4 for changeset a2ba3f06dcf4 2023-09-05 19:48:59 +02:00
Kim Alvefur
da3d755a15 util.prosodyctl.check: Correct modern replacement for 'disallow_s2s'
The code would have suggested adding to modules_enabled instead of
modules_disabled
2023-08-27 15:46:19 +02:00
Kim Alvefur
0fa9d6be37 util.array: Fix new() library function
Backport of ffe4adbd2af9 since new was added in the 0.12 branch
2023-07-22 16:31:05 +02:00
Kim Alvefur
683b90f871 util.prosodyctl.check: Hint about the 'external_addresses' config option 2023-07-17 14:56:57 +02:00
Kim Alvefur
43c39930c3 util.prosodyctl.check: Validate format of module list options
Should detect things like misplaced settings inside modules_enabled
2023-07-17 14:45:15 +02:00
Kim Alvefur
3f81654a66 util.prosodyctl.check: Get some config options via minimal moduleapi #896
The module API has certain coercion features that are useful.

Fixes traceback reported in #1812 and other duplicates
2023-07-17 14:03:13 +02:00
Kim Alvefur
59f9a608fd core.certmanager: Update Mozilla TLS config to version 5.7
Ref https://github.com/mozilla/server-side-tls/issues/285
2023-07-09 21:18:47 +02:00
Kim Alvefur
c82f504f6a mod_pubsub: Send correct jid attribute in disco#items
Fixes use in PEP where the JID does not equal the bare domain.
2023-07-08 18:23:40 +02:00
Kim Alvefur
960f406662 mod_http: Fix error if 'access_control_allow_origins' is set
Because it changes the type of the 'opt_origins' variable from util.set
to the internal _items table so next time an http app is added an error
"attempt to call a nil value (method 'empty')" is triggered.  The value
is not used anywhere else.

Noticed when reviewing uses of the '_items' set property.

Not reported by any users, implying this setting is rarely used.
2023-06-10 12:33:58 +02:00
Kim Alvefur
cbed7dfdf5 util.array: Expose new() on module table
For consistency with other utils.

Consistency is good.
2023-06-10 12:14:12 +02:00
Kim Alvefur
e4d5c15396 util.prosodyctl.check: Fix error where hostname can't be turned into A label
Where gethostname or tohostname returns an invalid name, e.g. containing
underscores or something, to_ascii would reject this and return nil,
which triggers an error in the dns lookup.

Reported by prova2 in the chat, for whom tohostname returned a long name
containing underscores.
2023-05-31 14:08:19 +02:00
Kim Alvefur
20afe7d20d mod_s2s: Add event where resolver for s2sout can be tweaked
Could be used to implement custom connection methods (c.f. mod_onions)
without needing to duplicate the rest of route_to_new_session().

Adds a feature to enable detection since it can be difficult to detect
support for an event otherwise.
2022-08-18 03:26:32 +02:00
Kim Alvefur
8ef7bc2cf4 mod_csi_simple: Disable revert-to-inactive timer when going to active mode
This timer shouldn't kick in in the middle of active mode.
2023-05-01 15:10:32 +02:00
Kim Alvefur
9aecb5cd19 mod_csi_simple: Clear delayed active mode timer on disable
It should not be there afterwards. Noticed that it seems to fire some
time after resumption claiming that the queue size is nil, implying
that it may hold a reference to an expired session somehow.
2023-05-01 14:52:38 +02:00
Kim Alvefur
57c3771614 util.error: Fix error on conversion of invalid error stanza, fix #1805
Error stanzas should have an <error> element, but if you pass a
stanza without one to util.error.from_stanza() it triggers an attempt to
index a nil value, which this patch avoids.

In the conditional, it should be safe to assume error_tag is non-nil
since condition can't have those values then.
2023-04-19 11:32:53 +02:00
Kim Alvefur
506ee45da2 mod_admin_shell: Fix display of remote cert status when expired etc
Looks like autocomplete unhelpfully capitalized this word, but it's
lowercase where it is set in mod_s2s_auth_certs
2023-04-06 17:09:03 +02:00
Matthew Wild
6d8647b333 prosodyctl: Fix using variable content in a format string
This broke if the error message contained a format specified such as '%s'.
2023-04-07 15:54:59 +01:00
Kim Alvefur
d840f27320 mod_smacks: Replace existing watchdog when starting hibernation
There shouldn't be one here but if there is, for some reason, it's
better to close it than have it around to wake up and possibly try to
destroy the session.
2023-04-02 10:40:48 +02:00
Kim Alvefur
3a3d9c6c2c mod_smacks: Fix stray watchdog closing sessions
Unsure exactly how this happens, but sometimes a watchdog appears to
close a session that isn't hibernating, or hasn't hibernating long
enough.
2023-04-02 10:37:44 +02:00
Kim Alvefur
0890b20fbf mod_http: Unhook CORS handlers only if active (fixes #1801) 2023-03-05 15:45:01 +01:00
Kim Alvefur
9c49ca70fd util.prosodyctl.check: Suggest 'http_cors_override' instead of older CORS settings
The cross_domain_* settings were added here prior to http_cors_override
being added back in 17d87fb2312a, so for a time there was no
replacement, but now there is.
2023-02-22 22:27:42 +01:00
Matthew Wild
631a4a3034 Added tag 0.12.3 for changeset 0598d822614f 2023-02-21 10:06:54 +00:00
Matthew Wild
4dcabd36ce mod_websocket: Fire pre-session-close event (fixes #1800)
This event was added in a7c183bb4e64 and is required to make mod_smacks know
that a session was intentionally closed and shouldn't be hibernated (see
fcea4d9e7502).

Because this was missing from mod_websocket's session.close(), mod_smacks
would always attempt to hibernate websocket sessions even if they closed
cleanly.

That mod_websocket has its own copy of session.close() is something to fix
another day (probably not in the stable branch). So for now this commit makes
the minimal change to get things working again.

Thanks to Damian and the Jitsi team for reporting.
2023-02-20 18:10:15 +00:00
Matthew Wild
87ee5a2300 net.http.parser: Fix off-by-one error in chunk parser 2023-02-17 17:01:19 +00:00
Kim Alvefur
67ea0ee50e mod_admin_socket: Return error on unhandled input to prevent apparent freeze
When mod_admin_socket is loaded without mod_admin_shell, attempt to use
`prosodyctl shell` will appear to freeze after any input, since no
response is returned.
2023-02-16 17:20:09 +01:00
Matthew Wild
bc1e51eb83 net.http.server: Add new API to get HTTP request from a connection
This information is sometimes necessary in the context where we have a
connection that we know (or believe to be) associated with an incoming HTTP
request.

For example, it can be used to retrieve the IP address of a request (which may
differ from the IP address of the connection, due to X-Forwarded-For and co).

Thanks to the Jitsi team for highlighting this gap in the API.
2023-02-16 15:59:26 +00:00
Matthew Wild
0fd88a07a4 net.http.parser: Improve handling of responses without content-length
This ensures that we support responses without a content-length header, and
allow streaming them through the streaming handler interface. An example of
such a response would be Server-Sent Events streams.
2023-02-09 22:57:32 +00:00
Matthew Wild
28e3b19ca1 net.http: Add missing log parameter 2023-02-09 22:37:54 +00:00