| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118 |
- /**
- * Zero-dependency atomic file replacement and writer coordination.
- * `writeFileAtomic` writes a random-suffix sibling with exclusive create and
- * the caller's permission bits, then renames it over the target, so readers
- * observe either the old or the new complete content and a replaced file ends
- * up with exactly the stated mode. `withFileLock` serializes cross-process
- * writers of one file through a `wx`-created `<file>.lock` sibling, so a
- * read-modify-write cycle can never resurrect a state another writer just
- * replaced; readers stay lock-free because the rename commit is atomic.
- * @module @deepseek-ai/dsh-atomic-write
- */
- import { randomBytes } from 'node:crypto'
- import { mkdir, rename, rm, writeFile } from 'node:fs/promises'
- import { dirname } from 'node:path'
- /**
- * Filesystem options for {@link writeFileAtomic}; `mode` is required so the
- * permission decision stays visible at every call site.
- */
- export interface WriteFileAtomicOptions {
- /**
- * Permission bits stamped on the fresh temp inode and carried through the
- * rename (subject to the process umask, like every fresh inode).
- */
- mode: number
- /**
- * Permission bits for parent directories this call creates (subject to the
- * umask; existing directories keep their mode). Omission uses the mkdir
- * default — pass `0o700` when the tree holds user-private data.
- */
- dirMode?: number
- }
- /**
- * Replace `filename` with `content` in one atomic step, creating parent
- * directories. The content is first written to a random-suffix sibling opened
- * with exclusive create (`wx`): the open refuses to follow a symlink planted
- * at the temp path, and the fresh inode carries `options.mode` through the
- * rename, so replacing a wider-permission file narrows it without a chmod
- * race. The rename also replaces a symlinked target itself instead of writing
- * through to its referent, and the same-directory sibling keeps the rename on
- * one filesystem. On any failure the temp file is removed and the failure
- * rethrown. Crash durability (fsync) is out of scope.
- * @param filename - final path receiving the content.
- * @param content - complete next file content.
- * @param options - permission bits for the replacement inode.
- */
- export async function writeFileAtomic(filename: string, content: string, options: WriteFileAtomicOptions): Promise<void> {
- await mkdir(dirname(filename), {
- recursive: true,
- ...options.dirMode === undefined ? {} : { mode: options.dirMode },
- })
- // TODO(settings-atomic-durability): Use a replacement that fsyncs the file
- // and parent directory and preserves owner-only permissions on Windows.
- const temp = `${filename}.${randomBytes(6).toString('hex')}.tmp`
- try {
- await writeFile(temp, content, { mode: options.mode, flag: 'wx' })
- await rename(temp, filename)
- } catch (error) {
- await rm(temp, { force: true })
- throw error
- }
- }
- /** Whether an exclusive create failed because the path already exists. */
- function isEEXIST(error: unknown): boolean {
- return (error as NodeJS.ErrnoException | null)?.code === 'EEXIST'
- }
- /**
- * Writer-lock protocol constants. These are robustness invariants of the
- * cross-process write protocol, not deployment tunables: contention normally
- * resolves within the retry deadline, while expiry fails the contender without
- * guessing whether the existing lock still has an owner.
- */
- const LOCK_RETRY_INITIAL_MS = 20
- const LOCK_RETRY_MAX_MS = 200
- const LOCK_TIMEOUT_MS = 2_000
- /**
- * Hold the cross-process writer lock for `filename` around one operation. The
- * lock is a `wx`-created sibling (`<filename>.lock`); paired with the
- * rename-based commit of {@link writeFileAtomic}, readers stay lock-free and
- * only writers contend. Contention backs off exponentially and fails with a
- * timed-out error after the deadline. The contender never removes an existing
- * lock because file age cannot prove that its owner stopped; orphan recovery
- * is an operator action. The parent directory must exist.
- * @param filename - the file whose writers this lock serializes.
- * @param operation - the read-render-commit cycle to run while holding the lock.
- * @returns the operation's result; the lock releases on both outcomes.
- */
- export async function withFileLock<T>(
- filename: string,
- operation: () => Promise<T>,
- ): Promise<T> {
- const lockPath = `${filename}.lock`
- const deadline = Date.now() + LOCK_TIMEOUT_MS
- let delay = LOCK_RETRY_INITIAL_MS
- for (;;) {
- try {
- await writeFile(lockPath, `${process.pid}\n`, { mode: 0o600, flag: 'wx' })
- break
- } catch (error) {
- if (!isEEXIST(error)) throw error
- }
- if (Date.now() >= deadline) {
- throw new Error(`atomic-write: timed out waiting for the writer lock at ${lockPath}`)
- }
- await new Promise(resolve => setTimeout(resolve, delay))
- delay = Math.min(delay * 2, LOCK_RETRY_MAX_MS)
- }
- try {
- return await operation()
- } finally {
- await rm(lockPath, { force: true })
- }
- }
|