Commit graph

1589 commits

Author SHA1 Message Date
Matthew Wild
b50d4b2ef0 net.http: Add support for streaming chunked/large responses 2020-10-21 10:40:11 +01:00
Matthew Wild
bc402b6409 net.http.parser: Expose 'partial', 'chunked' and 'body_length' on packets 2020-10-21 10:34:16 +01:00
Matthew Wild
4f4140fbc3 Merge 0.11->trunk 2020-10-15 14:25:09 +01:00
Matthew Wild
7672305919 Merge 0.11->trunk 2020-10-13 11:59:40 +01:00
Kim Alvefur
b0393fe9e1 Merge 0.11->trunk 2020-10-12 21:29:20 +02:00
Matthew Wild
bff06592c7 Merge 0.11->trunk 2020-09-29 15:30:48 +01:00
Matthew Wild
9229c7a571 net.http.server: Default to HTTP result code 500 when promise is rejected 2020-09-28 16:21:41 +01:00
Matthew Wild
ed9c967bbf Merge 0.11->trunk 2020-09-15 09:09:06 +01:00
Matthew Wild
c340e3ab37 net.http: http.request() promise now resolves with response (breaking change)
Promise mode is not (widely?) used, changing this now while we can, as it
improves usability of the API.

The request is now available as response.request, if needed.
2020-08-25 15:59:04 +01:00
Matthew Wild
209660f212 net.http: use new net.http.errors lib for creating error object 2020-08-25 15:57:39 +01:00
Kim Alvefur
33d00845e7 net.server_select: Fix traceback (thanks eta)
The `socket` here is unreferenced on disconnect.  Calling :resume_writes
after that causes an error when `addsocket()` tries to use it as a table
index.
2020-08-23 22:19:29 +02:00
Kim Alvefur
031a8d8e64 net.http.parser: Fix indentation
Probably due to a rebase/merge with a merge tool that ignores
whitespace. Happens all the time to me :(
2020-08-20 16:43:27 +02:00
Matthew Wild
9287d929c2 net.http.errors: Add new module for converting net.http errors to util.error objects 2020-08-13 17:01:05 +01:00
Kim Alvefur
91d2ab9108 net.http.parser: Allow specifying sink for large request bodies
This enables uses such as saving uploaded files directly to a file on
disk or streaming parsing of payloads.

See #726
2020-08-01 18:41:23 +02:00
Kim Alvefur
64aa6a2a0e net.http.parser: Switch to util.dbuffer for buffering incoming data
This is primarily a step towards saving uploads directly to files, tho
this should hopefully be more efficient than collapsing the entire
buffer to a single string every now and then.
2020-08-01 18:14:09 +02:00
Matthew Wild
99cb02cc82 Merge 0.11->trunk 2020-08-08 13:14:11 +01:00
Kim Alvefur
7c00bae93a net.server_epoll: Log debug message when a connection errors on read
It's confusingly quiet otherwise, even with maximum verboseness.

Thanks perflyst
2020-07-25 17:26:11 +02:00
Matthew Wild
a2ef355d20 Merge 0.11->trunk 2020-07-10 13:01:17 +01:00
Kim Alvefur
f2ae89296c net.cqueues: Fix resuming after timeouts
net.cqueues previously relied on timers instead of fd events sometimes.

Under net.server_select, it would have called cq:loop() on every
iteration of the main loop, which was probably not optimal.
2020-07-08 22:01:19 +02:00
Kim Alvefur
26f741b19b net.cqueues: Switch to server.watchfd for main loop integration
Why? Just look at all that code deleted!

watchfd is the prefered way to poll things that expose FDs for this
purpose, altho it was added after net.cqueues.
2020-07-08 20:11:49 +02:00
Matthew Wild
371bf09ef7 Merge 0.11->trunk 2020-07-07 13:52:45 +01:00
Kim Alvefur
8b9da40260 net.server_epoll: Add setting for turning off callback protections
Might improve (CPU) performance at the risk of triggering top level
errors.
2020-06-30 18:31:48 +02:00
Kim Alvefur
7acd39cdbe net.server_epoll: Allow setting a custom error handler for listener
This lets plugins handle errors in some custom way, should they wish to.
2020-06-30 17:35:07 +02:00
Kim Alvefur
0a071df2d4 net.server_epoll: ... and include a traceback 2020-06-30 17:34:39 +02:00
Kim Alvefur
6baa04b056 net.server_epoll: Report errors in timers 2020-06-30 17:33:48 +02:00
Kim Alvefur
8ac1c4193c net.server_epoll: Expose way to turn monotonic time into wall clock time 2020-06-30 02:31:29 +02:00
Kim Alvefur
a1ae266ff7 net.server_epoll: Optimize away table allocation for timer objects 2020-06-29 20:23:59 +02:00
Kim Alvefur
2b81c3b50f net.server_epoll: Remove unused time field from timer objects
Unused since the move to util.indexedbheap in c8c3f2eba898
2020-06-29 20:13:12 +02:00
Kim Alvefur
ee10afcfab net.server_epoll: Signal API-compatibilty with util.timer
Reduces the overhead of having both util.timer and the timer handling
here, since they are very similar and now API-compatible.
2020-06-29 17:13:05 +02:00
Kim Alvefur
927ef9f2f2 net.server_epoll: Make API-compatible with util.timer 2020-06-29 16:42:16 +02:00
Matthew Wild
fb5059547f net.dns: Disable jitter for default resolver (used by blocking dns.lookup() calls)
This fixes 'prosodyctl check dns' being slow.
2020-06-28 12:02:10 +01:00
Kim Alvefur
8c73ea0b22 util.dependencies: Tone down lua-unbound dependency for now
At least until packages are available

Wording from MattJ
2020-06-27 14:25:57 +02:00
Kim Alvefur
300a9a56c5 net.resolvers: Remove FIXMEs obsoleted by switch to libunbound 2020-06-25 19:24:58 +02:00
Kim Alvefur
02c3cc978d net.unbound: Remove compat for missing promises (pre-0.11)
Code existed in a separate project before merged into Prosody, so
util.promise was not always around.
2020-06-25 18:20:51 +02:00
Kim Alvefur
9be5cb3fbd net.unbound: Strip support for legacy net.server APIs
These are not needed since the watchfd API is provided by all net.server
backends.
2020-06-25 17:56:48 +02:00
Kim Alvefur
bde46d79cd net.adns: Log a warning if loaded (because net.unbound wasn't) 2020-06-25 17:55:24 +02:00
Kim Alvefur
b96535b6ae net.unbound: Async DNS resolver library based on libunbound via luaunbound 2019-03-09 21:19:24 +01:00
Matthew Wild
6daae1f629 net.dns: Reduce default timeout to 5s
Most healthy queries will return well within this time, and the
new retry logic should help spread the cost of additional retries.
2020-06-25 15:34:29 +01:00
Matthew Wild
5e744740f3 net.dns: Increase backoff delays
Not entirely happy with the overall logic here.
2020-06-25 15:31:20 +01:00
Matthew Wild
d080fee323 net.dns: Add jitter to spread queries and reduce failures due to congestion 2020-06-25 15:29:49 +01:00
Matthew Wild
3ff48b8386 net.dns: Fix timeout retry logic
On timeout the query would be resent twice - once within
servfail(), and again inside the timeout callback.

This commit moves all retry logic to servfail().
2020-06-25 15:28:23 +01:00
Matthew Wild
5f4fcad112 net.dns: Add some debug logging 2020-06-25 15:22:40 +01:00
Kim Alvefur
f7614d491a Merge 0.11->trunk 2020-06-23 17:59:24 +02:00
Kim Alvefur
7b89ab9b86 net.connect: Remove TODO about use_ipv4/6 done in 3bfb20be844c 2020-06-22 01:42:18 +02:00
Kim Alvefur
9708aab9b3 net.server_epoll: Add way to start accepting clients on an arbitrary server socket
This adds an escape hatch where things like UNIX sockets can be added.
2020-06-01 17:19:08 +02:00
Matthew Wild
6ccd66e347 net.server_epoll: Handle missing ports from getsock/peername (as in the case of unix sockets) 2020-06-01 14:26:11 +01:00
Matthew Wild
610be29e2a net.server: Switch to epoll backend by default
(if util.poll is found)
2020-06-01 13:43:35 +01:00
Matthew Wild
ce129b96c7 net.server_select: Pass conn/handler to readbuffer/sendbuffer
The internal implementations don't use it, but this causes onreadable
and onwritable of watchfd to receive the conn as they do in other
backends.
2020-06-01 13:41:41 +01:00
Matthew Wild
30d3969c22 net.server_select: Ensure onconnect is always called before onincoming
This changes the code to call onconnect when the first data is sucessfully
read or written, instead of simply when the socket first becomes writable.

A writable socket can mean a connection error, and if the client already
sent some data it may get passed to onincoming before processing writable
sockets. This fixes the issue.
2020-06-01 13:38:47 +01:00
Kim Alvefur
9783208ba5 net.server_epoll: Fix typo in internal method name 2020-05-22 15:36:03 +02:00