script_core 0.2.6 → 0.2.7

Sign up to get free protection for your applications and to get access to all the features.
Files changed (191) hide show
  1. checksums.yaml +4 -4
  2. data/ext/enterprise_script_service/libseccomp/.travis.yml +21 -7
  3. data/ext/enterprise_script_service/libseccomp/CHANGELOG +22 -0
  4. data/ext/enterprise_script_service/libseccomp/CONTRIBUTING.md +37 -26
  5. data/ext/enterprise_script_service/libseccomp/CREDITS +8 -0
  6. data/ext/enterprise_script_service/libseccomp/README.md +3 -1
  7. data/ext/enterprise_script_service/libseccomp/configure.ac +13 -8
  8. data/ext/enterprise_script_service/libseccomp/doc/Makefile.am +6 -0
  9. data/ext/enterprise_script_service/libseccomp/doc/man/man3/seccomp_api_get.3 +12 -2
  10. data/ext/enterprise_script_service/libseccomp/doc/man/man3/seccomp_arch_add.3 +38 -6
  11. data/ext/enterprise_script_service/libseccomp/doc/man/man3/seccomp_attr_set.3 +53 -2
  12. data/ext/enterprise_script_service/libseccomp/doc/man/man3/seccomp_export_bpf.3 +20 -2
  13. data/ext/enterprise_script_service/libseccomp/doc/man/man3/seccomp_init.3 +9 -2
  14. data/ext/enterprise_script_service/libseccomp/doc/man/man3/seccomp_load.3 +32 -2
  15. data/ext/enterprise_script_service/libseccomp/doc/man/man3/seccomp_merge.3 +16 -2
  16. data/ext/enterprise_script_service/libseccomp/doc/man/man3/seccomp_notify_alloc.3 +113 -0
  17. data/ext/enterprise_script_service/libseccomp/doc/man/man3/seccomp_notify_fd.3 +1 -0
  18. data/ext/enterprise_script_service/libseccomp/doc/man/man3/seccomp_notify_free.3 +1 -0
  19. data/ext/enterprise_script_service/libseccomp/doc/man/man3/seccomp_notify_id_valid.3 +1 -0
  20. data/ext/enterprise_script_service/libseccomp/doc/man/man3/seccomp_notify_receive.3 +1 -0
  21. data/ext/enterprise_script_service/libseccomp/doc/man/man3/seccomp_notify_respond.3 +1 -0
  22. data/ext/enterprise_script_service/libseccomp/doc/man/man3/seccomp_rule_add.3 +64 -3
  23. data/ext/enterprise_script_service/libseccomp/doc/man/man3/seccomp_syscall_priority.3 +18 -3
  24. data/ext/enterprise_script_service/libseccomp/include/seccomp-syscalls.h +12 -0
  25. data/ext/enterprise_script_service/libseccomp/include/seccomp.h.in +116 -0
  26. data/ext/enterprise_script_service/libseccomp/src/.gitignore +2 -0
  27. data/ext/enterprise_script_service/libseccomp/src/Makefile.am +31 -17
  28. data/ext/enterprise_script_service/libseccomp/src/api.c +254 -58
  29. data/ext/enterprise_script_service/libseccomp/src/arch-aarch64.h +1 -9
  30. data/ext/enterprise_script_service/libseccomp/src/arch-arm.c +47 -2
  31. data/ext/enterprise_script_service/libseccomp/src/arch-arm.h +1 -9
  32. data/ext/enterprise_script_service/libseccomp/src/arch-gperf-generate +40 -0
  33. data/ext/enterprise_script_service/libseccomp/src/arch-mips.c +41 -4
  34. data/ext/enterprise_script_service/libseccomp/src/arch-mips.h +2 -10
  35. data/ext/enterprise_script_service/libseccomp/src/arch-mips64.c +41 -4
  36. data/ext/enterprise_script_service/libseccomp/src/arch-mips64.h +3 -11
  37. data/ext/enterprise_script_service/libseccomp/src/arch-mips64n32.c +41 -4
  38. data/ext/enterprise_script_service/libseccomp/src/arch-mips64n32.h +2 -10
  39. data/ext/enterprise_script_service/libseccomp/src/arch-parisc.h +1 -10
  40. data/ext/enterprise_script_service/libseccomp/src/arch-parisc64.c +3 -3
  41. data/ext/enterprise_script_service/libseccomp/src/arch-parisc64.h +29 -0
  42. data/ext/enterprise_script_service/libseccomp/src/arch-ppc.h +1 -9
  43. data/ext/enterprise_script_service/libseccomp/src/arch-ppc64.c +606 -8
  44. data/ext/enterprise_script_service/libseccomp/src/arch-ppc64.h +2 -10
  45. data/ext/enterprise_script_service/libseccomp/src/arch-riscv64.c +31 -0
  46. data/ext/enterprise_script_service/libseccomp/src/arch-riscv64.h +22 -0
  47. data/ext/enterprise_script_service/libseccomp/src/arch-s390.c +171 -12
  48. data/ext/enterprise_script_service/libseccomp/src/arch-s390.h +1 -17
  49. data/ext/enterprise_script_service/libseccomp/src/arch-s390x.c +166 -10
  50. data/ext/enterprise_script_service/libseccomp/src/arch-s390x.h +1 -20
  51. data/ext/enterprise_script_service/libseccomp/src/arch-syscall-dump.c +8 -1
  52. data/ext/enterprise_script_service/libseccomp/src/arch-syscall-validate +359 -143
  53. data/ext/enterprise_script_service/libseccomp/src/arch-x32.c +36 -2
  54. data/ext/enterprise_script_service/libseccomp/src/arch-x32.h +2 -10
  55. data/ext/enterprise_script_service/libseccomp/src/arch-x86.c +172 -10
  56. data/ext/enterprise_script_service/libseccomp/src/arch-x86.h +1 -14
  57. data/ext/enterprise_script_service/libseccomp/src/arch-x86_64.h +1 -9
  58. data/ext/enterprise_script_service/libseccomp/src/arch.c +11 -3
  59. data/ext/enterprise_script_service/libseccomp/src/arch.h +7 -0
  60. data/ext/enterprise_script_service/libseccomp/src/db.c +268 -57
  61. data/ext/enterprise_script_service/libseccomp/src/db.h +16 -2
  62. data/ext/enterprise_script_service/libseccomp/src/gen_bpf.c +503 -148
  63. data/ext/enterprise_script_service/libseccomp/src/gen_bpf.h +2 -1
  64. data/ext/enterprise_script_service/libseccomp/src/gen_pfc.c +165 -37
  65. data/ext/enterprise_script_service/libseccomp/src/python/libseccomp.pxd +37 -1
  66. data/ext/enterprise_script_service/libseccomp/src/python/seccomp.pyx +295 -5
  67. data/ext/enterprise_script_service/libseccomp/src/syscalls.c +56 -0
  68. data/ext/enterprise_script_service/libseccomp/src/syscalls.csv +470 -0
  69. data/ext/enterprise_script_service/libseccomp/src/syscalls.h +62 -0
  70. data/ext/enterprise_script_service/libseccomp/src/syscalls.perf.template +82 -0
  71. data/ext/enterprise_script_service/libseccomp/src/system.c +196 -16
  72. data/ext/enterprise_script_service/libseccomp/src/system.h +68 -13
  73. data/ext/enterprise_script_service/libseccomp/tests/.gitignore +9 -2
  74. data/ext/enterprise_script_service/libseccomp/tests/06-sim-actions.tests +1 -1
  75. data/ext/enterprise_script_service/libseccomp/tests/11-basic-basic_errors.c +5 -5
  76. data/ext/enterprise_script_service/libseccomp/tests/13-basic-attrs.c +35 -1
  77. data/ext/enterprise_script_service/libseccomp/tests/13-basic-attrs.py +10 -1
  78. data/ext/enterprise_script_service/libseccomp/tests/15-basic-resolver.c +1 -0
  79. data/ext/enterprise_script_service/libseccomp/tests/16-sim-arch_basic.c +12 -0
  80. data/ext/enterprise_script_service/libseccomp/tests/16-sim-arch_basic.py +1 -0
  81. data/ext/enterprise_script_service/libseccomp/tests/{18-sim-basic_whitelist.c → 18-sim-basic_allowlist.c} +0 -0
  82. data/ext/enterprise_script_service/libseccomp/tests/{18-sim-basic_whitelist.py → 18-sim-basic_allowlist.py} +0 -0
  83. data/ext/enterprise_script_service/libseccomp/tests/18-sim-basic_allowlist.tests +32 -0
  84. data/ext/enterprise_script_service/libseccomp/tests/23-sim-arch_all_le_basic.c +3 -0
  85. data/ext/enterprise_script_service/libseccomp/tests/23-sim-arch_all_le_basic.py +1 -0
  86. data/ext/enterprise_script_service/libseccomp/tests/30-sim-socket_syscalls.c +3 -0
  87. data/ext/enterprise_script_service/libseccomp/tests/30-sim-socket_syscalls.py +1 -0
  88. data/ext/enterprise_script_service/libseccomp/tests/30-sim-socket_syscalls.tests +33 -17
  89. data/ext/enterprise_script_service/libseccomp/tests/{34-sim-basic_blacklist.c → 34-sim-basic_denylist.c} +0 -0
  90. data/ext/enterprise_script_service/libseccomp/tests/{34-sim-basic_blacklist.py → 34-sim-basic_denylist.py} +0 -0
  91. data/ext/enterprise_script_service/libseccomp/tests/34-sim-basic_denylist.tests +32 -0
  92. data/ext/enterprise_script_service/libseccomp/tests/36-sim-ipc_syscalls.c +3 -0
  93. data/ext/enterprise_script_service/libseccomp/tests/36-sim-ipc_syscalls.py +1 -0
  94. data/ext/enterprise_script_service/libseccomp/tests/36-sim-ipc_syscalls.tests +25 -25
  95. data/ext/enterprise_script_service/libseccomp/tests/39-basic-api_level.c +24 -3
  96. data/ext/enterprise_script_service/libseccomp/tests/39-basic-api_level.py +16 -1
  97. data/ext/enterprise_script_service/libseccomp/tests/47-live-kill_process.c +3 -3
  98. data/ext/enterprise_script_service/libseccomp/tests/51-live-user_notification.c +112 -0
  99. data/ext/enterprise_script_service/libseccomp/tests/51-live-user_notification.py +60 -0
  100. data/ext/enterprise_script_service/libseccomp/tests/51-live-user_notification.tests +11 -0
  101. data/ext/enterprise_script_service/libseccomp/tests/53-sim-binary_tree.c +156 -0
  102. data/ext/enterprise_script_service/libseccomp/tests/53-sim-binary_tree.py +95 -0
  103. data/ext/enterprise_script_service/libseccomp/tests/53-sim-binary_tree.tests +65 -0
  104. data/ext/enterprise_script_service/libseccomp/tests/54-live-binary_tree.c +128 -0
  105. data/ext/enterprise_script_service/libseccomp/tests/54-live-binary_tree.py +95 -0
  106. data/ext/enterprise_script_service/libseccomp/tests/54-live-binary_tree.tests +11 -0
  107. data/ext/enterprise_script_service/libseccomp/tests/55-basic-pfc_binary_tree.c +134 -0
  108. data/ext/enterprise_script_service/libseccomp/tests/55-basic-pfc_binary_tree.sh +46 -0
  109. data/ext/enterprise_script_service/libseccomp/tests/55-basic-pfc_binary_tree.tests +11 -0
  110. data/ext/enterprise_script_service/libseccomp/tests/56-basic-iterate_syscalls.c +90 -0
  111. data/ext/enterprise_script_service/libseccomp/tests/56-basic-iterate_syscalls.py +65 -0
  112. data/ext/enterprise_script_service/libseccomp/tests/56-basic-iterate_syscalls.tests +11 -0
  113. data/ext/enterprise_script_service/libseccomp/tests/57-basic-rawsysrc.c +64 -0
  114. data/ext/enterprise_script_service/libseccomp/tests/57-basic-rawsysrc.py +46 -0
  115. data/ext/enterprise_script_service/libseccomp/tests/57-basic-rawsysrc.tests +11 -0
  116. data/ext/enterprise_script_service/libseccomp/tests/58-live-tsync_notify.c +116 -0
  117. data/ext/enterprise_script_service/libseccomp/tests/58-live-tsync_notify.py +61 -0
  118. data/ext/enterprise_script_service/libseccomp/tests/58-live-tsync_notify.tests +11 -0
  119. data/ext/enterprise_script_service/libseccomp/tests/Makefile.am +31 -10
  120. data/ext/enterprise_script_service/libseccomp/tests/regression +6 -3
  121. data/ext/enterprise_script_service/libseccomp/tests/util.c +3 -3
  122. data/ext/enterprise_script_service/libseccomp/tools/check-syntax +1 -1
  123. data/ext/enterprise_script_service/libseccomp/tools/scmp_arch_detect.c +3 -0
  124. data/ext/enterprise_script_service/libseccomp/tools/scmp_bpf_disasm.c +4 -2
  125. data/ext/enterprise_script_service/libseccomp/tools/scmp_bpf_sim.c +2 -0
  126. data/ext/enterprise_script_service/libseccomp/tools/util.c +14 -12
  127. data/ext/enterprise_script_service/libseccomp/tools/util.h +7 -0
  128. data/ext/enterprise_script_service/mruby/.github/workflows/codeql-analysis.yml +51 -0
  129. data/ext/enterprise_script_service/mruby/Doxyfile +1 -1
  130. data/ext/enterprise_script_service/mruby/README.md +1 -1
  131. data/ext/enterprise_script_service/mruby/doc/guides/debugger.md +1 -1
  132. data/ext/enterprise_script_service/mruby/doc/limitations.md +10 -10
  133. data/ext/enterprise_script_service/mruby/include/mruby.h +13 -0
  134. data/ext/enterprise_script_service/mruby/include/mruby/boxing_word.h +0 -1
  135. data/ext/enterprise_script_service/mruby/include/mruby/proc.h +13 -8
  136. data/ext/enterprise_script_service/mruby/include/mruby/value.h +25 -29
  137. data/ext/enterprise_script_service/mruby/include/mruby/version.h +3 -3
  138. data/ext/enterprise_script_service/mruby/mrbgems/mruby-array-ext/src/array.c +5 -8
  139. data/ext/enterprise_script_service/mruby/mrbgems/mruby-bin-mirb/tools/mirb/mirb.c +2 -2
  140. data/ext/enterprise_script_service/mruby/mrbgems/mruby-bin-mrbc/tools/mrbc/mrbc.c +17 -10
  141. data/ext/enterprise_script_service/mruby/mrbgems/mruby-complex/mrblib/complex.rb +1 -1
  142. data/ext/enterprise_script_service/mruby/mrbgems/mruby-complex/src/complex.c +1 -2
  143. data/ext/enterprise_script_service/mruby/mrbgems/mruby-eval/src/eval.c +1 -1
  144. data/ext/enterprise_script_service/mruby/mrbgems/mruby-fiber/src/fiber.c +1 -2
  145. data/ext/enterprise_script_service/mruby/mrbgems/mruby-inline-struct/test/inline.c +3 -4
  146. data/ext/enterprise_script_service/mruby/mrbgems/mruby-io/src/file.c +1 -2
  147. data/ext/enterprise_script_service/mruby/mrbgems/mruby-io/src/file_test.c +9 -26
  148. data/ext/enterprise_script_service/mruby/mrbgems/mruby-io/src/io.c +1 -2
  149. data/ext/enterprise_script_service/mruby/mrbgems/mruby-kernel-ext/src/kernel.c +6 -8
  150. data/ext/enterprise_script_service/mruby/mrbgems/mruby-method/src/method.c +3 -4
  151. data/ext/enterprise_script_service/mruby/mrbgems/mruby-objectspace/src/mruby_objectspace.c +0 -1
  152. data/ext/enterprise_script_service/mruby/mrbgems/mruby-print/src/print.c +1 -2
  153. data/ext/enterprise_script_service/mruby/mrbgems/mruby-range-ext/src/range.c +1 -3
  154. data/ext/enterprise_script_service/mruby/mrbgems/mruby-rational/mrblib/rational.rb +1 -3
  155. data/ext/enterprise_script_service/mruby/mrbgems/mruby-sprintf/src/sprintf.c +3 -3
  156. data/ext/enterprise_script_service/mruby/mrbgems/mruby-string-ext/src/string.c +1 -2
  157. data/ext/enterprise_script_service/mruby/mrbgems/mruby-struct/src/struct.c +5 -11
  158. data/ext/enterprise_script_service/mruby/mrbgems/mruby-time/src/time.c +5 -10
  159. data/ext/enterprise_script_service/mruby/mrblib/00class.rb +10 -0
  160. data/ext/enterprise_script_service/mruby/src/array.c +14 -11
  161. data/ext/enterprise_script_service/mruby/src/class.c +22 -21
  162. data/ext/enterprise_script_service/mruby/src/error.c +1 -2
  163. data/ext/enterprise_script_service/mruby/src/etc.c +0 -1
  164. data/ext/enterprise_script_service/mruby/src/gc.c +5 -5
  165. data/ext/enterprise_script_service/mruby/src/hash.c +8 -15
  166. data/ext/enterprise_script_service/mruby/src/kernel.c +4 -7
  167. data/ext/enterprise_script_service/mruby/src/numeric.c +28 -60
  168. data/ext/enterprise_script_service/mruby/src/object.c +11 -1
  169. data/ext/enterprise_script_service/mruby/src/proc.c +7 -8
  170. data/ext/enterprise_script_service/mruby/src/range.c +4 -12
  171. data/ext/enterprise_script_service/mruby/src/string.c +24 -21
  172. data/ext/enterprise_script_service/mruby/src/symbol.c +1 -2
  173. data/ext/enterprise_script_service/mruby/src/vm.c +28 -24
  174. data/ext/enterprise_script_service/mruby/test/t/kernel.rb +7 -0
  175. data/lib/script_core/version.rb +1 -1
  176. metadata +45 -21
  177. data/ext/enterprise_script_service/libseccomp/src/arch-aarch64-syscalls.c +0 -559
  178. data/ext/enterprise_script_service/libseccomp/src/arch-arm-syscalls.c +0 -570
  179. data/ext/enterprise_script_service/libseccomp/src/arch-mips-syscalls.c +0 -562
  180. data/ext/enterprise_script_service/libseccomp/src/arch-mips64-syscalls.c +0 -562
  181. data/ext/enterprise_script_service/libseccomp/src/arch-mips64n32-syscalls.c +0 -562
  182. data/ext/enterprise_script_service/libseccomp/src/arch-parisc-syscalls.c +0 -542
  183. data/ext/enterprise_script_service/libseccomp/src/arch-ppc-syscalls.c +0 -559
  184. data/ext/enterprise_script_service/libseccomp/src/arch-ppc64-syscalls.c +0 -559
  185. data/ext/enterprise_script_service/libseccomp/src/arch-s390-syscalls.c +0 -642
  186. data/ext/enterprise_script_service/libseccomp/src/arch-s390x-syscalls.c +0 -642
  187. data/ext/enterprise_script_service/libseccomp/src/arch-x32-syscalls.c +0 -558
  188. data/ext/enterprise_script_service/libseccomp/src/arch-x86-syscalls.c +0 -692
  189. data/ext/enterprise_script_service/libseccomp/src/arch-x86_64-syscalls.c +0 -559
  190. data/ext/enterprise_script_service/libseccomp/tests/18-sim-basic_whitelist.tests +0 -32
  191. data/ext/enterprise_script_service/libseccomp/tests/34-sim-basic_blacklist.tests +0 -32
@@ -0,0 +1,32 @@
1
+ #
2
+ # libseccomp regression test automation data
3
+ #
4
+ # Copyright (c) 2013 Red Hat <pmoore@redhat.com>
5
+ # Author: Paul Moore <paul@paul-moore.com>
6
+ #
7
+
8
+ test type: bpf-sim
9
+
10
+ # Testname Arch Syscall Arg0 Arg1 Arg2 Arg3 Arg4 Arg5 Result
11
+ 34-sim-basic_denylist all read 0 0x856B008 10 N N N KILL
12
+ 34-sim-basic_denylist all read 1-10 0x856B008 10 N N N ALLOW
13
+ 34-sim-basic_denylist all write 1-2 0x856B008 10 N N N KILL
14
+ 34-sim-basic_denylist all write 3-10 0x856B008 10 N N N ALLOW
15
+ 34-sim-basic_denylist all close N N N N N N KILL
16
+ 34-sim-basic_denylist all rt_sigreturn N N N N N N KILL
17
+ 34-sim-basic_denylist all open 0x856B008 4 N N N N ALLOW
18
+ 34-sim-basic_denylist x86 0-2 N N N N N N ALLOW
19
+ 34-sim-basic_denylist x86 7-172 N N N N N N ALLOW
20
+ 34-sim-basic_denylist x86 174-350 N N N N N N ALLOW
21
+ 34-sim-basic_denylist x86_64 4-14 N N N N N N ALLOW
22
+ 34-sim-basic_denylist x86_64 16-350 N N N N N N ALLOW
23
+
24
+ test type: bpf-sim-fuzz
25
+
26
+ # Testname StressCount
27
+ 34-sim-basic_denylist 50
28
+
29
+ test type: bpf-valgrind
30
+
31
+ # Testname
32
+ 34-sim-basic_denylist
@@ -51,6 +51,9 @@ int main(int argc, char *argv[])
51
51
  if (rc != 0)
