script_core 0.2.3 → 0.3.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (529) hide show
  1. checksums.yaml +4 -4
  2. data/.rubocop.yml +35 -57
  3. data/.ruby-version +1 -1
  4. data/Gemfile +2 -2
  5. data/README.md +7 -1
  6. data/ext/enterprise_script_service/Rakefile +1 -1
  7. data/ext/enterprise_script_service/libseccomp/.travis.yml +24 -12
  8. data/ext/enterprise_script_service/libseccomp/CHANGELOG +32 -0
  9. data/ext/enterprise_script_service/libseccomp/CONTRIBUTING.md +37 -26
  10. data/ext/enterprise_script_service/libseccomp/CREDITS +11 -0
  11. data/ext/enterprise_script_service/libseccomp/README.md +21 -1
  12. data/ext/enterprise_script_service/libseccomp/configure.ac +13 -8
  13. data/ext/enterprise_script_service/libseccomp/doc/Makefile.am +6 -0
  14. data/ext/enterprise_script_service/libseccomp/doc/man/man3/seccomp_api_get.3 +12 -2
  15. data/ext/enterprise_script_service/libseccomp/doc/man/man3/seccomp_arch_add.3 +38 -6
  16. data/ext/enterprise_script_service/libseccomp/doc/man/man3/seccomp_attr_set.3 +53 -2
  17. data/ext/enterprise_script_service/libseccomp/doc/man/man3/seccomp_export_bpf.3 +20 -2
  18. data/ext/enterprise_script_service/libseccomp/doc/man/man3/seccomp_init.3 +9 -2
  19. data/ext/enterprise_script_service/libseccomp/doc/man/man3/seccomp_load.3 +32 -2
  20. data/ext/enterprise_script_service/libseccomp/doc/man/man3/seccomp_merge.3 +16 -2
  21. data/ext/enterprise_script_service/libseccomp/doc/man/man3/seccomp_notify_alloc.3 +113 -0
  22. data/ext/enterprise_script_service/libseccomp/doc/man/man3/seccomp_notify_fd.3 +1 -0
  23. data/ext/enterprise_script_service/libseccomp/doc/man/man3/seccomp_notify_free.3 +1 -0
  24. data/ext/enterprise_script_service/libseccomp/doc/man/man3/seccomp_notify_id_valid.3 +1 -0
  25. data/ext/enterprise_script_service/libseccomp/doc/man/man3/seccomp_notify_receive.3 +1 -0
  26. data/ext/enterprise_script_service/libseccomp/doc/man/man3/seccomp_notify_respond.3 +1 -0
  27. data/ext/enterprise_script_service/libseccomp/doc/man/man3/seccomp_rule_add.3 +64 -3
  28. data/ext/enterprise_script_service/libseccomp/doc/man/man3/seccomp_syscall_priority.3 +18 -3
  29. data/ext/enterprise_script_service/libseccomp/include/seccomp-syscalls.h +19 -0
  30. data/ext/enterprise_script_service/libseccomp/include/seccomp.h.in +116 -0
  31. data/ext/enterprise_script_service/libseccomp/src/.gitignore +2 -0
  32. data/ext/enterprise_script_service/libseccomp/src/Makefile.am +31 -17
  33. data/ext/enterprise_script_service/libseccomp/src/api.c +254 -58
  34. data/ext/enterprise_script_service/libseccomp/src/arch-aarch64.h +1 -9
  35. data/ext/enterprise_script_service/libseccomp/src/arch-arm.c +47 -2
  36. data/ext/enterprise_script_service/libseccomp/src/arch-arm.h +1 -9
  37. data/ext/enterprise_script_service/libseccomp/src/arch-gperf-generate +40 -0
  38. data/ext/enterprise_script_service/libseccomp/src/arch-mips.c +41 -4
  39. data/ext/enterprise_script_service/libseccomp/src/arch-mips.h +2 -10
  40. data/ext/enterprise_script_service/libseccomp/src/arch-mips64.c +41 -4
  41. data/ext/enterprise_script_service/libseccomp/src/arch-mips64.h +3 -11
  42. data/ext/enterprise_script_service/libseccomp/src/arch-mips64n32.c +41 -4
  43. data/ext/enterprise_script_service/libseccomp/src/arch-mips64n32.h +2 -10
  44. data/ext/enterprise_script_service/libseccomp/src/arch-parisc.h +1 -10
  45. data/ext/enterprise_script_service/libseccomp/src/arch-parisc64.c +3 -3
  46. data/ext/enterprise_script_service/libseccomp/src/arch-parisc64.h +29 -0
  47. data/ext/enterprise_script_service/libseccomp/src/arch-ppc.h +1 -9
  48. data/ext/enterprise_script_service/libseccomp/src/arch-ppc64.c +606 -8
  49. data/ext/enterprise_script_service/libseccomp/src/arch-ppc64.h +2 -10
  50. data/ext/enterprise_script_service/libseccomp/src/arch-riscv64.c +31 -0
  51. data/ext/enterprise_script_service/libseccomp/src/arch-riscv64.h +22 -0
  52. data/ext/enterprise_script_service/libseccomp/src/arch-s390.c +171 -12
  53. data/ext/enterprise_script_service/libseccomp/src/arch-s390.h +1 -17
  54. data/ext/enterprise_script_service/libseccomp/src/arch-s390x.c +166 -10
  55. data/ext/enterprise_script_service/libseccomp/src/arch-s390x.h +1 -20
  56. data/ext/enterprise_script_service/libseccomp/src/arch-syscall-dump.c +8 -1
  57. data/ext/enterprise_script_service/libseccomp/src/arch-syscall-validate +359 -143
  58. data/ext/enterprise_script_service/libseccomp/src/arch-x32.c +36 -2
  59. data/ext/enterprise_script_service/libseccomp/src/arch-x32.h +2 -10
  60. data/ext/enterprise_script_service/libseccomp/src/arch-x86.c +172 -10
  61. data/ext/enterprise_script_service/libseccomp/src/arch-x86.h +1 -14
  62. data/ext/enterprise_script_service/libseccomp/src/arch-x86_64.h +1 -9
  63. data/ext/enterprise_script_service/libseccomp/src/arch.c +11 -3
  64. data/ext/enterprise_script_service/libseccomp/src/arch.h +7 -0
  65. data/ext/enterprise_script_service/libseccomp/src/db.c +268 -57
  66. data/ext/enterprise_script_service/libseccomp/src/db.h +16 -2
  67. data/ext/enterprise_script_service/libseccomp/src/gen_bpf.c +503 -148
  68. data/ext/enterprise_script_service/libseccomp/src/gen_bpf.h +2 -1
  69. data/ext/enterprise_script_service/libseccomp/src/gen_pfc.c +165 -37
  70. data/ext/enterprise_script_service/libseccomp/src/python/libseccomp.pxd +37 -1
  71. data/ext/enterprise_script_service/libseccomp/src/python/seccomp.pyx +295 -5
  72. data/ext/enterprise_script_service/libseccomp/src/syscalls.c +56 -0
  73. data/ext/enterprise_script_service/libseccomp/src/syscalls.csv +470 -0
  74. data/ext/enterprise_script_service/libseccomp/src/syscalls.h +62 -0
  75. data/ext/enterprise_script_service/libseccomp/src/syscalls.perf.template +82 -0
  76. data/ext/enterprise_script_service/libseccomp/src/system.c +196 -16
  77. data/ext/enterprise_script_service/libseccomp/src/system.h +68 -13
  78. data/ext/enterprise_script_service/libseccomp/tests/.gitignore +10 -2
  79. data/ext/enterprise_script_service/libseccomp/tests/06-sim-actions.tests +1 -1
  80. data/ext/enterprise_script_service/libseccomp/tests/11-basic-basic_errors.c +5 -5
  81. data/ext/enterprise_script_service/libseccomp/tests/13-basic-attrs.c +35 -1
  82. data/ext/enterprise_script_service/libseccomp/tests/13-basic-attrs.py +10 -1
  83. data/ext/enterprise_script_service/libseccomp/tests/15-basic-resolver.c +4 -3
  84. data/ext/enterprise_script_service/libseccomp/tests/16-sim-arch_basic.c +12 -0
  85. data/ext/enterprise_script_service/libseccomp/tests/16-sim-arch_basic.py +1 -0
  86. data/ext/enterprise_script_service/libseccomp/tests/{18-sim-basic_whitelist.c → 18-sim-basic_allowlist.c} +0 -0
  87. data/ext/enterprise_script_service/libseccomp/tests/{18-sim-basic_whitelist.py → 18-sim-basic_allowlist.py} +0 -0
  88. data/ext/enterprise_script_service/libseccomp/tests/18-sim-basic_allowlist.tests +32 -0
  89. data/ext/enterprise_script_service/libseccomp/tests/23-sim-arch_all_le_basic.c +3 -0
  90. data/ext/enterprise_script_service/libseccomp/tests/23-sim-arch_all_le_basic.py +1 -0
  91. data/ext/enterprise_script_service/libseccomp/tests/30-sim-socket_syscalls.c +3 -0
  92. data/ext/enterprise_script_service/libseccomp/tests/30-sim-socket_syscalls.py +1 -0
  93. data/ext/enterprise_script_service/libseccomp/tests/30-sim-socket_syscalls.tests +33 -17
  94. data/ext/enterprise_script_service/libseccomp/tests/{34-sim-basic_blacklist.c → 34-sim-basic_denylist.c} +0 -0
  95. data/ext/enterprise_script_service/libseccomp/tests/{34-sim-basic_blacklist.py → 34-sim-basic_denylist.py} +0 -0
  96. data/ext/enterprise_script_service/libseccomp/tests/34-sim-basic_denylist.tests +32 -0
  97. data/ext/enterprise_script_service/libseccomp/tests/36-sim-ipc_syscalls.c +3 -0
  98. data/ext/enterprise_script_service/libseccomp/tests/36-sim-ipc_syscalls.py +1 -0
  99. data/ext/enterprise_script_service/libseccomp/tests/36-sim-ipc_syscalls.tests +25 -25
  100. data/ext/enterprise_script_service/libseccomp/tests/39-basic-api_level.c +24 -3
  101. data/ext/enterprise_script_service/libseccomp/tests/39-basic-api_level.py +16 -1
  102. data/ext/enterprise_script_service/libseccomp/tests/47-live-kill_process.c +3 -3
  103. data/ext/enterprise_script_service/libseccomp/tests/51-live-user_notification.c +112 -0
  104. data/ext/enterprise_script_service/libseccomp/tests/51-live-user_notification.py +60 -0
  105. data/ext/enterprise_script_service/libseccomp/tests/51-live-user_notification.tests +11 -0
  106. data/ext/enterprise_script_service/libseccomp/tests/52-basic-load.c +48 -0
  107. data/ext/enterprise_script_service/libseccomp/tests/52-basic-load.py +38 -0
  108. data/ext/enterprise_script_service/libseccomp/tests/52-basic-load.tests +11 -0
  109. data/ext/enterprise_script_service/libseccomp/tests/53-sim-binary_tree.c +156 -0
  110. data/ext/enterprise_script_service/libseccomp/tests/53-sim-binary_tree.py +95 -0
  111. data/ext/enterprise_script_service/libseccomp/tests/53-sim-binary_tree.tests +65 -0
  112. data/ext/enterprise_script_service/libseccomp/tests/54-live-binary_tree.c +128 -0
  113. data/ext/enterprise_script_service/libseccomp/tests/54-live-binary_tree.py +95 -0
  114. data/ext/enterprise_script_service/libseccomp/tests/54-live-binary_tree.tests +11 -0
  115. data/ext/enterprise_script_service/libseccomp/tests/55-basic-pfc_binary_tree.c +134 -0
  116. data/ext/enterprise_script_service/libseccomp/tests/55-basic-pfc_binary_tree.sh +46 -0
  117. data/ext/enterprise_script_service/libseccomp/tests/55-basic-pfc_binary_tree.tests +11 -0
  118. data/ext/enterprise_script_service/libseccomp/tests/56-basic-iterate_syscalls.c +90 -0
  119. data/ext/enterprise_script_service/libseccomp/tests/56-basic-iterate_syscalls.py +65 -0
  120. data/ext/enterprise_script_service/libseccomp/tests/56-basic-iterate_syscalls.tests +11 -0
  121. data/ext/enterprise_script_service/libseccomp/tests/57-basic-rawsysrc.c +64 -0
  122. data/ext/enterprise_script_service/libseccomp/tests/57-basic-rawsysrc.py +46 -0
  123. data/ext/enterprise_script_service/libseccomp/tests/57-basic-rawsysrc.tests +11 -0
  124. data/ext/enterprise_script_service/libseccomp/tests/58-live-tsync_notify.c +116 -0
  125. data/ext/enterprise_script_service/libseccomp/tests/58-live-tsync_notify.py +61 -0
  126. data/ext/enterprise_script_service/libseccomp/tests/58-live-tsync_notify.tests +11 -0
  127. data/ext/enterprise_script_service/libseccomp/tests/Makefile.am +34 -10
  128. data/ext/enterprise_script_service/libseccomp/tests/regression +10 -3
  129. data/ext/enterprise_script_service/libseccomp/tests/util.c +3 -3
  130. data/ext/enterprise_script_service/libseccomp/tools/Makefile.am +0 -3
  131. data/ext/enterprise_script_service/libseccomp/tools/check-syntax +1 -1
  132. data/ext/enterprise_script_service/libseccomp/tools/scmp_arch_detect.c +3 -0
  133. data/ext/enterprise_script_service/libseccomp/tools/scmp_bpf_disasm.c +4 -2
  134. data/ext/enterprise_script_service/libseccomp/tools/scmp_bpf_sim.c +4 -0
  135. data/ext/enterprise_script_service/libseccomp/tools/util.c +14 -12
  136. data/ext/enterprise_script_service/libseccomp/tools/util.h +7 -0
  137. data/ext/enterprise_script_service/mruby/.github/workflows/build.yml +149 -0
  138. data/ext/enterprise_script_service/mruby/.github/workflows/codeql-analysis.yml +55 -0
  139. data/ext/enterprise_script_service/mruby/.github/workflows/lint.yml +23 -0
  140. data/ext/enterprise_script_service/mruby/.github/workflows/oss-fuzz.yml +27 -0
  141. data/ext/enterprise_script_service/mruby/.github/workflows/spell-checker.yml +17 -0
  142. data/ext/enterprise_script_service/mruby/.gitignore +3 -0
  143. data/ext/enterprise_script_service/mruby/.gitlab-ci.yml +3 -3
  144. data/ext/enterprise_script_service/mruby/.markdownlint.yml +16 -0
  145. data/ext/enterprise_script_service/mruby/.travis.yml +7 -10
  146. data/ext/enterprise_script_service/mruby/.yamllint +8 -0
  147. data/ext/enterprise_script_service/mruby/AUTHORS +4 -0
  148. data/ext/enterprise_script_service/mruby/CODEOWNERS +1 -0
  149. data/ext/enterprise_script_service/mruby/CONTRIBUTING.md +6 -13
  150. data/ext/enterprise_script_service/mruby/Doxyfile +4 -4
  151. data/ext/enterprise_script_service/mruby/LICENSE +1 -1
  152. data/ext/enterprise_script_service/mruby/Makefile +1 -1
  153. data/ext/enterprise_script_service/mruby/README.md +5 -11
  154. data/ext/enterprise_script_service/mruby/Rakefile +18 -108
  155. data/ext/enterprise_script_service/mruby/TODO.md +17 -0
  156. data/ext/enterprise_script_service/mruby/appveyor.yml +29 -26
  157. data/ext/enterprise_script_service/mruby/benchmark/bm_ao_render.rb +1 -1
  158. data/ext/enterprise_script_service/mruby/build_config.rb +9 -152
  159. data/ext/enterprise_script_service/mruby/{examples/targets/build_config_ArduinoDue.rb → build_config/ArduinoDue.rb} +4 -21
  160. data/ext/enterprise_script_service/mruby/{examples/targets/build_config_IntelEdison.rb → build_config/IntelEdison.rb} +4 -4
  161. data/ext/enterprise_script_service/mruby/{examples/targets/build_config_IntelGalileo.rb → build_config/IntelGalileo.rb} +3 -20
  162. data/ext/enterprise_script_service/mruby/{examples/targets/build_config_RX630.rb → build_config/RX630.rb} +4 -21
  163. data/ext/enterprise_script_service/mruby/build_config/android_arm64-v8a.rb +11 -0
  164. data/ext/enterprise_script_service/mruby/build_config/android_armeabi.rb +11 -0
  165. data/ext/enterprise_script_service/mruby/{examples/targets/build_config_android_armeabi_v7a_neon_hard.rb → build_config/android_armeabi_v7a_neon_hard.rb} +0 -15
  166. data/ext/enterprise_script_service/mruby/build_config/bench.rb +11 -0
  167. data/ext/enterprise_script_service/mruby/build_config/boxing.rb +21 -0
  168. data/ext/enterprise_script_service/mruby/{examples/targets/build_config_chipKITMax32.rb → build_config/chipKITMax32.rb} +4 -21
  169. data/ext/enterprise_script_service/mruby/{appveyor_config.rb → build_config/ci/gcc-clang.rb} +11 -8
  170. data/ext/enterprise_script_service/mruby/build_config/ci/msvc.rb +20 -0
  171. data/ext/enterprise_script_service/mruby/build_config/clang-asan.rb +11 -0
  172. data/ext/enterprise_script_service/mruby/build_config/cross-32bit.rb +14 -0
  173. data/ext/enterprise_script_service/mruby/build_config/default.rb +80 -0
  174. data/ext/enterprise_script_service/mruby/build_config/dreamcast_shelf.rb +94 -0
  175. data/ext/enterprise_script_service/mruby/build_config/gameboyadvance.rb +73 -0
  176. data/ext/enterprise_script_service/mruby/build_config/host-cxx.rb +12 -0
  177. data/ext/enterprise_script_service/mruby/build_config/host-debug.rb +20 -0
  178. data/ext/enterprise_script_service/mruby/build_config/host-gprof.rb +14 -0
  179. data/ext/enterprise_script_service/mruby/build_config/host-m32.rb +15 -0
  180. data/ext/enterprise_script_service/mruby/build_config/host-shared.rb +36 -0
  181. data/ext/enterprise_script_service/mruby/build_config/mrbc.rb +11 -0
  182. data/ext/enterprise_script_service/mruby/build_config/no-float.rb +17 -0
  183. data/ext/enterprise_script_service/mruby/doc/guides/compile.md +142 -49
  184. data/ext/enterprise_script_service/mruby/doc/guides/debugger.md +5 -4
  185. data/ext/enterprise_script_service/mruby/doc/guides/gc-arena-howto.md +1 -1
  186. data/ext/enterprise_script_service/mruby/doc/guides/mrbconf.md +53 -30
  187. data/ext/enterprise_script_service/mruby/doc/guides/mrbgems.md +31 -14
  188. data/ext/enterprise_script_service/mruby/doc/guides/symbol.md +83 -0
  189. data/ext/enterprise_script_service/mruby/doc/limitations.md +35 -36
  190. data/ext/enterprise_script_service/mruby/doc/mruby3.md +163 -0
  191. data/ext/enterprise_script_service/mruby/doc/opcode.md +102 -103
  192. data/ext/enterprise_script_service/mruby/examples/mrbgems/c_and_ruby_extension_example/mrblib/example.rb +1 -1
  193. data/ext/enterprise_script_service/mruby/examples/mrbgems/c_and_ruby_extension_example/src/example.c +5 -1
  194. data/ext/enterprise_script_service/mruby/examples/mrbgems/c_extension_example/src/example.c +5 -1
  195. data/ext/enterprise_script_service/mruby/examples/mrbgems/ruby_extension_example/mrblib/example.rb +1 -1
  196. data/ext/enterprise_script_service/mruby/include/mrbconf.h +88 -66
  197. data/ext/enterprise_script_service/mruby/include/mruby.h +160 -104
  198. data/ext/enterprise_script_service/mruby/include/mruby/array.h +27 -6
  199. data/ext/enterprise_script_service/mruby/include/mruby/boxing_nan.h +80 -46
  200. data/ext/enterprise_script_service/mruby/include/mruby/boxing_no.h +8 -8
  201. data/ext/enterprise_script_service/mruby/include/mruby/boxing_word.h +76 -55
  202. data/ext/enterprise_script_service/mruby/include/mruby/class.h +10 -8
  203. data/ext/enterprise_script_service/mruby/include/mruby/common.h +14 -1
  204. data/ext/enterprise_script_service/mruby/include/mruby/compile.h +20 -6
  205. data/ext/enterprise_script_service/mruby/include/mruby/debug.h +2 -2
  206. data/ext/enterprise_script_service/mruby/include/mruby/dump.h +18 -52
  207. data/ext/enterprise_script_service/mruby/include/mruby/endian.h +44 -0
  208. data/ext/enterprise_script_service/mruby/include/mruby/error.h +39 -5
  209. data/ext/enterprise_script_service/mruby/include/mruby/gc.h +1 -0
  210. data/ext/enterprise_script_service/mruby/include/mruby/hash.h +33 -13
  211. data/ext/enterprise_script_service/mruby/include/mruby/irep.h +74 -14
  212. data/ext/enterprise_script_service/mruby/include/mruby/istruct.h +4 -1
  213. data/ext/enterprise_script_service/mruby/include/mruby/khash.h +19 -9
  214. data/ext/enterprise_script_service/mruby/include/mruby/numeric.h +37 -63
  215. data/ext/enterprise_script_service/mruby/include/mruby/opcode.h +1 -27
  216. data/ext/enterprise_script_service/mruby/include/mruby/ops.h +29 -24
  217. data/ext/enterprise_script_service/mruby/include/mruby/presym.h +40 -0
  218. data/ext/enterprise_script_service/mruby/include/mruby/presym/disable.h +70 -0
  219. data/ext/enterprise_script_service/mruby/include/mruby/presym/enable.h +37 -0
  220. data/ext/enterprise_script_service/mruby/include/mruby/presym/scanning.h +73 -0
  221. data/ext/enterprise_script_service/mruby/include/mruby/proc.h +93 -21
  222. data/ext/enterprise_script_service/mruby/include/mruby/string.h +12 -16
  223. data/ext/enterprise_script_service/mruby/include/mruby/throw.h +14 -3
  224. data/ext/enterprise_script_service/mruby/include/mruby/value.h +60 -59
  225. data/ext/enterprise_script_service/mruby/include/mruby/variable.h +1 -0
  226. data/ext/enterprise_script_service/mruby/include/mruby/version.h +25 -6
  227. data/ext/enterprise_script_service/mruby/lib/mruby/build.rb +198 -72
  228. data/ext/enterprise_script_service/mruby/lib/mruby/build/command.rb +71 -78
  229. data/ext/enterprise_script_service/mruby/lib/mruby/build/load_gems.rb +12 -10
  230. data/ext/enterprise_script_service/mruby/lib/{mruby-core-ext.rb → mruby/core_ext.rb} +10 -3
  231. data/ext/enterprise_script_service/mruby/lib/mruby/gem.rb +84 -32
  232. data/ext/enterprise_script_service/mruby/lib/mruby/lockfile.rb +1 -1
  233. data/ext/enterprise_script_service/mruby/lib/mruby/presym.rb +132 -0
  234. data/ext/enterprise_script_service/mruby/lib/mruby/source.rb +3 -1
  235. data/ext/enterprise_script_service/mruby/mrbgems/default-no-fpu.gembox +3 -0
  236. data/ext/enterprise_script_service/mruby/mrbgems/default-no-stdio.gembox +4 -0
  237. data/ext/enterprise_script_service/mruby/mrbgems/default.gembox +9 -81
  238. data/ext/enterprise_script_service/mruby/mrbgems/full-core.gembox +1 -4
  239. data/ext/enterprise_script_service/mruby/mrbgems/math.gembox +10 -0
  240. data/ext/enterprise_script_service/mruby/mrbgems/metaprog.gembox +15 -0
  241. data/ext/enterprise_script_service/mruby/mrbgems/mruby-array-ext/mrblib/array.rb +1 -32
  242. data/ext/enterprise_script_service/mruby/mrbgems/mruby-array-ext/src/array.c +10 -12
  243. data/ext/enterprise_script_service/mruby/mrbgems/mruby-array-ext/test/array.rb +0 -13
  244. data/ext/enterprise_script_service/mruby/mrbgems/mruby-bin-config/mrbgem.rake +30 -18
  245. data/ext/enterprise_script_service/mruby/mrbgems/mruby-bin-config/mruby-config +18 -8
  246. data/ext/enterprise_script_service/mruby/mrbgems/mruby-bin-debugger/bintest/mrdb.rb +3 -6
  247. data/ext/enterprise_script_service/mruby/mrbgems/mruby-bin-debugger/bintest/print.rb +10 -10
  248. data/ext/enterprise_script_service/mruby/mrbgems/mruby-bin-debugger/tools/mrdb/apibreak.c +14 -9
  249. data/ext/enterprise_script_service/mruby/mrbgems/mruby-bin-debugger/tools/mrdb/apiprint.c +3 -2
  250. data/ext/enterprise_script_service/mruby/mrbgems/mruby-bin-debugger/tools/mrdb/mrdb.c +4 -4
  251. data/ext/enterprise_script_service/mruby/mrbgems/mruby-bin-debugger/tools/mrdb/mrdb.h +2 -6
  252. data/ext/enterprise_script_service/mruby/mrbgems/mruby-bin-debugger/tools/mrdb/mrdbconf.h +6 -2
  253. data/ext/enterprise_script_service/mruby/mrbgems/mruby-bin-mirb/bintest/mirb.rb +23 -5
  254. data/ext/enterprise_script_service/mruby/mrbgems/mruby-bin-mirb/mrbgem.rake +11 -2
  255. data/ext/enterprise_script_service/mruby/mrbgems/mruby-bin-mirb/tools/mirb/mirb.c +46 -35
  256. data/ext/enterprise_script_service/mruby/mrbgems/{mruby-compiler → mruby-bin-mrbc}/bintest/mrbc.rb +0 -0
  257. data/ext/enterprise_script_service/mruby/mrbgems/mruby-bin-mrbc/mrbgem.rake +3 -4
  258. data/ext/enterprise_script_service/mruby/mrbgems/mruby-bin-mrbc/tools/mrbc/mrbc.c +41 -28
  259. data/ext/enterprise_script_service/mruby/mrbgems/mruby-bin-mruby/bintest/mruby.rb +25 -4
  260. data/ext/enterprise_script_service/mruby/mrbgems/mruby-bin-mruby/mrbgem.rake +1 -2
  261. data/ext/enterprise_script_service/mruby/mrbgems/mruby-bin-mruby/tools/mruby/mruby.c +26 -6
  262. data/ext/enterprise_script_service/mruby/mrbgems/mruby-bin-strip/bintest/mruby-strip.rb +1 -1
  263. data/ext/enterprise_script_service/mruby/mrbgems/mruby-bin-strip/tools/mruby-strip/mruby-strip.c +6 -2
  264. data/ext/enterprise_script_service/mruby/mrbgems/mruby-catch/mrbgem.rake +5 -0
  265. data/ext/enterprise_script_service/mruby/mrbgems/mruby-catch/mrblib/catch.rb +27 -0
  266. data/ext/enterprise_script_service/mruby/mrbgems/mruby-class-ext/src/class.c +7 -1
  267. data/ext/enterprise_script_service/mruby/mrbgems/mruby-compiler/core/codegen.c +495 -436
  268. data/ext/enterprise_script_service/mruby/mrbgems/mruby-compiler/core/keywords +5 -0
  269. data/ext/enterprise_script_service/mruby/mrbgems/mruby-compiler/core/lex.def +49 -44
  270. data/ext/enterprise_script_service/mruby/mrbgems/mruby-compiler/core/parse.y +637 -220
  271. data/ext/enterprise_script_service/mruby/mrbgems/mruby-compiler/core/y.tab.c +13734 -0
  272. data/ext/enterprise_script_service/mruby/mrbgems/mruby-compiler/mrbgem.rake +20 -23
  273. data/ext/enterprise_script_service/mruby/mrbgems/mruby-complex/mrblib/complex.rb +2 -2
  274. data/ext/enterprise_script_service/mruby/mrbgems/mruby-complex/src/complex.c +9 -9
  275. data/ext/enterprise_script_service/mruby/mrbgems/mruby-complex/test/complex.rb +4 -4
  276. data/ext/enterprise_script_service/mruby/mrbgems/mruby-enumerator/mrblib/enumerator.rb +1 -0
  277. data/ext/enterprise_script_service/mruby/mrbgems/mruby-enumerator/test/enumerator.rb +2 -2
  278. data/ext/enterprise_script_service/mruby/mrbgems/mruby-error/mrbgem.rake +2 -2
  279. data/ext/enterprise_script_service/mruby/mrbgems/mruby-error/src/exception.c +3 -3
  280. data/ext/enterprise_script_service/mruby/mrbgems/mruby-eval/src/eval.c +19 -238
  281. data/ext/enterprise_script_service/mruby/mrbgems/mruby-eval/test/eval.rb +21 -0
  282. data/ext/enterprise_script_service/mruby/mrbgems/mruby-fiber/src/fiber.c +19 -15
  283. data/ext/enterprise_script_service/mruby/mrbgems/mruby-hash-ext/src/hash-ext.c +31 -5
  284. data/ext/enterprise_script_service/mruby/mrbgems/mruby-hash-ext/test/hash.rb +7 -0
  285. data/ext/enterprise_script_service/mruby/mrbgems/mruby-inline-struct/test/inline.c +5 -6
  286. data/ext/enterprise_script_service/mruby/mrbgems/mruby-io/README.md +18 -16
  287. data/ext/enterprise_script_service/mruby/mrbgems/mruby-io/include/mruby/ext/io.h +39 -7
  288. data/ext/enterprise_script_service/mruby/mrbgems/mruby-io/mrbgem.rake +2 -8
  289. data/ext/enterprise_script_service/mruby/mrbgems/mruby-io/mrblib/file.rb +9 -4
  290. data/ext/enterprise_script_service/mruby/mrbgems/mruby-io/mrblib/file_constants.rb +0 -16
  291. data/ext/enterprise_script_service/mruby/mrbgems/mruby-io/mrblib/io.rb +9 -14
  292. data/ext/enterprise_script_service/mruby/mrbgems/mruby-io/src/file.c +107 -59
  293. data/ext/enterprise_script_service/mruby/mrbgems/mruby-io/src/file_test.c +22 -38
  294. data/ext/enterprise_script_service/mruby/mrbgems/mruby-io/src/io.c +417 -203
  295. data/ext/enterprise_script_service/mruby/mrbgems/mruby-io/test/file.rb +20 -12
  296. data/ext/enterprise_script_service/mruby/mrbgems/mruby-io/test/io.rb +33 -2
  297. data/ext/enterprise_script_service/mruby/mrbgems/mruby-io/test/mruby_io_test.c +58 -50
  298. data/ext/enterprise_script_service/mruby/mrbgems/mruby-kernel-ext/src/kernel.c +13 -14
  299. data/ext/enterprise_script_service/mruby/mrbgems/mruby-math/src/math.c +13 -12
  300. data/ext/enterprise_script_service/mruby/mrbgems/mruby-math/test/math.rb +5 -4
  301. data/ext/enterprise_script_service/mruby/mrbgems/mruby-metaprog/src/metaprog.c +56 -73
  302. data/ext/enterprise_script_service/mruby/mrbgems/mruby-metaprog/test/metaprog.rb +13 -4
  303. data/ext/enterprise_script_service/mruby/mrbgems/mruby-method/README.md +4 -3
  304. data/ext/enterprise_script_service/mruby/mrbgems/mruby-method/src/method.c +80 -78
  305. data/ext/enterprise_script_service/mruby/mrbgems/mruby-method/test/method.rb +4 -4
  306. data/ext/enterprise_script_service/mruby/mrbgems/mruby-numeric-ext/src/numeric_ext.c +14 -13
  307. data/ext/enterprise_script_service/mruby/mrbgems/mruby-object-ext/src/object.c +8 -16
  308. data/ext/enterprise_script_service/mruby/mrbgems/mruby-objectspace/src/mruby_objectspace.c +18 -13
  309. data/ext/enterprise_script_service/mruby/mrbgems/mruby-os-memsize/mrbgem.rake +10 -0
  310. data/ext/enterprise_script_service/mruby/mrbgems/mruby-os-memsize/src/memsize.c +231 -0
  311. data/ext/enterprise_script_service/mruby/mrbgems/mruby-os-memsize/test/memsize.rb +63 -0
  312. data/ext/enterprise_script_service/mruby/mrbgems/mruby-pack/README.md +15 -18
  313. data/ext/enterprise_script_service/mruby/mrbgems/mruby-pack/src/pack.c +120 -67
  314. data/ext/enterprise_script_service/mruby/mrbgems/mruby-print/mrblib/print.rb +1 -30
  315. data/ext/enterprise_script_service/mruby/mrbgems/mruby-print/src/print.c +65 -26
  316. data/ext/enterprise_script_service/mruby/mrbgems/mruby-proc-ext/src/proc.c +34 -21
  317. data/ext/enterprise_script_service/mruby/mrbgems/mruby-proc-ext/test/proc.c +1 -1
  318. data/ext/enterprise_script_service/mruby/mrbgems/mruby-random/src/random.c +98 -43
  319. data/ext/enterprise_script_service/mruby/mrbgems/mruby-random/test/random.rb +2 -2
  320. data/ext/enterprise_script_service/mruby/mrbgems/mruby-range-ext/mrblib/range.rb +39 -6
  321. data/ext/enterprise_script_service/mruby/mrbgems/mruby-range-ext/src/range.c +21 -43
  322. data/ext/enterprise_script_service/mruby/mrbgems/mruby-range-ext/test/range.rb +27 -3
  323. data/ext/enterprise_script_service/mruby/mrbgems/mruby-rational/mrblib/rational.rb +12 -20
  324. data/ext/enterprise_script_service/mruby/mrbgems/mruby-rational/src/rational.c +216 -38
  325. data/ext/enterprise_script_service/mruby/mrbgems/mruby-rational/test/rational.rb +6 -6
  326. data/ext/enterprise_script_service/mruby/mrbgems/mruby-sleep/README.md +6 -4
  327. data/ext/enterprise_script_service/mruby/mrbgems/mruby-sleep/src/mrb_sleep.c +5 -5
  328. data/ext/enterprise_script_service/mruby/mrbgems/mruby-socket/README.md +3 -2
  329. data/ext/enterprise_script_service/mruby/mrbgems/mruby-socket/mrbgem.rake +1 -1
  330. data/ext/enterprise_script_service/mruby/mrbgems/mruby-socket/src/socket.c +47 -45
  331. data/ext/enterprise_script_service/mruby/mrbgems/mruby-socket/test/sockettest.c +3 -2
  332. data/ext/enterprise_script_service/mruby/mrbgems/mruby-sprintf/src/sprintf.c +161 -93
  333. data/ext/enterprise_script_service/mruby/mrbgems/mruby-sprintf/test/sprintf.rb +9 -25
  334. data/ext/enterprise_script_service/mruby/mrbgems/mruby-string-ext/mrblib/string.rb +23 -1
  335. data/ext/enterprise_script_service/mruby/mrbgems/mruby-string-ext/src/string.c +17 -14
  336. data/ext/enterprise_script_service/mruby/mrbgems/mruby-struct/mrblib/struct.rb +1 -1
  337. data/ext/enterprise_script_service/mruby/mrbgems/mruby-struct/src/struct.c +23 -36
  338. data/ext/enterprise_script_service/mruby/mrbgems/mruby-symbol-ext/src/symbol.c +7 -6
  339. data/ext/enterprise_script_service/mruby/mrbgems/mruby-symbol-ext/test/symbol.rb +1 -1
  340. data/ext/enterprise_script_service/mruby/mrbgems/mruby-test/README.md +0 -1
  341. data/ext/enterprise_script_service/mruby/mrbgems/mruby-test/driver.c +5 -5
  342. data/ext/enterprise_script_service/mruby/mrbgems/mruby-test/mrbgem.rake +17 -44
  343. data/ext/enterprise_script_service/mruby/mrbgems/mruby-test/vformat.c +4 -4
  344. data/ext/enterprise_script_service/mruby/mrbgems/mruby-time/src/time.c +37 -41
  345. data/ext/enterprise_script_service/mruby/mrbgems/stdlib-ext.gembox +18 -0
  346. data/ext/enterprise_script_service/mruby/mrbgems/stdlib-io.gembox +12 -0
  347. data/ext/enterprise_script_service/mruby/mrbgems/stdlib.gembox +54 -0
  348. data/ext/enterprise_script_service/mruby/mrblib/00class.rb +10 -0
  349. data/ext/enterprise_script_service/mruby/mrblib/10error.rb +4 -0
  350. data/ext/enterprise_script_service/mruby/mrblib/array.rb +17 -9
  351. data/ext/enterprise_script_service/mruby/mrblib/enum.rb +1 -1
  352. data/ext/enterprise_script_service/mruby/mrblib/hash.rb +3 -23
  353. data/ext/enterprise_script_service/mruby/mrblib/init_mrblib.c +0 -11
  354. data/ext/enterprise_script_service/mruby/mrblib/numeric.rb +36 -11
  355. data/ext/enterprise_script_service/mruby/mrblib/range.rb +25 -3
  356. data/ext/enterprise_script_service/mruby/oss-fuzz/mruby_proto_fuzzer.cpp +2 -2
  357. data/ext/enterprise_script_service/mruby/oss-fuzz/proto_to_ruby.h +1 -1
  358. data/ext/enterprise_script_service/mruby/src/array.c +67 -90
  359. data/ext/enterprise_script_service/mruby/src/backtrace.c +18 -19
  360. data/ext/enterprise_script_service/mruby/src/class.c +819 -211
  361. data/ext/enterprise_script_service/mruby/src/codedump.c +226 -197
  362. data/ext/enterprise_script_service/mruby/src/debug.c +14 -11
  363. data/ext/enterprise_script_service/mruby/src/dump.c +470 -207
  364. data/ext/enterprise_script_service/mruby/src/enum.c +1 -1
  365. data/ext/enterprise_script_service/mruby/src/error.c +94 -20
  366. data/ext/enterprise_script_service/mruby/src/etc.c +56 -39
  367. data/ext/enterprise_script_service/mruby/src/fmt_fp.c +103 -27
  368. data/ext/enterprise_script_service/mruby/src/gc.c +86 -349
  369. data/ext/enterprise_script_service/mruby/src/hash.c +1058 -723
  370. data/ext/enterprise_script_service/mruby/src/kernel.c +78 -226
  371. data/ext/enterprise_script_service/mruby/src/load.c +215 -159
  372. data/ext/enterprise_script_service/mruby/src/numeric.c +400 -382
  373. data/ext/enterprise_script_service/mruby/src/object.c +115 -90
  374. data/ext/enterprise_script_service/mruby/src/print.c +31 -6
  375. data/ext/enterprise_script_service/mruby/src/proc.c +56 -45
  376. data/ext/enterprise_script_service/mruby/src/range.c +49 -33
  377. data/ext/enterprise_script_service/mruby/src/state.c +58 -42
  378. data/ext/enterprise_script_service/mruby/src/string.c +151 -156
  379. data/ext/enterprise_script_service/mruby/src/symbol.c +132 -66
  380. data/ext/enterprise_script_service/mruby/src/value_array.h +1 -0
  381. data/ext/enterprise_script_service/mruby/src/variable.c +158 -158
  382. data/ext/enterprise_script_service/mruby/src/vm.c +655 -645
  383. data/ext/enterprise_script_service/mruby/tasks/benchmark.rake +6 -6
  384. data/ext/enterprise_script_service/mruby/tasks/bin.rake +23 -0
  385. data/ext/enterprise_script_service/mruby/tasks/core.rake +12 -0
  386. data/ext/enterprise_script_service/mruby/tasks/doc.rake +50 -38
  387. data/ext/enterprise_script_service/mruby/tasks/gitlab.rake +64 -61
  388. data/ext/enterprise_script_service/mruby/tasks/libmruby.rake +10 -1
  389. data/ext/enterprise_script_service/mruby/tasks/mrbgems.rake +13 -1
  390. data/ext/enterprise_script_service/mruby/tasks/mrblib.rake +40 -0
  391. data/ext/enterprise_script_service/mruby/tasks/presym.rake +44 -0
  392. data/ext/enterprise_script_service/mruby/tasks/test.rake +68 -0
  393. data/ext/enterprise_script_service/mruby/tasks/toolchains/android.rake +46 -1
  394. data/ext/enterprise_script_service/mruby/tasks/toolchains/gcc.rake +8 -7
  395. data/ext/enterprise_script_service/mruby/tasks/toolchains/openwrt.rake +13 -17
  396. data/ext/enterprise_script_service/mruby/tasks/toolchains/visualcpp.rake +21 -25
  397. data/ext/enterprise_script_service/mruby/test/assert.rb +5 -4
  398. data/ext/enterprise_script_service/mruby/test/bintest.rb +5 -5
  399. data/ext/enterprise_script_service/mruby/test/t/argumenterror.rb +16 -0
  400. data/ext/enterprise_script_service/mruby/test/t/array.rb +7 -3
  401. data/ext/enterprise_script_service/mruby/test/t/bs_literal.rb +1 -1
  402. data/ext/enterprise_script_service/mruby/test/t/ensure.rb +8 -26
  403. data/ext/enterprise_script_service/mruby/test/t/exception.rb +2 -2
  404. data/ext/enterprise_script_service/mruby/test/t/float.rb +18 -8
  405. data/ext/enterprise_script_service/mruby/test/t/hash.rb +903 -281
  406. data/ext/enterprise_script_service/mruby/test/t/integer.rb +10 -38
  407. data/ext/enterprise_script_service/mruby/test/t/kernel.rb +16 -25
  408. data/ext/enterprise_script_service/mruby/test/t/literals.rb +50 -0
  409. data/ext/enterprise_script_service/mruby/test/t/module.rb +2 -2
  410. data/ext/enterprise_script_service/mruby/test/t/numeric.rb +1 -1
  411. data/ext/enterprise_script_service/mruby/test/t/range.rb +83 -1
  412. data/ext/enterprise_script_service/mruby/test/t/string.rb +4 -0
  413. data/ext/enterprise_script_service/mruby/test/t/superclass.rb +10 -10
  414. data/ext/enterprise_script_service/mruby/test/t/syntax.rb +24 -0
  415. data/ext/enterprise_script_service/mruby/test/t/vformat.rb +3 -3
  416. data/ext/enterprise_script_service/mruby_config.rb +2 -5
  417. data/ext/enterprise_script_service/mruby_engine.cpp +1 -1
  418. data/ext/enterprise_script_service/msgpack/.github/depends/boost.sh +56 -0
  419. data/ext/enterprise_script_service/msgpack/.github/workflows/coverage.yml +62 -0
  420. data/ext/enterprise_script_service/msgpack/.github/workflows/gha.yml +304 -0
  421. data/ext/enterprise_script_service/msgpack/CHANGELOG.md +11 -0
  422. data/ext/enterprise_script_service/msgpack/CMakeLists.txt +82 -39
  423. data/ext/enterprise_script_service/msgpack/Files.cmake +22 -12
  424. data/ext/enterprise_script_service/msgpack/QUICKSTART-C.md +26 -29
  425. data/ext/enterprise_script_service/msgpack/README.md +3 -2
  426. data/ext/enterprise_script_service/msgpack/appveyor.yml +6 -2
  427. data/ext/enterprise_script_service/msgpack/ci/build_cmake.sh +3 -1
  428. data/ext/enterprise_script_service/msgpack/cmake/CodeCoverage.cmake +55 -0
  429. data/ext/enterprise_script_service/msgpack/codecov.yml +36 -0
  430. data/ext/enterprise_script_service/msgpack/example/CMakeLists.txt +9 -5
  431. data/ext/enterprise_script_service/msgpack/example/boost/CMakeLists.txt +1 -1
  432. data/ext/enterprise_script_service/msgpack/example/c/CMakeLists.txt +17 -6
  433. data/ext/enterprise_script_service/msgpack/example/c/boundary.c +296 -0
  434. data/ext/enterprise_script_service/msgpack/example/c/jsonconv.c +419 -0
  435. data/ext/enterprise_script_service/msgpack/example/c/simple_c.c +1 -1
  436. data/ext/enterprise_script_service/msgpack/example/cpp03/CMakeLists.txt +3 -3
  437. data/ext/enterprise_script_service/msgpack/example/cpp11/CMakeLists.txt +2 -2
  438. data/ext/enterprise_script_service/msgpack/example/x3/CMakeLists.txt +2 -2
  439. data/ext/enterprise_script_service/msgpack/include/msgpack/pack.h +24 -1
  440. data/ext/enterprise_script_service/msgpack/include/msgpack/v1/adaptor/array_ref.hpp +5 -4
  441. data/ext/enterprise_script_service/msgpack/include/msgpack/v1/adaptor/boost/optional.hpp +4 -4
  442. data/ext/enterprise_script_service/msgpack/include/msgpack/v1/adaptor/cpp17/vector_byte.hpp +8 -8
  443. data/ext/enterprise_script_service/msgpack/include/msgpack/v1/adaptor/map.hpp +4 -4
  444. data/ext/enterprise_script_service/msgpack/include/msgpack/v1/adaptor/vector.hpp +4 -4
  445. data/ext/enterprise_script_service/msgpack/include/msgpack/v1/adaptor/vector_char.hpp +8 -8
  446. data/ext/enterprise_script_service/msgpack/include/msgpack/v1/adaptor/vector_unsigned_char.hpp +8 -8
  447. data/ext/enterprise_script_service/msgpack/include/msgpack/v1/adaptor/wstring.hpp +4 -4
  448. data/ext/enterprise_script_service/msgpack/include/msgpack/v3/unpack.hpp +6 -6
  449. data/ext/enterprise_script_service/msgpack/include/msgpack/version_master.h +2 -2
  450. data/ext/enterprise_script_service/msgpack/include/msgpack/zbuffer.h +4 -4
  451. data/ext/enterprise_script_service/msgpack/make_file_list.sh +38 -11
  452. data/ext/enterprise_script_service/msgpack/src/vrefbuffer.c +6 -0
  453. data/ext/enterprise_script_service/msgpack/test/CMakeLists.txt +86 -64
  454. data/ext/enterprise_script_service/msgpack/test/array_ref.cpp +4 -0
  455. data/ext/enterprise_script_service/msgpack/test/boost_fusion.cpp +4 -0
  456. data/ext/enterprise_script_service/msgpack/test/boost_optional.cpp +4 -0
  457. data/ext/enterprise_script_service/msgpack/test/boost_string_ref.cpp +4 -1
  458. data/ext/enterprise_script_service/msgpack/test/boost_string_view.cpp +4 -0
  459. data/ext/enterprise_script_service/msgpack/test/boost_variant.cpp +4 -0
  460. data/ext/enterprise_script_service/msgpack/test/buffer.cpp +4 -47
  461. data/ext/enterprise_script_service/msgpack/test/buffer_c.cpp +148 -0
  462. data/ext/enterprise_script_service/msgpack/test/carray.cpp +4 -0
  463. data/ext/enterprise_script_service/msgpack/test/cases.cpp +8 -4
  464. data/ext/enterprise_script_service/msgpack/test/convert.cpp +8 -4
  465. data/ext/enterprise_script_service/msgpack/test/fixint.cpp +4 -0
  466. data/ext/enterprise_script_service/msgpack/test/fixint_c.cpp +4 -0
  467. data/ext/enterprise_script_service/msgpack/test/fuzz_unpack_pack_fuzzer_cpp11.cpp +4 -0
  468. data/ext/enterprise_script_service/msgpack/test/iterator_cpp11.cpp +4 -0
  469. data/ext/enterprise_script_service/msgpack/test/json.cpp +4 -0
  470. data/ext/enterprise_script_service/msgpack/test/limit.cpp +8 -4
  471. data/ext/enterprise_script_service/msgpack/test/msgpack_basic.cpp +4 -0
  472. data/ext/enterprise_script_service/msgpack/test/msgpack_c.cpp +159 -0
  473. data/ext/enterprise_script_service/msgpack/test/msgpack_container.cpp +4 -0
  474. data/ext/enterprise_script_service/msgpack/test/msgpack_cpp11.cpp +32 -27
  475. data/ext/enterprise_script_service/msgpack/test/msgpack_cpp17.cpp +4 -0
  476. data/ext/enterprise_script_service/msgpack/test/msgpack_stream.cpp +4 -0
  477. data/ext/enterprise_script_service/msgpack/test/msgpack_tuple.cpp +4 -1
  478. data/ext/enterprise_script_service/msgpack/test/msgpack_vref.cpp +4 -0
  479. data/ext/enterprise_script_service/msgpack/test/msgpack_x3_parse.cpp +4 -0
  480. data/ext/enterprise_script_service/msgpack/test/object.cpp +4 -1
  481. data/ext/enterprise_script_service/msgpack/test/object_with_zone.cpp +12 -8
  482. data/ext/enterprise_script_service/msgpack/test/pack_unpack.cpp +30 -26
  483. data/ext/enterprise_script_service/msgpack/test/pack_unpack_c.cpp +4 -0
  484. data/ext/enterprise_script_service/msgpack/test/raw.cpp +4 -0
  485. data/ext/enterprise_script_service/msgpack/test/reference.cpp +4 -0
  486. data/ext/enterprise_script_service/msgpack/test/reference_cpp11.cpp +4 -0
  487. data/ext/enterprise_script_service/msgpack/test/reference_wrapper_cpp11.cpp +4 -0
  488. data/ext/enterprise_script_service/msgpack/test/shared_ptr_cpp11.cpp +4 -0
  489. data/ext/enterprise_script_service/msgpack/test/size_equal_only.cpp +4 -0
  490. data/ext/enterprise_script_service/msgpack/test/streaming.cpp +8 -4
  491. data/ext/enterprise_script_service/msgpack/test/streaming_c.cpp +4 -0
  492. data/ext/enterprise_script_service/msgpack/test/unique_ptr_cpp11.cpp +4 -0
  493. data/ext/enterprise_script_service/msgpack/test/user_class.cpp +16 -12
  494. data/ext/enterprise_script_service/msgpack/test/version.cpp +4 -0
  495. data/ext/enterprise_script_service/msgpack/test/visitor.cpp +4 -0
  496. data/ext/enterprise_script_service/msgpack/test/zone.cpp +4 -0
  497. data/lib/script_core/engine.rb +24 -5
  498. data/lib/script_core/executable.rb +4 -3
  499. data/lib/script_core/version.rb +1 -1
  500. data/lib/tasks/script_core.rake +3 -1
  501. data/script_core.gemspec +1 -2
  502. data/spec/dummy/app/lib/script_engine.rb +64 -5
  503. data/spec/script_core_spec.rb +13 -0
  504. metadata +123 -61
  505. data/ext/enterprise_script_service/libseccomp/src/arch-aarch64-syscalls.c +0 -559
  506. data/ext/enterprise_script_service/libseccomp/src/arch-arm-syscalls.c +0 -570
  507. data/ext/enterprise_script_service/libseccomp/src/arch-mips-syscalls.c +0 -562
  508. data/ext/enterprise_script_service/libseccomp/src/arch-mips64-syscalls.c +0 -562
  509. data/ext/enterprise_script_service/libseccomp/src/arch-mips64n32-syscalls.c +0 -562
  510. data/ext/enterprise_script_service/libseccomp/src/arch-parisc-syscalls.c +0 -542
  511. data/ext/enterprise_script_service/libseccomp/src/arch-ppc-syscalls.c +0 -559
  512. data/ext/enterprise_script_service/libseccomp/src/arch-ppc64-syscalls.c +0 -559
  513. data/ext/enterprise_script_service/libseccomp/src/arch-s390-syscalls.c +0 -626
  514. data/ext/enterprise_script_service/libseccomp/src/arch-s390x-syscalls.c +0 -626
  515. data/ext/enterprise_script_service/libseccomp/src/arch-x32-syscalls.c +0 -558
  516. data/ext/enterprise_script_service/libseccomp/src/arch-x86-syscalls.c +0 -692
  517. data/ext/enterprise_script_service/libseccomp/src/arch-x86_64-syscalls.c +0 -559
  518. data/ext/enterprise_script_service/libseccomp/tests/18-sim-basic_whitelist.tests +0 -32
  519. data/ext/enterprise_script_service/libseccomp/tests/34-sim-basic_blacklist.tests +0 -32
  520. data/ext/enterprise_script_service/mruby/TODO +0 -8
  521. data/ext/enterprise_script_service/mruby/benchmark/build_config_boxing.rb +0 -28
  522. data/ext/enterprise_script_service/mruby/examples/targets/build_config_android_arm64-v8a.rb +0 -26
  523. data/ext/enterprise_script_service/mruby/examples/targets/build_config_android_armeabi.rb +0 -26
  524. data/ext/enterprise_script_service/mruby/mrbgems/mruby-sprintf/src/kernel.c +0 -30
  525. data/ext/enterprise_script_service/mruby/mrblib/mrblib.rake +0 -18
  526. data/ext/enterprise_script_service/mruby/src/crc.c +0 -39
  527. data/ext/enterprise_script_service/mruby/src/mruby_core.rake +0 -19
  528. data/ext/enterprise_script_service/mruby/travis_config.rb +0 -54
  529. data/ext/enterprise_script_service/msgpack/.travis.yml +0 -258
@@ -36,7 +36,8 @@ struct bpf_program {
36
36
  #define BPF_PGM_SIZE(x) \
37
37
  ((x)->blk_cnt * sizeof(*((x)->blks)))
38
38
 
39
- struct bpf_program *gen_bpf_generate(const struct db_filter_col *col);
39
+ int gen_bpf_generate(const struct db_filter_col *col,
40
+ struct bpf_program **prgm_ptr);
40
41
  void gen_bpf_release(struct bpf_program *program);
41
42
 
42
43
  #endif
@@ -87,6 +87,8 @@ static const char *_pfc_arch(const struct arch_def *arch)
87
87
  return "s390x";
88
88
  case SCMP_ARCH_S390:
89
89
  return "s390";
90
+ case SCMP_ARCH_RISCV64:
91
+ return "riscv64";
90
92
  default:
91
93
  return "UNKNOWN";
92
94
  }
@@ -241,68 +243,163 @@ static void _gen_pfc_chain(const struct arch_def *arch,
241
243
  *
242
244
  */
243
245
  static void _gen_pfc_syscall(const struct arch_def *arch,
244
- const struct db_sys_list *sys, FILE *fds)
246
+ const struct db_sys_list *sys, FILE *fds,
247
+ int lvl)
245
248
  {
246
249
  unsigned int sys_num = sys->num;
247
250
  const char *sys_name = arch_syscall_resolve_num(arch, sys_num);
248
251
 
249
- _indent(fds, 1);
252
+ _indent(fds, lvl);
250
253
  fprintf(fds, "# filter for syscall \"%s\" (%u) [priority: %d]\n",
251
254
  (sys_name ? sys_name : "UNKNOWN"), sys_num, sys->priority);
252
- _indent(fds, 1);
255
+ _indent(fds, lvl);
253
256
  fprintf(fds, "if ($syscall == %u)\n", sys_num);
254
257
  if (sys->chains == NULL) {
255
- _indent(fds, 2);
258
+ _indent(fds, lvl + 1);
256
259
  _pfc_action(fds, sys->action);
257
260
  } else
258
- _gen_pfc_chain(arch, sys->chains, 2, fds);
261
+ _gen_pfc_chain(arch, sys->chains, lvl + 1, fds);
259
262
  }
260
263
 
261
- /**
262
- * Generate pseudo filter code for an architecture
263
- * @param col the seccomp filter collection
264
- * @param db the single seccomp filter
265
- * @param fds the file stream to send the output
266
- *
267
- * This function generates a pseudo filter code representation of the given
268
- * filter DB and writes it to the given output stream. Returns zero on
269
- * success, negative values on failure.
270
- *
271
- */
272
- static int _gen_pfc_arch(const struct db_filter_col *col,
273
- const struct db_filter *db, FILE *fds)
264
+ #define SYSCALLS_PER_NODE (4)
265
+ static int _get_bintree_levels(unsigned int syscall_cnt,
266
+ uint32_t optimize)
267
+ {
268
+ unsigned int i = 0, max_level;
269
+
270
+ if (optimize != 2)
271
+ /* Only use a binary tree if requested */
272
+ return 0;
273
+
274
+ do {
275
+ max_level = SYSCALLS_PER_NODE << i;
276
+ i++;
277
+ } while(max_level < syscall_cnt);
278
+
279
+ return i;
280
+ }
281
+
282
+ static int _get_bintree_syscall_num(const struct pfc_sys_list *cur,
283
+ int lookahead_cnt,
284
+ int *const num)
274
285
  {
275
- int rc = 0;
286
+ while (lookahead_cnt > 0 && cur != NULL) {
287
+ cur = cur->next;
288
+ lookahead_cnt--;
289
+ }
290
+
291
+ if (cur == NULL)
292
+ return -EFAULT;
293
+
294
+ *num = cur->sys->num;
295
+ return 0;
296
+ }
297
+
298
+ static int _sys_num_sort(struct db_sys_list *syscalls,
299
+ struct pfc_sys_list **p_head)
300
+ {
301
+ struct pfc_sys_list *p_iter = NULL, *p_new, *p_prev;
276
302
  struct db_sys_list *s_iter;
277
- struct pfc_sys_list *p_iter = NULL, *p_new, *p_head = NULL, *p_prev;
278
303
 
279
- /* sort the syscall list */
280
- db_list_foreach(s_iter, db->syscalls) {
304
+ db_list_foreach(s_iter, syscalls) {
281
305
  p_new = zmalloc(sizeof(*p_new));
282
306
  if (p_new == NULL) {
283
- rc = -ENOMEM;
284
- goto arch_return;
307
+ return -ENOMEM;
285
308
  }
286
309
  p_new->sys = s_iter;
287
310
 
288
311
  p_prev = NULL;
289
- p_iter = p_head;
312
+ p_iter = *p_head;
313
+ while (p_iter != NULL &&
314
+ s_iter->num < p_iter->sys->num) {
315
+ p_prev = p_iter;
316
+ p_iter = p_iter->next;
317
+ }
318
+ if (*p_head == NULL)
319
+ *p_head = p_new;
320
+ else if (p_prev == NULL) {
321
+ p_new->next = *p_head;
322
+ *p_head = p_new;
323
+ } else {
324
+ p_new->next = p_iter;
325
+ p_prev->next = p_new;
326
+ }
327
+ }
328
+
329
+ return 0;
330
+ }
331
+
332
+ static int _sys_priority_sort(struct db_sys_list *syscalls,
333
+ struct pfc_sys_list **p_head)
334
+ {
335
+ struct pfc_sys_list *p_iter = NULL, *p_new, *p_prev;
336
+ struct db_sys_list *s_iter;
337
+
338
+ db_list_foreach(s_iter, syscalls) {
339
+ p_new = zmalloc(sizeof(*p_new));
340
+ if (p_new == NULL) {
341
+ return -ENOMEM;
342
+ }
343
+ p_new->sys = s_iter;
344
+
345
+ p_prev = NULL;
346
+ p_iter = *p_head;
290
347
  while (p_iter != NULL &&
291
348
  s_iter->priority < p_iter->sys->priority) {
292
349
  p_prev = p_iter;
293
350
  p_iter = p_iter->next;
294
351
  }
295
- if (p_head == NULL)
296
- p_head = p_new;
352
+ if (*p_head == NULL)
353
+ *p_head = p_new;
297
354
  else if (p_prev == NULL) {
298
- p_new->next = p_head;
299
- p_head = p_new;
355
+ p_new->next = *p_head;
356
+ *p_head = p_new;
300
357
  } else {
301
358
  p_new->next = p_iter;
302
359
  p_prev->next = p_new;
303
360
  }
304
361
  }
305
362
 
363
+ return 0;
364
+ }
365
+
366
+ static int _sys_sort(struct db_sys_list *syscalls,
367
+ struct pfc_sys_list **p_head,
368
+ uint32_t optimize)
369
+ {
370
+ if (optimize != 2)
371
+ return _sys_priority_sort(syscalls, p_head);
372
+ else
373
+ /* sort by number for the binary tree */
374
+ return _sys_num_sort(syscalls, p_head);
375
+ }
376
+
377
+ /**
378
+ * Generate pseudo filter code for an architecture
379
+ * @param col the seccomp filter collection
380
+ * @param db the single seccomp filter
381
+ * @param fds the file stream to send the output
382
+ *
383
+ * This function generates a pseudo filter code representation of the given
384
+ * filter DB and writes it to the given output stream. Returns zero on
385
+ * success, negative values on failure.
386
+ *
387
+ */
388
+ static int _gen_pfc_arch(const struct db_filter_col *col,
389
+ const struct db_filter *db, FILE *fds,
390
+ uint32_t optimize)
391
+ {
392
+ int rc = 0, i = 0, lookahead_num;
393
+ unsigned int syscall_cnt = 0, bintree_levels, level, indent = 1;
394
+ struct pfc_sys_list *p_iter = NULL, *p_head = NULL;
395
+
396
+ /* sort the syscall list */
397
+ rc = _sys_sort(db->syscalls, &p_head, optimize);
398
+ if (rc < 0)
399
+ goto arch_return;
400
+
401
+ bintree_levels = _get_bintree_levels(db->syscall_cnt, optimize);
402
+
306
403
  fprintf(fds, "# filter for arch %s (%u)\n",
307
404
  _pfc_arch(db->arch), db->arch->token_bpf);
308
405
  fprintf(fds, "if ($arch == %u)\n", db->arch->token_bpf);
@@ -312,8 +409,40 @@ static int _gen_pfc_arch(const struct db_filter_col *col,
312
409
  p_iter = p_iter->next;
313
410
  continue;
314
411
  }
315
- _gen_pfc_syscall(db->arch, p_iter->sys, fds);
412
+
413
+ for (i = bintree_levels - 1; i > 0; i--) {
414
+ level = SYSCALLS_PER_NODE << i;
415
+
416
+ if (syscall_cnt == 0 || (syscall_cnt % level) == 0) {
417
+ rc = _get_bintree_syscall_num(p_iter, level / 2,
418
+ &lookahead_num);
419
+ if (rc < 0)
420
+ /* We have reached the end of the bintree.
421
+ * There aren't enough syscalls to construct
422
+ * any more if-elses.
423
+ */
424
+ continue;
425
+ _indent(fds, indent);
426
+ fprintf(fds, "if ($syscall > %u)\n", lookahead_num);
427
+ indent++;
428
+ } else if ((syscall_cnt % (level / 2)) == 0) {
429
+ lookahead_num = p_iter->sys->num;
430
+ _indent(fds, indent - 1);
431
+ fprintf(fds, "else # ($syscall <= %u)\n",
432
+ p_iter->sys->num);
433
+ }
434
+
435
+ }
436
+
437
+ _gen_pfc_syscall(db->arch, p_iter->sys, fds, indent);
438
+ syscall_cnt++;
316
439
  p_iter = p_iter->next;
440
+
441
+ /* undo the indentations as the else statements complete */
442
+ for (i = 0; i < bintree_levels; i++) {
443
+ if (syscall_cnt % ((SYSCALLS_PER_NODE * 2) << i) == 0)
444
+ indent--;
445
+ }
317
446
  }
318
447
  _indent(fds, 1);
319
448
  fprintf(fds, "# default action\n");
@@ -328,7 +457,6 @@ arch_return:
328
457
  }
