Commit graph

13630 commits

Author SHA1 Message Date
Kim Alvefur
97884eb956 util.startup: Rename credentials path variable too 2025-01-18 13:29:59 +01:00
Kim Alvefur
9db7569abc luacheck: Declare new config globals 2025-01-18 12:33:18 +01:00
Kim Alvefur
059d6457e0 core.configmanager: Rename Secret to Credential
To match the variable name and what systemd calls them.
2025-01-18 12:31:48 +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
2f37c443b8 core.configmanager: Add ways to read config values from files
Inspired by something MattJ said

Allows retrieving config values from files which are expected to be
relative to the config directory, extending on the ENV_ method of
retrieving config values from outside the config file.

- FileLine retrieves the first line, stripping any trailing newline
- FileContents reads the whole file
- FileLines reads lines into an array
2025-01-16 15:05:00 +01:00
Matthew Wild
76f00fc2e3 mod_admin_shell: Remove log statement intended for development only 2025-01-16 11:35:19 +00:00
Kim Alvefur
b53c7b03aa util.bitcompat: Avoid potential noise from global metatable
If this module is require'd from a plugin on a Lua version without the
global bit32 library, it may trip a warning about accessing globals.
2025-01-15 09:55:28 +01:00
Matthew Wild
918e8f51e8 mod_pubsub: Remove duplicate create_node command
Removed the one without error handling.
2025-01-14 12:26:14 +00:00
Matthew Wild
cafbad2d01 features: Add feature for bundled mod_cloud_notify
Was supposed to be part of commit 2f38f3275a74.
2025-01-14 12:25:53 +00:00
Kim Alvefur
879cb1672f mod_authz_internal: Make host considered the parent configurable
This bestows the role specified by the 'host_user_role' setting onto
users of that host. For simplicity, only a single host can be specified.

Making it configurable allows for setups where VirtualHost and related
Components may be siblings instead of having a subdomain relationship.

For setups with many VirtualHosts sharing a single Component, the
'server_user_role' setting is more appropriate. Even more complicated
setups would have to resort to mod_firewall or similar.
2025-01-13 11:50:03 +01:00
Kim Alvefur
dc80c46504 luacheckrc: Add module.ready() 2025-01-10 12:34:29 +01:00
Kim Alvefur
dadd754f74 luacheckrc: Reorder module API methods for consistency with prosody-modules
Makes it easier to keep them in sync when the diff is smaller
2025-01-10 12:32:29 +01:00
Kim Alvefur
ea7bf939d5 util.signal: Factor out single #define that enables signalfd(2) use
Makes it easier to test by disabling this #define
2025-01-10 12:31:27 +01:00
Kim Alvefur
4919301ad4 util.signal: Implement signalfd for *BSD
The Lua hook based signal handling does not work correctly if signal
handling is setup in a coroutine. signalfd solves that in a nice way,
but is Linux-only.
2025-01-10 03:18:46 +01:00
Matthew Wild
c8d375af04 mod_cloud_notify: Merge from prosody-modules@fc521fb5ffa0
Many thanks to Thilo Molitor and Kim Alvefur for their work on this module
while it was in the community repository. It has been stable for some time, is
widely used, and provides a feature that is important to most deployments.
2025-01-09 16:49:27 +00:00
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
Matthew Wild
d0457564a3 mod_invites: Add support for invites_page option to use external invites pages
This allows Prosody to easily provide friendly invitation links, even without
setting up mod_invites_page (which is a community module). Admins can
configure it to use a third-party deployment such as https://xmpp.link or they
can deploy their own based on
https://github.com/modernxmpp/easy-xmpp-invitation

Alternatively they can just install mod_invites_page and this will all be
handled automatically by that.
2025-01-09 13:23:46 +00:00
Kim Alvefur
7288595789 prosodyctl: Hide the 'lua_paths' command from default command listing
All commands are called with a '-h' argument, but this one doesn't have
that. Since it's meant to be machine readable, hiding it seems
marginally more sensible than implementing '-h'.
2025-01-08 22:46:21 +01:00
Kim Alvefur
ede98f71e4 mod_storage_sql: Remove the word 'error' from debug messages
The word 'error' anywhere, especially in harmless debug messages, are
too often interpreted as fatal errors my some users, so best avoid that
word. These look too scary as it is, being tracebacks.
2025-01-08 22:30:30 +01:00
Matthew Wild
26eeda9ed6 prosodyctl: Add lua_paths command to print the LUA_PATH and LUA_CPATH used
This can be useful to run scripts and stuff with access to the same Lua paths
as Prosody uses.
2025-01-08 20:37:35 +00:00
Matthew Wild
d2b632dffc prosodyctl: 'about' becomes 'version -v', 'version' prints only version
The 'about' command remains for backwards compatibility, but hidden.
2025-01-08 20:35:05 +00:00
Kim Alvefur
f9731db67b mod_pubsub: Remove unused loop variable [luacheck] 2025-01-08 08:54:52 +01:00
Kim Alvefur
4569e951af util.prosodyctl.shell: Remove non-existent export [luacheck] 2025-01-08 08:53:43 +01:00
Kim Alvefur
83e27a61c8 prosodyctl: Remove unused import
Leftover after 854df134274f
2025-01-08 08:52:50 +01:00
Kim Alvefur
7ed9729e52 mod_admin_shell: Remove redundant 'mod_' prefix from debug message 2025-01-08 08:41:15 +01: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
Kim Alvefur
63690dd4a0 mod_admin_shell: Fix reporting origin module for commands
The field `_provided_by` comes from module:provides(), but these items
comes from moduel:add_item(), which include the originating module as a
'source' field of the event. However, this is absent when items are
retrieved at a later time than the initial event.
2025-01-08 08:11:02 +01:00
Kim Alvefur
0fe28ddb09 mod_pubsub: Quiet down check for service admin
This produced a *lot* of noise, especially listing items.
2025-01-07 23:37:41 +01:00
Kim Alvefur
c900aab69e mod_pubsub: Limit node listing based on new ACL-aware metadata method
Ensures that nodes that one does not have metadata access to are hidden
from view.

