Commit graph

5672 commits

Author SHA1 Message Date
aidan
5550be6381 mod_admin_shell: Add connection created time
This adds an output format option to show the time that the connection was created.

Ref #1852
2024-04-03 21:56:03 -07:00
Kim Alvefur
0c03df98fe Merge 0.12->trunk 2024-04-04 19:44:17 +02:00
Kim Alvefur
ec3655ced6 mod_invites_adhoc: Fix result form type (thanks betarays) 2024-04-04 19:39:33 +02:00
Kim Alvefur
221f86f77f MUC: Fix legacy hats (thanks nicoco)
Why do we not have tests for this?
2024-03-28 15:39:59 +01:00
Kim Alvefur
8cdc5fb3a2 MUC: Switch to official XEP-0317 namespace for Hats (including compat) (thanks nicoco) 2024-03-28 15:26:57 +01:00
Kim Alvefur
c2c82a10d3 mod_posix: Move everything to util.startup
This allows greater control over the order of events.

Notably, the internal ordering between daemonization, initialization of
libunbound and setup of signal handling is sensitive.

libunbound starts a separate thread for processing DNS requests.
If this thread is started before signal handling has been set up, it
will not inherit the signal handlers and instead behave as it would have
before signal handlers were set up, i.e. cause the whole process to
immediately exit.

libunbound is usually initialized on the first DNS request, usually
triggered by an outgoing s2s connection attempt.

If daemonization happens before signals have been set up, signals may
not be processed at all.
2024-03-23 20:48:19 +01:00
Matthew Wild
2bc341d8b1 mod_bosh: Set base_type on session
This fixes a traceback with mod_saslauth. Ideally we move this to util.session
at some point, though.
2024-03-17 10:10:24 +00:00
Kim Alvefur
fabcc21881 mod_pubsub: Ignore shadowed variable [luacheck] 2024-03-06 19:12:11 +01:00
Matthew Wild
7ad4c88432 mod_pubsub: Add shell commands to create and list nodes 2024-03-06 17:38:21 +00:00
Kim Alvefur
3036a689fa mod_posix: Move POSIX signal handling into util.startup to avoid race
When libunbound is initialized, it spawns a thread to work in.
In case a module initializes libunbound, e.g. by triggering a s2s
connection, Prosody would not handle signals, instead immediately quit
on e.g. the reload (SIGHUP) signal. Likely because the libunbound thread
would not have inherited the signal mask from the main Prosody thread.

Thanks Menel, riau and franck-x for reporting and help narrowing down
2024-03-02 13:23:24 +01:00
Kim Alvefur
18813c2ffa mod_s2s: Comment on why we avoid hostnames in stanza bounce messages 2024-02-24 17:45:50 +01:00
Kim Alvefur
01a44e88db mod_cron: Fix log format to account for float that was integer before 2024-02-24 14:35:17 +01:00
Matthew Wild
fa5346d756 mod_server_contact_info: Update to publish fields via new mod_server_info 2024-02-23 21:14:14 +00:00
Matthew Wild
96898e05a6 mod_server_info: New module to manage the serverinfo disco extension form
This allows multiple modules to populate the form dynamically. Currently the
form is "owned" by mod_server_contact_info, which prevents other modules from
contributing to it.

A further commit will port mod_server_contact_info to use this module.
2024-02-23 21:13:10 +00:00
Kim Alvefur
c0a3026414 mod_s2s_auth_certs: Handle potential string error
conn:ssl_peerverification() can now return a single error in case the
connection has been closed for whatever reason
2024-02-21 21:29:16 +01:00
Matthew Wild
69dc40ac35 mod_cron: Allow configuring various "internal" delay parameters
Notably, it is now possible to add a randomized spread factor to the check
interval.
2024-02-20 17:31:17 +00:00
Kim Alvefur
2ef771fff8 mod_c2s: Fix error on role change on Components (thanks Menel) 2024-02-17 19:07:57 +01:00
Kim Alvefur
7be4e2fd31 mod_smacks: Adjust buckets for resumption age statistic
Given that there are recommendations floating around recommending 24
hours session lifetime, having buckets up to 10 minutes wouldn't be
useful in that case.

