Commit graph

787 commits

Author SHA1 Message Date
Kim Alvefur
be51e54c68 doap: Add XEP-0333 2025-03-23 19:59:45 +01:00
Kim Alvefur
780b392d25 doap: Add XEP-0334 2025-03-23 19:57:06 +01:00
Matthew Wild
d71473df3b MUC: Use new XEP namespace for hats by default
Revert with muc_hats_compat = true in the config if necessary.
2025-02-14 13:08:45 +00:00
Matthew Wild
d6f8c4fe18 MUC: Don't inform people about the avatar hash when there is none 2025-02-07 10:19:36 +00:00
Matthew Wild
857c61ffd3 mod_muc: Integrate support for vcards/avatars on MUC rooms
This was previously served by a community module (mod_vcard_muc).

It can be disabled by setting `vcard_muc = false` in the config.
2025-02-06 17:08:46 +00:00
Kim Alvefur
0f931dea2a MUC: Use fully qualified import
Seems to be hard to break old habits?

Ref #1223
2024-11-23 17:43:43 +01:00
Kim Alvefur
ab148f782f muc: Update link to XEP-0421 (instead of inbox) 2024-11-23 16:46:34 +01:00
Matthew Wild
d89b7fa672 Merge 0.12->trunk 2024-11-15 14:37:10 +00:00
Matthew Wild
48b271450d MUC: optimizations for broadcast of visitor presence (thanks Jitsi team)
This avoids doing performing unnecessary work in the case of visitors joining
a MUC, no functionality changes are intended.
2024-11-15 14:36:41 +00:00
Aidan Epstein
712540db35 MUC: Fix error with nonlegacy hats. 2024-09-28 12:38:42 -07:00
Matthew Wild
29148cfe9c MUC: Don't default component admins to being room owners
This change has various technical and social benefits. If ownership of a MUC
is really needed, it can be gained using the 'Set affiliation' ad-hoc command
or prosodyctl shell.

Example client incompatibility with the old behaviour:

  - https://github.com/monal-im/Monal/issues/1085
