Commit graph

45 commits

Author SHA1 Message Date
Kim Alvefur
e38e915ef5 mod_s2s: Fix firing buffer drain events
Fixes the same kind of issue as in 65563530375b but once and for all,
while improving similarity between incoming and outgoing connections.
2022-08-26 18:53:00 +02:00
Matthew Wild
f86d1517ce mod_s2s: Improve robustness of outgoing s2s certificate verification
This change ensures we have positively verified the certificates of the server
we are connecting to before marking the session as authenticated. It protects
against situations where the verify-or-close stage of the connection was
interrupted (e.g. due to an uncaught error).

Thanks to Zash for discovery and testing.
2022-04-25 15:07:49 +01:00
Matthew Wild
b47c7951d5 Merge config-updates+check-turn from timber 2022-03-04 16:33:41 +00:00
Kim Alvefur
36512eca29 mod_c2s,mod_s2s: Fix error on shutdown (Thanks Martin)
Since there are two calls to done() that can happen, if the timing is
right (or wrong) both can happen, which previously triggered an error.
2022-02-22 14:17:27 +01:00
Kim Alvefur
1d20ec63e6 mod_c2s,mod_s2s: Wrap callback to improve tracebacks
Should make traces point here instead of timer dispatch, making
debugging easier
2022-02-22 12:35:31 +01:00
Kim Alvefur
a8f4892fe3 mod_c2s,mod_s2s: Wait for sessions to close before proceeding with shutdown steps
Ensures unavailable presence and other outgoing stanzas are sent.

Waiting for c2s sessions to close first before proceeding to disable and
close s2s ensures that unavailable presence can go out, even if it
requires dialback to complete first.
2022-02-17 03:49:47 +01:00
Kim Alvefur
14a7fdb2a8 mod_s2s: Disable creation of new outgoing connections during shutdown 2022-02-11 21:41:04 +01:00
Kim Alvefur
f56aaf1ba1 mod_c2s,mod_s2s: Disable and close port listeners before closing sessions
This ensures no new clients can start connecting during shutdown
2022-02-11 21:36:53 +01:00
Kim Alvefur
73d1bb1218 various: Require encryption by default for real
These options have been specified (and enabled) in the default config file for
a long time. However if unspecified in the config, they were not enabled. Now
they are.

This may result in a change of behaviour for people using very old config
files that lack the require_encryption options. But that's what we want.
2021-12-25 16:23:40 +01:00
Kim Alvefur
d274fa9a7e mod_s2s: Add new early s2s-connected events
Allows doing things based on connections rather than sessions, which may
have been created before or after.
2022-02-06 14:31:27 +01:00
Kim Alvefur
90215f635b mod_s2s: Retrieve TLS context for outgoing Direct TLS connections from mod_tls
So that the same TLS context is used for both Direct TLS and starttls,
since they are supposed to be functionally identical apart from the few
extra round trips.

A new event is added because the 's2s-created' event fires much later,
after a connection has already been established, where we need the TLS
context before that.
2022-01-21 18:42:38 +01:00
Kim Alvefur
268dfa38c0 mod_s2s: Enable outgoing Direct TLS connections
Makes it faster by cutting out the roundtrips involved in <starttls/>,
at the cost of making an additional SRV lookup.

Since we already ignore a missing <starttls/> offer and try anyway there
is not much difference in security. The fact that XMPP is used and the
hostnames involved might still be visible until the future Encrypted
ClientHello extension allows hiding those too.
2022-01-21 17:59:19 +01:00
Kim Alvefur
94d9ba7ce1 mod_s2s: Fix logging of <stream:error> consistency with other mods
`reason` was often a table, so the log said "table: 0xptr" or such.
mod_c2s, mod_bosh etc logs the stream error stanza object, so better do
the same.  It would be nicer if this was an util.error object, but that
will have to be a future change.
2021-10-24 15:11:01 +02:00
Kim Alvefur
02a2b10eb7 mod_s2s: Don't pass unknown hostnames as stats label
Labels are supposed to be fixed sets of things, so defined hosts are
okay, but not unknown hosts.
2021-10-21 17:51:56 +02:00
Kim Alvefur
fd2785d99d mod_s2s: Rename Direct TLS listener 's2s_direct_tls'
Following the style of other options like (c2s|s2s)_require_encryption,
s2s_secure_auth etc.
2021-09-09 21:59:02 +02:00
Kim Alvefur
702d8a9ab4 mod_s2s: Add a Direct TLS listener
Mirroring the c2s 'direct_tls'. Naming things is hard.

direct_tls_s2s_ports = { 5269+1 }
2021-08-10 20:55:43 +02:00
Kim Alvefur
c42a125cc7 mod_s2s: Handle connections having TLS from the start
This could be done with multiplexing, or a future additional port
definition.
2021-08-10 20:54:38 +02:00
Kim Alvefur
c3047df95a mod_s2s: Factor out procedure for newly encrypted sessions
Goal is to call this if the connection is using Direct TLS, either via
multiplexing or a future Direct TLS S2S port.
2021-08-10 20:51:31 +02:00
Kim Alvefur
8bde7461c1 mod_c2s,mod_s2s: Indicate stanza size violation with condition from XEP-0205 (thanks mjk) 2021-09-06 23:21:25 +02:00
Kim Alvefur
48216c1dc8 mod_c2s,mod_s2s: Fire event just before writes
Could allow e.g. a XEP-0198 implementation to efficiently send ack
requests at optimal times without using timers or nextTick.
2021-08-16 12:45:14 +02:00
Kim Alvefur
b686dda4af mod_s2s: Fire 's2s-ondrain' event, mirroring mod_c2s
Signals that any pending outgoing stanzas that were in the write buffer
have at least been sent off to the Kernel and maybe even sent out over
the network.

