nixpkgs/pkgs/os-specific/linux/sysdig/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

198 lines
5.1 KiB
Nix
Raw Normal View History

2024-06-27 19:31:46 +00:00
{
lib,
stdenv,
fetchFromGitHub,
cmake,
kernel,
installShellFiles,
pkg-config,
luajit,
ncurses,
perl,
jsoncpp,
openssl,
curl,
jq,
gcc,
elfutils,
tbb,
protobuf,
grpc,
yaml-cpp,
nlohmann_json,
re2,
zstd,
uthash,
clang,
libbpf,
bpftools,
fetchurl,
2024-06-27 19:31:46 +00:00
}:
2021-12-16 11:32:14 +00:00
let
2024-07-23 15:23:57 +00:00
# Compare with https://github.com/draios/sysdig/blob/0.38.1/cmake/modules/falcosecurity-libs.cmake
2024-06-22 13:46:48 +00:00
libsRev = "0.17.2";
libsHash = "sha256-BTLXtdU7GjOJReaycHvXkSd2vtybnCn0rTR7OEsvaMQ=";
2022-05-14 04:58:07 +00:00
2024-06-22 13:46:48 +00:00
# Compare with https://github.com/falcosecurity/libs/blob/0.17.2/cmake/modules/valijson.cmake
2022-05-14 04:58:07 +00:00
valijson = fetchFromGitHub {
owner = "tristanpenman";
repo = "valijson";
2024-04-01 07:49:11 +00:00
rev = "v1.0.2";
hash = "sha256-wvFdjsDtKH7CpbEpQjzWtLC4RVOU9+D2rSK0Xo1cJqo=";
2023-11-26 17:41:11 +00:00
};
2024-07-23 15:23:57 +00:00
# https://github.com/draios/sysdig/blob/0.38.1/cmake/modules/driver.cmake
2022-12-12 16:06:05 +00:00
driver = fetchFromGitHub {
owner = "falcosecurity";
repo = "libs";
2024-06-22 13:46:48 +00:00
rev = "7.2.0+driver";
2024-05-13 22:16:02 +00:00
hash = "sha256-FIlnJsNgofGo4HETEEpW28wpC3U9z5AZprwFR5AgFfA=";
2023-11-26 17:41:11 +00:00
};
2024-05-13 22:16:02 +00:00
# "main.c" from master after (https://github.com/falcosecurity/libs/pull/1884)
# Remove when an upstream release includes the driver update
driverKernel610MainC = fetchurl {
url = "https://raw.githubusercontent.com/falcosecurity/libs/fa26daf65bb4117ecfe099fcad48ea75fe86d8bb/driver/main.c";
hash = "sha256-VI/tOSXs5OcEDehSqICF3apmSnwe4QCmbkHz+DGH4uM=";
};
2024-07-23 15:23:57 +00:00
version = "0.38.1";
2024-06-27 19:31:46 +00:00
in
stdenv.mkDerivation {
pname = "sysdig";
2024-05-13 22:16:02 +00:00
inherit version;
2017-05-08 17:59:39 +00:00
src = fetchFromGitHub {
owner = "draios";
repo = "sysdig";
rev = version;
2024-07-23 15:23:57 +00:00
hash = "sha256-oufRTr5TFdpF50pmem2L3bBFIfwxCR8f1xi0A328iHo=";
};
2024-06-27 19:31:46 +00:00
nativeBuildInputs = [
cmake
perl
installShellFiles
pkg-config
];
buildInputs = [
2022-05-14 04:58:07 +00:00
luajit
ncurses
openssl
curl
jq
gcc
elfutils
tbb
2022-12-12 16:06:05 +00:00
re2
2022-05-14 04:58:07 +00:00
protobuf
grpc
yaml-cpp
2022-05-14 04:58:07 +00:00
jsoncpp
nlohmann_json
2023-03-20 09:01:39 +00:00
zstd
2023-11-26 17:41:11 +00:00
uthash
2024-06-22 13:46:48 +00:00
clang
libbpf
bpftools
] ++ lib.optionals (kernel != null) kernel.moduleBuildDependencies;
2024-07-12 16:32:38 +00:00
hardeningDisable = [ "pic" "zerocallusedregs" ];
2021-12-16 11:32:14 +00:00
postUnpack = ''
2024-04-01 07:50:07 +00:00
cp -r ${
fetchFromGitHub {
owner = "falcosecurity";
repo = "libs";
rev = libsRev;
hash = libsHash;
}
} libs
2021-12-16 11:32:14 +00:00
chmod -R +w libs
2024-02-11 12:41:42 +00:00
substituteInPlace libs/userspace/libscap/libscap.pc.in libs/userspace/libsinsp/libsinsp.pc.in \
--replace-fail "\''${prefix}/@CMAKE_INSTALL_LIBDIR@" "@CMAKE_INSTALL_FULL_LIBDIR@" \
--replace-fail "\''${prefix}/@CMAKE_INSTALL_INCLUDEDIR@" "@CMAKE_INSTALL_FULL_INCLUDEDIR@"
2023-11-26 17:41:11 +00:00
2022-12-12 16:06:05 +00:00
cp -r ${driver} driver-src
chmod -R +w driver-src
cp ${driverKernel610MainC} driver-src/driver/main.c
2024-04-01 07:49:11 +00:00
2022-12-12 16:06:05 +00:00
cmakeFlagsArray+=(
"-DFALCOSECURITY_LIBS_SOURCE_DIR=$(pwd)/libs"
"-DDRIVER_SOURCE_DIR=$(pwd)/driver-src/driver"
)
2021-12-16 11:32:14 +00:00
'';
cmakeFlags = [
2015-12-12 20:25:17 +00:00
"-DUSE_BUNDLED_DEPS=OFF"
"-DSYSDIG_VERSION=${version}"
2022-12-12 16:06:05 +00:00
"-DUSE_BUNDLED_B64=OFF"
"-DUSE_BUNDLED_TBB=OFF"
"-DUSE_BUNDLED_RE2=OFF"
2023-11-26 17:41:11 +00:00
"-DUSE_BUNDLED_JSONCPP=OFF"
2019-12-19 09:49:37 +00:00
"-DCREATE_TEST_TARGETS=OFF"
2023-11-26 17:41:11 +00:00
"-DVALIJSON_INCLUDE=${valijson}/include"
"-DUTHASH_INCLUDE=${uthash}/include"
] ++ lib.optional (kernel == null) "-DBUILD_DRIVER=OFF";
2023-06-10 06:13:32 +00:00
env.NIX_CFLAGS_COMPILE =
2024-04-01 07:50:07 +00:00
# fix compiler warnings been treated as errors
"-Wno-error";
2024-06-27 19:31:46 +00:00
preConfigure =
''
if ! grep -q "${libsRev}" cmake/modules/falcosecurity-libs.cmake; then
echo "falcosecurity-libs checksum needs to be updated!"
exit 1
fi
cmakeFlagsArray+=(-DCMAKE_EXE_LINKER_FLAGS="-ltbb -lcurl -lzstd -labsl_synchronization")
''
+ lib.optionalString (kernel != null) ''
export INSTALL_MOD_PATH="$out"
export KERNELDIR="${kernel.dev}/lib/modules/${kernel.modDirVersion}/build"
'';
postInstall =
''
# Fix the bash completion location
installShellCompletion --bash $out/etc/bash_completion.d/sysdig
rm $out/etc/bash_completion.d/sysdig
rmdir $out/etc/bash_completion.d
rmdir $out/etc
''
+ lib.optionalString (kernel != null) ''
make install_driver
kernel_dev=${kernel.dev}
kernel_dev=''${kernel_dev#${builtins.storeDir}/}
kernel_dev=''${kernel_dev%%-linux*dev*}
if test -f "$out/lib/modules/${kernel.modDirVersion}/extra/scap.ko"; then
sed -i "s#$kernel_dev#................................#g" $out/lib/modules/${kernel.modDirVersion}/extra/scap.ko
else
for i in $out/lib/modules/${kernel.modDirVersion}/{extra,updates}/scap.ko.xz; do
if test -f "$i"; then
xz -d $i
sed -i "s#$kernel_dev#................................#g" ''${i%.xz}
xz -9 ''${i%.xz}
fi
done
fi
'';
2024-05-13 22:16:02 +00:00
meta = {
2024-06-27 19:31:46 +00:00
description = "A tracepoint-based system tracing tool for Linux (with clients for other OSes)";
license = with lib.licenses; [
asl20
gpl2Only
mit
];
2024-05-13 22:16:02 +00:00
maintainers = with lib.maintainers; [ raskin ];
platforms = [ "x86_64-linux" ] ++ lib.platforms.darwin;
2024-06-27 19:31:46 +00:00
broken =
kernel != null && ((lib.versionOlder kernel.version "4.14") || kernel.isHardened || kernel.isZen);
homepage = "https://sysdig.com/opensource/";
2014-08-03 16:53:00 +00:00
downloadPage = "https://github.com/draios/sysdig/releases";
};
}