Commit graph

13124 commits

Author SHA1 Message Date
Kim Alvefur
517f20b523 util.set: Remove duplicate __freeze metamethod
Backs out 895a82c5d8d4 beacuse __freeze already added in a96a2fbcc6c0
2023-06-01 14:33:57 +02:00
Kim Alvefur
180daf56a1 Merge 0.12->trunk 2023-05-31 14:20:45 +02:00
Kim Alvefur
e4d5c15396 util.prosodyctl.check: Fix error where hostname can't be turned into A label
Where gethostname or tohostname returns an invalid name, e.g. containing
underscores or something, to_ascii would reject this and return nil,
which triggers an error in the dns lookup.

Reported by prova2 in the chat, for whom tohostname returned a long name
containing underscores.
2023-05-31 14:08:19 +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
Kim Alvefur
4d9931786d net.http.server: Return request ID in header to aid debugging
Eases locating the request in logs
2023-05-29 01:42:31 +02:00
Kim Alvefur
9480954e92 mod_admin_shell: Show internal URL where different from external 2023-05-28 22:33:45 +02:00
Kim Alvefur
e6f0e0b9d0 net.tls_luasec: Expose method for loading a certificate
Further isolates LuaSec from Prosody core, with the ultimate goal of
allowing LuaSec to be replaced more easily.
2023-05-27 15:40:49 +02:00
Kim Alvefur
296710c701 net.certmanager: Move LuaSec feature detection to net.tls_luasec
Further isolates LuaSec from Prosody core, with the ultimate goal of
allowing LuaSec to be replaced more easily.
2023-05-27 15:39:26 +02:00
Kim Alvefur
09a2018e40 util.dependencies: Print tables itself to reduce number of imports
Rationale: See diffstat

When this module is imported, it ends up calling stty via term_width()
in util.human.io.table(). When this happens outside of a terminal, the
following message is sent to stdout:
	stty: 'standard input': Inappropriate ioctl for device

Not importing this module avoids that.

Furthermore three is value in this module having minimal dependencies as
they might not be available when it does the checks.

Ref a1fed82c44b9
2023-05-26 21:18:27 +02:00
Kim Alvefur
d947a5273c util.sasl: Add basic tests for OAUTHBEARER 2023-05-26 20:45:10 +02:00
Kim Alvefur
8f7b31f616 util.sasl.oauthbearer: Tighter parsing of SASL message
Previously the kvsep before and after the kvpairs would have been
included in kvpairs, which is incorrect but should be harmless.
2023-05-26 17:39:53 +02:00
Kim Alvefur
dd2e84271f Merge 0.12->trunk 2023-05-24 15:35:28 +02:00
Kim Alvefur
3320521129 teal: Describe http_url method
It is not part of the "real" module API, but used in various places.
Extending the API seems hard to describe in a type-safe way.
2023-05-24 14:56:50 +02:00
Kim Alvefur
ba878e7230 mod_admin_shell: Show internal URL in addition to external in http:list
To help with configuring reverse proxies.
2023-05-24 14:49:29 +02:00
Kim Alvefur
0b87371f78 mod_http: Add way to retrieve internal URL instead of external
This could be of help when configuring reverse proxies, as it is the
internal URL the proxy must point at.

Argument treated as an enum "internal" "external"(default) to allow for
future extensibility.
2023-05-24 14:43:45 +02:00
Kim Alvefur
2337f127b5 util.jsonschema: Update test suite ignore rules
A test case was added in the middle, so all these need to be reordered.
2023-05-20 15:44:55 +02:00
Kim Alvefur
c71ab7f1ef mod_admin_shell: Allow logging HTTP events with debug:logevents("http")
Mirroring debug:events("http"), and to replace the "Firing event: GET /"
log lines in net.http.server
2023-05-14 19:02:26 +02:00
Kim Alvefur
f3ec84d5ef mod_admin_shell: Allow logging global events with debug:logevents("*")
Missing feature. It should behave like debug:events()
2023-05-14 19:01:01 +02:00
Kim Alvefur
223a8b69a4 net.http.server: Remove "Firing event" logs, use event logging instead
Since these are noisy and we have the thing in util.helpers to log
events fired.

