Commit graph

11965 commits

Author SHA1 Message Date
Matthew Wild
06da62a6fe util.async tests: Explicitly import match from luassert (luacheck) 2021-11-29 14:22:08 +00:00
Matthew Wild
f89a58330b util.startup: Initialize util.async at startup 2021-11-29 14:16:20 +00:00
Matthew Wild
d46c43fbeb util.async: Add next-tick configuration
Running woken runners in the next iteration of the event loop prevents
unexpected recursion, unexpected tracebacks, and is generally more
predictable.

The pattern is borrowed from util.promise, where we're now doing the same.
2021-11-29 14:14:30 +00:00
Matthew Wild
cfef2c6ef6 util.async: Add sleep() method with configurable scheduling backend
No scheduler set by default, so it will error (we plan to initialize it in
util.startup).

We wanted to avoid a hard dependency on util.timer (which in turn depends on
network backends, etc.), and we didn't add timer.sleep() because we didn't
want to add a hard dependency on util.async for things that don't need it.
2021-11-29 14:11:24 +00:00
Kim Alvefur
ebd4ea2bb3 util.stanza: Adjust pretty printing for symmetry
Self-closing <tags/> and <?processing instructions?> had some
asymmetries in applied colors.
2021-11-29 02:13:45 +01:00
Kim Alvefur
eb2c2d4597 util.dependencies: Discourage Lua 5.1
Search for 'Lua 5.1' for reasons.
2021-11-28 23:14:31 +01:00
Kim Alvefur
74e1de54fd util.dependencies: Consider Lua 5.4 Supported™️
I have been running my own server exclusively on Lua 5.4 for months and
apart from packaging issues I remember on major issues.
2021-11-28 23:12:25 +01:00
Kim Alvefur
0a4923938a util.prosodyctl.check: Support direct TLS connectivity checks
Currently only supported with OJN

Assumption: the direct_tls_ports are not empty when set.
2021-11-28 22:51:50 +01:00
Kim Alvefur
7e5d67ab1a doap: Remove stray ... is that a tab or a space? 2021-11-28 21:55:53 +01:00
Kim Alvefur
b3f009317b doap: Fill in the mandatory 'status' field everywhere
Some of these may be debatable, investigation and patches welcome.
2021-11-28 19:04:15 +01:00
Kim Alvefur
3f4a73c66b mod_admin_shell: Remove now redundant promise awaiting in dns:lookup() 2021-11-27 14:16:13 +01:00
Kim Alvefur
769a3ed263 mod_admin_shell: Remove now redundant promise awaiting in xmpp:ping() 2021-11-27 14:15:55 +01:00
Kim Alvefur
10664a8877 mod_smacks: Remove left-over debug logging
Wrong level, missing argument, whatever it was meant to shed light on
has been resolved and forgotten.
2021-11-27 12:53:56 +01:00
Kim Alvefur
cc84e83895 util.promise: Fix test
Could not reproduce locally but it complained in CI that
> spec/util_promise_spec.lua:676: Cannot spy on type 'nil', only on functions or callable elements
2021-11-26 22:38:07 +01:00
Kim Alvefur
bdc838bf11 mod_admin_shell: Fix indentation
It was all of for some reason
2021-11-26 22:28:37 +01:00
Kim Alvefur
aac203f0d9 mod_admin_shell: Wait for promises
I've typed `>require"util.async".wait_for(...)` for the last time!
2021-11-26 22:26:48 +01:00
Kim Alvefur
b0ea55a155 util.startup: Integrate util.promise with net.server main loop 2019-01-05 07:15:33 +01:00
Kim Alvefur
a35dd91a12 util.promise: Support delayed promise execution 2019-01-05 07:08:24 +01:00
Kim Alvefur
51c1c97fe2 mod_admin_shell: Reduce width of 'Status' column
'unavailable' was the longest possibility, dropping it probably
differentiates available from unavailable more, in less space.
2021-11-26 11:40:48 +01:00
Kim Alvefur
2ec4d4a83d mod_admin_shell: Reduce width of 'Security' column (thanks Link Mauve)
Tricky to represent "secure, but no details" in short enough space.
2021-11-26 11:39:13 +01:00
Emmanuel Gil Peyrot
303fd5b4ee mod_vcard_legacy: Also respect avatar:metadata access restrictions
Zash notes this seems to have been lost in 1b657605ea29, probably by
mistake.
2021-11-25 18:13:43 +01:00
Kim Alvefur
fe93f28b16 mod_admin_shell: Fix showing default HTTP path in module:info
Thanks mod_http_openmetrics
2021-11-25 17:07:13 +01:00
Kim Alvefur
17aad028b3 mod_http_openmetrics: Serve HTTP from global context
Makes GET /metrics work regardless of the value of the Host header.