329
458
  return rc;
330
459
  }
331
-
332
460
  /**
333
461
  * Generate a pseudo filter code string representation
334
462
  * @param col the seccomp filter collection
@@ -336,23 +464,22 @@ arch_return:
336
464
  *
337
465
  * This function generates a pseudo filter code representation of the given
338
466
  * filter collection and writes it to the given fd. Returns zero on success,
339
- * negative values on failure.
467
+ * negative errno values on failure.
340
468
  *
341
469
  */
342
470
  int gen_pfc_generate(const struct db_filter_col *col, int fd)
343
471
  {
344
- int rc = 0;
345
472
  int newfd;
346
473
  unsigned int iter;
347
474
  FILE *fds;
348
475
 
349
476
  newfd = dup(fd);
350
477
  if (newfd < 0)
351
- return errno;
478
+ return -errno;
352
479
  fds = fdopen(newfd, "a");
353
480
  if (fds == NULL) {
354
481
  close(newfd);
355
- return errno;
482
+ return -errno;
356
483
  }
357
484
 
358
485
  /* generate the pfc */
@@ -361,7 +488,8 @@ int gen_pfc_generate(const struct db_filter_col *col, int fd)
361
488
  fprintf(fds, "#\n");
362
489
 
363
490
  for (iter = 0; iter < col->filter_cnt; iter++)
364
- _gen_pfc_arch(col, col->filters[iter], fds);
491
+ _gen_pfc_arch(col, col->filters[iter], fds,
492
+ col->attr.optimize);
365
493
 
366
494
  fprintf(fds, "# invalid architecture action\n");
367
495
  _pfc_action(fds, col->attr.act_badarch);
@@ -372,5 +500,5 @@ int gen_pfc_generate(const struct db_filter_col *col, int fd)
372
500
  fflush(fds);
373
501
  fclose(fds);
374
502
 
375
- return rc;
503
+ return 0;
376
504
  }
