Commit graph

13766 commits

Author SHA1 Message Date
Matthew Wild
74970e2815 Merge 13.0->trunk 2025-03-11 18:45:23 +00:00
Matthew Wild
8005ac825f mod_websocket: Merge session close handling changes from mod_c2s (bug fixes)
This should bring some fixes and general robustness that mod_websocket had
missed out on. The duplicated code here is not at all ideal. To prevent this
happening again, we should figure out how to have the common logic in a single
place, while still being able to do the websocket-specific parts that we need.

The main known bug that this fixes is that it's possible for a session to get
into a non-destroyable state. For example, if we try to session:close() a
hibernating session, then session.conn is nil and the function will simply
return without doing anything. In the mod_c2s code we already handle this, and
just destroy the session. But if a hibernating websocket session is never
resumed or becomes non-resumable, it will become immortal!

By merging the fix from mod_c2s, the session should now be correctly
destroyed.
2025-03-11 18:44:40 +00:00
Matthew Wild
5b4624137d mod_c2s: Code formatting change
Although we do sometimes use single-line if blocks, I'm expanding this one to
make it easier to compare with the duplicated (but modified) code in
mod_websocket that we plan to de-duplicate one day.
2025-03-11 18:37:16 +00:00
Matthew Wild
5b1d83614b CHANGES: Add list of new modules 2025-03-11 18:27:54 +00:00
Matthew Wild
06994f0bc1 util.argparse: Fix bug (regression?) in argument parsing with --foo=bar
After recent changes, '--foo bar' was working, but '--foo=bar' was not. The
test had a typo (?) (bar != baz) and because util.argparse is not strict by
default, the typo was not caught.

The typo caused the code to take a different path, and bypassed the buggy
handling of --foo=bar options.

I've preserved the existing test (typo and all!) because it's still an
interesting test, and ensures no unintended behaviour changes compared to the
old code.

However I've added a new variant of the test, with strict mode enabled and the
typo fixed. This test failed due to the bug, and this commit introduces a fix.
2025-03-11 18:27:36 +00:00
Matthew Wild
afb9bc34a0 mod_storage_internal: Use UUIDv7 for message ids
This matches what we use for SQL already, so provides some consistency.

Client developers prefer sortable ids.
2025-03-10 11:54:52 +00:00
Matthew Wild
e66265d65a usermanager: Add info logging for all usermanager account changes 2025-03-10 11:52:55 +00:00
Matthew Wild
53774a4234 Merge 13.0->trunk 2025-03-06 13:34:55 +00:00
Matthew Wild
86341e87d3 util.sasl: Preserve 'userdata' field between clones
The :clean_clone() method is designed to provide a new cloned SASL handler,
to be used when starting a fresh SASL negotiation on an existing connection.

The userdata field is currently populated by mod_saslauth with the "read-only"
information that the channel binding methods need to do their stuff.

When :clean_clone() does not preserve this, it causes tracebacks in the cb
profile handlers due to the property being nil.

This does mean that SASL handlers should now not be reused (even when cloned)
across different connections, if they ever could.
2025-03-06 13:34:37 +00:00
Matthew Wild
9f9cc1ea09 Merge 13.0->trunk 2025-03-01 16:19:58 +00:00
Matthew Wild
830f3e122c mod_external_services: Also use TURN REST credential algo for 'turns' (thanks moreroid) 2025-03-01 16:19:43 +00:00
Kim Alvefur
08e6a1455b Merge 13.0->trunk 2025-02-27 21:38:00 +01:00
Kim Alvefur
c769eae82b net.server_epoll: Improve readability of DANE noise
Serialized Lua is not the most readable form of TLSA records.
2025-02-27 21:36:43 +01:00
Matthew Wild
7bf3a56ec6 Merge 13.0->trunk 2025-02-24 17:49:55 +00:00
Matthew Wild
faf20e5dc9 certmanager: Add more debug logging around cert indexing
Currently it's not obvious which directories have been indexed (especially
when the resulting index is empty), or why certain files have been skipped.
2025-02-24 17:48:58 +00:00
Kim Alvefur
70ee43995c Merge 13.0->trunk 2025-02-22 21:49:59 +01:00
Kim Alvefur
e52cc0126d mod_component: Don't return error reply for errors, fixes #1897 2025-02-22 21:48:07 +01:00
Kim Alvefur
68296b6a8e mod_bosh,mod_websocket: Don't load mod_http_altconnect in global context
It blocked loading on VirtualHosts since it was already loaded globally

Thanks eTaurus
2025-02-22 21:45:34 +01:00
Matthew Wild
4537e07daa Merge 13.0->trunk 2025-02-22 09:41:29 +00:00
Matthew Wild
783c8fcc81 prosodyctl: check features: stop searching after finding a matching component 2025-02-22 09:35:04 +00:00
Kim Alvefur
263b7e1e16 Merge 13.0->trunk 2025-02-22 00:26:35 +01:00
Kim Alvefur
6b1e056142 core.configmanager: Pass name and line number in context
Delays the string interpolation until the warning is logged, which may
slightly lower memory usage.

