forked from seccomp/libseccomp
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
tests: Add test 62 - architecture/transactions
Add a test to verify the logic at the end of db_col_transaction_commit() properly copies and releases the snapshots from the filter when the filter length doesn't match the snapshot length. Signed-off-by: Tom Hromatka <[email protected]>
- Loading branch information
1 parent
6adf397
commit 6f70b59
Showing
5 changed files
with
191 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -69,3 +69,4 @@ util.pyc | |
59-basic-empty_binary_tree | ||
60-sim-precompute | ||
61-sim-transactions | ||
62-sim-arch_transactions |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,102 @@ | ||
/** | ||
* Seccomp Library test program | ||
* | ||
* Copyright (c) 2023 Microsoft Corporation <[email protected]> | ||
* Author: Paul Moore <[email protected]> | ||
*/ | ||
|
||
/* | ||
* This library is free software; you can redistribute it and/or modify it | ||
* under the terms of version 2.1 of the GNU Lesser General Public License as | ||
* published by the Free Software Foundation. | ||
* | ||
* This library is distributed in the hope that it will be useful, but WITHOUT | ||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | ||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License | ||
* for more details. | ||
* | ||
* You should have received a copy of the GNU Lesser General Public License | ||
* along with this library; if not, see <http://www.gnu.org/licenses>. | ||
*/ | ||
|
||
#include <errno.h> | ||
#include <unistd.h> | ||
#include <stdio.h> | ||
|
||
#include <seccomp.h> | ||
|
||
#include "util.h" | ||
|
||
int main(int argc, char *argv[]) | ||
{ | ||
int rc; | ||
struct util_options opts; | ||
scmp_filter_ctx ctx = NULL; | ||
|
||
rc = util_getopt(argc, argv, &opts); | ||
if (rc < 0) | ||
goto out; | ||
|
||
ctx = seccomp_init(SCMP_ACT_ALLOW); | ||
if (ctx == NULL) | ||
return ENOMEM; | ||
|
||
/* To avoid endian-ness collisions, only run this test against | ||
* x86_64. This will ensure that we can successfully add the "x86" | ||
* architecture later in the test. */ | ||
rc = seccomp_arch_remove(ctx, SCMP_ARCH_NATIVE); | ||
if (rc != 0) | ||
goto out; | ||
rc = seccomp_arch_add(ctx, seccomp_arch_resolve_name("x86_64")); | ||
if (rc != 0) | ||
goto out; | ||
|
||
rc = seccomp_transaction_start(ctx); | ||
if (rc != 0) | ||
goto out; | ||
rc = seccomp_transaction_start(ctx); | ||
if (rc != 0) | ||
goto out; | ||
|
||
rc = seccomp_rule_add(ctx, SCMP_ACT_KILL, SCMP_SYS(read), 0); | ||
if (rc != 0) | ||
goto out; | ||
|
||
rc = seccomp_transaction_commit(ctx); | ||
if (rc != 0) | ||
goto out; | ||
|
||
rc = seccomp_arch_add(ctx, seccomp_arch_resolve_name("x86")); | ||
if (rc != 0) | ||
goto out; | ||
|
||
rc = seccomp_transaction_commit(ctx); | ||
if (rc != 0) | ||
goto out; | ||
|
||
rc = seccomp_rule_add(ctx, SCMP_ACT_KILL, SCMP_SYS(write), 0); | ||
if (rc != 0) | ||
goto out; | ||
|
||
rc = seccomp_transaction_start(ctx); | ||
if (rc != 0) | ||
goto out; | ||
rc = seccomp_arch_remove(ctx, seccomp_arch_resolve_name("x86")); | ||
if (rc != 0) | ||
goto out; | ||
|
||
rc = seccomp_rule_add(ctx, SCMP_ACT_KILL, SCMP_SYS(open), 0); | ||
if (rc != 0) | ||
goto out; | ||
rc = seccomp_transaction_commit(ctx); | ||
if (rc != 0) | ||
goto out; | ||
|
||
rc = util_filter_output(&opts, ctx); | ||
if (rc) | ||
goto out; | ||
|
||
out: | ||
seccomp_release(ctx); | ||
return (rc < 0 ? -rc : rc); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
#!/usr/bin/env python | ||
|
||
# | ||
# Seccomp Library test program | ||
# | ||
# Copyright (c) 2023 Microsoft Corporation <[email protected]> | ||
# Author: Paul Moore <[email protected]> | ||
# | ||
|
||
# | ||
# This library is free software; you can redistribute it and/or modify it | ||
# under the terms of version 2.1 of the GNU Lesser General Public License as | ||
# published by the Free Software Foundation. | ||
# | ||
# This library is distributed in the hope that it will be useful, but WITHOUT | ||
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | ||
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License | ||
# for more details. | ||
# | ||
# You should have received a copy of the GNU Lesser General Public License | ||
# along with this library; if not, see <http://www.gnu.org/licenses>. | ||
# | ||
|
||
import argparse | ||
import sys | ||
|
||
import util | ||
|
||
from seccomp import * | ||
|
||
def test(args): | ||
f = SyscallFilter(ALLOW) | ||
|
||
f.remove_arch(Arch()) | ||
f.add_arch(Arch("x86_64")) | ||
|
||
f.start_transaction() | ||
f.start_transaction() | ||
f.add_rule(KILL, "read") | ||
f.commit_transaction() | ||
f.add_arch(Arch("x86")) | ||
f.commit_transaction() | ||
|
||
f.add_rule(KILL, "write") | ||
|
||
f.start_transaction() | ||
f.remove_arch(Arch("x86")) | ||
f.add_rule(KILL, "open") | ||
f.commit_transaction() | ||
|
||
return f | ||
|
||
args = util.get_opt() | ||
ctx = test(args) | ||
util.filter_output(args, ctx) | ||
|
||
# kate: syntax python; | ||
# kate: indent-mode python; space-indent on; indent-width 4; mixedindent off; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# | ||
# libseccomp regression test automation data | ||
# | ||
# Copyright (c) 2023 Microsoft Corporation <[email protected]> | ||
# Author: Paul Moore <[email protected]> | ||
# | ||
|
||
test type: bpf-sim | ||
|
||
# Testname Arch Syscall Arg0 Arg1 Arg2 Arg3 Arg4 Arg5 Result | ||
62-sim-arch_transactions +x86_64 read N N N N N N KILL | ||
62-sim-arch_transactions +x86_64 write N N N N N N KILL | ||
62-sim-arch_transactions +x86_64 open N N N N N N KILL | ||
62-sim-arch_transactions +x86_64 close N N N N N N ALLOW | ||
|
||
test type: bpf-sim-fuzz | ||
|
||
# Testname StressCount | ||
62-sim-arch_transactions 5 | ||
|
||
test type: bpf-valgrind | ||
|
||
# Testname | ||
62-sim-arch_transactions |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters