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

推荐订阅源

博客园 - 司徒正美
月光博客
月光博客
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
美团技术团队
WordPress大学
WordPress大学
罗磊的独立博客
Last Week in AI
Last Week in AI
人人都是产品经理
人人都是产品经理
爱范儿
爱范儿
MongoDB | Blog
MongoDB | Blog
J
Java Code Geeks
H
Hackread – Cybersecurity News, Data Breaches, AI and More
H
Help Net Security
S
SegmentFault 最新的问题
C
Check Point Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
腾讯CDC
Engineering at Meta
Engineering at Meta
The GitHub Blog
The GitHub Blog
F
Fortinet All Blogs
D
DataBreaches.Net
雷峰网
雷峰网
GbyAI
GbyAI
宝玉的分享
宝玉的分享

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(gateway): cap auth limiter entries (#96224) · opencla...
eleqtrizit · 2026-06-25 · via Recent Commits to openclaw:main

@@ -8,15 +8,15 @@

88

*

99

* Design decisions:

1010

* - Pure in-memory Map – no external dependencies; suitable for a single

11-

* gateway process. The Map is periodically pruned to avoid unbounded

12-

* growth.

11+

* gateway process. The Map is periodically pruned and capped to avoid

12+

* unbounded growth.

1313

* - Loopback addresses (127.0.0.1 / ::1) are exempt by default so that local

1414

* CLI sessions are never locked out.

1515

* - The module is side-effect-free: callers create an instance via

1616

* {@link createAuthRateLimiter} and pass it where needed.

1717

*/

181819-

import { resolveTimerTimeoutMs } from "../shared/number-coercion.js";

19+

import { resolveIntegerOption, resolveTimerTimeoutMs } from "../shared/number-coercion.js";

2020

import { isLoopbackAddress, resolveClientIp } from "./net.js";

21212222

// ---------------------------------------------------------------------------

@@ -34,6 +34,8 @@ export interface RateLimitConfig {

3434

exemptLoopback?: boolean;

3535

/** Background prune interval in milliseconds; set <= 0 to disable auto-prune. @default 60_000 */

3636

pruneIntervalMs?: number;

37+

/** Maximum tracked client identities before old unlocked entries are evicted. @default 10_000 */

38+

maxEntries?: number;

3739

}

38403941

export const AUTH_RATE_LIMIT_SCOPE_DEFAULT = "default";

@@ -96,6 +98,7 @@ const DEFAULT_MAX_ATTEMPTS = 10;

9698

const DEFAULT_WINDOW_MS = 60_000; // 1 minute

9799

const DEFAULT_LOCKOUT_MS = 300_000; // 5 minutes

98100

const PRUNE_INTERVAL_MS = 60_000; // prune stale entries every minute

101+

const DEFAULT_MAX_ENTRIES = 10_000;

99102100103

// ---------------------------------------------------------------------------

101104

// Implementation

@@ -137,8 +140,10 @@ export function createAuthRateLimiter(config?: RateLimitConfig): AuthRateLimiter

137140

const lockoutMs = resolveTimerTimeoutMs(config?.lockoutMs, DEFAULT_LOCKOUT_MS, 0);

138141

const exemptLoopback = config?.exemptLoopback ?? true;

139142

const pruneIntervalMs = resolvePruneIntervalMs(config?.pruneIntervalMs);

143+

const maxEntries = resolveIntegerOption(config?.maxEntries, DEFAULT_MAX_ENTRIES, { min: 1 });

140144141145

const entries = new Map<string, RateLimitEntry>();

146+

let overflowLockedUntil: number | undefined;

142147143148

// Periodic cleanup to avoid unbounded map growth.

144149

const pruneTimer = pruneIntervalMs > 0 ? setInterval(() => prune(), pruneIntervalMs) : null;

@@ -187,6 +192,10 @@ export function createAuthRateLimiter(config?: RateLimitConfig): AuthRateLimiter

187192

const entry = entries.get(key);

188193189194

if (!entry) {

195+

const overflowLock = checkOverflowLock(now);

196+

if (overflowLock) {

197+

return overflowLock;

198+

}

190199

return { allowed: true, remaining: maxAttempts, retryAfterMs: 0 };

191200

}

192201

@@ -220,6 +229,10 @@ export function createAuthRateLimiter(config?: RateLimitConfig): AuthRateLimiter

220229

let entry = entries.get(key);

221230222231

if (!entry) {

232+

if (!enforceMaxEntries(now)) {

233+

overflowLockedUntil = Math.max(overflowLockedUntil ?? 0, now + lockoutMs);

234+

return;

235+

}

223236

entry = { attempts: [] };

224237

entries.set(key, entry);

225238

}

@@ -242,8 +255,7 @@ export function createAuthRateLimiter(config?: RateLimitConfig): AuthRateLimiter

242255

entries.delete(key);

243256

}

244257245-

function prune(): void {

246-

const now = Date.now();

258+

function pruneExpiredEntries(now: number): void {

247259

for (const [key, entry] of entries) {

248260

// If locked out, keep the entry until the lockout expires.

249261

if (entry.lockedUntil && now < entry.lockedUntil) {

@@ -256,6 +268,52 @@ export function createAuthRateLimiter(config?: RateLimitConfig): AuthRateLimiter

256268

}

257269

}

258270271+

function checkOverflowLock(now: number): RateLimitCheckResult | undefined {

272+

if (!overflowLockedUntil) {

273+

return undefined;

274+

}

275+

if (now >= overflowLockedUntil) {

276+

overflowLockedUntil = undefined;

277+

return undefined;

278+

}

279+

if (entries.size >= maxEntries) {

280+

pruneExpiredEntries(now);

281+

}

282+

if (entries.size < maxEntries) {

283+

overflowLockedUntil = undefined;

284+

return undefined;

285+

}

286+

return {

287+

allowed: false,

288+

remaining: 0,

289+

retryAfterMs: overflowLockedUntil - now,

290+

};

291+

}

292+293+

function enforceMaxEntries(now: number): boolean {

294+

if (entries.size < maxEntries) {

295+

return true;

296+

}

297+298+

pruneExpiredEntries(now);

299+

if (entries.size < maxEntries) {

300+

return true;

301+

}

302+303+

// Preserve active lockouts so a flood cannot evict the attacker's own block.

304+

for (const [entryKey, entry] of entries) {

305+

if (!entry.lockedUntil || now >= entry.lockedUntil) {

306+

entries.delete(entryKey);

307+

return true;

308+

}

309+

}

310+

return false;

311+

}

312+313+

function prune(): void {

314+

pruneExpiredEntries(Date.now());

315+

}

316+259317

function size(): number {

260318

return entries.size;

261319

}

@@ -265,6 +323,7 @@ export function createAuthRateLimiter(config?: RateLimitConfig): AuthRateLimiter

265323

clearInterval(pruneTimer);

266324

}

267325

entries.clear();

326+

overflowLockedUntil = undefined;

268327

}

269328270329

return { check, recordFailure, reset, size, prune, dispose };