aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/syscalls.sh
diff options
context:
space:
mode:
authorLibravatar netblue30 <netblue30@protonmail.com>2023-02-24 20:50:25 -0500
committerLibravatar netblue30 <netblue30@protonmail.com>2023-02-24 20:50:25 -0500
commit71b98ed838910173ec56c977f4892fd9c53da339 (patch)
tree16b90ac1333137ffc4df4f50e152ade351c458c8 /contrib/syscalls.sh
parentmerges (diff)
parentMerge pull request #5646 from NetSysFire/parsecd (diff)
downloadfirejail-71b98ed838910173ec56c977f4892fd9c53da339.tar.gz
firejail-71b98ed838910173ec56c977f4892fd9c53da339.tar.zst
firejail-71b98ed838910173ec56c977f4892fd9c53da339.zip
Merge branch 'master' of ssh://github.com/netblue30/firejail
Diffstat (limited to 'contrib/syscalls.sh')
-rwxr-xr-xcontrib/syscalls.sh34
1 files changed, 17 insertions, 17 deletions
diff --git a/contrib/syscalls.sh b/contrib/syscalls.sh
index 2c5bdf5ec..aece84e72 100755
--- a/contrib/syscalls.sh
+++ b/contrib/syscalls.sh
@@ -8,22 +8,22 @@ SYSCALLS_OUTPUT_FILE="$(pwd)/syscalls.txt"
8 8
9if [ $# -eq 0 ] 9if [ $# -eq 0 ]
10then 10then
11 echo 11 echo
12 echo " *** No program specified!!! ***" 12 echo " *** No program specified!!! ***"
13 echo 13 echo
14 echo -e "Make this file executable and execute it as:\\n" 14 echo -e "Make this file executable and execute it as:\\n"
15 echo -e "\\e[96m syscalls.sh /full/path/to/program\\n" 15 echo -e "\\e[96m syscalls.sh /full/path/to/program\\n"
16 echo -e "\\e[39mif you saved this script in a directory in your PATH (e.g., in ${HOME}/bin), otherwise as:\\n" 16 echo -e "\\e[39mif you saved this script in a directory in your PATH (e.g., in ${HOME}/bin), otherwise as:\\n"
17 echo -e "\\e[96m ./syscalls.sh /full/path/to/program\\n" 17 echo -e "\\e[96m ./syscalls.sh /full/path/to/program\\n"
18 echo -e "\\e[39mUse the full path to the respective program to avoid executing it sandboxed with Firejail\\n(if a Firejail profile for it already exits and 'sudo firecfg' was executed earlier)\\nin order to determine the necessary system calls." 18 echo -e "\\e[39mUse the full path to the respective program to avoid executing it sandboxed with Firejail\\n(if a Firejail profile for it already exits and 'sudo firecfg' was executed earlier)\\nin order to determine the necessary system calls."
19 echo 19 echo
20 exit 0 20 exit 0
21else 21else
22 strace -cfo "$STRACE_OUTPUT_FILE" "$@" && awk '{print $NF}' "$STRACE_OUTPUT_FILE" | sed '/syscall\|-\|total/d' | sort -u | awk -vORS=, '{ print $1 }' | sed 's/,$/\n/' > "$SYSCALLS_OUTPUT_FILE" 22 strace -cfo "$STRACE_OUTPUT_FILE" "$@" && awk '{print $NF}' "$STRACE_OUTPUT_FILE" | sed '/syscall\|-\|total/d' | sort -u | awk -vORS=, '{ print $1 }' | sed 's/,$/\n/' > "$SYSCALLS_OUTPUT_FILE"
23 echo 23 echo
24 echo -e "\e[39mThese are the sorted syscalls:\n\e[93m" 24 echo -e "\e[39mThese are the sorted syscalls:\n\e[93m"
25 cat "$SYSCALLS_OUTPUT_FILE" 25 cat "$SYSCALLS_OUTPUT_FILE"
26 echo 26 echo
27 echo -e "\e[39mThe sorted syscalls were saved to:\n\e[96m$SYSCALLS_OUTPUT_FILE\n\e[39m" 27 echo -e "\e[39mThe sorted syscalls were saved to:\n\e[96m$SYSCALLS_OUTPUT_FILE\n\e[39m"
28 exit 0 28 exit 0
29fi 29fi