Skip to content

A better alternative to sudo(-rs)/su β€’ ⚑ Blazing fast β€’ πŸ›‘οΈ Memory-safe β€’ πŸ” Security-oriented

License

Notifications You must be signed in to change notification settings

LeChatP/RootAsRole

Repository files navigation

Build Status Test Status GitHub

RootAsRole (V3.1.1) β€” A better alternative to sudo(-rs)/su β€’ ⚑ Blazing fast β€’ πŸ›‘οΈ Memory-safe β€’ πŸ” Security-oriented

RootAsRole is a Linux/Unix privilege delegation tool based on Role-Based Access Control (RBAC). It empowers administrators to assign precise privileges β€” not full root β€” to users and commands.

πŸ“š Full Documentation for more details

πŸš€ Why you need RootAsRole?

Most Linux systems break the Principle of Least Privilege. Tools like sudo give full root, even if you just need one capability like CAP_NET_RAW.

RootAsRole solves this:

  • Grants only the required capabilities
  • Uses roles and tasks to delegate rights securely
  • Better than sudo, doas, setcap, or pam_cap, see Comparison table below

βš™οΈ Features

πŸ“Š Why It’s Better Than Others

Feature setcap?? doas sudo sudo-rs sr (RootAsRole)
Change user/groups N/A βœ… βœ… βœ… βœ…βœ… mandatory or optional
Environment variables N/A partial βœ… partial βœ…
Specific command matching N/A strict strict & regex strict & wildcard strict & regex
Centralized policy ❌ ❌ βœ… ❌ Planned
Secure signal forwarding N/A ❌ βœ… βœ… Planned
Set capabilities ⚠️ files ❌ ❌ ❌ βœ…
Prevent direct privilege escalation ❌ ❌ ❌ ❌ βœ…
Untrust authorized users ❌ ❌ ❌ ❌ βœ…
Standardized policy format ❌ ❌ ❌ ❌ βœ…
Scalable access control model N/A ❌ ACL ❌ ACL ❌ ACL βœ… RBAC

πŸ“₯ Installation

πŸ”§ From Source

Prerequisites

  • Rust >= 1.76.0
    • You can install Rust by running the following command:
      curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
      (Do not forget to add the cargo bin directory to your PATH with . "$HOME/.cargo/env" command)
  • git
    • You can install git by running the following commands depending on your distribution: Ubuntu : sudo apt-get install git, RedHat : sudo yum install git, ArchLinux : sudo pacman -S git
  • clang (or gcc, but clang is highly recommended)
    • You can install clang by running the following commands depending on your distribution: Ubuntu : sudo apt-get install clang, RedHat : sudo yum install clang, ArchLinux : sudo pacman -S clang

Install Steps

Warning

This installation process configures RaR with all privileges for the user who install the program. See what it does.

  1. git clone https://github.com/LeChatP/RootAsRole
  2. cd RootAsRole
  3. cargo xtask install -bip sudo

Install from Linux distributions

We really need your help to bring the project to Linux distributions repositories! Please contribute πŸ™!

🧰 Usage

Execute privileged commands with a role-based access control system

Usage: sr [OPTIONS] [COMMAND]...

Arguments:
  [COMMAND]...  Command to execute

Options:
  -r, --role <ROLE>  Role to select
  -t, --task <TASK>  Task to select (--role required)
  -u, --user <USER>  User to execute the command as
  -g, --group <GROUP<,GROUP...>> Group(s) to execute the command as
  -E, --preserve-env          Keep environment variables from the current process
  -p, --prompt <PROMPT> Prompt to display
  -i, --info         Display rights of executor
  -h, --help         Print help (see more with '--help')
  -V, --version      Print version

If you're accustomed to utilizing the sudo tool and find it difficult to break that habit, consider creating an alias :

alias sudo="sr"

🏎️ Performance

RootAsRole 3.1.0 introduced CBOR support, significantly boosting performance:

  • ⚑ 77% faster than sudo when using a single rule
  • πŸ“ˆ Scales 40% better than sudo as more rules are added

Performance comparison

πŸ“ sudo-rs matches sudo performance but crashes with >100 rules (won’t fix for now)

Why Performance Matters

When using Ansible (or any automation tool), every task that uses become: true will invoke sr on the target host. With RootAsRole (RaR), each role and task introduces additional access control logic --- this doesn’t slow you down.

πŸ’‘ Here’s the reality: You can reach the performance of 1 sudo rule with ~4000 RaR rules.

That means:

  • You can define thousands of fine-grained rules
  • You enforce better security (POLP) without degrading performance
  • The system stays fast, even at scale

🧱 Configuration

Use the chsr command to:

  • Define roles and tasks
  • Assign them to users or groups

More information in the documentation

Use the capable command to:

  • Analyze specific command rights
  • Generate "credentials" task structure

Use gensr for Ansible to:

  • Auto-generate security policies for your playbooks
  • Detect supply chain attacks by reviewing the generated policy

βœ… Compatibility

  • Linux kernel >= 4.3

πŸ‘₯ Contributors

πŸ–ΌοΈ Logo

This logo were generated using DALL-E 2 AI, for any license issue or plagiarism, please note that is not intentionnal and don't hesitate to contact us.

πŸ“œ Licence notice

This project includes sudo-rs code licensed under the Apache-2 and MIT licenses: We have included cutils.rs, securemem.rs to make work the rpassword.rs file. Indeed, We thought that the password was well managed in this file and we have reused it. As sudo-rs does, rpassword.rs is from the rpassword project (License: Apache-2.0). We use it as a replacement of the rpassword project usage.

πŸ§ͺ Sponsored research

This project was initiated by IRIT and sponsored by both IRIT and Airbus PROTECT through an industrial PhD during 2022 and 2025.

About

A better alternative to sudo(-rs)/su β€’ ⚑ Blazing fast β€’ πŸ›‘οΈ Memory-safe β€’ πŸ” Security-oriented

Topics

Resources

License

Security policy

Stars

Watchers

Forks

Contributors 4

  •  
  •  
  •  
  •  

Languages