Commit graph

120 commits

Author SHA1 Message Date
Kim Alvefur
6959547703 core.usermanager: Fix COMPAT layer for legacy is_admin() function
Thanks ctrlaltca

Fixes #1912
2025-03-22 11:53:15 +01:00
Matthew Wild
e66265d65a usermanager: Add info logging for all usermanager account changes 2025-03-10 11:52:55 +00:00
Matthew Wild
ccacf5acb3 usermanager: Include role_name in event for consistency with the 'removed' event 2025-02-13 15:31:37 +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
641f070a9d usermanager: Add create_user_with_role() method to atomically set initial role 2023-06-29 15:31:46 +01:00
Kim Alvefur
e53ef27a1c core.usermanager: Correct formatting of not implemented error
Spaces, no hyphen, apparently.
2023-03-26 16:51:33 +02:00
Kim Alvefur
d47a7bb3bd core: Prefix module imports with prosody namespace 2023-03-17 16:23:07 +01:00
Kim Alvefur
4d46c27840 authz: Add method for retrieving all roles
Some of the OAuth stuff highlights a small need to retrieve a list of
roles somehow. Handy if you ever need a role selector in adhoc or
something.

Unless there's some O(n) thing we were avoiding?
2023-03-04 18:40:43 +01:00
Kim Alvefur
bb65a83696 core.usermanager: Fire events when enabling and disabling users
Allow modules to act on this state change, e.g. kick accounts etc.
2023-02-23 16:25:31 +01:00
Kim Alvefur
931c14e50b core.usermanager: Add methods for enabling and disabling users
Calling into the auth module, where available.
2023-02-23 16:24:41 +01:00
Kim Alvefur
6a37ab6356 core.usermanager: Link to docs for new role API to make warning more actionable 2022-08-27 17:01:36 +02:00
Kim Alvefur
b608af36ed core.usermanager: Update argument name in authz fallback method
It's not plural
2022-08-18 15:42:07 +02:00
Kim Alvefur
1f4b94adab core.usermanager: Remove obsolete authz fallback method 2022-08-18 15:38:18 +02:00
Kim Alvefur
51b17f1c20 core.usermanager: Add missing methods to fallback authz provider 2022-08-18 14:10:21 +02:00
Kim Alvefur
8bed557afd core.usermanager: Add scoped luacheck ignore rule to reduce clutter 2022-08-18 14:07:54 +02:00
Matthew Wild
f75ac951b5 mod_authz_internal: Expose convenience method to test if user can assume role 2022-08-18 10:37:59 +01:00
Matthew Wild
f5768f63c9 mod_authz_internal, and more: New iteration of role API
These changes to the API (hopefully the last) introduce a cleaner separation
between the user's primary (default) role, and their secondary (optional)
roles.

To keep the code sane and reduce complexity, a data migration is needed for
people using stored roles in 0.12. This can be performed with

  prosodyctl mod_authz_internal migrate <host>
2022-08-17 16:38:53 +01:00
Matthew Wild
ae3a89375d usermanager: Add back temporary is_admin to warn about deprecated API usage
Goal: Introduce role-auth with minimal disruption

is_admin() is unsafe in a system with per-session permissions, so it has been
deprecated.

Roll-out approach:

1) First, log a warning when is_admin() is used. It should continue to
   function normally, backed by the new role API. Nothing is really using
   per-session authz yet, so there is minimal security concern.

   The 'strict_deprecate_is_admin' global setting can be set to 'true' to
   force a hard failure of is_admin() attempts (it will log an error and
   always return false).

2) In some time (at least 1 week), but possibly longer depending on the number
   of affected deployments: switch 'strict_deprecate_is_admin' to 'true' by
   default. It can still be disabled for systems that need it.

3) Further in the future, before the next release, the option will be removed
   and is_admin() will be permanently disabled.
2022-08-15 15:25:07 +01:00
Matthew Wild
7ccf41ebb5 usermanager: Remove concept of global authz provider
Rationale:

