ffi 1.11.3 → 1.13.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (210) hide show
  1. checksums.yaml +4 -4
  2. data/.appveyor.yml +3 -0
  3. data/.github/workflows/ci.yml +64 -0
  4. data/.travis.yml +21 -5
  5. data/CHANGELOG.md +68 -0
  6. data/Gemfile +6 -4
  7. data/README.md +10 -1
  8. data/Rakefile +24 -43
  9. data/ext/ffi_c/Buffer.c +2 -2
  10. data/ext/ffi_c/Call.c +1 -7
  11. data/ext/ffi_c/ClosurePool.c +11 -14
  12. data/ext/ffi_c/Function.c +8 -23
  13. data/ext/ffi_c/FunctionInfo.c +1 -2
  14. data/ext/ffi_c/LongDouble.c +5 -3
  15. data/ext/ffi_c/LongDouble.h +0 -4
  16. data/ext/ffi_c/MemoryPointer.c +1 -1
  17. data/ext/ffi_c/MethodHandle.c +18 -24
  18. data/ext/ffi_c/MethodHandle.h +3 -2
  19. data/ext/ffi_c/Platform.c +1 -0
  20. data/ext/ffi_c/Pointer.c +1 -1
  21. data/ext/ffi_c/Struct.c +47 -51
  22. data/ext/ffi_c/Struct.h +12 -6
  23. data/ext/ffi_c/StructLayout.c +20 -14
  24. data/ext/ffi_c/Thread.c +0 -3
  25. data/ext/ffi_c/Thread.h +0 -3
  26. data/ext/ffi_c/compat.h +4 -0
  27. data/ext/ffi_c/extconf.rb +16 -20
  28. data/ext/ffi_c/libffi/.travis.yml +32 -12
  29. data/ext/ffi_c/libffi/.travis/bfin-sim.exp +58 -0
  30. data/ext/ffi_c/libffi/.travis/build-cross-in-container.sh +14 -0
  31. data/ext/ffi_c/libffi/.travis/build-in-container.sh +2 -12
  32. data/ext/ffi_c/libffi/.travis/build.sh +62 -30
  33. data/ext/ffi_c/libffi/.travis/install.sh +65 -37
  34. data/ext/ffi_c/libffi/.travis/m32r-sim.exp +58 -0
  35. data/ext/ffi_c/libffi/.travis/or1k-sim.exp +58 -0
  36. data/ext/ffi_c/libffi/.travis/powerpc-eabisim.exp +58 -0
  37. data/ext/ffi_c/libffi/.travis/site.exp +10 -1
  38. data/ext/ffi_c/libffi/.travis/wine-sim.exp +55 -0
  39. data/ext/ffi_c/libffi/{ChangeLog.libffi-3.1 → ChangeLog.old} +1407 -0
  40. data/ext/ffi_c/libffi/LICENSE +1 -1
  41. data/ext/ffi_c/libffi/Makefile.am +6 -4
  42. data/ext/ffi_c/libffi/README.md +18 -6
  43. data/ext/ffi_c/libffi/configure.ac +26 -10
  44. data/ext/ffi_c/libffi/configure.host +5 -2
  45. data/ext/ffi_c/libffi/generate-darwin-source-and-headers.py +1 -3
  46. data/ext/ffi_c/libffi/include/ffi.h.in +15 -7
  47. data/ext/ffi_c/libffi/libffi.map.in +8 -12
  48. data/ext/ffi_c/libffi/libffi.xcodeproj/project.pbxproj +2 -48
  49. data/ext/ffi_c/libffi/libtool-version +1 -1
  50. data/ext/ffi_c/libffi/m4/ax_append_flag.m4 +5 -26
  51. data/ext/ffi_c/libffi/m4/ax_check_compile_flag.m4 +5 -26
  52. data/ext/ffi_c/libffi/m4/ax_compiler_vendor.m4 +2 -1
  53. data/ext/ffi_c/libffi/m4/ax_configure_args.m4 +5 -26
  54. data/ext/ffi_c/libffi/m4/ax_gcc_archflag.m4 +7 -3
  55. data/ext/ffi_c/libffi/src/aarch64/ffi.c +6 -0
  56. data/ext/ffi_c/libffi/src/aarch64/sysv.S +13 -2
  57. data/ext/ffi_c/libffi/src/closures.c +20 -6
  58. data/ext/ffi_c/libffi/src/mips/o32.S +2 -0
  59. data/ext/ffi_c/libffi/src/pa/ffi.c +46 -91
  60. data/ext/ffi_c/libffi/src/pa/ffitarget.h +1 -6
  61. data/ext/ffi_c/libffi/src/pa/hpux32.S +4 -2
  62. data/ext/ffi_c/libffi/src/pa/linux.S +4 -2
  63. data/ext/ffi_c/libffi/src/powerpc/ffi.c +3 -2
  64. data/ext/ffi_c/libffi/src/powerpc/ffi_linux64.c +154 -8
  65. data/ext/ffi_c/libffi/src/powerpc/ffi_powerpc.h +18 -7
  66. data/ext/ffi_c/libffi/src/powerpc/ffitarget.h +10 -4
  67. data/ext/ffi_c/libffi/src/powerpc/linux64.S +83 -28
  68. data/ext/ffi_c/libffi/src/powerpc/linux64_closure.S +67 -3
  69. data/ext/ffi_c/libffi/src/powerpc/sysv.S +5 -7
  70. data/ext/ffi_c/libffi/src/x86/ffi.c +7 -4
  71. data/ext/ffi_c/libffi/src/x86/ffi64.c +10 -8
  72. data/ext/ffi_c/libffi/src/x86/ffitarget.h +15 -2
  73. data/ext/ffi_c/libffi/src/x86/ffiw64.c +10 -8
  74. data/ext/ffi_c/libffi/src/x86/sysv.S +13 -4
  75. data/ext/ffi_c/libffi/src/x86/unix64.S +58 -2
  76. data/ext/ffi_c/libffi/src/x86/win64.S +4 -1
  77. data/ext/ffi_c/libffi/testsuite/Makefile.am +78 -75
  78. data/ext/ffi_c/libffi/testsuite/lib/libffi.exp +1 -18
  79. data/ext/ffi_c/libffi/testsuite/libffi.bhaible/bhaible.exp +7 -2
  80. data/ext/ffi_c/libffi/testsuite/libffi.bhaible/test-call.c +1 -1
  81. data/ext/ffi_c/libffi/testsuite/libffi.bhaible/test-callback.c +1 -1
  82. data/ext/ffi_c/libffi/testsuite/libffi.call/call.exp +12 -1
  83. data/ext/ffi_c/libffi/testsuite/libffi.closures/closure.exp +67 -0
  84. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_fn0.c +0 -0
  85. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_fn1.c +0 -0
  86. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_fn2.c +0 -0
  87. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_fn3.c +0 -0
  88. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_fn4.c +0 -0
  89. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_fn5.c +0 -0
  90. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_fn6.c +0 -0
  91. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_loc_fn0.c +0 -0
  92. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_simple.c +0 -0
  93. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_12byte.c +0 -0
  94. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_16byte.c +0 -0
  95. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_18byte.c +0 -0
  96. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_19byte.c +0 -0
  97. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_1_1byte.c +0 -0
  98. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_20byte.c +0 -0
  99. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_20byte1.c +0 -0
  100. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_24byte.c +0 -0
  101. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_2byte.c +0 -0
  102. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_3_1byte.c +0 -0
  103. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_3byte1.c +0 -0
  104. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_3byte2.c +0 -0
  105. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_3float.c +0 -0
  106. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_4_1byte.c +0 -0
  107. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_4byte.c +0 -0
  108. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_5_1_byte.c +0 -0
  109. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_5byte.c +0 -0
  110. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_64byte.c +0 -0
  111. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_6_1_byte.c +0 -0
  112. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_6byte.c +0 -0
  113. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_7_1_byte.c +0 -0
  114. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_7byte.c +0 -0
  115. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_8byte.c +0 -0
  116. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_9byte1.c +0 -0
  117. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_9byte2.c +0 -0
  118. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_double.c +0 -0
  119. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_float.c +0 -0
  120. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_longdouble.c +0 -0
  121. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_longdouble_split.c +0 -0
  122. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_longdouble_split2.c +0 -0
  123. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_pointer.c +0 -0
  124. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_sint16.c +0 -0
  125. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_sint32.c +0 -0
  126. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_sint64.c +0 -0
  127. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_uint16.c +0 -0
  128. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_uint32.c +0 -0
  129. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_uint64.c +0 -0
  130. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_dbls_struct.c +0 -0
  131. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_double.c +0 -0
  132. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_double_va.c +0 -0
  133. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_float.c +0 -0
  134. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_longdouble.c +0 -0
  135. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_longdouble_va.c +0 -0
  136. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_many_mixed_args.c +0 -0
  137. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_many_mixed_float_double.c +0 -0
  138. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_multi_schar.c +0 -0
  139. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_multi_sshort.c +0 -0
  140. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_multi_sshortchar.c +0 -0
  141. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_multi_uchar.c +0 -0
  142. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_multi_ushort.c +0 -0
  143. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_multi_ushortchar.c +0 -0
  144. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_pointer.c +0 -0
  145. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_pointer_stack.c +0 -0
  146. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_schar.c +0 -0
  147. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_sint.c +0 -0
  148. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_sshort.c +0 -0
  149. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_struct_va1.c +0 -0
  150. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_uchar.c +0 -0
  151. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_uchar_va.c +0 -0
  152. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_uint.c +0 -0
  153. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_uint_va.c +0 -0
  154. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_ulong_va.c +0 -0
  155. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_ulonglong.c +0 -0
  156. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_ushort.c +0 -0
  157. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_ushort_va.c +0 -0
  158. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/err_bad_abi.c +0 -0
  159. data/ext/ffi_c/libffi/testsuite/libffi.closures/ffitest.h +138 -0
  160. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/huge_struct.c +1 -1
  161. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct.c +0 -0
  162. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct1.c +0 -0
  163. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct10.c +0 -0
  164. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct11.c +0 -0
  165. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct2.c +0 -0
  166. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct3.c +0 -0
  167. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct4.c +0 -0
  168. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct5.c +0 -0
  169. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct6.c +0 -0
  170. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct7.c +0 -0
  171. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct8.c +0 -0
  172. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct9.c +0 -0
  173. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/problem1.c +0 -0
  174. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/stret_large.c +0 -0
  175. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/stret_large2.c +0 -0
  176. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/stret_medium.c +0 -0
  177. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/stret_medium2.c +0 -0
  178. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/testclosure.c +0 -0
  179. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/unwindtest.cc +0 -0
  180. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/unwindtest_ffi_call.cc +0 -0
  181. data/ffi.gemspec +3 -3
  182. data/lib/ffi.rb +10 -2
  183. data/lib/ffi/ffi.rb +1 -0
  184. data/lib/ffi/library.rb +5 -1
  185. data/lib/ffi/platform.rb +6 -2
  186. data/lib/ffi/platform/arm-linux/types.conf +32 -4
  187. data/lib/ffi/platform/i386-windows/types.conf +26 -79
  188. data/lib/ffi/platform/powerpc-linux/types.conf +32 -2
  189. data/lib/ffi/platform/powerpc-openbsd/types.conf +156 -0
  190. data/lib/ffi/platform/sparcv9-openbsd/types.conf +156 -0
  191. data/lib/ffi/platform/x86_64-darwin/types.conf +4 -0
  192. data/lib/ffi/platform/x86_64-dragonflybsd/types.conf +4 -22
  193. data/lib/ffi/platform/x86_64-linux/types.conf +21 -0
  194. data/lib/ffi/platform/x86_64-windows/types.conf +10 -78
  195. data/lib/ffi/pointer.rb +19 -12
  196. data/lib/ffi/struct.rb +10 -5
  197. data/lib/ffi/tools/types_generator.rb +2 -0
  198. data/lib/ffi/version.rb +1 -1
  199. data/samples/getlogin.rb +1 -1
  200. data/samples/getpid.rb +1 -1
  201. data/samples/gettimeofday.rb +8 -8
  202. data/samples/hello.rb +2 -1
  203. data/samples/inotify.rb +1 -1
  204. data/samples/pty.rb +1 -2
  205. data/samples/qsort.rb +0 -1
  206. metadata +116 -110
  207. data/ext/ffi_c/libffi/ChangeLog.libffi +0 -584
  208. data/ext/ffi_c/libffi/ChangeLog.libgcj +0 -40
  209. data/ext/ffi_c/libffi/ChangeLog.v1 +0 -764
  210. data/samples/sample_helper.rb +0 -6
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 644662e700692019ada112b10a164622c08978bbe2aecfeb38205a43df099e28
4
- data.tar.gz: 8699b821c2200c62c49c4265d5ce8b67862f53d71e1a2862b41ed5f44eedad87
3
+ metadata.gz: 7c1ae7c590f7dd4d8d821c6faf31c66499a90c421ff25fe14ce4465cc058b83f
4
+ data.tar.gz: e4c16035d46e13e752e215fdc87511c214db31cec9084cca3c2141a9d83469c7
5
5
  SHA512:
