Commit graph

13368 commits

Author SHA1 Message Date
Matthew Wild
a669ffb5a2 util.human.io: Don't accept ambiguous durations by default
The new method parse_duration_lax() exports the old behaviour, mainly for
compatibility purposes.
2023-11-30 13:42:44 +00:00
Matthew Wild
56d45091bd mod_cron: Update Teal source and rebuild 2023-11-30 12:41:26 +00:00
Matthew Wild
090f4830bb mod_cron: Rename variable to fix shadowing (#luacheck) 2023-11-30 11:42:52 +00:00
Matthew Wild
2524736225 mod_cron: Add shell command to list registered cron tasks with status 2023-11-30 11:38:59 +00:00
Matthew Wild
82e46a35f5 mod_saslauth: Allow plugins to override return SASL condition/text 2023-11-30 11:22:40 +00:00
Matthew Wild
4263537301 luacheckrc, mod_http_file_share: Update for module API change (once->on_ready) 2023-11-30 10:14:17 +00:00
Matthew Wild
8a38b5d0da modulemanager: Allow modules to expose module.ready - to be called after init
This is a shortcut for module:on_ready() which exposes the functionality in an
idiomatic way consistent with module.load, module.unload, etc.

module.ready runs when the module is loaded and the server has finished
starting up.
2023-11-30 10:09:47 +00:00
Matthew Wild
f82d804e1d moduleapi: Rename :once() to :on_ready() for clarity
'Once' is ambiguous - once per what?

on_ready() executes its parameter when the module is loaded *and* the server
has finished starting.
2023-11-30 10:07:53 +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
Kim Alvefur
b97c4ffc16 util.datamanager: Load first item into index earlier
Should get rid of fseek() call
2023-11-27 00:14:56 +01:00
Kim Alvefur
f5f64e3bdc mod_mam: Use for loop in metadata query
Some storage drivers will perform cleanup after the last iteration, but
if only one step is taken this might be delayed until the garbage
collector gets to it.
2023-11-26 22:58:11 +01:00
Matthew Wild
ad3ab533ed mod_tokenauth: Ignore invalid grants in storage that have no id 2023-11-29 17:51:34 +00:00
Matthew Wild
34b4ec02fe mod_invites: Fix linter issues 2023-11-29 17:50:33 +00:00
Matthew Wild
fb240ee25c mod_admin_shell: Fix linter issues 2023-11-29 17:49:20 +00:00
Matthew Wild
d200b57cfe mod_invites: Use new shell-command API 2023-11-29 17:34:44 +00:00
Matthew Wild
44aea8f4f5 mod_admin_shell: Remove verbose logging 2023-11-29 17:33:56 +00:00
Matthew Wild
a31ee8c429 mod_admin_shell: Remove timer:info() (it's been debug:timers() for some time) 2023-11-29 17:22:18 +00:00
Matthew Wild
0391039177 mod_admin_shell: Support for 'shell-command' items (global and per-host)
This should simplify adding shell commands from other modules, which will
reduce the growth of mod_admin_shell and make it easier for community modules
to expose commands too.
2023-11-29 17:19:53 +00:00
Matthew Wild
34cdcb5532 mod_admin_shell: Refactor help to data structures for extensibility
This makes it easier for commands added by other modules to add to the help
output, for example.
2023-11-29 17:18:17 +00:00
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