Commit graph

12604 commits

Author SHA1 Message Date
Matthew Wild
7532eac0e5 util.watchdog: Allow passing a new timeout to :reset() 2022-06-11 22:15:31 +01:00
Matthew Wild
029e093478 util.watchdog: Allow :reset() to restart a cancelled watchdog 2022-06-11 22:15:14 +01:00
Matthew Wild
49a9d5e427 util.watchdog: Update to use "new" util.timer API
When this module was written, it wasn't possible to cancel or reschedule a
timer. Times have changed, and we should take advantage of those new methods.

This module becomes a very thin wrapper around util.timer now, but I'd argue
it's still a very common and useful concept/abstraction to have around.

Possible API change: this removes the 'last_reset' field of the watchdog. This
was never really intended as a public thing, and I can't find any code that
uses it, so I consider removal to be safe.
2022-06-11 21:11:01 +01:00
Matthew Wild
325900b248 Merge 0.12->trunk 2022-06-09 12:43:43 +01:00
Kim Alvefur
88a2c1ffe0 net.server: Fix multiple return values
return foo and foo() crops multiple return values to a single one, so
any second return values etc were last, mostly error details.

Introduced in 7e9ebdc75ce4
2022-06-03 17:51:42 +02:00
Kim Alvefur
2048a7a762 mod_saslauth: Advertise channel bindings via XEP-0440
This is useful when there's more than one channel binding in
circulation, since perhaps there will be varying support for them.
2020-12-06 22:04:43 +01:00
Kim Alvefur
b0c116f47b mod_admin_shell: Include last (mod_cron) task run time in module:info()
Don't think this is otherwise shown anywhere outside of debug logs
2022-06-01 17:27:17 +02:00
Kim Alvefur
02f67bb917 util.prosodyctl.shell: Print errors in red to highlight them 2022-06-01 13:59:00 +02:00
Kim Alvefur
3717f5872a mod_admin_shell: Drop unused argument [luacheck] 2022-05-31 13:26:44 +02:00
Kim Alvefur
b7bd70874a mod_admin_shell: Show bound ports in module:info
I.e. the subset of port:list() relevant to the specified module.
2022-05-31 00:31:56 +02:00
Kim Alvefur
8ba6d3a2b1 mod_admin_shell: Document the 'watch' section in the built-in help 2022-05-30 14:54:10 +02:00
Kim Alvefur
677d77e82e util.openmetrics: Set __name field on metatables to improve error messages
Don't think we cause any such errors right now, but you never know!
2022-05-30 17:37:25 +02:00
Kim Alvefur
b78c9e7f5f util.openmetrics: Set (previously unused, empty) metatable
Silences luacheck warning about the metatable being unused.
2022-05-30 17:34:58 +02:00
Kim Alvefur
afe8199ba9 luacheck: Ignore new warning about uses of not (x == y) and similar
Added in luacheck 0.26.
2022-05-30 17:12:58 +02:00
Kim Alvefur
3721a65c80 luacheck: Ignore new warning about using variables prefixed with '_'
luacheck 0.26 considers the _ prefix as a hint that the variable or
argument is unused, then warns if they are used despite this.

We have several places where this prefix is used to avoid shadowing
another similarly named variable, resulting in many instances of this
warning.
2022-05-30 16:49:52 +02:00
Kim Alvefur
67177ce287 core.configmanager: Remove COMPAT for old config format from 2013 2022-05-29 16:06:42 +02:00
Kim Alvefur
fb0299bbf6 util.vcard: Delete since nothing uses it 2022-05-30 16:25:35 +02:00
Kim Alvefur
0267554c8e prosodyctl shell: Communicate width of terminal to mod_admin_shell
This lets it adjust the width of tables to the actual terminal width.
2022-05-30 15:28:44 +02:00
Kim Alvefur
553620127a mod_smacks: Indicate that bounces are generated by the server
Could arguably be implied by 'recipient-unavailable' since if it was
available, this error wouldn't happen.
2022-05-27 14:54:32 +02:00
Kim Alvefur
efb3513dba Merge 0.12->trunk 2022-05-27 15:08:55 +02:00
Kim Alvefur
ce636e5b33 mod_smacks: Remove debug log references to timer (not used anymore)
Cuts down on noise as well
2022-05-26 19:24:01 +02:00
Kim Alvefur
226d9f5ac5 Merge 0.12->trunk 2022-05-26 17:48:59 +02:00
Kim Alvefur
b0e3ea775a Merge 0.12->trunk 2022-05-26 13:46:10 +02:00
Kim Alvefur
1a87a2d40c mod_smacks: Use session logging for remaining log messages
For consistency and easier correlation of session events.
2022-05-21 13:11:25 +02:00
Kim Alvefur
a350ea4f1c mod_smacks: Factor out some convenience functions
Those lines are long and the risk of mistakes if another one needs to be
added seems high, but lower when factored out like this.
2022-02-11 16:09:42 +01:00
Kim Alvefur
413b9d70aa util.stanza: Document top level attributes in Teal definition
Tells you if you make a typo like "gropchat" or so
2022-05-17 17:06:36 +02:00
Kim Alvefur
977373c988 util.stanza: Document error conditions in Teal definition
Gets you nice error messages if you make a typo in with error_reply()
2022-05-17 17:05:15 +02:00
Kim Alvefur
d33b858436 net.server_epoll: Add option to defer accept() until data available
This is a Linux(?) socket option that delays the accept signal until
there is data available to read. E.g. with HTTP this might mean that a
whole request can be handled without going back trough another turn of
the main loop, and an initial client <stream> can be responded to.

