Commit graph

1589 commits

Author SHA1 Message Date
Kim Alvefur
aba20a09bf net.server_epoll: Skip reset of read timeout when not reading
Should avoid rare but needless timer interactions
2021-07-17 14:51:50 +02:00
Kim Alvefur
decfa3a59d net.server_epoll: Reduce timer churn during TLS handshake
Instead of removing and readding the timer, keep it and adjust it
instead. Should reduce garbage production a bit.
2021-07-17 14:06:57 +02:00
Kim Alvefur
d2678dfdee net.server_epoll: Use only fatal "write" timeout during TLS negotiation
Only real difference between the read and write timeouts is that the
former has a callback that allows the higher levels to keep the
connection alive, while hitting the later is immediately fatal. We want
the later behavior for TLS negotiation.
2021-07-16 17:10:09 +02:00
Kim Alvefur
50bd7b79ea net.server_epoll: Optimize concatenation of exactly 2 buffer chunks
Saves a function call. I forget if I measured this kind of thing but
IIRC infix concatenation is faster than a function call up to some
number of items, but let's stop at 2 here.
2021-07-16 15:40:08 +02:00
Kim Alvefur
56fef6867f net.server_epoll: Avoid allocating a buffer table for single writes
writebuffer is now string | { string }

Saves the allocation of a buffer table until the second write, which
could be rare, especially with opportunistic writes.
2021-07-16 15:38:38 +02:00
Kim Alvefur
07afd46b58 net.server_epoll: Optionally let go of buffers
Reusing an already existing buffer table would reduce garbage, but
keeping it while idle is a waste.
2021-07-16 02:28:32 +02:00
Kim Alvefur
8318977ef4 net.server_epoll: Propagate returns from opportunistic writes
So that if a write ends up writing directly to the socket, it gets the
actual return value
2021-07-16 01:21:05 +02:00
Kim Alvefur
c611398c1f net.server_epoll: Set minimum wait time to 1ms, matching epoll
A timeout value less than 0.001 gets turned into zero on the C side, so
epoll_wait() returns instantly and essentially busy-loops up to 1ms,
e.g. when a timer event ends up scheduled (0, 0.001)ms into the future.

Unsure if this has much effect in practice, but it may waste a small
amount of CPU time. How much would depend on how often this ends up
happening and how fast the CPU gets trough main loop iterations.
2021-07-15 01:38:44 +02:00
Kim Alvefur
005e931005 net.server_epoll: Add setting for disabling the Nagle algorithm
Nagle increases latency and is the bane of all networking!
2021-07-14 22:27:12 +02:00
Kim Alvefur
15dd3e5687 net.server_epoll: Support setting keepalive idle time
Activated by setting config.tcp_keepalive to a number, in seconds.
Defaults to 2h.

Depends on LuaSocket support for this option.
2021-07-14 22:13:30 +02:00
Kim Alvefur
f11bc3c99c net.server_epoll: Add way to enable TCP keeplives on all connections
In case one wishes to enable this for all connections, not just c2s
(not Direct TLS ones, because LuaSec) and s2s. Unclear what use these
are, since they kick in after 2 hours of idle time.
2021-07-14 22:09:39 +02:00
Kim Alvefur
9b58be76c4 net.server_epoll: Add an (empty) method for setting socket options 2021-07-14 22:06:24 +02:00
Kim Alvefur
a60da1f81d net.server_epoll: Log failures to set socket options
Good to know if it fails, especially since the return value doesn't seem
to be checked anywhere.

Since LuaSec-wrapped sockets don't expose the setoption method, this
will likely show when mod_c2s tries to enable keepalives on direct tls
connections.
2021-07-14 22:04:23 +02:00
Kim Alvefur
357cf7647a net.server_epoll: Call onconnect immediately after TLS handshake completion
Skips a roundtrip through the main loop in case client-first data is
available already, if not then :onreadable() will set the appropriate
timeout.
2021-07-13 14:58:50 +02:00
Kim Alvefur
1877068b3d net.server_epoll: Refactor immediate TLS handshake start 2021-07-13 14:55:21 +02:00
Kim Alvefur
123a7b7079 net.server_epoll: Keep socket registered in epoll trough TLS wrapping
There's the theory that the socket isn't the same before/after wrap(),
but since epoll operates on FD numbers this shouldn't matter.
2021-07-13 14:51:05 +02:00
Kim Alvefur
063a7e45a3 net.server_epoll: Use TLS handshake timeout after initiating handshake
The :init() method sets a different timeout than the TLS related methods.
2021-07-13 14:27:46 +02:00
Kim Alvefur
72fae8bef7 net.server_epoll: Start TLS handshake immediately on newly accepted connections
Since TLS is a client-first protocol there is a chance that the
ClientHello message is available already. TLS Fast Open and/or the
TCP_DEFER_ACCEPT socket option would increase that chance.
2021-07-13 14:20:26 +02:00
Kim Alvefur
9615fcca97 net.server_epoll: Factor out TLS initialization into a method
So there's :startls(), :inittls() and :tlshandshake()

