Commit graph

279 commits

Author SHA1 Message Date
Kim Alvefur
d47a7bb3bd core: Prefix module imports with prosody namespace 2023-03-17 16:23:07 +01:00
Kim Alvefur
814817ebf2 core.s2smanager: Don't remove unrelated session on close of bidi session
Normally with bidi, any outgoing connection should be the same as the
incoming, hence when closing a bidi connection it should be removed as a
route to the remote server. However it is not guaranteed, a remote bidi-capable server
might have decided to open a new connection for some reason. This can
lead to a situation where there are two bidi connections, and the s2sout
route is a locally initiated s2sout connection. In this case, such a
s2sout connection should be kept.

Noticed in a rare case where bidi has just been enabled on a running
server, and something establishes new connections immediately when a
connection is closed.
2022-06-27 01:22:36 +02:00
Matthew Wild
30ef01a6cc s2smanager: Fire s2s-destroyed event to mirror s2s-created
The existing events do not fire for unauthed sessions, for example (because
the type does not match). I deemed changing their behaviour too risky, and
the current behaviour may even be more desirable for some uses.

This means we now have roughly paired events:

 - s2s-created -> s2s-destroyed (global only)
 - s2sin-established -> s2sin-destroyed (global + host)
 - s2sout-established -> s2sout-destroyed (global + host)
