Commit graph

1941 commits

Author SHA1 Message Date
Matthew Wild
bde66f9436 modulemanager: Allow modules to specify supported Lua versions in metadata 2025-01-09 16:44:48 +00:00
Matthew Wild
f6ed03a903 modulemanager: Handle multiple digits in Lua version number
Lua has a slow release cycle, but it would be nice if Prosody doesn't break
unnecessarily with 5.10 :)
2025-01-09 16:06:53 +00:00
Kim Alvefur
fe2c039c97 core.moduleapi: Include source modules when handling items
This improves consistency. Previously the 'source' field was only
provided in the original event when an item was added. It is used to
report the name of the module providing the item in a few places.

Also considered adding a new API to modulemanager returning a mapping
of items per module and then using that here.
2025-01-08 08:33:34 +01:00
Matthew Wild
3ebf89a8c6 mod_flags: New module to view and manage flags on user accounts via shell/API
This will be useful for server operators to easily identify flagged accounts,
etc.
2025-01-03 11:45:48 +00: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
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
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
72f1094ea4 core.features: Advertise that events are fired for SIGUSR1/2
Moved here from mod_posix since these events no longer originate there
2024-03-02 14:14:27 +01:00
Matthew Wild
c3af93fce7 features: Add mod_server_info 2024-02-23 22:45:42 +00:00
Matthew Wild
b9f0c3c0ec features: Add module-ready (for commit e20949a10118) 2024-02-22 09:53:48 +00: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
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
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
Matthew Wild
a4556fc67a sessionmanager: Improve logging around session destruction 2023-02-09 15:09:03 +00:00
Kim Alvefur
d616d70f3c core.sessionmanager: Mark session as destroyed to prevent reentry
If it reaches this point, then the session will be most definitely be
destroyed, so try to prevent destroy_session() from being called again.
2023-01-19 21:40:09 +01:00
Kim Alvefur
b89b219406 core.sessionmanager: Skip log when (not) destroying destroyed sessions
On regular disconnects, </stream> is sent, then
sessionmanager.destroy_session() is called, then
sessionmanager.destroy_session() is called again when the TCP connection
is closed, from ondisconnect in mod_c2s.

It is a bit annoying and doesn't really tell you much.
2023-01-19 21:38:14 +01:00
Kim Alvefur
814817ebf2 core.s2smanager: Don't remove unrelated session on close of bidi session
Normally with bidi, any outgoing connection should be the same as the
incoming, hence when closing a bidi connection it should be removed as a
route to the remote server. However it is not guaranteed, a remote bidi-capable server
might have decided to open a new connection for some reason. This can
lead to a situation where there are two bidi connections, and the s2sout
route is a locally initiated s2sout connection. In this case, such a
s2sout connection should be kept.

Noticed in a rare case where bidi has just been enabled on a running
server, and something establishes new connections immediately when a
connection is closed.
2022-06-27 01:22:36 +02:00
Kim Alvefur
1f668fed00 core.certmanager: Expand debug messages about cert lookups in index
Answers my recurring question of
> Using cert "certs/example.com.crt" from index
... for what?
2022-05-16 11:39:17 +02:00
Kim Alvefur
9e5bf4fc48 core.moduleapi: Fix 'global' property via :context() - #1748
The 'global' property should reflect whether the module API instance
represents the global context or a VirtualHost or Component context.
However the module:context() method did not override this, leading the
property of the previous module shining trough, leading to bugs in code
relying on the 'global' property.

