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

推荐订阅源

D
Docker
IT之家
IT之家
Microsoft Security Blog
Microsoft Security Blog
博客园 - 司徒正美
云风的 BLOG
云风的 BLOG
P
Proofpoint News Feed
D
DataBreaches.Net
B
Blog RSS Feed
博客园_首页
The GitHub Blog
The GitHub Blog
I
InfoQ
L
LangChain Blog
G
Google Developers Blog
M
MIT News - Artificial intelligence
美团技术团队
腾讯CDC
V
Visual Studio Blog
aimingoo的专栏
aimingoo的专栏
博客园 - 聂微东
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Apple Machine Learning Research
Apple Machine Learning Research
A
About on SuperTechFans
博客园 - 三生石上(FineUI控件)
博客园 - 叶小钗

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(qa): cap chunked credential lease payloads · openclaw...
vincentkoc · 2026-06-20 · via Recent Commits to openclaw:main

@@ -17,6 +17,10 @@ const DEFAULT_ENDPOINT_PREFIX = QA_CREDENTIALS_DEFAULT_ENDPOINT_PREFIX;

1717

const DEFAULT_HEARTBEAT_INTERVAL_MS = 30_000;

1818

const DEFAULT_HTTP_TIMEOUT_MS = 15_000;

1919

const DEFAULT_LEASE_TTL_MS = 20 * 60 * 1_000;

20+

const DEFAULT_CHUNKED_PAYLOAD_MAX_BYTES = 64 * 1024 * 1024;

21+

const DEFAULT_CHUNKED_PAYLOAD_MAX_CHUNKS = 4096;

22+

const CHUNKED_PAYLOAD_MAX_BYTES_ENV = "OPENCLAW_QA_CREDENTIAL_PAYLOAD_MAX_BYTES";

23+

const CHUNKED_PAYLOAD_MAX_CHUNKS_ENV = "OPENCLAW_QA_CREDENTIAL_PAYLOAD_MAX_CHUNKS";

2024

const RETRY_BACKOFF_MS = [500, 1_000, 2_000, 4_000, 5_000] as const;

2125

const RETRYABLE_ACQUIRE_CODES = new Set(["POOL_EXHAUSTED", "NO_CREDENTIAL_AVAILABLE"]);

2226

const CHUNKED_PAYLOAD_MARKER = "__openclawQaCredentialPayloadChunksV1";

@@ -55,6 +59,8 @@ type ConvexCredentialBrokerConfig = {

5559

httpTimeoutMs: number;

5660

leaseTtlMs: number;

5761

ownerId: string;

62+

payloadMaxBytes: number;

63+

payloadMaxChunks: number;

5864

payloadChunkUrl: string;

5965

releaseUrl: string;

6066

role: QaCredentialRole;

@@ -203,14 +209,27 @@ function resolveConvexCredentialBrokerConfig(params: {

203209

"OPENCLAW_QA_CREDENTIAL_HTTP_TIMEOUT_MS",

204210

DEFAULT_HTTP_TIMEOUT_MS,

205211

),

212+

payloadMaxBytes: parsePositiveIntegerEnv(

213+

params.env,

214+

CHUNKED_PAYLOAD_MAX_BYTES_ENV,

215+

DEFAULT_CHUNKED_PAYLOAD_MAX_BYTES,

216+

),

217+

payloadMaxChunks: parsePositiveIntegerEnv(

218+

params.env,

219+

CHUNKED_PAYLOAD_MAX_CHUNKS_ENV,

220+

DEFAULT_CHUNKED_PAYLOAD_MAX_CHUNKS,

221+

),

206222

acquireUrl: joinQaCredentialEndpoint(baseUrl, endpointPrefix, "acquire"),

207223

heartbeatUrl: joinQaCredentialEndpoint(baseUrl, endpointPrefix, "heartbeat"),

208224

payloadChunkUrl: joinQaCredentialEndpoint(baseUrl, endpointPrefix, "payload-chunk"),

209225

releaseUrl: joinQaCredentialEndpoint(baseUrl, endpointPrefix, "release"),

210226

};

211227

}

212228213-

function parseChunkedPayloadMarker(payload: unknown) {

229+

function parseChunkedPayloadMarker(

230+

payload: unknown,

231+

limits: { maxBytes: number; maxChunks: number },

232+

) {

214233

if (!payload || typeof payload !== "object" || Array.isArray(payload)) {

215234

return null;

216235

}

@@ -225,13 +244,19 @@ function parseChunkedPayloadMarker(payload: unknown) {

225244

) {

226245

throw new Error("Chunked credential payload marker has an invalid chunkCount.");

227246

}

247+

if (record.chunkCount > limits.maxChunks) {

248+

throw new Error(`Chunked credential payload marker exceeds ${limits.maxChunks} chunks.`);

249+

}

228250

if (

229251

typeof record.byteLength !== "number" ||

230252

!Number.isInteger(record.byteLength) ||

231253

record.byteLength < 0

232254

) {

233255

throw new Error("Chunked credential payload marker has an invalid byteLength.");

234256

}

257+

if (record.byteLength > limits.maxBytes) {

258+

throw new Error(`Chunked credential payload marker exceeds ${limits.maxBytes} bytes.`);

259+

}

235260

return {

236261

chunkCount: record.chunkCount,

237262

byteLength: record.byteLength,

@@ -304,11 +329,15 @@ async function resolveConvexCredentialPayload(params: {

304329

fetchImpl: typeof fetch;

305330

kind: string;

306331

}) {

307-

const marker = parseChunkedPayloadMarker(params.acquired.payload);

332+

const marker = parseChunkedPayloadMarker(params.acquired.payload, {

333+

maxBytes: params.config.payloadMaxBytes,

334+

maxChunks: params.config.payloadMaxChunks,

335+

});

308336

if (!marker) {

309337

return params.acquired.payload;

310338

}

311339

const chunks: string[] = [];

340+

let serializedBytes = 0;

312341

for (let index = 0; index < marker.chunkCount; index += 1) {

313342

const payload = await postConvexBroker({

314343

fetchImpl: params.fetchImpl,

@@ -325,10 +354,14 @@ async function resolveConvexCredentialPayload(params: {

325354

},

326355

});

327356

const parsed = convexPayloadChunkSuccessSchema.parse(payload);

357+

serializedBytes += Buffer.byteLength(parsed.data, "utf8");

358+

if (serializedBytes > marker.byteLength) {

359+

throw new Error("Chunked credential payload exceeded declared byteLength.");

360+

}

328361

chunks.push(parsed.data);

329362

}

330363

const serialized = chunks.join("");

331-

if (Buffer.byteLength(serialized, "utf8") !== marker.byteLength) {

364+

if (serializedBytes !== marker.byteLength) {

332365

throw new Error("Chunked credential payload length mismatch.");

333366

}

334367

return JSON.parse(serialized) as unknown;