* Add some options to allow setting PolKit permissions.
svn path=/nixos/trunk/; revision=28729
This commit is contained in:
parent
a84ada1d92
commit
7980c71d9c
@ -3,6 +3,9 @@
|
|||||||
with pkgs.lib;
|
with pkgs.lib;
|
||||||
|
|
||||||
let
|
let
|
||||||
|
|
||||||
|
cfg = config.security.polkit;
|
||||||
|
|
||||||
pkWrapper = pkgs.stdenv.mkDerivation {
|
pkWrapper = pkgs.stdenv.mkDerivation {
|
||||||
name = "polkit-wrapper";
|
name = "polkit-wrapper";
|
||||||
helper = "libexec/polkit-1/polkit-agent-helper-1";
|
helper = "libexec/polkit-1/polkit-agent-helper-1";
|
||||||
@ -14,39 +17,113 @@ let
|
|||||||
mkdir -pv $out
|
mkdir -pv $out
|
||||||
lndir ${pkgs.polkit} $out
|
lndir ${pkgs.polkit} $out
|
||||||
|
|
||||||
|
# !!! I'm pretty sure the wrapper doesn't work because
|
||||||
|
# libpolkit-agent-1.so has a hard-coded reference to
|
||||||
|
# polkit-agent-helper-1.
|
||||||
rm $out/$helper
|
rm $out/$helper
|
||||||
ln -sv ${config.security.wrapperDir}/polkit-agent-helper-1 $out/$helper
|
ln -sv ${config.security.wrapperDir}/polkit-agent-helper-1 $out/$helper
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
in
|
in
|
||||||
|
|
||||||
{
|
{
|
||||||
|
|
||||||
config = {
|
options = {
|
||||||
|
|
||||||
environment = {
|
security.polkit.enable = mkOption {
|
||||||
systemPackages = [ pkWrapper ];
|
default = true;
|
||||||
pathsToLink = [ "/share/polkit-1" "/etc/polkit-1" ];
|
description = "Whether to enable PolKit.";
|
||||||
etc = singleton
|
|
||||||
{ source = "${config.system.path}/etc/polkit-1";
|
|
||||||
target = "polkit-1";
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
security.polkit.permissions = mkOption {
|
||||||
|
default = "";
|
||||||
|
example =
|
||||||
|
''
|
||||||
|
[Disallow Users To Suspend]
|
||||||
|
Identity=unix-group:users
|
||||||
|
Action=org.freedesktop.upower.*
|
||||||
|
ResultAny=no
|
||||||
|
ResultInactive=no
|
||||||
|
ResultActive=no
|
||||||
|
|
||||||
|
[Allow Anybody To Eject Disks]
|
||||||
|
Identity=unix-user:*
|
||||||
|
Action=org.freedesktop.udisks.drive-eject
|
||||||
|
ResultAny=yes
|
||||||
|
ResultInactive=yes
|
||||||
|
ResultActive=yes
|
||||||
|
|
||||||
|
[Allow Alice To Mount Filesystems After Admin Authentication]
|
||||||
|
Identity=unix-user:alice
|
||||||
|
Action=org.freedesktop.udisks.filesystem-mount
|
||||||
|
ResultAny=auth_admin
|
||||||
|
ResultInactive=auth_admin
|
||||||
|
ResultActive=auth_admin
|
||||||
|
'';
|
||||||
|
description =
|
||||||
|
''
|
||||||
|
Allows the default permissions of privileged actions to be overriden.
|
||||||
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
|
security.polkit.adminIdentities = mkOption {
|
||||||
|
default = "unix-user:0;unix-group:wheel";
|
||||||
|
example = "";
|
||||||
|
description =
|
||||||
|
''
|
||||||
|
Specifies which users are considered “administrators”, for those
|
||||||
|
actions that require the user to authenticate as an
|
||||||
|
administrator (i.e. have a <literal>auth_admin</literal>
|
||||||
|
value). By default, this is the <literal>root</literal>
|
||||||
|
user and all users in the <literal>wheel</literal> group.
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
config = mkIf cfg.enable {
|
||||||
|
|
||||||
|
environment.systemPackages = [ pkWrapper ];
|
||||||
|
|
||||||
|
# The polkit daemon reads action files
|
||||||
|
environment.pathsToLink = [ "/share/polkit-1/actions" ];
|
||||||
|
|
||||||
|
environment.etc =
|
||||||
|
[ # No idea what the "null backend" is, but it seems to need this.
|
||||||
|
{ source = "${pkgs.polkit}/etc/polkit-1/nullbackend.conf.d";
|
||||||
|
target = "polkit-1/nullbackend.conf.d";
|
||||||
|
}
|
||||||
|
|
||||||
|
# This file determines what users are considered
|
||||||
|
# "administrators".
|
||||||
|
{ source = pkgs.writeText "10-nixos.conf"
|
||||||
|
''
|
||||||
|
[Configuration]
|
||||||
|
AdminIdentities=${cfg.adminIdentities}
|
||||||
|
'';
|
||||||
|
target = "polkit-1/localauthority.conf.d/10-nixos.conf";
|
||||||
|
}
|
||||||
|
|
||||||
|
{ source = pkgs.writeText "org.nixos.pkla" cfg.permissions;
|
||||||
|
target = "polkit-1/localauthority/10-vendor.d/org.nixos.pkla";
|
||||||
|
}
|
||||||
|
];
|
||||||
|
|
||||||
services.dbus.packages = [ pkWrapper ];
|
services.dbus.packages = [ pkWrapper ];
|
||||||
|
|
||||||
security = {
|
security.pam.services = [ { name = "polkit-1"; } ];
|
||||||
pam.services = [ { name = "polkit-1"; } ];
|
|
||||||
setuidPrograms = [ "pkexec" ];
|
|
||||||
|
|
||||||
setuidOwners = singleton
|
security.setuidPrograms = [ "pkexec" ];
|
||||||
|
|
||||||
|
security.setuidOwners = singleton
|
||||||
{ program = "polkit-agent-helper-1";
|
{ program = "polkit-agent-helper-1";
|
||||||
owner = "root";
|
owner = "root";
|
||||||
group = "root";
|
group = "root";
|
||||||
setuid = true;
|
setuid = true;
|
||||||
source = pkgs.polkit + "/" + pkWrapper.helper;
|
source = pkgs.polkit + "/" + pkWrapper.helper;
|
||||||
};
|
};
|
||||||
};
|
|
||||||
|
|
||||||
system.activationScripts.polkit =
|
system.activationScripts.polkit =
|
||||||
''
|
''
|
||||||
|
Loading…
x
Reference in New Issue
Block a user