The new status line events are meant to replace these as they include
more useful info.
2023-05-14 18:48:20 +02:00
Kim Alvefur
ff0b9242e3 net.http.server: Log request and response status lines
Points out the beginning and end of a request.
2023-05-14 18:44:38 +02:00
Kim Alvefur
fe8e6dc8ca net.http.server: Assign each request its own log source 2023-05-14 18:44:11 +02:00
Kim Alvefur
f064c099a2 net.http.server: Assign an ID to each request, shared with response
Goal is improve tracking of individual HTTP requests throughout its
life-cycle. Having a single ID to use in logging should help here.
2023-05-14 18:38:22 +02:00
Kim Alvefur
e80cd078fd mod_tokenauth: Support selection of _no_ role at all
If a grant does not have a role, we should not go and make one up.
While not very useful for XMPP if you can't even login, it may be useful
for OAuth2/OIDC.
2023-05-07 20:34:07 +02:00
Kim Alvefur
98d5a50eb6 mod_tokenauth: Return error instead of session for token without role
Such a session triggers errors in module:may or other places since it is
generally expected that a session must have a role.
2023-05-07 20:33:03 +02:00
Kim Alvefur
2b25fcb732 mod_adhoc: Silence permission errors when listing commands
Since throwing a pile of 'access denied', even at debug level, seems
akin to calling wolf :)

Cutting down on debug noise is also good.

Passing a flag instead of using module:could seemed easier here.
2023-05-07 13:13:42 +02:00
Kim Alvefur
e83f8984a8 mod_invites: Fix password reset invites
Caused by roles changing from table|nil to always table in c2616274bef7
2023-05-07 12:52:31 +02:00
Kim Alvefur
33c20d9cf4 core.sessionmanager: Delay closing a replaced connection after replacement
Closing the session invokes ondisconnect and session close logic,
including mod_smacks hibernation and the timer that destroys the session
after a timeout.

By closing the connection after it has been detached from the sessions
table it will no longer invoke the ondetach handler, which should
prevent the above problem.
2023-05-07 12:27:55 +02:00
Kim Alvefur
a50732a061 doap: Update reference for publishing of XEP-0478: Stream Limits Advertisement 2023-05-04 17:30:40 +02:00
Kim Alvefur
4d2ecf1d51 mod_c2s,mod_s2s: Fix tag name for SLA (thanks mjk)
The (still not published) XEP-xxxx: Stream Limits Advertisement uses the
element <max-bytes/> to advertise the maximum octet size of top level
stream elements. "size" was probably a leftover of an even earlier
version of the (Proto)XEP.
2023-05-03 18:02:11 +02:00
Kim Alvefur
8c6116120b Merge 0.12->trunk 2023-05-01 22:24:13 +02:00
Kim Alvefur
8ef7bc2cf4 mod_csi_simple: Disable revert-to-inactive timer when going to active mode
This timer shouldn't kick in in the middle of active mode.
2023-05-01 15:10:32 +02:00
Kim Alvefur
9aecb5cd19 mod_csi_simple: Clear delayed active mode timer on disable
It should not be there afterwards. Noticed that it seems to fire some
time after resumption claiming that the queue size is nil, implying
that it may hold a reference to an expired session somehow.
2023-05-01 14:52:38 +02:00
Kim Alvefur
8a854d169b mod_admin_shell: Refactor 'cert' column
Removes some dead code and hopefully simplifies a bit.

There's a tree of possibilities with the two tri-state status
properties, something like

chain:
* nil -- cert validation disabled?
* invalid -- something wrong with the chain (including ee cert)
* valid -- chain ok
	cert:
	* nil -- incomplete validation??
	* invalid -- mismatched names or such
	* valid -- all good!