6
- metadata.gz: 6aee46baf520f91e112a1fdcd40218f51f100b50f56d126a94982d341f38919f3f550831db1c9da569d8457c2b50707654681b06ae6cae48ac4597d927b0569d
7
- data.tar.gz: c728916db8dad5ec04403ab9cead139b870f56d3e0a34f0b08ec467f9a153c1f29d2f9ad2e30bb3056476a4dd3d42edebfdfbd9f88477f9e08862601cb3277a0
6
+ metadata.gz: a4064371f99217b7b449c46915e4505b54a61785ec27a2b5cd51d798cc929ff58bef33ad9064ab93ca85ad2c5d5c07d515edb0ac5d673a468fb17abf18565627
7
+ data.tar.gz: a545c796f0b36fb7cac6ac06a73094274d077e0e0f54f55f67c129e6bff27b7679886a3adc87e9b3c173f975864dc78ac3d6277d8a8d1352f974b697ace0f8b4
@@ -10,11 +10,14 @@ install:
10
10
  - gem --version
11
11
  - gem install bundler --quiet --no-document
12
12
  - bundle install
13
+ # Update to libffi-3.3 since Appveyor version fails on LongDouble specs
14
+ - ridk exec pacman --sync --refresh --needed --noconfirm mingw-w64-x86_64-libffi mingw-w64-i686-libffi
13
15
  build: off
