patch-gate
Preflight untrusted unified diffs against explicit path policy before Git can change your workspace.
patch-gate strictly parses textual Git/unified patches, reports every affected path, applies
allow/deny globs, rejects traversal and symlink paths, and delegates patch validation and atomic
application to git apply. The core has no third-party runtime dependencies.
Install
pip install patch-gate
Python 3.9 or newer is required. inspect needs only Python; check and apply require Git, and
--root must be the Git work-tree root (not a subdirectory).
Quick start
patch-gate inspect change.patch --root /workspace/project
patch-gate check change.patch --root /workspace/project --deny '.env' --deny 'secrets/**'
patch-gate apply change.patch --root /workspace/project --allow 'src/**' --allow 'tests/**'
JSON is the deterministic default. Add --format text for a human-readable report. Use - as the
patch name to read bytes from standard input. A named patch file must be a regular, non-symlinked
file inside --root; use standard input when the patch is stored elsewhere. Patch input is capped
at 64 MiB and individual pathnames at 4096 decoded bytes.
Exit codes are 0 for safe or applied, 1 for a safety/policy/Git-check rejection, and 2 for
bad usage, unreadable input, or malformed/unsupported patch syntax.
Threat model
patch-gate is designed to stop an untrusted textual patch from naming a path outside the selected
workspace, traversing an existing symbolic link, or touching a path excluded by caller policy. It
decodes Git's C-quoted paths, cross-checks redundant Git headers, rejects ambiguous headers,
binary patches, and symlink-mode changes, and runs the exact patch through git apply --check
before application. Patch bytes are passed directly to Git without a shell.
It is not a sandbox. It gates destinations, not the semantic meaning of source code: an allowed
patch can add malicious code, change a build script, or create a hard link through application
behavior outside this tool. Git hooks or later builds are outside its scope. A hostile concurrent
process that can modify the workspace can race the path checks; checks are repeated immediately
before Git, but portable Python plus a git subprocess cannot make the pathname validation and
Git's writes one indivisible filesystem operation. Run it in an isolated workspace whose parent,
Git executable, Git configuration, and environment are trusted. Resource exhaustion by very large
patches is also out of scope.
The guarantee therefore applies only when the gate is the sole actor changing an isolated workspace during a run. In particular, it is not an OS security boundary and does not defend a shared workspace against a concurrent hostile process.
Modes
inspectparses paths and evaluates policy only. It never invokes Git or writes files.checkadditionally requires a Git work tree and runsgit apply --check.applyruns both gates, refuses a dirty tree by default, repeats path validation, then invokesgit apply. Git applies a patch transactionally; a failed apply is not accepted as success.
--allow-dirty relaxes only the clean-tree gate. It does not relax parsing, path, policy, or Git
preflight checks.
Policy
The default allow list is ** and the default deny list is empty. Repeat --allow or --deny to
provide multiple case-sensitive POSIX-style globs. Deny always wins. Paths are evaluated after
--strip N normalization; the default --strip 1 maps conventional a/file and b/file headers
to file. Rename and copy source and destination paths are all gated.
Examples:
patch-gate inspect update.patch --allow 'src/**' --allow 'tests/**' \
--deny 'src/generated/**' --deny '**/*.pem'
Existing symlink components are rejected even when they currently point inside the root. Patches
that create or modify symlinks (120000 mode) and binary Git patches are deliberately unsupported.
Non-canonical symlink modes with the same file-type bits, Gitlinks, other non-regular modes,
reserved .git components, Windows device names, drive paths, alternate streams, and components
with trailing dots or spaces are rejected as well.
Python API
from pathlib import Path
from patch_gate import run_gate
result = run_gate(
Path("change.patch").read_bytes(),
mode="check",
root=Path("/workspace/project"),
allow=("src/**", "tests/**"),
deny=("**/*.pem",),
)
print(result.as_dict())
Development
python -m pip install -e '.[dev]'
pytest -q
License
Apache-2.0. See LICENSE.
Built and maintained by Gexiro Global Enterprises Ltd.
Part of the Gexiro open-source toolkit.
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 patch_gate-0.1.0.tar.gz.
File metadata
- Download URL: patch_gate-0.1.0.tar.gz
- Upload date:
- Size: 21.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/7.0.0 CPython/3.12.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
02286a73742c3b7f8b8f40e9ff7d1b188fb5d8991a3d27f07724a31f66a35eb2
|
|
| MD5 |
1dae6284d81934de6294f646d2cc9d50
|
|
| BLAKE2b-256 |
8294f99466d1d4a802a3539f8f77ac69a306d834f7e4efce5ed34212dfa9045b
|
File details
Details for the file patch_gate-0.1.0-py3-none-any.whl.
File metadata
- Download URL: patch_gate-0.1.0-py3-none-any.whl
- Upload date:
- Size: 17.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/7.0.0 CPython/3.12.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9931f9632740e2beb432cbcf4ef845c6dd18513072e33a3645f8fa897b1a9c2c
|
|
| MD5 |
4e029d7e31024e88b8623a44b30c9a5b
|
|
| BLAKE2b-256 |
3142ee788ae8cbb4cf4e65883b904e110c1c60d8db13bfba6aa703cbea23974e
|