This may have effects on latency and resource use, as the server does
not need to allocate resources until really needed.
2022-05-15 22:41:17 +02:00
Kim Alvefur
3b6565c77b net.server_epoll: Wrap LuaSocket object earlier to reuse option setting method
Since it provides some protection and error handling in the form of
logging.
2021-07-16 00:57:42 +02:00
Kim Alvefur
269acd6847 net.server_epoll: Move call to refresh remote IP address out of wrapper
Reduces the side effects of wrapsocket()
2021-07-16 00:56:45 +02:00
Kim Alvefur
575b997d1d net.server_epoll: Add support for TCP Fast Open
Requires a patch to LuaSocket adding this socket option,
https://github.com/lunarmodules/luasocket/pull/378

sysctl tweaks
net.ipv4.tcp_fastopen=3
net.ipv4.tcp_fastopen_blackhole_timeout_sec = 0
net.ipv4.tcp_fastopen_key=$(</proc/sys/kernel/random/uuid)

Disabled by default since it an advanced performance tweak unlikely to
be needed by most servers.
2021-07-08 12:29:50 +02:00
Kim Alvefur
11017d1130 Merge 0.12->trunk 2022-05-16 14:51:58 +02:00
Kim Alvefur
bd9db0ee1a Merge 0.12->trunk 2022-05-16 11:42:31 +02:00
Kim Alvefur
7bc35fb961 Merge 0.12->trunk 2022-05-15 23:22:33 +02:00
Kim Alvefur
18baeca54a mod_smacks: Initialize queue before sending <enable>
Setting the .smacks field enables code paths that expects the queue to
be present.  The queue is initialized in wrap_session_out().  With
opportunistic writes enabled this happens immediately on .sends2s(), so
the sending <enable> must happen before OR after these two lines, not in
the middle.
2022-05-15 16:12:34 +02:00
Kim Alvefur
54d1ff8cfd mod_cron: Remove difference between teal version
This previously was considered an error because the module API Teal spec
did not document a return value from module:add_timer()
2022-05-15 15:29:02 +02:00
Kim Alvefur
04c6caba50 teal/moduleapi: Describe timer wrapper
Since it's used in mod_cron
2022-05-15 15:27:35 +02:00
Kim Alvefur
9135764484 Merge 0.12->trunk 2022-05-09 22:40:45 +02:00
Kim Alvefur
117c340edb util.async: Add Teal description file 2022-05-08 15:21:35 +02:00
Kim Alvefur
1c6747f200 Merge 0.12->trunk 2022-05-08 18:06:41 +02:00
Kim Alvefur
71dc755f0f mod_s2s: Log queued stanzas for which no error reply is produced
This would mainly be error stanzas.

Good to have some trace of when handling of them are finished.
2022-05-07 13:10:27 +02:00
Kim Alvefur
3c35d94011 mod_s2s: Don't bounce queued error stanzas (thanks Martin)
The check for the type attr was lost in 11765f0605ec leading to attempts
to create error replies for error stanzas, which util.stanza rejects.

Tested by sending
	<message to="reject.badxmpp.eu" type="error"><error/></message>
which produced a traceback previously.
2022-05-07 13:01:49 +02:00
Matthew Wild
c9dc1c903a Merge 0.12->trunk 2022-05-06 17:09:06 +01:00
Kim Alvefur
b58b7a3cb0 Merge 0.12->trunk 2022-05-05 14:15:15 +02:00
Kim Alvefur
75a15e67f6 net.server_select: Restore dependency on LuaSec to soft for tests
server_select is used in e.g. storagemanager tests, and some of the CI
runners are lacking LuaSec, which resulted in failures.
2022-04-27 21:45:36 +02:00
Kim Alvefur
c90b2eca9d net.tls_luasec: Harden dependency on LuaSec
We at some point decided that it was okay to have a hard dependency the
TLS library. Especially here since this module is meant to contain all
LuaSec specifics.
2022-04-27 21:34:35 +02:00
Kim Alvefur
edb490504d Merge 0.12->trunk 2022-04-27 21:12:25 +02:00
Jonas Schäfer
84d748f94d mod_tls: pass target hostname to starttls
In case the network backend needs it for outgoing SNI or something.
2021-09-17 21:43:54 +02:00
Jonas Schäfer
87d3cb2f33 mod_tls: tell network backend to stop reading while preparing TLS 2022-04-02 11:18:57 +02:00
Jonas Schäfer
85abab1dfd mod_tls: Do not offer TLS if the connection is considered secure
This may be necessary if the session.conn object is not exchanged by the
network backend when establishing TLS. In that case, the starttls method
will always exist and thus that is not a good indicator for offering
TLS.

However, the secure bit already tells us that TLS has been established
or is not to be established on the connection, so we use that instead.
2021-09-17 21:18:30 +02:00