Commit graph

12246 commits

Author SHA1 Message Date
Kim Alvefur
6745972708 mod_smacks: Skip hibernation logic if session was closed or replaced
The resumption_token is removed when the session is closed via the
pre-session-close event, signaling that it cannot be resumed, and
therefore no hibernation timeout logic should be invoked.

Fixes that if a session somehow is replaced by a new one using the same
resource (which is the common behavior), the old session would still be
around until it times out at which point it sends `<presence
type="unavailable"/>` which would look as if it came from the new
session, ie appearing offline to everyone including MUCs.
2021-12-16 22:59:51 +01:00
Kim Alvefur
d87188b309 mod_smacks: Fix indentation
Meld keeps messing up indentation when I merge and rebase...
2021-12-16 22:42:08 +01:00
Kim Alvefur
d73f3bee87 mod_smacks: Stop stanzas from being queued on hibernation timeout
This overloads that flag a bit, but it has the intended effect of
stopping outgoing_stanza_filter() from queueing stanzas.

Fixes a traceback because of the queue having been removed somewhere
around here, since it is no longer needed.

Thanks Martin for reporting
2021-12-16 16:02:01 +01:00
Kim Alvefur
081647ea1f util.smqueue: Simplify compat table, fix dependent modules (thanks Martin)
There was an off-by-one in the modulo calculation. Switching to a plain
old array-table makes the apparent size of the queue wrong, but since
some of the queue may not be available this is likely for the best.
2021-12-16 12:16:45 +01:00
Kim Alvefur
81d747b6a4 util.smqueue: Add missing method to Teal record spec 2021-12-16 12:16:08 +01:00
Kim Alvefur
6e0bbc2af5 mod_smacks: Limit queue memory consumption using new util
This brings back the queue size limit that was once added, then removed
because destroying the session when reaching the limit was not great.
Instead, the queue wraps and overwrites the oldest unacked stanza on the
assumption that it will probably be acked anyway and thus does not need
to be delivered. If those discarded stanzas turn out to be needed on
resumption then the resumption fails.
2021-12-14 20:00:45 +01:00
Kim Alvefur
93a9ed2620 util.smqueue: Abstract queue with acknowledgements and overflow
Meant to be used in mod_smacks for XEP-0198

Meant to have a larger virtual size than actual number of items stored,
on the theory that in most cases, the excess will be acked before needed
for a resumption event.
2021-12-14 19:58:53 +01:00
Kim Alvefur
bdce99b7dd mod_smacks: Set a watchdog to watch sleeping sessions
Extending the timeout by poking the watchdog, and letting it go on
resumption, should be much better than the previous method.
2021-12-02 02:46:26 +01:00
Kim Alvefur
0162eba8c6 mod_smacks: Switch storage for tracking resumption tokens
All that was a complicated way to limit the number of resumable
sessions. Let's control resource usage some other way.  This leaves the
essence of mapping resumption tokens to live sessions.

This keeps resumption state across reloads.
2021-12-02 14:41:19 +01:00
Kim Alvefur
78a1e8352b mod_smacks: Clear resumption token from persistent storage on resumption 2021-12-01 20:13:08 +01:00
Kim Alvefur
d2b3e92578 mod_smacks: Persist old counter values to storage
This allows clients that try to resume a session after a server restart
to at least know which of their pending outgoing stanzas were received
and which need to be re-sent.

This removes the limit on how many of those counters are kept, which
should be fixed eventually.
2021-12-01 16:41:10 +01:00
Kim Alvefur
b1898099ee mod_smacks: Remove now unused variable [luacheck] 2021-12-15 12:09:30 +01:00
Kim Alvefur
c3ee82bcab mod_smacks: Remove unused event
Since nothing uses it. Some equivalent functionality may return in the
future.
2021-12-15 12:06:58 +01:00
Kim Alvefur
5f73d6f070 mod_smacks: Fix typo 2021-12-15 11:24:45 +01:00
Kim Alvefur
9c747a1dbc mod_smacks: Flag both sessions to prevent duplicating queue on resumption
I have no idea what is going on in this code, which session is which?

