aboutsummaryrefslogtreecommitdiffstats
path: root/test/filters/seccomp-chown.exp
diff options
context:
space:
mode:
Diffstat (limited to 'test/filters/seccomp-chown.exp')
-rwxr-xr-xtest/filters/seccomp-chown.exp49
1 files changed, 49 insertions, 0 deletions
diff --git a/test/filters/seccomp-chown.exp b/test/filters/seccomp-chown.exp
new file mode 100755
index 000000000..4e393fea2
--- /dev/null
+++ b/test/filters/seccomp-chown.exp
@@ -0,0 +1,49 @@
1#!/usr/bin/expect -f
2# This file is part of Firejail project
3# Copyright (C) 2014-2016 Firejail Authors
4# License GPL v2
5
6set timeout 10
7spawn $env(SHELL)
8match_max 100000
9
10send -- "firejail --seccomp=chown,fchown,fchownat,lchown --private\r"
11expect {
12 timeout {puts "TESTING ERROR 0\n";exit}
13 "Child process initialized"
14}
15sleep 2
16
17send -- "touch testfile;pwd\r"
18expect {
19 timeout {puts "TESTING ERROR 1\n";exit}
20 "/root" {puts "running as root"}
21 "/home"
22}
23
24send -- "ls -l testfile;pwd\r"
25expect {
26 timeout {puts "TESTING ERROR 2\n";exit}
27 "testfile"
28}
29expect {
30 timeout {puts "TESTING ERROR 3\n";exit}
31 "/root" {puts "running as root"}
32 "/home"
33}
34
35send -- "chown netblue:netblue testfile;pwd\r"
36expect {
37 timeout {puts "TESTING ERROR 2\n";exit}
38 "Bad system call"
39}
40expect {
41 timeout {puts "TESTING ERROR 3\n";exit}
42 "/root" {puts "running as root"}
43 "/home"
44}
45
46
47send -- "exit\r"
48sleep 1
49puts "\n"