See also #1736
2022-04-27 17:18:46 +02:00
Kim Alvefur
a696800291 core.modulemanager: Fix global flag on per-host instances of shared modules (fix #1736)
This flag is something of a shortcut for `module.host == "*"` and should
always be equal to that. Its absence on the proxy object made the
property of the global module instance visible, causing problems such as
with URL reporting in mod_http
2022-04-04 18:44:57 +02:00
Matthew Wild
0f493bd245 configmanager: Clearer errors when providing unexpected values after VirtualHost (fixes #1735, thanks arawaks) 2022-04-03 12:56:11 +01:00
Matthew Wild
a52c531dc5 configmanager: Add method to report loaded config files (part of #1729 fix) 2022-03-28 11:41:32 +01:00
Kim Alvefur
43351d2b54 Spelling: Fix various spelling mistakes (thanks timeless)
Words, sometimes I wonder how they even work

Maybe I missed something.
2022-03-07 00:13:56 +01:00
Matthew Wild
b47c7951d5 Merge config-updates+check-turn from timber 2022-03-04 16:33:41 +00:00
Kim Alvefur
c460117e3c core.portmanager: Fix traceback on attempt to get non-existent service
If there's no such interface:port then `data` is nil and `data.service`
errors.
2022-02-22 13:41:05 +01:00
Kim Alvefur
dd1e42f499 core.certmanager: Ensure key exists for fullchain
Since 5cd075ed4fd3 any file matching "fullchain" would be considered for
use.

Dehydrated stores fullchain certs in e.g, fullchain-1641171024.pem and a
symlink fullchain.pem pointing at the latest one. However the current
rule for finding a corresponding private key would try
privkey-1641171024.pem in the same directory, which may not exist.
2022-02-21 08:54:39 +01:00
Matthew Wild
9bd1726821 configmanager: Fix linter issues 2023-12-08 15:37:13 +00:00
Matthew Wild
7a288248f0 configmanager: Support for appending to existing config options
...and some other useful operations
2023-12-08 15:34:48 +00:00
Matthew Wild
cc0f973628 configmanager: Make _G accessible via Lua variable, deprecate direct access 2023-12-08 14:24:49 +00:00
Matthew Wild
c2d0d411d4 configmanager: Allow referencing previously-set options in the config file 2023-12-08 13:36:51 +00:00
Matthew Wild
067a0ad4d8 usermanager, mod_saslauth: Default to internal_hashed if no auth module specified
The default config was updated in this way long ago, but if no option was
present in the config, Prosody would load internal_plain.

This change can result in changes (for the better) for people using very old
configuration files lacking an 'authentication' setting.
2022-02-10 19:54:14 +00:00
Kim Alvefur
406b90d31d core.certmanager: Turn soft dependency on LuaSec into a hard
The default network backend server_epoll already requires LuaSec so
Prosody won't even start without it, so we can get rid of these lines
here too.
2022-02-10 17:15:55 +01:00
Matthew Wild
2132eca2e0 moduleapi: Log error message when ambiguous period spec is found in config 2023-11-30 13:43:23 +00:00
Matthew Wild
8a38b5d0da modulemanager: Allow modules to expose module.ready - to be called after init
This is a shortcut for module:on_ready() which exposes the functionality in an
idiomatic way consistent with module.load, module.unload, etc.

module.ready runs when the module is loaded and the server has finished
starting up.
2023-11-30 10:09:47 +00:00
Matthew Wild
f82d804e1d moduleapi: Rename :once() to :on_ready() for clarity
'Once' is ambiguous - once per what?

on_ready() executes its parameter when the module is loaded *and* the server
has finished starting.
2023-11-30 10:07:53 +00:00
Matthew Wild
253b2fba90 usermanager, mod_auth_internal_hashed: Support metadata when disabling a user
This allows us to store a time, actor, comment and/or reason why an account
was disabled, which seems a generally useful thing to support.
2023-11-30 09:47:00 +00:00
Matthew Wild
1d1e2cdd9c moduleapi: may(): Support explicit actor_jid in context object 2023-11-07 11:53:57 +00:00
Kim Alvefur
7b6a2f64e2 core.certmanager: Handle dane context setting same way on reload as on initialization 2023-11-04 15:59:51 +01:00
Kim Alvefur
2c9c0fab32 core.certmanager: Tweak log level of message about SNI being required
Everything supports SNI today, so this is not useful information.
2023-10-29 21:31:07 +01:00
Kim Alvefur
7a9e8092ac Merge 0.12->trunk 2023-10-27 22:38:00 +02:00
Matthew Wild
b4ed120963 portmanager: Expose API to get at SSL/TLS config for a given interface/port 2022-09-07 11:26:42 +01:00
Kim Alvefur
eeaa713fda core.storagemanager: Remove 0.10 era sql2 driver COMPAT
Unlikely that anyone has had sql2 in their configs for a long time, so
this serves little purpose.

Leaving the indirection function in case some similar compat code is
needed in the future.
2023-09-04 00:38:45 +02:00
Kim Alvefur
f8a2c4d7ab core.portmanager: Join strings broken into multiple lines
Improves readability. Reduces line count. What's not to like?

The code style and luacheck rules allows longer lines, and these strings
aren't long enough to need breaking into multiple lines like this.
2023-07-29 02:04:24 +02:00
Kim Alvefur
1ff9661412 core.portmanager: Hint at HTTP servers for conflicts over port 443
Since 443 is just as much a web port as port 80 these days, if not more.

What's with port 81 here?
2023-07-29 02:00:55 +02:00
Kim Alvefur
4891b4eea3 core.moduleapi: Parse period min/max arguments
Allows specifying them the same way as the default and in the config,
for consistency
2023-07-22 12:08:01 +02:00
Kim Alvefur
aaa6b2b4d6 core.moduleapi: Fix min/maxinteger fallback for Lua 5.2
Maybe these should live in util.mathcompat?
2023-07-17 02:32:47 +02:00
Kim Alvefur
55768509a3 core.moduleapi: Add min/max range support to :get_option_period
To match :get_option_number etc, specifying the allowed interval.

Default is essentially (0, inf].
2023-07-17 00:37:44 +02:00
Kim Alvefur
210f608086 moduleapi: Add :get_option_integer()
Many options in Prosody that are treated as numbers don't make sense as
floats, e.g. sizes and limits measured in bytes.

Simplified implementation based on an earlier attempt dating back to 2020
2023-07-17 00:09:41 +02:00
Kim Alvefur
903e945d09 core.moduleapi: Accept boolean false to disable period setting 2023-07-16 21:04:42 +02:00