Commit bff2752e authored by Grimmauld's avatar Grimmauld Committed by Silvan Mosberger
Browse files

audit.testsuite: init at 0-unstable-2025-08-30

parent f1c48bcc
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -26,6 +26,7 @@
  nixosTests,
  pkgsStatic ? { }, # CI has allowVariants = false, in which case pkgsMusl would not be passed. So, instead add a default here.
  pkgsMusl ? { },
  callPackage,
}:
stdenv.mkDerivation (finalAttrs: {
  pname = "audit";
@@ -151,6 +152,7 @@ stdenv.mkDerivation (finalAttrs: {

  passthru = {
    updateScript = nix-update-script { };
    testsuite = callPackage ./testsuite.nix { };
    tests = {
      musl = pkgsMusl.audit or null;
      static = pkgsStatic.audit or null;
+150 −0
Original line number Diff line number Diff line
{
  lib,
  stdenv,
  fetchFromGitHub,
  fetchpatch,
  unstableGitUpdater,
  audit,
  liburing,
  nmap,
  psmisc,
  glibc,
  perlPackages,
  makeWrapper,
  iptables,
  coreutils,
  writeShellApplication,
  systemd,
  iproute2,
  inetutils,
}:
let
  perlEnv =
    with perlPackages;
    makeFullPerlPath [
      FileWhich
      TestMockTimeHiRes
      SocketNetlink
    ];
  testEnv = lib.makeBinPath [
    iptables
    iproute2 # ip
    inetutils # ping6
  ];

  # syscall_socketcall: 32-bit tests are pain to build
  # filter_exclude: relies on SELinux being enabled (`id -Z`)
  # field_compare: weirdly flaky
  disabledTests = [
    "syscall_socketcall"
    "filter_exclude"
    "field_compare"
  ];
in

stdenv.mkDerivation (finalAttrs: {
  pname = "audit-testsuite";
  version = "0-unstable-2025-08-30";

  src = fetchFromGitHub {
    owner = "linux-audit";
    repo = "audit-testsuite";
    rev = "25296c6623e95312437a58f76bb771ba31187bed";
    hash = "sha256-DeKcNOJVGhLSm7ZHYa6bOG2oSsbs3SH5UCLrbqzy+m4=";
  };

  patches = [
    # https://github.com/linux-audit/audit-testsuite/pull/125
    (fetchpatch {
      url = "https://github.com/tweag/audit-testsuite/commit/bd3f8b612ce3290d86a82170e69ac510818d52e3.patch";
      hash = "sha256-rsSQ9uTjTEnDnB1Wlt2/Of2HmS+ajCIX7Iw/FRA4Fng=";
    })
  ];

  postPatch = ''
    substituteInPlace tests/Makefile ${
      lib.concatMapStringsSep " " (t: "--replace-fail '${t}' ''") disabledTests
    }
  '';

  passthru.updateScript = unstableGitUpdater { };

  buildInputs = [
    perlPackages.perl
    liburing
    audit
    nmap
    psmisc
    glibc
  ];

  nativeBuildInputs = [
    makeWrapper
  ];

  doCheck = false; # Can't run checks in the build sandbox, these checks are meant to run in a full VM

  installPhase = ''
    runHook preInstall

    mkdir -p $out
    pushd tests
    find . -type f -executable -exec install -Dm755 "{}" $out/"{}" \;
    popd

    rm -rf $out/{${lib.concatMapStringsSep "," lib.escapeShellArg disabledTests}}

    runHook postInstall
  '';

  # adapted from tests/Makefile
  fixupPhase = ''
    patchShebangs $out/runtests.pl
    wrapProgram $out/runtests.pl \
      --set PERL5LIB ${perlEnv} \
      --set MODE ${toString stdenv.hostPlatform.parsed.cpu.bits} \
      --set ATS_DEBUG 1 \
      --set DISTRO nixos \
      --set TESTS "$(find $out -maxdepth 1 -mindepth 1 -type d -printf '%f\n' | sort | paste -sd' ')" \
      --prefix PATH : ${testEnv}
  '';

  passthru.runner = writeShellApplication {
    name = "audit-testsuite-runner";
    runtimeInputs = [
      coreutils
      systemd
    ];
    text = ''
      # log to journal for easier introspection in a VM test
      exec &> >(tee >(systemd-cat -t audit-testsuite))
      testdir=$(mktemp -d)
      export testdir
      # test directory needs to be writable
      cp -r ${finalAttrs.finalPackage}/* "$testdir"
      cd "$testdir"
      chmod +w -R .

      # exec_name test expects coreutils to be actual binaries in an absolute real path,
      # no symlinks to /nix/store/<hash>-coreutils/bin/coreutils
      # fix: copy coreutils to a temporary path where the actual binary can exist under that name
      # https://github.com/linux-audit/audit-testsuite/blob/5a10451642ac1ba2fa4b31c06a21cf9aa2d38b66/tests/exec_name/test#L28-L47
      mkdir coreutils
      for util in id echo ls ; do
        cp "$(realpath "$(which "$util")")" coreutils/"$util"
      done
      sed -iE "s@/usr/bin/@$(pwd)/coreutils/@g" exec_name/test

      exec ./runtests.pl
    '';
  };

  meta = {
    description = "A simple, self-contained regression test suite for the Linux Kernel's audit subsystem";
    homepage = "https://github.com/linux-audit/audit-testsuite";
    license = lib.licenses.gpl2Only;
    maintainers = with lib.maintainers; [ grimmauld ];
    mainProgram = "audit-testsuite";
    platforms = lib.platforms.all;
  };
})