mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-13 21:50:33 +03:00
nixos/apparmor: Format
This commit is contained in:
parent
39a6fb37ff
commit
4d07e306ad
1 changed files with 152 additions and 100 deletions
|
@ -1,20 +1,42 @@
|
||||||
{ config, lib, pkgs, ... }:
|
{
|
||||||
|
config,
|
||||||
|
lib,
|
||||||
|
pkgs,
|
||||||
|
...
|
||||||
|
}:
|
||||||
let
|
let
|
||||||
inherit (builtins) attrNames head map match readFile;
|
inherit (builtins)
|
||||||
|
attrNames
|
||||||
|
head
|
||||||
|
map
|
||||||
|
match
|
||||||
|
readFile
|
||||||
|
;
|
||||||
inherit (lib) types;
|
inherit (lib) types;
|
||||||
inherit (config.environment) etc;
|
inherit (config.environment) etc;
|
||||||
cfg = config.security.apparmor;
|
cfg = config.security.apparmor;
|
||||||
mkDisableOption = name: lib.mkEnableOption name // {
|
mkDisableOption =
|
||||||
default = true;
|
name:
|
||||||
example = false;
|
lib.mkEnableOption name
|
||||||
};
|
// {
|
||||||
|
default = true;
|
||||||
|
example = false;
|
||||||
|
};
|
||||||
enabledPolicies = lib.filterAttrs (n: p: p.enable) cfg.policies;
|
enabledPolicies = lib.filterAttrs (n: p: p.enable) cfg.policies;
|
||||||
in
|
in
|
||||||
|
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
(lib.mkRemovedOptionModule [ "security" "apparmor" "confineSUIDApplications" ] "Please use the new options: `security.apparmor.policies.<policy>.enable'.")
|
(lib.mkRemovedOptionModule [
|
||||||
(lib.mkRemovedOptionModule [ "security" "apparmor" "profiles" ] "Please use the new option: `security.apparmor.policies'.")
|
"security"
|
||||||
|
"apparmor"
|
||||||
|
"confineSUIDApplications"
|
||||||
|
] "Please use the new options: `security.apparmor.policies.<policy>.enable'.")
|
||||||
|
(lib.mkRemovedOptionModule [
|
||||||
|
"security"
|
||||||
|
"apparmor"
|
||||||
|
"profiles"
|
||||||
|
] "Please use the new option: `security.apparmor.policies'.")
|
||||||
apparmor/includes.nix
|
apparmor/includes.nix
|
||||||
apparmor/profiles.nix
|
apparmor/profiles.nix
|
||||||
];
|
];
|
||||||
|
@ -42,22 +64,27 @@ in
|
||||||
description = ''
|
description = ''
|
||||||
AppArmor policies.
|
AppArmor policies.
|
||||||
'';
|
'';
|
||||||
type = types.attrsOf (types.submodule ({ name, config, ... }: {
|
type = types.attrsOf (
|
||||||
options = {
|
types.submodule (
|
||||||
enable = mkDisableOption "loading of the profile into the kernel";
|
{ name, config, ... }:
|
||||||
enforce = mkDisableOption "enforcing of the policy or only complain in the logs";
|
{
|
||||||
profile = lib.mkOption {
|
options = {
|
||||||
description = "The policy of the profile.";
|
enable = mkDisableOption "loading of the profile into the kernel";
|
||||||
type = types.lines;
|
enforce = mkDisableOption "enforcing of the policy or only complain in the logs";
|
||||||
apply = pkgs.writeText name;
|
profile = lib.mkOption {
|
||||||
};
|
description = "The policy of the profile.";
|
||||||
};
|
type = types.lines;
|
||||||
}));
|
apply = pkgs.writeText name;
|
||||||
default = {};
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
|
)
|
||||||
|
);
|
||||||
|
default = { };
|
||||||
};
|
};
|
||||||
includes = lib.mkOption {
|
includes = lib.mkOption {
|
||||||
type = types.attrsOf types.lines;
|
type = types.attrsOf types.lines;
|
||||||
default = {};
|
default = { };
|
||||||
description = ''
|
description = ''
|
||||||
List of paths to be added to AppArmor's searched paths
|
List of paths to be added to AppArmor's searched paths
|
||||||
when resolving `include` directives.
|
when resolving `include` directives.
|
||||||
|
@ -66,7 +93,7 @@ in
|
||||||
};
|
};
|
||||||
packages = lib.mkOption {
|
packages = lib.mkOption {
|
||||||
type = types.listOf types.package;
|
type = types.listOf types.package;
|
||||||
default = [];
|
default = [ ];
|
||||||
description = "List of packages to be added to AppArmor's include path";
|
description = "List of packages to be added to AppArmor's include path";
|
||||||
};
|
};
|
||||||
enableCache = lib.mkEnableOption ''
|
enableCache = lib.mkEnableOption ''
|
||||||
|
@ -90,13 +117,12 @@ in
|
||||||
};
|
};
|
||||||
|
|
||||||
config = lib.mkIf cfg.enable {
|
config = lib.mkIf cfg.enable {
|
||||||
assertions = map (policy:
|
assertions = map (policy: {
|
||||||
{ assertion = match ".*/.*" policy == null;
|
assertion = match ".*/.*" policy == null;
|
||||||
message = "`security.apparmor.policies.\"${policy}\"' must not contain a slash.";
|
message = "`security.apparmor.policies.\"${policy}\"' must not contain a slash.";
|
||||||
# Because, for instance, aa-remove-unknown uses profiles_names_list() in rc.apparmor.functions
|
# Because, for instance, aa-remove-unknown uses profiles_names_list() in rc.apparmor.functions
|
||||||
# which does not recurse into sub-directories.
|
# which does not recurse into sub-directories.
|
||||||
}
|
}) (attrNames cfg.policies);
|
||||||
) (attrNames cfg.policies);
|
|
||||||
|
|
||||||
environment.systemPackages = [
|
environment.systemPackages = [
|
||||||
pkgs.apparmor-utils
|
pkgs.apparmor-utils
|
||||||
|
@ -105,67 +131,81 @@ in
|
||||||
environment.etc."apparmor.d".source = pkgs.linkFarm "apparmor.d" (
|
environment.etc."apparmor.d".source = pkgs.linkFarm "apparmor.d" (
|
||||||
# It's important to put only enabledPolicies here and not all cfg.policies
|
# It's important to put only enabledPolicies here and not all cfg.policies
|
||||||
# because aa-remove-unknown reads profiles from all /etc/apparmor.d/*
|
# because aa-remove-unknown reads profiles from all /etc/apparmor.d/*
|
||||||
lib.mapAttrsToList (name: p: { inherit name; path = p.profile; }) enabledPolicies ++
|
lib.mapAttrsToList (name: p: {
|
||||||
lib.mapAttrsToList (name: path: { inherit name path; }) cfg.includes
|
inherit name;
|
||||||
|
path = p.profile;
|
||||||
|
}) enabledPolicies
|
||||||
|
++ lib.mapAttrsToList (name: path: { inherit name path; }) cfg.includes
|
||||||
);
|
);
|
||||||
environment.etc."apparmor/parser.conf".text = ''
|
environment.etc."apparmor/parser.conf".text =
|
||||||
|
''
|
||||||
${if cfg.enableCache then "write-cache" else "skip-cache"}
|
${if cfg.enableCache then "write-cache" else "skip-cache"}
|
||||||
cache-loc /var/cache/apparmor
|
cache-loc /var/cache/apparmor
|
||||||
Include /etc/apparmor.d
|
Include /etc/apparmor.d
|
||||||
'' +
|
''
|
||||||
lib.concatMapStrings (p: "Include ${p}/etc/apparmor.d\n") cfg.packages;
|
+ lib.concatMapStrings (p: "Include ${p}/etc/apparmor.d\n") cfg.packages;
|
||||||
# For aa-logprof
|
# For aa-logprof
|
||||||
environment.etc."apparmor/apparmor.conf".text = ''
|
environment.etc."apparmor/apparmor.conf".text = '''';
|
||||||
'';
|
|
||||||
# For aa-logprof
|
# For aa-logprof
|
||||||
environment.etc."apparmor/severity.db".source = pkgs.apparmor-utils + "/etc/apparmor/severity.db";
|
environment.etc."apparmor/severity.db".source = pkgs.apparmor-utils + "/etc/apparmor/severity.db";
|
||||||
environment.etc."apparmor/logprof.conf".source = pkgs.runCommand "logprof.conf" {
|
environment.etc."apparmor/logprof.conf".source =
|
||||||
header = ''
|
pkgs.runCommand "logprof.conf"
|
||||||
[settings]
|
{
|
||||||
# /etc/apparmor.d/ is read-only on NixOS
|
header = ''
|
||||||
profiledir = /var/cache/apparmor/logprof
|
[settings]
|
||||||
inactive_profiledir = /etc/apparmor.d/disable
|
# /etc/apparmor.d/ is read-only on NixOS
|
||||||
# Use: journalctl -b --since today --grep audit: | aa-logprof
|
profiledir = /var/cache/apparmor/logprof
|
||||||
logfiles = /dev/stdin
|
inactive_profiledir = /etc/apparmor.d/disable
|
||||||
|
# Use: journalctl -b --since today --grep audit: | aa-logprof
|
||||||
|
logfiles = /dev/stdin
|
||||||
|
|
||||||
parser = ${pkgs.apparmor-parser}/bin/apparmor_parser
|
parser = ${pkgs.apparmor-parser}/bin/apparmor_parser
|
||||||
ldd = ${pkgs.glibc.bin}/bin/ldd
|
ldd = ${pkgs.glibc.bin}/bin/ldd
|
||||||
logger = ${pkgs.util-linux}/bin/logger
|
logger = ${pkgs.util-linux}/bin/logger
|
||||||
|
|
||||||
# customize how file ownership permissions are presented
|
# customize how file ownership permissions are presented
|
||||||
# 0 - off
|
# 0 - off
|
||||||
# 1 - default of what ever mode the log reported
|
# 1 - default of what ever mode the log reported
|
||||||
# 2 - force the new permissions to be user
|
# 2 - force the new permissions to be user
|
||||||
# 3 - force all perms on the rule to be user
|
# 3 - force all perms on the rule to be user
|
||||||
default_owner_prompt = 1
|
default_owner_prompt = 1
|
||||||
|
|
||||||
custom_includes = /etc/apparmor.d ${lib.concatMapStringsSep " " (p: "${p}/etc/apparmor.d") cfg.packages}
|
custom_includes = /etc/apparmor.d ${
|
||||||
|
lib.concatMapStringsSep " " (p: "${p}/etc/apparmor.d") cfg.packages
|
||||||
|
}
|
||||||
|
|
||||||
[qualifiers]
|
[qualifiers]
|
||||||
${pkgs.runtimeShell} = icnu
|
${pkgs.runtimeShell} = icnu
|
||||||
${pkgs.bashInteractive}/bin/sh = icnu
|
${pkgs.bashInteractive}/bin/sh = icnu
|
||||||
${pkgs.bashInteractive}/bin/bash = icnu
|
${pkgs.bashInteractive}/bin/bash = icnu
|
||||||
${config.users.defaultUserShell} = icnu
|
${config.users.defaultUserShell} = icnu
|
||||||
'';
|
'';
|
||||||
footer = "${pkgs.apparmor-utils}/etc/apparmor/logprof.conf";
|
footer = "${pkgs.apparmor-utils}/etc/apparmor/logprof.conf";
|
||||||
passAsFile = [ "header" ];
|
passAsFile = [ "header" ];
|
||||||
} ''
|
}
|
||||||
cp $headerPath $out
|
''
|
||||||
sed '1,/\[qualifiers\]/d' $footer >> $out
|
cp $headerPath $out
|
||||||
'';
|
sed '1,/\[qualifiers\]/d' $footer >> $out
|
||||||
|
'';
|
||||||
|
|
||||||
boot.kernelParams = [ "apparmor=1" "security=apparmor" ];
|
boot.kernelParams = [
|
||||||
|
"apparmor=1"
|
||||||
|
"security=apparmor"
|
||||||
|
];
|
||||||
|
|
||||||
systemd.services.apparmor = {
|
systemd.services.apparmor = {
|
||||||
after = [
|
after = [
|
||||||
"local-fs.target"
|
"local-fs.target"
|
||||||
"systemd-journald-audit.socket"
|
"systemd-journald-audit.socket"
|
||||||
];
|
];
|
||||||
before = [ "sysinit.target" "shutdown.target" ];
|
before = [
|
||||||
|
"sysinit.target"
|
||||||
|
"shutdown.target"
|
||||||
|
];
|
||||||
conflicts = [ "shutdown.target" ];
|
conflicts = [ "shutdown.target" ];
|
||||||
wantedBy = [ "multi-user.target" ];
|
wantedBy = [ "multi-user.target" ];
|
||||||
unitConfig = {
|
unitConfig = {
|
||||||
Description="Load AppArmor policies";
|
Description = "Load AppArmor policies";
|
||||||
DefaultDependencies = "no";
|
DefaultDependencies = "no";
|
||||||
ConditionSecurity = "apparmor";
|
ConditionSecurity = "apparmor";
|
||||||
};
|
};
|
||||||
|
@ -176,37 +216,49 @@ in
|
||||||
etc."apparmor/parser.conf".source
|
etc."apparmor/parser.conf".source
|
||||||
etc."apparmor.d".source
|
etc."apparmor.d".source
|
||||||
];
|
];
|
||||||
serviceConfig = let
|
serviceConfig =
|
||||||
killUnconfinedConfinables = pkgs.writeShellScript "apparmor-kill" ''
|
let
|
||||||
set -eu
|
killUnconfinedConfinables = pkgs.writeShellScript "apparmor-kill" ''
|
||||||
${pkgs.apparmor-bin-utils}/bin/aa-status --json |
|
set -eu
|
||||||
${pkgs.jq}/bin/jq --raw-output '.processes | .[] | .[] | select (.status == "unconfined") | .pid' |
|
${pkgs.apparmor-bin-utils}/bin/aa-status --json |
|
||||||
xargs --verbose --no-run-if-empty --delimiter='\n' \
|
${pkgs.jq}/bin/jq --raw-output '.processes | .[] | .[] | select (.status == "unconfined") | .pid' |
|
||||||
kill
|
xargs --verbose --no-run-if-empty --delimiter='\n' \
|
||||||
'';
|
kill
|
||||||
commonOpts = p: "--verbose --show-cache ${lib.optionalString (!p.enforce) "--complain "}${p.profile}";
|
'';
|
||||||
in {
|
commonOpts =
|
||||||
Type = "oneshot";
|
p: "--verbose --show-cache ${lib.optionalString (!p.enforce) "--complain "}${p.profile}";
|
||||||
RemainAfterExit = "yes";
|
in
|
||||||
ExecStartPre = "${pkgs.apparmor-utils}/bin/aa-teardown";
|
{
|
||||||
ExecStart = lib.mapAttrsToList (n: p: "${pkgs.apparmor-parser}/bin/apparmor_parser --add ${commonOpts p}") enabledPolicies;
|
Type = "oneshot";
|
||||||
ExecStartPost = lib.optional cfg.killUnconfinedConfinables killUnconfinedConfinables;
|
RemainAfterExit = "yes";
|
||||||
ExecReload =
|
ExecStartPre = "${pkgs.apparmor-utils}/bin/aa-teardown";
|
||||||
# Add or replace into the kernel profiles in enabledPolicies
|
ExecStart = lib.mapAttrsToList (
|
||||||
# (because AppArmor can do that without stopping the processes already confined).
|
n: p: "${pkgs.apparmor-parser}/bin/apparmor_parser --add ${commonOpts p}"
|
||||||
lib.mapAttrsToList (n: p: "${pkgs.apparmor-parser}/bin/apparmor_parser --replace ${commonOpts p}") enabledPolicies ++
|
) enabledPolicies;
|
||||||
# Remove from the kernel any profile whose name is not
|
ExecStartPost = lib.optional cfg.killUnconfinedConfinables killUnconfinedConfinables;
|
||||||
# one of the names within the content of the profiles in enabledPolicies
|
ExecReload =
|
||||||
# (indirectly read from /etc/apparmor.d/*, without recursing into sub-directory).
|
# Add or replace into the kernel profiles in enabledPolicies
|
||||||
# Note that this does not remove profiles dynamically generated by libvirt.
|
# (because AppArmor can do that without stopping the processes already confined).
|
||||||
[ "${pkgs.apparmor-utils}/bin/aa-remove-unknown" ] ++
|
lib.mapAttrsToList (
|
||||||
# Optionally kill the processes which are unconfined but now have a profile loaded
|
n: p: "${pkgs.apparmor-parser}/bin/apparmor_parser --replace ${commonOpts p}"
|
||||||
# (because AppArmor can only start to confine new processes).
|
) enabledPolicies
|
||||||
lib.optional cfg.killUnconfinedConfinables killUnconfinedConfinables;
|
++
|
||||||
ExecStop = "${pkgs.apparmor-utils}/bin/aa-teardown";
|
# Remove from the kernel any profile whose name is not
|
||||||
CacheDirectory = [ "apparmor" "apparmor/logprof" ];
|
# one of the names within the content of the profiles in enabledPolicies
|
||||||
CacheDirectoryMode = "0700";
|
# (indirectly read from /etc/apparmor.d/*, without recursing into sub-directory).
|
||||||
};
|
# Note that this does not remove profiles dynamically generated by libvirt.
|
||||||
|
[ "${pkgs.apparmor-utils}/bin/aa-remove-unknown" ]
|
||||||
|
++
|
||||||
|
# Optionally kill the processes which are unconfined but now have a profile loaded
|
||||||
|
# (because AppArmor can only start to confine new processes).
|
||||||
|
lib.optional cfg.killUnconfinedConfinables killUnconfinedConfinables;
|
||||||
|
ExecStop = "${pkgs.apparmor-utils}/bin/aa-teardown";
|
||||||
|
CacheDirectory = [
|
||||||
|
"apparmor"
|
||||||
|
"apparmor/logprof"
|
||||||
|
];
|
||||||
|
CacheDirectoryMode = "0700";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue