Commit graph

277 commits

Author SHA1 Message Date
Kim Alvefur
deedb80ea4 net.server_epoll: Add option for reducing debug logging
Sometimes all these things just drown out the logs you are interested
in with low-level socket noise.

Enabled since it's still new and experimental.
2020-01-12 20:35:04 +01:00
Kim Alvefur
25ce791b75 net.server_epoll: Collect full traceback from errors in listeners 2020-01-05 02:29:31 +01:00
Kim Alvefur
d20b12c208 net.server_epoll: Avoid concatenating buffer with single item
Saves creating a string that'll be identical to buffer[1] anyways, as
well as a C function call. Depending on Lua version and length of the
string, this could be reusing an interned string, but a longer one would
probably be duplicated for no reason.

Having exactly one item in the buffer seems like it would be fairly
common, but I have not done an extensive study. If opportunistic writes
are enabled then it will be even more likely.

This special case could be optimized like this in table.concat but it
does not look like it is.
2019-12-28 06:18:58 +01:00
Kim Alvefur
c3d1266e34 net.server_epoll: Remove an unused variable [luacheck] 2019-12-23 21:51:52 +01:00
Kim Alvefur
9a041bb926 net.server_epoll: Use monotonic time for scheduling
Timer API of passing wallclock time remains
2019-12-08 14:26:32 +01:00
Kim Alvefur
654d9817ad net.server_epoll: Change timer rescheduling method to match util.timer
Relative to current time instead of absolute time, in preparation for
switching to monotonic time.
2019-12-08 14:20:56 +01:00
Kim Alvefur
158be3a8f1 net.server_epoll: Remove unused function for adding timer at absolute time
This won't make sense if we switch to monotonic time
2019-12-08 13:40:42 +01:00
Kim Alvefur
d84a2484dc net.server_epoll: Add debug logging for delayed reading
In :onreadable, if there is still buffered incoming data after reading
from the socket (as indicated by the :dirty method, usually because
LuaSocket has an 8k buffer that's full but it read a smaller amount),
another attempt to read is scheduled via this :pausefor method. This is
also called from some other places where it would be pointless to read
because there shouldn't be any data.

In the delayed read case, this should report that the socket is "dirty".
If it reports that the socket is "clean" then the question is where
the buffer contents went?

If this doesn't get logged after the scheduled time (0.000001s by
default) then this would suggests a problem with timer or scheduling.
2019-12-07 19:05:10 +01:00
Kim Alvefur
970ac1aa6c net.server_epoll: Save log tag in a field on FD watchers too
As with 0e1701197722
2019-11-17 23:47:31 +01:00
Kim Alvefur
7dc9926e11 Back out c8aa66595072: Extra changes accidentally included 2019-11-17 23:45:44 +01:00
Kim Alvefur
7b8100dc08 net.server_epoll: Save log tag in a field on FD watchers too
As with 0e1701197722
2019-11-17 23:27:48 +01:00
Kim Alvefur
c9b83c4668 net.server_epoll: Improve read timeout debug messages 2019-10-19 20:11:21 +02:00
Kim Alvefur
b87fbcd1e0 net.server_epoll: Clarify a debug message
Writing what? The data that's been buffered for writing
2019-10-19 20:10:14 +02:00
Kim Alvefur
c5a70f1062 net.server_epoll: Save IP and port from connection creation call
Might come out of :getpeername different later but at least it's something.
2019-10-12 20:22:07 +02:00
Kim Alvefur
066ee6e781 server_epoll: Log full string represestation when connected
Since they may have been unknown when the connection was created.
2019-10-12 20:15:31 +02:00
Kim Alvefur
3e8be00bbe net.server_epoll: Handle getpeer/sockname returning a normal error
These will sometimes return nil, "Transport not connected" but not throw
a hard error. This shouldn't be treated as success.
2019-10-12 20:12:04 +02:00
Kim Alvefur
3585385ab6 net.server_epoll: Fix to get remote IP on direct TLS connections
A Direct TLS connection (eg HTTPS) gets turned into a LuaSec handle
before the :updatenames call done in the :connect method. LuaSec does
not expose the :getpeername and :getsockname methods, so the addresses
remain obscured, making debugging trickier since the actual IP addrerss
connected to does not show up.
2019-10-12 20:07:50 +02:00
Kim Alvefur
73d6c64bd7 net.server_epoll: Move a log message to improve ordering
It was weird that it said "Prepared to start TLS" before "Client .. created"
2019-10-12 19:51:29 +02:00
Kim Alvefur
193bc49cac net.server_epoll: Guard against nil return from TLS info method 2019-10-06 19:34:03 +02:00
Kim Alvefur
56e9e471e7 net.server_epoll: Log TLS version and cipher for all completed handshakes
The similar logging in mod_c2s and mod_s2s does not cover all
connections, like HTTPS or other Direct TLS ports.
2019-10-06 16:23:43 +02:00
Kim Alvefur
153ebfe5d7 net.server_epoll: Log size of partial writes (debug) 2019-10-05 18:10:12 +02:00
Kim Alvefur
5cadccc68a net.server_epoll: Return early when attepting to set write lock state to current state
Reduces needless duplication of work and log messages..
2019-10-05 15:22:59 +02:00
Kim Alvefur
90d58b619e net.server_epoll: Correct indentation 2019-09-29 17:30:54 +02:00
Kim Alvefur
2feedcb7d6 net.server_epoll: Ignore unused self argument [luacheck] 2019-09-29 15:51:21 +02:00
Kim Alvefur
79b375cb53 net.server_epoll: Fix link function to not replace listeners
mod_proxy65 calls link twice, once for each direction. This would
overwrite the listeners with one that has the previous listeners as
metatable.__index, but none of the others.

