Summary
With a sidecar-native chunked_actor_sqlite root filesystem, a file created through vm.filesystem.writeFile() is not updated in the filesystem API view after /bin/sh overwrites it.
The shell sees the new content, while vm.filesystem.readFile() deterministically returns the old content. Disposing and reopening the VM with the same SQLite database also returns the old content, so the guest update is not persisted to the authoritative VFS.
Minimal reproduction
import { mkdtemp, rm } from "node:fs/promises";
import { tmpdir } from "node:os";
import { join } from "node:path";
import { AgentOs } from "@rivet-dev/agentos";
const dir = await mkdtemp(join(tmpdir(), "agentos-fs-repro-"));
const sqlitePath = join(dir, "workspace.sqlite");
const sidecar = await AgentOs.createSidecar({ placement: "process" });
const vm = await AgentOs.create({
sidecar: { kind: "explicit", handle: sidecar },
database: { type: "sqlite_file", path: sqlitePath },
rootFilesystem: {
type: "native",
plugin: {
id: "chunked_actor_sqlite",
config: { namespace: "root", uid: 1000, gid: 1000 },
},
},
permissions: {
fs: "allow",
network: "deny",
childProcess: "allow",
process: "allow",
env: "allow",
binding: "deny",
},
});
try {
await vm.filesystem.mkdir("/workspace", { recursive: true });
await vm.filesystem.writeFile("/workspace/shared.txt", "before");
const proc = await vm.process.spawn(
"/bin/sh",
["-c", "printf after > shared.txt; cat shared.txt"],
{ cwd: "/workspace", output: { retainEvents: true } },
);
await vm.process.wait(proc.pid);
const events = await vm.process.getOutput(proc.pid);
console.log(events); // shell output contains "after"
console.log(
Buffer.from(await vm.filesystem.readFile("/workspace/shared.txt")).toString(),
); // actual: "before", expected: "after"
} finally {
await vm.dispose();
await rm(dir, { recursive: true, force: true });
}
Equivalent minimal sequence:
filesystem.writeFile("/workspace/shared.txt", "before")
process.spawn("/bin/sh", ["-c", "printf after > shared.txt; cat shared.txt"])
filesystem.readFile("/workspace/shared.txt")
shell stdout: after
filesystem API: before
Reproduction matrix
| Sequence |
Result |
| API write -> API read |
Correct |
| Shell create -> API read |
Correct |
| Shell create -> Shell overwrite -> API read |
Correct |
| API write -> Shell overwrite -> API read |
Stale pre-overwrite content |
| API write -> Shell remove/recreate -> API read |
ENOENT / not found |
The failure remains when:
- the replacement has a different byte length;
- waiting 100 ms before the overwrite;
- waiting 100 ms and touching the file after the overwrite;
- disposing and reopening the VM against the same SQLite file.
If the initial file is also created through a guest process (cat > file via stdin), subsequent guest overwrites are visible through filesystem.readFile().
Expected behavior
Host filesystem APIs and guest processes should observe the same VFS. After the process exits successfully, filesystem.readFile() should return after, and reopening the persisted VM should retain after.
This matches the filesystem architecture documentation:
Host-side APIs (agent.writeFile, agent.readFile) enter the same VFS from the trusted side.
Suspected boundary
The behavior appears specific to native sidecar shadow-root reconciliation:
- API
WriteFile updates the kernel VFS and mirrors it into the process shadow root.
/bin/sh updates the shadow-root file successfully.
- The process-exit shadow -> kernel reconciliation does not update the API-created inode in the authoritative VFS.
Likely relevant paths:
crates/native-sidecar/src/filesystem.rs
mirror_guest_filesystem_shadow_after_call
crates/native-sidecar/src/execution/launch.rs
sync_process_host_writes_to_kernel
sync_vm_shadow_root_to_kernel
sync_host_directory_tree_to_kernel_inner
crates/native-sidecar/src/plugins/chunked_actor_sqlite.rs
The existing vfs-consistency.nightly.test.ts exercises the runtime test kernel, but does not appear to cover the combination of a native process shadow and chunked_actor_sqlite after an API-created file is overwritten.
Environment
@rivet-dev/agentos: reproduced on 0.2.16-rc.1 and 0.2.16-rc.2
- Node.js:
v22.22.2
- OS: Linux x86_64, kernel
6.6.98
- glibc:
2.38
- Root plugin:
chunked_actor_sqlite
- Reproduction rate: deterministic across repeated runs
Summary
With a sidecar-native
chunked_actor_sqliteroot filesystem, a file created throughvm.filesystem.writeFile()is not updated in the filesystem API view after/bin/shoverwrites it.The shell sees the new content, while
vm.filesystem.readFile()deterministically returns the old content. Disposing and reopening the VM with the same SQLite database also returns the old content, so the guest update is not persisted to the authoritative VFS.Minimal reproduction
Equivalent minimal sequence:
Reproduction matrix
ENOENT/ not foundThe failure remains when:
If the initial file is also created through a guest process (
cat > filevia stdin), subsequent guest overwrites are visible throughfilesystem.readFile().Expected behavior
Host filesystem APIs and guest processes should observe the same VFS. After the process exits successfully,
filesystem.readFile()should returnafter, and reopening the persisted VM should retainafter.This matches the filesystem architecture documentation:
Suspected boundary
The behavior appears specific to native sidecar shadow-root reconciliation:
WriteFileupdates the kernel VFS and mirrors it into the process shadow root./bin/shupdates the shadow-root file successfully.Likely relevant paths:
crates/native-sidecar/src/filesystem.rsmirror_guest_filesystem_shadow_after_callcrates/native-sidecar/src/execution/launch.rssync_process_host_writes_to_kernelsync_vm_shadow_root_to_kernelsync_host_directory_tree_to_kernel_innercrates/native-sidecar/src/plugins/chunked_actor_sqlite.rsThe existing
vfs-consistency.nightly.test.tsexercises the runtime test kernel, but does not appear to cover the combination of a native process shadow andchunked_actor_sqliteafter an API-created file is overwritten.Environment
@rivet-dev/agentos: reproduced on0.2.16-rc.1and0.2.16-rc.2v22.22.26.6.982.38chunked_actor_sqlite