Commit graph

13349 commits

Author SHA1 Message Date
Kim Alvefur
2f2551e6d2 migrator: Add an escape hatch to allow arbitrary config options
Previously only SQL settings and the 'path' for internal storage could
be set, and only for SQL and internal storage.

input {
	type = "whatever";
	config = {
		whatever_foobar = "something"
	}
}
2023-11-27 17:19:16 +01:00
Kim Alvefur
8a2e65d5b7 util.poll: Rename things to clarify poll(2) limits
With epoll(7), MAX_EVENTS controls how many events can be retrieved in one
epoll_wait call, while with poll(2) this MAX_WATCHED controls how many
sockets or other FDs can be watched at once.
2023-11-27 08:19:52 +01:00
Kim Alvefur
97332bf56f mod_storage_internal: Clear archive item count cache after experimental trim
The previous count would be invalid at this point.

Should be possible to math out how many items are left, but this is left
as future work.
2023-11-26 18:02:13 +01:00
Kim Alvefur
c9aa3894ec mod_blocklist: Remove weak cache (and increase default LRU cache size)
Weak tables are said to have suboptimal performance, so we might as well
get replace it with an increased default LRU cache size.

Sorry about the 'and'
2023-11-26 17:41:38 +01:00
Kim Alvefur
c47cfefec0 mod_storage_internal: Close lazy-loading list abstraction after trim
Should be done here too.
2023-11-26 14:35:26 +01:00
Kim Alvefur
15f487b789 mod_storage_internal: Only close lazy-loading list store abstractions
Since datamanager can fall back to the old method of loading the whole
list, which wouldn't come with a :close method.
2023-11-26 14:29:08 +01:00
Kim Alvefur
812652818d util.startup: Use prosody. module namespace
Maybe we need some sort of lint for this?
2023-11-24 13:41:21 +01:00
Kim Alvefur
c41d63004a net.http.server: Complete async waiter for non-persistent connections
Otherwise requests with Connection: close would be stuck in the async
wait that starts after the handle_request() call.

Together with the new async debugging, this makes the async thread stay
in the set of waiting runners forever, where previously it would simply
be garbage collected.
2023-11-24 00:31:08 +01:00
Kim Alvefur
58988fbce5 mod_storage_internal: Close archive list after completion of iteration
This closes the two FDs that the random access list abstraction uses,
otherwise they are left to the garbage collector.
2023-11-23 17:49:57 +01:00
Kim Alvefur
37ba63f50b mod_pubsub: Provide some node properties in summary template #1809
Gives some access to node details which are otherwise hard to determine
if you only see the plain text summary, since it is shared based on the
pubsub#type setting (or payload xmlns).
2023-11-22 22:35:44 +01:00
Kim Alvefur
b94a30ddcc mod_admin_shell: Fix lint [luacheck] 2023-11-21 22:18:42 +01:00
Kim Alvefur
1e6027da6d util.async: Clip long line [luacheck] 2023-11-21 22:18:17 +01:00
Kim Alvefur
07d2f9f2e8 net.server_epoll: Avoid call to update socket watch flags when nothing changed
Should skip a syscall for each write when using epoll.
2023-11-21 22:06:28 +01:00
Kim Alvefur
da38e2af42 util.poll: Quadruple number of events retrieved at once from epoll
Better performance under load maybe?

See b890ceb1c24f for previous increase
2023-11-21 20:45:56 +01:00
Matthew Wild
f66f6ba60b mod_admin_shell: Add debug:async() command to show blocked async runners 2023-11-21 18:48:58 +00:00
Matthew Wild
9f06132513 util.async: Expose default runner function
This is purely for informational purposes, so it's possible to determine
externally whether a runner is using the default runner function (which
executes functions as work items) or a custom runner function.
2023-11-21 18:14:51 +00:00
Matthew Wild
ac680a900e util.async: Record current work item in the runner object
Mostly expected to be useful for debugging purposes.
2023-11-21 18:13:42 +00:00
Matthew Wild
9e43a7742a util.async: Improve debug logging in a few places
Knowing the state of the coroutine as well as the runner state can be helpful.
2023-11-21 18:12:49 +00:00
Matthew Wild
ab26786924 util.async: Export a table of currently-waiting runners
This can be used for debugging and introspection.
2023-11-21 18:11:40 +00:00
Kim Alvefur
c8e2129a82 util.poll: Return early if given zero timeout and no pending events
Should have been part of f33887f925e1 to ensure it won't skip processing
timers at all when very busy.
2023-11-21 17:43:46 +01:00
Kim Alvefur
43d1285dbd moduleapi: Update Teal spec
Updates for 65fb0d7a2312::59c3d775c7fa
2023-11-13 10:40:24 +01:00
Kim Alvefur
e06c97ca52 util.prosodyctl.check: Disable https cert check if http_external_url set
This would indicate that a reverse proxy is used, which gets to be
responsible for that since it probably holds the actual cert.
2023-11-13 09:58:56 +01:00
Kim Alvefur
8dcd20725a util.prosodyctl.check: Check cert for HTTPS if http module enabled 2023-11-13 09:50:06 +01:00
Kim Alvefur
5146db2da0 util.prosodyctl.check: Update conditions for s2s cert checks
The 'anonymous_login' setting is deprecated and prosodyctl check config
will tell you to change it to 'authentication = "internal_hashed"', so
we shouldn't need to care about here anymore.
2023-11-13 09:44:40 +01:00
Kim Alvefur
8d137609a4 util.prosodyctl.check: Simplify conditions for c2s and s2s cert checks
This code is hard to follow and in need of some refactoring.
2023-11-13 09:43:54 +01:00
Kim Alvefur
b239732046 tools/build-env: Tools for building and testing in a container
./tools/build-env/build.sh
Creates a container image based on Debian or Ubuntu

