Commit graph

11952 commits

Author SHA1 Message Date
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
Kim Alvefur
62c74a6ad3 mod_csi_simple: Only act in inactive mode to prevent infinite recursion
Definitely should not be firing an event that triggers like csi-flushing
from which it may make sense to send things, which leads right back here
2021-11-16 13:53:30 +01:00
Kim Alvefur
49e86e78c5 mod_csi_simple: Unlock writes after event, to allow things to be queued
E.g. mod_smacks could queue an <r>, which would be more likely to be
included in the same write and TCP segment as the previously buffered
data, reducing syscalls and network packets needing to be sent.
2021-11-16 13:37:18 +01:00
Matthew Wild
eecabd740d MUC: Include old affiliation data in affiliation change event 2021-11-16 12:57:23 +00:00
Matthew Wild
3a21513b61 MUC: Add room:set_affiliation_data() 2021-11-16 12:57:04 +00:00
Matthew Wild
f5fd67c3e7 MUC: Set .previous_affiliation = "none" if nil, for consistency with .affiliation
It appears nothing currently uses this field in prosody or prosody-modules
2021-11-16 12:02:54 +00:00
Matthew Wild
bfd0d0a8a9 MUC: Fix incorrect variable name (thanks luacheck) 2021-11-16 11:54:32 +00:00
Matthew Wild
366126e90f MUC: Switch to event.allowed signaling to block event, matching muc-pre-set-role
...and fixing the logic bug that broke everything in the previous commit.
2021-11-16 11:52:36 +00:00
Matthew Wild
5fe5458da1 MUC: Add 'muc-pre-set-affiliation' event, allowing to block change or modify data 2021-11-16 11:41:08 +00:00
Matthew Wild
5fa66527d5 MUC: Add option to include form in registration query
This was originally not done based on my interpretation of XEP-0045. Today's
reading, however, revealed that it actually says the result

> SHOULD contain **at least** a <username/> element

(emphasis mine)

I take this to mean that including a form **is** allowed (and I think this is
sensible). Tigase already includes the form I believe.

I've gated the new behaviour behind a (default off) option, because it hasn't
been tested for compatibility with clients. My primary desire for it is in
Snikket, where the clients will be tested to ensure compatibility with this.

I don't anticipate that (m)any clients would break, so maybe after 0.12 we can
experiment with enabling it by default and eventually remove the option.
2021-11-15 16:11:03 +00:00
Kim Alvefur
38c7c944ca mod_admin_shell: Handle absence of connection in security column (thanks arcseconds)
I surmise this can happen in a disconnected/smacks hibernation state.
2021-11-15 13:31:06 +01:00
Kim Alvefur
e08d82a077 mod_pubsub: Fix traceback in disco of non-existent node (thanks Martin)
In this case `ret` is a table not containing the node, which makes
pubsub_error_reply() try to get an error template with that `ret` table
as index, which returns a `nil` then passed to table.unpack, which in
turn throws the error.
2021-11-13 22:12:39 +01:00
Kim Alvefur
068388d9c7 net.connect: Prefer last connection error over last resolver error
E.g. "connection refused" over one IP version instead of NoError for the
other IP version.
2021-11-13 13:32:43 +01:00
Kim Alvefur
256466cd33 util.prosodyctl.shell: Bring back banner set from config!
I miss my custom ANSI-colored greeting!
2021-11-12 22:34:04 +01:00