:starttls() prepares for plain -> TLS upgrade and ensures that the
(unencrypted) write buffer is drained before proceeding.

:inittls() wraps the connection and does things like SNI, DANE etc.

:tlshandshake() steps the TLS negotiation forward until it completes
2021-07-13 14:20:24 +02:00
Kim Alvefur
b313c33a8e net.server_epoll: Fix typo 2021-07-13 02:05:35 +02:00
Kim Alvefur
f814af50e3 net.server_epoll: Prevent stack overflow of opportunistic writes
net.http.files serving a big enough file on a fast enough connection
with opportunistic_writes enabled could trigger a stack overflow through
repeatedly serving more data that immediately gets sent, draining the
buffer and triggering more data to be sent. This also blocked the server
on a single task until completion or an error.

This change prevents nested opportunistic writes, which should prevent
the stack overflow, at the cost of reduced download speed, but this is
unlikely to be noticeable outside of Gbit networks. Speed at the cost of
blocking other processing is not worth it, especially with the risk of
stack overflow.
2021-07-11 09:39:21 +02:00
Kim Alvefur
3faf5009d9 net.http: Send entire HTTP request header as one write
When opportunistic writes are enabled this reduces the number of
syscalls and TCP packets sent on the wire.

Experiments with TCP Fast Open made this even more obvious.

That table trick probably wasn't as efficient. Lua generates bytecode
for a table with zero array slots and space for two entries in the hash
part, plus code to set [2] and [4]. I didn't verify but I suspect it
would have had to resize the table when setting [1] and [3], although
probably only once. Concatenating the strings directly in Lua is easier
to read and involves no extra table or function call.
2021-07-08 18:21:59 +02:00
Kim Alvefur
b40b79873c net.server_epoll: Immediately attempt to read from newly accepted connections
This may speed up client-first protocols (e.g. XMPP, HTTP and TLS) when
the first client data already arrived by the time we accept() it.

If LuaSocket supported TCP_DEFER_ACCEPT we could use that to further
increase the chance that there's already data to handle.

In case no data has arrived, no harm should be done, :onreadable would
simply set the read timeout and we'll get back to it once there is
something to handle.
2021-07-08 17:57:44 +02:00
Kim Alvefur
852e44959d net.server_epoll: Separate handling of new incoming and outgoing connections
The :init method is more suited for new outgoing connections, which is
why it uses the connect_timeout setting.

Depending on whether a newly accepted connection is to a Direct TLS port
or not, it should be handled differently, and was already. The :starttls
method sets up timeouts on its own, so the one set in :init was not needed.

Newly accepted plain TCP connections don't need a write timeout set, a
read timeout is enough.
2021-07-08 17:52:59 +02:00
Kim Alvefur
532fbe0687 net.server_epoll: Ensure timeout after closing
This should make sure that if there's data left to be written when
closing a connection, there's also a timeout so that it doesn't wait
forever.
2020-10-31 00:33:29 +01:00
Kim Alvefur
672f9dcd63 net.server_epoll: Add missing method for changing TLS context
Supported by the other net.server implementations already, but not used
anywhere in Prosody.
2021-06-10 11:55:40 -01:56
Kim Alvefur
af9aa9349a net.server_epoll: Fix reporting of socket connect timeout
If the underlying TCP connection times out before the write timeout
kicks in, end up here with err="timeout", which the following code
treats as a minor issue.

Then, due to epoll apparently returning the EPOLLOUT (writable) event
too, we go on and try to write to the socket (commonly stream headers).
This fails because the socket is closed, which becomes the error
returned up the stack to the rest of Prosody.

This also trips the 'onconnect' signal, which has effects on various
things, such as the net.connect state machine. Probably undesirable
effects.

