Commit graph

13815 commits

Author SHA1 Message Date
Kim Alvefur
e76620ad10 util.startup: Check root after detecting platform and reading config (thanks SigmaTel71)
Ensures that startup.detect_platform() runs so know whether to use the
POSIX method of checking the current user or something else. Also after
reading the config so we know whether the root override setting is set.
2024-03-24 20:39:42 +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
1b62552e1d util.startup: Back out 598df17b8ebb
Broke signal handling again, such that an early s2s connection results
in libunbound catching signals and getting Prosody killed on e.g. SIGHUP

This returns to the situation where prosody --daemonize does not respond
to signals.
2024-03-10 15:56:01 +01:00
Kim Alvefur
ed94077e82 util.startup: Hook signals after daemonization
signalfds stop working with epoll after forking

hooking signals later should not affect anything
2024-03-06 20:43:25 +01: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
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
Kim Alvefur
dd973a9e43 util.startup: Fix firing of USR1/2 events 2024-03-02 14:08:47 +01:00
Kim Alvefur
1d5021a663 net.server: Restore epoll signalfd handling
Reverts 4a9a69659727
2024-03-02 13:40:37 +01: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
ed0188ce81 net.server: Disable epoll signalfd handling by default until problems resolved 2024-03-01 19:22:49 +01:00
Kim Alvefur
865df3d373 net.server_epoll: Log creation of signalfd handles at noise level
To aid in tracking down signalfd-related problems
2024-03-01 19:20:45 +01:00
Matthew Wild
876162b9cf util.bit53: Add bnot() method 2024-03-01 17:22:29 +00:00
Kim Alvefur
36a9583069 util.signal: Fail signalfd() if unable to change signal mask
By aborting early, the failure should be brought to the attention
somehow.
2024-02-28 22:31:06 +01:00
Kim Alvefur
f1e07782ed net.server_epoll: Log failure to hook signals
To make any such failures noticeable
2024-02-28 22:24:09 +01:00
Kim Alvefur
3d2bad3d4b Merge 0.12->trunk 2024-02-27 17:15:36 +01: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
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
Kim Alvefur
cef925e9a5 mod_cron: Sync Teal source with 92301fa7a673
Yeah, it's weird to have two versions. Needing more build dependencies
is also something we want to avoid, so here we are.
2024-02-24 14:32:59 +01:00
Kim Alvefur
761643abcc util.signal: Wrap signalfd in an userdatum for gc handling etc 2024-02-24 01:00:44 +01:00
Kim Alvefur
49c296360d net.server_epoll: Support hooking signals via signalfd
Handling signal events the same way as all other events makes sense and
seems safer than the signal handling just jumping around in C and
messing with Lua states.
2024-02-24 00:20:35 +01:00
Kim Alvefur
54f76b97d2 util.signal: Add support for signalfd(2) on Linux
signalfd allows handling signal events using the same method as sockets,
via file descriptors. Thus all signal dispatch can go through the same
main event loop as everything else, removing need for thread-scary
signal handling where execution would just jump to the signal handler
regardless of the state of Lua, and needing to keep track of Lua
states/threads.
2024-02-24 00:05:29 +01:00
Matthew Wild
c3af93fce7 features: Add mod_server_info 2024-02-23 22:45:42 +00: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
a2b268528d util.strbitop: Add common_prefix_bits() to Teal interface description 2024-02-23 16:38:05 +01:00
Kim Alvefur
bb081f052f util.hashes: Add missing entries to Teal interface description
Also sorted to match C source
2024-02-23 16:35:21 +01:00
Kim Alvefur
c333519fb2 util.crypto: Update Teal interface description to match C sources
Was missing some entries.

Rearranged to match order of entries in the C source Reg table.
2024-02-23 16:33:08 +01:00
Matthew Wild
961b764d10 tools/test_mutants.sh: Load loader helper when running busted 2024-02-23 12:16:03 +00:00
Matthew Wild
f4d2d7a3a3 util.ip: Remove ip.bits and related code, switch to more efficient strbitop
100,000 iterations of match() on my laptop from 3.5s -> 0.5s.
2024-02-23 12:14:51 +00:00
Matthew Wild
965d69763c util.strbitop: Remove unused import in tests 2024-02-23 12:13:06 +00:00
Matthew Wild
7f748556a2 util.strbitop: Add common_prefix_bits() method
This returns the number of bits that two strings have in common. It is
significantly more efficient than similar calculations in Lua.
2024-02-23 12:08:37 +00:00
Matthew Wild
1606675762 util.ip: Add another test case for match() and commonPrefixLength() 2024-02-23 12:03:31 +00:00
Matthew Wild
81cb34ef50 util.strbitop: Rename spec file to correct name so tests actually run 2024-02-23 11:59:45 +00:00
Kim Alvefur
ddd479afe2 util.rfc6724: Remove, unused since introduction of Happy Eyeballs
It was mainly used to determine whether to try IPv6 or IPv4 first,
following the rules for this in the RFC.

Now we always try IPv6 and IPv4 at roughly the same time, thus there no
need to carry these rules.
2024-02-22 19:46:52 +01:00
Matthew Wild
b9f0c3c0ec features: Add module-ready (for commit e20949a10118) 2024-02-22 09:53:48 +00:00
Matthew Wild
f62f5d71ec util.startup: Expose core.features.available as prosody.features
for convenience.
2024-02-22 09:53:02 +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
Kim Alvefur
5764e73a65 net.server_epoll: Prevent traceback when checking TLS after connection gone
Unclear why this would be done, but an error is not great.
2024-01-21 22:59:50 +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
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