Revert "tests: added test for broken seccomp"

This reverts commit 889d6ba0b7.
This commit is contained in:
Nikos Mavrogiannopoulos
2015-01-30 00:41:53 +01:00
parent c4f5027a46
commit ea79349bc5
2 changed files with 1 additions and 43 deletions

View File

@@ -8,9 +8,6 @@ EXTRA_DIST = ca-key.pem ca.pem common.sh server-cert.pem server-key.pem test1.co
SUBDIRS = docker-ocserv
check_PROGRAMS = test-broken-seccomp
test_broken_seccomp_LDADD = $(LDADD) -lseccomp
dist_check_SCRIPTS = test-pass test-pass-cert test-cert test-iroute test-pass-script \
test-multi-cookie test-pam test-stress full-test test-group-pass test-pass-group-cert \
ocpasswd-test test-pass-group-cert-no-pass unix-test test-pass-opt-cert \
@@ -19,7 +16,7 @@ dist_check_SCRIPTS = test-pass test-pass-cert test-cert test-iroute test-pass-sc
TESTS = test-pass test-pass-cert test-cert test-iroute test-pass-script \
test-multi-cookie full-test test-group-pass test-pass-group-cert \
ocpasswd-test test-pass-group-cert-no-pass unix-test test-pass-opt-cert \
test-cookie-timeout test-cookie-timeout-2 test-broken-seccomp
test-cookie-timeout test-cookie-timeout-2
TESTS_ENVIRONMENT = srcdir="$(srcdir)" \
top_builddir="$(top_builddir)"

View File

@@ -1,39 +0,0 @@
#include <stdlib.h>
#include <stdio.h>
#include <seccomp.h>
#include <errno.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <assert.h>
int main()
{
scmp_filter_ctx ctx;
fd_set rfds;
int fd = open("/dev/null", O_RDONLY), ret;
ctx = seccomp_init(SCMP_ACT_ERRNO(EPERM));
assert(ctx != 0);
assert(seccomp_rule_add(ctx, SCMP_ACT_ALLOW, SCMP_SYS(select), 0) == 0);
/* to allow printing and exiting */
assert(seccomp_rule_add(ctx, SCMP_ACT_ALLOW, SCMP_SYS(writev), 0) == 0);
assert(seccomp_rule_add(ctx, SCMP_ACT_ALLOW, SCMP_SYS(write), 0) == 0);
assert(seccomp_rule_add(ctx, SCMP_ACT_ALLOW, SCMP_SYS(exit), 0) == 0);
assert(seccomp_rule_add(ctx, SCMP_ACT_ALLOW, SCMP_SYS(exit_group), 0) == 0);
assert (seccomp_load(ctx) == 0);
FD_ZERO(&rfds);
FD_SET(fd, &rfds);
ret = select(fd+1, &rfds, NULL, NULL, NULL);
if (ret < 0) {
fprintf(stderr, "select is blocked!\n");
exit(1);
}
fprintf(stderr, "all ok\n");
exit(0);
}