Commit graph

86 commits

Author SHA1 Message Date
Matthew Wild
01e03f4837 mod_smacks: Change boolean attribute from '1' to 'true' for compatibility
Conversations 2.10.10 and earlier expect this to be literally 'true' and don't
recognise '1'. This leads to it not attempting resumption with Prosody at all
since this change was introduced in 36ba170c4fd0.

Thanks to Zash for noticing, debugging and diagnosing this issue.

This issue is fixed in Conversations commit 052c58f3 (unreleased at the time
of writing).
2022-10-07 11:35:56 +01:00
Jonas Schäfer
865b6da69d Backed out changeset 1bc2220cd6ec
The use of the error helpers creates an `<error/>` child element
containing the error condition. This is however not allowed as per
XEP-0198, which specifies that the error condition is to be a direct
child of the `<failed/>` stream management element.

This has triggered a fun reconnect loop in aioxmpp where it was
reported by a user [1].

   [1]: https://github.com/horazont/aioxmpp/issues/382
2022-10-03 12:55:11 +02:00
Matthew Wild
5f2c086da7 mod_smacks: Set session flag during successful enable 2022-09-03 21:20:29 +01:00
Matthew Wild
a061b11f32 mod_smacks: Add type field to results so actions can be later distinguished 2022-09-03 21:20:07 +01:00
Matthew Wild
78a197c25d mod_smacks: Set session.smacks after sending <enabled/> to fix traceback
...with opportunistic writes enabled.
2022-08-29 15:58:51 +01:00
Matthew Wild
1254a0de55 mod_smacks: Use new :add_error() in last remaining error result construction 2022-08-29 15:48:07 +01:00
Matthew Wild
79ac7f6b74 mod_smacks: Split enable handling to stages, to allow easier SASL2 integration 2022-08-29 15:45:52 +01:00
Matthew Wild
6926340d75 mod_smacks: Split resumption into multiple stages, to simplify ISR integration
This will allow us to return the success/failed as part of the SASL2 response,
and *then* perform the stanza sync as a second step.
2022-08-26 19:07:36 +01:00
Matthew Wild
9c5aefe7e7 mod_smacks: Don't close resuming session when failed due to overflow 2022-08-26 17:28:06 +01:00
Matthew Wild
54fcc029c8 mod_smacks: Long overdue cleanup of resumption code, fixes some old TODOs 2022-08-26 17:04:15 +01:00
Kim Alvefur
32eb31a9a1 Merge 0.12->trunk 2022-06-13 19:17:36 +02:00
Kim Alvefur
bfe2a924f8 mod_smacks: Fix #1761 by setting a flag earlier
This ensures that the flag is set even if the pre-drain callback is
called from send(), as would be the case if opportunistic writes are
enabled.
2022-06-12 01:50:33 +02:00
Kim Alvefur
d7e7558bae mod_smacks: Bounce unhandled stanzas from local origin (fix #1759)
Sending stanzas with a remote session as origin when the stanzas have a
local JID in the from attribute trips validation in core.stanza_router,
leading to warnings:
> Received a stanza claiming to be from remote.example, over a stream authed for localhost.example

Using module:send() uses the local host as origin, which is fine here.
2022-05-27 14:45:35 +02:00
Kim Alvefur
568aa79441 mod_smacks: Fix bounce of stanzas directed to full JID on unclean disconnect
Fixes #1758

Introduced in 1ea01660c79a

In e62025f949f9 to and from was inverted since it changed from acting on
a reply to acting on the original stanza (or a clone thereof)

Unsure of the purpose of this check, you don't usually send stanzas to
your own full JID. Perhaps guarding against routing loops?

The check was present in the original commit of mod_smacks,
prosody-modules rev 9a7671720dec
2022-05-27 12:05:47 +02:00
Kim Alvefur
8027b67f19 mod_smacks: Fix to use current method of counting acked stanzas
Fixes #1757

These places seem to have been left since e62025f949f9

The logic around expected_h in should_ack() misbehaved, always comparing
with 0 + unacked instead of acked + unacked.
2022-05-26 17:38:55 +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
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
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
5db031e070 mod_smacks: Improve activation of smacks on outgoing s2s
Using a timer was a hack to get around that stream features are not
available at the right time and sendq stanzas were stored as strings
so could not be counted properly. The later has now been fixed and the
former is fixed by recording the relevant stream feature on the session
so that the correct version of XEP-0198 can be activated once the
connection has been authenticated and is ready to start.
2022-04-24 16:17:32 +02:00
Kim Alvefur
a3a343b20e mod_smacks: Tweak resumption age buckets towards multiples of 60
This seems like the thing to do for time, which is usually divided into
divisors divisible by 60, or multiplied by multiples of 60
2022-02-04 22:11:14 +01:00
Kim Alvefur
64c385c9f7 mod_smacks: Log error to silence luacheck 2021-12-31 00:59:10 +01:00
Kim Alvefur
f017e61543 mod_smacks: Limit "old" session resumption counters
Doing this when creating a whole new session seems reasonable because it
is already expensive and this is when it may be adding to the old
session store, while a successful resumption should be plus-minus zero.
2021-12-31 00:48:38 +01:00
Kim Alvefur
88da8ef1a0 mod_smacks: Record timestamp with persisted counters
For future cleanup routine when people inevitably complain about this
data being stored there forever
2021-12-31 00:18:13 +01:00
Jonas Schäfer
f53f452e47 mod_smacks: sprinkle some metrics on it 2021-12-27 16:16:53 +01:00
Kim Alvefur
ecab94165d mod_smacks: Compact code using new stanza API 2021-12-22 22:13:03 +01:00
Kim Alvefur
2f3b28380a mod_smacks: Use more compact resumption tokens
UUID seems like insane overkill for something user-scoped and not
security-sensitive. All that is needed is to avoid conflicts among what
should be relatively long-lived sessions.
2021-12-22 18:47:45 +01:00
Kim Alvefur
86617ab008 mod_smacks: Add future todo
The vision: All the queueing and counting and session replacement logic
in core, with mod_smacks only hooking this up to the XEP-0198 protocol.
2021-12-20 00:21:04 +01:00
Kim Alvefur
afb195c623 mod_smacks: Only include max resumption time when resumption is activated 2021-12-20 00:18:47 +01:00
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