@@ -19,7 +19,8 @@
19
19
  # along with this library; if not, see <http://www.gnu.org/licenses>.
20
20
  #
21
21
 
22
- from libc.stdint cimport uint8_t, uint32_t, uint64_t
22
+ from libc.stdint cimport int8_t, int16_t, int32_t, int64_t
23
+ from libc.stdint cimport uint8_t, uint16_t, uint32_t, uint64_t
23
24
 
24
25
  cdef extern from "seccomp.h":
25
26
 
@@ -50,6 +51,7 @@ cdef extern from "seccomp.h":
50
51
  SCMP_ARCH_PPC64LE
51
52
  SCMP_ARCH_S390
52
53
  SCMP_ARCH_S390X
54
+ SCMP_ARCH_RISCV64
53
55
 
54
56
  cdef enum scmp_filter_attr:
55
57
  SCMP_FLTATR_ACT_DEFAULT
@@ -58,6 +60,9 @@ cdef extern from "seccomp.h":
58
60
  SCMP_FLTATR_CTL_TSYNC
59
61
  SCMP_FLTATR_API_TSKIP
60
62
  SCMP_FLTATR_CTL_LOG
63
+ SCMP_FLTATR_CTL_SSB
64
+ SCMP_FLTATR_CTL_OPTIMIZE
65
+ SCMP_FLTATR_API_SYSRAWRC
61
66
 
62
67
  cdef enum scmp_compare:
63
68
  SCMP_CMP_NE
@@ -74,6 +79,7 @@ cdef extern from "seccomp.h":
74
79
  SCMP_ACT_TRAP
75
80
  SCMP_ACT_LOG
76
81
  SCMP_ACT_ALLOW
82
+ SCMP_ACT_NOTIFY
77
83
  unsigned int SCMP_ACT_ERRNO(int errno)
78
84
  unsigned int SCMP_ACT_TRACE(int value)
79
85
 
@@ -85,6 +91,29 @@ cdef extern from "seccomp.h":
85
91
  scmp_datum_t datum_a
86
92
  scmp_datum_t datum_b
87
93
 
94
+ cdef struct seccomp_data:
95
+ int nr
96
+ uint32_t arch
97
+ uint64_t instruction_pointer
98
+ uint64_t args[6]
99
+
100
+ cdef struct seccomp_notif_sizes:
101
+ uint16_t seccomp_notif
102
+ uint16_t seccomp_notif_resp
103
+ uint16_t seccomp_data
104
+
105
+ cdef struct seccomp_notif:
106
+ uint64_t id
107
+ uint32_t pid
108
+ uint32_t flags
109
+ seccomp_data data
110
+
111
+ cdef struct seccomp_notif_resp:
112
+ uint64_t id
113
+ int64_t val
114
+ int32_t error
115
+ uint32_t flags
116
+
88
117
  scmp_version *seccomp_version()