This was not possible before 220468f7a103 which added the ability to
have global HTTP modules, which was partly why the per-host part was
kept while the module lived among the community modules.

Another reason was to provide some semblance of security by obscurity by
only loading the module on e.g. a 'localhost' VirtualHost or Component.
The new IP limits obsoletes this.
2021-11-25 16:57:01 +01:00
Kim Alvefur
e29326533e teal: Describe the module API interface
Helps when writing modules in Teal
2021-03-24 20:28:25 +01:00
Kim Alvefur
b9f7f40d6e util.prosodyctl.check: Add mod_http_openmetrics settings to known globals 2021-11-25 12:14:44 +01:00
Kim Alvefur
03c93e9e24 CHANGES: Mention mod_http_openmetrics 2021-11-24 23:35:55 +01:00
Kim Alvefur
bbfe15dac5 mod_smacks: Optimize scheduling of ack requests
Taking advantage of the new callbacks added in dcf38ac6a38c and
9c450185bac1 avoids extra timers, extra syscalls and sending the `<r>`
in its own TCP segment, improving efficiency.
2021-11-24 21:27:49 +01:00
Kim Alvefur
faff262ac8 mod_smacks: Refactor ack requesting to avoid some timer roundtrips
The function was too large to comprehend! Breaking it up helps
readability and reuse.

The timer round rip is only to avoid ordering weirdness when sending
from inside a stanza filter. No need when handling <r> and <a>

CSI interactions both boiled down to sending an <r> immediately.
2021-11-24 21:27:49 +01:00
Kim Alvefur
d4398ef21d mod_smacks: Fix timer lifetimes to follow session instead of module
module:add_timer() creates a timer that stops working after the module
is reloaded or unloaded, in order to prevent leaks. However, when the
timers control vital session behavior, breakage occurs after reload.
E.g. sessions would stop requesting acks and stop responding to acks.
2021-11-24 21:27:45 +01:00
Kim Alvefur
ea20acace0 mod_smacks: Clean up compat code etc
Unstoppable stoppable timer compat not needed since 26f54b462601 ca 0.11.0

module:hook_stanza was renamed in 2012

No idea what was going on with the indentation and such
2021-11-24 21:27:49 +01:00
Kim Alvefur
5e86776f0c mod_smacks: Import from prosody-modules @ eb63890ae8fc 2021-11-16 21:15:22 +01:00
Kim Alvefur
7683221a64 mod_external_services: Warn about missing recommended fields
These are RECOMMENDED in XEP-0215 so most likely a mistake if they are
left out.

Of the two REQUIRED fields, 'host' falls back to module.host and 'type'
rejects the whole item.
2021-11-24 13:43:13 +01:00
Kim Alvefur
6e91f0ad43 mod_admin_shell: Factor out simple function in module:info for reuse
Marginal improvement in readability
2021-11-24 20:12:22 +01:00
Kim Alvefur
1ac4aed7cd mod_admin_shell: List collected metrics in module:info
Lets you know what to look for with stats:show()
2021-11-24 20:03:38 +01:00
Kim Alvefur
2388b800b2 mod_admin_shell: List net providers in module:info 2021-11-23 17:59:40 +01:00
Matthew Wild
fa22d40ba3 mod_http_openmetrics: Imported from prosody-modules mod_prometheus @df2246b15075
This version has several changes from the earlier mod_prometheus:

