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

推荐订阅源

Microsoft Security Blog
Microsoft Security Blog
Apple Machine Learning Research
Apple Machine Learning Research
美团技术团队
WordPress大学
WordPress大学
酷 壳 – CoolShell
酷 壳 – CoolShell
G
Google Developers Blog
阮一峰的网络日志
阮一峰的网络日志
The Cloudflare Blog
J
Java Code Geeks
Martin Fowler
Martin Fowler
M
MIT News - Artificial intelligence
IT之家
IT之家
博客园 - 三生石上(FineUI控件)
月光博客
月光博客
Google DeepMind News
Google DeepMind News
小众软件
小众软件
V
V2EX
Hugging Face - Blog
Hugging Face - Blog
爱范儿
爱范儿
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Jina AI
Jina AI
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
腾讯CDC
B
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(gateway): ignore stale sudo scope for root user servi...
vincentkoc · 2026-06-16 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -38,6 +38,7 @@ Docs: https://docs.openclaw.ai

3838

- TUI: reload the active session after external `/new` or `/reset` session-change events so stale transcript and stream state clear promptly. Fixes #38966; carries forward #40472. Thanks @yizhanzjz and @wsyjh8.

3939

- Control UI: preserve Gateway Access tokens during same-normalized WebSocket URL edits and reload gateway-scoped tokens when switching endpoints. Fixes #41545; repairs #42001 with additional source PRs #41546, #41552, and #41718. Thanks @wsyjh8, @llagy0020, @llagy007, @pingfanfan, and @zheliu2.

4040

- Gateway CLI: tolerate a single transient clean WebSocket close before `hello-ok` so one-shot RPC calls reconnect instead of failing noisily, while repeated clean pre-hello closes still surface. Carries forward source PRs #54475 and #54774; #85253 covered adjacent connect assembly diagnostics. Thanks @ruanrrn.

41+

- Gateway/Linux: keep root-owned systemd user service lifecycle commands on root's user manager when a stale `SUDO_USER` remains in a root shell with root's user bus environment. Fixes #81410. Thanks @Ericksza and @ChuckClose-tech.

4142

- Release and test reliability: extend slow Gateway/full-suite watchdogs, split local full-suite shards when throttled, stabilize plugin auth marker fixtures, avoid brittle provider-ref error text, and keep QA Lab bootstrap selection assertions aligned with flow-only scenarios. (#92652)

4243

- macOS Peekaboo bridge: update the embedded Peekaboo package to 3.5.2 and route bundled-skill CLI commands through the OpenClaw app bridge so they inherit its Screen Recording and Accessibility grants.

4344

- Agent routing: route subagent RPC callbacks addressed to an agent-shaped `--to` target to the correct session key instead of falling back to the main session, so WeChat (and other channel) session-key callbacks reach the intended subagent session. (#90231) Thanks @zhangguiping-xydt.

Original file line numberDiff line numberDiff line change

@@ -326,6 +326,26 @@ describe("systemd availability", () => {

326326

expect(execFileMock).toHaveBeenCalledTimes(1);

327327

});

328328
329+

it("keeps root user scope when stale SUDO_USER is paired with root bus environment", async () => {

330+

mockEffectiveUid(0);

331+

execFileMock.mockImplementationOnce((_cmd, args, _opts, cb) => {

332+

assertUserSystemctlArgs(args, "status");

333+

cb(null, "", "");

334+

});

335+
336+

await expect(

337+

isSystemdUserServiceAvailable({

338+

HOME: "/root",

339+

USER: "root",

340+

LOGNAME: "root",

341+

SUDO_USER: "debian",

342+

XDG_RUNTIME_DIR: "/run/user/0",

343+

DBUS_SESSION_BUS_ADDRESS: "unix:path=/run/user/0/bus",

344+

}),

345+

).resolves.toBe(true);

346+

expect(execFileMock).toHaveBeenCalledTimes(1);

347+

});

348+
329349

it("does not let stale SUDO_USER override a sudo-u target user scope", async () => {

330350

mockEffectiveUid(1000);

331351

execFileMock.mockImplementationOnce((_cmd, args, _opts, cb) => {

@@ -2049,6 +2069,27 @@ describe("systemd service control", () => {

20492069

await assertRestartSuccess({ SUDO_USER: "debian" });

20502070

});

20512071
2072+

it("restarts root user services directly when stale SUDO_USER is paired with root bus environment", async () => {

2073+

mockEffectiveUid(0);

2074+

execFileMock

2075+

.mockImplementationOnce((_cmd, args, _opts, cb) => {

2076+

assertUserSystemctlArgs(args, "status");

2077+

cb(null, "", "");

2078+

})

2079+

.mockImplementationOnce((_cmd, args, _opts, cb) => {

2080+

assertUserSystemctlArgs(args, "restart", GATEWAY_SERVICE);

2081+

cb(null, "", "");

2082+

});

2083+

await assertRestartSuccess({

2084+

HOME: "/root",

2085+

USER: "root",

2086+

LOGNAME: "root",

2087+

SUDO_USER: "debian",

2088+

XDG_RUNTIME_DIR: "/run/user/0",

2089+

DBUS_SESSION_BUS_ADDRESS: "unix:path=/run/user/0/bus",

2090+

});

2091+

});

2092+
20522093

it("keeps direct --user scope when SUDO_USER is root", async () => {

20532094

execFileMock

20542095

.mockImplementationOnce((_cmd, args, _opts, cb) => {

Original file line numberDiff line numberDiff line change

@@ -677,6 +677,17 @@ function isNonRootUser(user: string | null): user is string {

677677

return Boolean(user && user !== "root");

678678

}

679679
680+

function hasRootUserManagerEnvironment(env: GatewayServiceEnv): boolean {

681+

const home = env.HOME?.trim();

682+

const runtimeDir = env.XDG_RUNTIME_DIR?.trim();

683+

const dbusAddress = env.DBUS_SESSION_BUS_ADDRESS?.trim();

684+

return (

685+

home === "/root" &&

686+

runtimeDir === "/run/user/0" &&

687+

Boolean(dbusAddress?.includes("/run/user/0/bus"))

688+

);

689+

}

690+
680691

function resolveSystemctlUserScope(env: GatewayServiceEnv): {

681692

machineUser: string | null;

682693

preferMachineScope: boolean;

@@ -686,14 +697,17 @@ function resolveSystemctlUserScope(env: GatewayServiceEnv): {

686697

const effectiveUid = readSystemctlEffectiveUid();

687698

const effectiveUser = readSystemctlEffectiveUser();

688699

const isEffectiveRoot = effectiveUid === null ? effectiveUser === "root" : effectiveUid === 0;

689-

const isSudoToRoot = isEffectiveRoot && isNonRootUser(sudoUser);

690-

const machineUser = isSudoToRoot

691-

? sudoUser

692-

: isNonRootUser(envUser)

693-

? envUser

694-

: isNonRootUser(sudoUser)

695-

? sudoUser

696-

: effectiveUser || envUser || sudoUser || null;

700+

const hasRootUserManager = isEffectiveRoot && hasRootUserManagerEnvironment(env);

701+

const isSudoToRoot = isEffectiveRoot && !hasRootUserManager && isNonRootUser(sudoUser);

702+

const machineUser = hasRootUserManager

703+

? null

704+

: isSudoToRoot

705+

? sudoUser

706+

: isNonRootUser(envUser)

707+

? envUser

708+

: isNonRootUser(sudoUser)

709+

? sudoUser

710+

: effectiveUser || envUser || sudoUser || null;

697711

return {

698712

machineUser,

699713

preferMachineScope: isSudoToRoot,