This follows from the new ACL-aware method added in 3b357ab6b6eb.
2025-01-07 22:57:39 +01:00
Matthew Wild
fbb3a116db prosodyctl: deluser: Use user:delete() shell command for implementation 2025-01-07 19:28:06 +00:00
Matthew Wild
8e73190353 prosodyctl: passwd: Use user:password() shell command for implementation 2025-01-07 19:25:35 +00:00
Matthew Wild
6ff135c812 mod_admin_shell: user:password(): Support prompting for password if none given 2025-01-07 19:25:12 +00:00
Matthew Wild
54de66e7b0 mod_admin_shell: user:create(): Reject promise with error message on failure 2025-01-07 19:24:05 +00:00
Matthew Wild
f40e997879 mod_admin_shell: Mark event as handled when requested input is submitted 2025-01-07 19:23:23 +00:00
Matthew Wild
a1fda1fd1a prosodyctl: adduser: use shell user:create() to provide the implementation
This allows user creation to happen inside the running Prosody process, which
improves a number of things - such as executing event handlers for user
creation, fixing issues and race conditions with some storage drivers, etc.

The intent is to do the same for the other prosodyctl commands, but this is
the first proof of concept for the approach.
2025-01-07 18:47:24 +00:00
Matthew Wild
54718fffe0 mod_admin_shell: user:create(): request password via prompt if none given 2025-01-07 18:17:57 +00:00
Matthew Wild
7a9bc06049 mod_admin_shell: Add session method to request (password) input from shell client 2025-01-07 18:17:30 +00:00
Matthew Wild
72b6c110f0 mod_admin_socket: Fire event on admin client disconnect 2025-01-07 18:16:23 +00:00
Matthew Wild
957c69461f mod_admin_shell: Don't pause async thread while waiting for promise result
This allows us to continue sending/receiving on the session, for example if
the promise will be resolved by other data that the client is going to send.

Specifically, this allows the repl-request-input to work without a deadlock.

It does open the door to interleaved commands/results, which may not be a good
thing overall, but can be restricted separately if necessary (e.g. a flag on
the session).
2025-01-07 18:15:50 +00:00
Matthew Wild
91776f57ef util.prosodyctl.shell: Support for requesting special inputs, e.g. passwords
This lets the server signal to the client that a special input is requested.
Currently we support the "password" type only.
2025-01-07 18:10:59 +00:00
Matthew Wild
7a281ab905 util.adminstream: Expose session events (specifically "disconnected")
Currently there is no way to get this info and perform cleanup tasks.
2025-01-07 18:07:45 +00:00
Matthew Wild
d58c6ae7ca mod_cron: Don't run tasks if loaded inside prosodyctl
It's common for modules to depend on mod_cron, and this can lead to it loading
inside prosodyctl, where we don't really want to run any cron tasks.
2025-01-07 18:06:29 +00:00
Matthew Wild
c7005840e6 mod_authz_internal: Make 'prosody:guest' default role for all unknown JIDs
This fixes an issue where e.g. remote users or even other users on the server
were unable to list MUC rooms.

We want to define a permission to list MUC rooms, but we want it to be
available to everyone by default (the traditional behaviour).

prosody:guest is the lowest role we have. I ran a quick check and it isn't
really used for anything right now that would be concerning.

It was originally designed for anonymous logins. I think it's safe to treat
remote JIDs as equivalent, since we have no trust relationship with anonymous
users either.
2025-01-07 14:41:32 +00:00
Matthew Wild
25b7ac8ece mod_pep: Support for node/item management commands 2025-01-07 14:27:34 +00:00
Matthew Wild
a10a0140e5 mod_pubsub: Expand shell commands to include node/item management 2025-01-07 14:27:18 +00:00
Matthew Wild
0d15dab13f mod_roster: Add basic roster management shell commands 2025-01-07 12:26:03 +00: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
Matthew Wild
f45d88d614 mod_admin_shell: stats:show(): Friendlier error message when statistics disabled 2024-12-28 18:35:24 +00:00
Matthew Wild
a2b2d01c3e Merge 0.12->trunk 2024-12-20 14:22:25 +00:00