14
16
  build_script:
15
17
  - bundle exec rake libffi compile -- %EXTCONFOPTS% || bundle exec rake compile -- %EXTCONFOPTS%
16
18
  test_script:
17
19
  - bundle exec rake test
20
+ - bundle exec rake types_conf && git --no-pager diff
18
21
  environment:
19
22
  matrix:
20
23
  - RUBYVER: "head-x64"
@@ -0,0 +1,64 @@
1
+ name: CI
2
+ on: [push, pull_request]
3
+ jobs:
4
+ system-libffi:
5
+ # Run on latest MRI with explicit selection of system or builtin libffi
6
+ strategy:
7
+ fail-fast: false
8
+ matrix:
9
+ os: [ ubuntu, macos, windows ]
10
+ extconfopts: [ --disable-system-libffi, --enable-system-libffi ]
11
+ runs-on: ${{ matrix.os }}-latest
12
+ steps:
13
+ - uses: actions/checkout@v2
14
+ - uses: ruby/setup-ruby@v1
15
+ with:
16
+ ruby-version: 2.7
17
+
18
+ - run: brew install automake libffi pkg-config
19
+ if: matrix.os == 'macos'
20
+ - run: ridk exec pacman --sync --refresh --needed --noconfirm mingw-w64-x86_64-libffi
21
+ if: matrix.os == 'windows' && matrix.extconfopts == '--enable-system-libffi'
22
+
23
+ - run: bundle install
24
+ - run: bundle exec rake libffi
25
+ - run: bundle exec rake compile -- ${{ matrix.extconfopts }}
26
+ env:
27
+ # work around misconfiguration of libffi on MacOS with homebrew
28
+ PKG_CONFIG_PATH: ${{ env.PKG_CONFIG_PATH }}:/usr/local/opt/libffi/lib/pkgconfig
29
+ - run: bundle exec rake test
30
+ - run: bundle exec rake types_conf && git --no-pager diff
31
+
32
+ specs:
33
+ # Run all specs on all ruby implementations
34
+ # Use automatic libffi selection on MRI
35
+ strategy:
36
+ fail-fast: false
37
+ matrix:
38
+ os: [ ubuntu, macos, windows ]
39
+ ruby: [ 2.3, 2.4, 2.5, 2.6, 2.7, ruby-head, truffleruby-head ]
40
+ exclude:
41
+ - os: windows
42
+ ruby: truffleruby-head
43
+ - os: windows
44
+ ruby: 2.3 # compilation fails
45
+ runs-on: ${{ matrix.os }}-latest
46
+ steps:
47
+ - uses: actions/checkout@v2
48
+ - uses: ruby/setup-ruby@v1
49
+ with:
50
+ ruby-version: ${{ matrix.ruby }}
51
+
52
+ - run: brew install automake
53
+ if: matrix.os == 'macos'
54
+
55
+ - run: bundle install
56
+ - run: bundle exec rake libffi
57
+ - run: bundle exec rake compile
58
+
59
+ - run: bundle exec rake test
60
+
61
+ - run: bundle exec rake bench:all
62
+ if: matrix.ruby != 'truffleruby-head'
63
+ env:
64
+ ITER: 10
@@ -1,20 +1,29 @@
1
1
  dist: trusty
2
2
  group: beta
3
3
  language: ruby
4
+ git:
5
+ submodules: false
4
6
 
5
7
  script:
6
- - bundle exec rake compile || bundle exec rake compile
8
+ - bundle exec rake libffi
9
+ - bundle exec rake compile
7
10
  - bundle exec rake test
8
- - ITER=10 bundle exec rake bench:all
11
+ - |
12
+ if [[ $(ruby -v) != *truffleruby* ]]; then
13
+ ITER=10 bundle exec rake bench:all
14
+ fi
15
+ - bundle exec rake types_conf && git --no-pager diff
9
16
  os:
10
17
  - linux
11
18
  - osx
12
19
  rvm:
13
20
  - 2.3.8
14
- - 2.4.5
15
- - 2.5.3
16
- - 2.6.0
21
+ - 2.4.6
22
+ - 2.5.5
23
+ - 2.6.5
24
+ - 2.7.0
17
25
  - ruby-head
26
+ - truffleruby-head
18
27
 
19
28
  env:
20
29
  - CC=gcc
@@ -23,6 +32,10 @@ matrix:
23
32
  allow_failures:
24
33
  - os: osx
25
34
  rvm: ruby-head
35
+ - os: osx
36
+ rvm: 2.3.8
37
+ - os: linux
38
+ rvm: ruby-head
26
39
  include:
27
40
  - name: powerpc
28
41
  language: generic
@@ -38,5 +51,8 @@ matrix:
38
51
  docker build --rm -t ffi-armhf -f spec/env/Dockerfile.armhf .
39
52
  script: |
40
53
  docker run --rm -t -v `pwd`:/ffi ffi-armhf
54
+ exclude:
55
+ - os: osx
56
+ rvm: truffleruby-head
41
57
  after_failure:
42
58
  - "find build -name mkmf.log | xargs cat"
