2009-03-06 13:25:46 +01:00
|
|
|
{pkgs, config, ...}:
|
2009-05-20 17:43:31 +02:00
|
|
|
|
2009-05-25 17:36:57 +02:00
|
|
|
with pkgs.lib;
|
|
|
|
|
2009-03-06 13:25:46 +01:00
|
|
|
let
|
2009-05-25 17:36:57 +02:00
|
|
|
|
2009-08-16 19:24:59 +02:00
|
|
|
inherit (config.security) wrapperDir;
|
|
|
|
|
2009-05-25 17:36:57 +02:00
|
|
|
setuidWrapper = pkgs.stdenv.mkDerivation {
|
|
|
|
name = "setuid-wrapper";
|
|
|
|
buildCommand = ''
|
|
|
|
ensureDir $out/bin
|
2009-08-16 23:11:04 +02:00
|
|
|
gcc -Wall -O2 -DWRAPPER_DIR=\"${wrapperDir}\" \
|
|
|
|
${./setuid-wrapper.c} -o $out/bin/setuid-wrapper
|
2009-05-25 17:36:57 +02:00
|
|
|
strip -s $out/bin/setuid-wrapper
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2009-03-06 13:25:46 +01:00
|
|
|
in
|
2009-05-20 17:43:31 +02:00
|
|
|
|
2009-03-06 13:25:46 +01:00
|
|
|
{
|
2009-08-16 16:54:31 +02:00
|
|
|
|
|
|
|
###### interface
|
|
|
|
|
|
|
|
options = {
|
|
|
|
|
|
|
|
security.setuidPrograms = mkOption {
|
2009-08-16 23:11:04 +02:00
|
|
|
default = [];
|
2009-08-16 16:54:31 +02:00
|
|
|
description = ''
|
2012-03-01 21:10:46 +01:00
|
|
|
The Nix store cannot contain setuid/setgid programs directly.
|
|
|
|
For this reason, NixOS can automatically generate wrapper
|
|
|
|
programs that have the necessary privileges. This option
|
|
|
|
lists the names of programs in the system environment for
|
|
|
|
which setuid root wrappers should be created.
|
2009-08-16 16:54:31 +02:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
security.setuidOwners = mkOption {
|
|
|
|
default = [];
|
|
|
|
example =
|
|
|
|
[ { program = "sendmail";
|
|
|
|
owner = "nobody";
|
|
|
|
group = "postdrop";
|
|
|
|
setuid = false;
|
|
|
|
setgid = true;
|
|
|
|
}
|
|
|
|
];
|
|
|
|
description = ''
|
|
|
|
This option allows the ownership and permissions on the setuid
|
|
|
|
wrappers for specific programs to be overriden from the
|
|
|
|
default (setuid root, but not setgid root).
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
security.wrapperDir = mkOption {
|
|
|
|
default = "/var/setuid-wrappers";
|
|
|
|
description = ''
|
|
|
|
This option defines the path to the setuid wrappers. It
|
2012-03-01 21:10:46 +01:00
|
|
|
should generally not be overriden. Some packages in Nixpkgs
|
|
|
|
expect that <option>wrapperDir</option> is
|
|
|
|
<filename>/var/setuid-wrappers</filename>.
|
2009-08-16 16:54:31 +02:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
###### implementation
|
|
|
|
|
|
|
|
config = {
|
2009-08-16 23:11:04 +02:00
|
|
|
|
|
|
|
security.setuidPrograms =
|
2010-10-10 13:35:15 +02:00
|
|
|
[ "fusermount" "wodim" "cdrdao" "growisofs" ];
|
2009-08-16 23:11:04 +02:00
|
|
|
|
2009-08-16 16:54:31 +02:00
|
|
|
system.activationScripts.setuid =
|
|
|
|
let
|
2009-08-16 19:24:59 +02:00
|
|
|
setuidPrograms =
|
|
|
|
(map (x: { program = x; owner = "root"; group = "root"; setuid = true; })
|
2012-03-01 21:10:46 +01:00
|
|
|
config.security.setuidPrograms)
|
2009-08-16 19:24:59 +02:00
|
|
|
++ config.security.setuidOwners;
|
|
|
|
|
|
|
|
makeSetuidWrapper =
|
|
|
|
{ program
|
|
|
|
, source ? ""
|
|
|
|
, owner ? "nobody"
|
|
|
|
, group ? "nogroup"
|
|
|
|
, setuid ? false
|
|
|
|
, setgid ? false
|
2010-10-20 11:29:02 +02:00
|
|
|
, permissions ? "u+rx,g+x,o+x"
|
2009-08-16 19:24:59 +02:00
|
|
|
}:
|
|
|
|
|
2009-08-16 16:54:31 +02:00
|
|
|
''
|
2009-08-16 19:24:59 +02:00
|
|
|
source=${if source != "" then source else "$(PATH=$SETUID_PATH type -tP ${program})"}
|
|
|
|
if test -z "$source"; then
|
|
|
|
# If we can't find the program, fall back to the
|
|
|
|
# system profile.
|
2011-10-30 16:19:58 +01:00
|
|
|
source=/nix/var/nix/profiles/default/bin/${program}
|
2009-08-16 19:24:59 +02:00
|
|
|
fi
|
2011-09-14 20:20:50 +02:00
|
|
|
|
2009-08-16 19:24:59 +02:00
|
|
|
cp ${setuidWrapper}/bin/setuid-wrapper ${wrapperDir}/${program}
|
|
|
|
echo -n "$source" > ${wrapperDir}/${program}.real
|
|
|
|
chmod 0000 ${wrapperDir}/${program} # to prevent races
|
|
|
|
chown ${owner}.${group} ${wrapperDir}/${program}
|
|
|
|
chmod "u${if setuid then "+" else "-"}s,g${if setgid then "+" else "-"}s,${permissions}" ${wrapperDir}/${program}
|
|
|
|
'';
|
2009-08-16 16:54:31 +02:00
|
|
|
|
2011-09-14 20:20:50 +02:00
|
|
|
in stringAfter [ "users" ]
|
2009-08-16 16:54:31 +02:00
|
|
|
''
|
2009-05-25 17:36:57 +02:00
|
|
|
# Look in the system path and in the default profile for
|
2009-08-16 19:24:59 +02:00
|
|
|
# programs to be wrapped.
|
|
|
|
SETUID_PATH=${config.system.path}/bin:${config.system.path}/sbin
|
|
|
|
|
|
|
|
if test -d ${wrapperDir}; then rm -f ${wrapperDir}/*; fi # */
|
|
|
|
mkdir -p ${wrapperDir}
|
|
|
|
|
|
|
|
${concatMapStrings makeSetuidWrapper setuidPrograms}
|
2010-09-13 17:41:38 +02:00
|
|
|
'';
|
2009-08-16 16:54:31 +02:00
|
|
|
|
2009-05-20 17:43:31 +02:00
|
|
|
};
|
2011-09-14 20:20:50 +02:00
|
|
|
|
2009-03-06 13:25:46 +01:00
|
|
|
}
|