2024-06-18 15:08:30 +01:00
Matthew Wild
aa6b79c20c MUC: Add per-room PM restriction functionality (thanks Wirlaburla)
Based on mod_muc_restrict_pm in prosody-modules d82c0383106a
2024-05-23 17:39:20 +01:00
Kim Alvefur
221f86f77f MUC: Fix legacy hats (thanks nicoco)
Why do we not have tests for this?
2024-03-28 15:39:59 +01:00
Kim Alvefur
8cdc5fb3a2 MUC: Switch to official XEP-0317 namespace for Hats (including compat) (thanks nicoco) 2024-03-28 15:26:57 +01:00
Matthew Wild
cbcb57fa24 MUC: Allow kicking users with the same affiliation as the kicker (fixes #1724)
This is allowed by XEP-0045, which states:

"A moderator SHOULD NOT be allowed to revoke moderation privileges from
someone with a higher affiliation than themselves (i.e., an unaffiliated
moderator SHOULD NOT be allowed to revoke moderation privileges from an admin
or an owner, and an admin SHOULD NOT be allowed to revoke moderation
privileges from an owner)."
2022-03-23 13:38:55 +00:00
Kim Alvefur
cb66977bd4 MUC: Record reason for affiliation changes and return in list (fixes #1227) 2021-08-08 18:07:17 +02:00
Matthew Wild
836b370fa8 mod_muc: Switch to module:could() for some implicit access control checks 2023-11-07 11:50:59 +00:00
Matthew Wild
3eff243580 mod_muc: Allow guest users to list rooms by default 2023-11-07 11:12:57 +00:00
Matthew Wild
8b0521f244 mod_muc: Add :list-rooms permission 2023-11-07 11:10:38 +00:00
Kim Alvefur
3a91ff2b48 muc.register: Clarify what's going on when enforcing nicknames
Does this make it clearer what is going on?
2023-11-03 21:13:34 +01:00
Kim Alvefur
1d955bd1f3 mod_muc: Use enum config API for 'restrict_room_creation'
This communicates the accepted values in case the config diverges from
them. Note that older documentation used an "admin" value behaving like
an alias to true, but this is no longer handled. Should it?
2023-07-21 22:49:01 +02:00
Kim Alvefur
91d95d4c33 plugins: Use boolean config method in some places
Because it makes sense and improves feedback via logging
2023-07-18 12:38:16 +02:00
Kim Alvefur
f0a2a89d6d mod_muc: Use enum option method for 'muc_room_default_presence_broadcast' 2023-07-18 12:32:41 +02:00
Kim Alvefur
71ad48095d plugins: Use integer config API with interval specification where sensible
Many of these fall into a few categories:
- util.cache size, must be >= 1
- byte or item counts that logically can't be negative
- port numbers that should be in 1..0xffff
2023-07-17 01:38:54 +02:00
Kim Alvefur
1987a7411f plugins: Switch to :get_option_period() for time range options
Improves readability ("1 day" vs 86400) and centralizes validation.
2023-07-16 20:49:33 +02:00
Matthew Wild
f7323ed6e4 core, plugins: Split prosody:user role into prosody:{guest,registered,member}
This gives us more granular control over different types of user account.
Accounts registered by IBR get assigned prosody:registered by default, while
accounts provisioned by an admin (e.g. via prosodyctl shell) will receive
prosody:member by default.
2023-06-29 15:36:13 +01:00
Kim Alvefur
98922d54b1 plugins: Prefix module imports with prosody namespace 2023-03-24 13:15:28 +01:00
Kim Alvefur
0aae39f660 MUC: Add note about non-existant room method 2023-01-20 19:47:00 +01:00
Matthew Wild
53ccf68cdf Backed out changeset 73a45ba6e3f1 in favour of 427dd01f0864
New behaviour (muc_room_allow_persistent = true, the default):

- Parent host users are not restricted by default (prosody:user)
- Users without roles (by default that is non-admins, non-parent-host users,
  and users on other servers) can no longer configure persistence by default.

muc_room_allow_persistent = false will restrict persistence to prosody:admin.

Parent-host users should not be restricted by default, and this can be
configured via the new roles/permissions options.
2022-09-29 12:43:09 +01:00
Matthew Wild
856a482013 mod_muc: Better map restrict_room_creation to role permissions (behaviour change)
With this change and 427dd01f0864, room creation is now effectively restricted
to parent-host users by default. This is a better default than previous
Prosody versions (where room creation was not restricted).

The "local" option for restrict_room_creation is no longer used (any value
other than true/false won't change the default behaviour).

restrict_room_creation = true will grant prosody:admin the ability to create
rooms.

restrict_room_creation = false disables all permission checks.

Anything between these two can be achieved using custom roles and permissions.
2022-09-29 12:30:52 +01:00
Matthew Wild
4dc941fa53 muc: Re-allow non-admins to configure persistence (thanks Meaz)
Non-admins don't have a role on MUC services by default. Not even
prosody:user. This meant they had no :create-persistent-room permission, even
if muc_room_allow_persistent was true (the default).

Now we only check the role permissions if persistent room creation is
restricted, otherwise we skip any permission checks, just like previous
versions.
2022-09-28 17:47:00 +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
Kim Alvefur
5797a3f65d MUC: Switch ID algorithm for IQ relay (fixes #1266, #1435) 2021-10-05 18:15:06 +02:00
Kim Alvefur
2798f91821 MUC: Add method for getting the occupant id salt to allow reuse 2021-10-05 18:13:51 +02:00
Kim Alvefur
449311b2d1 MUC: Remove <{muc}x> tags in some errors
Including the payload of the stanza that caused the error is optional
and we're generally not doing it anywhere else.
2021-12-08 21:55:25 +01:00
Kim Alvefur
1c0c380203 MUC: Fix error origin JID in wrong argument position
Mistake introduced in cbe524ed1a6a.  Removing because this is a query to
the bare JID where the error origin matches the resulting stanza 'from'.
2021-12-08 21:06:16 +01:00
Kim Alvefur
d621e0626c MUC: Remove remaining deprecated numeric error codes
The numeric error codes seems to have been removed from the examples in
XEP-0045 version 1.24, and were deprecated even by RFC 3920 in 2004,
only allowed for backwards compatibility.
2021-12-08 21:02:14 +01:00
Kim Alvefur
3ae5d13641 MUC: Return a friendly textual error when trying to speak without voice
I spend several minutes confused over where the bug was until I
remembered I had set myself as visitor in the previous debug session.
This would have helped.
2021-12-08 16:40:51 +01:00
Kim Alvefur
2807299fba MUC: Allow modules a chance to act prior to room destruction 2021-12-05 14:49:06 +01:00
Matthew Wild
820eabbed6 MUC: Actually set the new affiliation data if it was previously empty 2021-11-16 15:00:02 +00:00
Matthew Wild
eecabd740d MUC: Include old affiliation data in affiliation change event 2021-11-16 12:57:23 +00:00
Matthew Wild
3a21513b61 MUC: Add room:set_affiliation_data() 2021-11-16 12:57:04 +00:00
Matthew Wild
f5fd67c3e7 MUC: Set .previous_affiliation = "none" if nil, for consistency with .affiliation
It appears nothing currently uses this field in prosody or prosody-modules
2021-11-16 12:02:54 +00:00
Matthew Wild
bfd0d0a8a9 MUC: Fix incorrect variable name (thanks luacheck) 2021-11-16 11:54:32 +00:00
Matthew Wild
366126e90f MUC: Switch to event.allowed signaling to block event, matching muc-pre-set-role
...and fixing the logic bug that broke everything in the previous commit.
2021-11-16 11:52:36 +00:00
Matthew Wild
5fe5458da1 MUC: Add 'muc-pre-set-affiliation' event, allowing to block change or modify data 2021-11-16 11:41:08 +00:00
Matthew Wild
5fa66527d5 MUC: Add option to include form in registration query
This was originally not done based on my interpretation of XEP-0045. Today's
reading, however, revealed that it actually says the result

> SHOULD contain **at least** a <username/> element

(emphasis mine)

I take this to mean that including a form **is** allowed (and I think this is
sensible). Tigase already includes the form I believe.

I've gated the new behaviour behind a (default off) option, because it hasn't
been tested for compatibility with clients. My primary desire for it is in
Snikket, where the clients will be tested to ensure compatibility with this.

I don't anticipate that (m)any clients would break, so maybe after 0.12 we can
experiment with enabling it by default and eventually remove the option.
2021-11-15 16:11:03 +00:00
Kim Alvefur
4703ad42a8 MUC: Reject full JID in affiliation queries
XEP-0045 states:
> Affiliations are granted, revoked, and maintained based on the user's
> bare JID, not the nick as with roles.

Therefore inclusion of a full JID in affiliation queries is invalid.

Thanks to Ge0rG and Poezio for discovering this issue.
2021-09-17 16:28:07 +02:00
Kim Alvefur
a399b1caed Merge 0.11->trunk 2021-07-23 17:13:06 +02:00
Kim Alvefur
00735e4759 MUC: Fix logic for access to affiliation lists
Fixes https://prosody.im/security/advisory_20210722/

Backs out 4d7b925652d9
2021-07-22 17:18:39 +02:00