2014-04-14 14:26:48 +00:00
|
|
|
|
{
|
|
|
|
|
config,
|
|
|
|
|
lib,
|
|
|
|
|
pkgs,
|
|
|
|
|
...
|
|
|
|
|
}:
|
2009-01-02 16:07:15 +00:00
|
|
|
|
let
|
2009-08-16 14:49:14 +00:00
|
|
|
|
|
|
|
|
|
cfg = config.security.sudo;
|
2011-09-14 18:20:50 +00:00
|
|
|
|
|
2024-12-08 12:18:22 +00:00
|
|
|
|
toUserString = user: if (lib.isInt user) then "#${toString user}" else "${user}";
|
|
|
|
|
toGroupString = group: if (lib.isInt group) then "%#${toString group}" else "%${group}";
|
2018-01-17 14:56:08 +00:00
|
|
|
|
|
|
|
|
|
toCommandOptionsString =
|
2024-12-08 12:18:22 +00:00
|
|
|
|
options: "${lib.concatStringsSep ":" options}${lib.optionalString (lib.length options != 0) ":"} ";
|
2018-01-17 14:56:08 +00:00
|
|
|
|
|
|
|
|
|
toCommandsString =
|
|
|
|
|
commands:
|
2024-12-08 12:18:22 +00:00
|
|
|
|
lib.concatStringsSep ", " (
|
2018-01-17 14:56:08 +00:00
|
|
|
|
map (
|
|
|
|
|
command:
|
2024-12-08 12:18:22 +00:00
|
|
|
|
if (lib.isString command) then
|
2018-01-17 14:56:08 +00:00
|
|
|
|
command
|
|
|
|
|
else
|
|
|
|
|
"${toCommandOptionsString command.options}${command.command}"
|
|
|
|
|
) commands
|
|
|
|
|
);
|
|
|
|
|
|
2009-08-16 14:49:14 +00:00
|
|
|
|
in
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
###### interface
|
2009-01-02 16:07:15 +00:00
|
|
|
|
|
2023-09-07 11:57:20 +00:00
|
|
|
|
options.security.sudo = {
|
2023-09-07 12:50:48 +00:00
|
|
|
|
|
2024-12-08 12:18:22 +00:00
|
|
|
|
defaultOptions = lib.mkOption {
|
|
|
|
|
type = with lib.types; listOf str;
|
2023-09-07 12:50:48 +00:00
|
|
|
|
default = [ "SETENV" ];
|
|
|
|
|
description = ''
|
|
|
|
|
Options used for the default rules, granting `root` and the
|
|
|
|
|
`wheel` group permission to run any command as any user.
|
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
|
2024-12-08 12:18:22 +00:00
|
|
|
|
enable = lib.mkOption {
|
|
|
|
|
type = lib.types.bool;
|
2023-11-10 02:30:39 +00:00
|
|
|
|
default = true;
|
|
|
|
|
description = ''
|
|
|
|
|
Whether to enable the {command}`sudo` command, which
|
|
|
|
|
allows non-root users to execute commands as root.
|
|
|
|
|
'';
|
|
|
|
|
};
|
2009-08-16 14:49:14 +00:00
|
|
|
|
|
2024-12-08 12:18:22 +00:00
|
|
|
|
package = lib.mkPackageOption pkgs "sudo" { };
|
2020-10-01 11:00:52 +00:00
|
|
|
|
|
2024-12-08 12:18:22 +00:00
|
|
|
|
wheelNeedsPassword = lib.mkOption {
|
|
|
|
|
type = lib.types.bool;
|
2012-08-13 12:37:32 +00:00
|
|
|
|
default = true;
|
2023-09-07 11:57:20 +00:00
|
|
|
|
description = ''
|
|
|
|
|
Whether users of the `wheel` group must
|
|
|
|
|
provide a password to run commands as super user via {command}`sudo`.
|
|
|
|
|
'';
|
2012-08-13 12:37:32 +00:00
|
|
|
|
};
|
|
|
|
|
|
2024-12-08 12:18:22 +00:00
|
|
|
|
execWheelOnly = lib.mkOption {
|
|
|
|
|
type = lib.types.bool;
|
2021-05-05 11:09:45 +00:00
|
|
|
|
default = false;
|
2023-09-07 11:57:20 +00:00
|
|
|
|
description = ''
|
2021-05-05 11:09:45 +00:00
|
|
|
|
Only allow members of the `wheel` group to execute sudo by
|
|
|
|
|
setting the executable's permissions accordingly.
|
|
|
|
|
This prevents users that are not members of `wheel` from
|
|
|
|
|
exploiting vulnerabilities in sudo such as CVE-2021-3156.
|
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
|
2024-12-08 12:18:22 +00:00
|
|
|
|
configFile = lib.mkOption {
|
|
|
|
|
type = lib.types.lines;
|
2009-08-16 14:49:14 +00:00
|
|
|
|
# Note: if syntax errors are detected in this file, the NixOS
|
|
|
|
|
# configuration will fail to build.
|
2023-09-07 11:57:20 +00:00
|
|
|
|
description = ''
|
|
|
|
|
This string contains the contents of the
|
|
|
|
|
{file}`sudoers` file.
|
|
|
|
|
'';
|
2009-01-02 16:07:15 +00:00
|
|
|
|
};
|
2014-10-30 12:59:21 +00:00
|
|
|
|
|
2024-12-08 12:18:22 +00:00
|
|
|
|
extraRules = lib.mkOption {
|
2023-09-07 11:57:20 +00:00
|
|
|
|
description = ''
|
2018-01-17 14:56:08 +00:00
|
|
|
|
Define specific rules to be in the {file}`sudoers` file.
|
2018-07-01 19:26:07 +00:00
|
|
|
|
More specific rules should come after more general ones in order to
|
|
|
|
|
yield the expected behavior. You can use mkBefore/mkAfter to ensure
|
|
|
|
|
this is the case when configuration options are merged.
|
2018-01-17 14:56:08 +00:00
|
|
|
|
'';
|
|
|
|
|
default = [ ];
|
2024-12-08 12:18:22 +00:00
|
|
|
|
example = lib.literalExpression ''
|
2020-02-10 00:37:07 +00:00
|
|
|
|
[
|
|
|
|
|
# Allow execution of any command by all users in group sudo,
|
|
|
|
|
# requiring a password.
|
|
|
|
|
{ groups = [ "sudo" ]; commands = [ "ALL" ]; }
|
|
|
|
|
|
|
|
|
|
# Allow execution of "/home/root/secret.sh" by user `backup`, `database`
|
|
|
|
|
# and the group with GID `1006` without a password.
|
|
|
|
|
{ users = [ "backup" "database" ]; groups = [ 1006 ];
|
|
|
|
|
commands = [ { command = "/home/root/secret.sh"; options = [ "SETENV" "NOPASSWD" ]; } ]; }
|
|
|
|
|
|
|
|
|
|
# Allow all users of group `bar` to run two executables as user `foo`
|
|
|
|
|
# with arguments being pre-set.
|
|
|
|
|
{ groups = [ "bar" ]; runAs = "foo";
|
|
|
|
|
commands =
|
|
|
|
|
[ "/home/baz/cmd1.sh hello-sudo"
|
|
|
|
|
{ command = '''/home/baz/cmd2.sh ""'''; options = [ "SETENV" ]; } ]; }
|
|
|
|
|
]
|
|
|
|
|
'';
|
2024-12-08 12:18:22 +00:00
|
|
|
|
type =
|
|
|
|
|
with lib.types;
|
|
|
|
|
listOf (submodule {
|
2018-01-17 14:56:08 +00:00
|
|
|
|
options = {
|
2024-12-08 12:18:22 +00:00
|
|
|
|
users = lib.mkOption {
|
2019-08-08 20:48:27 +00:00
|
|
|
|
type = with types; listOf (either str int);
|
2023-09-07 11:57:20 +00:00
|
|
|
|
description = ''
|
2018-01-17 14:56:08 +00:00
|
|
|
|
The usernames / UIDs this rule should apply for.
|
|
|
|
|
'';
|
|
|
|
|
default = [ ];
|
|
|
|
|
};
|
2024-12-10 19:26:33 +00:00
|
|
|
|
|
2024-12-08 12:18:22 +00:00
|
|
|
|
groups = lib.mkOption {
|
2019-08-08 20:48:27 +00:00
|
|
|
|
type = with types; listOf (either str int);
|
2023-09-07 11:57:20 +00:00
|
|
|
|
description = ''
|
2018-01-17 14:56:08 +00:00
|
|
|
|
The groups / GIDs this rule should apply for.
|
2024-12-10 19:26:33 +00:00
|
|
|
|
'';
|
2023-09-07 12:50:48 +00:00
|
|
|
|
default = [ ];
|
2024-12-10 19:26:33 +00:00
|
|
|
|
};
|
|
|
|
|
|
2024-12-08 12:18:22 +00:00
|
|
|
|
host = lib.mkOption {
|
2019-08-08 20:48:27 +00:00
|
|
|
|
type = types.str;
|
2018-01-17 14:56:08 +00:00
|
|
|
|
default = "ALL";
|
2023-09-07 11:57:20 +00:00
|
|
|
|
description = ''
|
2018-01-17 14:56:08 +00:00
|
|
|
|
For what host this rule should apply.
|
2024-12-10 19:26:33 +00:00
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
|
2024-12-08 12:18:22 +00:00
|
|
|
|
runAs = lib.mkOption {
|
2019-08-08 20:48:27 +00:00
|
|
|
|
type = with types; str;
|
2018-01-17 14:56:08 +00:00
|
|
|
|
default = "ALL:ALL";
|
2023-09-07 11:57:20 +00:00
|
|
|
|
description = ''
|
2018-01-17 14:56:08 +00:00
|
|
|
|
Under which user/group the specified command is allowed to run.
|
2024-12-10 19:26:33 +00:00
|
|
|
|
|
2018-01-17 14:56:08 +00:00
|
|
|
|
A user can be specified using just the username: `"foo"`.
|
|
|
|
|
It is also possible to specify a user/group combination using `"foo:bar"`
|
|
|
|
|
or to only allow running as a specific group with `":bar"`.
|
2024-12-10 19:26:33 +00:00
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
|
2024-12-08 12:18:22 +00:00
|
|
|
|
commands = lib.mkOption {
|
2023-09-07 11:57:20 +00:00
|
|
|
|
description = ''
|
2018-01-17 14:56:08 +00:00
|
|
|
|
The commands for which the rule should apply.
|
2024-12-10 19:26:33 +00:00
|
|
|
|
'';
|
|
|
|
|
type =
|
2024-04-02 14:15:53 +00:00
|
|
|
|
with types;
|
2024-12-10 19:26:33 +00:00
|
|
|
|
listOf (
|
2019-08-08 20:48:27 +00:00
|
|
|
|
either str (submodule {
|
2024-12-10 19:26:33 +00:00
|
|
|
|
|
2024-12-08 12:18:22 +00:00
|
|
|
|
options = {
|
|
|
|
|
command = lib.mkOption {
|
2019-08-08 20:48:27 +00:00
|
|
|
|
type = with types; str;
|
2023-09-07 11:57:20 +00:00
|
|
|
|
description = ''
|
2018-01-17 14:56:08 +00:00
|
|
|
|
A command being either just a path to a binary to allow any arguments,
|
2022-08-29 17:33:50 +00:00
|
|
|
|
the full command with arguments pre-set or with `""` used as the argument,
|
2018-01-17 14:56:08 +00:00
|
|
|
|
not allowing arguments to the command at all.
|
2024-12-10 19:26:33 +00:00
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
|
2018-01-17 14:56:08 +00:00
|
|
|
|
options = lib.mkOption {
|
2024-12-10 19:26:33 +00:00
|
|
|
|
type =
|
2024-04-02 14:15:53 +00:00
|
|
|
|
with types;
|
2018-01-17 14:56:08 +00:00
|
|
|
|
listOf (enum [
|
2024-04-02 14:15:53 +00:00
|
|
|
|
"NOPASSWD"
|
2024-12-10 19:26:33 +00:00
|
|
|
|
"PASSWD"
|
|
|
|
|
"NOEXEC"
|
|
|
|
|
"EXEC"
|
|
|
|
|
"SETENV"
|
2024-04-02 14:15:53 +00:00
|
|
|
|
"NOSETENV"
|
|
|
|
|
"LOG_INPUT"
|
|
|
|
|
"NOLOG_INPUT"
|
2018-01-17 14:56:08 +00:00
|
|
|
|
"LOG_OUTPUT"
|
2024-04-02 14:15:53 +00:00
|
|
|
|
"NOLOG_OUTPUT"
|
2024-12-10 19:26:33 +00:00
|
|
|
|
"MAIL"
|
|
|
|
|
"NOMAIL"
|
|
|
|
|
"FOLLOW"
|
2024-04-02 14:15:53 +00:00
|
|
|
|
"NOFLLOW"
|
|
|
|
|
"INTERCEPT"
|
|
|
|
|
"NOINTERCEPT"
|
2024-12-10 19:26:33 +00:00
|
|
|
|
]);
|
2023-09-07 11:57:20 +00:00
|
|
|
|
description = ''
|
2018-01-17 14:56:08 +00:00
|
|
|
|
Options for running the command. Refer to the [sudo manual](https://www.sudo.ws/docs/man/1.9.15/sudoers.man/#Tag_Spec).
|
|
|
|
|
'';
|
|
|
|
|
default = [ ];
|
2024-12-10 19:26:33 +00:00
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
})
|
|
|
|
|
);
|
|
|
|
|
};
|
2018-01-17 14:56:08 +00:00
|
|
|
|
};
|
|
|
|
|
});
|
|
|
|
|
};
|
|
|
|
|
|
2024-12-08 12:18:22 +00:00
|
|
|
|
extraConfig = lib.mkOption {
|
|
|
|
|
type = lib.types.lines;
|
2014-10-30 12:59:21 +00:00
|
|
|
|
default = "";
|
2023-09-07 11:57:20 +00:00
|
|
|
|
description = ''
|
2014-10-30 12:59:21 +00:00
|
|
|
|
Extra configuration text appended to {file}`sudoers`.
|
|
|
|
|
'';
|
|
|
|
|
};
|
2009-01-02 16:07:15 +00:00
|
|
|
|
};
|
|
|
|
|
|
2009-08-16 14:49:14 +00:00
|
|
|
|
###### implementation
|
2009-01-02 16:07:15 +00:00
|
|
|
|
|
2024-12-08 12:18:22 +00:00
|
|
|
|
config = lib.mkIf cfg.enable {
|
2023-11-12 11:08:26 +00:00
|
|
|
|
assertions = [
|
|
|
|
|
{
|
|
|
|
|
assertion = cfg.package.pname != "sudo-rs";
|
|
|
|
|
message = ''
|
|
|
|
|
NixOS' `sudo` module does not support `sudo-rs`; see `security.sudo-rs` instead.
|
|
|
|
|
'';
|
|
|
|
|
}
|
|
|
|
|
];
|
2023-09-21 12:56:40 +00:00
|
|
|
|
|
2023-09-07 12:46:04 +00:00
|
|
|
|
security.sudo.extraRules =
|
|
|
|
|
let
|
|
|
|
|
defaultRule =
|
|
|
|
|
{
|
|
|
|
|
users ? [ ],
|
|
|
|
|
groups ? [ ],
|
|
|
|
|
opts ? [ ],
|
|
|
|
|
}:
|
|
|
|
|
[
|
|
|
|
|
{
|
|
|
|
|
inherit users groups;
|
|
|
|
|
commands = [
|
|
|
|
|
{
|
|
|
|
|
command = "ALL";
|
2023-09-07 12:50:48 +00:00
|
|
|
|
options = opts ++ cfg.defaultOptions;
|
|
|
|
|
}
|
2023-09-07 12:46:04 +00:00
|
|
|
|
];
|
|
|
|
|
}
|
2024-12-10 19:26:33 +00:00
|
|
|
|
];
|
2024-12-08 12:18:22 +00:00
|
|
|
|
in
|
|
|
|
|
lib.mkMerge [
|
2023-09-07 12:46:04 +00:00
|
|
|
|
# This is ordered before users' `mkBefore` rules,
|
|
|
|
|
# so as not to introduce unexpected changes.
|
2024-12-08 12:18:22 +00:00
|
|
|
|
(lib.mkOrder 400 (defaultRule {
|
|
|
|
|
users = [ "root" ];
|
|
|
|
|
}))
|
2023-09-07 12:46:04 +00:00
|
|
|
|
|
|
|
|
|
# This is ordered to show before (most) other rules, but
|
|
|
|
|
# late-enough for a user to `mkBefore` it.
|
2024-12-08 12:18:22 +00:00
|
|
|
|
(lib.mkOrder 600 (defaultRule {
|
2023-09-07 12:46:04 +00:00
|
|
|
|
groups = [ "wheel" ];
|
2024-12-08 12:18:22 +00:00
|
|
|
|
opts = (lib.optional (!cfg.wheelNeedsPassword) "NOPASSWD");
|
2023-09-07 12:46:04 +00:00
|
|
|
|
}))
|
|
|
|
|
];
|
2023-09-21 12:56:40 +00:00
|
|
|
|
|
2024-12-08 12:18:22 +00:00
|
|
|
|
security.sudo.configFile = lib.concatStringsSep "\n" (
|
|
|
|
|
lib.filter (s: s != "") [
|
2012-11-23 14:14:16 +00:00
|
|
|
|
''
|
2014-10-30 12:59:21 +00:00
|
|
|
|
# Don't edit this file. Set the NixOS options ‘security.sudo.configFile’
|
2018-01-17 14:56:08 +00:00
|
|
|
|
# or ‘security.sudo.extraRules’ instead.
|
2023-09-04 21:06:12 +00:00
|
|
|
|
''
|
2024-12-08 12:18:22 +00:00
|
|
|
|
(lib.pipe cfg.extraRules [
|
|
|
|
|
(lib.filter (rule: lib.length rule.commands != 0))
|
2023-10-25 22:24:04 +00:00
|
|
|
|
(map (rule: [
|
|
|
|
|
(map (
|
|
|
|
|
user: "${toUserString user} ${rule.host}=(${rule.runAs}) ${toCommandsString rule.commands}"
|
|
|
|
|
) rule.users)
|
|
|
|
|
(map (
|
|
|
|
|
group: "${toGroupString group} ${rule.host}=(${rule.runAs}) ${toCommandsString rule.commands}"
|
|
|
|
|
) rule.groups)
|
|
|
|
|
]))
|
2024-12-08 12:18:22 +00:00
|
|
|
|
lib.flatten
|
|
|
|
|
(lib.concatStringsSep "\n")
|
2023-10-25 22:24:04 +00:00
|
|
|
|
])
|
|
|
|
|
"\n"
|
2024-12-08 12:18:22 +00:00
|
|
|
|
(lib.optionalString (cfg.extraConfig != "") ''
|
2023-09-04 21:01:09 +00:00
|
|
|
|
# extraConfig
|
2014-10-30 12:59:21 +00:00
|
|
|
|
${cfg.extraConfig}
|
2023-09-04 21:01:09 +00:00
|
|
|
|
'')
|
|
|
|
|
]
|
|
|
|
|
);
|
2024-12-10 19:26:33 +00:00
|
|
|
|
|
2021-05-05 11:09:45 +00:00
|
|
|
|
security.wrappers =
|
|
|
|
|
let
|
|
|
|
|
owner = "root";
|
|
|
|
|
group = if cfg.execWheelOnly then "wheel" else "root";
|
|
|
|
|
setuid = true;
|
|
|
|
|
permissions = if cfg.execWheelOnly then "u+rx,g+x" else "u+rx,g+x,o+x";
|
|
|
|
|
in
|
|
|
|
|
{
|
|
|
|
|
sudo = {
|
|
|
|
|
source = "${cfg.package.out}/bin/sudo";
|
|
|
|
|
inherit
|
|
|
|
|
owner
|
|
|
|
|
group
|
|
|
|
|
setuid
|
|
|
|
|
permissions
|
|
|
|
|
;
|
|
|
|
|
};
|
2023-09-21 12:56:40 +00:00
|
|
|
|
sudoedit = {
|
2021-05-05 11:09:45 +00:00
|
|
|
|
source = "${cfg.package.out}/bin/sudoedit";
|
|
|
|
|
inherit
|
|
|
|
|
owner
|
|
|
|
|
group
|
|
|
|
|
setuid
|
|
|
|
|
permissions
|
|
|
|
|
;
|
2024-12-10 19:26:33 +00:00
|
|
|
|
};
|
2021-05-05 11:09:45 +00:00
|
|
|
|
};
|
2009-01-02 16:07:15 +00:00
|
|
|
|
|
2023-10-25 23:56:07 +00:00
|
|
|
|
environment.systemPackages = [ cfg.package ];
|
2009-01-02 16:07:15 +00:00
|
|
|
|
|
2022-03-13 17:20:23 +00:00
|
|
|
|
security.pam.services.sudo = {
|
|
|
|
|
sshAgentAuth = true;
|
|
|
|
|
usshAuth = true;
|
|
|
|
|
};
|
2009-01-02 16:07:15 +00:00
|
|
|
|
|
2019-09-14 17:51:29 +00:00
|
|
|
|
environment.etc.sudoers = {
|
2014-06-08 20:54:13 +00:00
|
|
|
|
source =
|
|
|
|
|
pkgs.runCommand "sudoers"
|
2018-11-08 10:59:03 +00:00
|
|
|
|
{
|
|
|
|
|
src = pkgs.writeText "sudoers-in" cfg.configFile;
|
|
|
|
|
preferLocalBuild = true;
|
|
|
|
|
}
|
2023-09-21 12:56:40 +00:00
|
|
|
|
# Make sure that the sudoers file is syntactically valid.
|
|
|
|
|
# (currently disabled - NIXOS-66)
|
|
|
|
|
"${pkgs.buildPackages.sudo}/sbin/visudo -f $src -c && cp $src $out";
|
2009-01-02 16:07:15 +00:00
|
|
|
|
mode = "0440";
|
2009-08-16 14:49:14 +00:00
|
|
|
|
};
|
|
|
|
|
|
2009-01-02 16:07:15 +00:00
|
|
|
|
};
|
2009-08-16 14:49:14 +00:00
|
|
|
|
|
2009-01-02 16:07:15 +00:00
|
|
|
|
}
|