@@ -1,3 +1,71 @@
1
+ 1.13.1 / 2020-06-09
2
+ -------------------
3
+
4
+ Changed:
5
+ * Revert use of `ucrtbase.dll` as default C library on Windows-MINGW.
6
+ `ucrtbase.dll` is still used on MSWIN target. #790
7
+ * Test for `ffi_prep_closure_loc()` to make sure we can use this function.
8
+ This fixes incorrect use of system libffi on MacOS Mojave (10.14). #787
9
+ * Update types.conf on x86_64-dragonflybsd
10
+
11
+
12
+ 1.13.0 / 2020-06-01
13
+ -------------------
14
+
15
+ Added:
16
+ * Add TruffleRuby support. Almost all specs are running on TruffleRuby and succeed. #768
17
+ * Add ruby source files to the java gem. This allows to ship the Ruby library code per platform java gem and add it as a default gem to JRuby. #763
18
+ * Add FFI::Platform::LONG_DOUBLE_SIZE
19
+ * Add bounds checks for writing to an inline char[] . #756
20
+ * Add long double as callback return value. #771
21
+ * Update type definitions and add types from stdint.h and stddef.h on i386-windows, x86_64-windows, x86_64-darwin, x86_64-linux, arm-linux, powerpc-linux. #749
22
+ * Add new type definitions for powerpc-openbsd and sparcv9-openbsd. #775, #778
23
+
24
+ Changed:
25
+ * Raise required ruby version to >= 2.3.
26
+ * Lots of cleanups and improvements in library, specs and benchmarks.
27
+ * Fix a lot of compiler warnings at the C-extension
28
+ * Fix several install issues on MacOS:
29
+ * Look for libffi in SDK paths, since recent versions of macOS removed it from `/usr/include` . #757
30
+ * Fix error `ld: library not found for -lgcc_s.10.4`
31
+ * Don't built for i386 architecture as it is deprecated
32
+ * Several fixes for MSVC build on Windows. #779
33
+ * Use `ucrtbase.dll` as default C library on Windows instead of old `msvcrt.dll`. #779
34
+ * Update builtin libffi to fix a Powerpc issue with parameters of type long
35
+ * Allow unmodified sourcing of (the ruby code of) this gem in JRuby and TruffleRuby as a default gem. #747
36
+ * Improve check to detect if a module has a #find_type method suitable for FFI. This fixes compatibility with stdlib `mkmf` . #776
37
+
38
+ Removed:
39
+ * Reject callback with `:string` return type at definition, because it didn't work so far and is not save to use. #751, #782
40
+
41
+
42
+ 1.12.2 / 2020-02-01
43
+ -------------------
44
+
45
+ * Fix possible segfault at FFI::Struct#[] and []= after GC.compact . #742
46
+
47
+
48
+ 1.12.1 / 2020-01-14
49
+ -------------------
50
+
51
+ Added:
52
+ * Add binary gem support for ruby-2.7 on Windows
53
+
54
+
55
+ 1.12.0 / 2020-01-14
56
+ -------------------
57
+
58
+ Added:
59
+ * FFI::VERSION is defined as part of `require 'ffi'` now.
60
+ It is no longer necessary to `require 'ffi/version'` .
61
+
62
+ Changed:
63
+ * Update libffi to latest master.
64
+
65
+ Deprecated:
66
+ * Overwriting struct layouts is now warned and will be disallowed in ffi-2.0. #734, #735
67
+
68
+
1
69
  1.11.3 / 2019-11-25
2
70
  -------------------
3
71
 
data/Gemfile CHANGED
@@ -1,12 +1,14 @@
1
1
  source 'https://rubygems.org'
2
2
 
3
3
  group :development do
4
- gem 'rake', '~> 12.1'
4
+ gem 'rake', '~> 13.0'
5
5
  gem 'rake-compiler', '~> 1.0.3'
6
- gem 'rake-compiler-dock', '~> 0.7.0'
6
+ gem 'rake-compiler-dock', '~> 1.0'
7
7
  gem 'rspec', '~> 3.0'
8
- gem 'rubygems-tasks', '~> 0.2.4', :require => 'rubygems/tasks'
9
- gem "rubysl", "~> 2.0", :platforms => 'rbx'
8
+ # irb is a dependency of rubygems-tasks 0.2.5.
9
+ # irb versions > 1.1.1 depend on reline,
10
+ # which sometimes causes 'bundle install' to fail on Ruby <= 2.4: https://github.com/rubygems/rubygems/issues/3463
11
+ gem 'rubygems-tasks', '>= 0.2', '< 0.2.5', :require => 'rubygems/tasks'
10
12
  end
11
13
 
12
14
  group :doc do
data/README.md CHANGED
@@ -38,10 +38,19 @@ For less minimalistic and more examples you may look at:
38
38
 
39
39
  ## Requirements
40
40
 
41
- When installing the gem on CRuby (MRI) or Rubinius, you will need:
41
+ When installing the gem on CRuby (MRI), you will need:
42
42
  * A C compiler (e.g., Xcode on macOS, `gcc` or `clang` on everything else)
43
+ Optionally (speeds up installation):
43
44
  * The `libffi` library and development headers - this is commonly in the `libffi-dev` or `libffi-devel` packages
