File size: 18,838 Bytes
eb3f11e | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 | // Config snapshots and pre/post-update config restoration.
import fs from "node:fs/promises";
import { isDeepStrictEqual } from "node:util";
import { isRecord } from "@openclaw/normalization-core/record-coerce";
import { theme } from "../../../packages/terminal-core/src/theme.js";
import type { LegacyConfigUpdatePlan } from "../../commands/doctor/legacy-config-repair.js";
import {
createConfigIO,
mutateConfigFileWithRetry,
parseConfigJson5,
readConfigFileSnapshot,
} from "../../config/config.js";
import { resolveConfigEnvVars } from "../../config/env-substitution.js";
import { resolveConfigIncludes } from "../../config/includes.js";
import type { ConfigWriteOptions } from "../../config/io.types.js";
import { asResolvedSourceConfig, asRuntimeConfig } from "../../config/materialize.js";
import { resolveIncludeRoots } from "../../config/paths.js";
import { parsePluginInstallRecordMap } from "../../config/plugin-install-record-map.js";
import type { OpenClawConfig } from "../../config/types.openclaw.js";
import type { PluginInstallRecord } from "../../config/types.plugins.js";
import { shouldWarnOnTouchedVersion } from "../../config/version.js";
import { normalizeUpdateChannel, type UpdateChannel } from "../../infra/update-channels.js";
import type { PreUpdateConfigRestoreInput } from "../../infra/update-post-core-context.js";
import { withPluginLifecycleLease } from "../../plugins/plugin-lifecycle-lease.js";
import { defaultRuntime } from "../../runtime.js";
import { VERSION } from "../../version.js";
const PRE_UPDATE_CONFIG_SNAPSHOT_MAX_AGE_MS = 6 * 60 * 60 * 1000;
export function normalizePluginInstallRecordMap(
value: unknown,
): Record<string, PluginInstallRecord> {
const records = parsePluginInstallRecordMap(value);
if (!records) {
throw new Error("Invalid plugin install record map");
}
return records;
}
function normalizeChannelConfigMap(value: unknown): Record<string, unknown> | null {
if (!isRecord(value)) {
return null;
}
return value;
}
function normalizeDirectAuthoredChannelConfigMap(value: unknown): Record<string, unknown> | null {
const channels = normalizeChannelConfigMap(value);
if (!channels || Object.hasOwn(channels, "$include")) {
return null;
}
return channels;
}
function restorePreUpdateChannelModelOverrides(params: {
channels: Record<string, unknown>;
preUpdateChannels: Record<string, unknown>;
restoredChannelIds: string[];
}): { channels: Record<string, unknown>; changed: boolean } {
if (params.restoredChannelIds.length === 0) {
return { channels: params.channels, changed: false };
}
const preUpdateModelByChannel = normalizeChannelConfigMap(
params.preUpdateChannels.modelByChannel,
);
if (!preUpdateModelByChannel) {
return { channels: params.channels, changed: false };
}
const currentModelByChannel = normalizeChannelConfigMap(params.channels.modelByChannel) ?? {};
const restoredModelByChannel = structuredClone(currentModelByChannel);
let changed = false;
for (const [providerId, providerOverrides] of Object.entries(preUpdateModelByChannel)) {
const preUpdateProviderOverrides = normalizeChannelConfigMap(providerOverrides);
if (!preUpdateProviderOverrides) {
continue;
}
const currentProviderOverrides =
normalizeChannelConfigMap(restoredModelByChannel[providerId]) ?? {};
let providerChanged = false;
for (const channelId of params.restoredChannelIds) {
if (
currentProviderOverrides[channelId] !== undefined ||
preUpdateProviderOverrides[channelId] === undefined
) {
continue;
}
currentProviderOverrides[channelId] = structuredClone(preUpdateProviderOverrides[channelId]);
providerChanged = true;
}
if (providerChanged) {
restoredModelByChannel[providerId] = currentProviderOverrides;
changed = true;
}
}
return changed
? { channels: { ...params.channels, modelByChannel: restoredModelByChannel }, changed: true }
: { channels: params.channels, changed: false };
}
function restoreDroppedPreUpdateChannels(
snapshot: Awaited<ReturnType<typeof readConfigFileSnapshot>>,
preUpdateConfig: PreUpdateConfigRestoreInput | undefined,
): {
snapshot: Awaited<ReturnType<typeof readConfigFileSnapshot>>;
changed: boolean;
authoredChannels?: unknown;
} {
if (!snapshot.valid || !preUpdateConfig) {
return { snapshot, changed: false };
}
const preUpdateChannels = normalizeChannelConfigMap(preUpdateConfig.sourceConfig.channels);
if (!preUpdateChannels) {
return { snapshot, changed: false };
}
const postUpdateChannels = normalizeChannelConfigMap(snapshot.sourceConfig.channels) ?? {};
let restoredChannels = { ...postUpdateChannels };
const restoredChannelIds: string[] = [];
let restored = false;
for (const [channelId, channelConfig] of Object.entries(preUpdateChannels)) {
if (restoredChannels[channelId] !== undefined) {
continue;
}
restoredChannels[channelId] = structuredClone(channelConfig);
if (channelId !== "modelByChannel") {
restoredChannelIds.push(channelId);
}
restored = true;
}
if (!restored) {
return { snapshot, changed: false };
}
const restoredModelOverrides = restorePreUpdateChannelModelOverrides({
channels: restoredChannels,
preUpdateChannels,
restoredChannelIds,
});
restoredChannels = restoredModelOverrides.channels;
const authoredChannels = resolveRestoredAuthoredChannels({
currentChannels: snapshot.sourceConfig.channels,
currentAuthoredChannels: isRecord(snapshot.parsed)
? (snapshot.parsed as OpenClawConfig).channels
: snapshot.sourceConfig.channels,
preUpdateAuthoredChannels: preUpdateConfig.authoredConfig.channels,
restoredChannelIds,
});
const nextConfig = {
...snapshot.sourceConfig,
channels: restoredChannels,
} as OpenClawConfig;
return {
snapshot: {
...createUpdatedConfigSnapshot(snapshot, nextConfig),
hash: snapshot.hash,
},
changed: true,
...(authoredChannels !== undefined ? { authoredChannels } : {}),
};
}
function hasRestorablePreUpdateChannels(
snapshot: Awaited<ReturnType<typeof readConfigFileSnapshot>>,
preUpdateConfig: PreUpdateConfigRestoreInput,
): boolean {
if (!snapshot.valid) {
return false;
}
const preUpdateChannels = normalizeChannelConfigMap(preUpdateConfig.sourceConfig.channels);
if (!preUpdateChannels) {
return false;
}
const postUpdateChannels = normalizeChannelConfigMap(snapshot.sourceConfig.channels) ?? {};
return Object.keys(preUpdateChannels).some(
(channelId) => postUpdateChannels[channelId] === undefined,
);
}
function resolveRestoredAuthoredChannels(params: {
currentChannels: unknown;
currentAuthoredChannels: unknown;
preUpdateAuthoredChannels: unknown;
restoredChannelIds: string[];
}): unknown {
if (params.preUpdateAuthoredChannels === undefined) {
return undefined;
}
const directAuthoredChannels = normalizeDirectAuthoredChannelConfigMap(
params.preUpdateAuthoredChannels,
);
if (!directAuthoredChannels) {
const preUpdateAuthoredChannels = normalizeChannelConfigMap(params.preUpdateAuthoredChannels);
if (!preUpdateAuthoredChannels) {
return undefined;
}
const currentDirectAuthoredChannels = normalizeDirectAuthoredChannelConfigMap(
params.currentAuthoredChannels,
);
if (currentDirectAuthoredChannels) {
return {
...structuredClone(preUpdateAuthoredChannels),
...structuredClone(currentDirectAuthoredChannels),
};
}
const currentAuthoredChannels = normalizeChannelConfigMap(params.currentAuthoredChannels);
return !currentAuthoredChannels || Object.keys(currentAuthoredChannels).length === 0
? structuredClone(preUpdateAuthoredChannels)
: undefined;
}
const currentChannels =
normalizeDirectAuthoredChannelConfigMap(params.currentAuthoredChannels) ??
normalizeDirectAuthoredChannelConfigMap(params.currentChannels) ??
{};
const restoredChannels = { ...currentChannels };
let changed = false;
for (const channelId of params.restoredChannelIds) {
if (
restoredChannels[channelId] !== undefined ||
directAuthoredChannels[channelId] === undefined
) {
continue;
}
restoredChannels[channelId] = structuredClone(directAuthoredChannels[channelId]);
changed = true;
}
const restoredModelOverrides = restorePreUpdateChannelModelOverrides({
channels: restoredChannels,
preUpdateChannels: directAuthoredChannels,
restoredChannelIds: params.restoredChannelIds,
});
if (restoredModelOverrides.changed) {
return restoredModelOverrides.channels;
}
return changed ? restoredChannels : undefined;
}
export async function persistValidatedDowngradeConfig(
snapshot: Awaited<ReturnType<typeof readConfigFileSnapshot>>,
): Promise<void> {
if (
snapshot.valid &&
shouldWarnOnTouchedVersion(VERSION, snapshot.sourceConfig.meta?.lastTouchedVersion)
) {
// Strict target validation permits this write even when Doctor execution failed.
// Committing unchanged config through its normal writer stamps the target version,
// so same-channel downgrades retain ordinary restart eligibility.
await withPluginLifecycleLease({}, async () => {
await mutateConfigFileWithRetry({ mutate: () => undefined });
});
}
}
export async function persistRequestedUpdateChannel(params: {
configSnapshot: Awaited<ReturnType<typeof readConfigFileSnapshot>>;
requestedChannel: UpdateChannel | null;
}): Promise<Awaited<ReturnType<typeof readConfigFileSnapshot>>> {
if (!params.requestedChannel || !params.configSnapshot.valid) {
return params.configSnapshot;
}
const storedChannel = normalizeUpdateChannel(params.configSnapshot.config.update?.channel);
if (params.requestedChannel === storedChannel) {
return params.configSnapshot;
}
const requestedChannel = params.requestedChannel;
const mutation = await mutateConfigFileWithRetry({
writeOptions: { skipPluginValidation: true },
mutate: (draft) => {
draft.update = {
...draft.update,
channel: requestedChannel,
};
},
});
return createUpdatedConfigSnapshot(mutation.snapshot, mutation.nextConfig);
}
/** Capture write provenance in the process that will converge plugins, after any channel write. */
export async function preparePostCorePluginConfig(params: {
requestedChannel: UpdateChannel | null;
preUpdateConfig?: PreUpdateConfigRestoreInput;
suppressFutureVersionWarning?: boolean;
observe?: boolean;
}) {
const io = createConfigIO({
pluginValidation: "skip",
suppressFutureVersionWarning: params.suppressFutureVersionWarning,
observe: params.observe,
});
let prepared = await io.readConfigFileSnapshotForWrite();
const channelSnapshot = await persistRequestedUpdateChannel({
configSnapshot: prepared.snapshot,
requestedChannel: params.requestedChannel,
});
if (channelSnapshot !== prepared.snapshot) {
prepared = await io.readConfigFileSnapshotForWrite();
}
const restored = restoreDroppedPreUpdateChannels(prepared.snapshot, params.preUpdateConfig);
return {
configSnapshot: restored.snapshot,
configWriteOptions: prepared.writeOptions,
configChanged: restored.changed,
restoredAuthoredChannels: restored.authoredChannels,
};
}
function createUpdatedConfigSnapshot(
snapshot: Awaited<ReturnType<typeof readConfigFileSnapshot>>,
next: OpenClawConfig,
): Awaited<ReturnType<typeof readConfigFileSnapshot>> {
if (!snapshot.valid) {
return snapshot;
}
return {
...snapshot,
hash: undefined,
parsed: next,
sourceConfig: asResolvedSourceConfig(next),
resolved: asResolvedSourceConfig(next),
runtimeConfig: asRuntimeConfig(next),
config: asRuntimeConfig(next),
};
}
/** Read-only startup configuration, retaining the authored snapshot alongside any projection. */
export async function readUpdateChannelConfig(channelRequested: boolean) {
const configSnapshot = await readConfigFileSnapshot({
skipPluginValidation: true,
observe: false,
});
const legacyConfigPlan = channelRequested
? await planUpdateChannelLegacyConfig(configSnapshot)
: undefined;
const plannedConfig =
legacyConfigPlan?.config ?? (configSnapshot.valid ? configSnapshot.config : undefined);
return {
configSnapshot,
legacyConfigPlan,
storedChannel: normalizeUpdateChannel(plannedConfig?.update?.channel),
};
}
/** Preserve authored bytes during target admission; the projection grants no write authority. */
async function planUpdateChannelLegacyConfig(
snapshot: Awaited<ReturnType<typeof readConfigFileSnapshot>>,
): Promise<LegacyConfigUpdatePlan | undefined> {
if (snapshot.valid || snapshot.legacyIssues.length === 0) {
return undefined;
}
const { planLegacyConfigForUpdateChannel } =
await import("../../commands/doctor/legacy-config-repair.js");
const plan = planLegacyConfigForUpdateChannel(snapshot);
if (!plan || !snapshot.includedPaths?.length) {
return plan;
}
const current = await createConfigIO({
observe: false,
pluginValidation: "skip",
}).readConfigFileSnapshotForWrite();
const keys = [
"path",
"exists",
"raw",
"hash",
"includedPaths",
"includeProvenance",
"sourceConfig",
] as const;
if (keys.some((key) => !isDeepStrictEqual(snapshot[key], current.snapshot[key]))) {
throw new Error(
"Legacy configuration changed during update planning; retry against the current source.",
);
}
return planLegacyConfigForUpdateChannel(snapshot, current.writeOptions);
}
export async function maybeRepairLegacyConfigForUpdateChannel(params: {
plan?: LegacyConfigUpdatePlan;
configSnapshot: Awaited<ReturnType<typeof readConfigFileSnapshot>>;
configWriteOptions?: ConfigWriteOptions;
jsonMode: boolean;
}): Promise<Awaited<ReturnType<typeof readConfigFileSnapshot>>> {
if (
!params.plan &&
(params.configSnapshot.valid || params.configSnapshot.legacyIssues.length === 0)
) {
return params.configSnapshot;
}
const { repairLegacyConfigForUpdateChannel } =
await import("../../commands/doctor/legacy-config-repair.js");
const { snapshot, repaired } = await repairLegacyConfigForUpdateChannel(params);
if (!params.jsonMode && repaired) {
defaultRuntime.log(theme.muted("Migrated legacy config before changing update channel."));
}
return snapshot;
}
export async function writePostCoreSourceConfigFile(
filePath: string,
preUpdateConfig: PreUpdateConfigRestoreInput | undefined,
): Promise<void> {
if (!preUpdateConfig) {
return;
}
await fs.writeFile(filePath, `${JSON.stringify(preUpdateConfig)}\n`, "utf-8");
}
async function readPostCoreSourceConfigFile(
filePath: string | undefined,
options?: { configPath?: string },
): Promise<PreUpdateConfigRestoreInput | undefined> {
if (!filePath) {
return undefined;
}
try {
const parsed = parseConfigJson5(await fs.readFile(filePath, "utf-8"));
if (!parsed.ok || !isRecord(parsed.parsed)) {
return undefined;
}
return normalizePreUpdateConfigRestoreInput(parsed.parsed, options);
} catch {
return undefined;
}
}
function normalizePreUpdateConfigRestoreInput(
parsed: Record<string, unknown>,
options?: { configPath?: string },
): PreUpdateConfigRestoreInput | undefined {
const sourceConfig = parsed.sourceConfig;
const authoredConfig = parsed.authoredConfig;
if (isRecord(sourceConfig) && isRecord(authoredConfig)) {
return {
sourceConfig: sourceConfig as OpenClawConfig,
authoredConfig: authoredConfig as OpenClawConfig,
};
}
const authored = parsed as OpenClawConfig;
return {
sourceConfig: options?.configPath
? resolvePreUpdateSourceConfigFromAuthored(authored, options.configPath)
: authored,
authoredConfig: authored,
};
}
function resolvePreUpdateSourceConfigFromAuthored(
authoredConfig: OpenClawConfig,
configPath: string,
): OpenClawConfig {
try {
const withIncludes = resolveConfigIncludes(authoredConfig, configPath, undefined, {
allowedRoots: resolveIncludeRoots(process.env),
});
const resolved = resolveConfigEnvVars(withIncludes, process.env, {
onMissing: () => undefined,
});
return isRecord(resolved) ? (resolved as OpenClawConfig) : authoredConfig;
} catch {
return authoredConfig;
}
}
async function isFreshPreUpdateConfigSnapshot(params: {
currentConfigPath: string;
snapshotPath: string;
updateStartedAtMs?: number;
}): Promise<boolean> {
const snapshotStat = await fs.stat(params.snapshotPath).catch(() => null);
if (!snapshotStat) {
return false;
}
if (
params.updateStartedAtMs !== undefined &&
snapshotStat.mtimeMs + 1000 < params.updateStartedAtMs
) {
return false;
}
if (Date.now() - snapshotStat.mtimeMs > PRE_UPDATE_CONFIG_SNAPSHOT_MAX_AGE_MS) {
return false;
}
const currentStat = await fs.stat(params.currentConfigPath).catch(() => null);
return !currentStat || snapshotStat.mtimeMs <= currentStat.mtimeMs + 1000;
}
export async function readPostCorePreUpdateSourceConfig(params: {
sourceConfigPath: string | undefined;
currentSnapshot: Awaited<ReturnType<typeof readConfigFileSnapshot>>;
updateStartedAtMs?: number;
}): Promise<PreUpdateConfigRestoreInput | undefined> {
const fromChildEnv = await readPostCoreSourceConfigFile(params.sourceConfigPath);
if (fromChildEnv) {
return fromChildEnv;
}
if (params.updateStartedAtMs === undefined) {
return undefined;
}
const explicitPreUpdatePath = `${params.currentSnapshot.path}.pre-update`;
if (
await isFreshPreUpdateConfigSnapshot({
currentConfigPath: params.currentSnapshot.path,
snapshotPath: explicitPreUpdatePath,
updateStartedAtMs: params.updateStartedAtMs,
})
) {
const preUpdateConfig = await readPostCoreSourceConfigFile(explicitPreUpdatePath, {
configPath: params.currentSnapshot.path,
});
if (
preUpdateConfig &&
hasRestorablePreUpdateChannels(params.currentSnapshot, preUpdateConfig)
) {
return preUpdateConfig;
}
return undefined;
}
const backupPath = `${params.currentSnapshot.path}.bak`;
if (
await isFreshPreUpdateConfigSnapshot({
currentConfigPath: params.currentSnapshot.path,
snapshotPath: backupPath,
updateStartedAtMs: params.updateStartedAtMs,
})
) {
const preUpdateConfig = await readPostCoreSourceConfigFile(backupPath, {
configPath: params.currentSnapshot.path,
});
if (
preUpdateConfig &&
hasRestorablePreUpdateChannels(params.currentSnapshot, preUpdateConfig)
) {
return preUpdateConfig;
}
}
return undefined;
}
|