diff options
| author | Ophestra <cat@gensokyo.uk> | 2025-07-01 00:35:27 +0900 |
|---|---|---|
| committer | Ophestra <cat@gensokyo.uk> | 2025-07-01 00:35:27 +0900 |
| commit | e03d702d088ad78645d1cce448713ef71b12e803 (patch) | |
| tree | d7ccb51bb009a8a22dfc17ebc79b499d25dbe7ac /flake.nix | |
| parent | 241dc964a6bb2116cd95a78dbbc35f9792dad554 (diff) | |
sandbox/seccomp: implement syscall lookup
This uses the Go map and is verified against libseccomp.
Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'flake.nix')
| -rw-r--r-- | flake.nix | 10 |
1 files changed, 6 insertions, 4 deletions
@@ -187,12 +187,14 @@ generateSyscallTable = pkgs.mkShell { # this should be made cross-platform via nix - shellHook = '' - exec ${pkgs.perl}/bin/perl \ + shellHook = "exec ${pkgs.writeShellScript "generate-syscall-table" '' + set -e + ${pkgs.perl}/bin/perl \ sandbox/seccomp/mksysnum_linux.pl \ - ${pkgs.linuxHeaders}/include/asm/unistd_64.h > \ + ${pkgs.linuxHeaders}/include/asm/unistd_64.h | \ + ${pkgs.go}/bin/gofmt > \ sandbox/seccomp/syscall_linux_amd64.go - ''; + ''}"; }; } ); |
