Commit graph

131 commits

Author SHA1 Message Date
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
Kim Alvefur
b4e8a8c6c4 net.adns: Collect DNS lookup timing metrics
Nice to have this in OpenMetricts instead of debug logs
2025-02-07 09:22:52 +01:00
Kim Alvefur
885164b2b1 util.startup: Drop mention of systemd from notification socket handling
This does not have to be specific to systemd
2025-02-01 20:42:59 +01:00
Kim Alvefur
97884eb956 util.startup: Rename credentials path variable too 2025-01-18 13:29:59 +01:00
Kim Alvefur
41a360ce2a core.configmanager: Add function for getting secrets from separate files
Idea is to enable easily retrieving of secret values from files outside
of the config, e.g. via the method used by systemd credentials.

CREDENTIALS_DIRECTORY is expected to be set by the process manager
invoking Prosody, so being unset and unavailable from prosodyctl is
going to be normal and a warning is reported in that case. Care will
have to be taken to make it clear that prosodyctl check will not work
with such values. An error is thrown if the directory is unavailable
when running under Prosody.
2025-01-16 15:21:34 +01:00
Kim Alvefur
35e92231f8 util.startup: Bump expected util.pposix version
Otherwise Prosody refuses to start.
2024-11-16 14:35:11 +01:00
Kim Alvefur
a4f4acaa55 util.startup: Fix notifying config-reload to systemd
Does this event name seem backwards to anyone else?
2024-04-08 09:29:58 +02:00
Kim Alvefur
502b8d3998 util.startup: Support systemd Type=notify service type
This lets Prosody report its lifecycle status to systemd, so it knows
when Prosody has completed its startup, when it's reloading and shutting
down.

Both Type=notify and Type=notify-reload is supported

Example systemd .service configuration snippet:

[Service]
Type=notify
2024-04-04 19:00:27 +02:00
Kim Alvefur
e311f13c43 util.startup: Fix exiting on pidfile trouble
prosody.shutdown() relies on prosody.main_thread, which has not been set
yet at this point.

Doing a clean shutdown might actually be harmful in case it tears down
things set up by the conflicting Prosody, such as the very pidfile we
were looking at.

Thanks again SigmaTel71 for noticing
2024-03-27 19:33:11 +01:00
Kim Alvefur
b41253bb49 util.startup: Abort before initialization of logging when started as root
Prevents creation of log files owned by the root user which could be
inaccessible once started correctly.
2024-03-24 21:32:00 +01:00
Kim Alvefur
78be92ab70 util.startup: Don't use not yet existent shutdown procedure when started as root (thanks SigmaTel71) 2024-03-24 21:31:47 +01:00
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
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
dd973a9e43 util.startup: Fix firing of USR1/2 events 2024-03-02 14:08:47 +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
Matthew Wild
f62f5d71ec util.startup: Expose core.features.available as prosody.features
for convenience.
2024-02-22 09:53:02 +00:00
Kim Alvefur
812652818d util.startup: Use prosody. module namespace
Maybe we need some sort of lint for this?
2023-11-24 13:41:21 +01:00
Matthew Wild
7dc676faad util.startup: Attempt to bring some order to startup/shutdown with util.fsm 2023-11-07 12:12:18 +00:00
Kim Alvefur
af2cf5f188 renamening: Fix newly added imports to use the new namespace 2023-06-18 16:48:56 +02:00
Kim Alvefur
6c17ba5f28 util.startup: Record current version in a metric
Useful to have this info available when juggling metrics, e.g. to
see if things changed between versions.
2023-05-31 01:14:59 +02:00
Kim Alvefur
d098a73534 util.startup: Remove componentmanager backwards compatibility
Module was removed in 0.8.0 in c52b06de9b27
2023-05-31 01:07:27 +02:00
Matthew Wild
5ce1fe2603 util.startup: Add prosody.started promise to easily execute code after startup
To avoid a race where server-started fires before the promise function body is
run (on next tick), I moved server-started to fire on the next tick, which
seems sensible anyway.

Errors are logged, I'm not sure if we ought to be doing something more here.
I'm sure we'll find out.
2023-04-01 11:56:38 +01:00
Kim Alvefur
026b2d6e88 util.startup: Tweak function string representation
Mostly in order to avoid triggering the XML syntax highlighting in the
console logger.
2023-03-26 00:11:42 +01:00
Kim Alvefur
43531740f9 util: Prefix module imports with prosody namespace 2023-03-17 16:23:16 +01:00
Kim Alvefur
9228a851bc Merge 0.12->trunk 2023-01-22 15:43:44 +01:00
Kim Alvefur
435e008568 util.startup: Close state on exit to ensure GC finalizers are called
Ensures a last round of garbage collection and that finalizers are
called. Fixes things like proper closing of SQLite3 state.

There are more calls to os.exit() but most of them exit with an error or
in a case where a final GC sweep might not matter as much.

It would be nice if this was the default.