52
52
  goto out;
53
53
  rc = seccomp_arch_add(ctx, SCMP_ARCH_X32);
54
+ if (rc != 0)
55
+ goto out;
56
+ rc = seccomp_arch_add(ctx, SCMP_ARCH_PPC64LE);
54
57
  if (rc != 0)
55
58
  goto out;
56
59
 
@@ -34,6 +34,7 @@ def test(args):
34
34
  f.add_arch(Arch("x86"))
35
35
  f.add_arch(Arch("x86_64"))
36
36
  f.add_arch(Arch("x32"))
37
+ f.add_arch(Arch("ppc64le"))
37
38
  f.add_rule(ALLOW, "semop")
38
39
  f.add_rule(ALLOW, "semtimedop")
39
40
  f.add_rule(ALLOW, "semget")
@@ -7,31 +7,31 @@
7
7
 
8
8
  test type: bpf-sim
9
9
 
10
- # Testname Arch Syscall Arg0 Arg1 Arg2 Arg3 Arg4 Arg5 Result
11
- 36-sim-ipc_syscalls +x86 ipc 1 N N N N N ALLOW
12
- 36-sim-ipc_syscalls +x86 ipc 2 N N N N N ALLOW
13
- 36-sim-ipc_syscalls +x86 ipc 3 N N N N N ALLOW
14
- 36-sim-ipc_syscalls +x86 ipc 4 N N N N N ALLOW
15
- 36-sim-ipc_syscalls +x86 ipc 11 N N N N N ALLOW
16
- 36-sim-ipc_syscalls +x86 ipc 12 N N N N N ALLOW
17
- 36-sim-ipc_syscalls +x86 ipc 13 N N N N N ALLOW
18
- 36-sim-ipc_syscalls +x86 ipc 14 N N N N N ALLOW
19
- 36-sim-ipc_syscalls +x86 ipc 21 N N N N N ALLOW
20
- 36-sim-ipc_syscalls +x86 ipc 22 N N N N N ALLOW
21
- 36-sim-ipc_syscalls +x86 ipc 23 N N N N N ALLOW
22
- 36-sim-ipc_syscalls +x86 ipc 24 N N N N N ALLOW
23
- 36-sim-ipc_syscalls +x86_64 semop N N N N N N ALLOW
24
- 36-sim-ipc_syscalls +x86_64 semget N N N N N N ALLOW
25
- 36-sim-ipc_syscalls +x86_64 semctl N N N N N N ALLOW
26
- 36-sim-ipc_syscalls +x86_64 semtimedop N N N N N N ALLOW
27
- 36-sim-ipc_syscalls +x86_64 msgsnd N N N N N N ALLOW
28
- 36-sim-ipc_syscalls +x86_64 msgrcv N N N N N N ALLOW
29
- 36-sim-ipc_syscalls +x86_64 msgget N N N N N N ALLOW
30
- 36-sim-ipc_syscalls +x86_64 msgctl N N N N N N ALLOW
31
- 36-sim-ipc_syscalls +x86_64 shmat N N N N N N ALLOW
32
- 36-sim-ipc_syscalls +x86_64 shmdt N N N N N N ALLOW
33
- 36-sim-ipc_syscalls +x86_64 shmget N N N N N N ALLOW
34
- 36-sim-ipc_syscalls +x86_64 shmctl N N N N N N ALLOW
10
+ # Testname Arch Syscall Arg0 Arg1 Arg2 Arg3 Arg4 Arg5 Result
11
+ 36-sim-ipc_syscalls +x86,+ppc64le ipc 1 N N N N N ALLOW
12
+ 36-sim-ipc_syscalls +x86,+ppc64le ipc 2 N N N N N ALLOW
13
+ 36-sim-ipc_syscalls +x86,+ppc64le ipc 3 N N N N N ALLOW
14
+ 36-sim-ipc_syscalls +x86,+ppc64le ipc 4 N N N N N ALLOW
15
+ 36-sim-ipc_syscalls +x86,+ppc64le ipc 11 N N N N N ALLOW
16
+ 36-sim-ipc_syscalls +x86,+ppc64le ipc 12 N N N N N ALLOW
17
+ 36-sim-ipc_syscalls +x86,+ppc64le ipc 13 N N N N N ALLOW
18
+ 36-sim-ipc_syscalls +x86,+ppc64le ipc 14 N N N N N ALLOW
19
+ 36-sim-ipc_syscalls +x86,+ppc64le ipc 21 N N N N N ALLOW
20
+ 36-sim-ipc_syscalls +x86,+ppc64le ipc 22 N N N N N ALLOW
21
+ 36-sim-ipc_syscalls +x86,+ppc64le ipc 23 N N N N N ALLOW
22
+ 36-sim-ipc_syscalls +x86,+ppc64le ipc 24 N N N N N ALLOW
23
+ 36-sim-ipc_syscalls +x86_64 semop N N N N N N ALLOW
24
+ 36-sim-ipc_syscalls +x86_64 semget N N N N N N ALLOW
25
+ 36-sim-ipc_syscalls +x86_64 semctl N N N N N N ALLOW
26
+ 36-sim-ipc_syscalls +x86_64 semtimedop N N N N N N ALLOW
27
+ 36-sim-ipc_syscalls +x86_64 msgsnd N N N N N N ALLOW
28
+ 36-sim-ipc_syscalls +x86_64 msgrcv N N N N N N ALLOW
29
+ 36-sim-ipc_syscalls +x86_64 msgget N N N N N N ALLOW
30
+ 36-sim-ipc_syscalls +x86_64 msgctl N N N N N N ALLOW
31
+ 36-sim-ipc_syscalls +x86_64 shmat N N N N N N ALLOW
32
+ 36-sim-ipc_syscalls +x86_64 shmdt N N N N N N ALLOW
33
+ 36-sim-ipc_syscalls +x86_64 shmget N N N N N N ALLOW
34
+ 36-sim-ipc_syscalls +x86_64 shmctl N N N N N N ALLOW
35
35
 