Something has one of the sessions as an upvalue which is where the
filter checks for it.
2021-12-14 12:59:38 +01:00
Kim Alvefur
ccd96b3fa3 mod_smacks: Increment a counter for each resumption
Encountered what looks like a bug where after *many* resumptions, part
of the queue was not acked.
2021-12-06 11:49:22 +01:00
Kim Alvefur
3129350d42 mod_smacks: Back out 48f8fa6cea7b - back in a86ae74da96c again
Maybe it works now with the session patching in the previous commit
2021-12-13 21:48:29 +01:00
Kim Alvefur
da18622846 mod_smacks: Patch various self-references on the resumed session
The number of places where the session is an upvalue to its own methods
is too high!
2021-12-13 21:46:49 +01:00
Kim Alvefur
50b57fb062 mod_smacks: Back out a86ae74da96c: Fixed one problem, caused another
As per a86ae74da96c the 'session' object here is the wrong session, so
the attempt to block stanzas from being added to the queue twice did not
work causing something of a leak.

Instead we have a leak of the previous session.
2021-12-13 21:17:54 +01:00
Kim Alvefur
d7fa4fadcf mod_smacks: Back out def20683c161
The attempted fix completely broke everything after resumption.
2021-12-13 21:15:06 +01:00
Kim Alvefur
816ed3d739 mod_smacks: Update reference to session from send()
a86ae74da96c caused the stanza queue to double on resumption because
session.send() keeps a reference to the session which is what gets
passed to filters, so the added flag was not seen in the filter.
2021-12-13 19:48:42 +01:00
Kim Alvefur
0e997ab3f9 util.format: Optimize most common integer format
A search for log formats in use points to %s being the most common,
followed by %d, so worth having a fast path for that. %g works well with
most numbers and is what Lua 5.1 and 5.2 used
2021-12-13 16:38:33 +01:00
Kim Alvefur
58c9115351 util.format: Ensure metatable __tostring results are also sanitized 2021-12-13 16:34:55 +01:00
Kim Alvefur
283042d7c3 mod_smacks: Include reason for destroying session on hibernation timeout
To aid in debugging
2021-12-12 18:38:40 +01:00
Kim Alvefur
725bb0cb15 tools/generate_format_spec: Apply lua-format to silence luacheck 2021-12-11 20:58:09 +01:00
Kim Alvefur
d482ece962 util.format: Fix some formats expecting positive numbers in Lua 5.2
Amazing how string.format behaves differently under each Lua version
2021-12-11 20:54:37 +01:00
Kim Alvefur
db41cd8e4d util.format: Fix Lua 5.1 quirks thanks to ALL THE TESTS 2021-12-11 20:40:23 +01:00
Kim Alvefur
3d0844a4f5 util.format: ALL THE TESTS!!!
The more tests I made, the more Lua 5.1 quirks I discovered.

Tests generated using a tool plus some touch-up.
2021-12-11 20:38:54 +01:00
Kim Alvefur
0ddd204a27 util.format: Also handle the %p format added in Lua 5.4 2021-12-11 13:39:58 +01:00
Kim Alvefur
1eca4e8870 util.format: Ensure sanitation of strings passed to wrong format
Ie. log("debug", "%d", "\1\2\3") should not result in garbage.

Also optimizing for the common case of ASCII string passed to %s and
early returns everywhere.

