惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

IT之家
IT之家
Y
Y Combinator Blog
月光博客
月光博客
Blog — PlanetScale
Blog — PlanetScale
GbyAI
GbyAI
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
博客园 - 三生石上(FineUI控件)
S
SegmentFault 最新的问题
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
美团技术团队
雷峰网
雷峰网
酷 壳 – CoolShell
酷 壳 – CoolShell
Last Week in AI
Last Week in AI
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
有赞技术团队
有赞技术团队
博客园 - 司徒正美
V
Visual Studio Blog
小众软件
小众软件
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
T
Tailwind CSS Blog
Apple Machine Learning Research
Apple Machine Learning Research
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
A
About on SuperTechFans
The Cloudflare Blog

Recent Commits to openclaw:main

test: merge chat side-result checks · openclaw/openclaw@ddd2c2a test: merge cron history checks · openclaw/openclaw@f7eb746 test: merge responsive navigation shell checks · openclaw/openclaw@c2e4b47 docs(changelog): add codex oauth fixes · openclaw/openclaw@628e6cd test: merge navigation routing cases · openclaw/openclaw@5d8cecb Tests: mock channel registry bundled fallback · openclaw/openclaw@2b08233 Secrets: avoid broad web search discovery for single plugin config · openclaw/openclaw@a464f59 test: merge config view browser checks · openclaw/openclaw@20cf511 fix(status): align oauth health with runtime · openclaw/openclaw@eed7116 feat: add macOS screen snapshots for monitor preview (#67954) thanks … · openclaw/openclaw@f377db1 fix: report shared auth scopes in hello-ok (#67810) thanks @BunsDev · openclaw/openclaw@0b6c39b Auto-reply: avoid eager bundled route fallback · openclaw/openclaw@3ea1bf4 Tests: narrow session binding contract setup · openclaw/openclaw@54e4e16 fix(macOS): enable undo/redo in webchat composer text input (#34962) · openclaw/openclaw@00951dc Tests: speed up channel setup promotion · openclaw/openclaw@82b529a Docs: refresh agent instructions · openclaw/openclaw@5775fe2 fix(auth): serialize OAuth refresh across agents to fix #26322 (#67876) · openclaw/openclaw@8e79080 test: allow ollama public surface boundary test · openclaw/openclaw@7d4f1a6 Docs: add test performance guardrails · openclaw/openclaw@89706d3 Tests: restore context-engine usage proof · openclaw/openclaw@e4c4f95 Tests: slim context engine runtime coverage · openclaw/openclaw@74c198f ci: retry failed custom checkouts · openclaw/openclaw@0ee5baf test: trim duplicate provider auth onboarding cases · openclaw/openclaw@1ffc02e matrix: fix sessions_spawn --thread subagent session spawning (#67643) · openclaw/openclaw@1ce2596 test: reduce auth choice fixture churn · openclaw/openclaw@857b9cd test: mock health status config boundaries · openclaw/openclaw@9d5ab4a test: mock onboard config io boundary · openclaw/openclaw@299694d test: mock legacy state plugin boundaries · openclaw/openclaw@2713089 test: mock channel install boundaries · openclaw/openclaw@b945248 test: mock doctor preview channel boundaries · openclaw/openclaw@b1a3ad4
fix(audit): cancel stalled advisory body reads · openclaw...
vincentkoc · 2026-06-19 · via Recent Commits to openclaw:main

@@ -5,6 +5,7 @@ import { readFile } from "node:fs/promises";

55

import path from "node:path";

66

import process from "node:process";

77

import { pathToFileURL } from "node:url";

8+

import { readBoundedResponseText as readBoundedResponseTextWithLimit } from "../lib/bounded-response.mjs";

89910

const DEFAULT_REGISTRY = "https://registry.npmjs.org";

1011

const BULK_ADVISORY_PATH = "/-/npm/v1/security/advisories/bulk";

@@ -710,69 +711,35 @@ function resolveBulkAdvisoryResponseBodyMaxBytes() {

710711

async function withBulkAdvisoryTimeout({ label, timeoutMs, run }) {

711712

const controller = new AbortController();

712713

let timeout;

714+

const timeoutPromise = new Promise((_resolve, reject) => {

715+

timeout = setTimeout(() => {

716+

const error = new Error(`${label} exceeded timeout of ${timeoutMs}ms`);

717+

controller.abort(error);

718+

reject(error);

719+

}, timeoutMs);

720+

});

713721

try {

714-

return await Promise.race([

715-

run(controller.signal),

716-

new Promise((_resolve, reject) => {

717-

timeout = setTimeout(() => {

718-

const error = new Error(`${label} exceeded timeout of ${timeoutMs}ms`);

719-

controller.abort(error);

720-

reject(error);

721-

}, timeoutMs);

722-

}),

723-

]);

722+

return await Promise.race([run({ signal: controller.signal, timeoutPromise }), timeoutPromise]);

724723

} finally {

725724

if (timeout) {

726725

clearTimeout(timeout);

727726

}

728727

}

729728

}

730729731-

async function readBoundedResponseText(response, maxBytes, label) {

732-

const rawContentLength = response.headers?.get?.("content-length");

733-

const contentLength =

734-

rawContentLength && /^\d+$/u.test(rawContentLength) ? Number(rawContentLength) : undefined;

735-

if (Number.isSafeInteger(contentLength) && contentLength > maxBytes) {

736-

await response.body?.cancel().catch(() => undefined);

737-

throw Object.assign(new Error(`${label} exceeded ${maxBytes} bytes`), { code: "ETOOBIG" });

738-

}

739-740-

if (!response.body) {

741-

return "";

742-

}

743-744-

const reader = response.body.getReader();

745-

const decoder = new TextDecoder();

746-

const chunks = [];

747-

let totalBytes = 0;

748-

try {

749-

for (;;) {

750-

const { done, value } = await reader.read();

751-

if (done) {

752-

const tail = decoder.decode();

753-

if (tail) {

754-

chunks.push(tail);

755-

}

756-

break;

757-

}

758-759-

totalBytes += value.byteLength;

760-

if (totalBytes > maxBytes) {

761-

await reader.cancel().catch(() => undefined);

762-

throw Object.assign(new Error(`${label} exceeded ${maxBytes} bytes`), { code: "ETOOBIG" });

763-

}

764-

chunks.push(decoder.decode(value, { stream: true }));

765-

}

766-

} finally {

767-

reader.releaseLock();

768-

}

769-770-

return chunks.join("");

730+

async function readBoundedResponseText(response, maxBytes, label, options = {}) {

731+

return await readBoundedResponseTextWithLimit(response, label, maxBytes, {

732+

signal: options.signal,

733+

timeoutPromise: options.timeoutPromise,

734+

formatTooLargeMessage: (messageLabel, bytes) => `${messageLabel} exceeded ${bytes} bytes`,

735+

createTooLargeError: (message) => Object.assign(new Error(message), { code: "ETOOBIG" }),

736+

});

771737

}

772738773739

export async function readBoundedBulkAdvisoryErrorText(

774740

response,

775741

maxChars = BULK_ADVISORY_ERROR_BODY_MAX_CHARS,

742+

options = {},

776743

) {

777744

if (!response.body) {

778745

return "";

@@ -782,10 +749,24 @@ export async function readBoundedBulkAdvisoryErrorText(

782749

const decoder = new TextDecoder();

783750

let text = "";

784751

let truncated = false;

752+

let canceled = false;

785753786754

try {

787755

while (text.length <= maxChars) {

788-

const { done, value } = await reader.read();

756+

const read = reader.read();

757+

const readWithTimeout = options.timeoutPromise

758+

? Promise.race([

759+

read,

760+

options.timeoutPromise.catch((error) => {

761+

canceled = true;

762+

void Promise.resolve()

763+

.then(() => reader.cancel())

764+

.catch(() => undefined);

765+

throw error;

766+

}),

767+

])

768+

: read;

769+

const { done, value } = await readWithTimeout;

789770

if (done) {

790771

text += decoder.decode();

791772

break;

@@ -801,16 +782,21 @@ export async function readBoundedBulkAdvisoryErrorText(

801782

} finally {

802783

if (truncated) {

803784

await reader.cancel().catch(() => undefined);

804-

} else {

785+

} else if (!canceled) {

805786

reader.releaseLock();

806787

}

807788

}

808789809790

return truncated ? `${text}\n[truncated]` : text;

810791

}

811792812-

async function readBulkAdvisoryJson(response, maxBytes) {

813-

const text = await readBoundedResponseText(response, maxBytes, "Bulk advisory response body");

793+

async function readBulkAdvisoryJson(response, maxBytes, options = {}) {

794+

const text = await readBoundedResponseText(

795+

response,

796+

maxBytes,

797+

"Bulk advisory response body",

798+

options,

799+

);

814800

if (!text.trim()) {

815801

throw new Error("Bulk advisory response body was empty");

816802

}

@@ -828,7 +814,7 @@ export async function fetchBulkAdvisories({

828814

return await withBulkAdvisoryTimeout({

829815

label: "Bulk advisory request",

830816

timeoutMs,

831-

run: async (signal) => {

817+

run: async ({ signal, timeoutPromise }) => {

832818

const response = await fetchImpl(url, {

833819

method: "POST",

834820

headers: {

@@ -840,13 +826,18 @@ export async function fetchBulkAdvisories({

840826

});

841827842828

if (!response.ok) {

843-

const bodyText = await readBoundedBulkAdvisoryErrorText(response);

829+

const bodyText = await readBoundedBulkAdvisoryErrorText(response, undefined, {

830+

timeoutPromise,

831+

});

844832

throw new Error(

845833

`Bulk advisory request failed (${response.status} ${response.statusText}): ${bodyText}`,

846834

);

847835

}

848836849-

return await readBulkAdvisoryJson(response, responseBodyMaxBytes);

837+

return await readBulkAdvisoryJson(response, responseBodyMaxBytes, {

838+

signal,

839+

timeoutPromise,

840+

});

850841

},

851842

});

852843

}