V3.1 → V3.12 consolidated and tagged for the first GA release. Wire format unchanged from 0.4.x — 4.0 peers interoperate with 0.4.x peers byte-for-byte. The version bump is semantic: audit-cycle complete, opt-in surface fully exposed, threat model refreshed for every new surface. Highlights: - All 24 @shade/* packages bumped to 4.0.0 in lockstep. - CHANGELOG 4.0.0 section is the canonical manifest of what landed. - THREAT-MODEL extended (§10 fingerprint gates, §11 WebRTC P2P, §12 Web-Worker boundary) + residual-risks table refreshed. - OpenAPI now covers all 27 routes: prekey, transfer, KT, inbox, bridge, observer, /metrics, /healthz, /ready. - MIGRATION 0.3.x → 4.0 documented + smoke-tested against shade migrate-storage on a real SQLite DB. - docs/audit/REVIEW-BUNDLE.md + SCOPE.md ready for external reviewer. - scripts/soak.ts harness for the GA-stable 2-week soak window. - All V*.md plans archived under docs/archive/ with Status: Done. - Voice/Video carved out into V5.0; 4.0 audit focuses on the frozen non-realtime stack. Tests: TS 1000/1000 + Kotlin 11/11 cross-platform vectors green. Docker: gt.zyon.no/stian/shade-prekey:4.0.0 builds and reports version 4.0.0 on /health. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
8.5 KiB
@shade/files — E2EE filesystem RPC
@shade/files exposes a typed, end-to-end-encrypted RPC surface for
filesystem-style operations between two Shade peers. Both sides ride a
single Double Ratchet session for control envelopes; large-file content
(> 256 KiB) flows through @shade/transfer lanes, correlated back to
the RPC by an opaque userMetadata.shadeFilesWriteId /
shadeFilesReadStreamId.
The package is a primitive, not a UI: it ships hooks and clients, not
file managers. Consumers (e.g. Dispatch, Mail, Drive-style apps) keep
their own UI and plug @shade/files underneath.
Quick start
Server (Bob exposes a filesystem)
import { createShade } from '@shade/sdk';
const bob = await createShade({ prekeyServer, address: 'bob' });
bob.configureTransfers({ resolveBaseUrl: ... });
Bun.serve({ port: 8080, fetch: (await bob.transferRoute()).fetch });
const stop = await bob.files.serve({
list: async (ctx) => ({ entries: await readdirAt(ctx.path), hasMore: false }),
stat: async (ctx) => statAt(ctx.path),
mkdir: async (ctx) => mkdirAt(ctx.path, ctx.args.recursive),
delete: async (ctx) => deleteAt(ctx.path, ctx.args.recursive),
move: async (ctx) => moveAt(ctx.args.src, ctx.args.dst, ctx.args.overwrite),
read: async (ctx) => readAt(ctx.path), // returns inline | streams
write: async (ctx) => writeAt(ctx.args), // receives inline | streams
getThumbnail: async (ctx) => thumbnailAt(ctx.path, ctx.args.size, ctx.args.format),
});
// Later: stop the handler.
await stop();
Client (Alice consumes Bob's filesystem)
const alice = await createShade({ prekeyServer, address: 'alice' });
alice.configureTransfers({ resolveBaseUrl: ... });
Bun.serve({ port: 8081, fetch: (await alice.transferRoute()).fetch });
const fs = await alice.files.client('bob');
const page = await fs.list('/photos');
await fs.write('/photos/cover.png', new Uint8Array(...)); // auto inline/streams
const result = await fs.read('/photos/cover.png');
if (result.kind === 'inline') console.log(result.bytes.byteLength);
else for await (const _chunk of /* result.stream */) { /* ... */ }
Op surface
| Op | Args | Result |
|---|---|---|
list |
path, cursor?, pageSize?, filter? |
{ entries, hasMore, nextCursor? } |
stat |
path |
FileEntry |
mkdir |
path, recursive? |
{ entry: FileEntry } |
delete |
path, recursive? |
{ deletedCount } |
move |
src, dst, overwrite? |
{ entry: FileEntry } |
read |
path, range?, preferInline? |
inline { bytes, sha256, size } or streams { stream, size, sha256 } |
write |
path, Uint8Array | Blob | Stream |
{ entry: FileEntry } |
getThumbnail |
path, size: 64|128|256|512, format? |
{ bytes, format, width, height, sha256 } |
custom<K> |
typed via CustomOpsMap[K] |
typed via CustomOpsMap[K] |
MUTATION_OPS = { mkdir, delete, move, write, custom } — these auto-generate
an idempotency key per logical call so transparent retries under the SDK
don't produce duplicates.
Inline vs streams
The threshold is INLINE_THRESHOLD = 256 * 1024 bytes (plaintext). The
client's decideInline() runs at write time:
Uint8Array/Blobwith known size → direct comparison.- Bare
ReadableStream→ peek the first chunks; promote to streams as soon as the buffered prefix exceeds the threshold.
Streams paths kick shade.upload(...) with userMetadata.shadeFilesWriteId
in parallel with the RPC envelope. The server's streams-bridge accepts the
inbound transfer immediately into a TransformStream and parks the
readable side until the matching write RPC arrives.
Custom ops
Augment CustomOpsMap once globally for type-safe consumer-defined ops:
declare module '@shade/files' {
interface CustomOpsMap {
'app.deploy': CustomOpDef<{ jarPath: string }, { deploymentId: string }>;
}
}
// Server registers a Zod-backed handler:
await shade.files.serve({
custom: {
'app.deploy': {
args: z.object({ jarPath: z.string() }),
response: z.object({ deploymentId: z.string() }),
handler: async (args, ctx) => ({ deploymentId: deploy(args.jarPath) }),
},
},
});
// Client gets typed I/O:
const result = await fs.custom('app.deploy', { jarPath: '/mods/foo.jar' });
// ^? { deploymentId: string }
Production hooks
All hooks are callbacks the consumer plugs in — @shade/files enforces
the mechanism; the app owns the policy.
await shade.files.serve({
pathPolicy: { rootScope: '/srv/shade-root', forbidTraversal: true },
rateLimits: {
maxOpsPerMinutePerSender: 600,
maxBytesPerHourPerSender: 10 * 1024 ** 3,
opCost: { read: 1, write: 5, delete: 3, default: 1 },
},
idempotency: { ttlMs: 60 * 60 * 1000, maxEntriesPerSender: 10_000 },
requireFingerprintVerifiedFor: (ctx) =>
['delete', 'write', 'mkdir'].includes(String(ctx.op)) ? 'required' : 'optional',
isFingerprintVerified: (sender) => verifiedSet.has(sender),
verifySender: async (sender, canonical, sig) => {
return ed25519.verify(base64ToBytes(sig), canonical, getPubKey(sender));
},
onMetric: (name, value, tags) => prometheus.observe(name, value, tags),
onError: (err, ctx) => logger.error({ op: ctx.op, sender: ctx.sender }, err),
});
React
import { ShadeFilesProvider, useFileList } from '@shade/files/react';
function FileBrowser({ shade, peer }: { shade: Shade; peer: string }) {
return (
<ShadeFilesProvider shade={shade}>
<Listing peer={peer} path="/" />
</ShadeFilesProvider>
);
}
function Listing({ peer, path }) {
const { entries, isLoading, hasMore, loadMore, refresh } = useFileList(peer, path);
if (isLoading) return <Spinner />;
return (
<ul>
{entries.map((e) => <li key={e.name}>{e.name} ({e.kind})</li>)}
{hasMore && <button onClick={loadMore}>More</button>}
</ul>
);
}
useFileTransfer exposes a generic state machine for BulkTransferHandles
returned by uploadDirectory() / downloadDirectory():
const { start, abort, state, filesDone, filesTotal, bytesDone } = useFileUpload();
const handle = uploadDirectory(fs, localDir, '/uploaded');
useEffect(() => { start(handle); return () => void abort(); }, []);
Path safety
The dispatcher applies validatePath() before invoking the user handler:
- Length check on raw input.
- Forbidden-bytes check (NUL/CR/LF/DEL/backslash).
- Percent-decode (defends against
%2e%2esmuggling). - POSIX normalization.
..traversal rejection.- Root-scope boundary check.
- Consumer-supplied
extrapredicate.
The user handler receives the normalized path; using args.path raw is a
TOCTOU bug.
Wire compatibility
@shade/files 0.3.0 requires @shade/proto 0.3.0+. The proto layer's wire
VERSION was bumped from 0x01 to 0x02 to lift the 64 KiB length-prefix
ceiling that previously capped ratchet payloads. Sessions are
incompatible across the bump; both peers must run 0.3.0+.
Rich file metadata + previews (V3.9)
stream-init carries optional E2EE fileMetadata (filename, MIME,
thumbnail-stream pointer). @shade/files consumers see this on the
incoming-transfer side and can render previews via <TransferRow showThumbnail />. The thumbnail itself rides as a separate AEAD
stream — server never sees preview pixels in plaintext.
See streams.md § Rich file metadata + previews
for the wire format, format-hardening rules, and renderer trust
model. The pattern integrates seamlessly with @shade/files's own
write/read RPCs — pass fileMetadata in the underlying
shade.upload and the same ShadeThumbnailCache powers previews
across all transfer surfaces.
Related modules
@shade/streams— chunk encryption, lane key derivation. Indirect dep.@shade/transfer— multi-lane transport with HTTP / WS fallback.@shade/transport-webrtc(V3.11, optional) — direct P2P chunk delivery viaRTCDataChannel; largeread/writepayloads automatically prefer WebRTC when both peers have calledshade.configureWebRTC().@shade/sdk—Shade.filesgetter;BackgroundHooks.onPruneFilesfor retention.