Returning nil from a gsub callback keeps the original substring.
2021-12-11 13:30:34 +01:00
Kim Alvefur
d4c1451794 util.format: Escape invalid UTF-8 by passing trough serialization
Should prevent invalid UTF-8 from making it into the logs, which can
cause trouble with terminals or log viewers or other tools, such as when
grep determines that log files are binary.
2021-12-10 22:48:45 +01:00
Kim Alvefur
ab4991e829 mod_mam: Avoid storing bounces for messages from the bare account (thanks Ge0rG)
This should rule out error replies to PEP notifications, which come from
the account bare JID, and would be reflected back to it if they can't be
delivered for some reason, e.g. s2s problems.
2021-12-10 22:25:34 +01:00
Kim Alvefur
449311b2d1 MUC: Remove <{muc}x> tags in some errors
Including the payload of the stanza that caused the error is optional
and we're generally not doing it anywhere else.
2021-12-08 21:55:25 +01:00
Kim Alvefur
1c0c380203 MUC: Fix error origin JID in wrong argument position
Mistake introduced in cbe524ed1a6a.  Removing because this is a query to
the bare JID where the error origin matches the resulting stanza 'from'.
2021-12-08 21:06:16 +01:00
Kim Alvefur
d621e0626c MUC: Remove remaining deprecated numeric error codes
The numeric error codes seems to have been removed from the examples in
XEP-0045 version 1.24, and were deprecated even by RFC 3920 in 2004,
only allowed for backwards compatibility.
2021-12-08 21:02:14 +01:00
Kim Alvefur
3ae5d13641 MUC: Return a friendly textual error when trying to speak without voice
I spend several minutes confused over where the bug was until I
remembered I had set myself as visitor in the previous debug session.
This would have helped.
2021-12-08 16:40:51 +01:00
Kim Alvefur
96b6f68b23 net.resolvers: Report when hostname fails IDNA
Not a particularly user-friendly error message, but better than "unable
to resolve service" and having no clue where it came from.
2021-12-07 21:43:36 +01:00
Matthew Wild
aa0b6f765a util.sasl.scram: Store username property rather than cached local (#399)
This should allow modules to override the username in a profile handler by
assigning to self.username.
2021-12-07 16:23:23 +00:00
Kim Alvefur
1ffb6f0b3d mod_admin_shell: Add port as a c2s/s2s:show column definition
Allows inferring whether Direct TLS was used, or perhaps which SRV
record was chosen. Not shown by default.
2021-12-07 13:21:20 +01:00
Kim Alvefur
f7527cc4f1 mod_pep: Set correct jid attr on node disco items
It was previously set to the hostname, not the users bare JID which
would be correct.
2021-12-07 13:04:52 +01:00
Kim Alvefur
f2f78d4bf9 mod_pubsub: Allow specifying the JID of the pubsub service
This allows overriding it in cases where it is not equal to module.host,
like say, in mod_pep
2021-12-07 13:03:55 +01:00
Kim Alvefur
a3c82c5d02 core.usermanager: Implement noop role writes on global authz provider
So that the methods are there and don't cause an error.
2021-12-06 22:38:27 +01:00
Kim Alvefur
9f2249b3db mod_admin_shell: Handle global roles (pass host=*)
Is it not odd that um.set_roles() takes `nil` to mean global?
2021-12-06 22:33:46 +01:00
Kim Alvefur
a45484c131 mod_admin_shell: Only check that local users exist locally 2021-12-06 22:23:38 +01:00
Kim Alvefur
022a48a578 mod_disco: Optionally return info on admin accounts to non-contacts
If you already know the account, from say the server contact info, then
this confirms their admin status.
2021-04-15 15:39:35 +02:00
Kim Alvefur
657290679d mod_disco: Advertise anonymous users
Can these even be seen?
2020-07-04 20:10:18 +02:00
Kim Alvefur
182816c1ae mod_disco: Advertise admin accounts as such via disco identity 2020-07-04 20:09:18 +02:00
Kim Alvefur
cf137f9902 mod_admin_shell: Support setting roles on hosts other than the users'
Needed to e.g. grant admin rights on a component, or grant non-local
users local privileges.

Leave the same host syntax for convenience, since this might be the
common case.
2021-12-06 21:56:19 +01:00
Kim Alvefur
efa1f442ae mod_admin_shell: Add command for updating roles user:roles(jid, roles)
This would allow e.g. granting admin status without changing the config
and without a restart.
2021-12-06 21:55:57 +01:00
Kim Alvefur
95fae62ac5 mod_admin_shell: Allow setting roles when creating user 2021-12-04 02:25:01 +01:00