Skip to main content

Safety-first tool to snapshot and restore filesystem ownership and permissions.

Project description

Licence Gitea Release pre-commit

chguard

chguard logo

chguard is a safety-first command-line tool that snapshots and restores filesystem ownership and permissions.

Think of it as a guardrail around chmod and chown: it records the current state, shows you exactly what would change, and only applies changes after explicit confirmation.

Features

Snapshots ownership and permissions

Records numeric uid, gid, and file mode for files and directories.

Preview before restore

Always shows a clear, readable table of differences before applying changes.

Interactive confirmation

A single confirmation prompt at the end of a restore (default: No).

Dry-run mode

Preview restore operations without prompting or applying changes.

Wrapper mode (automatic snapshots)

chguard can also run as a wrapper around ownership and permission commands. In this mode, chguard automatically saves a snapshot before the command runs, so the user can easily restore the previous state if needed.

Supported commands

Wrapper mode is intentionally limited to commands that modify filesystem metadata only:

  • chown
  • chmod
  • chgrp

Other commands are rejected to avoid giving a false sense of protection.

Automatic snapshot names

Snapshots created in wrapper mode are named automatically, for example:

auto-20251230-161301

Auto-generated snapshots are visually distinguished in the output so they are easy to identify.

Scope control

Restore:

  • both ownership and permissions (default)
  • permissions only
  • ownership only

Safe by design

  • Never creates, deletes, or moves files
  • Missing files are ignored
  • New files are ignored
  • Symbolic links are skipped entirely
  • Requires sudo only when necessary

Non-Goals

chguard deliberately does not:

  • restore deleted files
  • remove newly created files
  • track file contents or checksums
  • manage ACLs or extended attributes
  • provide full “undo” semantics

It only concerns itself with ownership and permissions.

Installation

From GuardUtils package repo

This is the preferred method of installation.

Debian/Ubuntu

1) Import the GPG key

sudo mkdir -p /usr/share/keyrings
curl -fsSL https://repo.sysmd.uk/guardutils/guardutils.gpg | sudo gpg --dearmor -o /usr/share/keyrings/guardutils.gpg

The GPG fingerprint is 0032C71FA6A11EF9567D4434C5C06BD4603C28B1.

2) Add the APT source

echo "deb [arch=amd64 signed-by=/usr/share/keyrings/guardutils.gpg] https://repo.sysmd.uk/guardutils/debian stable main" | sudo tee /etc/apt/sources.list.d/guardutils.list

3) Update and install

sudo apt update
sudo apt install chguard

Fedora/RHEL

1) Import the GPG key

sudo rpm --import https://repo.sysmd.uk/guardutils/guardutils.gpg

2) Add the repository configuration

sudo tee /etc/yum.repos.d/guardutils.repo > /dev/null << 'EOF'
[guardutils]
name=GuardUtils Repository
baseurl=https://repo.sysmd.uk/guardutils/rpm/$basearch
enabled=1
gpgcheck=1
repo_gpgcheck=1
gpgkey=https://repo.sysmd.uk/guardutils/guardutils.gpg
EOF

4) Update and install

sudo dnf upgrade --refresh
sudo dnf install chguard

From PyPI

pip install chguard

From this repository

git clone https://git.sysmd.uk/guardutils/chguard.git
cd chguard/
poetry install

This installs the chguard CLI into the Poetry environment.

Usage

Save a state

chguard --save /srv/app --name app-baseline

If the path contains root-owned files, saving requires sudo.

List saved states

chguard --list

Example output:

app-baseline   /srv/app   2025-12-20 18:11:08 +00:00

Restore a state (preview only)

chguard --restore app-baseline

This shows a table of ownership and permission differences.

Restore with confirmation

chguard --restore app-baseline

You will be prompted:

Do you want to restore this state? (y/N)

The default answer is No.

Dry-run

chguard --restore app-baseline --dry-run

Restore only permissions or only ownership

chguard --restore app-baseline --permissions
chguard --restore app-baseline --owner

Wrapper mode

Use -- to separate chguard arguments from the wrapped command:

chguard -- chown user:group file
chguard -- chmod 755 file
chguard -- chgrp staff file

Privilege model

chguard never escalates privileges automatically

  • Saving fails if root-owned files are present and the user is not root
  • Restoring fails if changes require elevated privileges
  • Preview and dry-run operations never require sudo

Storage

Snapshots are stored in a local SQLite database containing:

  • relative path
  • file type (file or directory)
  • numeric uid / gid
  • numeric mode

Usernames and permission strings are resolved only for display.

TAB completion

Add this to your .bashrc

eval "$(register-python-argcomplete chguard)"

And then

source ~/.bashrc

pre-commit

This project uses pre-commit to run automatic formatting and security checks before each commit (Black, Bandit, and various safety checks).

To enable it:

poetry install
poetry run pre-commit install

This ensures consistent formatting, catches common issues early, and keeps the codebase clean.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

chguard-0.3.1.tar.gz (24.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

chguard-0.3.1-py3-none-any.whl (23.7 kB view details)

Uploaded Python 3

File details

Details for the file chguard-0.3.1.tar.gz.

File metadata

  • Download URL: chguard-0.3.1.tar.gz
  • Upload date:
  • Size: 24.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.4 CPython/3.13.11 Linux/6.18.5-100.fc42.x86_64

File hashes

Hashes for chguard-0.3.1.tar.gz
Algorithm Hash digest
SHA256 6a9e563bc53bb85493cacb23eb74454c6a4c9a7461cece020df07c16aef1330c
MD5 34ac5bca762979e668fced69ac0947da
BLAKE2b-256 8096519272fb5b4098f619d6faaf82dab106c185489b649dbb93aebae24b8fb0

See more details on using hashes here.

File details

Details for the file chguard-0.3.1-py3-none-any.whl.

File metadata

  • Download URL: chguard-0.3.1-py3-none-any.whl
  • Upload date:
  • Size: 23.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.4 CPython/3.13.11 Linux/6.18.5-100.fc42.x86_64

File hashes

Hashes for chguard-0.3.1-py3-none-any.whl
Algorithm Hash digest
SHA256 52a7fe4ac74221f01be1c80249e2015a220881eb67626d5ce9adf8df9b8b6720
MD5 c91340ec138fb04494b61173717abb73
BLAKE2b-256 660c72332a9749583fca0d23d6c17e98ca5af71e32d612a5507641c96a03343f

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page