420f89ceb2
This reverts commit fb6d63f3fd
.
I really hope this finally fixes #99236: evaluation on Hydra.
This time I really did check basically the same commit on Hydra:
https://hydra.nixos.org/eval/1618011
Right now I don't have energy to find what exactly is wrong in the
commit, and it doesn't seem important in comparison to nixos-unstable
channel being stuck on a commit over one week old.
50 lines
1.3 KiB
Nix
50 lines
1.3 KiB
Nix
{ config, lib, pkgs, ... }:
|
|
let
|
|
cfg = config.security.apparmor;
|
|
in
|
|
with lib;
|
|
{
|
|
imports = [
|
|
(mkRenamedOptionModule [ "security" "virtualization" "flushL1DataCache" ] [ "security" "virtualisation" "flushL1DataCache" ])
|
|
];
|
|
|
|
options.security.apparmor.confineSUIDApplications = mkOption {
|
|
type = types.bool;
|
|
default = true;
|
|
description = ''
|
|
Install AppArmor profiles for commonly-used SUID application
|
|
to mitigate potential privilege escalation attacks due to bugs
|
|
in such applications.
|
|
|
|
Currently available profiles: ping
|
|
'';
|
|
};
|
|
|
|
config = mkIf (cfg.confineSUIDApplications) {
|
|
security.apparmor.profiles = [ (pkgs.writeText "ping" ''
|
|
#include <tunables/global>
|
|
/run/wrappers/bin/ping {
|
|
#include <abstractions/base>
|
|
#include <abstractions/consoles>
|
|
#include <abstractions/nameservice>
|
|
|
|
capability net_raw,
|
|
capability setuid,
|
|
network inet raw,
|
|
|
|
${pkgs.stdenv.cc.libc.out}/lib/*.so mr,
|
|
${pkgs.libcap.lib}/lib/libcap.so* mr,
|
|
${pkgs.attr.out}/lib/libattr.so* mr,
|
|
|
|
${pkgs.iputils}/bin/ping mixr,
|
|
|
|
#/etc/modules.conf r,
|
|
|
|
## Site-specific additions and overrides. See local/README for details.
|
|
##include <local/bin.ping>
|
|
}
|
|
'') ];
|
|
};
|
|
|
|
}
|