- Removes a bunch of code!
- We don't have many cases where an actor is not bound to one of our hosts
- A notable exception is the admin shell, but if we ever attempt to lock those
  sessions down, there is a load of other work that also has to be done. And
  it's not clear if we would need a global authz provider for that anyway.
- Removes an extra edge case from the necessary mental model for operators
- Sessions that aren't bound to a host generally are anonymous or have an
  alternative auth model (such as by IP addres).
- With the encapsulation now provided by util.roles, ad-hoc "detached roles"
  can still be created anyway by code that needs them.
2022-08-12 16:21:57 +01:00
Matthew Wild
bd2b2af7b7 usermanager: Fix method name of global authz provider (thanks Zash) 2022-08-12 11:58:25 +01:00
Matthew Wild
afbc47f8ba usermanager: Remove obsolete function from global authz provider 2022-08-11 16:56:59 +01:00
Matthew Wild
b1f0061da3 usermanager: Handle local JIDs being passed to get/set_jid_role()
There is no reasonable fallback for set_jid_role() because users may have
multiple roles, so that's an error.
2022-08-01 20:26:00 +01:00
Kim Alvefur
a88c982ae2 core.usermanager: Add missing stub authz methods to global authz provider
Except, should we have a global authz provider at all?
2022-07-20 13:10:47 +02:00
Matthew Wild
c0b857e5fb mod_authz_internal: Use util.roles, some API changes and config support
This commit was too awkward to split (hg record didn't like it), so:

- Switch to the new util.roles lib to provide a consistent representation of
  a role object.

- Change API method from get_role_info() to get_role_by_name() (touches
  sessionmanager and usermanager)

- Change get_roles() to get_user_roles(), take a username instead of a JID
  This is more consistent with all other usermanager API methods.

- Support configuration of custom roles and permissions via the config file
  (to be documented).
2022-07-19 18:02:02 +01:00
Matthew Wild
4db3d15723 usermanager, mod_auth_*: Add get_account_info() returning creation/update time
This is useful for a number of things. For example, listing users that need to
rotate their passwords after some event. It also provides a safer way for code
to determine that a user password has changed without needing to set a handler
for the password change event (which is a more fragile approach).
2022-07-12 13:14:47 +01:00
Matthew Wild
d73714b4f4 Switch to a new role-based authorization framework, removing is_admin()
We began moving away from simple "is this user an admin?" permission checks
before 0.12, with the introduction of mod_authz_internal and the ability to
dynamically change the roles of individual users.

The approach in 0.12 still had various limitations however, and apart from
the introduction of roles other than "admin" and the ability to pull that info
from storage, not much actually changed.

This new framework shakes things up a lot, though aims to maintain the same
functionality and behaviour on the surface for a default Prosody
configuration. That is, if you don't take advantage of any of the new
features, you shouldn't notice any change.

The biggest change visible to developers is that usermanager.is_admin() (and
the auth provider is_admin() method) have been removed. Gone. Completely.

Permission checks should now be performed using a new module API method:

  module:may(action_name, context)

This method accepts an action name, followed by either a JID (string) or
(preferably) a table containing 'origin'/'session' and 'stanza' fields (e.g.
the standard object passed to most events). It will return true if the action
should be permitted, or false/nil otherwise.

Modules should no longer perform permission checks based on the role name.
E.g. a lot of code previously checked if the user's role was prosody:admin
before permitting some action. Since many roles might now exist with similar
permissions, and the permissions of prosody:admin may be redefined
dynamically, it is no longer suitable to use this method for permission
checks. Use module:may().

If you start an action name with ':' (recommended) then the current module's
name will automatically be used as a prefix.

To define a new permission, use the new module API:

  module:default_permission(role_name, action_name)
  module:default_permissions(role_name, { action_name[, action_name...] })

This grants the specified role permission to execute the named action(s) by
default. This may be overridden via other mechanisms external to your module.

The built-in roles that developers should use are:

 - prosody:user (normal user)
 - prosody:admin (host admin)
 - prosody:operator (global admin)

The new prosody:operator role is intended for server-wide actions (such as
shutting down Prosody).

Finally, all usage of is_admin() in modules has been fixed by this commit.
Some of these changes were trickier than others, but no change is expected to
break existing deployments.

EXCEPT: mod_auth_ldap no longer supports the ldap_admin_filter option. It's
very possible nobody is using this, but if someone is then we can later update
it to pull roles from LDAP somehow.
2022-06-15 12:15:01 +01: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
a3c82c5d02 core.usermanager: Implement noop role writes on global authz provider
So that the methods are there and don't cause an error.
2021-12-06 22:38:27 +01:00
Matthew Wild
3315a2f616 usermanager: Fire user-roles-changed event when updating roles of a local user 2021-11-12 13:25:09 +00:00
Matthew Wild
58e6c71f12 usermanager, mod_authz_internal: Add methods to fetch users/JIDs of given role 2021-08-26 16:35:43 +01:00
Jonas Schäfer
0ca317cd0b usermanager: expose set_roles through API 2021-03-22 21:24:57 +01:00
Matthew Wild
8f5d92c15e usermanager: Fix traceback when checking admin status of host-only JIDs (fixes #1508) 2020-03-19 14:12:40 +00:00
Matthew Wild
8d04879adf usermanager, mod_authz_*: Merge mod_authz_config and mod_authz_internal into the latter 2020-02-23 12:38:43 +00:00
Matthew Wild
3fb671e0a3 usermanager: Add get_roles() function 2020-02-05 17:41:14 +00:00
Matthew Wild
34abcc8bd5 mod_authz_internal, usermanager: Rename to mod_authz_config 2020-01-27 22:28:52 +00:00
Matthew Wild
b177628d3c usermanager: Load authz providers on components also 2020-01-27 22:09:19 +00:00
Matthew Wild
1f437623ad usermanager, mod_authz_internal: Move admin-checking functionality into a module. Fixes #517 (ish).
Note: Removes the ability for mod_auth_* providers to determine user admin status. Such
modules will need to have their is_admin methods ported to be a mod_authz_* provider.
2020-01-27 21:54:59 +00:00
Kim Alvefur
77fbea8cdc core: Use prosody.hosts instead of _G.hosts for consistency 2018-03-29 16:58:06 +02:00
Kim Alvefur
43b814a83b vairious: Add annotation when an empty environment is set [luacheck] 2018-02-28 20:06:26 +01:00
Kim Alvefur
73b75571e6 core.usermanager, various modules: Disconnect other resources on password change (thanks waqas) (fixes #512) 2017-07-28 13:15:29 +02:00
Kim Alvefur
7d84f2f261 usermanager: Shortcircuit user existence check if they have existing sessions 2016-02-21 19:30:45 +01:00
Kim Alvefur
1ef7f18752 core.usermanager: Return as soon as possible once admin status is known 2015-12-06 23:47:47 +01:00
Kim Alvefur
27265c20e2 core.*: Remove use of module() function 2015-02-21 10:42:19 +01:00
Matthew Wild
7b3df2bae6 portmanager, s2smanager, sessionmanager, stanza_router, storagemanager, usermanager, util.xml: Add luacheck annotations 2015-05-06 19:20:07 +01:00
Kim Alvefur
9bb576b332 usermanager: Capitalize log message 2015-04-25 14:22:59 +02:00
Matthew Wild
de0f19e1af usermanager: Remove unused import of pairs() 2013-08-13 19:38:05 +01:00
Florian Zeitz
1d833bb807 Remove all trailing whitespace 2013-08-09 17:48:21 +02:00
Kim Alvefur
1acfdf5914 core.*: Complete removal of all traces of the "core" section and section-related code. 2013-03-23 02:33:15 +01:00
Kim Alvefur
ab915e9dd4 usermanager: Add support for iterating over accounts 2012-09-21 17:26:25 +02:00
Kim Alvefur
136674425b storagemanager: Add purge() for purging user data from all backends in use 2012-09-16 02:18:07 +02:00