summaryrefslogtreecommitdiff
path: root/integrationtests
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2026-06-03 08:13:53 +0300
committerPaul Buetow <paul@buetow.org>2026-06-03 08:13:53 +0300
commit9a22816887b492ea0192ac096514568c7df80b01 (patch)
treee3529172dcb1fceabf64e7ccb1d27876ffc15fbb /integrationtests
parenta59034b3d53300401433b8b5f2743f2f08e8f2d2 (diff)
test(integration): add landlock_create_ruleset coverage
Add a Security-family end-to-end scenario + test for landlock_create_ruleset, which was previously untested. The new securityLandlockCreateRuleset scenario (registered as "security-landlock") builds a minimal valid struct landlock_ruleset_attr{handled_access_fs=LANDLOCK_ACCESS_FS_READ_FILE}, calls landlock_create_ruleset(&attr, sizeof(attr), 0) via raw syscall (nr=444 on amd64/arm64), and closes the returned ruleset fd. It tolerates ENOSYS/EOPNOTSUPP (kernel < 5.13 or Landlock LSM disabled) since the sys_enter tracepoint fires before any such error. It deliberately never calls landlock_restrict_self, which would irreversibly sandbox the shared integration-test runner. TestSecurityLandlockCreateRuleset asserts enter_landlock_create_ruleset MinCount>=1 and positive duration unconditionally, plus conditional "landlockfd:" path-prefix assertions on the create/close pair with an open/close path-stability check. Verified: TEST_NAME=TestSecurityLandlockCreateRuleset mage testWithName PASS (kernel 7.0.9); mage build, go build ./cmd/ioworkload/, and go vet ./integrationtests/ all clean. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
Diffstat (limited to 'integrationtests')
-rw-r--r--integrationtests/security_test.go54
1 files changed, 54 insertions, 0 deletions
diff --git a/integrationtests/security_test.go b/integrationtests/security_test.go
index 5b6e657..596c8f6 100644
--- a/integrationtests/security_test.go
+++ b/integrationtests/security_test.go
@@ -62,6 +62,60 @@ func TestSecurityKeysPtracePerf(t *testing.T) {
}
}
+var landlockTraceArgs = []string{"-trace-syscalls", "landlock_create_ruleset,close"}
+
+// TestSecurityLandlockCreateRuleset asserts end-to-end tracing of the
+// Security-family landlock_create_ruleset syscall. The security-landlock
+// scenario calls landlock_create_ruleset(&attr, sizeof(attr), 0) and closes
+// the returned ruleset fd (it deliberately never calls landlock_restrict_self,
+// which would irreversibly sandbox the shared test runner).
+//
+// The sys_enter tracepoint fires before any ENOSYS/EOPNOTSUPP error, so the
+// enter event is observed regardless of whether Landlock is enabled on the
+// running kernel; we therefore assert the enter MinCount unconditionally.
+// landlock_create_ruleset is KindEventfd (it captures flags at args[2]); when
+// the ruleset fd is successfully created and registered, it resolves to the
+// "landlockfd:" path label, which is also seen on the matching close.
+func TestSecurityLandlockCreateRuleset(t *testing.T) {
+ result, _ := runScenarioResultWithIorArgs(t, "security-landlock", []ExpectedEvent{
+ {Tracepoint: "enter_landlock_create_ruleset", Comm: "ioworkload", MinCount: 1},
+ }, landlockTraceArgs)
+
+ assertEventDurationPositive(t, result, ExpectedEvent{
+ Tracepoint: "enter_landlock_create_ruleset",
+ Comm: "ioworkload",
+ })
+
+ // landlock_create_ruleset may fail (ENOSYS on kernels < 5.13, or
+ // EOPNOTSUPP when the Landlock LSM is disabled). If a tracked ruleset fd
+ // appears, it must carry the "landlockfd:" label and be closed under the
+ // same label; otherwise we must observe no tracked landlock close events.
+ landlockOpenTracked := totalTracepointPathCount(result, "enter_landlock_create_ruleset", "landlockfd:")
+ landlockCloseTracked := totalTracepointPathCount(result, "enter_close", "landlockfd:")
+ if landlockOpenTracked == 0 {
+ if landlockCloseTracked != 0 {
+ t.Fatalf("unexpected tracked landlock close events without tracked ruleset open: close=%d", landlockCloseTracked)
+ }
+ return
+ }
+
+ assertTracepointPathPrefix(t, result, "enter_landlock_create_ruleset", "landlockfd:")
+ assertTracepointPathPrefix(t, result, "enter_close", "landlockfd:")
+ if landlockCloseTracked < landlockOpenTracked {
+ t.Fatalf("tracked landlock close count too small: close=%d open=%d", landlockCloseTracked, landlockOpenTracked)
+ }
+
+ // The tracked ruleset descriptor path should be stable between the
+ // create_ruleset record and its matching close record.
+ openPaths := uniqueTracepointPathsWithPrefix(result, "enter_landlock_create_ruleset", "landlockfd:")
+ closePaths := uniqueTracepointPathsWithPrefix(result, "enter_close", "landlockfd:")
+ for path := range openPaths {
+ if _, ok := closePaths[path]; !ok {
+ t.Fatalf("tracked landlock descriptor %q seen on create but not close", path)
+ }
+ }
+}
+
func uniqueTracepointPathsWithPrefix(result TestResult, tracepoint, wantPrefix string) map[string]struct{} {
paths := make(map[string]struct{})
for _, rec := range result.Records {