89
118
 
90
119
  unsigned int seccomp_api_get()
@@ -129,6 +158,13 @@ cdef extern from "seccomp.h":
129
158
  unsigned int arg_cnt,
130
159
  scmp_arg_cmp *arg_array)
131
160
 
161
+ int seccomp_notify_alloc(seccomp_notif **req, seccomp_notif_resp **resp)
162
+ void seccomp_notify_free(seccomp_notif *req, seccomp_notif_resp *resp)
163
+ int seccomp_notify_receive(int fd, seccomp_notif *req)
164
+ int seccomp_notify_respond(int fd, seccomp_notif_resp *resp)
165
+ int seccomp_notify_id_valid(int fd, uint64_t id)
166
+ int seccomp_notify_fd(scmp_filter_ctx ctx)
167
+
132
168
  int seccomp_export_pfc(scmp_filter_ctx ctx, int fd)
133
169
  int seccomp_export_bpf(scmp_filter_ctx ctx, int fd)
134
170
 
@@ -36,6 +36,7 @@ Filter action values:
36
36
  LOG - allow the syscall to be executed after the action has been logged
37
37
  ALLOW - allow the syscall to execute
38
38
  TRAP - a SIGSYS signal will be thrown
39
+ NOTIFY - a notification event will be sent via the notification API
39
40
  ERRNO(x) - syscall will return (x)
40
41
  TRACE(x) - if the process is being traced, (x) will be returned to the
41
42
  tracing process via PTRACE_EVENT_SECCOMP and the
@@ -60,13 +61,18 @@ Example:
60
61
  # create a filter object with a default KILL action
61
62
  f = SyscallFilter(defaction=KILL)
62
63
 
64
+ # add some basic syscalls which python typically wants
65
+ f.add_rule(ALLOW, "rt_sigaction")
66
+ f.add_rule(ALLOW, "rt_sigreturn")
67
+ f.add_rule(ALLOW, "exit_group")
68
+ f.add_rule(ALLOW, "brk")
69
+
63
70
  # add syscall filter rules to allow certain syscalls
64
71
  f.add_rule(ALLOW, "open")
65
72
  f.add_rule(ALLOW, "close")
66
- f.add_rule(ALLOW, "read", Arg(0, EQ, sys.stdin))
67
- f.add_rule(ALLOW, "write", Arg(0, EQ, sys.stdout))
68
- f.add_rule(ALLOW, "write", Arg(0, EQ, sys.stderr))
69
- f.add_rule(ALLOW, "rt_sigreturn")
73
+ f.add_rule(ALLOW, "read", Arg(0, EQ, sys.stdin.fileno()))
74
+ f.add_rule(ALLOW, "write", Arg(0, EQ, sys.stdout.fileno()))
75
+ f.add_rule(ALLOW, "write", Arg(0, EQ, sys.stderr.fileno()))
70
76
 
71
77
  # load the filter into the kernel
72
78
  f.load()
@@ -75,7 +81,9 @@ __author__ = 'Paul Moore <paul@paul-moore.com>'
75
81
  __date__ = "3 February 2017"
76
82
 
77
83
  from cpython.version cimport PY_MAJOR_VERSION
78
- from libc.stdint cimport uint32_t
84
+ from libc.stdint cimport int8_t, int16_t, int32_t, int64_t
85
+ from libc.stdint cimport uint8_t, uint16_t, uint32_t, uint64_t
86
+ from libc.stdlib cimport free
79
87
  import errno
80
88
 
81
89
  cimport libseccomp
@@ -102,6 +110,7 @@ KILL = libseccomp.SCMP_ACT_KILL
102
110
  TRAP = libseccomp.SCMP_ACT_TRAP
103
111
  LOG = libseccomp.SCMP_ACT_LOG
104
112
  ALLOW = libseccomp.SCMP_ACT_ALLOW
113
+ NOTIFY = libseccomp.SCMP_ACT_NOTIFY
105
114
  def ERRNO(int errno):
106
115
  """The action ERRNO(x) means that the syscall will return (x).
107
116
  To conform to Linux syscall calling conventions, the syscall return
@@ -205,6 +214,7 @@ cdef class Arch:
205
214
  PARISC64 - 64-bit PA-RISC
206
215
  PPC64 - 64-bit PowerPC
207
216
  PPC - 32-bit PowerPC
217
+ RISCV64 - 64-bit RISC-V
208
218
  """
209
219
 
210
220
  cdef int _token
@@ -228,6 +238,7 @@ cdef class Arch:
228
238
  PPC64LE = libseccomp.SCMP_ARCH_PPC64LE
229
239
  S390 = libseccomp.SCMP_ARCH_S390
230
240
  S390X = libseccomp.SCMP_ARCH_S390X
241
+ RISCV64 = libseccomp.SCMP_ARCH_RISCV64
231
242
 
232
243
  def __cinit__(self, arch=libseccomp.SCMP_ARCH_NATIVE):