Would be nice if we had some way to automatically assign suitable number
series for buckets, scaled to what the configuration might be.
2024-02-16 00:15:36 +01:00
Kim Alvefur
1768a2f369 mod_storage_internal: Fix off-by-one when searching archive for
Fixes a test case provided by MattJ where the very first item matched by
a 'start' timestamp was not returned.
2024-02-15 20:28:14 +01:00
Kim Alvefur
331f2d40e1 mod_s2s_auth_dane_in: Try single TLSA lookup per draft-ietf-dance-client-auth
Moves some complexity from the implementation into DNS operations.
2024-01-11 07:54:11 +01:00
Kim Alvefur
2dba3989e7 mod_s2s_auth_dane_in: Simplify result processing
Fewer loops
2024-01-11 07:53:06 +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
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
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
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
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
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
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
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
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
Kim Alvefur
81fd03356f mod_muc_mam: Copy "include total" behavior from mod_mam
Not sure why this was missing from MUC MAM, it already had some of the
code for dealing with it.
2023-01-21 17:14:55 +01:00
Kim Alvefur
d0321442c9 mod_muc_mam: Add mam#extended form fields #1796 (Thanks Rain)
Oversight in cabb022f31c0
2023-01-21 17:09:22 +01:00
Kim Alvefur
4830568435 mod_mam,mod_muc_mam: Minimize differences (reorder, copy some comments)
Should have no functional difference, but makes it easier keeping
mod_mam and mod_muc_mam in sync.
2023-01-21 16:54:43 +01:00
Kim Alvefur
67b6440d9b mod_smacks: Log something when hibernation starts
Will hopefully save future confusion about sessions being destroyed when
they are in fact not.
2023-01-19 20:59:28 +01:00
Kim Alvefur
b18280d35f mod_invites: Prefer landing page over xmpp URI in shell command
To mirror behavior of prosodyctl invocation
2023-01-10 21:10:58 +01:00
Kim Alvefur
91a064bd49 mod_storage_sql: Fix #1639
Patch by Peter Kieser
2023-01-01 16:20:58 +01:00
Kim Alvefur
2317f6a09f mod_storage_sql: Don't avoid initialization under prosodyctl (fix #1787)
Fixes `prosodyctl adduser` etc.

Prior to d580e6a57cbb the line did nothing.

Sometimes storage in the prosodyctl context does cause weirdness, as it
is not in a host context, but rather a variant of global.
2022-12-29 18:06:35 +01:00
Kim Alvefur
d158455de6 mod_smacks: Disable resumption behavior on s2s
Since resumption is not supported on s2s currently, there is no point in
allocating resumption tokens.  The code that removes entries from
session_registry is only invoked for c2s sessions, thus enabling
resumable smacks on s2s adds an entry that never goes away.
2022-11-13 18:16:59 +01:00
Matthew Wild
246d797f81 mod_http: Allow disabling CORS in the http_cors_override option and by default
Fixes #1779.

Due to an oversight in the logic, if the user set 'enabled' to false in an
override, it would disable the item's requested CORS settings, but still apply
Prosody's default CORS policy.

This change ensures that 'enabled = false' will now disable CORS entirely for
the requested item.

Due to the new structure of the code, it was necessary to have a flag to say
whether CORS is to be applied at all. Rather than hard-coding 'true' here, I
chose to add a new option: 'http_default_cors_enabled'. This is a boolean that
allows the operator to disable Prosody's default CORS policy entirely (the one
that is used when a module or config does not override it). This makes it
easier to disable CORS and then selectively enable it only on services you
want it on.
2022-10-31 14:32:02 +00:00
Kim Alvefur
20532df525 mod_admin_shell: Ensure available connection for column 'secure'
Similar to #1777
2022-10-23 16:22:12 +02:00
Kim Alvefur
c51152432a mod_admin_shell: Ensure connection exists to get port from (fixes #1777) 2022-10-23 16:19:39 +02:00
Kim Alvefur
e38e915ef5 mod_s2s: Fix firing buffer drain events
Fixes the same kind of issue as in 65563530375b but once and for all,
while improving similarity between incoming and outgoing connections.
2022-08-26 18:53:00 +02:00
Kim Alvefur
ee21d9480a mod_admin_shell: Switch names for user role management commands
user:roles() does not convey that this is the mutating command, it
should have been called setroles from the start but wasn't due to lack
of foresight. This has to accidentally removing roles when wanting to
show them.
2022-08-15 18:56:22 +02:00
Kim Alvefur
2dbbce2382 mod_storage_sql: Fix summary API with Postgres (fixes #1766)
The ORDER BY and LIMIT clauses are not needed and don't even make much
sense. This part was most likely a leftover from the :find method.

Tested with sqlite and postgres 14
2022-07-22 19:09:50 +02:00