With this, we instead return "connection timeout", like server_event,
and destroy the connection handle properly. And then nothing else
happens because the connection has been destroyed.
2021-06-07 17:37:14 +02:00
Kim Alvefur
0175ab04cc net.http.server: Split out method for sending only the header
Makes it easier to reuse, e.g. for SSE or websockets or other custom
responses.
2021-04-24 10:50:24 +02:00
Kim Alvefur
40c620c7e8 net.server_epoll: Remove unnecessary luacheck annotations
Not sure why these were here to begin with, since it does use the 'self'
argument and did so since they were added.
2021-04-01 12:30:55 +02:00
Kim Alvefur
409c611a37 net.resolvers.basic: Fix completion condition when IPv6 is disabled
Fixes mistake introduced in 5a71f14ab77c that made it so this ready()
newer got called and thus it would be stuck waiting for it.

Looks like the kind of thing that could have been introduced by a merge
or rebase.

Thanks MattJ
2021-03-15 23:09:42 +01:00
Kim Alvefur
3559d707bf net.resolvers.basic: Disable DANE for now, completely broken
Turns out 'extra' is, at least for mod_s2s, the same table for *all*
connections.
2021-03-03 20:48:54 +01:00
Kim Alvefur
60ec880c48 net.resolvers.basic: Don't enable DANE with zero TLSA records
Turns out it doesn't work with zero.
2021-03-03 18:42:54 +01:00
Kim Alvefur
63c92d0897 net.connect: Add DANE support
Disabled DANE by default, since it needs extra steps to be useful.  The
built-in DNS stub resolver does not support DNSSEC so having DANE
enabled by default only leads to an extra wasted DNS request.
2021-03-02 22:41:59 +01:00
Kim Alvefur
69b2af382e net.server_epoll: Support for passing DANE TLSA data to LuaSec (0.8 needed) 2019-09-29 16:53:56 +02:00
Kim Alvefur
2acba62388 net.http.server: Set request.ip so mod_http doesn't have to
Because it already sets request.secure, which depends on the connection,
just like the IP, so it makes sense to do both in the same place.

Dealing with proxies can be left to mod_http for now, but maybe it could
move into some util some day?
2021-02-27 21:37:16 +01:00
Kim Alvefur
f0ac919609 net.http.server: Don't pause early streaming uploads
Fixes that otherwise it would wait for the request to be done after
receiving the head of the request, when it's meant to select a target
for where to store the data, instead of waiting after receiving the
request for when the request has been handled.
2021-02-13 13:38:56 +01:00
Kim Alvefur
3c96f613c0 net.http.server: Allow storing more than the parser in the session
Storing the async thread on the connection was weird.
2021-02-12 14:47:27 +01:00
Kim Alvefur
f0202d38c2 net.http.server: Enable async during HTTP request handling (fixes #1487) 2020-07-12 20:31:31 +02:00
Kim Alvefur
77ee71daa7 net.unbound: Fix to initialize under prosodyctl
Lazy initialization only worked for async queries, but prosodyctl check
dns uses sync queries.
2021-01-21 23:33:59 +01:00
Kim Alvefur
f4208459a7 Merge 0.11->trunk 2021-01-12 19:19:15 +01:00
Kim Alvefur
2f4d12286f Merge 0.11->trunk 2021-01-08 23:56:27 +01:00
Kim Alvefur
de5e7a9c77 net.unbound: Delay loading until server has started or first query
Shouldn't need a DNS resolver until later anyways. Might even be
sensible to only initialize if a query is actually attempted.
2021-01-05 21:40:06 +01:00
Kim Alvefur
c69f675965 net.unbound: Move libunbound initialization into a function
Prepare for lazy-loading it.
2021-01-05 21:36:04 +01:00
Kim Alvefur
147835b1ec net.unbound: Allow tracing individual queries with a logger per query 2021-01-05 20:04:07 +01:00
Kim Alvefur
b4403aaddd net.unbound: Don't pass error as logger formatting string
This could cause weirdness if the error contains formatting options, but
should be reasonably safe with util.format
2021-01-05 20:02:46 +01:00
Kim Alvefur
a698496ef2 net.unbound: Log net.server interactions
Noticed the potential need for this thanks to Ge0rG
2021-01-05 19:53:40 +01:00
Kim Alvefur
ec2e732fea net.server_epoll: Increase log level for error in callback
It's an error, it should be logged at error level.
2020-12-16 10:55:04 +01:00
Matthew Wild
8678cc2915 net.http.errors: Add error class for DNS resolution failures (thanks SouL) 2020-12-11 10:15:30 +00:00
Matthew Wild
3de8b69f1c net.http: track time of request for debug/stats purposes 2020-12-09 13:54:21 +00:00
Matthew Wild
ee1f17a301 net.adns: Reduce 'Exhausted all servers' message to warning
It happens often and generally doesn't require admin intervention.
2020-12-08 15:49:25 +00:00