Commit graph

181 commits

Author SHA1 Message Date
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
Kim Alvefur
5abc2e6a5c mod_c2s,mod_s2s: Make stanza size limits configurable 2020-05-31 22:39:34 +02:00
Kim Alvefur
d22e85debc mod_c2s,mod_s2s: Use a distinct stream error for hitting stanza size limit
Since this is not a real parse error, it should not be reported as such.
2020-05-31 22:25:48 +02:00
Kim Alvefur
a7c0def27f mod_s2s: Run stream close in async context
Allows async processing during stream shutdown. Fixes potential ASYNC-01
issues, however no such issues known at the time of this commit.
2020-05-08 23:55:51 +02:00
Kim Alvefur
289898e68f mod_s2s: Improve signaling of stream open events
Makes it clearer, cleaner and easier to extend.
2020-05-08 23:54:17 +02:00
Kim Alvefur
798995ef1a mod_s2s: Fix typo in comment [codespell] 2020-02-13 23:03:03 +01:00
Kim Alvefur
ebb79437a8 mod_s2s: Comment on the various 'reason' arguments passed to :close 2020-01-26 19:52:48 +01:00
Matthew Wild
165901fe80 mod_s2s: Pass use_ipv4/use_ipv6 from config to service resolver 2020-01-25 14:38:42 +00:00
Matthew Wild
6e108728a1 Backed out changeset 74d66b1be989 (not optimal API) 2020-01-25 14:25:21 +00:00
Matthew Wild
9782727301 mod_s2s: Pass use_ipv4/ipv6 from config to connector config 2020-01-24 13:49:33 +00:00
Kim Alvefur
ad26a3b047 mod_s2s: Remove obsolete pre-connect buffer
Originally added in c500d4cb7855

Dead code since the net.connect switch in 756b8821007a
2019-12-17 00:34:39 +01:00
Kim Alvefur
ffcb8303cc mod_s2s: Fix name conflict introduced in c7864f970969 2019-12-10 17:43:26 +01:00
Kim Alvefur
2d5eaff749 mod_s2s: Invert condition to return early and reduce indentation 2019-12-04 22:37:20 +01:00
Kim Alvefur
9f46aa4d48 mod_s2s: Fix mistake in 28755107c2f4 2019-12-03 17:29:43 +01:00
Kim Alvefur
91415f5a71 mod_s2s: Refactor stream error handling on close
Deduplicates the 3 log calls that log the same thing but subtly
differently. The first one would say "Disconnecting localhost" and the
last one didn't log the IP.
2019-12-01 12:21:26 +01:00
Kim Alvefur
a62ff5dc64 mod_s2s: Use stanza type check instead of duck typing 2019-12-01 12:19:36 +01:00
Kim Alvefur
33ba4c2dba mod_s2s: Improve TLS handshake error messages
This should make it clearer that it's about the TLS handshake. Otherwise
it's something like "unsupported protocol" or "no shared ciphers" that
might not be that obvious.
2019-12-01 01:20:34 +01:00
Kim Alvefur
56500e6e05 mod_s2s: Log from session logger
Helps locating all messages related to a specific session
2019-11-30 23:33:39 +01:00
Kim Alvefur
39cc0ec451 mod_s2s: Improve log message about forbidding insecure connections
This new wording generator is nice.
2019-11-30 23:29:15 +01:00
Kim Alvefur
0fdb85997a mod_net_multiplex: Add support for using ALPN
Potentially a bit more efficient since it can jump to the selected
protocol on connect instead of waiting for some data to look at.

