Commit graph

104 commits

Author SHA1 Message Date
Matthew Wild
9de5f1149b mod_smacks: Run session destruction code in session's async context
This is the Right Thing and should fix various potential issues and race
conditions.
2024-11-21 17:02:55 +00:00
Kim Alvefur
19429a5e7d mod_smacks: Fix previous commit for case of no session found 2024-11-19 00:57:24 +01:00
Kim Alvefur
fff5a91e37 mod_smacks: Prevent traceback on attempting to resume destroyed session
This shouldn't be possible, but seems to happen anyway after net.server
somehow calling the close handler twice, which also should not happen.
2024-11-19 00:53:01 +01:00
Kim Alvefur
95dddbdea1 Merge 0.12->trunk 2024-11-02 22:33:38 +01:00
Kim Alvefur
2c61955e3a mod_smacks: Destroy timed out session in async context (fixes #1884)
Prevents ASYNC-01 due to storage interactions in a timer.

Also considered modifying mod_c2s to allow passing arbitrary closures
into its runner thread but this seems like a big step away from the
current code for just this module.

Also considered creating a dedicated runner in mod_smacks, but ensuring
continuity across module reloads might be tricky.

We could further improve this in the next major version.
2024-11-02 18:10:25 +01:00
Kim Alvefur
7be4e2fd31 mod_smacks: Adjust buckets for resumption age statistic
Given that there are recommendations floating around recommending 24
hours session lifetime, having buckets up to 10 minutes wouldn't be
useful in that case.

Would be nice if we had some way to automatically assign suitable number
series for buckets, scaled to what the configuration might be.
2024-02-16 00:15:36 +01:00
Kim Alvefur
d840f27320 mod_smacks: Replace existing watchdog when starting hibernation
There shouldn't be one here but if there is, for some reason, it's
better to close it than have it around to wake up and possibly try to
destroy the session.
2023-04-02 10:40:48 +02:00
Kim Alvefur
3a3d9c6c2c mod_smacks: Fix stray watchdog closing sessions
Unsure exactly how this happens, but sometimes a watchdog appears to
close a session that isn't hibernating, or hasn't hibernating long
enough.
2023-04-02 10:37:44 +02:00
Kim Alvefur
67b6440d9b mod_smacks: Log something when hibernation starts
Will hopefully save future confusion about sessions being destroyed when
they are in fact not.
2023-01-19 20:59:28 +01:00
Kim Alvefur
d158455de6 mod_smacks: Disable resumption behavior on s2s
Since resumption is not supported on s2s currently, there is no point in
allocating resumption tokens.  The code that removes entries from
session_registry is only invoked for c2s sessions, thus enabling
resumable smacks on s2s adds an entry that never goes away.
2022-11-13 18:16:59 +01: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
71ad48095d plugins: Use integer config API with interval specification where sensible
Many of these fall into a few categories:
- util.cache size, must be >= 1
- byte or item counts that logically can't be negative
- port numbers that should be in 1..0xffff
2023-07-17 01:38:54 +02:00
Kim Alvefur
1987a7411f plugins: Switch to :get_option_period() for time range options
Improves readability ("1 day" vs 86400) and centralizes validation.
2023-07-16 20:49:33 +02:00
Kim Alvefur
e49554a422 Merge 0.12->trunk 2023-04-04 08:55:15 +02:00
Kim Alvefur
98922d54b1 plugins: Prefix module imports with prosody namespace 2023-03-24 13:15:28 +01:00
Kim Alvefur
762e56920b Merge 0.12->trunk 2023-01-19 21:14:31 +01:00
Kim Alvefur
8bb22ccfed mod_smacks: Factor out resumption token table key generation
So that happens in a single place, where it can be changed easier.
2022-11-13 19:44:53 +01:00
Kim Alvefur
080d7974bf Merge 0.12->trunk 2022-12-12 07:10:54 +01:00
Kim Alvefur
c916ce76ee mod_smacks: Only track resumable sessions
Required due to track_session() having moved here
2022-11-18 16:18:47 +01:00
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
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