./tools/build-env/here.sh
Starts a container and mounts in the current working directory, from
where one can ./configure; make; make test etc
2023-11-12 13:02:38 +01:00
Kim Alvefur
ff032aa41b mod_s2s_auth_dane_in: Bail out on explicit service denial 2023-11-12 00:35:22 +01:00
Kim Alvefur
5c773be087 mod_tokenauth: Include more details in debug logs
Had a hard time following what was happening when it did not specify
which grant or token was being removed.
2023-11-12 00:33:57 +01:00
Kim Alvefur
019549e738 net.http: Set Connection header based on connection pool usage
Connection: keep-alive is implicit in HTTP/1.1 but explicit > implicit
2023-11-11 23:48:45 +01:00
Kim Alvefur
8e2ecac95b net.http: Add simple connection pooling
This should speed up repeated requests to the same site by keeping their
connections around and sending more requests on them.

Sending multiple requests at the same time is not supported, instead a
request started while another to the same authority is in progress would
open a new one and the first one to complete would go back in the pool.
This could be investigated in the future.

Some http servers limit the number of requests per connection and this
is not tested and could cause one request to fail, but hopefully it will
close the connection and prevent it from being reused.
2023-11-11 23:08:34 +01:00
Kim Alvefur
1c4021b70f mod_storage_sql: Use UUIDv7 as keys
Potentially allows sorting on those directly as they will be in
increasing order.
2023-07-17 04:30:35 +02:00
Kim Alvefur
3619de6000 util.uuid: Add UUIDv7
Allows sorting by id as a substitute for sorting by timestamp since it
has the timestamp in the encoded in the first part, and only things that
happen extremely close together may get out of order by such a sort,
which might not matter.

From draft-ietf-uuidrev-rfc4122bis formerly draft-peabody-dispatch-new-uuid-format
2021-08-15 14:44:21 +02:00
Kim Alvefur
99d2ebb731 util.prosodyctl.check: Try to clarify check for misplaced k=v in modules_enabled (thanks aab and Menel) 2023-11-11 21:33:53 +01:00
Kim Alvefur
298145db5f doap: Update XEP-0359 version, no protocol changes
Security considerations added, no protocol changes.
2023-11-11 19:16:50 +01:00
Kim Alvefur
bd2236a29e doap: Update XEP-0353 version, no change affecting server handling 2023-11-11 18:37:31 +01:00
Kim Alvefur
501a5f5766 doap: Update XEP-0313 version, only change align with current mod_mam behavior 2023-11-11 18:29:50 +01:00
Kim Alvefur
0fc5e59b54 doap: Update XEP-0045 version, only minor changes 2023-11-11 18:07:15 +01:00
Matthew Wild
7dc676faad util.startup: Attempt to bring some order to startup/shutdown with util.fsm 2023-11-07 12:12:18 +00:00
Matthew Wild
b3e293118d .luacheckrc: Add module:could() 2023-11-07 11:56:15 +00:00
Matthew Wild
1d1e2cdd9c moduleapi: may(): Support explicit actor_jid in context object 2023-11-07 11:53:57 +00: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
deaa31ddc0 mod_tokenauth: Fix saving grants after clearing expired tokens
Previously the whole grant was deleted if it found one expired toke,
which was not indented.
2023-11-05 16:10:40 +01:00
Kim Alvefur
ae884642d5 mod_s2s_auth_certs: Remove LuaSec compat that moved to net.server 2023-11-04 17:12:01 +01:00
Kim Alvefur
7b6a2f64e2 core.certmanager: Handle dane context setting same way on reload as on initialization 2023-11-04 15:59:51 +01:00
Kim Alvefur
717ea33160 util.prosodyctl.check: Print DANE TLSA records for certificates
Not the prosodyctl check dane I wanted to make but a start.
2023-11-03 23:08:07 +01:00
Kim Alvefur
ab2dcd8007 util.prosodyctl.check: Wrap each check in a function
One small refactor but one huge step in the right direction

Mostly because adding another check would make the line checking for a
valid check exceed the column limit.
2023-11-03 22:16:53 +01: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
94f9295042 util.datamanager: Clean up list index files on purge (i.e. user deletion) 2023-11-02 17:35:10 +01:00