Commit graph

120 commits

Author SHA1 Message Date
Kim Alvefur
9327c4342a Merge 0.12->trunk 2024-08-16 17:06:41 +02:00
Kim Alvefur
4f7c829b1e net.http: Throw error if missing TLS context for HTTPS request
Prevents the mistake of creating a http context without any TLS context
and then trying to use HTTPS, which doesn't work right.

Thanks nils
2024-08-08 19:18:22 +02:00
Matthew Wild
28e3b19ca1 net.http: Add missing log parameter 2023-02-09 22:37:54 +00:00
Kim Alvefur
019549e738 net.http: Set Connection header based on connection pool usage
Connection: keep-alive is implicit in HTTP/1.1 but explicit > implicit
2023-11-11 23:48:45 +01:00
Kim Alvefur
8e2ecac95b net.http: Add simple connection pooling
This should speed up repeated requests to the same site by keeping their
connections around and sending more requests on them.

Sending multiple requests at the same time is not supported, instead a
request started while another to the same authority is in progress would
open a new one and the first one to complete would go back in the pool.
This could be investigated in the future.

Some http servers limit the number of requests per connection and this
is not tested and could cause one request to fail, but hopefully it will
close the connection and prevent it from being reused.
2023-11-11 23:08:34 +01:00
Kim Alvefur
869581384d net: Prefix module imports with prosody namespace 2023-03-17 16:23:12 +01:00
Kim Alvefur
4441528b1f net.http: Allow using DANE via options or per request settings
Dare to enable by default?
2022-02-05 01:32:08 +01:00
Jonas Schäfer
52a9ddd22a net.http: fail open if surrounding code does not configure TLS
Previously, if surrounding code was not configuring the TLS context
used default in net.http, it would not validate certificates at all.

This is not a security issue with prosody, because prosody updates the
context with `verify = "peer"` as well as paths to CA certificates in
util.startup.init_http_client.

