maf-sandbox
Experimental. This package is early-stage (pre-1.0,
Development Status :: 4 - Beta) — its API may change or be removed in a future release without notice. Importing it emits a one-timeMafSandboxExperimentalWarning; suppress it withwarnings.filterwarnings("ignore", category=maf_sandbox.MafSandboxExperimentalWarning)once you've read the notice.
This package is not affiliated with, endorsed by, or a product of Microsoft — it is a third-party reference implementation of microsoft/agent-framework#7568, written for use with Microsoft Agent Framework but with no dependency on it in its protocol layer.
Quickstart
pip install maf-sandbox
from maf_sandbox import Isolation, SandboxKey, SandboxRouter, SandboxSpec, CallerContext
# Implement SandboxBackend against your own provider — or install maf-sandbox-acas for a
# ready-made Azure Container Apps Sandboxes backend — then wire it into a router. Configuring
# nothing gets the production posture (the default floor is Isolation.MICROVM); a developer
# machine opts down explicitly:
router = SandboxRouter([my_backend], min_isolation=Isolation.CONTAINER)
sandbox = await router.acquire(SandboxKey(scope="tenant-1", thread_id="t-1", agent_dir="devops"), SandboxSpec(kind="bicep", image="bicep-sandbox:0.46.1", egress_allow=("mcr.microsoft.com",), work_dir="/workspace"))
This snippet never calls ensure_can_serve (below) and is checked anyway: acquire runs the same floor, capability and egress refusals itself before it ever reaches the backend, so the only thing calling ensure_can_serve first buys you is the closed-egress-vs-allowlist-spec warning, which acquire deliberately stays silent about.
samples/01_acas_bicep is that wiring as a runnable program, including the part no snippet shows well: building the CallerContext out of callables rather than values, which is what keeps a SandboxKey a property of the host's request.
Threat model
This package draws no isolation boundary itself — it is protocol and policy over whatever a SandboxBackend implementation actually provides. Isolation is a seven-rung ladder a backend declares itself onto, weakest to strongest: none (no boundary at all — the workload runs in the host process, with the host's authority), runtime (a software boundary inside the host process, e.g. a restricted interpreter or a WASM runtime's fault isolation), os_process (a separate OS process — a kernel-enforced address space, sharing the kernel and the filesystem), container (shared-kernel namespaces and cgroups), hardened_container (syscall interception in a userspace kernel — gVisor-class), microvm (a hypervisor boundary with a minimal or absent guest OS and no ambient identity reachable from inside — the default floor), and vm (a dedicated, full VM provisioned for the workload). SandboxRouter enforces the checks below on top of that declaration; the package's job is to make an unsafe backend selection fail loudly at construction or attach, not silently at first use. Beyond backend selection this layer holds no credentials, executes nothing and reaches no network, and everything security-relevant about a specific sandbox lives in the backend that implements it. It has exactly one boundary of its own, and it is on the way out rather than in: make_file_system_sink writes guest-produced bytes under a host directory, so it resolves each destination and refuses one that leaves that directory — see Getting files back below, which is also where a host landing somewhere other than a filesystem is told it owns the same question.
The vocabulary
SandboxKey |
(scope, thread_id, agent_dir) — the one sandbox a caller may reach |
SandboxSpec |
what a sandbox of a given kind needs: image, egress allowlist, work dir, requires capabilities, and an optional min_isolation that may raise the host's floor |
Sandbox |
write_file + exec — all a workload gets |
SandboxBackend |
acquire / dispose / dispose_scope, plus the isolation, egress and capabilities it declares |
SandboxRouter |
picks the backend, enforces the minimum-isolation floor, the capability match, and the egress rule |
SandboxPurger |
duck-typed purge_scoped_thread(scope, thread_id) for a host's delete path |
Isolation, weakest to strongest: none < runtime < os_process < container < hardened_container < microvm < vm. SandboxRouter's default min_isolation is microvm; an unrecognised rung refuses rather than guesses which side of the floor it falls on.
SandboxKey's scope and thread come from the host's request context through CallerContext, whose fields are callables read at call time rather than values. That is deliberate: a key a caller can supply is a key a model can supply, and that would let one conversation address another's sandbox.
SandboxSpec.egress_allow is an allowlist — everything not named is denied, so an empty tuple means no network. Stating it positively means a spec that forgets to mention egress gets the closed configuration rather than the open one.
Two axes, three checks that are not conveniences
router = SandboxRouter(backends) # default floor: Isolation.MICROVM
router = SandboxRouter(backends, min_isolation=Isolation.VM) # stricter: dedicated full-VM only
router = SandboxRouter(backends, min_isolation=Isolation.NONE) # a developer machine, opted down
1. The minimum-isolation floor. A backend declares its own isolation, ranked on the ladder above. The router refuses, at construction, any backend below min_isolation — or one whose declared value is not a rung this package recognises, because nothing here can tell whether an unrecognised boundary is stronger or weaker than the floor. A spec may also carry its own min_isolation; the effective floor is the stricter of the host's and the spec's — a spec may raise the floor for itself and never lower it.
It refuses rather than degrades. Falling back to a stronger backend would hide a misconfiguration; proceeding with the weaker one would break claims the host's security posture makes about every execution surface. Neither is better than an error.
2. The capability match. A backend declares capabilities: frozenset[Capability] (EXEC, RUN_CODE, HOST_TOOLS, FILES_IN, FILES_OUT, FILES_LIST, FILES_DELETE, NETWORK, SNAPSHOT, ATTACHED_IDENTITY) — what it can actually do — and a spec declares requires, what its workload cannot run without. ensure_can_serve(spec) raises SandboxCapabilityNotSupported when the backend is missing something the spec requires. Unlike the floor, silence here is a functionality claim rather than a safety one: an undeclared capabilities reads as exactly DEFAULT_CAPABILITIES = {EXEC, FILES_IN} — what this package's own Sandbox protocol already obligates, so a backend written before Capability existed does not have to start lying to keep working.
3. The egress rule, unchanged in substance. egress_allow was a contract nothing checked, so a backend that reads it and one that ignores it have the same type, the same methods and the same passing tests — each one declares an Egress level instead: allowlist (deny by default, allow the named hosts), closed (all or nothing), or unrestricted (cannot confine egress at all). ensure_can_serve(spec) refuses the last one. Here silence is not read charitably: an undeclared egress is treated as unrestricted and refused, because a backend written before the property existed cannot have been enforcing an allowlist it never read.
Which direction a backend misses egress by decides the outcome, and it is not symmetrical. A backend that confines less than the spec asks silently widens what the workload was designed to reach — refused. One that confines more is permitted, with a warning: the sandbox reaches nothing it should not, and the workload fails visibly at whatever it could not fetch.
Note that the checks answer to different owners. How strong the boundary must be here is the host's policy, read from min_isolation — and a spec may raise that floor for itself, never lower it. What a sandbox may reach, and what it must be able to do, are properties of the workload, stated in its spec. Keeping the axes apart is deliberate: merging isolation into a "required capabilities" list would let a workload ask for a weaker boundary than the deployment mandates.
ensure_can_serve is also the whole of a wiring test, in your own repository, against your own backend choice:
router.ensure_can_serve(bicep_sandbox_spec())
Getting files back — the declaration, and where it lands
A workload's only return channel used to be ExecResult.stdout, which is right for a diagnostic and wrong for a rendered image. Capability.FILES_OUT is the pull surface, and it is narrow in two deliberate ways: this library never discovers what a workload produced, and it never decides where the bytes go.
Declare it. A DeclaredOutput names one artifact as a literal path relative to work_dir, in SandboxSpec.declared_outputs. Literal rather than a glob: resolving a pattern means enumerating a directory, which is the primitive Capability.FILES_LIST exists to gate, so a kind that cannot name its outputs in advance requires that capability and a backend serving only FILES_OUT refuses it. media_type is declared rather than sniffed, because sniffing lets guest-produced content decide how the host handles it. required=False is how a workload says an absence is normal — a renderer exiting non-zero produces no file, and the model needs that diagnostic rather than a transfer error stacked on top of it. name is the spelling the artifact lands under and defaults to path; the two come apart as soon as a kind writes into a per-call directory, which warm sandbox reuse forces on any kind whose outputs would otherwise persist into the next round.
disposition keeps the two flows apart because they answer to different legs of a host's policy: LAND goes to the sink and the question is confidentiality, while CONSUME is parsed by the kind that asked for it and the question is integrity. A CONSUME output is still counted against every cap — files_out bounds the collection the spec declared, not the subset of it that lands.
Receive it. await collect_outputs(sandbox, spec, sink=...) returns LandedArtifacts in declaration order. The order of its phases is part of the contract rather than an implementation detail: everything the declaration alone decides — a sink for anything that lands, a valid name for every output, no two landing names that collide — is settled before the sandbox is touched, then every declared output is stat-ed and capped, then the landing ones are read, and only then is anything delivered. Delivery is a push nothing can take back, so a refusal arriving after the first deliver could not leave the host as it found it.
spec.files_out is a TransferLimits and all three of its fields are load-bearing: a byte ceiling alone does not bound a collection, since ten thousand files one byte under the per-file cap cost exactly what the cap was written to prevent. What comes back when a collection does not fit is specific rather than generic — SandboxTransferCapExceeded names both the cap and the file that breached it, SandboxOutputMissing names a required output that was not there, SandboxOutputSizeUnknown is a backend that could not say how large something was, and SandboxArtifactNameCollision is two landing names that are one file at the destination: identical, or differing only by case or by Unicode form.
Land it. An OutputSink wraps a single async def deliver(artifact) -> LandedArtifact. This library holds no opinion about where an artifact goes — a directory, a blob container, a file store — which is what keeps that flow visible to the host's own information-flow policy instead of buried in a dependency. LandedArtifact.display is the one line the model is allowed to see; handle is the host's own reference, and nothing renders it into the transcript.
validate_artifact_name is lexical, so a sink still has to confine its own destination. It refuses .., absolute paths, backslashes and empty segments, so the name cannot traverse — which is not the same as safe, because it says nothing about what is already sitting at the path that name resolves to. A symlink in the output directory carries the write straight out of it: the same failure class as #142, on the host side of the boundary.
make_file_system_sink(root) is that check, packaged. It resolves each destination, refuses anything leaving root with SandboxLandingNotConfined, creates the parents a nested name needs, and writes. Reach for it rather than writing the four lines yourself — two samples here wrote them by hand and only one got it right. Pass display when the kind introduces its artifacts in its own words. It stays a check rather than a guarantee, and that is a property of the filesystem rather than of the helper: resolving and writing are two calls, so a host landing genuinely hostile output wants no-follow primitives underneath. What it closes is the standing case — something already in the way when the run started.
A sink landing somewhere that is not a filesystem — a blob container, a file store, a UI panel — writes its own deliver and owns the equivalent question for that destination.
from pathlib import Path
from maf_sandbox import (
Capability, DeclaredOutput, SandboxSpec, TransferLimits, collect_outputs,
make_file_system_sink,
)
spec = SandboxSpec(
kind="diagram",
image="diagram-sandbox:1",
egress_allow=(),
work_dir="/workspace",
requires=frozenset({Capability.EXEC, Capability.FILES_IN, Capability.FILES_OUT}),
declared_outputs=(DeclaredOutput(path="diagram.png", media_type="image/png", required=False),),
files_out=TransferLimits(max_bytes_per_file=8 * 1024 * 1024, max_total_bytes=16 * 1024 * 1024, max_files=4),
)
landed = await collect_outputs(sandbox, spec, sink=make_file_system_sink(Path("out")))
Reclaim the sandboxes when the conversation ends. router.scope(scope, thread_id) is an async context manager that calls dispose_scope however the block ends, and cannot mask an application error on its way out — dispose_scope already swallows and logs each backend's failure. Its own reason is why this is packaged rather than left to every host to remember: a sandbox nobody reclaims is a sandbox somebody pays for.
async with router.scope(scope, thread_id) as reclaimed:
... # attach tools, run the turn
print(f"Disposed {reclaimed.disposed} sandbox(es).") # the count arrives after the block
A workload whose artifact names are not knowable when its tool is built passes the same DeclaredOutput type to collect_outputs(outputs=...) instead. That is refused unless the spec sets outputs_named_at_call_time: without the flag, the tool was attached with no sink required of it and no outbound cap agreed, and collecting there would land artifacts behind both checks.
samples/08_docker_codeact_files is all of the above as a runnable program, against a real engine.
Host tools — the contract, and the backends that serve it
Capability.HOST_TOOLS is the one capability where trust crosses outward: a dispatched function body runs in the host process, with the host's privileges, driven by model-written code, and each dispatched call bypasses whatever middleware the host runs. maf-sandbox-docker and maf-sandbox-acas declare it; maf-sandbox-wslc does not. The safety contract shipped first, before anything could use it, and it is what a host configures either way: HostToolRegistry starts empty (nothing is dispatchable until a developer registers it, and registering emits a one-time, suppressible MafSandboxHostToolsWarning); @sandbox_tool(source=..., sink=..., identity=...) makes the developer answer every information-flow leg with no defaults (None is an answer — "not that role"); a require_declared gate refuses unstamped functions at registration, which is the only place the declaration is ever read — register captures it, HostToolRegistry.aggregate() seals the registry as it derives policy from it, and a stamp swapped or removed afterwards reaches nothing; each run is bounded by a dispatch cap (DEFAULT_MAX_DISPATCHES_PER_RUN, refusals included) and by response size caps that reuse TransferLimits; arguments are validated host-side at the registry's one door, never in a guest shim; and a host whose posture wants a hard stop rather than awareness passes denied_capabilities={Capability.HOST_TOOLS} or denied_identities={Identity.USER} to its router.
One sentence to read before registering anything, because a declaration reads like a control and is not one: Identity.APP is not the safe option, only the declared one. It is the application's full authority, and the only real bounds on it are the emptiness of the registry and the dispatch cap — least privilege for dispatched tools comes from what a host registers, never from what it declares. Identity.USER is declarable but not servable: registering such a tool raises the whole surface to approval-gated, and dispatching one is refused with the prerequisites named.
Reaching the host from inside — dispatch_over_exec
The contract says what may be dispatched; it does not say how a dispatch reaches a host whose guest speaks an exit code, stdout, and a stat-and-read pull surface. dispatch_over_exec is that channel, built from those primitives and nothing else, and it is a helper a kind composes rather than anything the protocol requires. A kind writes the program and the generated shim (host_tool_shim) into a fresh per-run directory (guest_run_layout); dispatch_over_exec writes the launcher itself, starts it detached and then polls for request files, resolves each one through HostToolRun.dispatch — the same one door, with the same gates, cap and ceilings — and writes the answer back. It needs EXEC, FILES_IN and FILES_OUT, and deliberately not FILES_LIST. One run is two directories, and that is what keeps a guest-supplied name away from the machinery serving its own call: WORK_DIRECTORY is the program's working directory and the only one a kind puts model-named files in, while the shim, the launcher, the output, the exit marker and the calls directory sit in a sibling nothing a model names can reach. The program itself lives in the second one, beside the shim, because sys.path[0] follows the script rather than the working directory — run from the work directory it would put a guest file named maf_host_tools.py ahead of the real module, which is exactly the substitution a list of reserved names is hardest to get right about.
A run that overruns is signalled, not just reported. The program is started detached, so the bound expires in the supervisor rather than inside an exec a backend could tear down along with its container — which used to mean a timed-out program kept running and the only remedy was disposing the whole sandbox, taking every other call in that conversation with it. The launcher records the program's pid and the supervisor signals it on the way out, over the same exec this transport already runs on: no protocol method, no capability beyond the ones the dispatch path requires. The message says the signal was sent, not that the program died — kill reports success for a signal the kernel accepts and discards, and the pid comes from a file the program can rewrite, so a guest that names pid 1 or another process outlives a call that reports and was sent SIGKILL. Where the signal could not be sent at all the message says "could not be signalled, so it may still be running", and disposal is what stops it. Making the stop something the host can rely on against hostile code is #463 — the pid and the session are still read from files inside the run. Children the program spawned are killed with it where the guest has setsid, unless they left the group. The launcher starts the program inside a session of its own — setsid runs a shell, that shell leads the session, and the program is its child — and the supervisor signals the process group the program starts in, so a program that forked a spinner does not leave it burning CPU for the rest of the conversation. A descendant that calls setpgid stays in the session, leaves that group, and survives — reach says "group" and means it. Where setsid is missing the program shares the launcher's session, only its own pid can be signalled — a group signal there would reach the whole container — and the message says so rather than implying otherwise: "and was sent SIGKILL, which reaches it alone — anything it spawned is still running". The signalled processes stay as zombies until the sandbox goes if nothing in the image reaps them, which is normal for a container whose pid 1 is not an init. The guest needs sh, nohup, printf, mv, mkdir, rm and kill, and uses setsid when it is there.
The shim is not a control. It runs where model-written code can read, edit or ignore it, and a program that writes request files itself is served identically. That is the design: every gate is host-side, and a check running in the guest would be decoration.
The transport tries not to let its own files outlive the call. It removes the ones it owns — the program, the shim, the launcher, the captured output, the exit marker, the pid, and every request and response the run exchanged with the host — on every exit path, success included, over the same exec it uses for everything else — best-effort, not a retention guarantee: a guest without rm, a removal that times out, or a non-zero exit each leave that traffic readable, logged and nothing more. What it cannot remove is WORK_DIRECTORY: artifacts live there and a kind collects them after the transport has returned, so removing it would delete the outputs of every successful run. reclaim_run(sandbox, layout) is the other half, a kind's to call in a finally once it has collected, and it takes the whole run directory — no kind in this repository calls it yet, so today a conversation still accumulates one work directory per call. A False from it is a data-retention failure rather than a tidiness one: nothing in the protocol deletes and acquire is get-or-create, so a run directory that survives is readable by every later run in the same sandbox for the life of the conversation. A kind that takes its place in the guest from SandboxToolSession.guest_call_path() does not have to remember any of this: sandboxed_tool removes that path, and everything under it, when the call returns — after a result, a refusal and an exception alike — and hands a removal that did not happen to the host's on_reclaim_failure as a ReclaimFailure, which is where disposal is decided. A kind that composes its own path keeps reclaim_run, and keeps the finally. What remains is the host's own disposal — SandboxRouter.dispose(key), which ends every kind's sandbox for that conversation and any concurrent call in it. Blunt, and worth it against data left where the next program can read it; how a kind reaches it is #435.
It costs round trips — several backend calls per dispatch, plus polling, plus one on every return to reclaim, and one more to stop the program on a run that overran. It serves one outstanding call at a time. This module's own docstring counts those costs exactly, beside the code that decides them; whether the trade is worth it is a measurement rather than an assumption.
Upgrading to 0.17
A dispatched run's transport files are deleted now, and a kind has one call to make for the rest. dispatch_over_exec removes its own directory on every exit path; the run directory — the model's shared-in files and its artifacts — is reclaim_run(sandbox, layout), which a kind calls in a finally after collecting. A kind that does not call it keeps today's behaviour for that half, so nothing breaks, but the run directory goes on accumulating one per call. If your kind reads anything out of the transport's directory after dispatch_over_exec returns, it will no longer be there; nothing shipped here does.
Every dispatch now issues one more exec, and a timed-out one may issue two. The extra calls are rm -rf for the cleanup, which every path pays, and kill -KILL for the stop, which only a run holding a usable pid issues — an upload that ran out never started a program, and a run whose pid is missing or unreadable has nothing to aim at. A backend double that counts exec calls, or a guest whose commands are allowlisted, will see them — the fakes in this repository's own codeact suite had to be taught to ignore them. A run's wall clock can exceed its timeout, by five separate graces. Every path pays the reclaim's _RECLAIM_GRACE (10s). A run whose last dispatch returned after the bound pays _RESPONSE_WRITE_GRACE (2s) to record the answer, because a tool that has already acted is owed the round trip that says what it did. A run that overran pays three more _FINAL_READ_GRACE (2s each): one for the last look at the exit marker and the program's output, one for the pid lookup, and one for the signal itself — each measured fresh, because a slow guest that spends one must not leave the next with nothing. That is timeout + 18s with today's constants — the transport's own overhead, not an upper bound on the call. A dispatched host tool is deliberately never cancelled, so one that blocks holds the supervisor for as long as it blocks; bounding that belongs to the tool, which is the only code that knows what it is waiting on. Size an outer deadline from timeout + 18s plus whatever your slowest registered tool can take. One set any tighter loses the SandboxProgramTimeout and its output, and cancels whatever dispatch is in flight — a tool's effect half applied with no record written, which is the trade an outer asyncio.wait_for makes on your behalf.
GuestRunLayout gained a pid field, and constructing one yourself is a TypeError until you pass it. guest_run_layout fills it in, so a kind that uses the factory — which is every kind that follows the documented path — needs no change at all. The field is where the launcher records the program's process id, which is what lets a run that overruns be stopped instead of left going.
Two more names are reserved in a run's transport directory: program_pid and program_pid.part. guest_run_layout refuses a program named for either, on the same grounds it already refuses program_exit_code.part — the launcher writes them, so a program under one of those names is written over. This is about names, not reach: a model-supplied file name cannot collide with them, because a kind writes model-named files only into work/. A program can still open anything it likes by absolute path — the shim sits where model-written code can read and edit it, and so does everything beside it.
A timed-out dispatch now signals the guest program, where before it left it running. A run that reached the program gained a clause saying whether the signal was sent, so a host matching the old text no longer matches those. Only one message for a run that never got that far is unchanged, the launcher upload running out. The launcher's own exec running out with no pid gained a clause too, because the launcher backgrounds the interpreter before it writes the pid down: a call that expires between the two leaves a program running and no pid to point at, so that message now says the start could not be established rather than quietly implying none happened. If your host disposes the sandbox on every SandboxProgramTimeout to reclaim the CPU, keep doing that if you need the program actually gone. The message distinguishes a signal that was sent from one that was not, which is less than it sounds: a sent signal can be discarded, aimed at a pid the program rewrote, or leave children running, so it is not confirmation of termination and disposal is still the only thing that is. The exit marker's meaning is unchanged: the launcher waits on the program, so the code recorded is still the program's own.
Upgrading to 0.16
A host-tool run is two guest directories now, and the program's working directory is the new one. GuestRunLayout gained a work field; program, shim, launcher, output, exit_code and calls all moved from <run>/ into <run>/host_tools/. A kind that shared files into layout.directory and collected artifacts from it must use layout.work for both — this is the failure worth checking for, because nothing raises: guest_run_layout still takes the same arguments, so a kind that never named the moved paths keeps running, the program's open("input.csv") fails inside the guest, and an artifact written to the program's own working directory lands where the old collection path does not look. A run that quietly produces nothing is the symptom. Constructing GuestRunLayout yourself is the loud half — the new field makes it a TypeError.
A Python module shared into the work directory is no longer importable, and that is the second silent one. In 0.15 the program sat among the model's files, so sys.path[0] was the run directory and a kind could share helper.py beside it and have the program import helper. The program now runs from host_tools/, sys.path[0] follows it there, a working directory is never added to sys.path, and the launcher drops the inherited path entries that could put the work directory back — so the same import is a ModuleNotFoundError. If your kind shares Python rather than data, the program has to opt in:
import maf_host_tools # first, so the real shim is in sys.modules
import os, sys
sys.path.insert(0, os.getcwd()) # now the work directory is importable
import helper
Order matters: once the work directory is on the path, a model-written file can answer any import that follows, which is what the split exists to prevent. Importing the shim first is what keeps that one safe — it is already in sys.modules and cannot be shadowed afterwards. Sharing the helper into host_tools/ instead is not an alternative; that directory is the transport's, and a name that collides with it is refused.
The split is what replaced the reserved-filename list this release was originally going to export. Two directories mean nothing a model can name reaches the transport's own files, so there is no list to keep complete, and the shim can no longer be shadowed by a guest file of the same name — sys.path[0] follows the program, which now sits beside the shim rather than among the model's files.
guest_run_layout refuses inputs it accepted in 0.15, and the first two refusals are new constraints rather than newly-enforced old ones. A run_directory containing : is rejected: the shim's directory now travels to the guest through PYTHONPATH, which separates on : and cannot quote one, so such a path would reach the interpreter as two entries — the second of them relative, resolved against the directory the guest writes into. If your run directories embed a timestamp, /runs/2026-08-17T10:30:00Z is the shape that stops working. And a program name is refused when the module it would answer to matches the shim's own module name (maf_host_tools.so and friends: the stem is reserved for the shim, because a file under it either shadows the import the program opens with or cannot run as a program), a module the generated shim imports (json, os, time), or one CPython imports at startup (encodings, site, sitecustomize, usercustomize, plus — reached through ordinary path lookup on a guest older than 3.11, whose standard library is not frozen, and refused everywhere because the guest's interpreter is not this package's to pin — abc, codecs, genericpath, io, posixpath, stat, _collections_abc, _sitebuiltins, _bootlocale) — the program shares a directory with the shim and that directory is on the path from startup, so such a name is imported instead of the module it stands for, or runs before the program does. One exact filename joins the list 0.15 already refused: program_exit_code.part, where the launcher stages the exit code before renaming it into place — that one is an old constraint newly enforced, since a program under it was truncated and renamed away by the launcher's last line in 0.15 too.
The launcher rewrites the guest's PYTHONPATH. It prepends the shim's directory and keeps an inherited entry only when it is absolute, canonical, and outside the run directory. A relative one resolves against the working directory — which the launcher has just changed to the guest's own — so an image that relies on . or a relative entry loses it here. An absolute one is dropped when it names the run directory or anything under it: nothing an image meant to name can live there, because the directory did not exist when the image was built, so an entry that does name it is either a coincidence of layout or an attempt to make the guest's own files importable at interpreter startup. /runs/current-sibling is kept when the run is /runs/current; only the tree itself goes. Every other absolute entry is passed through unchanged, including any that contain glob characters.
An entry carrying /./, /../ or // is dropped whatever it names. The comparison above is textual, so /runs/./current/work is a different string from /runs/current/work and the same directory to the interpreter. Such an entry is refused rather than normalised — an entry this cannot compare against the run tree is one it cannot vouch for. If your images export a path spelled that way, spell it canonically or it will not reach the guest.
The launcher also sets PYTHONNOUSERSITE=1, so user site-packages are off inside a run. PYTHONPATH is not the only inherited way into startup: site adds $PYTHONUSERBASE/lib/pythonX.Y/site-packages, and a sitecustomize there runs before the program exactly as one on the path would. Filtering that variable alone would leave the same hole behind HOME, which the user base falls back to, so the mechanism goes off rather than being chased through its inputs. If your image installs dependencies with pip install --user, they stop resolving inside a host-tool run — install them into the system environment instead. The failure is an ImportError naming the module, not a silent one.
What none of this closes is a symlink from outside the run tree into it, which needs a realpath POSIX sh does not have, and PYTHONSAFEPATH does not help with any of it — sitecustomize runs before any script. If your images export PYTHONPATH or PYTHONUSERBASE at all, keep them clear of wherever your kind places run directories.
dispatch_over_exec raises SandboxProgramTimeout for its own bound. A TimeoutError from it used to mean either the run running out or a backend bounding one of its own calls, and callers could not tell which. The new type — a TimeoutError subclass, so existing handlers keep working — is the first. A bare TimeoutError is the second, and says nothing about whether the program is still running — validation errors and whatever a backend raises for its own reasons come through as themselves, unchanged. It carries the program's partial output on output, and what the transport managed to do about the program on signal — sent, refused, absent, unrecorded, unknown. Branch on signal, not on the message text, which is prose and will keep moving. Only absent says nothing was started; none of the others confirms the program was stopped, so a host that needs it gone still disposes the sandbox. Raising this type yourself reports unknown unless you say otherwise — nothing claims absent but the leg that never reached a launcher.
There is a new rung, os_process, between runtime and container. A separate OS process is a real boundary — a kernel-enforced address space — and a weaker one than a container, which is a process plus namespaces and cgroups. It exists so that a backend running untrusted code in a subprocess has something honest to declare instead of understating itself as runtime or overstating itself as container. No backend in this repository provides it; this release is vocabulary.
Isolation.PROCESS is back as a name, and it means the new rung. If you upgraded through 0.14 you have already made the edit this needs: the old Isolation.PROCESS meant no boundary and is now Isolation.NONE. If you are coming from 0.13 or earlier, read the 0.14 note below first — jumping the version where the old spelling raises is the one path on which this rename is quiet.
The value is "os_process", not "process", and Isolation("process") still raises ValueError. Reusing the attribute is safe because Python resolves it where you wrote it. Reusing the string would not be: a declaration reaches this vocabulary through Isolation(raw) at run time, out of configuration nobody re-reads, so the old spelling would have come back ranked two rungs higher having claimed a boundary it never drew. It is refused instead, and it will stay refused.
Rank numbers shifted; comparisons did not. Inserting a rung renumbers everything above it — container moved from 2 to 3, and so on up. Nothing needs to change if you compare rungs with meets_floor or through ISOLATION_RANK, which is the only ordering there is. If you persisted a rank integer anywhere, it now names a different rung.
Upgrading to 0.14
Isolation.PROCESS is Isolation.NONE. The rung that provides no boundary was named for where the code runs rather than for what it protects, and read as the opposite of what it meant — "process isolation" implies a boundary, and this rung is the absence of one. One mechanical edit, in host code and in any backend you have written.
The old spelling is removed outright rather than kept as an alias, and that is the point. PROCESS is reserved for a genuine separate-OS-process rung — a kernel-enforced address space, sharing the kernel and the filesystem — which landed between runtime and container in 0.16, carrying the value "os_process". An alias would have made that reuse silent: a backend declaring "process" because it drew no boundary would come back ranked two rungs higher, having claimed one, and a host running min_isolation=Isolation.RUNTIME would begin admitting it. So in this release Isolation.PROCESS raises AttributeError, Isolation("process") raises ValueError, and a backend still declaring it is refused at construction with SandboxBackendNotPermitted. The failure is the notice.
Check your configuration, not only your code. Isolation is a StrEnum, so a floor or a declaration may reach the router as the string "process" out of a config file or an environment variable rather than as an attribute. Those fail the same way and at the same moment — but a grep for Isolation.PROCESS will not find them.
Upgrading to 0.11
0.11.0 retired the word workspace from the public vocabulary. It was carrying three unrelated things, and only one of them keeps the stem. Two edits, both mechanical.
WorkspaceContext is CallerContext, and make_workspace_context is make_caller_context. The type was never a storage concept: two of its three fields are identity, and list_files receives a store rather than holding one. Its first parameter is now list_files where it was store_walker — a positional call needs no edit, a keyword one does.
work_dir and working_directory are unchanged. They name the guest's working directory, they are the most common use of the stem by an order of magnitude, and they were never the concept being retired. If you were looking for a rename here, there isn't one.
The dependent packages moved with it: maf-sandbox-bicep and maf-sandbox-codeact take file_store where they took workspace_store, and each has its own note.
Upgrading from 0.4.x
0.5.0 replaced the deployed boolean with a declared isolation floor, and added a capability axis. Four changes need an edit; nothing else moves.
SandboxRouter(..., deployed=...) is gone — pass min_isolation instead. deployed=True becomes min_isolation=Isolation.MICROVM, which is also the default, so a deployed host can drop the argument entirely. deployed=False on a developer machine becomes the rung that host actually accepts, stated explicitly — min_isolation=Isolation.CONTAINER for a container backend, Isolation.NONE for an in-process fake. There is no longer a value meaning "anything goes": a host that wants the weakest rung names it.
DEPLOYED_ISOLATION is removed. The policy it expressed is min_isolation's default.
Isolation and Egress are StrEnums, and the ladder grew. Values are unchanged, so backend.isolation == "vm" and any stored configuration keep working. The ladder is now process < runtime < container < hardened_container < microvm < vm; a declared value outside it is refused at construction rather than silently permitted. (The bottom rung was renamed to none in 0.14 — see Upgrading to 0.14 above. This note describes the ladder as 0.5.0 shipped it.)
AcasSandboxBackend now declares microvm, not vm. ACA Sandboxes are hardware-isolated micro-VMs; vm now means a dedicated, full VM on remote infrastructure. A host that pinned min_isolation=Isolation.VM expecting ACA Sandboxes to satisfy it should use Isolation.MICROVM — the default, and the rung the micro-VM standard defines.
Backends need no edit to keep working: one that declares no capabilities is read as declaring DEFAULT_CAPABILITIES (exec + files_in), which is what the Sandbox protocol already obliges. Declare a wider set to serve workloads that require more.
Writing a backend
Implement name, isolation, egress, acquire, dispose, dispose_scope. capabilities is optional. Four things worth knowing before you start:
Declare egress honestly. It is read before any workload's tool is attached, and a backend that omits it is treated as unrestricted and refused: one written before the property existed cannot have been enforcing an allowlist it never read, so silence is read as enforcing nothing rather than excused.
capabilities is optional, and silence is the opposite of egress's. Omitting it reads as DEFAULT_CAPABILITIES = {EXEC, FILES_IN}, so a backend that has always offered exec and file-write does not need to add the property to keep working — only declare it once you offer more, or less.
acquire is get-or-create. A workload's fix-round loop calls it every iteration; returning a cold sandbox each time turns a seconds-long loop into a minutes-long one.
dispose_scope must not consult only your process's memory. A multi-replica host serves a conversation delete wherever it lands, so the replica that created the sandbox is usually not the one deleting it. Derive the set from the service — labels, a listing, whatever your provider offers. A backend that skips this leaves billable compute running and the bug is invisible on a single-replica dev box.
Both dispose methods are best-effort by contract: purge must never fail a delete.
If you serve FILES_OUT, do not write the confinement walk yourself. A path whose parent is a link satisfies every lexical test and still reads outside, and two backends written independently against the prose shipped that same escape (#142). maf_sandbox.paths.refuse_symlinked_parents is that walk, taking your own stat — which must be unconfined (it covers the work dir's own ancestors) and no-follow (a stat that resolves a link describes its target and hides the escape).
Then check yourself against maf_sandbox.conformance, on a real instance: probes that plant a hostile layout through your public surface and attack it. Fill in a ConformanceSubject — a sandbox, a working directory, and how your guest plants a file and a link, with PosixGuestSubject covering a Linux guest that has ln — and await assert_files_out_conformance(subject). It imports no test framework, and a failure names every probe that failed rather than the first.
The same shape holds the other capabilities to one reading: assert_files_in_conformance (byte fidelity over UTF-8-representable payloads, UTF-8 str, overwrite-replaces, implicit parents, and write-path confinement — promises the protocol states on write_file), assert_exec_conformance (exit-code fidelity, argv quoting, the working directory — which the suite plants itself, because no backend creates spec.work_dir after acquire and the caller-creates rule is the one dispatch_over_exec already made deliberate — and the TimeoutError bound, whose probe may discard the sandbox, which two backends do by design), and assert_files_delete_conformance (a link removed never followed — including one inside a recursive removal, which is the escape a service-side tree delete can hide — recursive as a word the caller says, the working directory refused). Two levels of opting out, and they are different: a suite run against a subject whose capabilities do not include its gate is refused with ValueError — a green run that attacked nothing is worse than no run — while a probe needing a capability the subject declares besides the gate (FILES_LIST within FILES_OUT, say) is skipped and the skip reported, so a backend that quietly stops declaring something cannot go green on fewer probes. The EXEC suite never skips at all, because EXEC is what every sandbox owes. A backend with no pull surface answers the exec-verified suites as readily as one with a full one: that is why wslc, which declares only EXEC and FILES_IN, is held to something at last (#450).
Two rules the probes reached for and the protocol has not written yet are filed rather than guessed: whether exec must carry non-UTF-8 bytes losslessly (#465) and whether acquire should promise work_dir exists (#466). Each surfaced on the suites' first live run — which is the suites working, not failing.
One capability has a second entry point. measure_files_delete_probes runs the same probes with no declaration gate and no verdict — for a backend that implements remove and does not yet declare FILES_DELETE, where a failed probe is a finding about the mechanism rather than a broken promise. The loop it breaks: a capability may only be declared once its mechanism passes the probes, so the probes must be runnable against an undeclared mechanism or the gate can never open. Its results are the citable artefact in the argument over whether an undeleteable backend is an exceptional path (callback, at the kind) or a capability gap (router refuses the spec up front) — maf-sandbox-acas runs it against the real service, and its verdict is what #435 and #438 should read before choosing a layer.
Provenance
Extracted from a production agent application, where this seam was written for its first execution surface: a tool that compiles agent-authored infrastructure code in a sandbox. The minimum-isolation floor above is not a preference — it is what a security review concluded when it worked through what a shared-kernel boundary does not close for code an agent wrote.
Maintained by SOKOLAI BV.
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file maf_sandbox-0.18.0.tar.gz.
File metadata
- Download URL: maf_sandbox-0.18.0.tar.gz
- Upload date:
- Size: 155.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
561c31e030641b589b6958427cdedbfcb1aadb13200bf8473f1921ef7a3be437
|
|
| MD5 |
c82b46a7da68408b879bb08b0642b91f
|
|
| BLAKE2b-256 |
92af76d1938fe10c9ec74870c0484b97c20a8abe55eaac3314e9b570f51b40e5
|
Provenance
The following attestation bundles were made for maf_sandbox-0.18.0.tar.gz:
Publisher:
publish-packages.yml on sokolaidev/maf-extensions
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
maf_sandbox-0.18.0.tar.gz -
Subject digest:
561c31e030641b589b6958427cdedbfcb1aadb13200bf8473f1921ef7a3be437 - Sigstore transparency entry: 2536225344
- Sigstore integration time:
-
Permalink:
sokolaidev/maf-extensions@30a86811cbebffb59a7142c75a6f34b7686b1b1f -
Branch / Tag:
refs/tags/maf-sandbox-v0.18.0 - Owner: https://github.com/sokolaidev
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-packages.yml@30a86811cbebffb59a7142c75a6f34b7686b1b1f -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file maf_sandbox-0.18.0-py3-none-any.whl.
File metadata
- Download URL: maf_sandbox-0.18.0-py3-none-any.whl
- Upload date:
- Size: 148.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e6bc638a7e2b8865f7e52a12ed7c551a4f2c07e95397be3fbea14d5c0d020ef6
|
|
| MD5 |
d76b85ecdd3b137d26f3d0bd19749dda
|
|
| BLAKE2b-256 |
c7417f2430a8ac8a394211bf86fe55013b0030ca4c93186e6621bda1efad9a66
|
Provenance
The following attestation bundles were made for maf_sandbox-0.18.0-py3-none-any.whl:
Publisher:
publish-packages.yml on sokolaidev/maf-extensions
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
maf_sandbox-0.18.0-py3-none-any.whl -
Subject digest:
e6bc638a7e2b8865f7e52a12ed7c551a4f2c07e95397be3fbea14d5c0d020ef6 - Sigstore transparency entry: 2536225368
- Sigstore integration time:
-
Permalink:
sokolaidev/maf-extensions@30a86811cbebffb59a7142c75a6f34b7686b1b1f -
Branch / Tag:
refs/tags/maf-sandbox-v0.18.0 - Owner: https://github.com/sokolaidev
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-packages.yml@30a86811cbebffb59a7142c75a6f34b7686b1b1f -
Trigger Event:
workflow_dispatch
-
Statement type: