doas

From Gentoo Wiki
Jump to:navigation Jump to:search

The doas command provides a way to perform commands as another user. It aims to be a a simplified and lightweight replacement for sudo. The doas tool was originally written for OpenBSD by Ted Unangst. OpenDoas is a port of doas for Linux, which is available as the app-admin/doas package.

Installation

USE flags

USE flags for app-admin/doas Run commands as super/another user (alt sudo) (unofficial port from OpenBSD)

pam Add support for PAM (Pluggable Authentication Modules) - DANGEROUS to arbitrarily flip
persist Adds support for "persist" feature (experimental)

Emerge

root #emerge --ask app-admin/doas

Configuration

The doas tool is configured by the ruleset specified in /etc/doas.conf. By using an empty configuration file the default ruleset will be applied which denies all actions.

Permissions

Create a empty /etc/doas.conf file:

root #touch /etc/doas.conf

Set the recommended ownership and permissions for the /etc/doas.conf file:

root #chown -c root:root /etc/doas.conf
root #chmod -c 0400 /etc/doas.conf

Basic configuration

A simple skeleton configuration could be to specify a rule which allows all users in the wheel group to perform any action as root.

FILE /etc/doas.confAllow all users in the wheel group to execute any command as root
permit :wheel

It's also possible to deny certain actions to specified users. The ruleset is evaluated in a hierarchical manner, thus adding a new rule can override the previous one:

FILE /etc/doas.confDeny a user to execute a command
permit :wheel
deny larry cmd fdisk

The user larry is part of the wheel group and therefore may perform actions available to root, but the second rule denies this user access to the fdisk command.

Authentication

The nopass keyword provides the ability for users in a certain group to perform elevated actions without having to enter a password:

FILE /etc/doas.confAllow all users in the wheel group to perform actions as root without authentication
permit nopass :wheel

Persist

Note
Due to OpenBSD-specific kernel API required by doas to set and clear timeouts, the persist feature is disabled by default in the OpenDoas port.

Using the persist keyword doas can remember an authenticated user and will not require confirmation by password for a time period of five minutes after the last doas command was entered in the terminal window:

FILE /etc/doas.confDo not require passwords for five minutes for all users in the wheel group
permit persist :wheel

Note: Persist support is enabled via the persist USE flag on app-admin/doas

Commands

The doas tool allows the creation of rules which only apply to certain commands.

A rule can be specified to allow a certain user to use a command only available to root:

FILE /etc/doas.confAllow a user to use the reboot command without a password
permit nopass larry cmd /sbin/reboot
Tip
For security reasons, OpenDoas recommends specifying absolute paths like shown above. However, doas can use the target user's PATH in execution. When configuring permit nopass larry cmd reboot instead, larry does not need to specify the directory path.

This allows the user larry to execute doas /sbin/reboot without having to enter a password. This may allow users to use restricted commands without providing complete root access.

Testing

A configuration file can be tested as follows:

user $doas -C /etc/doas.conf

Specifying a command to test if the currently running user has permissions to perform a specific command:

user $doas -C /etc/doas.conf cat

This test will output deny if the currently running user does not have the permissions to execute the cat command.

Permissions can be checked for a specified user via:

user $doas -C /etc/doas.conf cat -u larry

If the user larry has permissions to access cat it may output permit.

Targets

The doas can not only be used to perform actions with root privileges, it also allows to target certain users and groups. The syntax to distinguish between groups (like :wheel) and users (like larry) is a leading colon.

FILE /etc/doas.confAllow a user to perform actions as another user
permit nopass larry as postgres

By adding this rule, the user larry is allowed to perform actions as the postgres user without having to enter a password.

Bash tab completion

By default bash will only tab complete files and directories within the current or referenced directory. To tell bash to complete arguments as if they were separate commands (also leveraging the tab completion settings of other commands) the following can be added to either the users .bashrc, or the global /etc/bashrc.

FILE ~/.bashrcConfigure tab completion
# Configure completion for doas
# -c : Complete arguments as if they were commands
#     (eg: `doas emer<tab>` -> `doas emerge`)
#     (eg: `doas dd status=p<tab>` -> `doas dd status=progress`)
# -f : Complete arguments as if they were directory names (default behaviour)
#     (eg: `doas /bi<tab>` -> `doas /bin/`)
complete -cf doas

Usage

The doas command can be used like sudo:

user $doas emerge -uDN @world

See doas(1) for more information.

See also

  • su — used to adopt the privileges of other users from the system
  • sudo — provides a simple and secure way to configure privilege escalation

External resources