Commit graph

104 commits

Author SHA1 Message Date
Kim Alvefur
121ce4fda7 mod_smacks: Fix typos 2021-12-20 00:06:47 +01:00
Kim Alvefur
1a089b68ec mod_smacks: Fix error on shutdown if loaded on Component 2021-12-20 00:04:32 +01:00
Kim Alvefur
94af122279 mod_smacks: Fix typo (thanks codespell) 2021-12-19 15:00:22 +01:00
Kim Alvefur
884cfdcaaf mod_smacks: Avoid log noise when a non-smacks session is closed 2021-12-19 14:59:27 +01:00
Kim Alvefur
af3aa001dc mod_smacks: Check if session was really sleeping before logging message
It could have been resumed without going into hibernation first, i.e.
when the client notices the disconnect before the server, or if it
switches networks etc.
2021-12-18 15:45:06 +01:00
Kim Alvefur
549ee95de5 mod_smacks: Fix traceback when bouncing unacked stanzas
Errors sent from handle_unacked_stanzas() should usually not be sent to
the session itself, but if one is, it should not be queued.
2021-12-18 13:58:33 +01:00
Kim Alvefur
eb65a8b39a mod_smacks: Fix duplicate sleep behavior when replacing a session
Fixes that an extra watchdog was set, leaking the previous one, which
went on to do behave as if the session times out.
2021-12-18 13:48:57 +01:00
Kim Alvefur
3fe05657e3 mod_smacks: Remove references to connection on hibernation
Still having the connection on the session may cause unintentional
behavior, such as the session being treated as if connected, even tho
the connection has been closed.
2021-12-18 12:50:53 +01:00
Kim Alvefur
585a1aa0c6 mod_smacks: Add more logging 2021-12-18 12:50:09 +01:00
Kim Alvefur
0c57e44fd3 mod_smacks: Remove useless delay in requesting ack on resumption
Was this the last place using the delay? Nice!
2021-12-17 17:22:27 +01:00
Kim Alvefur
11e5efc23f mod_smacks: Fix to not wait for acks from before a resumption
Otherwise it can get stuck waiting indefinitely for an ack that made it
notice the connection was stale.
2021-12-17 17:20:26 +01:00
Kim Alvefur
4cde54475b mod_smacks: Split log messages for when an old session exists in storage
Non-existent did not seem entirely accurate for this case
2021-12-17 16:29:17 +01:00
Kim Alvefur
2e47306cb6 mod_smacks: Bounce unacked stanzas on shutdown 2021-12-17 16:21:26 +01:00
Kim Alvefur
685974b5d3 mod_smacks: Preserve counter values on shutdown 2021-12-17 16:00:08 +01:00
Kim Alvefur
b5c32b6572 mod_smacks: Simplify access to local user sessions
Less to type if per chance the next commit also wants to access
sessions.
2021-12-17 15:59:06 +01:00
Kim Alvefur
e10845657c mod_smacks: Cancel hibernation when session is closed
To ensure that if a session is replaced after it has gone into
hibernation, it does not come back and cause trouble for the new session
(see previous commit).
2021-12-16 23:04:50 +01:00
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
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
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
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
ca41268d26 mod_smacks: Refactor, simplify, optimize
Since reply.attr.to will be the .attr.from of the input we can check
this earlier and avoid constructing the reply at all.
2021-12-03 01:02:02 +01:00
Kim Alvefur
9f22150bc8 mod_smacks: Use function to construct error reply
Did error_reply() not exist when mod_smacks was first created?
2021-12-03 00:59:23 +01:00
Kim Alvefur
16f0d48795 mod_smacks: Remove obsolete comment
It dates back to the initial commit in prosody-modules 9a7671720dec
2021-12-02 14:28:52 +01:00
Kim Alvefur
f5b0606514 mod_smacks: Avoid duplicated queueing using flag on session instead of stanza
Mutating the stanza like this is Really Bad Practice.
2021-12-02 13:56:50 +01:00
Kim Alvefur
89b37d4e0a mod_smacks: Remove dead conditional
`cached_stanza` can't be falsy because util.stanza.clone() would have
thrown rather than return nil, or `._cached=true` would have.
2021-12-02 13:49:42 +01:00
Kim Alvefur
9f3feb39f9 mod_smacks: Ensure hibernating session is not connected
Turns out that if you destroy a session from inside prosody, it goes
into hibernation but stays connected and continues processing stanzas.
2021-12-02 03:03:44 +01:00
Kim Alvefur
d34e453ec3 mod_smacks: Reorder imports etc
Mostly sorted by name of import (sort -k4) and grouped by kind
2021-12-01 23:18:18 +01:00
Kim Alvefur
7182a72911 mod_smacks: Fix empty cache check
In Lua, every value except `nil` and `false` are considered true in
boolean expressions, even `0` as here, which means this was dead code.
2021-12-01 23:03:11 +01:00
Kim Alvefur
a7783d452a mod_smacks: Use stanza type checking function for correctness
Non-stanza tables with an 'attr' field might be rare in Prosody, but
better to be Correct
2021-12-01 21:04:32 +01:00
Kim Alvefur
15ef5fb400 mod_smacks: Remove redundant fields
Given that the registry is scoped per user and the module is scoped per
host, there seems no point to checking or storing both username and host
here.
2021-12-01 16:26:53 +01:00
Kim Alvefur
b9a8bc1148 mod_smacks: Factor out formatting of 'h' value 2021-12-01 16:20:40 +01:00
Kim Alvefur
129520cd56 mod_smacks: Remove dead legacy code for 0.10 2021-12-01 15:27:55 +01:00
Kim Alvefur
85602802b2 mod_smacks: Use new pre-session-close event instead of monkeypatch
Much cleaner.
2021-12-01 15:09:11 +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
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