Allows retrieving the filename and line number easily.
2025-02-22 00:04:51 +01:00
Kim Alvefur
5e41daac79 core.configmanager: Fix reporting delayed warnings from global section
A Credential in the global section would be stored at
delayed_warnings["*/secret"], but get("example.com","secret") would look
for delayed_warnings["example.com/secret"]

Storing the warnings in the config itself has the unfortunate
side-effect that the config now contains util.error objects, which may
be awkward if something bypasses get(). Should rawget() also do this
filtering? getconfig() too?

Currently this only affects prosodyctl, so maybe it won't be much of a
problem.
2025-02-22 00:08:18 +01:00
Kim Alvefur
9eedb15c6f core.configmanager: Remove dependency on 'prosody' global for Credential
Minimizing dependencies on global state is nice, as it makes using
configmanager outside of Prosody easier.
2025-02-22 00:00:41 +01:00
Matthew Wild
bde377c10a Merge 13.0->trunk 2025-02-17 23:06:26 +00:00
Matthew Wild
13dc010593 mod_invites: Hide --group flag unless mod_invites_groups is enabled
The WIP groups support is not complete yet, and won't work without extra
modules (which are not yet a part of Prosody). For now we hide --group support
unless mod_invites_groups (community module) is specified in modules_enabled.
2025-02-17 23:06:06 +00:00
Matthew Wild
edc68f5407 mod_invites: Fix traceback when no flags passed 2025-02-17 22:57:58 +00:00
Matthew Wild
7b6ff43ec4 Merge 13.0->trunk 2025-02-17 19:22:54 +00:00
Matthew Wild
764c388d38 mod_invites: Deprecate 'mod_invites generate' in favour of new shell commands 2025-02-17 19:12:40 +00:00
Matthew Wild
6855f5c8c3 mod_admin_shell: Improve help listing in non-REPL mode 2025-02-17 19:10:48 +00:00
Matthew Wild
75b8824b00 mod_admin_shell: Fix simple command execution (e.g. help) 2025-02-17 19:10:26 +00:00
Matthew Wild
efc31d66ef mod_admin_shell: Set flag on session when in REPL mode 2025-02-17 19:09:11 +00:00
Matthew Wild
c8cf32b614 mod_admin_shell: Improved error handling for shell-invoked commands 2025-02-17 18:25:52 +00:00
Matthew Wild
43be6cb1c6 util.argparse: Add strict mode + tests 2025-02-17 18:24:23 +00:00
Matthew Wild
79381510cf mod_admin_shell, util.prosodyctl.shell: Process command-line args on server-side, with argparse support
This allow a shell-command to provide a 'flags' field, which will automatically
cause the parameters to be fed through argparse.

The rationale is to make it easier for more complex commands to be invoked
from the command line (`prosodyctl shell foo bar ...`). Until now they were
limited to accepting a list of strings, and any complex argument processing
was non-standard and awkward to implement.
2025-02-17 17:02:35 +00:00
Matthew Wild
edafb195e1 util.argparse: Optionally continue processing past positional parameters 2025-02-17 16:38:48 +00:00
Kim Alvefur
12790afdf0 Merge 13.0->trunk 2025-02-17 12:37:58 +01:00
Matthew Wild
fb80b33824 Merge 13.0->trunk 2025-02-17 11:36:26 +00:00
Matthew Wild
2c0af0666b prosodyctl: check features: Fix traceback for components with no recommended modules (thanks Menel, riau) 2025-02-17 11:35:03 +00:00
Kim Alvefur
5cdef4e2cc Merge 13.0->trunk 2025-02-17 01:01:54 +01:00
Kim Alvefur
f21ea48481 mod_invites: Fix storing --group (thanks lissine)
This made it ignore `--group` completely, but if you incorrectly used
`--group foo` it would store `groups=true`.

Introduced in 9ba11ef91ce4
2025-02-17 00:55:27 +01:00
Matthew Wild
2c39c676ce Merge 13.0->trunk 2025-02-16 14:29:02 +00:00
Matthew Wild
3ba87d07a9 util.prosodyctl.check: Recognise http_upload_external as a file upload service 2025-02-16 14:19:16 +00:00
Matthew Wild
f7f794c5c6 util.prosodyctl.check: Fix typo in informational message 2025-02-16 14:17:11 +00:00
Matthew Wild
14c171ab61 Merge 13.0->trunk 2025-02-16 13:44:23 +00:00
Matthew Wild
573e9f2716 mod_bosh, mod_websocket: Add soft dependency on mod_http_altconnect 2025-02-16 13:32:59 +00:00
Matthew Wild
1bb0fa47bc moduleapi: Allow soft dependencies via module:depends(mod, true) 2025-02-16 13:29:07 +00:00
Matthew Wild
83e4560a6c mod_http_altconnect: Imported from prosody-modules 6d5a19bdd718 w/changes
Changes from community version:

  - Add options to allow explicit control over whether BOSH/WS is advertised
  - Always serve XML at /host-meta (no guessing based on Accept), least surprising
2025-02-16 13:19:05 +00:00
Matthew Wild
8edde6a299 prosodyctl: check features: check for mod_muc_mam on MUC components 2025-02-16 13:17:00 +00:00
Kim Alvefur
5c2dbef89d Merge 13.0->trunk 2025-02-16 11:57:18 +01:00