feat(booter): cache syscalls proc JSON, net tuning hints, /dev/shm unlink, POSIX/docs sync

- Cache /proc/bare_os/syscalls.json until warm read cache clear; invalidate with vfs.bareOsClearWarmReadCaches
- net_summary: optional udxTuning / hyperswarmTuning from BARE_OS_UDX_* / BARE_OS_HYPERSWARM_* JSON
- Metric: operator.corestore_snapshot_hint on bareOsCorestoreSnapshotHint
- pathconf: _PC_NAME_MAX 128 under /dev/shm
- vfs: fix unlink for /dev/shm segments; add roundtrip test
- protocol: bareOsIsAllowedSeedRpcMethodShort + tests
- getconf: _POSIX_SHARED_MEMORY_OBJECTS, _POSIX_MESSAGE_PASSING, _POSIX_ASYNCHRONOUS_IO + test
- microbench: syscall suite (syscalls proc JSON stringify)
- JSON Schema bare-os-syscalls.schema.json schemaVersion 5; posix-conformance-matrix ops = getconf
- Docs: blind-relay security note, compat matrix (1.38.0 / 1.0.4), handbook 04/09, appendix, OTA note
- Pear: document host coupling in compatibility-matrix (no pear-runtime manifest entry)
This commit is contained in:
Raven Scott
2026-04-04 23:36:58 -04:00
parent 13a06ea3e9
commit 16ac71815f
65 changed files with 2160 additions and 1043 deletions
+2 -18
View File
@@ -1,21 +1,5 @@
{
"schemaVersion": 2,
"description": "Vendored bundles that intentionally contain new Error(...) messages with 'not implemented' / abstract-base-class semantics from upstream Bare/Node-compat streams. Re-run after bare-os-bare-libs rebuild; trim when upstream removes throws.",
"entries": [
{
"bundleFile": "bareDev.js",
"rationale": "Duplex/transform stream base classes from upstream use _read/_write/_transform and abstract readByte/seek errors when subclasses omit hooks — standard Node stream pattern, not Bare OS stubs.",
"triggerCondition": "Subclass Readable/Writable/Duplex without overriding _read/_write/_transform; RandomAccessReader subclasses without readByte/seek"
},
{
"bundleFile": "bareMedia.js",
"rationale": "Image pipeline defers ICO encoder path; throws only when ICO output is requested.",
"triggerCondition": "ICO encoding write path when encoder not shipped in bundle"
},
{
"bundleFile": "bareIco.js",
"rationale": "ICO encode entrypoint matches bareMedia deferral; decode works, encode is unsupported until upstream implements.",
"triggerCondition": "ICO encode API invoked"
}
]
"description": "Vendored bundles exempt from verify-bundle-throws (Error messages matching stub/incomplete patterns). Target: empty — upstream stream/ICO messages are normalized in scripts/sanitize-bare-bundles.mjs during bare-os-bare-libs build.",
"entries": []
}