Commit graph

61 commits

Author SHA1 Message Date
Kim Alvefur
e3d771baf9 mod_s2s: Retrieve stanza size limit from peer for bidi connections
Having mod_s2s know about the bidi namespace is perhaps a bit awkward
but putting this in mod_s2s_bidi would be more awkward as it has nothing
to do with limits.  Some indirection event could be added in the future.
2022-11-09 19:10:16 +01:00
Kim Alvefur
96fb9a4a32 mod_s2s: Advertise stream features on bidi connections 2022-10-20 14:22:36 +02:00
Kim Alvefur
a46ae8cb89 mod_c2s,mod_s2s: Adapt to XEP-xxxx: Stream Limits Advertisement
Thanks MattJ
2022-10-20 14:04:56 +02:00
Kim Alvefur
d4f4f76c3c mod_s2s: Avoid sending too large stanzas
Just dropping them isn't great but hopefully something more sensible can
be done in the future.

Will need work to ensure that this signal is handled correctly in
sending modules etc.
2021-03-16 18:30:54 +01:00
Kim Alvefur
6d0298961d mod_s2s: Record stanza size limit advertised by other servers
For future use, i.e. canceling sending of stanzas that exceed the limit
2021-03-16 18:30:34 +01:00
Kim Alvefur
f6c3c1dd95 mod_s2s: Advertise stanza size limit to other servers
So they can, like, not send big stanzas.
2021-03-16 18:25:05 +01:00
Kim Alvefur
a018497a27 mod_s2s: Simplify conditionals since all sessions should have .host now 2022-08-26 19:10:15 +02:00
Kim Alvefur
de4b0b6de2 Merge 0.12->trunk 2022-08-26 19:03:23 +02:00
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
a2f8218a63 mod_tls: Record STARTTLS state so it can be shown in Shell
This field can be viewed using s2s:show(nil, "... starttls") even
without any special support in mod_admin_shell, which can be added later
to make it nicer. One can then assume that a TLS connection with an
empty / nil starttls field means Direct TLS.
2022-08-02 19:26:26 +02:00
Kim Alvefur
71dc755f0f mod_s2s: Log queued stanzas for which no error reply is produced
This would mainly be error stanzas.

Good to have some trace of when handling of them are finished.
2022-05-07 13:10:27 +02:00
Kim Alvefur
3c35d94011 mod_s2s: Don't bounce queued error stanzas (thanks Martin)
The check for the type attr was lost in 11765f0605ec leading to attempts
to create error replies for error stanzas, which util.stanza rejects.

Tested by sending
	<message to="reject.badxmpp.eu" type="error"><error/></message>
which produced a traceback previously.
2022-05-07 13:01:49 +02:00
Jonas Schäfer
38346dd6f1 net: isolate LuaSec-specifics
For this, various accessor functions are now provided directly on the
sockets, which reach down into the LuaSec implementation to obtain the
information.

While this may seem of little gain at first, it hides the implementation
detail of the LuaSec+LuaSocket combination that the actual socket and
the TLS layer are separate objects.

The net gain here is that an alternative implementation does not have to
emulate that specific implementation detail and "only" has to expose
LuaSec-compatible data structures on the new functions.
2022-04-27 17:44:14 +02:00
Matthew Wild
fc5a8d7f4a Merge 0.12->trunk 2022-04-25 15:09:53 +01:00
Kim Alvefur
f40337890e mod_s2s: Distinguish DANE TLSA errors from generic cert chain errors
Otherwise it would just report "is not trusted" unless you inspect the
logs. This message is sent to to the remote server, and will hopefully
show up in their logs, allowing the admin to fix their DANE setup.
2022-04-25 14:41:54 +02:00
Kim Alvefur
192e0081ce mod_s2s: Recognise and report errors with CA or intermediate certs
Should be invoked for cases such as when the Let's Encrypt intermediate
certificate expired not too long ago.
2022-04-25 14:36:56 +02:00
Matthew Wild
259df23ffb mod_s2s: Store real stanzas in session.sendq, rather than strings
This is the "right" thing to do. Strings were more memory-efficient, but
e.g. bypassed stanza filters at reconnection time. Also not being stanzas
prevents us from potential future work, such as merging sendq with mod_smacks.

Regarding performance: we should counter the probable negative effect of this
change with other positive changes that are desired anyway - e.g. a limit on
the size of the sendq, improved in-memory representation of stanzas, s2s
backoff (e.g. if a remote server is persistently unreachable, cache this
failure for a while and don't just keep forever queuing stanzas for it).
2022-03-23 15:25:22 +00: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