- Conversion of metrics into the text-based OpenMetrics format is moved to
  util.openmetrics
- Support for IP-based access control
- Compatibility with earlier Prosody versions removed
2021-11-24 16:03:05 +00:00
Kim Alvefur
8a949f83e2 mod_csi_simple: Skip initiating flush in all but inactive state
Both in the flushing and active states the right thing to do is skip
directly to returning the data. Also in any unknown state, like if the
filter is somehow left behind on module unload.
2021-11-20 23:54:43 +01:00
Kim Alvefur
349968eb67 mod_csi_simple: Early return on client activity while flushing buffer
Cuts down on log and measurement noise. We only want to do these things
here when initiating a flush.
2021-11-20 22:50:51 +01:00
Kim Alvefur
3fb3e86228 mod_csi_simple: Allow some straggler traffic after flushing buffer
Statistics from my server shows a high rate of very short buffer hold
times, most of which are the result of replies to pings or other iq
traffic, or mod_smacks acks and ack requests just after a flush was
completed.

This grace period should eliminate noise and quick flipping between
flushing and inactive mode.
2021-11-20 19:23:08 +01:00
Kim Alvefur
8756adf72b util.prosodyctl.check: Highlight inconsistency of AAAA records and use_ipv6=false 2021-11-20 18:58:09 +01:00
Kim Alvefur
555740dd96 util.prosodyctl.check: Respect use_ipv4/v6 in proxy65 check
Previously it would complain about lack of an AAAA record for
proxy65_target even in an IPv6-less environment.

Thanks to libertas for unintentionally calling attention to this.
2021-11-20 17:05:32 +01:00
Kim Alvefur
40ca2839e0 util.prosodyctl.check: Take IPv6 support in LuaSocket into account
Shouldn't really matter these days, but portmanager checks this way.
2021-11-20 17:04:15 +01:00
Kim Alvefur
8ac98af8b8 net.server_epoll: Fix streaming downloads (thanks Menel)
ff4e34c448a4 broke the way net.http.server streams downloads from disk
because it made writes from the ondrain callback no longer reset the
want-write flag, causing the download to halt.

Writes from the predrain handler still must not trigger anything but
additions to the buffer, since it is about to do all the socket writing
already.
2021-11-19 15:45:01 +01:00
Kim Alvefur
2921cef48f core.moduleapi: Fix name of renamed API in log message
hook_stanza was renamed hook_tag in 2012 in 2087d42f1e77
Why do we still have hook_stanza?

Why is this only a warning anyway?
2021-11-18 16:26:54 +01:00
Kim Alvefur
4704104049 net.server_epoll: Try harder to avoid reentrant opportunistic writes
Opportunistic writes sure do complicate things. This is especially
intended to avoid opportunistic_writes from within the onpredrain
callback.
2021-11-18 16:21:43 +01:00
Kim Alvefur
3c57156fb9 mod_csi_simple: Skip flushing of empty buffer
Just adds noise
2021-11-18 01:57:21 +01:00
Kim Alvefur
d922bbb1ef mod_csi_simple: Fire event when flushing due to client activity
So that the same things happen as when triggered by an outgoing stanza
2021-11-18 00:39:10 +01:00
Kim Alvefur
ce8107379d mod_admin_shell: Return counts of shown vs total from new table views
Not exactly the way it was before, but close enough and useful.
2021-11-16 16:06:41 +01:00
Kim Alvefur
6289a2f29d mod_csi_simple: Detach cleanly from sessions if unloaded while flushing
Since it changes the state to "flushing" while doing just that.
Attempting to remove the filters from a session that does not have them
should be a safe noop.
2021-11-16 16:03:23 +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