This takes advantage of 94c584d67533 to improve this.
2019-09-29 15:41:01 +02:00
Kim Alvefur
5eea3358fd net.server_epoll: Handle read size argument to link 2019-09-29 15:36:23 +02:00
Kim Alvefur
4f848e3ea0 net.server_epoll: Add some timeout related logging 2019-09-29 15:18:40 +02:00
Kim Alvefur
6e360554ff net.server_epoll: Add debug logging for various connection events 2019-09-29 15:02:05 +02:00
Kim Alvefur
315959a49a net.server_epoll: Make log tag accessible as a field
To allow referencing connections by id instead of tostring form
2019-09-29 15:00:28 +02:00
Kim Alvefur
2aedce2376 net.server_epoll: Make it easy to override handler for incoming data 2019-09-29 14:50:04 +02:00
Kim Alvefur
fb692a2ced net.server: Handle server name (SNI) as extra argument
Code added in 75d2874502c3, 9a905888b96c and adc0672b700e uses this field.

See #409 and #1408
2019-09-01 01:58:38 +02:00
Kim Alvefur
9afa1ac496 net.server: Accept and save an 'extra' field for client connections
This lets code attach some extra data to be attached to client
connections.
2019-09-01 01:55:55 +02:00
Kim Alvefur
4cc299fc02 net.server_epoll: Add support for opportunistic writes
This tries to flush data to the underlying sockets when receiving
writes. This should lead to fewer timer objects being around. On the
other hand, this leads to more and smaller writes which may translate to
more TCP/IP packets being sent, depending on how the kernel handles
this. This trades throughput for lower latency.
2019-08-28 01:41:00 +02:00
Kim Alvefur
70e3e96c02 net.server_epoll: Backport timer optimization 6c2370f17027 from trunk (see #1388)
The previous timer handling did not scale well and led to high CPU usage
with many connections (each with at least an read timeout).
2019-07-08 01:17:34 +02:00
Kim Alvefur
d2d042186f net.server_epoll: Restore wantread flag after pause (fixes #1354)
If a chunk of data has been received that is larger than the amount read
at a time, then the connection is paused for a short time after which it
tries to read some more. If, after that, there is still more data to
read, it should do the same thing. However, because the "want read" flag
is removed and was restored after the delayed reading, it would not
schedule another delayed read.
2019-05-04 04:23:35 +02:00
Kim Alvefur
c422e8f134 net.server_epoll: Skip delayed continuation read on paused connections
This should prevent #1333 in cases where LuaSockets buffer is "dirty",
i.e. contains more data after a read, where it gets resumed with a
short delay.
2019-03-28 12:52:55 +01:00
Kim Alvefur
e34e8e845d net.server_epoll: Handle LuaSec wantread/wantwrite conditions before callbacks (fixes #1333)
This prevents the :set(true) call from resuming a connection that was
paused in the onincoming callback.
2019-03-28 12:31:14 +01:00
Kim Alvefur
66d2e6adc3 net.server_epoll: Rename handshake_timeout to ssl_handshake_timeout (fixes #1319)
This is to match server_event, see 430797a8fc81
2019-02-09 19:28:24 +01:00
Kim Alvefur
8732027944 net.server_epoll: Use send_timeout for write timout like other implementations (fixes #1316) 2019-02-07 14:02:15 +01:00
Kim Alvefur
6176e9ff1b server_epoll: Add comments describing config options 2018-11-30 19:40:39 +01:00
Kim Alvefur
448257af39 net.server_epoll: Remove unused config option 2018-11-30 18:23:43 +01:00
Kim Alvefur
160fd37742 server_epoll: Increase write timeout
7 may be too low for some slow machines and/or networks
2018-11-30 18:11:36 +01:00
Kim Alvefur
84c8383fb6 net.server_epoll: Shuffle variables earlier to improve readability 2018-10-27 20:44:53 +02:00
Kim Alvefur
2bb3772374 net.server_epoll: Special handling of signal interrupts 2018-10-12 03:22:09 +02:00
Kim Alvefur
afeb1f6f02 net.server_epoll: Ignore ENOENT when deregitering socket
It should not really happen
2018-10-12 03:21:11 +02:00
Kim Alvefur
bbf669b2c5 net.server_epoll: Graceful handling of registering already added socket 2018-10-12 03:20:09 +02:00
Kim Alvefur
0ac9ea3a74 net.server: Swich method for connecting sockets with remotes
LuaSocket TCP sockets have have both :connect and :setpeername, which
are the exact same function, however UDP sockets only have :setpeername.
Switching to :setpeername allows most of this code to be generic wrt
TCP/UDP.
2018-10-12 17:36:34 +02:00
Kim Alvefur
e1aa03deaa net.server_epoll: Check return conditions of early socket setup 2018-10-12 17:28:08 +02:00
Kim Alvefur
f2d9638627 net.server_epoll: Add support for the conn_type argument to addclient 2018-10-12 16:26:19 +02:00
Kim Alvefur
fda067d696 net.server_epoll: Assert successful creation of util.poll handle 2018-10-11 18:53:15 +02:00