feat(modules/dgn-audit): init
All checks were successful
Check meta / check_meta (pull_request) Successful in 15s
Build all the nodes / netcore00 (pull_request) Successful in 21s
Build all the nodes / netcore02 (pull_request) Successful in 21s
Build all the nodes / netaccess01 (pull_request) Successful in 21s
Build all the nodes / netcore01 (pull_request) Successful in 22s
Run pre-commit on all files / pre-commit (push) Successful in 24s
Check meta / check_dns (pull_request) Successful in 31s
Check workflows / check_workflows (pull_request) Successful in 31s
Build all the nodes / geo01 (pull_request) Successful in 57s
Build all the nodes / hypervisor02 (pull_request) Successful in 1m2s
Build all the nodes / hypervisor01 (pull_request) Successful in 1m2s
Build all the nodes / geo02 (pull_request) Successful in 1m3s
Build all the nodes / hypervisor03 (pull_request) Successful in 1m2s
Build all the nodes / rescue01 (pull_request) Successful in 54s
Build all the nodes / tower01 (pull_request) Successful in 51s
Build all the nodes / storage01 (pull_request) Successful in 59s
Build the shell / build-shell (pull_request) Successful in 26s
Run pre-commit on all files / pre-commit (pull_request) Successful in 24s
Build all the nodes / ap01 (pull_request) Successful in 1m30s
Build all the nodes / compute01 (pull_request) Successful in 1m37s
Build all the nodes / vault01 (pull_request) Successful in 1m15s
Build all the nodes / web01 (pull_request) Successful in 1m19s
Build all the nodes / bridge01 (pull_request) Successful in 2m1s
Build all the nodes / build01 (pull_request) Successful in 2m1s
Build all the nodes / cof02 (pull_request) Successful in 2m6s
Build all the nodes / web02 (pull_request) Successful in 1m57s
Build all the nodes / web03 (pull_request) Successful in 2m5s

This commit is contained in:
catvayor 2025-03-28 16:26:41 +01:00
parent c72bd97035
commit 2b54ae45b3
Signed by: lbailly
GPG key ID: CE3E645251AC63F3
2 changed files with 89 additions and 0 deletions

View file

@ -17,6 +17,7 @@
(lib.extra.mkImports ./. [
"dgn-access-control"
"dgn-acme"
"dgn-audit"
"dgn-backups"
"dgn-console"
"dgn-chatops"

View file

@ -0,0 +1,88 @@
# SPDX-FileCopyrightText: 2025 Lubin Bailly <lubin.bailly@dgnum.eu>
#
# SPDX-License-Identifier: EUPL-1.2
{
config,
lib,
pkgs,
...
}:
let
inherit (lib)
mkIf
mkMerge
mkOption
;
inherit (lib.types)
enum
;
cfg = config.dgn-audit;
in
{
options.dgn-audit = {
audit-level = mkOption {
type = enum [
"disabled"
"normal"
"high"
];
default = "normal";
description = ''
Level of auditing configuration.
'';
};
};
config = mkIf (cfg.audit-level != "disabled") {
security.audit = mkMerge [
{
backlogLimit = 8192;
rules = [
# toute les modifs de /etc
"-a exit,always -F arch=b64 -F dir=/etc -F perm=wa"
"-a exit,always -F arch=b32 -F dir=/etc -F perm=wa"
# toute les executions des binaires de kmod
"-a exit,always -F dir=${pkgs.kmod} -F perm=x"
# tout les mount/umount (on ignore systemd-executor qui en fait mass pour les credentials)
"-a exit,always -F exe!=${pkgs.systemd}/lib/systemd/systemd-executor -S mount,umount2"
# monitor des syscalls "louche", ou qui devrait rester rare
"-a exit,always -S ioperm,modify_ldt,get_kernel_syms,ptrace"
"-a exit,always -F arch=b64 -S init_module,delete_module,finit_module"
# TODO: filter on operation for prctl, else it's too hard on logging
# look PR_PAC_RESET_KEYS PR_SET_VMA PR_SET_PTRACER
# "-a exit,always -S prctl"
];
}
(mkIf (cfg.audit-level == "high") {
enable = "lock";
failureMode = "panic";
rules = [
# tout les execve
"-a exit,always -F arch=b64 -S execve,execveat"
"-a exit,always -F arch=b32 -S execve,execveat"
# tout les unlink, renomage de truc ou suppression de dossier
"-a exit,always -F arch=b64 -S unlink,rmdir,rename"
# toute les creation/ouverture/troncature de fichier qui ont raté faute de droit
"-a exit,always -F arch=b64 -S creat,open,openat,truncate,ftruncate -F exit=-EACCES"
];
})
(mkIf (cfg.audit-level == "normal") {
enable = true;
rules = [
# les execve priviligé
"-a exit,always -F arch=b64 -F uid=0 -S execve,execveat"
"-a exit,always -F arch=b32 -F uid=0 -S execve,execveat"
"-a exit,always -F arch=b64 -F euid=0 -S execve,execveat"
"-a exit,always -F arch=b32 -F euid=0 -S execve,execveat"
];
})
];
services.journald.audit = true;
};
}