Commit graph

1589 commits

Author SHA1 Message Date
Kim Alvefur
58990598f2 net.http.server: Treat promise rejection without value as a HTTP 500 error 2019-11-05 01:34:13 +01:00
Kim Alvefur
5cac177270 net.http.server: Handle promises from http handlers 2019-11-01 22:31:15 +01:00
Kim Alvefur
fdfe1e0b2b net.http.server: Handle util.error objects from http handlers 2019-11-01 22:30:35 +01:00
Kim Alvefur
fbab8ed06a net.http.server: Tail call because tail call! 2019-11-01 22:28:39 +01:00
Kim Alvefur
6a73014b9a net.http.server: Factor out handling of event response for easier reuse 2019-11-01 22:25:54 +01:00
Kim Alvefur
690775a9b4 Merge 0.11->trunk 2019-11-02 19:38:12 +01:00
Kim Alvefur
2b03568086 net.http.codes: Avoid implicit number -> string coercion 2019-11-01 23:18:29 +01: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
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
9e6dce07bf net.http.files: Explicitly convert number to string, avoiding implicit coercion 2019-10-12 19:31:48 +02:00
Kim Alvefur
30a72c72a3 net.http.server: Explicitly convert number to string, avoiding implicit coercion 2019-10-12 19:30:29 +02:00
Kim Alvefur
8e485ec320 net.http.server: Re-fire unhandled HEAD requsts as GET events (fixes #1447)
BC: This overloads the GET event.

Previous commit ensures HEAD requests are sent without a body.
2019-10-12 18:27:54 +02:00
Kim Alvefur
89a6f8d8c1 net.http.server: Ensure HEAD requests are sent with empty body 2019-10-12 18:27:02 +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
3dcfc5ee71 util.bitops: Library to find appropriate bitwise library (closes #1395) 2019-07-22 01:58:57 +02:00
Kim Alvefur
92b963270a net.http: Pass server name along for SNI (fixes #1408)
net.resolver.basic passes this 'extra' field along to server.addclient
2019-09-01 02:05:33 +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
94880142e9 net.dns: Close resolv.conf handle when done (fixes #1342) 2019-04-13 18:16:28 +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
469ce79a49 net.resolvers.service: Fix DNS fallback 2019-08-17 15:40:52 +02: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
589010b407 net.server_select: Fix IP validation to use correct variable (thanks quest)
Copy-paste mistake most likely. Not caught because server_select is ignored by luacheck.
2018-11-17 16:26:40 +01:00
Matthew Wild
8ebaee9c3d net.http.server: Move event formation to avoid traceback on missing Host header 2018-11-13 15:03:24 +00:00
Kim Alvefur
bf79ad07b2 net.adns: Remove unused local [luacheck] 2019-07-30 02:36:15 +02:00
Kim Alvefur
2fb3c3041d net.websocket: Fix log call to pass data via format string instead of concatenation 2019-07-30 02:35:28 +02:00
Kim Alvefur
75bfec7731 net.*: Remove tostring call from logging
Taken care of by loggingmanager now
2019-07-30 02:35:17 +02:00
Kim Alvefur
8226d6de4c net.http: Manually merge settings (fixes #1231)
Metatable table indexing is done raw, so metatables can't be chained
2018-11-09 15:59:32 +01:00