Host — the two remaining app-wide stall mechanisms plus main-thread pins found by mining all nine hang reports: - LinuxProcess.startStdinRelay wrote to a BLOCKING stdin fd on a width-limited cooperative-pool thread, non-cancellably; wedged guests starved the whole concurrency runtime (decode loops, watchdogs — an app-wide freeze surviving the reconcile fix). Writes now offload to a per-process GCD queue (vendored patch #18). - TranscriptWriter (actor) did blocking write/fsync on the cooperative pool; it now runs on its own DispatchSerialQueue executor. - UserMessageBubble's truncation probe typeset entire pasted-log-sized messages through CoreText per layout pass (100% main-thread pins in the 07-21 hang reports); certainly-long messages now skip the probe and render a prefix while collapsed. - toolGroupSignature JSON-encoded every tool input in the transcript up to 12.5x/s on the MainActor; now a structural hash. The summary pass is trailing-throttled to 0.4s, and flatItems joins streaming chunks once instead of re-copying the prefix per delta. - StatusFeedFetcher.parseDate allocated three formatters per call (86% of a pool thread in the 07-26 report); now shared statics. Guest (vminitd) — teardown data loss and epoll registration hazards: - IOPair no longer closes on a bare EPOLLHUP with a backpressure flush in flight (dropped the CLI's final output line); EPOLLOUT finishes the flush, then EOF closes loss-free. ManagedProcess.setExit closes only stdin, letting stdout/stderr self-close on EOF, with an 8s grace pass (patch #16). - Epoll events carry a registration generation; the supervisor ignores stale events for recycled fd numbers. registerFd refuses EEXIST instead of clobbering the existing handler. TerminalIO's stdin relay writes a dup of the terminal fd so its backpressure registration can't collide with the stdout relay's (patch #17). - VsockProxy flushes bytes parked toward the surviving peer on hangup, closes the dialing socket on a failed backend connect, and StandardIO/TerminalIO clean up partially-created pairs on setup failure (patch #16). Full suite: 1451+292+74+20 tests, two failures — both pre-existing environmental (MacVM base image absent on this machine; a load-flaky liveness test that passes 3/3 in isolation). Co-Authored-By: Claude Fable 5 <[email protected]>
27 KiB
Vendored containerization — Nucleic patches
Overview of why these patches exist (the session-isolation model) + the build/validate workflow:
docs/CONTAINER_ISOLATION.md. This file is the per-patch detail.
This is a vendored copy of apple/containerization
at upstream commit 6b7b42ca3efeee8c706070e4355e6a807c5336ae, referenced by the root Package.swift
via .package(path: "third_party/containerization") instead of the github URL.
It is vendored (not pulled) because we carry a local patch upstream doesn't have. Keeping it in-tree means the patch can't be lost to a dependency re-resolve.
What's changed vs. upstream
-
Sources/Containerization/LinuxContainer.swift— forward VM extensions.LinuxContainer.Configurationgains avmExtensions: [any Sendable]field, andLinuxContainerassigns it intoVMConfiguration.extensionswhen it builds the VM config. Upstream already supportsVMConfiguration.extensions+ theVZInstanceExtensionhook (configureVZ/didCreate), butLinuxContainer— the only entry point we use — never forwarded it, so there was no way to attach a device (e.g. a virtio memory balloon) to a container's VM. Search for the marker comment[Nucleic vendored patch]to find both edit sites.Nucleic uses this to attach a
VZVirtioTraditionalMemoryBalloonDeviceConfigurationand drive its target at runtime for automatic VM memory reclamation — seeMemoryBalloon.swift/ContainerEnginein NucleicCore. -
Sources/Containerization/LinuxProcess.swift— process-group kill.LinuxProcessgainskillProcessGroup(_:), which signals the negative pid (-pid) so the guest'skill(2)targets the exec'd process's whole process group, not just the leader. Every exec issetsid()'d byvmexec, so the process is its own group leader (pgid == pid) and a group signal reaches the children it forked. Upstream only exposes the leader-onlykill(_:), which let a forked child survive a Stop in a long-lived shared container. Marked with[Nucleic vendored patch]; used byContainerizedProcessHandle.sendSignalin NucleicCore. -
Sources/Containerization/LinuxProcess.swift— stdio-connection diagnostics (log-only).setupIOlogs (os.Logger, subsystemcom.nucleic, categorycontainer-io) when a configured stdio stream's guest side never connects — which leaves its hostFileHandlenil, so the relay / readability handler is never wired and the agent's stdin is never delivered (it hangs) or its stdout is never read (the "no output, just a spinner" symptom in Nucleic Control containers). Behavior is unchanged; it only surfaces the failing stream. Marked[Nucleic vendored patch](theimport os, thenucleicIOLogstatic, and the per-stream check insetupIO). All three are wrapped in#if canImport(os)— non-Xcode toolchains (e.g. a swiftly Swift used to cross-build the host framework) resolve Foundation/Virtualization but not theosoverlay, so the diagnostic degrades to a no-op there instead of failing the build; Xcode (the localmake vminit-imagepath) builds keep it. -
Trimmed for footprint (no behavior change).
Tests/,docs/,examples/, andimages/were dropped, and the corresponding.testTarget(...)entries removed fromPackage.swift. The library/executable targets we build are untouched. -
Sources/Containerization/LinuxProcess.swift— non-blocking stdio relay. Upstream'ssetupIOrelays guest stdout/stderr withFileHandle.availableData, a blocking read, from inside areadabilityHandler. Those handlers run on Foundation's shared readability queue, so if one exec's guest stdout wedged mid-stream that blocking read parked the shared thread and head-of-line-blocked every other exec's stdout/stderr relay across all containers — one stuck session froze the others. The patch marks each connected fdO_NONBLOCKand drains it via a newnucleicDrainNonBlocking(returns bytes + EOF, never blocks; EAGAIN just waits for the next readable event). A wedged stream is now contained to its own exec. Marked[Nucleic vendored patch](the two static helpersnucleicSetNonBlocking/nucleicDrainNonBlockingand the two rewrittenreadabilityHandlerblocks). Requires host-side POSIXread/fcntl/errno. -
Sources/Containerization/LinuxProcess.swift— atomic stdio-or-abort start. Instart(), aftersetupIOreturns, if a configured stdio stream never connected from the guest (itsFileHandleis nil — patch #3's logged failure), the patch tears the just-created exec back down (agent.deleteProcess) and throws instead of callingstartProcess. Upstream proceeds and runs a process with a dead stream (stdin never delivered → hangs; stdout never read → the "no output, just a spinner" 60s stall in Nucleic Control). Now that permanent silent stall surfaces as a clean, retryable start error. Marked[Nucleic vendored patch](the guard block beforestartProcess). -
Sources/Containerization/Vminitd.swift— bounded teardown RPC.deleteProcessnow sends a 30sCallOptions.timeout(upstream sends none, so it can block forever on a wedged agent channel). Nucleic callsLinuxProcess.delete()after every turn to reclaim the per-exec vsock/gRPC connectionexec()dials; an unboundeddeleteProcesswould let that reclaim hang and the connection leak. On the thrown deadline,performDeletionstill closes the agent connection. Marked[Nucleic vendored patch](thecallOptsblock indeleteProcess). NOTE: this pairs with a Nucleic-side change inContainerizedProcessHandle(calldelete()after the exec exits / on force-close) — without that caller, upstream never deletes execs at all and the shared control container leaks a connection +runConnections()task per turn. -
Sources/ContainerizationOS/Socket/Socket.swift—acceptStreamsurvives transient accept errors. Upstream cancelled the acceptDispatchSourceon ANYaccept(2)failure, permanently ending accepting while the socket stayed bound and listening — a silent black hole: every later clientconnect(2)SUCCEEDED into the kernel backlog and hung forever unanswered. When the socket is the relayed control plane of a shared container, that is the "agent produced no output within 60s / stdio transport stalled" all-sessions wedge, fixable only by recreating the VM (an app restart). Transient errors —ECONNABORTED/ECONNRESET(a queued connection dying before accept, routine under connection churn),EMFILE/ENFILE/ENOBUFS/ENOMEM(resource pressure),EINTR/EAGAIN— now skip that one accept and keep listening (newisTransientAcceptError). This is SHARED code: the fix reaches the host by a normal build and the guest via the initfs rebuild. Marked[Nucleic vendored patch]. -
Sources/Containerization/UnixSocketRelay.swift— relay loops contain per-connection failures. Both accept loops (setupHostVsockListener— the host half of a container's relayed control socket — andsetupHostVsockDial) used to let ONE thrown per-connection dial/connect (host server rebinding, backlog momentarily full →ECONNREFUSED, fd pressure) propagate out of the loop, whose teardown then removed the vsock listener — permanently severing every session in the container from the host control plane. Each connection is now handled on its own task with its error logged and contained (mirroring the guestVsockProxy), and the pre-relay failure paths close both ends so a failed connection fails FAST for the peer and leaks no fds. Marked[Nucleic vendored patch]. -
Sources/ContainerizationOS/Keychain/KeychainQuery.swift— prompt-free registry-credential reads. Upstream'sget/list/existscallSecItemCopyMatchingwith the legacy login Keychain's interactive authorization panel enabled, so any process that isn't on a registry internet-password item's ACL raises the macOS "'cctl' wants to use your confidential information stored in 'ghcr.io' in your keychain" panel when it reads that item — e.g. acctlbinary re-signed ad-hoc by a freshmake vminit-imagereading a GHCR token an earlier build stored, or any tool linkingKeychainHelper.lookupduring an image pull/push/list. Nucleic's rule is that no automatic credential lookup may ever raise a Keychain panel. This patch wraps the threeSecItemCopyMatchingreads inwithoutInteractiveUI(SecKeychainSetUserInteractionAllowed(false)— the only switch that governs the legacy ACL/partition-list dialog; the data-protectionkSecUseAuthenticationUI*flags do NOT), so an already-trusted item reads silently while anything else fails witherrSecInteractionNotAllowed— whichisQuerySuccessfulnow treats as "not found" so the caller falls back to anonymous /REGISTRY_HOST/USERNAME/TOKENenv auth.save(thecctl loginwrite path) gains a delete-and-retry onerrSecDuplicateItem, since the now-silentexistscan under-report an unreadable pre-existing item. MirrorsKeychainOwnedAccess.withoutLegacyKeychainUIin NucleicCore. Host-side (shipped by a normalswift build). The threeSecKeychain*symbols are formally deprecated but are the only API covering the legacy ACL panel; they're bound directly via@_silgen_name(nucleic_SecKeychain*, top of file) so the required calls compile without deprecation warnings. Marked[Nucleic vendored patch]. -
Sources/Containerization/Vminitd.swift— configure the gRPC pipeline before the channel goes active.Vminitd.initused the now-deprecatedHTTP2ClientTransport.WrappedChannel.wrapping( channel:config:serviceConfig:), which wraps an already-connected channel best-effort and may drop early server frames such as SETTINGS. Migrated towrapping(config:serviceConfig:makeChannel:), which invokes the transport'sconfigureinside the bootstrap's channel initializer — before the vsock channel becomes active.initis nowasync throws(the new overload is async); its callers inVZVirtualMachineInstance(start/dialAgent, both already async) and the integration test nowtry await. Marked[Nucleic vendored patch].
GUEST-side patches (require rebuilding the initfs — see below)
Patches #1–#7 are host-side (the Containerization library), shipped by a normal swift build.
Patches #8+ live in vminitd/ (the guest agent), which rides in the initfs OCI image. They are INERT
until that image is rebuilt from this source and published, and ContainerEngine.vminitReference
points at it. Build it with make vminit-image (root Makefile) — it builds cctl + the guest
vminitd/vmexec from this vendored tree and packages ghcr.io/abkslm/vminit:<tag> into the local cctl
store; make vminit-image-push publishes it (authenticate once with make vminit-image-login, which
stores a GHCR token in the macOS Keychain — or set REGISTRY_HOST/USERNAME/TOKEN), and
vminitReference is pinned to that custom image. First time on a machine, run make vminit-image-prep once (installs
the swiftly toolchain + musl SDK the guest cross-build needs). Bump the -nucleicN tag suffix and
rebuild whenever a guest patch changes. Built locally, not in CI: the host framework needs the macOS
26+ Virtualization SDK that GitHub-hosted runners lack.
-
vminitd/Sources/VminitdCore/ManagedProcess.swift— offload the blocking start off the event loop.ManagedProcess.start()did synchronous, potentially slow pipe reads (waiting forvmexecto return the pid, then for the error pipe to close) while holdingstate's Mutex, ON the calling task — which is the gRPC handler's event-loop thread. A slow start therefore parked the loop and head-of-line-blocked sibling execs' control RPCs sharing it. The patch splits the body into a synchronousstartBlocking()and an asyncstart()that runs it onDispatchQueue.globalvia a checked continuation, keeping the loop responsive. Safe because the body has noawaitandManagedProcessisSendable. Marked[Nucleic vendored patch]. -
Per-exec cgroups (OOM/CPU/pids isolation). Upstream puts the container init AND every exec in ONE cgroup (
/container/<id>), so one session's runaway RSS trips the in-VM OOM-killer against a random sibling, and a fork bomb / CPU hog hits the whole box. This patch makes/container/<id>an intermediary: the resource ceiling stays on it,ManagedContainer.initmoves the init into its own leaf (/container/<id>/init) which enablescgroup.subtree_controlup the chain, andManagedProcess.startplaces each exec in its OWN child (/container/<id>/<execID>) withmemory.oom.group=1(a runaway session's OOM kills only its tree), a faircpu.weight, and apids.maxfork-bomb backstop. NewCgroup2Managerhelpers:setOomGroup/setCpuWeight/setPidsMax/remove. Best-effort with a graceful fallback: if any step of the per-exec setup fails it wipes the partial state and reverts to the flat layout, andManagedProcessfalls back to the container cgroup per exec — so a cgroup hiccup degrades to today's behavior, never a failed start.ManagedContainer.execCgroupParent == nilmarks flat mode.Beyond scoped-OOM, a hard host-configured per-exec
memory.maxis also wired — WITHOUT a protobuf change, because the exec already ships the full OCISpecand the guest just ignoredlinux.resources. Host:LinuxProcessConfiguration.memoryLimitInBytes→LinuxContainer.execstamps it ontospec.linux.resources.memory.limit. Guest:Server+GRPC.createProcessreads that back and passes it tocreateExec/ManagedProcess, which setsmemory.max(newCgroup2Manager.setMemoryMax) on the exec's cgroup — so a session can't consume the whole box before its own OOM. Driven by Nucleic'sContainerServiceSettings.controlPerSessionMemoryGiB(default 0 = off; applied only to the shared control container, viaContainerManager.exec), so the default stays scoped-OOM-only. Marked[Nucleic vendored patch]acrossCgroup2Manager.swift,ManagedContainer.swift,ManagedProcess.swift,Server+GRPC.swift(guest) andLinuxProcessConfiguration.swift,LinuxContainer.swift(host). COMPILE-VERIFIED (host + musl cross-build); NOT yet runtime-validated — a wrong cgroup-v2 hierarchy fails at runtime, so boot a container with the new image and confirm sessions start,/sys/fs/cgroup/container/<id>/<execID>exists per session, and a hog is contained, before pointing a shipping build at it.vmexec/RunCommandis unchanged: it still applieslinux.resourcesatlinux.cgroupsPath, which the patch repoints (init leaf) and clears accordingly. -
vminitd/Sources/VminitdCore/VsockProxy.swift— leak-proof, crash-proof relay connections; no black-hole listener. Four fixes to the guest half of the relayed control socket (the path every session's MCP/approval traffic crosses in a shared container):
- fd leak (the root of the recurring all-sessions stall):
cleanupran its two epoll unregisters and twoclose(2)s in onedo/catch, so a thrown unregister SKIPPED the closes — leaking both connection fds. Control-plane traffic is connection-churny by design (an SSEtools/callcloses its connection every gated call; every intercepted git/gh/command event is a short-lived connection), so the leaks accumulated until vminitd hitEMFILE, its accept path began failing, and — before patch #10 — the accept stream died with the guest socket still bound: every session in the container then stalled ("produced no output within 60s") until the VM was recreated. Each cleanup step now runs independently. - double-resume crash: both fds' epoll handlers can reach the cleanup condition; a second
entry would resume the
CheckedContinuationtwice — a fatal trap in the VM's PID-1 agent.cleanupis now once-guarded. try!registrations: anepoll_ctlfailure crashed vminitd outright; registration failures now fail only that connection, releasing whatever was already set up.- no black-hole listener: if the accept loop ever ends unexpectedly, the proxy now closes
its listener (new
listenerLoopEnded), so peers get fail-fast refusals instead of connecting into a never-accepted backlog. A failed pre-relay connection is also closed explicitly. Marked[Nucleic vendored patch].
- Non-blocking, non-spinning guest I/O plane (
IOPair.swift,OSFile+Splice.swift,VsockProxy.swift) — the root cause of the "control plane unresponsive / all sessions stall" wedge. Every exec's stdio relay (IOPair) and every control-plane relay connection (VsockProxy) share ONE thread:ProcessSupervisor.default's epoll poller. Three defects let a single slow peer freeze that thread — and with it every session's stdio AND the whole container's control plane at once (probes then read "accepts connections but never answers"; before the manager-side recovery rework the host restarted the container over this, SIGKILLing every session):
IOPairblocking write: only registered fds getO_NONBLOCK(set byEpoll.add), and the relay registers only its READ fd — the write fd (e.g. the vsock socket carrying an exec's stdout to the host) stayed blocking. One slow-drained stream parked the poller thread inwrite(2). The relay now sets the write fd non-blocking up front and implements real backpressure: a full destination stashes the remainder in apendingbacklog, registers the write fd for EPOLLOUT, and suspends reads until the flush completes (throttling the producing process via its own pipe, not the shared thread). The old close-on-short-write path — dead while the fd was blocking, live and stdio-dropping once non-blocking — is subsumed by the backlog; genuine write errors still close the pair.OSFile.splicebusy-spin: when the destination was full (EAGAIN) and the source idle, the outer loop had no exit — it spun the poller thread at 100% until the peer drained (or forever if it never did). The flush leg's EAGAIN branch now returns partial progress; the un-flushed bytes stay in the transfer pipe and the destination's EPOLLOUT edge resumes the flush (bothVsockProxyhandlers already pump both directions on both events).VsockProxyregistration race: the client fd's epoll handler can fire — and splice toward the server fd — before the second registration makes that fd non-blocking; a full destination made that a genuinely blocking splice on the poller thread. Both fds are now set non-blocking before either is registered. All three are guest-side and INERT until the initfs image is rebuilt (make vminit-image, tag0.34.0-nucleic4) andContainerEngine.vminitReferenceis bumped after runtime validation. Marked[Nucleic vendored patch]. NOTE: the splice EAGAIN-return introduced a latent cross-direction accounting hazard fixed by patch #15.
-
Per-direction relay state in
OSFile+Splice.swift+VsockProxy.swift— fixes the poller-thread spin patch #14 made reachable. The oldSpliceFiledesign threaded ONE offset pair through BOTH directions of a proxied connection: each fd's struct served as the read-counter for one direction and the write-counter for the other, so the loop guards compared differences of two directions' counters. That was survivable only while every splice call fully drained its transfer pipe before returning. Once patch #14's EAGAIN branch let pending bytes persist across calls, one parked direction skewed the shared counters for the other: its write leg'sto.offset < from.offsetguard went false with data still in the pipe, and the outerwhile truethen alternated read-EAGAIN/skip-write forever — a hard 100% spin on the singleProcessSupervisorpoller thread (epoll never runs again, so the event that would un-skew the counters can never be processed). Container-wide dead control plane + frozen stdio until the VM is recreated; triggered in practice by host-side backpressure (any slow host reader), and bidirectional traffic on one connection (e.g. the control plane's SSE stream + requests). ReplacedSpliceFile/OSFile.splicewithOSFile.RelayDirection(each direction owns its OWN pipe,bytesIn/bytesOut, andsawSourceEOF) andOSFile.relay, which also fixes a second latent defect: source EOF is now reported only after the pipe fully drains, so the caller's SHUT_WR can never truncate a parked tail (the old read leg returned.eofimmediately, dropping pending bytes).VsockProxy.handleConnnow tracks two directions with independent done flags; a broken destination ends both. Guest-side and INERT until the initfs image is rebuilt and repointed (mind thevminit.ext4.referencecache sidecar). Marked[Nucleic vendored patch]. -
Loss-free stdio teardown (
IOPair.swift,ManagedProcess.swift,VsockProxy.swift,StandardIO.swift,TerminalIO.swift) — the truncated-final-output class. Four related defects dropped the tail of a stream at teardown, plus two fd leaks:
IOPair's relay handler closed on a bare EPOLLHUP even with a backpressure flush in flight, dropping the parked remainder (the CLI's final result line) when the destination was momentarily full at process exit. It now returns instead; the destination's EPOLLOUT flushes the backlog, the pump then reads EOF and closes loss-free.ManagedProcess.setExitforce-closed ALL stdio on SIGCHLD, racing the poller thread's final EPOLLIN drain (drain()silently ignores short writes). It now closes only stdin; stdout/stderr self-close on EOF (loss-free per the previous fix), with an 8s delayed full close as a backstop for pipe-inheriting grandchildren.ManagedProcess.IOis nowSendablefor that delayed capture.VsockProxyfull-hangup teardown dropped bytes already read off the dead peer that were parked toward the SURVIVING peer; it now makes one best-effort relay pass toward the survivor before cleanup.VsockProxyleaked therelayTofd (closeOnDeinit: false) on a failed backendconnect();StandardIO.start/TerminalIO.start/attachleaked live pairs/sockets (retained forever by the supervisor's handler map) on partial setup failure — all paths now close what they created before rethrowing. Marked[Nucleic vendored patch].
- Epoll registration integrity (
Epoll.swiftin ContainerizationOS,ProcessSupervisor.swift,IOCloser.swift,TerminalIO.swift).
- Registration generations: epoll events now carry the registration's generation in
epoll_data(high 32 bits), and the supervisor dispatches only when it matches the live entry — a stale event queued for a closed registration of a RECYCLED fd number can no longer fire the new registration's handler (it could tear down a brand-new healthy connection mid-batch). - Non-clobbering
registerFd: registering an already-registered fd now fails fast (EEXIST) instead of overwriting the existing handler and then, on the epoll EEXIST, deleting the map entry — which left the fd armed with NO handler (a silently dead relay). TerminalIOshared-fd collision: the stdin relay's write destination is now adup(2)of the terminal fd (DupIOCloser), so its EPOLLOUT backpressure registration can't collide with the stdout relay's read registration on the same number — one bulk paste used to permanently kill the terminal's stdout relay.Epoll.addnow ORsO_NONBLOCKinto existing flags instead of replacing the flag set. Marked[Nucleic vendored patch].
- Host-side stdin relay off the Swift cooperative pool (
LinuxProcess.swift). The stdin fd is blocking (only the read fds getO_NONBLOCK), andstartStdinRelay'sFileHandle.writeparked a width-limited cooperative-pool thread — non-cancellably — whenever the guest stopped reading with the vsock buffer full (large prompt lines). A few wedged sessions starved the whole Swift concurrency runtime (every decode loop and watchdog: an app-wide stall). Writes are now offloaded to a per-process GCD queue via a checked continuation; a wedged write costs one expendable GCD thread, and process deletion closing the fd still unwedges it. Marked[Nucleic vendored patch].
Re-vendoring a newer upstream commit
git cloneupstream (or copy.build/checkouts/containerizationafter bumping the URL pin temporarily), check out the desired commit.rsync -a --exclude=.git --exclude=.build --exclude=.swiftpm --exclude=Tests/ --exclude=docs/ \ --exclude=images/ <upstream>/ third_party/containerization/- Remove the
.testTarget(...)blocks fromthird_party/containerization/Package.swift. - Re-apply patch #1 (the
vmExtensionsfield + thevmConfig.extensions = …forward), patch #2 (LinuxProcess.killProcessGroup(_:)), patch #3 (thesetupIOstdio-connection log + itsimport os/nucleicIOLog), patch #5 (the non-blocking stdio relay:nucleicSetNonBlocking/nucleicDrainNonBlocking+ the rewrittenreadabilityHandlerblocks), and patch #6 (the atomic stdio-or-abort guard instart()), patch #7 (the boundeddeleteProcesstimeout inVminitd.swift), and patch #8 (theManagedProcess.startevent-loop offload invminitd/). Grep for[Nucleic vendored patch]to find every site, and patch #9 (per-exec cgroups) acrossCgroup2Manager.swift/ManagedContainer.swift/ManagedProcess.swift, patch #10 (Socket.acceptStreamtransient-error tolerance +isTransientAcceptError), patch #11 (theUnixSocketRelayper-connection containment + fail-fast closes), patch #12 (theVsockProxycleanup/try!/listener hardening invminitd/), patch #13 (the prompt-freeKeychainQueryreads:withoutInteractiveUI+ theerrSecInteractionNotAllowedhandling + thesaveduplicate retry), and patch #14 (the non-blocking/non-spinning guest I/O plane:IOPairbackpressure, theOSFile.spliceEAGAIN return, and theVsockProxypre-registration non-blocking fds — all invminitd/), patch #15 (the per-directionOSFile.RelayDirection/OSFile.relayrewrite + the two-directionVsockProxy.handleConn, which supersede the upstreamSpliceFile/spliceshapes entirely — invminitd/), patch #16 (loss-free stdio teardown: theIOPairHUP-with-pending return, thesetExitstdin-only close + grace pass, theVsockProxyhangup flush + connect-leak close, and theStandardIO/TerminalIOpartial-failure cleanup — invminitd/), patch #17 (epoll registration generations inContainerizationOS/Linux/Epoll.swift+ the generation-checked, non-clobberingProcessSupervisorhandler table +DupIOCloserand theTerminalIOdup destination — spansSources/ANDvminitd/), and patch #18 (thestartStdinRelayGCD write offload inSources/Containerization/LinuxProcess.swift— host side). After re-applying anyvminitd/patch, rebuild + publish the custom init image withmake vminit-image+make vminit-image-push, and bumpContainerEngine.vminitReference. - Update the commit hash above and in the root
Package.swiftcomment. swift buildand run the balloon tests.