Commit graph

12972 commits

Author SHA1 Message Date
Kim Alvefur
32445b3082 core.moduleapi: Record reverse dependencies
Useful to know why a module was auto-loaded without having to dig trough
all other modules for the one that depends on it.
2023-03-05 14:07:08 +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
7b7cad2b66 mod_tokenauth: Fix misplaced closing parenthesis
`type(x ~= y)` is always a string, thus truthy
2023-03-02 22:34:29 +01:00
Kim Alvefur
aabfdaf01a util.sasl.oauthbearer: Fix traceback on authz in unexpected format
E.g. if you were to just pass "username" without @hostname, the split
will return nil, "username" and the nil gets passed to saslprep() and it
does not like that.
2023-03-02 14:37:46 +01:00
Matthew Wild
9e02d322d8 mod_tokenauth: Gracefully handle missing tokens 2023-03-01 18:43:54 +00:00
Matthew Wild
4ce832123e mod_auth_internal_hashed: Add oauthbearer handler to our SASL profile 2023-03-01 13:05:17 +00:00
Matthew Wild
b435f6d52a mod_tokenauth: Add SASL handler backend that can accept and verify tokens
This is designed for use by other modules that want to accept tokens issued
by mod_tokenauth, without duplicating all the necessary logic.
2023-03-01 13:04:36 +00:00
Matthew Wild
f3d152eb1b mod_tokenauth: Add some sanity checking of the new optional parameters 2023-03-01 13:02:51 +00:00
Matthew Wild
a58a6d2317 mod_tokenauth: Add 'purpose' constraint
This allows tokens to be tied to specific purposes/protocols. For example, we
shouldn't (without specific consideration) allow an OAuth token to be dropped
into a slot expecting a FAST token.

While FAST doesn't currently use mod_tokenauth, it and others may do in the
future. It's better to be explicit about what kind of token code is issuing or
expecting.
2023-03-01 13:01:21 +00:00
Matthew Wild
16137b3b14 mod_saslauth: Support for SASL handlers forcing a specific resource
The token layer supports tokens that are tied to a given resource.
2023-03-01 12:56:08 +00:00
Matthew Wild
6db4afa0c3 util.sasl: Add SASL OAUTHBEARER mechanism (RFC 7628) 2023-03-01 12:55:00 +00:00
Kim Alvefur
d5661f1de3 mod_admin_adhoc: Add XEP-0133 commands to Disable and Re-Enable users
Enables UI in clients supporting XEP-0050
2023-02-23 18:39:02 +01:00
Kim Alvefur
087ffc7f32 CHANGES: Mention new ability to disable and enable user accounts 2023-02-23 18:11:15 +01:00
Kim Alvefur
701fb4fce0 mod_admin_shell: Add commands to disable and enable accounts
First proper UI to enable/disable, allowing it to be tested.
2023-02-23 18:10:06 +01:00
Kim Alvefur
893dce647b mod_c2s: Disconnect accounts when they are disabled
We decided that at the first stage, accounts that are disabled should
simply be prevented from authenticating, thus they should also be
prevented from having connected sessions.  Since this is aimed to be a
moderation action for cases of abuse, they shouldn't be allowed to
continue being connected.
2023-02-23 16:28:57 +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
ef6ad34029 core.usermanager: Add Teal description file 2023-02-23 16:04:02 +01:00
Kim Alvefur
fe206323b5 mod_auth_internal_hashed: Implement methods to enable and disable users 2023-02-23 14:44:35 +01:00
Kim Alvefur
96acef2170 mod_auth_internal_hashed: Implement is_enabled() method
Uses 'disabled' property already introduced in aed38948791f
2023-02-23 14:34:10 +01:00
Kim Alvefur
9c49ca70fd util.prosodyctl.check: Suggest 'http_cors_override' instead of older CORS settings
The cross_domain_* settings were added here prior to http_cors_override
being added back in 17d87fb2312a, so for a time there was no
replacement, but now there is.
2023-02-22 22:27:42 +01:00
Kim Alvefur
4704e98af6 mod_auth_internal_hashed: Add stub methods for enabling and disabling users
But how and where?
2023-02-22 15:32:40 +01:00
Kim Alvefur
01fedfa5be mod_auth_internal_hashed: Refactor to prepare for disabling users
Moving this out will make space for a dynamic check whether a particular
user is disabled or not, which is one possible response to abuse of
account privileges.
2023-02-22 13:27:08 +01:00
Kim Alvefur
5a3f0becf8 Merge 0.12->trunk 2023-02-22 22:29:53 +01:00
Matthew Wild
c368ddc007 Merge 0.12->trunk 2023-02-21 13:30:32 +00:00
Matthew Wild
631a4a3034 Added tag 0.12.3 for changeset 0598d822614f 2023-02-21 10:06:54 +00:00
Matthew Wild
a3d7c77607 Merge 0.12->trunk 2023-02-20 18:10:36 +00:00
Matthew Wild
4dcabd36ce mod_websocket: Fire pre-session-close event (fixes #1800)
This event was added in a7c183bb4e64 and is required to make mod_smacks know
that a session was intentionally closed and shouldn't be hibernated (see
fcea4d9e7502).

