2014-04-14 18:26:48 +04:00
|
|
|
|
{ config, lib, pkgs, ... }:
|
2009-01-02 19:07:15 +03:00
|
|
|
|
|
2014-04-14 18:26:48 +04:00
|
|
|
|
with lib;
|
2009-08-16 18:49:14 +04:00
|
|
|
|
|
2009-01-02 19:07:15 +03:00
|
|
|
|
let
|
2009-08-16 18:49:14 +04:00
|
|
|
|
|
|
|
|
|
cfg = config.security.sudo;
|
2011-09-14 22:20:50 +04:00
|
|
|
|
|
2018-01-17 17:56:08 +03:00
|
|
|
|
toUserString = user: if (isInt user) then "#${toString user}" else "${user}";
|
|
|
|
|
toGroupString = group: if (isInt group) then "%#${toString group}" else "%${group}";
|
|
|
|
|
|
|
|
|
|
toCommandOptionsString = options:
|
|
|
|
|
"${concatStringsSep ":" options}${optionalString (length options != 0) ":"} ";
|
|
|
|
|
|
|
|
|
|
toCommandsString = commands:
|
|
|
|
|
concatStringsSep ", " (
|
|
|
|
|
map (command:
|
|
|
|
|
if (isString command) then
|
|
|
|
|
command
|
|
|
|
|
else
|
|
|
|
|
"${toCommandOptionsString command.options}${command.command}"
|
|
|
|
|
) commands
|
|
|
|
|
);
|
|
|
|
|
|
2009-08-16 18:49:14 +04:00
|
|
|
|
in
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
###### interface
|
2009-01-02 19:07:15 +03:00
|
|
|
|
|
2023-09-07 14:57:20 +03:00
|
|
|
|
options.security.sudo = {
|
2023-09-07 15:50:48 +03:00
|
|
|
|
|
2023-09-07 15:50:48 +03:00
|
|
|
|
defaultOptions = mkOption {
|
|
|
|
|
type = with types; listOf str;
|
|
|
|
|
default = [ "SETENV" ];
|
|
|
|
|
description = mdDoc ''
|
|
|
|
|
Options used for the default rules, granting `root` and the
|
|
|
|
|
`wheel` group permission to run any command as any user.
|
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
|
2023-11-10 05:30:39 +03:00
|
|
|
|
enable = mkOption {
|
|
|
|
|
type = types.bool;
|
|
|
|
|
default = true;
|
|
|
|
|
description =
|
|
|
|
|
lib.mdDoc ''
|
|
|
|
|
Whether to enable the {command}`sudo` command, which
|
|
|
|
|
allows non-root users to execute commands as root.
|
|
|
|
|
'';
|
|
|
|
|
};
|
2009-08-16 18:49:14 +04:00
|
|
|
|
|
2023-09-07 14:57:20 +03:00
|
|
|
|
package = mkPackageOption pkgs "sudo" { };
|
2020-10-01 14:00:52 +03:00
|
|
|
|
|
2023-09-07 14:57:20 +03:00
|
|
|
|
wheelNeedsPassword = mkOption {
|
2013-10-30 20:37:45 +04:00
|
|
|
|
type = types.bool;
|
2012-08-13 16:37:32 +04:00
|
|
|
|
default = true;
|
2023-09-07 14:57:20 +03:00
|
|
|
|
description = mdDoc ''
|
|
|
|
|
Whether users of the `wheel` group must
|
|
|
|
|
provide a password to run commands as super user via {command}`sudo`.
|
|
|
|
|
'';
|
2012-08-13 16:37:32 +04:00
|
|
|
|
};
|
|
|
|
|
|
2023-09-07 14:57:20 +03:00
|
|
|
|
execWheelOnly = mkOption {
|
2021-05-05 14:09:45 +03:00
|
|
|
|
type = types.bool;
|
|
|
|
|
default = false;
|
2023-09-07 14:57:20 +03:00
|
|
|
|
description = mdDoc ''
|
2021-05-05 14:09:45 +03: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.
|
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
|
2023-09-07 14:57:20 +03:00
|
|
|
|
configFile = mkOption {
|
2013-10-30 20:37:45 +04:00
|
|
|
|
type = types.lines;
|
2009-08-16 18:49:14 +04:00
|
|
|
|
# Note: if syntax errors are detected in this file, the NixOS
|
|
|
|
|
# configuration will fail to build.
|
2023-09-07 14:57:20 +03:00
|
|
|
|
description = mdDoc ''
|
|
|
|
|
This string contains the contents of the
|
|
|
|
|
{file}`sudoers` file.
|
|
|
|
|
'';
|
2009-01-02 19:07:15 +03:00
|
|
|
|
};
|
2014-10-30 15:59:21 +03:00
|
|
|
|
|
2023-09-07 14:57:20 +03:00
|
|
|
|
extraRules = mkOption {
|
|
|
|
|
description = mdDoc ''
|
2018-01-17 17:56:08 +03:00
|
|
|
|
Define specific rules to be in the {file}`sudoers` file.
|
2018-07-01 22:26:07 +03: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 17:56:08 +03:00
|
|
|
|
'';
|
|
|
|
|
default = [];
|
2021-10-03 19:06:03 +03:00
|
|
|
|
example = literalExpression ''
|
2020-02-10 03:37:07 +03: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" ]; } ]; }
|
|
|
|
|
]
|
|
|
|
|
'';
|
2018-01-17 17:56:08 +03:00
|
|
|
|
type = with types; listOf (submodule {
|
|
|
|
|
options = {
|
|
|
|
|
users = mkOption {
|
2019-08-08 23:48:27 +03:00
|
|
|
|
type = with types; listOf (either str int);
|
2023-09-07 14:57:20 +03:00
|
|
|
|
description = mdDoc ''
|
2018-01-17 17:56:08 +03:00
|
|
|
|
The usernames / UIDs this rule should apply for.
|
|
|
|
|
'';
|
|
|
|
|
default = [];
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
groups = mkOption {
|
2019-08-08 23:48:27 +03:00
|
|
|
|
type = with types; listOf (either str int);
|
2023-09-07 14:57:20 +03:00
|
|
|
|
description = mdDoc ''
|
2018-01-17 17:56:08 +03:00
|
|
|
|
The groups / GIDs this rule should apply for.
|
|
|
|
|
'';
|
|
|
|
|
default = [];
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
host = mkOption {
|
2019-08-08 23:48:27 +03:00
|
|
|
|
type = types.str;
|
2018-01-17 17:56:08 +03:00
|
|
|
|
default = "ALL";
|
2023-09-07 14:57:20 +03:00
|
|
|
|
description = mdDoc ''
|
2018-01-17 17:56:08 +03:00
|
|
|
|
For what host this rule should apply.
|
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
runAs = mkOption {
|
2019-08-08 23:48:27 +03:00
|
|
|
|
type = with types; str;
|
2018-01-17 17:56:08 +03:00
|
|
|
|
default = "ALL:ALL";
|
2023-09-07 14:57:20 +03:00
|
|
|
|
description = mdDoc ''
|
2018-01-17 17:56:08 +03:00
|
|
|
|
Under which user/group the specified command is allowed to run.
|
|
|
|
|
|
|
|
|
|
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"`.
|
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
commands = mkOption {
|
2023-09-07 14:57:20 +03:00
|
|
|
|
description = mdDoc ''
|
2018-01-17 17:56:08 +03:00
|
|
|
|
The commands for which the rule should apply.
|
|
|
|
|
'';
|
2019-08-08 23:48:27 +03:00
|
|
|
|
type = with types; listOf (either str (submodule {
|
2018-01-17 17:56:08 +03:00
|
|
|
|
|
|
|
|
|
options = {
|
|
|
|
|
command = mkOption {
|
2019-08-08 23:48:27 +03:00
|
|
|
|
type = with types; str;
|
2023-09-07 14:57:20 +03:00
|
|
|
|
description = mdDoc ''
|
2018-01-17 17:56:08 +03:00
|
|
|
|
A command being either just a path to a binary to allow any arguments,
|
2022-08-29 20:33:50 +03:00
|
|
|
|
the full command with arguments pre-set or with `""` used as the argument,
|
2018-01-17 17:56:08 +03:00
|
|
|
|
not allowing arguments to the command at all.
|
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
options = mkOption {
|
|
|
|
|
type = with types; listOf (enum [ "NOPASSWD" "PASSWD" "NOEXEC" "EXEC" "SETENV" "NOSETENV" "LOG_INPUT" "NOLOG_INPUT" "LOG_OUTPUT" "NOLOG_OUTPUT" ]);
|
2023-09-07 14:57:20 +03:00
|
|
|
|
description = mdDoc ''
|
2022-08-29 20:33:50 +03:00
|
|
|
|
Options for running the command. Refer to the [sudo manual](https://www.sudo.ws/man/1.7.10/sudoers.man.html).
|
2018-01-17 17:56:08 +03:00
|
|
|
|
'';
|
|
|
|
|
default = [];
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
}));
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
});
|
|
|
|
|
};
|
|
|
|
|
|
2023-09-07 14:57:20 +03:00
|
|
|
|
extraConfig = mkOption {
|
2014-10-30 15:59:21 +03:00
|
|
|
|
type = types.lines;
|
|
|
|
|
default = "";
|
2023-09-07 14:57:20 +03:00
|
|
|
|
description = mdDoc ''
|
2014-10-30 15:59:21 +03:00
|
|
|
|
Extra configuration text appended to {file}`sudoers`.
|
|
|
|
|
'';
|
|
|
|
|
};
|
2009-01-02 19:07:15 +03:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
2009-08-16 18:49:14 +04:00
|
|
|
|
###### implementation
|
2009-01-02 19:07:15 +03:00
|
|
|
|
|
2009-08-16 18:49:14 +04:00
|
|
|
|
config = mkIf cfg.enable {
|
2023-11-12 14:08:26 +03: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 15:56:40 +03:00
|
|
|
|
|
2023-09-07 15:46:04 +03:00
|
|
|
|
security.sudo.extraRules =
|
|
|
|
|
let
|
|
|
|
|
defaultRule = { users ? [], groups ? [], opts ? [] }: [ {
|
|
|
|
|
inherit users groups;
|
|
|
|
|
commands = [ {
|
|
|
|
|
command = "ALL";
|
2023-09-07 15:50:48 +03:00
|
|
|
|
options = opts ++ cfg.defaultOptions;
|
|
|
|
|
} ];
|
2023-09-07 15:46:04 +03:00
|
|
|
|
} ];
|
|
|
|
|
in mkMerge [
|
|
|
|
|
# This is ordered before users' `mkBefore` rules,
|
|
|
|
|
# so as not to introduce unexpected changes.
|
|
|
|
|
(mkOrder 400 (defaultRule { users = [ "root" ]; }))
|
|
|
|
|
|
|
|
|
|
# This is ordered to show before (most) other rules, but
|
|
|
|
|
# late-enough for a user to `mkBefore` it.
|
|
|
|
|
(mkOrder 600 (defaultRule {
|
|
|
|
|
groups = [ "wheel" ];
|
|
|
|
|
opts = (optional (!cfg.wheelNeedsPassword) "NOPASSWD");
|
|
|
|
|
}))
|
|
|
|
|
];
|
2023-09-21 15:56:40 +03:00
|
|
|
|
|
2023-09-05 00:01:09 +03:00
|
|
|
|
security.sudo.configFile = concatStringsSep "\n" (filter (s: s != "") [
|
2012-11-23 18:14:16 +04:00
|
|
|
|
''
|
2014-10-30 15:59:21 +03:00
|
|
|
|
# Don't edit this file. Set the NixOS options ‘security.sudo.configFile’
|
2018-01-17 17:56:08 +03:00
|
|
|
|
# or ‘security.sudo.extraRules’ instead.
|
2023-09-05 00:06:12 +03:00
|
|
|
|
''
|
2023-10-26 01:24:04 +03:00
|
|
|
|
(pipe cfg.extraRules [
|
|
|
|
|
(filter (rule: length rule.commands != 0))
|
|
|
|
|
(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)
|
|
|
|
|
]))
|
|
|
|
|
flatten
|
|
|
|
|
(concatStringsSep "\n")
|
|
|
|
|
])
|
|
|
|
|
"\n"
|
2023-09-05 00:01:09 +03:00
|
|
|
|
(optionalString (cfg.extraConfig != "") ''
|
|
|
|
|
# extraConfig
|
2014-10-30 15:59:21 +03:00
|
|
|
|
${cfg.extraConfig}
|
2023-09-05 00:01:09 +03:00
|
|
|
|
'')
|
|
|
|
|
]);
|
2012-11-23 18:14:16 +04:00
|
|
|
|
|
2021-05-05 14:09:45 +03: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 15:56:40 +03:00
|
|
|
|
sudoedit = {
|
2021-05-05 14:09:45 +03:00
|
|
|
|
source = "${cfg.package.out}/bin/sudoedit";
|
|
|
|
|
inherit owner group setuid permissions;
|
|
|
|
|
};
|
2017-01-29 14:33:56 +03:00
|
|
|
|
};
|
2009-01-02 19:07:15 +03:00
|
|
|
|
|
2023-10-26 02:56:07 +03:00
|
|
|
|
environment.systemPackages = [ cfg.package ];
|
2009-01-02 19:07:15 +03:00
|
|
|
|
|
2022-03-13 20:20:23 +03:00
|
|
|
|
security.pam.services.sudo = { sshAgentAuth = true; usshAuth = true; };
|
2009-01-02 19:07:15 +03:00
|
|
|
|
|
2019-09-14 20:51:29 +03:00
|
|
|
|
environment.etc.sudoers =
|
2014-06-09 00:54:13 +04:00
|
|
|
|
{ source =
|
|
|
|
|
pkgs.runCommand "sudoers"
|
2018-11-08 13:59:03 +03:00
|
|
|
|
{
|
|
|
|
|
src = pkgs.writeText "sudoers-in" cfg.configFile;
|
|
|
|
|
preferLocalBuild = true;
|
|
|
|
|
}
|
2023-09-21 15:56:40 +03: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 19:07:15 +03:00
|
|
|
|
mode = "0440";
|
2009-08-16 18:49:14 +04:00
|
|
|
|
};
|
|
|
|
|
|
2009-01-02 19:07:15 +03:00
|
|
|
|
};
|
2009-08-16 18:49:14 +04:00
|
|
|
|
|
2009-01-02 19:07:15 +03:00
|
|
|
|
}
|