aboutsummaryrefslogtreecommitdiffstats
path: root/test/filters/namespaces-32.exp
diff options
context:
space:
mode:
authorLibravatar smitsohu <smitsohu@gmail.com>2022-12-24 03:06:46 +0100
committerLibravatar smitsohu <smitsohu@gmail.com>2022-12-24 03:08:31 +0100
commit5116c1ceddf1966c852cbe2d81a2b2672dc3ba90 (patch)
treee906d805ab72e9de41328cfdd7089ee4c17c66a6 /test/filters/namespaces-32.exp
parentchroot: make search permission check explicit (diff)
downloadfirejail-5116c1ceddf1966c852cbe2d81a2b2672dc3ba90.tar.gz
firejail-5116c1ceddf1966c852cbe2d81a2b2672dc3ba90.tar.zst
firejail-5116c1ceddf1966c852cbe2d81a2b2672dc3ba90.zip
testing
Diffstat (limited to 'test/filters/namespaces-32.exp')
-rwxr-xr-xtest/filters/namespaces-32.exp173
1 files changed, 173 insertions, 0 deletions
diff --git a/test/filters/namespaces-32.exp b/test/filters/namespaces-32.exp
new file mode 100755
index 000000000..b643a28d3
--- /dev/null
+++ b/test/filters/namespaces-32.exp
@@ -0,0 +1,173 @@
1#!/usr/bin/expect -f
2# This file is part of Firejail project
3# Copyright (C) 2014-2022 Firejail Authors
4# License GPL v2
5
6set timeout 10
7spawn $env(SHELL)
8match_max 100000
9
10#
11# clone
12#
13
14send -- "firejail --noprofile ./namespaces-32 clone cgroup,ipc,mnt,net,pid,user,uts\r"
15expect {
16 timeout {puts "TESTING ERROR 0\n";exit}
17 -re "Child process initialized in \[0-9\]+.\[0-9\]+ ms"
18}
19expect {
20 timeout {puts "TESTING ERROR 1\n";exit}
21 "clone successful"
22}
23after 100
24
25send -- "firejail --noprofile --restrict-namespaces ./namespaces-32 clone user\r"
26expect {
27 timeout {puts "TESTING ERROR 2\n";exit}
28 -re "Child process initialized in \[0-9\]+.\[0-9\]+ ms"
29}
30expect {
31 timeout {puts "TESTING ERROR 3\n";exit}
32 "Error: clone: Operation not permitted"
33}
34after 100
35
36send -- "firejail --noprofile --restrict-namespaces=user ./namespaces-32 clone user\r"
37expect {
38 timeout {puts "TESTING ERROR 4\n";exit}
39 -re "Child process initialized in \[0-9\]+.\[0-9\]+ ms"
40}
41expect {
42 timeout {puts "TESTING ERROR 5\n";exit}
43 "Error: clone: Operation not permitted"
44}
45after 100
46
47send -- "firejail --noprofile --restrict-namespaces=user ./namespaces-32 clone cgroup,ipc,mnt,net,pid,user,uts\r"
48expect {
49 timeout {puts "TESTING ERROR 6\n";exit}
50 -re "Child process initialized in \[0-9\]+.\[0-9\]+ ms"
51}
52expect {
53 timeout {puts "TESTING ERROR 7\n";exit}
54 "Error: clone: Operation not permitted"
55}
56after 100
57
58send -- "firejail --noprofile --restrict-namespaces=cgroup,ipc ./namespaces-32 clone cgroup\r"
59expect {
60 timeout {puts "TESTING ERROR 8\n";exit}
61 -re "Child process initialized in \[0-9\]+.\[0-9\]+ ms"
62}
63expect {
64 timeout {puts "TESTING ERROR 9\n";exit}
65 "Error: clone: Operation not permitted"
66}
67after 100
68
69send -- "firejail --noprofile --restrict-namespaces=cgroup,ipc ./namespaces-32 clone ipc\r"
70expect {
71 timeout {puts "TESTING ERROR 10\n";exit}
72 -re "Child process initialized in \[0-9\]+.\[0-9\]+ ms"
73}
74expect {
75 timeout {puts "TESTING ERROR 11\n";exit}
76 "Error: clone: Operation not permitted"
77}
78after 100
79
80send -- "firejail --noprofile --restrict-namespaces=cgroup,ipc ./namespaces-32 clone mnt,net,pid,uts\r"
81expect {
82 timeout {puts "TESTING ERROR 12\n";exit}
83 -re "Child process initialized in \[0-9\]+.\[0-9\]+ ms"
84}
85expect {
86 timeout {puts "TESTING ERROR 13\n";exit}
87 "clone successful"
88}
89after 100
90
91#
92# unshare
93#
94
95send -- "firejail --noprofile ./namespaces-32 unshare cgroup,ipc,mnt,net,pid,user,uts\r"
96expect {
97 timeout {puts "TESTING ERROR 14\n";exit}
98 -re "Child process initialized in \[0-9\]+.\[0-9\]+ ms"
99}
100expect {
101 timeout {puts "TESTING ERROR 15\n";exit}
102 "unshare successful"
103}
104after 100
105
106send -- "firejail --noprofile --restrict-namespaces ./namespaces-32 unshare user\r"
107expect {
108 timeout {puts "TESTING ERROR 16\n";exit}
109 -re "Child process initialized in \[0-9\]+.\[0-9\]+ ms"
110}
111expect {
112 timeout {puts "TESTING ERROR 17\n";exit}
113 "Error: unshare: Operation not permitted"
114}
115after 100
116
117send -- "firejail --noprofile --restrict-namespaces=user ./namespaces-32 unshare user\r"
118expect {
119 timeout {puts "TESTING ERROR 18\n";exit}
120 -re "Child process initialized in \[0-9\]+.\[0-9\]+ ms"
121}
122expect {
123 timeout {puts "TESTING ERROR 19\n";exit}
124 "Error: unshare: Operation not permitted"
125}
126after 100
127
128send -- "firejail --noprofile --restrict-namespaces=user ./namespaces-32 unshare cgroup,ipc,mnt,net,pid,user,uts\r"
129expect {
130 timeout {puts "TESTING ERROR 20\n";exit}
131 -re "Child process initialized in \[0-9\]+.\[0-9\]+ ms"
132}
133expect {
134 timeout {puts "TESTING ERROR 21\n";exit}
135 "Error: unshare: Operation not permitted"
136}
137after 100
138
139send -- "firejail --noprofile --restrict-namespaces=cgroup,ipc ./namespaces-32 unshare cgroup\r"
140expect {
141 timeout {puts "TESTING ERROR 22\n";exit}
142 -re "Child process initialized in \[0-9\]+.\[0-9\]+ ms"
143}
144expect {
145 timeout {puts "TESTING ERROR 23\n";exit}
146 "Error: unshare: Operation not permitted"
147}
148after 100
149
150send -- "firejail --noprofile --restrict-namespaces=cgroup,ipc ./namespaces-32 unshare ipc\r"
151expect {
152 timeout {puts "TESTING ERROR 24\n";exit}
153 -re "Child process initialized in \[0-9\]+.\[0-9\]+ ms"
154}
155expect {
156 timeout {puts "TESTING ERROR 25\n";exit}
157 "Error: unshare: Operation not permitted"
158}
159after 100
160
161send -- "firejail --noprofile --restrict-namespaces=cgroup,ipc ./namespaces-32 unshare mnt,net,pid,uts\r"
162expect {
163 timeout {puts "TESTING ERROR 26\n";exit}
164 -re "Child process initialized in \[0-9\]+.\[0-9\]+ ms"
165}
166expect {
167 timeout {puts "TESTING ERROR 27\n";exit}
168 "unshare successful"
169}
170
171
172after 100
173puts "\nall done\n"