36
36
  test type: bpf-valgrind
37
37
 
@@ -54,14 +54,35 @@ int main(int argc, char *argv[])
54
54
  if (api != 3)
55
55
  return -7;
56
56
 
57
+ rc = seccomp_api_set(4);
58
+ if (rc != 0)
59
+ return -8;
60
+ api = seccomp_api_get();
61
+ if (api != 4)
62
+ return -9;
63
+
64
+ rc = seccomp_api_set(5);
65
+ if (rc != 0)
66
+ return -10;
67
+ api = seccomp_api_get();
68
+ if (api != 5)
69
+ return -11;
70
+
71
+ rc = seccomp_api_set(6);
72
+ if (rc != 0)
73
+ return -12;
74
+ api = seccomp_api_get();
75
+ if (api != 6)
76
+ return -13;
77
+
57
78
  /* Attempt to set a high, invalid API level */
58
79
  rc = seccomp_api_set(1024);
59
80
  if (rc != -EINVAL)
60
- return -8;
81
+ return -1001;
61
82
  /* Ensure that the previously set API level didn't change */
62
83
  api = seccomp_api_get();
63
- if (api != 3)
64
- return -9;
84
+ if (api != 6)
85
+ return -1002;
65
86
 
66
87
  return 0;
67
88
  }