Calling util.statup.exit() everywhere may be sensible, but would be more
involved, requiring imports everywhere.
2023-01-22 14:45:47 +01:00
Kim Alvefur
bab0635179 util.startup: Ensure import() is available in prosodyctl (thanks keyzer)
Fixes error in mod_authz_internal due to import() being unavailable as
it was only loaded in Prosody proper
2022-10-20 16:31:18 +02:00
Kim Alvefur
d5e749bc8a util.startup: Fix async waiting for last shutdown steps
Observed problem: When shutting down prosody would immediately exit
after waiting for s2s connections to close, skipping the last cleanup
events and reporting the exit reason and code.

This happens because prosody.main_thread is in a waiting state and
queuing startup.shutdown is dispatched trough the main loop via
nexttick, but since the main loop was no longer running at that point it
proceeded to the end of the prosody script and exited there.
2022-06-14 16:28:49 +02:00
Matthew Wild
ff2a6d764e util.startup: Show error for unrecognized arguments passed to 'prosody' (fixes #1722) 2022-03-21 10:06:48 +00:00
Kim Alvefur
e2cff34641 util.mathcompat: Module to ease reuse of math.type()
Mostly to ensure it is available during tests, as util.startup is not
invoked there
2022-10-20 16:50:12 +02:00
Kim Alvefur
e64c5e30c2 util.startup: Provide a common Lua 5.3+ math.type() for Lua 5.2
Code deduplication
2022-10-19 16:25:05 +02:00
Kim Alvefur
ed06f22ae5 prosody: Move last cleanup and shutdown code into util.startup 2019-01-01 16:42:52 +01:00
Kim Alvefur
69a9195243 util.startup: Enable DANE in http client library with use_dane 2022-02-05 01:36:10 +01:00
Kim Alvefur
f30bbd6dcf util.startup: Teach prosodyctl to be completely --silent 2021-11-28 23:07:51 +01:00
Kim Alvefur
14f31180b5 util.startup: Teach prosodyctl to be --quiet as complement to --verbose
Original motivation was tiresome warnings about Lua 5.4 not being
supported yet.

Can still be handy to tweak log level, e.g. to prevent logging to
interfere with command output.
2021-11-28 23:07:35 +01:00
Kim Alvefur
552af220f4 util.startup: Allow supplying an argument parsing settings
The 'prosody' global is not global this early so there was no way to
override the process type field or argument parsing settings from
outside, e.g. from the migrator.
2022-01-09 15:16:09 +01:00
Matthew Wild
f89a58330b util.startup: Initialize util.async at startup 2021-11-29 14:16:20 +00:00
Kim Alvefur
b0ea55a155 util.startup: Integrate util.promise with net.server main loop 2019-01-05 07:15:33 +01:00
Kim Alvefur
619cf0043f util.startup: Understand -h, -? as --help in prosodyctl but ignore
prosodyctl -h showing an error was not very helpful, especially since
prosodyctl shows its help for any unknown (or none) command.
2021-10-25 15:47:18 +02:00
Kim Alvefur
7791f88775 util.startup: Show brief usage on prosody -h|-?|--help
Seems more suitable than asking if prosodyctl was meant to be used, or
going ahead and starting.
2021-10-25 15:46:01 +02:00
Kim Alvefur
c5de2a9d22 util.startup: Skip config readability check in migrator (thanks eTaurus)
This field is empty for reasons when invoked by prosody-migrator, which
threw an error:
> bad argument #1 to 'open' (string expected, got nil)
2021-10-23 22:24:59 +02:00
Kim Alvefur
14367c5ef7 util.startup: Only ask if 'prosodyctl' was meant instead of 'prosody' (fix #1692) 2021-10-12 15:00:15 +02:00
Kim Alvefur
d0026b7941 util.startup: Allow separate command line argument settings for prosody and prosodyctl
Makes it clearer that prosody does not take -v atm, as well as how
prosodyctl does not take the demonization flags.
2021-09-30 17:47:00 +02:00
Kim Alvefur
f2442d9bd5 prosodyctl: Add support for -v/--verbose to enable debug logging
More convenient than the environment variable.
2021-09-30 17:45:43 +02:00
Matthew Wild
5bc8b2a379 Merge 0.11->trunk 2021-05-13 11:17:13 +01:00
Kim Alvefur
48bc14c169 util.startup: Make installer_plugin_path relative to data directory
Having it relative to current working directory is problematic since
this depends on how Prosody was started and changes to the data
directory during startup (but after this point).
2021-01-24 16:12:53 +01:00
Kim Alvefur
27c7ee73b7 util.startup: Don't create installer plugin path (as root)
Since this runs before dropping root, the directory ends up being owned
by root, resulting in luarocks failing to install anything, since by
then it would be running as the prosody user.

luarocks creates this directory if needed, so creating it during startup
is not necessary.

One potential issue is if the directory is somewhere where Prosody can't
write, but then you will simply have to create it yourself with the
appropriate permissions.
2021-01-24 15:57:48 +01:00
Matthew Wild
c07d15cf71 util.startup: Handle missing nparams field from debug info (not present in 5.1) 2020-10-11 20:25:32 +01:00