Nevertheless... Let's not leave this pitfall out there in the open.
2021-08-29 15:04:47 +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
Matthew Wild
3de8b69f1c net.http: track time of request for debug/stats purposes 2020-12-09 13:54:21 +00:00
Matthew Wild
b50d4b2ef0 net.http: Add support for streaming chunked/large responses 2020-10-21 10:40:11 +01:00
Matthew Wild
ed9c967bbf Merge 0.11->trunk 2020-09-15 09:09:06 +01:00
Matthew Wild
047f03ec09 net.http: Add feature discovery (currently just contains SNI) 2020-09-15 09:08:21 +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
93d0d13fbb net.server: Backport client parts of SNI support from trunk (#409)
Partial backports of the following commits from trunk:

6c804b6b2ca2 net.http: Pass server name along for SNI (fixes #1408)
75d2874502c3 net.server_select: SNI support (#409)
9a905888b96c net.server_event: Add SNI support (#409)
adc0672b700e net.server_epoll: Add support for SNI (#409)
d4390c427a66 net.server: Handle server name (SNI) as extra argument
2020-08-17 23:01:14 +02:00
Matthew Wild
dc206f0ff4 net.http: Add request:cancel() method
This is a new API that should be used in preference to http.destroy_request()
when possible, as it ensures the callback is always called (with an error of
course).

APIs that have edge-cases where they don't call callbacks have, from experience,
shown to be difficult to work with and often lead to unintentional leaks when
the callback was expected to free up certain resources.
2020-08-08 13:13:50 +01:00
Matthew Wild
11e49af5e8 net.http: Re-expose destroy_request() function
This was accidentally turned private in 647adfd8f738 as part of refactoring
for Lua 5.2+.
2020-08-08 13:11:11 +01:00
Matthew Wild
bfd9789cb1 net.http: Fix traceback on invalid URL passed to request() 2020-07-07 13:52:25 +01:00
Matthew Wild
99cb02cc82 Merge 0.11->trunk 2020-08-08 13:14:11 +01:00
Matthew Wild
371bf09ef7 Merge 0.11->trunk 2020-07-07 13:52:45 +01:00
Kim Alvefur
7d924c49ac net.http: Return a Promise if no callback is given 2020-05-06 18:03:20 +02:00
Kim Alvefur
e354f1abd8 net.http: Set ALPN on requests
Shouldn't hurt. Revert if it turns out it does.

Supported in LuaSec 0.8. Should be ignored otherwise.
2019-11-29 23:25:59 +01: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
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
Matthew Wild
f5f6460b2e Many things: switch from hacky multi-arg xpcall implementations to a standard util.xpcall 2018-10-26 19:32:00 +01:00
Kim Alvefur
e415d25781 Merge 0.10->trunk 2018-04-06 01:43:44 +02:00
Kim Alvefur
bb47d9eed0 net.http: Import setmetatable into local scope (fixes #1125) 2018-04-06 01:42:35 +02:00
Matthew Wild
0e4c35dd86 net.http: Fix parameter order to http request callbacks
Commit e3b9dc9dd940 changed the parameter order in 2013, but did not update the names of the parameters in the callback function. Due to this inconsistency, 12df41a5a4b1 accidentally reversed the order when fixing the variable names without fixing where they are used.

Additionally the documentation was incorrect (since 2013), and this has also now been fixed.
2018-04-04 18:27:44 +01:00
Matthew Wild
ac665260b8 Merge 0.10 -> trunk 2018-04-04 18:42:05 +01:00
Matthew Wild
e944901cf2 net.http: Allow enabling/disabling error suppression, useful for tests 2018-03-24 11:29:33 +00:00
Matthew Wild
cf9743127c net.http: Fix for Lua 5.2: return error from error handler (xpcall changed) 2018-03-24 11:29:04 +00:00
Kim Alvefur
43b814a83b vairious: Add annotation when an empty environment is set [luacheck] 2018-02-28 20:06:26 +01:00
Matthew Wild
5e69368eeb net.http: Refactor to use new net.connect API, brings support for async DNS 2018-02-26 15:27:00 +00:00
Matthew Wild
c26b05eaf2 net.http: Rename handler to conn, for consistency with all our other code 2018-02-23 16:21:40 +00:00
Matthew Wild
a761524e28 net.http: Remove use of 'conn' (raw socket object returned by addclient) 2018-02-23 16:20:45 +00:00
Kim Alvefur
7e28119b3d net.http: Add option for disabling TLS certifictate validation 2017-07-07 21:04:46 +02:00
Kim Alvefur
e605ac0987 net.http: Validate HTTPS certificates (fixes #659) 2017-07-07 21:04:30 +02:00
Kim Alvefur
708ce26bc8 net.http: Move default SSL/TLS settings into options, allowing them to be overriden in new() 2017-07-07 20:31:52 +02:00
Kim Alvefur
450544aad0 net.http: Expose defaults 2017-07-07 20:30:52 +02:00
Kim Alvefur
10d48f1bad net.http: Remove duplicate 'request' entry 2017-07-07 20:16:00 +02:00
Matthew Wild
3371e3eae3 net.http: Add request.url, which is the original full URL as a string 2017-04-21 16:42:25 +01:00
Matthew Wild
66a3d68d56 net.http: Fire new events: pre-request, request-connection-error, request, response 2017-04-21 16:42:06 +01:00
Matthew Wild
04d3816b69 net.http: Allow creation of http client objects, with custom options 2017-04-21 16:41:27 +01:00
Kim Alvefur
3e7bffe8c8 net.http: Pass error all the way to callback 2017-04-02 00:24:07 +02:00
Kim Alvefur
6d2a83e077 net.http: Strip trailing whitespace 2016-12-30 18:25:36 +01:00
Kim Alvefur
e14306d742 net.http: Remove unused imports [luacheck] 2016-12-30 18:25:23 +01:00
Matthew Wild
5a7fc4ca74 net.http: Add quotes around ids in log messages 2016-07-27 13:40:45 +01:00
Matthew Wild
22ce4d1825 net.http: Add log messages for requests, including their id (so "calling callback" and tracebacks can be traced back to their initial request) 2016-07-07 23:08:47 +01:00