See 7a703af90c9c for mod_c2s commit
2021-08-16 11:37:51 +02:00
Kim Alvefur
fa25e086f4 mod_s2s: Clone 'extra' data to let resolvers add more to it
This way 'extra' is unique for each connect() instance, making it safer
to mutate it, while inheriting the global settings.

See 926d53af9a7a for some more context.
2021-07-18 21:53:26 +02:00
Kim Alvefur
bce7688486 mod_s2s: Handle measurement where the local host is unknown
This could happen with Dialback-only connections or others that were
missing the stream 'to' attribute.
2021-07-18 09:17:31 +02:00
Kim Alvefur
64a444e3a2 mod_s2s: Guard against missing 'to' on incoming stream
Given an incoming <stream:stream from="example.com"> this line would
have mistakenly reported the 'from' as the local host. Neither are
technically required and may be missing, especially on connections used
only for Dialback.

Outgoing connections initiated by Prosody always have 'from_host' and
'to_host', so it is safer to check it this way.
2021-07-18 09:08:04 +02:00
Kim Alvefur
6ca7b680e0 mod_s2s: Don't close connections on reload 2021-07-14 02:53:42 +02:00
Kim Alvefur
064494bbec mod_s2s: Close connections attached to a host being deactivated
Couldn't use those with the host being deactivated.

Problem: This kicks in on reload, which isn't needed.
2021-07-14 02:39:54 +02:00
Kim Alvefur
9298e3ba8a mod_s2s: Vary log level by remote stream error
Increases log level for stream conditions that could indicate a problem
on our end, especially programming errors like invalid XML, or the
remote server saying that our certificate is invalid, since these should
be investigated.

Non-issues like closing of idle streams are lowered to debug since it's
mostly noise.

Other issues left at info are mostly about changes to the remote server,
e.g. complete or partial shutdown.
2021-07-14 02:41:15 +02:00
Kim Alvefur
0ea107ffd0 mod_s2s: Remove connection timeout once it's no longer needed
Reduces the number of left-over timers to handle after many s2s
connections were started, leaving only the ones related to incomplete
connections.
2021-07-13 15:04:34 +02:00
Kim Alvefur
ca51cdad38 mod_s2s: Log debug message on attempted close of an connectionless session
This should probably never happen, but probably does anyways.

A debug message would show the truth of the matter.
2021-07-11 12:41:32 +02:00
Kim Alvefur
af9ecb24b8 mod_s2s: Drop level of indentation by inverting a condition and early return
Nicer to get rid of a conditional that covers such a large portion of a
pretty big function.
2021-07-11 12:37:51 +02:00
Kim Alvefur
f9912b0dd7 mod_s2s: Use module API to fire events
These direct accesses are probably more optimized, but weird when the
module API has methods for these things.
2021-07-11 12:36:08 +02:00
Kim Alvefur
ab7abe3f8c mod_s2s: Remove duplicate method call (thanks luacheck)
Should have been removed in the previous commit.
2021-06-21 13:45:44 +02:00
Kim Alvefur
d07638c8d2 mod_s2s: Guard against LuaSec not returning TLS info here too
See previous commit to mod_c2s: a62146353528
2021-06-21 13:43:40 +02:00
Kim Alvefur
f55f6be0ff mod_s2s: Bail if connection is destroyed after attempting to open stream
Fixes "attempt to compare number with nil" because `session.version` has
been cleared by s2smanager.destroy_session.

This can happen with the server_epoll setting opportunistic_writes
enabled, which means that it can notice that the connection failed at
this point, after which it triggers the whole chain of events that leads
to session destruction and "cleaning" most of the session fields.
2021-06-16 23:53:00 +02:00
Kim Alvefur
aa041ffa10 mod_c2s,mod_s2s: Collect stats on TLS versions and ciphers 2021-06-16 00:00:17 +02:00
Matthew Wild
5bc8b2a379 Merge 0.11->trunk 2021-05-13 11:17:13 +01:00
Jonas Schäfer
f18e33228d s2s et al.: Add counters for connection state transitions 2021-04-21 17:11:58 +02:00
Jonas Schäfer
b027ddcbfc mod_s2s: Port to new OpenMetrics API 2021-04-18 12:35:16 +02:00
Kim Alvefur
8673a99a09 mod_s2s: Buffer stream error + stream closing tag
In "opportunistic writes" mode, prevents ondisconnect from happening
while writing the stream closing tag.
2021-03-03 13:34:00 +01:00
Kim Alvefur
494b53ce0b mod_s2s: Check direction in bidi-aware style
Both session.incoming and session.outgoing are truthy here, but
session.direction indicates the "real" direction in the way that matters
for the order of events when opening or closing streams.
2021-03-03 13:26:38 +01:00
Kim Alvefur
bef26775f1 mod_s2s: Add config setting to enable DANE 2021-03-02 22:42:04 +01:00
Kim Alvefur
cd1aadb52e mod_s2s: Clarify comment about unused TLS settings
Ref 115b5e32d960
2021-02-06 21:40:21 +01:00
Kim Alvefur
d45b5b23e7 Merge 0.11->trunk 2020-12-16 08:53:57 +01:00
Kim Alvefur
dc1efeb22d Merge 0.11->trunk 2020-12-11 15:37:35 +01:00
Kim Alvefur
6b98a3f551 mod_s2s: Move out of empty directory
mod_s2s.lua had been all alone in there since the removal of
s2sout.lib.lua in 756b8821007a
2020-06-02 19:43:50 +02:00
Renamed from plugins/mod_s2s/mod_s2s.lua (Browse further)