1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
|
{ lib
, fetchFromGitLab
, libseccomp
, mandoc
, nix-update-script
, pkg-config
, rustPlatform
, scdoc
, testers
, runCommand
}:
rustPlatform.buildRustPackage (finalAttrs: {
pname = "sydbox";
version = "3.38.5";
outputs = [
"out"
"man"
];
src = fetchFromGitLab {
domain = "gitlab.exherbo.org";
owner = "Sydbox";
repo = "sydbox";
tag = "v${finalAttrs.version}";
hash = "sha256-CJcCgZ/Q4oc7U6USU+iZz+kvxcn4MtXH5b3Cwu+45hQ=";
};
cargoHash = "sha256-1vePKbans/RhOFYqXW/Vvq9hiwqk3z6IwIBEjf+im/A=";
nativeBuildInputs = [
mandoc
pkg-config
scdoc
];
buildInputs = [ libseccomp ];
makeFlags = [ "PREFIX=${placeholder "out"}" ];
checkFlags = [
# rm -rf tmpdir: Os { code: 2, kind: NotFound, message: "No such file or directory" }
"--skip=fs::tests::test_relative_symlink_resolution"
# Failed to write C source file!: Os { code: 13, kind: PermissionDenied, message: "Permission denied" }
"--skip=proc::tests::test_proc_set_at_secure_test_32bit_dynamic"
# Flakey. May only fail on OfBorg/Hydra
# Failed to write C source file!: Os { code: 13, kind: PermissionDenied, message: "Permission denied" }
"proc::tests::test_proc_set_at_secure_test_32bit_static"
# Failed to write C source file!: Os { code: 13, kind: PermissionDenied, message: "Permission denied" }
"--skip=proc::tests::test_proc_set_at_secure_test_32bit_static_pie"
# /bin/false: Os { code: 2, kind: NotFound, message: "No such file or directory" }
"--skip=syd_test"
# Endlessly stall or use "invalid arguments". Maybe a sandbox issue?
"--skip=caps"
"--skip=landlock"
"--skip=proc::proc_cmdline"
"--skip=proc::proc_comm"
];
# TODO: Have these directories be created upstream similar to the vim files
postInstall = ''
mkdir -p $out/share/man/man{1,2,5,7}
make $makeFlags install-{man,vim}
'';
passthru = {
tests.version = testers.testVersion {
package = finalAttrs.finalPackage;
command = "syd -V";
};
# Generate a Syd profile that allows access to
# the Nix store closure of `allowPackages`.
# The `nopie` profile is prepended and any
# addional `rules` are appended.
closureProfile =
{ allowPackages
, rules ? ""
,
}:
runCommand "nix-closure.syd-3"
{
exportReferencesGraph =
with builtins;
foldl'
(
acc: p:
acc
++ [
"graph.${toString (length acc)}"
p
]
) [ ]
allowPackages;
}
''
echo include_profile nopie >>$out
cat graph.* | sort -u | awk '/nix\/store/ {
print "allow/read,exec,ioctl,stat+" $1 "/**"
print "allow/lock/read,exec,ioctl+" $1
}' >>$out
cat << END_OF_RULES >>$out
${rules}
END_OF_RULES
'';
updateScript = nix-update-script { };
};
meta = {
description = "Seccomp-based application sandbox";
homepage = "https://gitlab.exherbo.org/sydbox/sydbox";
changelog = "https://gitlab.exherbo.org/sydbox/sydbox/-/blob/${finalAttrs.src.tag}/ChangeLog.md";
license = lib.licenses.gpl3Plus;
maintainers = with lib.maintainers; [
mvs
getchoo
];
mainProgram = "syd";
platforms = lib.platforms.linux;
};
})
|