Adds a 'protocol' field to net providers for this purpose.
2019-11-29 23:27:51 +01:00
Kim Alvefur
35d07425e3 mod_s2s: Prevent unhandled stanza handler from complaining about stream features on aborted connections
I have no idea why I wrote return false in e5945fb5b71f
2019-11-29 18:15:23 +01:00
Kim Alvefur
61228e919c mod_s2s: Abort outgoing connections earlier when TLS requirement isn't satisfied
This ensures the closure reason is accurate and not reported as an
authentication or other problem
2019-11-28 18:30:30 +01:00
Kim Alvefur
976a86ee46 mod_s2s: Send stream errors for cert problems on outgoing connections
Rationale in comment.
2019-11-28 17:32:15 +01:00
Kim Alvefur
2934eccd99 mod_s2s: Improve error in bounces due to cert validation problems 2019-11-27 23:26:59 +01:00
Kim Alvefur
55c130d1e4 mod_s2s: Add error text for error replies on some s2s failures (#770) 2019-11-23 01:32:53 +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
4216970602 mod_s2s: Wait for remote to close any connection allowing incoming stanzas
Ie both s2sin and bidi-enabled s2sout.
2019-11-18 20:37:40 +01:00
Kim Alvefur
6666a4c814 mod_s2s: Allow passing bounce reason as an util.error object (see #770)
This argument is currently unused in s2smanager.
2019-11-08 23:03:47 +01:00
Kim Alvefur
b24814cbe4 mod_s2s: Only nameprep stream to/from addresses if they are present
Prevents traceback from nameprep(nil)
2019-11-02 15:43:17 +01:00
Kim Alvefur
5460dfed75 mod_s2s: Close with a stream error in case neither SASL or Dialback are available
This both tells the remote server and users who sent any queued stanzas
why it failed.
2019-10-06 21:14:53 +02:00
Kim Alvefur
55efbf445b mod_s2s: Remove warning about hostname mismatch
It triggers on bidi-related routing where this to/from is flipped.

Removing since I don't think we have ever seen this potential bug.
2019-09-07 18:54:59 +02:00
Kim Alvefur
4eda545430 mod_s2s: Insert s2sin into outgoing routing table when bidirectional 2019-09-07 18:33:16 +02:00
Kim Alvefur
f6ba50139a mod_s2s: Add function to send replies on s2sout connections that support incoming traffic 2019-09-07 18:32:29 +02:00
Kim Alvefur
5c27fe4b79 mod_s2s: Handle authentication of s2sin and s2sout the same way 2019-09-07 17:44:57 +02:00
Kim Alvefur
42861396cd mod_s2s: Remove obsolete cleanup code
These were added by s2sout.lib
2019-09-07 19:00:37 +02:00
Kim Alvefur
b16782257d Remove COMPAT with temporary luasec fork
The changes in the temporary fork were merged into mainline luasec ca
2013 and included in the 0.5 release in 2014.
2019-08-25 23:12:55 +02:00
Kim Alvefur
c788104e04 mod_s2s: Use net.connect instead of s2sout.lib for outgoing s2s connections 2018-11-10 13:37:32 +01:00
Kim Alvefur
45a8e8ea7f mod_s2s: Distinguish between high and low level errors in bounces
`remote-server-not-found` is reported for problems occurring without a
reply `<stream>` having been opened, e.g. DNS records were not found or
no TCP stream could be established to a functioning XMPP entity.

`remote-server-timeout` is reported for problems that occurring after a
stream has been opened, such as configuration problems, inability to
perform TLS or unsuccessful certificate validation.

Related: #770
2019-08-01 05:25:34 +02:00
Kim Alvefur
40b1e3e0ed plugins: Remove tostring call from logging
Taken care of by loggingmanager now

Mass-rewrite using lua pattern like `tostring%b()`
2019-07-30 02:29:36 +02:00
Kim Alvefur
b246b00f85 mod_tls: Restore querying for certificates on s2s
The 'ssl_config' setting in the mod_s2s network service is not used.
Only direct TLS ports use this currently.
2019-03-11 13:07:59 +01:00
Kim Alvefur
9f65ce7189 core.certmanager: Do not ask for client certificates by default
Since it's mostly only mod_s2s that needs to request client
certificates it makes some sense to have mod_s2s ask for this, instead
of having eg mod_http ask to disable it.
2019-03-10 19:58:28 +01:00
Kim Alvefur
cf984835d1 mod_c2s, mod_s2s, mod_component: Log invalid XML escaped (fixes #734)
See 6ed0d6224d64
2019-01-15 20:08:30 +01:00
Kim Alvefur
ab950b3e79 mod_s2s: Indicate origin of s2s error 2018-10-08 15:03:26 +02:00
Kim Alvefur
4f7af62406 mod_s2s: Silence all warnings instead of ignoring the entire module 2018-09-30 17:49:56 +02:00
Kim Alvefur
15de51f8c5 sessionmanager, mod_s2s: Bring debug line for outgoing stanzas in line with that for incoming 2018-07-24 19:07:26 +02:00
Kim Alvefur
f86af44208 mod_s2s: Reduce logging (#776) 2018-07-22 19:45:58 +02:00
Kim Alvefur
ba4bd1e687 Merge 0.10->trunk 2018-06-22 14:18:36 +02:00
Kim Alvefur
899924566e mod_s2s: Close sockets held by resolver (#1170) 2018-06-17 20:02:40 +02:00
Emmanuel Gil Peyrot
f7adf08e5a mod_s2s: Add a counter for IPv6. 2017-09-09 14:45:23 +01:00
Kim Alvefur
fc00ed8289 mod_s2s: Don't use string concatenation when passing values to logging 2018-02-25 11:20:56 +01:00