2023-04-30 23:45:55 +02:00
Kim Alvefur
693ac009db util.jsonschema: Fix UTF-8ness of 'minLength' and 'maxLength' 2023-04-23 10:42:07 +02:00
Kim Alvefur
3621b8ce91 util.jsonschema: Implement 'minContains' and 'maxContains' 2023-04-23 10:26:43 +02:00
Kim Alvefur
d78a32f136 util.jsonschema: Add some comments wrt Lua-specifics 2023-04-22 13:30:19 +02:00
Kim Alvefur
9c7c94ab73 util.jsonschema: Implement 'luaPattern' - Lua variant of 'pattern'
Like 'pattern' but uses Lua patterns instead of Regular Expressions,
since only a subset of regex are also valid Lua patterns.
2023-04-22 12:48:51 +02:00
Kim Alvefur
1dad83d28e util.jsonschema: Implement 'luaPatternProperties' as Lua variant of 'patternProperties'
Previous version of this patch used 'patternProperties' but that would
only work with simpler ECMA-262 regular expressions are also valid Lua
patterns.
2023-04-22 12:14:29 +02:00
Kim Alvefur
3697942a4a util.jsonschema: Tweak description of disabled test
This doesn't fail because of additionalProperties, looks more like some
issue with recursive definitions and util.jsonpointer that I don't want
feel like investigating now.
2023-04-22 12:45:58 +02:00
Kim Alvefur
1e5f088714 util.jsonschema: Enable passing IEEE 754 equality test 2023-04-22 12:44:53 +02:00
Kim Alvefur
0e6043ecb6 util.jsonschema: Fix NYI 'patternProperties' definition
It's defined as an object mapping regex to schema, not a single schema
2023-04-22 12:13:38 +02:00
Kim Alvefur
c4fdaa80b6 util.error: Add test for #1805
Checks that it doesn't fail on a stanza without <error> tag
2023-04-19 12:03:34 +02:00
Kim Alvefur
6114ccee11 Merge 0.12->trunk 2023-04-19 11:42:36 +02:00
Kim Alvefur
57c3771614 util.error: Fix error on conversion of invalid error stanza, fix #1805
Error stanzas should have an <error> element, but if you pass a
stanza without one to util.error.from_stanza() it triggers an attempt to
index a nil value, which this patch avoids.

In the conditional, it should be safe to assume error_tag is non-nil
since condition can't have those values then.
2023-04-19 11:32:53 +02:00
Kim Alvefur
0d5af426ca mod_tls: Drop request for client certificates on outgoing connections
It is the other end who should request client certificates for these
connections, we only need to send ours.  Hopefully this was treated as a
noop, so probably no harm in keeping it. But hey, spring cleaning? :)
2023-04-19 11:14:11 +02:00
Kim Alvefur
f4c4829d0f mod_csi: Always advertise feature
Was previously supposed to be conditionally advertised based on
availability of a module handling the actual optimizations, which was
removed in be9ac41f1619
2023-04-16 12:47:55 +02:00
Kim Alvefur
a68169b93e mod_tokenauth: Fix parsing binary part of tokens
Fixes parsing of tokens that happen to have a `;` in their secret part,
otherwise it splits there and the later bit goes into the username and
hitting the "Invalid token in storage" condition.
2023-04-12 11:43:32 +02:00
Kim Alvefur
816d0819f2 mod_tokenauth: Only check if expiry of expiring tokens
Some tokens, e.g. OAuth2 refresh tokens, might not have their lifetime
explicitly bounded here, but rather be bounded by the lifetime of
something else, like the OAuth2 client.

Open question: Would it be better to enforce a lifetime on all tokens?
2023-04-12 10:21:32 +02:00
Kim Alvefur
2fc0c66f01 mod_admin_shell: Use same wildcard matching in other s2s command
Consistency is nice.
2023-04-10 14:24:39 +02:00