@@ -50,6 +50,21 @@ def test():
50
50
  if api != 3:
51
51
  raise RuntimeError("Failed getting API level 3")
52
52
 
53
+ set_api(4)
54
+ api = get_api()
55
+ if api != 4:
56
+ raise RuntimeError("Failed getting API level 4")
57
+
58
+ set_api(5)
59
+ api = get_api()
60
+ if api != 5:
61
+ raise RuntimeError("Failed getting API level 5")
62
+
63
+ set_api(6)
64
+ api = get_api()
65
+ if api != 6:
66
+ raise RuntimeError("Failed getting API level 6")
67
+
53
68
  # Attempt to set a high, invalid API level
54
69
  try:
55
70
  set_api(1024)
@@ -59,7 +74,7 @@ def test():
59
74
  raise RuntimeError("Missing failure when setting invalid API level")
60
75
  # Ensure that the previously set API level didn't change
61
76
  api = get_api()
62
- if api != 3:
77
+ if api != 6:
63
78
  raise RuntimeError("Failed getting old API level after setting an invalid API level")
64
79
 
65
80
  test()
@@ -31,7 +31,7 @@
31
31
  #include "util.h"
32
32
 
33
33
 
34
- static const unsigned int whitelist[] = {
34
+ static const unsigned int allowlist[] = {
35
35
  SCMP_SYS(clone),
36
36
  SCMP_SYS(exit),
37
37
  SCMP_SYS(exit_group),
@@ -75,8 +75,8 @@ int main(int argc, char *argv[])
75
75
  if (ctx == NULL)
76
76
  return ENOMEM;
77
77
 
78
- for (i = 0; i < sizeof(whitelist) / sizeof(whitelist[0]); i++) {
79
- rc = seccomp_rule_add(ctx, SCMP_ACT_ALLOW, whitelist[i], 0);
78
+ for (i = 0; i < sizeof(allowlist) / sizeof(allowlist[0]); i++) {
79
+ rc = seccomp_rule_add(ctx, SCMP_ACT_ALLOW, allowlist[i], 0);
80
80
  if (rc != 0)
81
81
  goto out;
82
82
  }
@@ -0,0 +1,112 @@
1
+ /**
2
+ * Seccomp Library test program
3
+ *
4
+ * Copyright (c) 2019 Cisco Systems, Inc. <pmoore2@cisco.com>
5
+ * Author: Paul Moore <paul@paul-moore.com>
6
+ */
7
+
8
+ /*
9
+ * This library is free software; you can redistribute it and/or modify it
10
+ * under the terms of version 2.1 of the GNU Lesser General Public License as
11
+ * published by the Free Software Foundation.
12
+ *
13
+ * This library is distributed in the hope that it will be useful, but WITHOUT
14
+ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
15
+ * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
16
+ * for more details.
17
+ *
18
+ * You should have received a copy of the GNU Lesser General Public License
19
+ * along with this library; if not, see <http://www.gnu.org/licenses>.
20
+ */
21
+
22
+ #include <sys/types.h>
23
+ #include <sys/wait.h>
24
+ #include <unistd.h>
25
+ #include <seccomp.h>
26
+ #include <signal.h>
27
+ #include <syscall.h>
28
+ #include <errno.h>
29
+ #include <stdlib.h>
30
+
31
+ #include "util.h"
32
+
33
+ #define MAGIC 0x1122334455667788UL
34
+
35
+ int main(int argc, char *argv[])
36
+ {
37
+ int rc, fd = -1, status;
38
+ struct seccomp_notif *req = NULL;
39
+ struct seccomp_notif_resp *resp = NULL;
40
+ scmp_filter_ctx ctx = NULL;
41
+ pid_t pid = 0;
42
+
43
+ ctx = seccomp_init(SCMP_ACT_ALLOW);
44
+ if (ctx == NULL)
45
+ return ENOMEM;
46
+
47
+ rc = seccomp_rule_add(ctx, SCMP_ACT_NOTIFY, SCMP_SYS(getpid), 0, NULL);
48
+ if (rc)
49
+ goto out;
50
+
51
+ rc = seccomp_load(ctx);
52
+ if (rc < 0)
53
+ goto out;
54
+
55
+ rc = seccomp_notify_fd(ctx);
56
+ if (rc < 0)
57
+ goto out;
58
+ fd = rc;
59
+
60
+ pid = fork();
61
+ if (pid == 0)
62
+ exit(syscall(SCMP_SYS(getpid)) != MAGIC);
63
+
64
+ rc = seccomp_notify_alloc(&req, &resp);
65
+ if (rc)
66
+ goto out;
67
+
68
+ rc = seccomp_notify_receive(fd, req);
69
+ if (rc)
70
+ goto out;
71
+ if (req->data.nr != SCMP_SYS(getpid)) {
72
+ rc = -EFAULT;
73
+ goto out;
74
+ }
75
+ rc = seccomp_notify_id_valid(fd, req->id);
76
+ if (rc)
77
+ goto out;
78
+
79
+ resp->id = req->id;
80
+ resp->val = MAGIC;
81
+ resp->error = 0;
82
+ resp->flags = 0;
83
+ rc = seccomp_notify_respond(fd, resp);
84
+ if (rc)
85
+ goto out;
86
+
87
+ if (waitpid(pid, &status, 0) != pid) {
88
+ rc = -EFAULT;
89
+ goto out;
90
+ }
91
+
92
+ if (!WIFEXITED(status)) {
93
+ rc = -EFAULT;
94
+ goto out;
95
+ }
96
+ if (WEXITSTATUS(status)) {
97
+ rc = -EFAULT;
98
+ goto out;
99
+ }
100
+
101
+ out:
102
+ if (fd >= 0)
103
+ close(fd);
104
+ if (pid)
105
+ kill(pid, SIGKILL);
106
+ seccomp_notify_free(req, resp);
107
+ seccomp_release(ctx);
108
+
109
+ if (rc != 0)
110
+ return (rc < 0 ? -rc : rc);
111
+ return 160;
112
+ }
@@ -0,0 +1,60 @@
1
+ #!/usr/bin/env python
2
+
3
+ #
4
+ # Seccomp Library test program
5
+ #
6
+ # Copyright (c) 2019 Cisco Systems, Inc. <pmoore2@cisco.com>
7
+ # Author: Paul Moore <paul@paul-moore.com>
8
+ #
9
+
10
+ #
11
+ # This library is free software; you can redistribute it and/or modify it
12
+ # under the terms of version 2.1 of the GNU Lesser General Public License as
13
+ # published by the Free Software Foundation.
14
+ #
15
+ # This library is distributed in the hope that it will be useful, but WITHOUT
16
+ # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
17
+ # FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
18
+ # for more details.
19
+ #
20
+ # You should have received a copy of the GNU Lesser General Public License
21
+ # along with this library; if not, see <http://www.gnu.org/licenses>.
22
+ #
23
+
24
+ import argparse
25
+ import os
26
+ import signal
27
+ import sys
28
+
29
+ import util
30
+
31
+ from seccomp import *
32
+
33
+ def test():
34
+ magic = os.getuid() + 1
35
+ f = SyscallFilter(ALLOW)
36
+ f.add_rule(NOTIFY, "getuid")
37
+ f.load()
38
+ pid = os.fork()
39
+ if pid == 0:
40
+ val = os.getuid()
41
+ if val != magic:
42
+ raise RuntimeError("Response return value failed")
43
+ quit(1)
44
+ quit(0)
45
+ else:
46
+ notify = f.receive_notify()
47
+ if notify.syscall != resolve_syscall(Arch(), "getuid"):
48
+ raise RuntimeError("Notification failed")
49
+ f.respond_notify(NotificationResponse(notify, magic, 0, 0))
50
+ wpid, rc = os.waitpid(pid, 0)
51
+ if os.WIFEXITED(rc) == 0:
52
+ raise RuntimeError("Child process error")
53
+ if os.WEXITSTATUS(rc) != 0:
54
+ raise RuntimeError("Child process error")
55
+ quit(160)
56
+
57
+ test()
58
+
59
+ # kate: syntax python;
60
+ # kate: indent-mode python; space-indent on; indent-width 4; mixedindent off;
@@ -0,0 +1,11 @@
1
+ #
2
+ # libseccomp regression test automation data
3
+ #
4
+ # Copyright Cisco Systems 2019
5
+ # Author: Tycho Andersen <tycho@tycho.ws>
6
+ #
7
+
8
+ test type: live
9
+
10
+ # Testname API Result
11
+ 51-live-user_notification 5 ALLOW
@@ -0,0 +1,156 @@
1
+ /**
2
+ * Seccomp Library test program
3
+ *
4
+ * Copyright (c) 2018-2020 Oracle and/or its affiliates.
5
+ * Author: Tom Hromatka <tom.hromatka@oracle.com>
6
+ */
7
+
8
+ /*
9
+ * This library is free software; you can redistribute it and/or modify it
10
+ * under the terms of version 2.1 of the GNU Lesser General Public License as
11
+ * published by the Free Software Foundation.
12
+ *
13
+ * This library is distributed in the hope that it will be useful, but WITHOUT
14
+ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
15
+ * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
16
+ * for more details.
17
+ *
18
+ * You should have received a copy of the GNU Lesser General Public License
19
+ * along with this library; if not, see <http://www.gnu.org/licenses>.
20
+ */
21
+
22
+ #include <errno.h>
23
+ #include <fcntl.h>
24
+ #include <unistd.h>
25
+ #include <sys/types.h>
26
+ #include <sys/stat.h>
27
+
28
+ #include <seccomp.h>
29
+
30
+ #include "util.h"
31
+
32
+ #define ARG_COUNT_MAX 2
33
+
34
+ struct syscall_errno {
35
+ int syscall;
36
+ int error;
37
+ int arg_cnt;
38
+ /* To make the test more interesting, arguments are added to several
39
+ * syscalls. To keep the test simple, the arguments always use
40
+ * SCMP_CMP_EQ.
41
+ */
42
+ int args[ARG_COUNT_MAX];
43
+ };
44
+
45
+ struct syscall_errno table[] = {
46
+ { SCMP_SYS(read), 0, 0, { 0, 0 } },
47
+ { SCMP_SYS(write), 1, 0, { 0, 0 } },
48
+ { SCMP_SYS(open), 2, 0, { 0, 0 } },
49
+ { SCMP_SYS(close), 3, 2, { 100, 101 } },
50
+ { SCMP_SYS(stat), 4, 0, { 0, 0 } },
51
+ { SCMP_SYS(fstat), 5, 0, { 0, 0 } },
52
+ { SCMP_SYS(lstat), 6, 0, { 0, 0 } },
53
+ { SCMP_SYS(poll), 7, 1, { 102, 0 } },
54
+ { SCMP_SYS(lseek), 8, 2, { 103, 104 } },
55
+ { SCMP_SYS(mmap), 9, 0, { 0, 0 } },
56
+ { SCMP_SYS(mprotect), 10, 0, { 0, 0 } },
57
+ { SCMP_SYS(munmap), 11, 0, { 0, 0 } },
58
+ { SCMP_SYS(brk), 12, 0, { 0, 0 } },
59
+ { SCMP_SYS(rt_sigaction), 13, 0, { 0, 0 } },
60
+ { SCMP_SYS(rt_sigprocmask), 14, 0, { 0, 0 } },
61
+ { SCMP_SYS(rt_sigreturn), 15, 0, { 0, 0 } },
62
+ { SCMP_SYS(ioctl), 16, 0, { 0, 0 } },
63
+ { SCMP_SYS(pread64), 17, 1, { 105, 0 } },
64
+ { SCMP_SYS(pwrite64), 18, 0, { 0, 0 } },
65
+ { SCMP_SYS(readv), 19, 0, { 0, 0 } },
66
+ { SCMP_SYS(writev), 20, 0, { 0, 0 } },
67
+ { SCMP_SYS(access), 21, 0, { 0, 0 } },
68
+ { SCMP_SYS(pipe), 22, 0, { 0, 0 } },
69
+ { SCMP_SYS(select), 23, 2, { 106, 107 } },
70
+ { SCMP_SYS(sched_yield), 24, 0, { 0, 0 } },
71
+ { SCMP_SYS(mremap), 25, 2, { 108, 109 } },
72
+ { SCMP_SYS(msync), 26, 0, { 0, 0 } },
73
+ { SCMP_SYS(mincore), 27, 0, { 0, 0 } },
74
+ { SCMP_SYS(madvise), 28, 0, { 0, 0 } },
75
+ { SCMP_SYS(dup), 32, 1, { 112, 0 } },
76
+ { SCMP_SYS(dup2), 33, 0, { 0, 0 } },
77
+ { SCMP_SYS(pause), 34, 0, { 0, 0 } },
78
+ { SCMP_SYS(nanosleep), 35, 0, { 0, 0 } },
79
+ { SCMP_SYS(getitimer), 36, 0, { 0, 0 } },
80
+ { SCMP_SYS(alarm), 37, 0, { 0, 0 } },
81
+ };
82
+
83
+ const int table_size = sizeof(table) / sizeof(table[0]);
84
+
85
+ int main(int argc, char *argv[])
86
+ {
87
+ int rc, i;
88
+ struct util_options opts;
89
+ scmp_filter_ctx ctx = NULL;
90
+
91
+ rc = util_getopt(argc, argv, &opts);
92
+ if (rc < 0)
93
+ goto out;
94
+
95
+ ctx = seccomp_init(SCMP_ACT_ALLOW);
96
+ if (ctx == NULL) {
97
+ rc = ENOMEM;
98
+ goto out;
99
+ }
100
+
101
+ rc = seccomp_arch_remove(ctx, SCMP_ARCH_NATIVE);
102
+ if (rc != 0)
103
+ goto out;
104
+
105
+ rc = seccomp_arch_add(ctx, SCMP_ARCH_AARCH64);
106
+ if (rc != 0)
107
+ goto out;
108
+ rc = seccomp_arch_add(ctx, SCMP_ARCH_PPC64LE);
109
+ if (rc != 0)
110
+ goto out;
111
+ rc = seccomp_arch_add(ctx, SCMP_ARCH_X86_64);
112
+ if (rc != 0)
113
+ goto out;
114
+
115
+ rc = seccomp_attr_set(ctx, SCMP_FLTATR_CTL_OPTIMIZE, 2);
116
+ if (rc < 0)
117
+ goto out;
118
+
119
+ for (i = 0; i < table_size; i++) {
120
+ switch (table[i].arg_cnt) {
121
+ case 2:
122
+ rc = seccomp_rule_add(ctx,
123
+ SCMP_ACT_ERRNO(table[i].error),
124
+ table[i].syscall, 2,
125
+ SCMP_A0(SCMP_CMP_EQ,
126
+ table[i].args[0]),
127
+ SCMP_A1(SCMP_CMP_EQ,
128
+ table[i].args[1]));
129
+ break;
130
+ case 1:
131
+ rc = seccomp_rule_add(ctx,
132
+ SCMP_ACT_ERRNO(table[i].error),
133
+ table[i].syscall, 1,
134
+ SCMP_A0(SCMP_CMP_EQ,
135
+ table[i].args[0]));
136
+ break;
137
+ case 0:
138
+ default:
139
+ rc = seccomp_rule_add(ctx,
140
+ SCMP_ACT_ERRNO(table[i].error),
141
+ table[i].syscall, 0);
142
+ break;
143
+ }
144
+
145
+ if (rc < 0)
146
+ goto out;
147
+ }
148
+
149
+ rc = util_filter_output(&opts, ctx);
150
+ if (rc)
151
+ goto out;
152
+
153
+ out:
154
+ seccomp_release(ctx);
155
+ return (rc < 0 ? -rc : rc);
156
+ }