Because this was missing from mod_websocket's session.close(), mod_smacks
would always attempt to hibernate websocket sessions even if they closed
cleanly.

That mod_websocket has its own copy of session.close() is something to fix
another day (probably not in the stable branch). So for now this commit makes
the minimal change to get things working again.

Thanks to Damian and the Jitsi team for reporting.
2023-02-20 18:10:15 +00:00
Kim Alvefur
6ce26b1c94 MUC: Add Occupant API methods to Teal spec 2023-02-20 18:16:12 +01:00
Kim Alvefur
bac012d675 MUC: Add Teal description of muc.lib functions 2023-02-20 15:11:29 +01:00
Kim Alvefur
a35dac3a80 MUC: Start on a Teal description of MUC rooms
Started as part of a documentation project for the MUC API
2023-02-20 15:08:06 +01:00
Matthew Wild
ff51890910 Merge 0.12->trunk 2023-02-17 17:02:41 +00:00
Matthew Wild
87ee5a2300 net.http.parser: Fix off-by-one error in chunk parser 2023-02-17 17:01:19 +00:00
Kim Alvefur
02b01c4826 Merge 0.12->trunk 2023-02-16 20:15:39 +01:00
Kim Alvefur
67ea0ee50e mod_admin_socket: Return error on unhandled input to prevent apparent freeze
When mod_admin_socket is loaded without mod_admin_shell, attempt to use
`prosodyctl shell` will appear to freeze after any input, since no
response is returned.
2023-02-16 17:20:09 +01:00
Matthew Wild
424a334450 Merge 0.12->trunk 2023-02-16 16:00:07 +00:00
Matthew Wild
bc1e51eb83 net.http.server: Add new API to get HTTP request from a connection
This information is sometimes necessary in the context where we have a
connection that we know (or believe to be) associated with an incoming HTTP
request.

For example, it can be used to retrieve the IP address of a request (which may
differ from the IP address of the connection, due to X-Forwarded-For and co).

Thanks to the Jitsi team for highlighting this gap in the API.
2023-02-16 15:59:26 +00:00
Kim Alvefur
bf35a39a15 util.poll: Include unistd.h only for epoll
This defines close(), which is only used with epoll, hence we don't need
to include it when building in poll or select mode.
2023-02-10 00:37:05 +01:00
Matthew Wild
fbfe255e12 Merge 0.12->trunk 2023-02-09 22:58:01 +00:00
Matthew Wild
0fd88a07a4 net.http.parser: Improve handling of responses without content-length
This ensures that we support responses without a content-length header, and
allow streaming them through the streaming handler interface. An example of
such a response would be Server-Sent Events streams.
2023-02-09 22:57:32 +00:00
Matthew Wild
28e3b19ca1 net.http: Add missing log parameter 2023-02-09 22:37:54 +00:00
Matthew Wild
8bc31437bc Merge 0.12->trunk 2023-02-09 22:34:05 +00:00
Matthew Wild
a4556fc67a sessionmanager: Improve logging around session destruction 2023-02-09 15:09:03 +00:00
Kim Alvefur
1ea488deee util.crypto: Preemptively silence 'strict-prototypes' warning
With `gcc-12 -Wstrict-prototypes` the following warning is shown:

crypto.c:43:13: warning: function declaration isn't a prototype [-Wstrict-prototypes]
   43 | static BIO* new_memory_BIO() {
      |             ^~~~~~~~~~~~~~
2023-01-31 16:27:55 +01:00
Kim Alvefur
3605137656 mod_storage_sql: Remove module status on unknown 'debug' level
Expected this to be translated to 'core', but it logs an error instead.
See previous commit.
2023-01-31 07:52:33 +01:00
Kim Alvefur
d90a094949 core.moduleapi: Fix passing variable to logging 2023-01-31 07:48:21 +01:00
Kim Alvefur
89f652ff0b mod_storage_sql: Silence luacheck warning 2023-01-30 00:40:47 +01:00
Kim Alvefur
0147b972e0 mod_storage_sql: Record connection to database as module status
Allows retrieving this in e.g. a health reporting module

Thanks pfak
2023-01-30 00:38:26 +01:00
Kim Alvefur
dc958f1e40 mod_admin_shell: Match substring in muc:affiliations() like muc:occupants()
Maybe one day we'll get consistent filtering semantics everywhere.
2023-01-30 00:14:50 +01:00
Kim Alvefur
1b71a53fb7 mod_admin_shell: Sort MUC users by relation and JID
Suggested by MattJ, our resident UI expert :)
2023-01-29 21:37:13 +01:00