44
45
 
46
+ The ffi gem comes with a builtin libffi version, which is used, when the system libffi library is not available or too old.
47
+ Use of the system libffi can be enforced by:
48
+ ```
49
+ gem install ffi -- --enable-system-libffi # to install the gem manually
50
+ bundle config build.ffi --enable-system-libffi # for bundle install
51
+ ```
52
+ or prevented by `--disable-system-libffi`.
53
+
45
54
  On Linux systems running with [PaX](https://en.wikipedia.org/wiki/PaX) (Gentoo, Alpine, etc.), FFI may trigger `mprotect` errors. You may need to disable [mprotect](https://en.wikibooks.org/wiki/Grsecurity/Appendix/Grsecurity_and_PaX_Configuration_Options#Restrict_mprotect.28.29) for ruby (`paxctl -m [/path/to/ruby]`) for the time being until a solution is found.
46
55
 
47
56
  On FreeBSD systems pkgconf must be installed for the gem to be able to compile using clang. Install either via packages `pkg install pkgconf` or from ports via `devel/pkgconf`.
data/Rakefile CHANGED
@@ -1,7 +1,7 @@
1
1
  require 'rubygems/tasks'
2
2
  require 'rbconfig'
3
3
  require 'rake/clean'
4
- require File.expand_path("./lib/ffi/version")
4
+ require_relative "lib/ffi/version"
5
5
 
6
6
  require 'date'
7
7
  require 'fileutils'
@@ -9,10 +9,6 @@ require 'rbconfig'
9
9
  require 'rspec/core/rake_task'
10
10
  require 'rubygems/package_task'
11
11
 
12
- def java?
13
- /java/ === RUBY_PLATFORM
14
- end
15
-
16
12
  BUILD_DIR = "build"
17
13
  BUILD_EXT_DIR = File.join(BUILD_DIR, "#{RbConfig::CONFIG['arch']}", 'ffi_c', RUBY_VERSION)
18
14
 
@@ -20,17 +16,8 @@ def gem_spec
20
16
  @gem_spec ||= Gem::Specification.load('ffi.gemspec')
21
17
  end
22
18
 
23
- TEST_DEPS = []
24
- if RUBY_PLATFORM == "java"
25
- RSpec::Core::RakeTask.new(:spec) do |config|
26
- config.rspec_opts = YAML.load_file 'spec/spec.opts'
27
- end
28
- else
29
- RSpec::Core::RakeTask.new(:spec => :compile) do |config|
30
- config.rspec_opts = YAML.load_file 'spec/spec.opts'
31
- end
32
-
33
- TEST_DEPS.unshift :compile
19
+ RSpec::Core::RakeTask.new(:spec => :compile) do |config|
20
+ config.rspec_opts = YAML.load_file 'spec/spec.opts'
34
21
  end
35
22
 
36
23
  desc "Build all packages"
@@ -58,37 +45,29 @@ task :test => [ :spec ]
58
45
 
59
46
  namespace :bench do
60
47
  ITER = ENV['ITER'] ? ENV['ITER'].to_i : 100000
61
- bench_libs = "-Ilib" unless RUBY_PLATFORM == "java"
62
- bench_files = Dir["bench/bench_*.rb"].reject { |f| f == "bench/bench_helper.rb" }
48
+ bench_files = Dir["bench/bench_*.rb"].sort.reject { |f| f == "bench/bench_helper.rb" }
63
49
  bench_files.each do |bench|
64
- task File.basename(bench, ".rb")[6..-1] => TEST_DEPS do
65
- sh %{#{Gem.ruby} #{bench_libs} #{bench} #{ITER}}
50
+ task File.basename(bench, ".rb")[6..-1] => :compile do
51
+ sh %{#{Gem.ruby} #{bench} #{ITER}}
66
52
  end
67
53
  end
68
- task :all => TEST_DEPS do
54
+ task :all => :compile do
69
55
  bench_files.each do |bench|
70
- sh %{#{Gem.ruby} #{bench_libs} #{bench}}
56
+ sh %{#{Gem.ruby} #{bench}}
71
57
  end
72
58
  end
73
59
  end
74
60
 
75
- task 'spec:run' => TEST_DEPS
76
- task 'spec:specdoc' => TEST_DEPS
61
+ task 'spec:run' => :compile
62
+ task 'spec:specdoc' => :compile
77
63
 
78
64
  task :default => :spec
79
65
 
80
66
  namespace 'java' do
81
67
 
82
- java_gem_spec = Gem::Specification.new do |s|
83
- s.name = gem_spec.name
84
- s.version = gem_spec.version
85
- s.author = gem_spec.author
86
- s.email = gem_spec.email
87
- s.homepage = gem_spec.homepage
88
- s.summary = gem_spec.summary
89
- s.description = gem_spec.description
90
- s.files = %w(LICENSE COPYING README.md CHANGELOG.md Rakefile)
91
- s.license = gem_spec.license
68
+ java_gem_spec = gem_spec.dup.tap do |s|
69
+ s.files.reject! { |f| File.fnmatch?("ext/*", f) }
70
+ s.extensions = []
92
71
  s.platform = 'java'
93
72
  end
94
73
 
@@ -101,7 +80,7 @@ end
101
80
 
102
81
  task 'gem:java' => 'java:gem'
103
82
 
104
- unless java?
83
+ if RUBY_ENGINE == 'ruby' || RUBY_ENGINE == 'rbx'
105
84
  require 'rake/extensiontask'
106
85
  Rake::ExtensionTask.new('ffi_c', gem_spec) do |ext|
107
86
  ext.name = 'ffi_c' # indicate the name of the extension.
@@ -124,13 +103,17 @@ unless java?
124
103
  sh "x86_64-w64-mingw32-strip -S build/x64-mingw32/stage/lib/#{ruby_version[/^\d+\.\d+/]}/ffi_c.so"
125
104
  end
126
105
  end
106
+ else
107
+ task :compile do
108
+ STDERR.puts "Nothing to compile on #{RUBY_ENGINE}"
109
+ end
127
110
  end
128
111
 
129
112
  desc "build a windows gem without all the ceremony"
130
113
  task "gem:windows" do
131
114
  require "rake_compiler_dock"
132
115
  sh "bundle package"
133
- RakeCompilerDock.sh "sudo apt-get update && sudo apt-get install -y libltdl-dev && bundle --local && rake cross native gem MAKE='nice make -j`nproc`'"
116
+ RakeCompilerDock.sh "sudo apt-get update && sudo apt-get install -y libltdl-dev && bundle --local && rake cross native gem MAKE='nice make -j`nproc`' RUBY_CC_VERSION=${RUBY_CC_VERSION/:2.2.2/}"
134
117
  end
135
118
 
136
119
  directory "ext/ffi_c/libffi"
@@ -158,16 +141,15 @@ end.each do |f|
158
141
  end
159
142
  end
160
143
 
161
- $LOAD_PATH.unshift File.join(File.dirname(__FILE__), 'lib')
162
- require 'ffi/platform'
144
+ require_relative "lib/ffi/platform"
163
145
  types_conf = File.expand_path(File.join(FFI::Platform::CONF_DIR, 'types.conf'))
164
146
  logfile = File.join(File.dirname(__FILE__), 'types_log')
165
147
 
166
- file types_conf => File.join("lib", "ffi", "version.rb") do |task|
148
+ task types_conf do |task|
167
149
  require 'fileutils'
168
- require 'ffi/tools/types_generator'
150
+ require_relative "lib/ffi/tools/types_generator"
169
151
  options = {}
170
- FileUtils.mkdir_p(File.dirname(task.name), { :mode => 0755 })
152
+ FileUtils.mkdir_p(File.dirname(task.name), mode: 0755 )
171
153
  File.open(task.name, File::CREAT|File::TRUNC|File::RDWR, 0644) do |f|
172
154
  f.puts FFI::TypesGenerator.generate(options)
173
155
  end
@@ -177,8 +159,7 @@ file types_conf => File.join("lib", "ffi", "version.rb") do |task|
177
159
  end
178
160
 
179
161
  desc "Create or update type information for platform #{FFI::Platform::NAME}"
180
- task :types_conf => types_conf do
181
- end
162
+ task :types_conf => types_conf
182
163
 
183
164
  Gem::Tasks.new do |t|
184
165
  t.scm.tag.format = '%s'
@@ -114,7 +114,7 @@ buffer_initialize(int argc, VALUE* argv, VALUE self)
114
114
  }
115
115
 
116
116
  /* ensure the memory is aligned on at least a 8 byte boundary */
117
- p->memory.address = (void *) (((uintptr_t) p->data.storage + 0x7) & (uintptr_t) ~0x7UL);
117
+ p->memory.address = (void *) (((uintptr_t) p->data.storage + 0x7) & (uintptr_t) ~0x7ULL);
118
118
 
119
119
  if (p->memory.size > 0 && (nargs < 3 || RTEST(rbClear))) {
120
120
  memset(p->memory.address, 0, p->memory.size);
@@ -154,7 +154,7 @@ buffer_initialize_copy(VALUE self, VALUE other)
154
154
  return Qnil;
155
155
  }
156
156
 
157
- dst->memory.address = (void *) (((uintptr_t) dst->data.storage + 0x7) & (uintptr_t) ~0x7UL);
157
+ dst->memory.address = (void *) (((uintptr_t) dst->data.storage + 0x7) & (uintptr_t) ~0x7ULL);
158
158
  dst->memory.size = src->size;
159
159
  dst->memory.typeSize = src->typeSize;
160
160
 
@@ -339,13 +339,7 @@ static void *
339
339
  call_blocking_function(void* data)
340
340
  {
341
341
  rbffi_blocking_call_t* b = (rbffi_blocking_call_t *) data;
342
- #ifndef HAVE_RUBY_THREAD_HAS_GVL_P
343
- b->frame->has_gvl = false;
344
- #endif
345
342
  ffi_call(&b->cif, FFI_FN(b->function), b->retval, b->ffiValues);
346
- #ifndef HAVE_RUBY_THREAD_HAS_GVL_P
347
- b->frame->has_gvl = true;
348
- #endif
349
343
 
350
344
  return NULL;
351
345
  }
@@ -353,7 +347,7 @@ call_blocking_function(void* data)
353
347
  VALUE
354
348
  rbffi_do_blocking_call(VALUE data)
355
349
  {
356
- rb_thread_call_without_gvl(call_blocking_function, (void*)data, (void *) -1, NULL);
350
+ rb_thread_call_without_gvl(call_blocking_function, (void*)data, (rb_unblock_function_t *) -1, NULL);
357
351
 
358
352
  return Qnil;
359
353
  }
@@ -70,9 +70,6 @@
70
70
  #ifndef roundup
71
71
  # define roundup(x, y) ((((x)+((y)-1))/(y))*(y))
72
72
  #endif
73
- #ifdef _WIN32
74
- typedef char* caddr_t;
75
- #endif
76
73
 
77
74
  typedef struct Memory {
78
75
  void* code;
@@ -96,7 +93,7 @@ static bool freePage(void *);
96
93
  static bool protectPage(void *);
97
94
 
98
95
  ClosurePool*
99
- rbffi_ClosurePool_New(int closureSize,
96
+ rbffi_ClosurePool_New(int closureSize,
100
97
  bool (*prep)(void* ctx, void *code, Closure* closure, char* errbuf, size_t errbufsize),
101
98
  void* ctx)
102
99
  {
@@ -107,7 +104,7 @@ rbffi_ClosurePool_New(int closureSize,
107
104
  pool->ctx = ctx;
108
105
  pool->prep = prep;
109
106
  pool->refcnt = 1;
110
-
107
+
111
108
  return pool;
112
109
  }
113
110
 
@@ -115,7 +112,7 @@ void
115
112
  cleanup_closure_pool(ClosurePool* pool)
116
113
  {
117
114
  Memory* memory;
118
-
115
+
119
116
  for (memory = pool->blocks; memory != NULL; ) {
120
117
  Memory* next = memory->next;
121
118
  freePage(memory->code);
@@ -142,7 +139,7 @@ rbffi_Closure_Alloc(ClosurePool* pool)
142
139
  {
143
140
  Closure *list = NULL;
144
141
  Memory* block = NULL;
145
- caddr_t code = NULL;
142
+ void *code = NULL;
146
143
  char errmsg[256];
147
144
  int nclosures;
148
145
  long trampolineSize;
@@ -152,7 +149,7 @@ rbffi_Closure_Alloc(ClosurePool* pool)
152
149
  Closure* closure = pool->list;
153
150
  pool->list = pool->list->next;
154
151
  pool->refcnt++;
155
-
152
+
156
153
  return closure;
157
154
  }
158
155
 
@@ -161,17 +158,17 @@ rbffi_Closure_Alloc(ClosurePool* pool)
161
158
  block = calloc(1, sizeof(*block));
162
159
  list = calloc(nclosures, sizeof(*list));
163
160
  code = allocatePage();
164
-
161
+
165
162
  if (block == NULL || list == NULL || code == NULL) {
166
163
  snprintf(errmsg, sizeof(errmsg), "failed to allocate a page. errno=%d (%s)", errno, strerror(errno));
167
164
  goto error;
168
165
  }
169
-
166
+
170
167
  for (i = 0; i < nclosures; ++i) {
171
168
  Closure* closure = &list[i];
172
169
  closure->next = &list[i + 1];
173
170
  closure->pool = pool;
174
- closure->code = (code + (i * trampolineSize));
171
+ closure->code = ((char *)code + (i * trampolineSize));
175
172
 
176
173
  if (!(*pool->prep)(pool->ctx, closure->code, closure, errmsg, sizeof(errmsg))) {
177
174
  goto error;
@@ -202,7 +199,7 @@ error:
202
199
  if (code != NULL) {
203
200
  freePage(code);
204
201
  }
205
-
202
+
206
203
 
207
204
  rb_raise(rb_eRuntimeError, "%s", errmsg);
208
205
  return NULL;
@@ -249,8 +246,8 @@ allocatePage(void)
249
246
  #if !defined(__CYGWIN__) && (defined(_WIN32) || defined(__WIN32__))
250
247
  return VirtualAlloc(NULL, pageSize, MEM_COMMIT | MEM_RESERVE, PAGE_READWRITE);
251
248
  #else
252
- caddr_t page = mmap(NULL, pageSize, PROT_READ | PROT_WRITE, MAP_ANON | MAP_PRIVATE, -1, 0);
253
- return (page != (caddr_t) -1) ? page : NULL;
249
+ void *page = mmap(NULL, pageSize, PROT_READ | PROT_WRITE, MAP_ANON | MAP_PRIVATE, -1, 0);
250
+ return (page != (void *) -1) ? page : NULL;
254
251
  #endif
255
252
  }
256
253