233
244
  """ Initialize the architecture object.
@@ -303,6 +314,15 @@ cdef class Attr:
303
314
  ACT_BADARCH - the filter's bad architecture action
304
315
  CTL_NNP - the filter's "no new privileges" flag
305
316
  CTL_NNP - the filter's thread sync flag
317
+ CTL_TSYNC - sync threads on filter load
318
+ CTL_TSKIP - allow rules with a -1 syscall number
319
+ CTL_LOG - log not-allowed actions
320
+ CTL_SSB - disable SSB mitigations
321
+ CTL_OPTIMIZE - the filter's optimization level:
322
+ 0: currently unused
323
+ 1: rules weighted by priority and complexity (DEFAULT)
324
+ 2: binary tree sorted by syscall number
325
+ API_SYSRAWRC - return the raw syscall codes
306
326
  """
307
327
  ACT_DEFAULT = libseccomp.SCMP_FLTATR_ACT_DEFAULT
308
328
  ACT_BADARCH = libseccomp.SCMP_FLTATR_ACT_BADARCH
@@ -310,6 +330,9 @@ cdef class Attr:
310
330
  CTL_TSYNC = libseccomp.SCMP_FLTATR_CTL_TSYNC
311
331
  API_TSKIP = libseccomp.SCMP_FLTATR_API_TSKIP
312
332
  CTL_LOG = libseccomp.SCMP_FLTATR_CTL_LOG
333
+ CTL_SSB = libseccomp.SCMP_FLTATR_CTL_SSB
334
+ CTL_OPTIMIZE = libseccomp.SCMP_FLTATR_CTL_OPTIMIZE
335
+ API_SYSRAWRC = libseccomp.SCMP_FLTATR_API_SYSRAWRC
313
336
 
314
337
  cdef class Arg:
315
338
  """ Python object representing a SyscallFilter syscall argument.
@@ -344,6 +367,218 @@ cdef class Arg:
344
367
  """
345
368
  return self._arg
346
369
 
370
+ cdef class Notification:
371
+ """ Python object representing a seccomp notification.
372
+ """
373
+ cdef uint64_t _id
374
+ cdef uint32_t _pid
375
+ cdef uint32_t _flags
376
+ cdef int _syscall
377
+ cdef uint32_t _syscall_arch
378
+ cdef uint64_t _syscall_ip
379
+ cdef uint64_t _syscall_args[6]
380
+
381
+ def __cinit__(self, id, pid, flags, syscall, arch, ip, args):
382
+ """ Initialize the notification.
383
+
384
+ Arguments:
385
+ id - the notification ID
386
+ pid - the process ID
387
+ flags - the notification flags
388
+ syscall - the syscall number
389
+ ip - the instruction pointer
390
+ args - list of the six syscall arguments
391
+
392
+ Description:
393
+ Create a seccomp Notification object.
394
+ """
395
+ self._id = id
396
+ self._pid = pid
397
+ self._flags = flags
398
+ self._syscall = syscall
399
+ self._syscall_arch = arch
400
+ self._syscall_ip = ip
401
+ self._syscall_args[0] = args[0]
402
+ self._syscall_args[1] = args[1]
403
+ self._syscall_args[2] = args[2]
404
+ self._syscall_args[3] = args[3]
405
+ self._syscall_args[4] = args[4]
406
+ self._syscall_args[5] = args[5]
407
+
408
+ @property
409
+ def id(self):
410
+ """ Get the seccomp notification ID.
411
+
412
+ Description:
413
+ Get the seccomp notification ID.
414
+ """
415
+ return self._id
416
+
417
+ @property
418
+ def pid(self):
419
+ """ Get the seccomp notification process ID.
420
+
421
+ Description:
422
+ Get the seccomp notification process ID.
423
+ """
424
+ return self._pid
425
+
426
+ @property
427
+ def flags(self):
428
+ """ Get the seccomp notification flags.
429
+
430
+ Description:
431
+ Get the seccomp notification flags.
432
+ """
433
+ return self._flags
434
+
435
+ @property
436
+ def syscall(self):
437
+ """ Get the seccomp notification syscall.
438
+
439
+ Description:
440
+ Get the seccomp notification syscall.
441
+ """
442
+ return self._syscall
443
+
444
+ @property
445
+ def syscall_arch(self):
446
+ """ Get the seccomp notification syscall architecture.
447
+
448
+ Description:
449
+ Get the seccomp notification syscall architecture.
450
+ """
451
+ return self._syscall_arch
452
+
453
+ @property
454
+ def syscall_ip(self):
455
+ """ Get the seccomp notification syscall instruction pointer.
456
+
457
+ Description:
458
+ Get the seccomp notification syscall instruction pointer.
459
+ """
460
+ return self._syscall_ip
461
+
462
+ @property
463
+ def syscall_args(self):
464
+ """ Get the seccomp notification syscall arguments.
465
+
466
+ Description:
467
+ Get the seccomp notification syscall arguments in a six element list.
468
+ """
469
+ return [self._syscall_args[0], self._syscall_args[1],
470
+ self._syscall_args[2], self._syscall_args[3],
471
+ self._syscall_args[4], self._syscall_args[5]]
472
+
473
+ cdef class NotificationResponse:
474
+ """ Python object representing a seccomp notification response.
475
+ """
476
+ cdef uint64_t _id
477
+ cdef int64_t _val
478
+ cdef int32_t _error
479
+ cdef uint32_t _flags
480
+
481
+ def __cinit__(self, notify, val = 0, error = 0, flags = 0):
482
+ """ Initialize the notification response.
483
+
484
+ Arguments:
485
+ notify - a Notification object
486
+ val - the notification response value
487
+ error - the notification response error
488
+ flags - the notification response flags
489
+
490
+ Description:
491
+ Create a seccomp NotificationResponse object.
492
+ """
493
+ self._id = notify.id
494
+ self._val = val
495
+ self._error = error
496
+ self._flags = flags
497
+
498
+ @property
499
+ def id(self):
500
+ """ Get the seccomp notification response ID.
501
+
502
+ Description:
503
+ Get the seccomp notification response ID.
504
+ """
505
+ return self._id
506
+
507
+ @id.setter
508
+ def id(self, value):
509
+ """ Set the seccomp notification response ID.
510
+
511
+ Arguments:
512
+ id - the notification response ID
513
+
514
+ Description:
515
+ Set the seccomp notification response ID.
516
+ """
517
+ self._id = value
518
+
519
+ @property
520
+ def val(self):
521
+ """ Get the seccomp notification response value.
522
+
523
+ Description:
524
+ Get the seccomp notification response value.
525
+ """
526
+ return self._val
527
+
528
+ @val.setter
529
+ def val(self, value):
530
+ """ Set the seccomp notification response value.
531
+
532
+ Arguments:
533
+ val - the notification response value
534
+
535
+ Description:
536
+ Set the seccomp notification response value.
537
+ """
538
+ self._val = value
539
+
540
+ @property
541
+ def error(self):
542
+ """ Get the seccomp notification response error.
543
+
544
+ Description:
545
+ Get the seccomp notification response error.
546
+ """
547
+ return self._error
548
+
549
+ @error.setter
550
+ def error(self, value):
551
+ """ Set the seccomp notification response error.
552
+
553
+ Arguments:
554
+ error - the notification response error
555
+
556
+ Description:
557
+ Set the seccomp notification response error.
558
+ """
559
+ self._error = value
560
+
561
+ @property
562
+ def flags(self):
563
+ """ Get the seccomp notification response flags.
564
+
565
+ Description:
566
+ Get the seccomp notification response flags.
567
+ """
568
+ return self._flags
569
+
570
+ @flags.setter
571
+ def flags(self, value):
572
+ """ Set the seccomp notification response flags.
573
+
574
+ Arguments:
575
+ flags - the notification response flags
576
+
577
+ Description:
578
+ Set the seccomp notification response flags.
579
+ """
580
+ self._flags = value
581
+
347
582
  cdef class SyscallFilter:
348
583
  """ Python object representing a seccomp syscall filter. """
349
584
  cdef int _defaction
@@ -712,6 +947,60 @@ cdef class SyscallFilter:
712
947
  if rc != 0:
713
948
  raise RuntimeError(str.format("Library error (errno = {0})", rc))
714
949
 
950
+ def receive_notify(self):
951
+ """ Receive seccomp notifications.
952
+
953
+ Description:
954
+ Receive a seccomp notification from the system, requires the use of
955
+ the NOTIFY action.
956
+ """
957
+ cdef libseccomp.seccomp_notif *req
958
+
959
+ fd = libseccomp.seccomp_notify_fd(self._ctx)
960
+ if fd < 0:
961
+ raise RuntimeError("Notifications not enabled/active")
962
+ rc = libseccomp.seccomp_notify_alloc(&req, NULL)
963
+ if rc < 0:
964
+ raise RuntimeError(str.format("Library error (errno = {0})", rc))
965
+ rc = libseccomp.seccomp_notify_receive(fd, req)
966
+ if rc < 0:
967
+ raise RuntimeError(str.format("Library error (errno = {0})", rc))
968
+ rc = libseccomp.seccomp_notify_id_valid(fd, req.id)
969
+ if rc < 0:
970
+ raise RuntimeError(str.format("Library error (errno = {0})", rc))
971
+ notify = Notification(req.id, req.pid, req.flags, req.data.nr,
972
+ req.data.arch, req.data.instruction_pointer,
973
+ [req.data.args[0], req.data.args[1],
974
+ req.data.args[2], req.data.args[3],
975
+ req.data.args[4], req.data.args[5]])
976
+ free(req)
977
+ return notify
978
+
979
+ def respond_notify(self, response):
980
+ """ Send a seccomp notification response.
981
+
982
+ Arguments:
983
+ response - the response to send to the system
984
+
985
+ Description:
986
+ Respond to a seccomp notification.
987
+ """
988
+ cdef libseccomp.seccomp_notif_resp *resp
989
+
990
+ fd = libseccomp.seccomp_notify_fd(self._ctx)
991
+ if fd < 0:
992
+ raise RuntimeError("Notifications not enabled/active")
993
+ rc = libseccomp.seccomp_notify_alloc(NULL, &resp)
994
+ if rc < 0:
995
+ raise RuntimeError(str.format("Library error (errno = {0})", rc))
996
+ resp.id = response.id
997
+ resp.val = response.val
998
+ resp.error = response.error
999
+ resp.flags = response.flags
1000
+ rc = libseccomp.seccomp_notify_respond(fd, resp)
1001
+ if rc < 0:
1002
+ raise RuntimeError(str.format("Library error (errno = {0})", rc))
1003
+
715
1004
  def export_pfc(self, file):
716
1005
  """ Export the filter in PFC format.
717
1006
 
@@ -733,6 +1022,7 @@ cdef class SyscallFilter:
733
1022
  Arguments:
734
1023
  file - the output file
735
1024
 
1025
+ Description:
736
1026
  Output the filter in Berkley Packet Filter (BPF) to the given
737
1027
  file. The output is identical to what is loaded into the
738
1028
  Linux Kernel.