mirror of
https://github.com/lightpanda-io/browser.git
synced 2026-03-22 20:54:43 +00:00
Merge pull request #1528 from lightpanda-io/remove_recurise_curl_calls
Remove potential recursive abort call in curl
This commit is contained in:
@@ -222,3 +222,33 @@
|
|||||||
testing.expectEqual(XMLHttpRequest.UNSENT, req.readyState);
|
testing.expectEqual(XMLHttpRequest.UNSENT, req.readyState);
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
<script id=xhr_abort_callback>
|
||||||
|
testing.async(async (restore) => {
|
||||||
|
const req = new XMLHttpRequest();
|
||||||
|
let abortFired = false;
|
||||||
|
let errorFired = false;
|
||||||
|
let loadEndFired = false;
|
||||||
|
|
||||||
|
await new Promise((resolve) => {
|
||||||
|
req.onabort = () => { abortFired = true; };
|
||||||
|
req.onerror = () => { errorFired = true; };
|
||||||
|
req.onloadend = () => {
|
||||||
|
loadEndFired = true;
|
||||||
|
resolve();
|
||||||
|
};
|
||||||
|
|
||||||
|
req.open('GET', 'http://127.0.0.1:9582/xhr');
|
||||||
|
req.onreadystatechange = (e) => {
|
||||||
|
req.abort();
|
||||||
|
}
|
||||||
|
req.send();
|
||||||
|
});
|
||||||
|
|
||||||
|
restore();
|
||||||
|
testing.expectEqual(true, abortFired);
|
||||||
|
testing.expectEqual(true, errorFired);
|
||||||
|
testing.expectEqual(true, loadEndFired);
|
||||||
|
testing.expectEqual(XMLHttpRequest.UNSENT, req.readyState);
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
|||||||
@@ -111,6 +111,10 @@ config: *const Config,
|
|||||||
|
|
||||||
cdp_client: ?CDPClient = null,
|
cdp_client: ?CDPClient = null,
|
||||||
|
|
||||||
|
// keep track of when curl_multi_perform is happening so that we can avoid
|
||||||
|
// recursive calls into curl (which it will fail)
|
||||||
|
performing: bool = false,
|
||||||
|
|
||||||
// libcurl can monitor arbitrary sockets, this lets us use libcurl to poll
|
// libcurl can monitor arbitrary sockets, this lets us use libcurl to poll
|
||||||
// both HTTP data as well as messages from an CDP connection.
|
// both HTTP data as well as messages from an CDP connection.
|
||||||
// Furthermore, we have some tension between blocking scripts and request
|
// Furthermore, we have some tension between blocking scripts and request
|
||||||
@@ -735,7 +739,12 @@ pub const PerformStatus = enum {
|
|||||||
fn perform(self: *Client, timeout_ms: c_int) !PerformStatus {
|
fn perform(self: *Client, timeout_ms: c_int) !PerformStatus {
|
||||||
const multi = self.multi;
|
const multi = self.multi;
|
||||||
var running: c_int = undefined;
|
var running: c_int = undefined;
|
||||||
|
|
||||||
|
{
|
||||||
|
self.performing = true;
|
||||||
|
defer self.performing = false;
|
||||||
try errorMCheck(c.curl_multi_perform(multi, &running));
|
try errorMCheck(c.curl_multi_perform(multi, &running));
|
||||||
|
}
|
||||||
|
|
||||||
// We're potentially going to block for a while until we get data. Process
|
// We're potentially going to block for a while until we get data. Process
|
||||||
// whatever messages we have waiting ahead of time.
|
// whatever messages we have waiting ahead of time.
|
||||||
@@ -1092,6 +1101,8 @@ pub const Transfer = struct {
|
|||||||
// the headers, and the [encoded] body.
|
// the headers, and the [encoded] body.
|
||||||
bytes_received: usize = 0,
|
bytes_received: usize = 0,
|
||||||
|
|
||||||
|
aborted: bool = false,
|
||||||
|
|
||||||
max_response_size: ?usize = null,
|
max_response_size: ?usize = null,
|
||||||
|
|
||||||
// We'll store the response header here
|
// We'll store the response header here
|
||||||
@@ -1224,10 +1235,27 @@ pub const Transfer = struct {
|
|||||||
|
|
||||||
pub fn abort(self: *Transfer, err: anyerror) void {
|
pub fn abort(self: *Transfer, err: anyerror) void {
|
||||||
requestFailed(self, err, true);
|
requestFailed(self, err, true);
|
||||||
|
if (self._handle == null) {
|
||||||
|
self.deinit();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
const client = self.client;
|
||||||
|
if (client.performing) {
|
||||||
|
// We're currently in a curl_multi_perform. We cannot call endTransfer
|
||||||
|
// as that calls curl_multi_remove_handle, and you can't do that
|
||||||
|
// from a curl callback. Instead, we flag this transfer and all of
|
||||||
|
// our callbacks will check for this flag and abort the transfer for
|
||||||
|
// us
|
||||||
|
self.aborted = true;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
if (self._handle != null) {
|
if (self._handle != null) {
|
||||||
self.client.endTransfer(self);
|
client.endTransfer(self);
|
||||||
}
|
}
|
||||||
self.deinit();
|
self.deinit();
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn terminate(self: *Transfer) void {
|
pub fn terminate(self: *Transfer) void {
|
||||||
@@ -1359,7 +1387,7 @@ pub const Transfer = struct {
|
|||||||
.transfer = transfer,
|
.transfer = transfer,
|
||||||
});
|
});
|
||||||
|
|
||||||
return proceed;
|
return proceed and transfer.aborted == false;
|
||||||
}
|
}
|
||||||
|
|
||||||
// headerCallback is called by curl on each request's header line read.
|
// headerCallback is called by curl on each request's header line read.
|
||||||
@@ -1519,6 +1547,10 @@ pub const Transfer = struct {
|
|||||||
.transfer = transfer,
|
.transfer = transfer,
|
||||||
});
|
});
|
||||||
|
|
||||||
|
if (transfer.aborted) {
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
|
||||||
return @intCast(chunk_len);
|
return @intCast(chunk_len);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user