2021-11-12 13:30:39 +00:00
Kim Alvefur
e789472327 core.s2smanager: Set "direction" on destroyed sessions (fixes #1641)
Should prevent errors in certain places where it logs
session.direction captialized using gsub.

Might cause bugs tho, but then the session is destroyed so maybe it
doesn't matter?
2021-03-03 13:30:19 +01:00
Kim Alvefur
3aee8e24a6 s2s: Allow passing a custom error for bouncing queued stanzas (#770)
Since stream errors and stanza errors are different
2019-11-23 01:29:03 +01:00
Kim Alvefur
fb13625e08 core.s2smanager: Fix traceback due to mixup with to/from
Forgot to swap to and from in 3123a13cf577
2019-10-05 17:09:24 +02:00
Kim Alvefur
72b4209cfb core.s2smanager: Remove bidi-enabled s2sin from outgoing routing table
Caused creation of new s2sout instead of proper bidi-enabled s2sin.
2019-10-05 16:21:41 +02:00
Kim Alvefur
2398f38135 core.s2smanager: Add map of names authenticate for remote on s2sout for parity with s2sin
Making s2sin and -out look more alike in preparation for bidi support
2019-09-07 17:32:55 +02:00
Kim Alvefur
1cebbe481b core.s2smanager: Add [direction] boolean flags to s2s connections
This will allow representing connections that go both directions
2019-09-07 17:31:26 +02:00
Kim Alvefur
7bce7c9fbe core.s2smanager: Rewrite log line to use formatting instead of concatenation
Makes it more in line with logging elsewhere. Potentially avoids or at
least delays creation of new string.
2019-07-30 02:14:50 +02:00
Kim Alvefur
cc653ef0d9 core.s2smanager: Remove use of tostring in logging
This is now performed by loggingmanager
2019-07-29 23:15:30 +02:00
Kim Alvefur
e7fce52802 core.s2smanager: Fix previous commit (Thanks Martin) 2019-03-30 09:04:33 +01:00
Kim Alvefur
1ec8b45104 core.s2smanager: Use util.session to create sessions 2019-03-29 22:40:53 +01:00
Kim Alvefur
281c3a42c8 core.s2smanager: Spread out session tables over multiple lines
Improves readability
2019-03-29 22:37:12 +01:00
Kim Alvefur
cb800a7c5d core.s2smanager: Rename variable to be same in two functions 2019-03-29 22:45:54 +01:00
Kim Alvefur
5268b2c180 core.s2smanager: Add stub reset_stream method to destroyed sessions
Fixes traceback if connection is closed from the 's2s-authenticated' event
2019-01-16 20:01:38 +01:00
Kim Alvefur
d70c07e53f s2smanager: Explicitly export the incoming_s2s table [luacheck] 2018-03-23 13:14:05 +01:00
Kim Alvefur
43b814a83b vairious: Add annotation when an empty environment is set [luacheck] 2018-02-28 20:06:26 +01:00
Kim Alvefur
ca65f0d2d3 Merge 0.10->trunk 2017-03-06 01:14:32 +01:00
Kim Alvefur
1ecc3a7918 core: Split some very long lines [luacheck] 2017-03-04 17:49:48 +01:00
Kim Alvefur
8db3c0f7ee s2smanager: Include a stub thread on destroyed sessions (thanks Link Mauve) 2016-06-09 14:04:50 +02:00
Kim Alvefur
27265c20e2 core.*: Remove use of module() function 2015-02-21 10:42:19 +01:00
Kim Alvefur
26b55b19d6 Merge 0.9->0.10 2015-05-14 00:22:56 +02:00
Kim Alvefur
a1856627f5 s2smanager: Make sure destroyed sessions have a sends2s method 2015-05-14 00:22:13 +02:00
Matthew Wild
7b3df2bae6 portmanager, s2smanager, sessionmanager, stanza_router, storagemanager, usermanager, util.xml: Add luacheck annotations 2015-05-06 19:20:07 +01:00
Florian Zeitz
1d833bb807 Remove all trailing whitespace 2013-08-09 17:48:21 +02:00
Matthew Wild
18889eae1b sessionmanager, s2smanager: Remove unused imports 2013-04-11 17:35:39 +01:00
Matthew Wild
a5e2b65c01 sessionmanager, s2smanager: Remove open_session tracing 2013-04-08 15:53:18 +01:00
Matthew Wild
c908af2a7d s2smanager: Remove unused function parameter 2013-03-22 14:50:43 +00:00
Matthew Wild
5f6e150c61 s2smanager: Access prosody.hosts instead of hosts global directly 2013-03-22 14:50:29 +00:00
Matthew Wild
339e74b1b9 s2smanager, mod_s2s, mod_dialback, mod_saslauth: Move s2smanager.make_authenticated() to mod_s2s, and plugins now signal authentication via the s2s-authenticated event 2013-03-22 14:18:23 +00:00
Kim Alvefur
3f4b64ddb6 s2smanager: Use unused local, reduce table indexing 2013-03-13 07:33:36 +01:00
Kim Alvefur
4517552d8b s2smanager: Generate session names used for logging the same way everywhere 2013-01-24 00:58:17 +01:00
Marco Cirillo
d4e080f745 s2smanager: missing return on session.send function. 2012-08-26 22:54:10 +00:00
Matthew Wild
249829afcb s2smanager: Remove logging of (unknown) in a case where from_host and to_host should always be set 2012-07-23 17:35:18 +01:00
Matthew Wild
e89b006f03 Hopefully inert commit to clean up logging across a number of modules, removing all cases of concatenation when building log messages 2012-07-23 17:32:33 +01:00
Waqas Hussain
6e9784727f s2smanager: Fix a traceback when we close a s2s connection ourselves (thanks for the testing Zash). 2012-06-13 11:47:04 +05:00
Matthew Wild
573a691a31 Merge with Zash 2012-05-10 23:10:56 +01:00
Matthew Wild
75d9d9e997 mod_s2s, s2smanager, mod_dialback: Move addition of session.send() on s2sin to after they are authenticated (thus from mod_s2s to s2smanager). Update mod_dialback to fire route/remote directly, as session.send() is no longer available for s2sin_unauthed. Fixes #291. 2012-05-10 22:59:01 +01:00
Kim Alvefur
3713488b27 s2smanager, mod_s2s: Move checking DNS timeout option to mod_s2s 2012-05-10 23:05:03 +02:00
Kim Alvefur
2cd39663b6 s2smanager: Clean up unused imports. 2012-05-10 23:01:10 +02:00
Matthew Wild
15175bb828 Merge timber->trunk - thanks everyone! 2012-04-24 21:59:20 +01:00
Kim Alvefur
26768f3e54 s2smanager, mod_s2s: Move import of dns_max_depth to mod_s2s 2012-03-11 19:14:28 +01:00
Matthew Wild
4689bd441e Merge 0.9->trunk 2012-03-09 18:46:19 +00:00
Kim Alvefur
5442ecd0fe core.s2smanager: Log the entire stream header. 2012-03-04 17:38:47 +01:00
Matthew Wild
af22709a5e Merge with 0.9 2012-02-25 17:21:15 +00:00
Matthew Wild
ba9e28535b s2smanager: Fix traceback when socket.tcp6 isn't available 2012-02-25 02:03:26 +00:00
Marco Cirillo
74bff42057 s2smanager, mod_s2s: clear up ip_hosts after s2s is marked as established, remove useless space from mod_s2s code 2012-02-24 18:03:27 +00:00
Florian Zeitz
8f06587c50 s2smanager: remove send_to_host. 2012-02-24 15:15:43 +00:00
Kim Alvefur
f9853f402b core.s2smanager: Fix check_cert_status() for when the stream has no from attr 2012-02-21 21:13:13 +01:00