Commit graph

33 commits

Author SHA1 Message Date
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)