aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar netblue30 <netblue30@yahoo.com>2017-10-12 10:36:57 -0400
committerLibravatar netblue30 <netblue30@yahoo.com>2017-10-12 10:36:57 -0400
commit1acba91384ddc43ed7a3a98efab32e9b9804dded (patch)
treeea6348eea0edf995135314132d675d33bb2fa996
parentapparmor (diff)
downloadfirejail-1acba91384ddc43ed7a3a98efab32e9b9804dded.tar.gz
firejail-1acba91384ddc43ed7a3a98efab32e9b9804dded.tar.zst
firejail-1acba91384ddc43ed7a3a98efab32e9b9804dded.zip
relnotes and testing
-rw-r--r--RELNOTES7
-rwxr-xr-xtest/private-lib/atril.exp83
-rwxr-xr-xtest/private-lib/private-lib.sh2
3 files changed, 91 insertions, 1 deletions
diff --git a/RELNOTES b/RELNOTES
index 0e685ec9b..aba2e7dee 100644
--- a/RELNOTES
+++ b/RELNOTES
@@ -2,7 +2,14 @@ firejail (0.9.51) baseline; urgency=low
2 * work in progress! 2 * work in progress!
3 * enhancement: support Firejail user config directory in firecfg 3 * enhancement: support Firejail user config directory in firecfg
4 * enhancement: disable DBus activation in firecfg 4 * enhancement: disable DBus activation in firecfg
5 * enhancement; enumerate root directories in apparmor profile
6 * feature: systemd-resolvd integration
7 * feature: whitelisting /var directory in most profiles
5 * feature: GTK2, GTK3 and Qt4 private-lib support 8 * feature: GTK2, GTK3 and Qt4 private-lib support
9 * feature: test deployment of private-lib for the following
10 applications: evince, galculator, gnome-calculator, hexchat,
11 leafpad, mousepad, transmission-gtk, xcalc, xmr-stak-cpu,
12 atril, mate-color-select
6 * feature: --writable-run-user 13 * feature: --writable-run-user
7 * feature: profile build tool (--build) 14 * feature: profile build tool (--build)
8 -- netblue30 <netblue30@yahoo.com> Thu, 14 Sep 2017 20:00:00 -0500 15 -- netblue30 <netblue30@yahoo.com> Thu, 14 Sep 2017 20:00:00 -0500
diff --git a/test/private-lib/atril.exp b/test/private-lib/atril.exp
new file mode 100755
index 000000000..0ddf41c50
--- /dev/null
+++ b/test/private-lib/atril.exp
@@ -0,0 +1,83 @@
1#!/usr/bin/expect -f
2# This file is part of Firejail project
3# Copyright (C) 2014-2017 Firejail Authors
4# License GPL v2
5
6set timeout 10
7spawn $env(SHELL)
8match_max 100000
9
10send -- "firejail atril\r"
11expect {
12 timeout {puts "TESTING ERROR 0\n";exit}
13 "Reading profile /etc/firejail/atril.profile"
14}
15expect {
16 timeout {puts "TESTING ERROR 1\n";exit}
17 "Child process initialized"
18}
19sleep 3
20
21spawn $env(SHELL)
22send -- "firejail --list\r"
23expect {
24 timeout {puts "TESTING ERROR 3\n";exit}
25 ":firejail"
26}
27expect {
28 timeout {puts "TESTING ERROR 3.1\n";exit}
29 "atril"
30}
31after 100
32
33# grsecurity exit
34send -- "file /proc/sys/kernel/grsecurity\r"
35expect {
36 timeout {puts "TESTING ERROR - grsecurity detection\n";exit}
37 "grsecurity: directory" {puts "grsecurity present, exiting...\n";exit}
38 "cannot open" {puts "grsecurity not present\n"}
39}
40
41send -- "firejail --name=blablabla\r"
42expect {
43 timeout {puts "TESTING ERROR 4\n";exit}
44 "Child process initialized"
45}
46sleep 2
47
48spawn $env(SHELL)
49send -- "firemon --seccomp\r"
50expect {
51 timeout {puts "TESTING ERROR 5\n";exit}
52 "need to be root" {puts "/proc mounted as hidepid, exiting...\n"; exit}
53 ":firejail atril"
54}
55expect {
56 timeout {puts "TESTING ERROR 5.1 (seccomp)\n";exit}
57 "Seccomp: 2"
58}
59expect {
60 timeout {puts "TESTING ERROR 5.1\n";exit}
61 "name=blablabla"
62}
63after 100
64send -- "firemon --caps\r"
65expect {
66 timeout {puts "TESTING ERROR 6\n";exit}
67 ":firejail atril"
68}
69expect {
70 timeout {puts "TESTING ERROR 6.1\n";exit}
71 "CapBnd:"
72}
73expect {
74 timeout {puts "TESTING ERROR 6.2\n";exit}
75 "0000000000000000"
76}
77expect {
78 timeout {puts "TESTING ERROR 6.3\n";exit}
79 "name=blablabla"
80}
81after 100
82
83puts "\nall done\n"
diff --git a/test/private-lib/private-lib.sh b/test/private-lib/private-lib.sh
index 813c76b42..7e17f4eda 100755
--- a/test/private-lib/private-lib.sh
+++ b/test/private-lib/private-lib.sh
@@ -5,7 +5,7 @@
5 5
6export MALLOC_CHECK_=3 6export MALLOC_CHECK_=3
7export MALLOC_PERTURB_=$(($RANDOM % 255 + 1)) 7export MALLOC_PERTURB_=$(($RANDOM % 255 + 1))
8LIST="evince galculator gnome-calculator hexchat leafpad mousepad transmission-gtk xcalc" 8LIST="evince galculator gnome-calculator hexchat leafpad mousepad transmission-gtk xcalc atril"
9 9
10 10
11for app in $LIST; do 11for app in $LIST; do