ffi 1.9.21-x86-mingw32 → 1.9.22-x86-mingw32

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of ffi might be problematic. Click here for more details.

Files changed (551) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +22 -0
  3. data/.gitmodules +3 -0
  4. data/.travis.yml +52 -0
  5. data/.yardopts +5 -0
  6. data/Gemfile +15 -0
  7. data/{spec/ffi/LICENSE.SPECS → LICENSE.SPECS} +1 -1
  8. data/README.md +1 -1
  9. data/Rakefile +28 -3
  10. data/appveyor.yml +22 -0
  11. data/ffi.gemspec +14 -1
  12. data/lib/2.0/ffi_c.so +0 -0
  13. data/lib/2.1/ffi_c.so +0 -0
  14. data/lib/2.2/ffi_c.so +0 -0
  15. data/lib/2.3/ffi_c.so +0 -0
  16. data/lib/2.4/ffi_c.so +0 -0
  17. data/lib/2.5/ffi_c.so +0 -0
  18. data/lib/ffi/library.rb +1 -1
  19. data/lib/ffi/version.rb +1 -1
  20. data/samples/getlogin.rb +8 -0
  21. data/samples/getpid.rb +8 -0
  22. data/samples/gettimeofday.rb +18 -0
  23. data/samples/hello.rb +7 -0
  24. data/samples/inotify.rb +60 -0
  25. data/samples/pty.rb +76 -0
  26. data/samples/qsort.rb +21 -0
  27. data/samples/sample_helper.rb +6 -0
  28. metadata +17 -526
  29. data/ext/ffi_c/AbstractMemory.c +0 -1109
  30. data/ext/ffi_c/AbstractMemory.h +0 -175
  31. data/ext/ffi_c/ArrayType.c +0 -162
  32. data/ext/ffi_c/ArrayType.h +0 -59
  33. data/ext/ffi_c/Buffer.c +0 -365
  34. data/ext/ffi_c/Call.c +0 -517
  35. data/ext/ffi_c/Call.h +0 -110
  36. data/ext/ffi_c/ClosurePool.c +0 -283
  37. data/ext/ffi_c/ClosurePool.h +0 -57
  38. data/ext/ffi_c/DataConverter.c +0 -91
  39. data/ext/ffi_c/DynamicLibrary.c +0 -339
  40. data/ext/ffi_c/DynamicLibrary.h +0 -98
  41. data/ext/ffi_c/Function.c +0 -998
  42. data/ext/ffi_c/Function.h +0 -87
  43. data/ext/ffi_c/FunctionInfo.c +0 -271
  44. data/ext/ffi_c/LastError.c +0 -184
  45. data/ext/ffi_c/LastError.h +0 -47
  46. data/ext/ffi_c/LongDouble.c +0 -63
  47. data/ext/ffi_c/LongDouble.h +0 -51
  48. data/ext/ffi_c/MappedType.c +0 -168
  49. data/ext/ffi_c/MappedType.h +0 -59
  50. data/ext/ffi_c/MemoryPointer.c +0 -197
  51. data/ext/ffi_c/MemoryPointer.h +0 -53
  52. data/ext/ffi_c/MethodHandle.c +0 -358
  53. data/ext/ffi_c/MethodHandle.h +0 -55
  54. data/ext/ffi_c/Platform.c +0 -129
  55. data/ext/ffi_c/Platform.h +0 -45
  56. data/ext/ffi_c/Pointer.c +0 -508
  57. data/ext/ffi_c/Pointer.h +0 -63
  58. data/ext/ffi_c/Struct.c +0 -829
  59. data/ext/ffi_c/Struct.h +0 -106
  60. data/ext/ffi_c/StructByReference.c +0 -190
  61. data/ext/ffi_c/StructByReference.h +0 -50
  62. data/ext/ffi_c/StructByValue.c +0 -150
  63. data/ext/ffi_c/StructByValue.h +0 -55
  64. data/ext/ffi_c/StructLayout.c +0 -698
  65. data/ext/ffi_c/Thread.c +0 -352
  66. data/ext/ffi_c/Thread.h +0 -95
  67. data/ext/ffi_c/Type.c +0 -397
  68. data/ext/ffi_c/Type.h +0 -62
  69. data/ext/ffi_c/Types.c +0 -139
  70. data/ext/ffi_c/Types.h +0 -89
  71. data/ext/ffi_c/Variadic.c +0 -304
  72. data/ext/ffi_c/compat.h +0 -78
  73. data/ext/ffi_c/extconf.rb +0 -71
  74. data/ext/ffi_c/ffi.c +0 -98
  75. data/ext/ffi_c/libffi.bsd.mk +0 -40
  76. data/ext/ffi_c/libffi.darwin.mk +0 -105
  77. data/ext/ffi_c/libffi.gnu.mk +0 -32
  78. data/ext/ffi_c/libffi.mk +0 -18
  79. data/ext/ffi_c/libffi.vc.mk +0 -26
  80. data/ext/ffi_c/libffi.vc64.mk +0 -26
  81. data/ext/ffi_c/libffi/ChangeLog.libffi +0 -584
  82. data/ext/ffi_c/libffi/ChangeLog.libffi-3.1 +0 -6000
  83. data/ext/ffi_c/libffi/ChangeLog.libgcj +0 -40
  84. data/ext/ffi_c/libffi/ChangeLog.v1 +0 -764
  85. data/ext/ffi_c/libffi/LICENSE +0 -21
  86. data/ext/ffi_c/libffi/Makefile.am +0 -205
  87. data/ext/ffi_c/libffi/Makefile.in +0 -1805
  88. data/ext/ffi_c/libffi/README +0 -454
  89. data/ext/ffi_c/libffi/acinclude.m4 +0 -473
  90. data/ext/ffi_c/libffi/aclocal.m4 +0 -2134
  91. data/ext/ffi_c/libffi/autogen.sh +0 -2
  92. data/ext/ffi_c/libffi/autom4te.cache/output.0 +0 -21972
  93. data/ext/ffi_c/libffi/autom4te.cache/output.1 +0 -21972
  94. data/ext/ffi_c/libffi/autom4te.cache/output.2 +0 -21972
  95. data/ext/ffi_c/libffi/autom4te.cache/output.3 +0 -21972
  96. data/ext/ffi_c/libffi/autom4te.cache/requests +0 -331
  97. data/ext/ffi_c/libffi/autom4te.cache/traces.0 +0 -4010
  98. data/ext/ffi_c/libffi/autom4te.cache/traces.1 +0 -1005
  99. data/ext/ffi_c/libffi/autom4te.cache/traces.2 +0 -4010
  100. data/ext/ffi_c/libffi/autom4te.cache/traces.3 +0 -4010
  101. data/ext/ffi_c/libffi/compile +0 -347
  102. data/ext/ffi_c/libffi/config.guess +0 -1462
  103. data/ext/ffi_c/libffi/config.sub +0 -1825
  104. data/ext/ffi_c/libffi/configure +0 -21972
  105. data/ext/ffi_c/libffi/configure.ac +0 -388
  106. data/ext/ffi_c/libffi/configure.host +0 -272
  107. data/ext/ffi_c/libffi/depcomp +0 -791
  108. data/ext/ffi_c/libffi/doc/Makefile.am +0 -3
  109. data/ext/ffi_c/libffi/doc/Makefile.in +0 -811
  110. data/ext/ffi_c/libffi/doc/libffi.texi +0 -985
  111. data/ext/ffi_c/libffi/doc/mdate-sh +0 -228
  112. data/ext/ffi_c/libffi/doc/texinfo.tex +0 -10079
  113. data/ext/ffi_c/libffi/doc/version.texi +0 -4
  114. data/ext/ffi_c/libffi/fficonfig.h.in +0 -210
  115. data/ext/ffi_c/libffi/fficonfig.h.in~ +0 -210
  116. data/ext/ffi_c/libffi/generate-darwin-source-and-headers.py +0 -207
  117. data/ext/ffi_c/libffi/include/Makefile.am +0 -9
  118. data/ext/ffi_c/libffi/include/Makefile.in +0 -604
  119. data/ext/ffi_c/libffi/include/ffi.h.in +0 -484
  120. data/ext/ffi_c/libffi/include/ffi_cfi.h +0 -55
  121. data/ext/ffi_c/libffi/include/ffi_common.h +0 -147
  122. data/ext/ffi_c/libffi/install-sh +0 -508
  123. data/ext/ffi_c/libffi/libffi.map.in +0 -80
  124. data/ext/ffi_c/libffi/libffi.pc.in +0 -11
  125. data/ext/ffi_c/libffi/libffi.xcodeproj/project.pbxproj +0 -637
  126. data/ext/ffi_c/libffi/libtool-ldflags +0 -106
  127. data/ext/ffi_c/libffi/libtool-version +0 -29
  128. data/ext/ffi_c/libffi/ltmain.sh +0 -11156
  129. data/ext/ffi_c/libffi/m4/asmcfi.m4 +0 -13
  130. data/ext/ffi_c/libffi/m4/ax_append_flag.m4 +0 -69
  131. data/ext/ffi_c/libffi/m4/ax_cc_maxopt.m4 +0 -181
  132. data/ext/ffi_c/libffi/m4/ax_cflags_warn_all.m4 +0 -122
  133. data/ext/ffi_c/libffi/m4/ax_check_compile_flag.m4 +0 -72
  134. data/ext/ffi_c/libffi/m4/ax_compiler_vendor.m4 +0 -84
  135. data/ext/ffi_c/libffi/m4/ax_configure_args.m4 +0 -70
  136. data/ext/ffi_c/libffi/m4/ax_enable_builddir.m4 +0 -301
  137. data/ext/ffi_c/libffi/m4/ax_gcc_archflag.m4 +0 -225
  138. data/ext/ffi_c/libffi/m4/ax_gcc_x86_cpuid.m4 +0 -79
  139. data/ext/ffi_c/libffi/m4/libtool.m4 +0 -8387
  140. data/ext/ffi_c/libffi/m4/ltoptions.m4 +0 -437
  141. data/ext/ffi_c/libffi/m4/ltsugar.m4 +0 -124
  142. data/ext/ffi_c/libffi/m4/ltversion.m4 +0 -23
  143. data/ext/ffi_c/libffi/m4/lt~obsolete.m4 +0 -99
  144. data/ext/ffi_c/libffi/man/Makefile.am +0 -8
  145. data/ext/ffi_c/libffi/man/Makefile.in +0 -558
  146. data/ext/ffi_c/libffi/man/ffi.3 +0 -41
  147. data/ext/ffi_c/libffi/man/ffi_call.3 +0 -103
  148. data/ext/ffi_c/libffi/man/ffi_prep_cif.3 +0 -68
  149. data/ext/ffi_c/libffi/man/ffi_prep_cif_var.3 +0 -73
  150. data/ext/ffi_c/libffi/missing +0 -215
  151. data/ext/ffi_c/libffi/msvcc.sh +0 -260
  152. data/ext/ffi_c/libffi/src/aarch64/ffi.c +0 -941
  153. data/ext/ffi_c/libffi/src/aarch64/ffitarget.h +0 -81
  154. data/ext/ffi_c/libffi/src/aarch64/internal.h +0 -67
  155. data/ext/ffi_c/libffi/src/aarch64/sysv.S +0 -438
  156. data/ext/ffi_c/libffi/src/alpha/ffi.c +0 -521
  157. data/ext/ffi_c/libffi/src/alpha/ffitarget.h +0 -57
  158. data/ext/ffi_c/libffi/src/alpha/internal.h +0 -23
  159. data/ext/ffi_c/libffi/src/alpha/osf.S +0 -282
  160. data/ext/ffi_c/libffi/src/arc/arcompact.S +0 -135
  161. data/ext/ffi_c/libffi/src/arc/ffi.c +0 -266
  162. data/ext/ffi_c/libffi/src/arc/ffitarget.h +0 -53
  163. data/ext/ffi_c/libffi/src/arm/ffi.c +0 -808
  164. data/ext/ffi_c/libffi/src/arm/ffitarget.h +0 -82
  165. data/ext/ffi_c/libffi/src/arm/internal.h +0 -7
  166. data/ext/ffi_c/libffi/src/arm/sysv.S +0 -383
  167. data/ext/ffi_c/libffi/src/avr32/ffi.c +0 -423
  168. data/ext/ffi_c/libffi/src/avr32/ffitarget.h +0 -55
  169. data/ext/ffi_c/libffi/src/avr32/sysv.S +0 -208
  170. data/ext/ffi_c/libffi/src/bfin/ffi.c +0 -196
  171. data/ext/ffi_c/libffi/src/bfin/ffitarget.h +0 -43
  172. data/ext/ffi_c/libffi/src/bfin/sysv.S +0 -179
  173. data/ext/ffi_c/libffi/src/closures.c +0 -890
  174. data/ext/ffi_c/libffi/src/cris/ffi.c +0 -386
  175. data/ext/ffi_c/libffi/src/cris/ffitarget.h +0 -56
  176. data/ext/ffi_c/libffi/src/cris/sysv.S +0 -215
  177. data/ext/ffi_c/libffi/src/debug.c +0 -64
  178. data/ext/ffi_c/libffi/src/dlmalloc.c +0 -5166
  179. data/ext/ffi_c/libffi/src/frv/eabi.S +0 -128
  180. data/ext/ffi_c/libffi/src/frv/ffi.c +0 -292
  181. data/ext/ffi_c/libffi/src/frv/ffitarget.h +0 -62
  182. data/ext/ffi_c/libffi/src/ia64/ffi.c +0 -586
  183. data/ext/ffi_c/libffi/src/ia64/ffitarget.h +0 -55
  184. data/ext/ffi_c/libffi/src/ia64/ia64_flags.h +0 -40
  185. data/ext/ffi_c/libffi/src/ia64/unix.S +0 -560
  186. data/ext/ffi_c/libffi/src/java_raw_api.c +0 -374
  187. data/ext/ffi_c/libffi/src/m32r/ffi.c +0 -232
  188. data/ext/ffi_c/libffi/src/m32r/ffitarget.h +0 -53
  189. data/ext/ffi_c/libffi/src/m32r/sysv.S +0 -121
  190. data/ext/ffi_c/libffi/src/m68k/ffi.c +0 -362
  191. data/ext/ffi_c/libffi/src/m68k/ffitarget.h +0 -54
  192. data/ext/ffi_c/libffi/src/m68k/sysv.S +0 -357
  193. data/ext/ffi_c/libffi/src/m88k/ffi.c +0 -400
  194. data/ext/ffi_c/libffi/src/m88k/ffitarget.h +0 -49
  195. data/ext/ffi_c/libffi/src/m88k/obsd.S +0 -209
  196. data/ext/ffi_c/libffi/src/metag/ffi.c +0 -330
  197. data/ext/ffi_c/libffi/src/metag/ffitarget.h +0 -53
  198. data/ext/ffi_c/libffi/src/metag/sysv.S +0 -311
  199. data/ext/ffi_c/libffi/src/microblaze/ffi.c +0 -321
  200. data/ext/ffi_c/libffi/src/microblaze/ffitarget.h +0 -53
  201. data/ext/ffi_c/libffi/src/microblaze/sysv.S +0 -302
  202. data/ext/ffi_c/libffi/src/mips/ffi.c +0 -1105
  203. data/ext/ffi_c/libffi/src/mips/ffitarget.h +0 -249
  204. data/ext/ffi_c/libffi/src/mips/n32.S +0 -661
  205. data/ext/ffi_c/libffi/src/mips/o32.S +0 -502
  206. data/ext/ffi_c/libffi/src/moxie/eabi.S +0 -101
  207. data/ext/ffi_c/libffi/src/moxie/ffi.c +0 -272
  208. data/ext/ffi_c/libffi/src/moxie/ffitarget.h +0 -52
  209. data/ext/ffi_c/libffi/src/nios2/ffi.c +0 -304
  210. data/ext/ffi_c/libffi/src/nios2/ffitarget.h +0 -52
  211. data/ext/ffi_c/libffi/src/nios2/sysv.S +0 -136
  212. data/ext/ffi_c/libffi/src/or1k/ffi.c +0 -328
  213. data/ext/ffi_c/libffi/src/or1k/ffitarget.h +0 -58
  214. data/ext/ffi_c/libffi/src/or1k/sysv.S +0 -107
  215. data/ext/ffi_c/libffi/src/pa/ffi.c +0 -719
  216. data/ext/ffi_c/libffi/src/pa/ffitarget.h +0 -85
  217. data/ext/ffi_c/libffi/src/pa/hpux32.S +0 -368
  218. data/ext/ffi_c/libffi/src/pa/linux.S +0 -357
  219. data/ext/ffi_c/libffi/src/powerpc/aix.S +0 -328
  220. data/ext/ffi_c/libffi/src/powerpc/aix_closure.S +0 -447
  221. data/ext/ffi_c/libffi/src/powerpc/asm.h +0 -125
  222. data/ext/ffi_c/libffi/src/powerpc/darwin.S +0 -378
  223. data/ext/ffi_c/libffi/src/powerpc/darwin_closure.S +0 -571
  224. data/ext/ffi_c/libffi/src/powerpc/ffi.c +0 -173
  225. data/ext/ffi_c/libffi/src/powerpc/ffi_darwin.c +0 -1359
  226. data/ext/ffi_c/libffi/src/powerpc/ffi_linux64.c +0 -945
  227. data/ext/ffi_c/libffi/src/powerpc/ffi_powerpc.h +0 -94
  228. data/ext/ffi_c/libffi/src/powerpc/ffi_sysv.c +0 -923
  229. data/ext/ffi_c/libffi/src/powerpc/ffitarget.h +0 -195
  230. data/ext/ffi_c/libffi/src/powerpc/linux64.S +0 -228
  231. data/ext/ffi_c/libffi/src/powerpc/linux64_closure.S +0 -488
  232. data/ext/ffi_c/libffi/src/powerpc/ppc_closure.S +0 -397
  233. data/ext/ffi_c/libffi/src/powerpc/sysv.S +0 -175
  234. data/ext/ffi_c/libffi/src/prep_cif.c +0 -261
  235. data/ext/ffi_c/libffi/src/raw_api.c +0 -267
  236. data/ext/ffi_c/libffi/src/s390/ffi.c +0 -756
  237. data/ext/ffi_c/libffi/src/s390/ffitarget.h +0 -70
  238. data/ext/ffi_c/libffi/src/s390/internal.h +0 -11
  239. data/ext/ffi_c/libffi/src/s390/sysv.S +0 -325
  240. data/ext/ffi_c/libffi/src/sh/ffi.c +0 -717
  241. data/ext/ffi_c/libffi/src/sh/ffitarget.h +0 -54
  242. data/ext/ffi_c/libffi/src/sh/sysv.S +0 -850
  243. data/ext/ffi_c/libffi/src/sh64/ffi.c +0 -469
  244. data/ext/ffi_c/libffi/src/sh64/ffitarget.h +0 -58
  245. data/ext/ffi_c/libffi/src/sh64/sysv.S +0 -539
  246. data/ext/ffi_c/libffi/src/sparc/ffi.c +0 -468
  247. data/ext/ffi_c/libffi/src/sparc/ffi64.c +0 -608
  248. data/ext/ffi_c/libffi/src/sparc/ffitarget.h +0 -81
  249. data/ext/ffi_c/libffi/src/sparc/internal.h +0 -26
  250. data/ext/ffi_c/libffi/src/sparc/v8.S +0 -443
  251. data/ext/ffi_c/libffi/src/sparc/v9.S +0 -440
  252. data/ext/ffi_c/libffi/src/tile/ffi.c +0 -355
  253. data/ext/ffi_c/libffi/src/tile/ffitarget.h +0 -65
  254. data/ext/ffi_c/libffi/src/tile/tile.S +0 -360
  255. data/ext/ffi_c/libffi/src/types.c +0 -106
  256. data/ext/ffi_c/libffi/src/vax/elfbsd.S +0 -195
  257. data/ext/ffi_c/libffi/src/vax/ffi.c +0 -276
  258. data/ext/ffi_c/libffi/src/vax/ffitarget.h +0 -49
  259. data/ext/ffi_c/libffi/src/x86/asmnames.h +0 -30
  260. data/ext/ffi_c/libffi/src/x86/ffi.c +0 -733
  261. data/ext/ffi_c/libffi/src/x86/ffi64.c +0 -857
  262. data/ext/ffi_c/libffi/src/x86/ffitarget.h +0 -141
  263. data/ext/ffi_c/libffi/src/x86/ffiw64.c +0 -287
  264. data/ext/ffi_c/libffi/src/x86/internal.h +0 -29
  265. data/ext/ffi_c/libffi/src/x86/internal64.h +0 -22
  266. data/ext/ffi_c/libffi/src/x86/sysv.S +0 -1043
  267. data/ext/ffi_c/libffi/src/x86/unix64.S +0 -525
  268. data/ext/ffi_c/libffi/src/x86/win64.S +0 -232
  269. data/ext/ffi_c/libffi/src/x86/win64_intel.S +0 -237
  270. data/ext/ffi_c/libffi/src/xtensa/ffi.c +0 -298
  271. data/ext/ffi_c/libffi/src/xtensa/ffitarget.h +0 -53
  272. data/ext/ffi_c/libffi/src/xtensa/sysv.S +0 -253
  273. data/ext/ffi_c/libffi/stamp-h.in +0 -1
  274. data/ext/ffi_c/libffi/testsuite/Makefile.am +0 -85
  275. data/ext/ffi_c/libffi/testsuite/Makefile.in +0 -607
  276. data/ext/ffi_c/libffi/testsuite/config/default.exp +0 -1
  277. data/ext/ffi_c/libffi/testsuite/lib/libffi.exp +0 -445
  278. data/ext/ffi_c/libffi/testsuite/lib/target-libpath.exp +0 -283
  279. data/ext/ffi_c/libffi/testsuite/lib/wrapper.exp +0 -45
  280. data/ext/ffi_c/libffi/testsuite/libffi.call/align_mixed.c +0 -46
  281. data/ext/ffi_c/libffi/testsuite/libffi.call/call.exp +0 -30
  282. data/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn0.c +0 -89
  283. data/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn1.c +0 -81
  284. data/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn2.c +0 -81
  285. data/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn3.c +0 -82
  286. data/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn4.c +0 -89
  287. data/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn5.c +0 -92
  288. data/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn6.c +0 -90
  289. data/ext/ffi_c/libffi/testsuite/libffi.call/closure_loc_fn0.c +0 -95
  290. data/ext/ffi_c/libffi/testsuite/libffi.call/closure_simple.c +0 -55
  291. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_12byte.c +0 -94
  292. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_16byte.c +0 -95
  293. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_18byte.c +0 -96
  294. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_19byte.c +0 -102
  295. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_1_1byte.c +0 -89
  296. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_20byte.c +0 -91
  297. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_20byte1.c +0 -93
  298. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_24byte.c +0 -113
  299. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_2byte.c +0 -90
  300. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_3_1byte.c +0 -95
  301. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_3byte1.c +0 -90
  302. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_3byte2.c +0 -90
  303. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_4_1byte.c +0 -98
  304. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_4byte.c +0 -90
  305. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_5_1_byte.c +0 -109
  306. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_5byte.c +0 -98
  307. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_64byte.c +0 -124
  308. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_6_1_byte.c +0 -113
  309. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_6byte.c +0 -99
  310. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_7_1_byte.c +0 -117
  311. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_7byte.c +0 -97
  312. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_8byte.c +0 -88
  313. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_9byte1.c +0 -90
  314. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_9byte2.c +0 -91
  315. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_double.c +0 -93
  316. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_float.c +0 -91
  317. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_longdouble.c +0 -92
  318. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_longdouble_split.c +0 -132
  319. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_longdouble_split2.c +0 -115
  320. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_pointer.c +0 -95
  321. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_sint16.c +0 -91
  322. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_sint32.c +0 -91
  323. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_sint64.c +0 -92
  324. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_uint16.c +0 -91
  325. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_uint32.c +0 -91
  326. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_uint64.c +0 -93
  327. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_dbls_struct.c +0 -66
  328. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_double.c +0 -43
  329. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_double_va.c +0 -61
  330. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_float.c +0 -42
  331. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_longdouble.c +0 -105
  332. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_longdouble_va.c +0 -61
  333. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_many_mixed_args.c +0 -70
  334. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_many_mixed_float_double.c +0 -55
  335. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_schar.c +0 -74
  336. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_sshort.c +0 -74
  337. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_sshortchar.c +0 -86
  338. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_uchar.c +0 -91
  339. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_ushort.c +0 -74
  340. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_ushortchar.c +0 -86
  341. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_pointer.c +0 -74
  342. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_pointer_stack.c +0 -142
  343. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_schar.c +0 -44
  344. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_sint.c +0 -42
  345. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_sshort.c +0 -42
  346. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_struct_va1.c +0 -114
  347. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_uchar.c +0 -42
  348. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_uchar_va.c +0 -44
  349. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_uint.c +0 -43
  350. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_uint_va.c +0 -45
  351. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_ulong_va.c +0 -45
  352. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_ulonglong.c +0 -47
  353. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_ushort.c +0 -43
  354. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_ushort_va.c +0 -44
  355. data/ext/ffi_c/libffi/testsuite/libffi.call/err_bad_abi.c +0 -36
  356. data/ext/ffi_c/libffi/testsuite/libffi.call/err_bad_typedef.c +0 -26
  357. data/ext/ffi_c/libffi/testsuite/libffi.call/ffitest.h +0 -136
  358. data/ext/ffi_c/libffi/testsuite/libffi.call/float.c +0 -59
  359. data/ext/ffi_c/libffi/testsuite/libffi.call/float1.c +0 -60
  360. data/ext/ffi_c/libffi/testsuite/libffi.call/float2.c +0 -60
  361. data/ext/ffi_c/libffi/testsuite/libffi.call/float3.c +0 -74
  362. data/ext/ffi_c/libffi/testsuite/libffi.call/float4.c +0 -62
  363. data/ext/ffi_c/libffi/testsuite/libffi.call/float_va.c +0 -107
  364. data/ext/ffi_c/libffi/testsuite/libffi.call/huge_struct.c +0 -341
  365. data/ext/ffi_c/libffi/testsuite/libffi.call/many.c +0 -59
  366. data/ext/ffi_c/libffi/testsuite/libffi.call/many2.c +0 -57
  367. data/ext/ffi_c/libffi/testsuite/libffi.call/many_double.c +0 -70
  368. data/ext/ffi_c/libffi/testsuite/libffi.call/many_mixed.c +0 -78
  369. data/ext/ffi_c/libffi/testsuite/libffi.call/negint.c +0 -52
  370. data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct.c +0 -152
  371. data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct1.c +0 -161
  372. data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct10.c +0 -133
  373. data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct11.c +0 -121
  374. data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct2.c +0 -110
  375. data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct3.c +0 -111
  376. data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct4.c +0 -111
  377. data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct5.c +0 -112
  378. data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct6.c +0 -131
  379. data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct7.c +0 -111
  380. data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct8.c +0 -131
  381. data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct9.c +0 -131
  382. data/ext/ffi_c/libffi/testsuite/libffi.call/offsets.c +0 -46
  383. data/ext/ffi_c/libffi/testsuite/libffi.call/pr1172638.c +0 -127
  384. data/ext/ffi_c/libffi/testsuite/libffi.call/problem1.c +0 -90
  385. data/ext/ffi_c/libffi/testsuite/libffi.call/promotion.c +0 -59
  386. data/ext/ffi_c/libffi/testsuite/libffi.call/pyobjc-tc.c +0 -114
  387. data/ext/ffi_c/libffi/testsuite/libffi.call/return_dbl.c +0 -36
  388. data/ext/ffi_c/libffi/testsuite/libffi.call/return_dbl1.c +0 -43
  389. data/ext/ffi_c/libffi/testsuite/libffi.call/return_dbl2.c +0 -42
  390. data/ext/ffi_c/libffi/testsuite/libffi.call/return_fl.c +0 -35
  391. data/ext/ffi_c/libffi/testsuite/libffi.call/return_fl1.c +0 -36
  392. data/ext/ffi_c/libffi/testsuite/libffi.call/return_fl2.c +0 -49
  393. data/ext/ffi_c/libffi/testsuite/libffi.call/return_fl3.c +0 -42
  394. data/ext/ffi_c/libffi/testsuite/libffi.call/return_ldl.c +0 -34
  395. data/ext/ffi_c/libffi/testsuite/libffi.call/return_ll.c +0 -41
  396. data/ext/ffi_c/libffi/testsuite/libffi.call/return_ll1.c +0 -43
  397. data/ext/ffi_c/libffi/testsuite/libffi.call/return_sc.c +0 -36
  398. data/ext/ffi_c/libffi/testsuite/libffi.call/return_sl.c +0 -38
  399. data/ext/ffi_c/libffi/testsuite/libffi.call/return_uc.c +0 -38
  400. data/ext/ffi_c/libffi/testsuite/libffi.call/return_ul.c +0 -38
  401. data/ext/ffi_c/libffi/testsuite/libffi.call/stret_large.c +0 -145
  402. data/ext/ffi_c/libffi/testsuite/libffi.call/stret_large2.c +0 -148
  403. data/ext/ffi_c/libffi/testsuite/libffi.call/stret_medium.c +0 -124
  404. data/ext/ffi_c/libffi/testsuite/libffi.call/stret_medium2.c +0 -125
  405. data/ext/ffi_c/libffi/testsuite/libffi.call/strlen.c +0 -44
  406. data/ext/ffi_c/libffi/testsuite/libffi.call/strlen2.c +0 -49
  407. data/ext/ffi_c/libffi/testsuite/libffi.call/strlen3.c +0 -49
  408. data/ext/ffi_c/libffi/testsuite/libffi.call/strlen4.c +0 -55
  409. data/ext/ffi_c/libffi/testsuite/libffi.call/struct1.c +0 -67
  410. data/ext/ffi_c/libffi/testsuite/libffi.call/struct2.c +0 -67
  411. data/ext/ffi_c/libffi/testsuite/libffi.call/struct3.c +0 -60
  412. data/ext/ffi_c/libffi/testsuite/libffi.call/struct4.c +0 -64
  413. data/ext/ffi_c/libffi/testsuite/libffi.call/struct5.c +0 -66
  414. data/ext/ffi_c/libffi/testsuite/libffi.call/struct6.c +0 -64
  415. data/ext/ffi_c/libffi/testsuite/libffi.call/struct7.c +0 -74
  416. data/ext/ffi_c/libffi/testsuite/libffi.call/struct8.c +0 -81
  417. data/ext/ffi_c/libffi/testsuite/libffi.call/struct9.c +0 -68
  418. data/ext/ffi_c/libffi/testsuite/libffi.call/testclosure.c +0 -70
  419. data/ext/ffi_c/libffi/testsuite/libffi.call/uninitialized.c +0 -61
  420. data/ext/ffi_c/libffi/testsuite/libffi.call/unwindtest.cc +0 -117
  421. data/ext/ffi_c/libffi/testsuite/libffi.call/unwindtest_ffi_call.cc +0 -54
  422. data/ext/ffi_c/libffi/testsuite/libffi.call/va_1.c +0 -196
  423. data/ext/ffi_c/libffi/testsuite/libffi.call/va_struct1.c +0 -121
  424. data/ext/ffi_c/libffi/testsuite/libffi.call/va_struct2.c +0 -123
  425. data/ext/ffi_c/libffi/testsuite/libffi.call/va_struct3.c +0 -125
  426. data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_align_complex.inc +0 -91
  427. data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_align_complex_double.c +0 -10
  428. data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_align_complex_float.c +0 -10
  429. data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_align_complex_longdouble.c +0 -10
  430. data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex.inc +0 -42
  431. data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_double.c +0 -10
  432. data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_float.c +0 -10
  433. data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_longdouble.c +0 -10
  434. data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_struct.inc +0 -71
  435. data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_struct_double.c +0 -10
  436. data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_struct_float.c +0 -10
  437. data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_struct_longdouble.c +0 -10
  438. data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_va.inc +0 -80
  439. data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_va_double.c +0 -10
  440. data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_va_float.c +0 -16
  441. data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_va_longdouble.c +0 -10
  442. data/ext/ffi_c/libffi/testsuite/libffi.complex/complex.exp +0 -36
  443. data/ext/ffi_c/libffi/testsuite/libffi.complex/complex.inc +0 -51
  444. data/ext/ffi_c/libffi/testsuite/libffi.complex/complex_defs_double.inc +0 -7
  445. data/ext/ffi_c/libffi/testsuite/libffi.complex/complex_defs_float.inc +0 -7
  446. data/ext/ffi_c/libffi/testsuite/libffi.complex/complex_defs_longdouble.inc +0 -7
  447. data/ext/ffi_c/libffi/testsuite/libffi.complex/complex_double.c +0 -10
  448. data/ext/ffi_c/libffi/testsuite/libffi.complex/complex_float.c +0 -10
  449. data/ext/ffi_c/libffi/testsuite/libffi.complex/complex_int.c +0 -86
  450. data/ext/ffi_c/libffi/testsuite/libffi.complex/complex_longdouble.c +0 -10
  451. data/ext/ffi_c/libffi/testsuite/libffi.complex/ffitest.h +0 -1
  452. data/ext/ffi_c/libffi/testsuite/libffi.complex/many_complex.inc +0 -78
  453. data/ext/ffi_c/libffi/testsuite/libffi.complex/many_complex_double.c +0 -10
  454. data/ext/ffi_c/libffi/testsuite/libffi.complex/many_complex_float.c +0 -10
  455. data/ext/ffi_c/libffi/testsuite/libffi.complex/many_complex_longdouble.c +0 -10
  456. data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex.inc +0 -37
  457. data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex1.inc +0 -41
  458. data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex1_double.c +0 -10
  459. data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex1_float.c +0 -10
  460. data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex1_longdouble.c +0 -10
  461. data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex2.inc +0 -44
  462. data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex2_double.c +0 -10
  463. data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex2_float.c +0 -10
  464. data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex2_longdouble.c +0 -10
  465. data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex_double.c +0 -10
  466. data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex_float.c +0 -10
  467. data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex_longdouble.c +0 -10
  468. data/ext/ffi_c/libffi/testsuite/libffi.go/aa-direct.c +0 -34
  469. data/ext/ffi_c/libffi/testsuite/libffi.go/closure1.c +0 -28
  470. data/ext/ffi_c/libffi/testsuite/libffi.go/ffitest.h +0 -1
  471. data/ext/ffi_c/libffi/testsuite/libffi.go/go.exp +0 -36
  472. data/ext/ffi_c/libffi/testsuite/libffi.go/static-chain.h +0 -19
  473. data/ext/ffi_c/rbffi.h +0 -57
  474. data/ext/ffi_c/rbffi_endian.h +0 -59
  475. data/ext/ffi_c/win32/stdbool.h +0 -8
  476. data/ext/ffi_c/win32/stdint.h +0 -201
  477. data/gen/Rakefile +0 -30
  478. data/libtest/Benchmark.c +0 -52
  479. data/libtest/BoolTest.c +0 -34
  480. data/libtest/BufferTest.c +0 -31
  481. data/libtest/ClosureTest.c +0 -205
  482. data/libtest/EnumTest.c +0 -51
  483. data/libtest/FunctionTest.c +0 -70
  484. data/libtest/GNUmakefile +0 -149
  485. data/libtest/GlobalVariable.c +0 -62
  486. data/libtest/LastErrorTest.c +0 -21
  487. data/libtest/NumberTest.c +0 -132
  488. data/libtest/PointerTest.c +0 -63
  489. data/libtest/ReferenceTest.c +0 -23
  490. data/libtest/StringTest.c +0 -34
  491. data/libtest/StructTest.c +0 -243
  492. data/libtest/UnionTest.c +0 -43
  493. data/libtest/VariadicTest.c +0 -99
  494. data/spec/ffi/async_callback_spec.rb +0 -35
  495. data/spec/ffi/bitmask_spec.rb +0 -575
  496. data/spec/ffi/bool_spec.rb +0 -32
  497. data/spec/ffi/buffer_spec.rb +0 -279
  498. data/spec/ffi/callback_spec.rb +0 -773
  499. data/spec/ffi/custom_param_type.rb +0 -37
  500. data/spec/ffi/custom_type_spec.rb +0 -74
  501. data/spec/ffi/dup_spec.rb +0 -52
  502. data/spec/ffi/embed-test/ext/Makefile +0 -242
  503. data/spec/ffi/enum_spec.rb +0 -423
  504. data/spec/ffi/errno_spec.rb +0 -20
  505. data/spec/ffi/ffi_spec.rb +0 -28
  506. data/spec/ffi/fixtures/Benchmark.c +0 -52
  507. data/spec/ffi/fixtures/BitmaskTest.c +0 -51
  508. data/spec/ffi/fixtures/BoolTest.c +0 -34
  509. data/spec/ffi/fixtures/BufferTest.c +0 -31
  510. data/spec/ffi/fixtures/ClosureTest.c +0 -205
  511. data/spec/ffi/fixtures/EnumTest.c +0 -51
  512. data/spec/ffi/fixtures/FunctionTest.c +0 -142
  513. data/spec/ffi/fixtures/GNUmakefile +0 -149
  514. data/spec/ffi/fixtures/GlobalVariable.c +0 -62
  515. data/spec/ffi/fixtures/LastErrorTest.c +0 -21
  516. data/spec/ffi/fixtures/NumberTest.c +0 -132
  517. data/spec/ffi/fixtures/PipeHelper.h +0 -21
  518. data/spec/ffi/fixtures/PipeHelperPosix.c +0 -41
  519. data/spec/ffi/fixtures/PipeHelperWindows.c +0 -72
  520. data/spec/ffi/fixtures/PointerTest.c +0 -63
  521. data/spec/ffi/fixtures/ReferenceTest.c +0 -23
  522. data/spec/ffi/fixtures/StringTest.c +0 -34
  523. data/spec/ffi/fixtures/StructTest.c +0 -243
  524. data/spec/ffi/fixtures/UnionTest.c +0 -43
  525. data/spec/ffi/fixtures/VariadicTest.c +0 -99
  526. data/spec/ffi/fixtures/classes.rb +0 -438
  527. data/spec/ffi/function_spec.rb +0 -97
  528. data/spec/ffi/io_spec.rb +0 -16
  529. data/spec/ffi/library_spec.rb +0 -286
  530. data/spec/ffi/long_double.rb +0 -30
  531. data/spec/ffi/managed_struct_spec.rb +0 -68
  532. data/spec/ffi/memorypointer_spec.rb +0 -78
  533. data/spec/ffi/number_spec.rb +0 -247
  534. data/spec/ffi/platform_spec.rb +0 -114
  535. data/spec/ffi/pointer_spec.rb +0 -285
  536. data/spec/ffi/rbx/attach_function_spec.rb +0 -34
  537. data/spec/ffi/rbx/memory_pointer_spec.rb +0 -198
  538. data/spec/ffi/rbx/spec_helper.rb +0 -6
  539. data/spec/ffi/rbx/struct_spec.rb +0 -18
  540. data/spec/ffi/spec_helper.rb +0 -93
  541. data/spec/ffi/string_spec.rb +0 -118
  542. data/spec/ffi/strptr_spec.rb +0 -50
  543. data/spec/ffi/struct_by_ref_spec.rb +0 -43
  544. data/spec/ffi/struct_callback_spec.rb +0 -69
  545. data/spec/ffi/struct_initialize_spec.rb +0 -35
  546. data/spec/ffi/struct_packed_spec.rb +0 -50
  547. data/spec/ffi/struct_spec.rb +0 -882
  548. data/spec/ffi/typedef_spec.rb +0 -91
  549. data/spec/ffi/union_spec.rb +0 -67
  550. data/spec/ffi/variadic_spec.rb +0 -132
  551. data/spec/spec.opts +0 -4
@@ -1,890 +0,0 @@
1
- /* -----------------------------------------------------------------------
2
- closures.c - Copyright (c) 2007, 2009, 2010 Red Hat, Inc.
3
- Copyright (C) 2007, 2009, 2010 Free Software Foundation, Inc
4
- Copyright (c) 2011 Plausible Labs Cooperative, Inc.
5
-
6
- Code to allocate and deallocate memory for closures.
7
-
8
- Permission is hereby granted, free of charge, to any person obtaining
9
- a copy of this software and associated documentation files (the
10
- ``Software''), to deal in the Software without restriction, including
11
- without limitation the rights to use, copy, modify, merge, publish,
12
- distribute, sublicense, and/or sell copies of the Software, and to
13
- permit persons to whom the Software is furnished to do so, subject to
14
- the following conditions:
15
-
16
- The above copyright notice and this permission notice shall be included
17
- in all copies or substantial portions of the Software.
18
-
19
- THE SOFTWARE IS PROVIDED ``AS IS'', WITHOUT WARRANTY OF ANY KIND,
20
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
21
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
22
- NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
23
- HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
24
- WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
26
- DEALINGS IN THE SOFTWARE.
27
- ----------------------------------------------------------------------- */
28
-
29
- #if defined __linux__ && !defined _GNU_SOURCE
30
- #define _GNU_SOURCE 1
31
- #endif
32
-
33
- #include <fficonfig.h>
34
- #include <ffi.h>
35
- #include <ffi_common.h>
36
-
37
- #if !FFI_MMAP_EXEC_WRIT && !FFI_EXEC_TRAMPOLINE_TABLE
38
- # if __linux__ && !defined(__ANDROID__)
39
- /* This macro indicates it may be forbidden to map anonymous memory
40
- with both write and execute permission. Code compiled when this
41
- option is defined will attempt to map such pages once, but if it
42
- fails, it falls back to creating a temporary file in a writable and
43
- executable filesystem and mapping pages from it into separate
44
- locations in the virtual memory space, one location writable and
45
- another executable. */
46
- # define FFI_MMAP_EXEC_WRIT 1
47
- # define HAVE_MNTENT 1
48
- # endif
49
- # if defined(X86_WIN32) || defined(X86_WIN64) || defined(__OS2__)
50
- /* Windows systems may have Data Execution Protection (DEP) enabled,
51
- which requires the use of VirtualMalloc/VirtualFree to alloc/free
52
- executable memory. */
53
- # define FFI_MMAP_EXEC_WRIT 1
54
- # endif
55
- #endif
56
-
57
- #if FFI_MMAP_EXEC_WRIT && !defined FFI_MMAP_EXEC_SELINUX
58
- # ifdef __linux__
59
- /* When defined to 1 check for SELinux and if SELinux is active,
60
- don't attempt PROT_EXEC|PROT_WRITE mapping at all, as that
61
- might cause audit messages. */
62
- # define FFI_MMAP_EXEC_SELINUX 1
63
- # endif
64
- #endif
65
-
66
- #if FFI_CLOSURES
67
-
68
- #if FFI_EXEC_TRAMPOLINE_TABLE
69
-
70
- #ifdef __MACH__
71
-
72
- #include <mach/mach.h>
73
- #include <pthread.h>
74
- #include <stdio.h>
75
- #include <stdlib.h>
76
-
77
- extern void *ffi_closure_trampoline_table_page;
78
-
79
- typedef struct ffi_trampoline_table ffi_trampoline_table;
80
- typedef struct ffi_trampoline_table_entry ffi_trampoline_table_entry;
81
-
82
- struct ffi_trampoline_table
83
- {
84
- /* contiguous writable and executable pages */
85
- vm_address_t config_page;
86
- vm_address_t trampoline_page;
87
-
88
- /* free list tracking */
89
- uint16_t free_count;
90
- ffi_trampoline_table_entry *free_list;
91
- ffi_trampoline_table_entry *free_list_pool;
92
-
93
- ffi_trampoline_table *prev;
94
- ffi_trampoline_table *next;
95
- };
96
-
97
- struct ffi_trampoline_table_entry
98
- {
99
- void *(*trampoline) ();
100
- ffi_trampoline_table_entry *next;
101
- };
102
-
103
- /* Total number of trampolines that fit in one trampoline table */
104
- #define FFI_TRAMPOLINE_COUNT (PAGE_MAX_SIZE / FFI_TRAMPOLINE_SIZE)
105
-
106
- static pthread_mutex_t ffi_trampoline_lock = PTHREAD_MUTEX_INITIALIZER;
107
- static ffi_trampoline_table *ffi_trampoline_tables = NULL;
108
-
109
- static ffi_trampoline_table *
110
- ffi_trampoline_table_alloc ()
111
- {
112
- ffi_trampoline_table *table = NULL;
113
-
114
- /* Loop until we can allocate two contiguous pages */
115
- while (table == NULL)
116
- {
117
- vm_address_t config_page = 0x0;
118
- kern_return_t kt;
119
-
120
- /* Try to allocate two pages */
121
- kt =
122
- vm_allocate (mach_task_self (), &config_page, PAGE_MAX_SIZE * 2,
123
- VM_FLAGS_ANYWHERE);
124
- if (kt != KERN_SUCCESS)
125
- {
126
- fprintf (stderr, "vm_allocate() failure: %d at %s:%d\n", kt,
127
- __FILE__, __LINE__);
128
- break;
129
- }
130
-
131
- /* Now drop the second half of the allocation to make room for the trampoline table */
132
- vm_address_t trampoline_page = config_page + PAGE_MAX_SIZE;
133
- kt = vm_deallocate (mach_task_self (), trampoline_page, PAGE_MAX_SIZE);
134
- if (kt != KERN_SUCCESS)
135
- {
136
- fprintf (stderr, "vm_deallocate() failure: %d at %s:%d\n", kt,
137
- __FILE__, __LINE__);
138
- break;
139
- }
140
-
141
- /* Remap the trampoline table to directly follow the config page */
142
- vm_prot_t cur_prot;
143
- vm_prot_t max_prot;
144
-
145
- vm_address_t trampoline_page_template = (vm_address_t)&ffi_closure_trampoline_table_page;
146
- #ifdef __arm__
147
- /* ffi_closure_trampoline_table_page can be thumb-biased on some ARM archs */
148
- trampoline_page_template &= ~1UL;
149
- #endif
150
-
151
- kt =
152
- vm_remap (mach_task_self (), &trampoline_page, PAGE_MAX_SIZE, 0x0, FALSE,
153
- mach_task_self (), trampoline_page_template, FALSE,
154
- &cur_prot, &max_prot, VM_INHERIT_SHARE);
155
-
156
- /* If we lost access to the destination trampoline page, drop our config allocation mapping and retry */
157
- if (kt != KERN_SUCCESS)
158
- {
159
- /* Log unexpected failures */
160
- if (kt != KERN_NO_SPACE)
161
- {
162
- fprintf (stderr, "vm_remap() failure: %d at %s:%d\n", kt,
163
- __FILE__, __LINE__);
164
- }
165
-
166
- vm_deallocate (mach_task_self (), config_page, PAGE_SIZE);
167
- continue;
168
- }
169
-
170
- /* We have valid trampoline and config pages */
171
- table = calloc (1, sizeof (ffi_trampoline_table));
172
- table->free_count = FFI_TRAMPOLINE_COUNT;
173
- table->config_page = config_page;
174
- table->trampoline_page = trampoline_page;
175
-
176
- /* Create and initialize the free list */
177
- table->free_list_pool =
178
- calloc (FFI_TRAMPOLINE_COUNT, sizeof (ffi_trampoline_table_entry));
179
-
180
- uint16_t i;
181
- for (i = 0; i < table->free_count; i++)
182
- {
183
- ffi_trampoline_table_entry *entry = &table->free_list_pool[i];
184
- entry->trampoline =
185
- (void *) (table->trampoline_page + (i * FFI_TRAMPOLINE_SIZE));
186
-
187
- if (i < table->free_count - 1)
188
- entry->next = &table->free_list_pool[i + 1];
189
- }
190
-
191
- table->free_list = table->free_list_pool;
192
- }
193
-
194
- return table;
195
- }
196
-
197
- void *
198
- ffi_closure_alloc (size_t size, void **code)
199
- {
200
- /* Create the closure */
201
- ffi_closure *closure = malloc (size);
202
- if (closure == NULL)
203
- return NULL;
204
-
205
- pthread_mutex_lock (&ffi_trampoline_lock);
206
-
207
- /* Check for an active trampoline table with available entries. */
208
- ffi_trampoline_table *table = ffi_trampoline_tables;
209
- if (table == NULL || table->free_list == NULL)
210
- {
211
- table = ffi_trampoline_table_alloc ();
212
- if (table == NULL)
213
- {
214
- pthread_mutex_unlock (&ffi_trampoline_lock);
215
- free (closure);
216
- return NULL;
217
- }
218
-
219
- /* Insert the new table at the top of the list */
220
- table->next = ffi_trampoline_tables;
221
- if (table->next != NULL)
222
- table->next->prev = table;
223
-
224
- ffi_trampoline_tables = table;
225
- }
226
-
227
- /* Claim the free entry */
228
- ffi_trampoline_table_entry *entry = ffi_trampoline_tables->free_list;
229
- ffi_trampoline_tables->free_list = entry->next;
230
- ffi_trampoline_tables->free_count--;
231
- entry->next = NULL;
232
-
233
- pthread_mutex_unlock (&ffi_trampoline_lock);
234
-
235
- /* Initialize the return values */
236
- *code = entry->trampoline;
237
- closure->trampoline_table = table;
238
- closure->trampoline_table_entry = entry;
239
-
240
- return closure;
241
- }
242
-
243
- void
244
- ffi_closure_free (void *ptr)
245
- {
246
- ffi_closure *closure = ptr;
247
-
248
- pthread_mutex_lock (&ffi_trampoline_lock);
249
-
250
- /* Fetch the table and entry references */
251
- ffi_trampoline_table *table = closure->trampoline_table;
252
- ffi_trampoline_table_entry *entry = closure->trampoline_table_entry;
253
-
254
- /* Return the entry to the free list */
255
- entry->next = table->free_list;
256
- table->free_list = entry;
257
- table->free_count++;
258
-
259
- /* If all trampolines within this table are free, and at least one other table exists, deallocate
260
- * the table */
261
- if (table->free_count == FFI_TRAMPOLINE_COUNT
262
- && ffi_trampoline_tables != table)
263
- {
264
- /* Remove from the list */
265
- if (table->prev != NULL)
266
- table->prev->next = table->next;
267
-
268
- if (table->next != NULL)
269
- table->next->prev = table->prev;
270
-
271
- /* Deallocate pages */
272
- kern_return_t kt;
273
- kt = vm_deallocate (mach_task_self (), table->config_page, PAGE_SIZE);
274
- if (kt != KERN_SUCCESS)
275
- fprintf (stderr, "vm_deallocate() failure: %d at %s:%d\n", kt,
276
- __FILE__, __LINE__);
277
-
278
- kt =
279
- vm_deallocate (mach_task_self (), table->trampoline_page, PAGE_SIZE);
280
- if (kt != KERN_SUCCESS)
281
- fprintf (stderr, "vm_deallocate() failure: %d at %s:%d\n", kt,
282
- __FILE__, __LINE__);
283
-
284
- /* Deallocate free list */
285
- free (table->free_list_pool);
286
- free (table);
287
- }
288
- else if (ffi_trampoline_tables != table)
289
- {
290
- /* Otherwise, bump this table to the top of the list */
291
- table->prev = NULL;
292
- table->next = ffi_trampoline_tables;
293
- if (ffi_trampoline_tables != NULL)
294
- ffi_trampoline_tables->prev = table;
295
-
296
- ffi_trampoline_tables = table;
297
- }
298
-
299
- pthread_mutex_unlock (&ffi_trampoline_lock);
300
-
301
- /* Free the closure */
302
- free (closure);
303
- }
304
-
305
- #endif
306
-
307
- // Per-target implementation; It's unclear what can reasonable be shared between two OS/architecture implementations.
308
-
309
- #elif FFI_MMAP_EXEC_WRIT /* !FFI_EXEC_TRAMPOLINE_TABLE */
310
-
311
- #define USE_LOCKS 1
312
- #define USE_DL_PREFIX 1
313
- #ifdef __GNUC__
314
- #ifndef USE_BUILTIN_FFS
315
- #define USE_BUILTIN_FFS 1
316
- #endif
317
- #endif
318
-
319
- /* We need to use mmap, not sbrk. */
320
- #define HAVE_MORECORE 0
321
-
322
- /* We could, in theory, support mremap, but it wouldn't buy us anything. */
323
- #define HAVE_MREMAP 0
324
-
325
- /* We have no use for this, so save some code and data. */
326
- #define NO_MALLINFO 1
327
-
328
- /* We need all allocations to be in regular segments, otherwise we
329
- lose track of the corresponding code address. */
330
- #define DEFAULT_MMAP_THRESHOLD MAX_SIZE_T
331
-
332
- /* Don't allocate more than a page unless needed. */
333
- #define DEFAULT_GRANULARITY ((size_t)malloc_getpagesize)
334
-
335
- #include <sys/types.h>
336
- #include <sys/stat.h>
337
- #include <fcntl.h>
338
- #include <errno.h>
339
- #ifndef _MSC_VER
340
- #include <unistd.h>
341
- #endif
342
- #include <string.h>
343
- #include <stdio.h>
344
- #if !defined(X86_WIN32) && !defined(X86_WIN64)
345
- #ifdef HAVE_MNTENT
346
- #include <mntent.h>
347
- #endif /* HAVE_MNTENT */
348
- #include <sys/param.h>
349
- #include <pthread.h>
350
-
351
- /* We don't want sys/mman.h to be included after we redefine mmap and
352
- dlmunmap. */
353
- #include <sys/mman.h>
354
- #define LACKS_SYS_MMAN_H 1
355
-
356
- #if FFI_MMAP_EXEC_SELINUX
357
- #include <sys/statfs.h>
358
- #include <stdlib.h>
359
-
360
- static int selinux_enabled = -1;
361
-
362
- static int
363
- selinux_enabled_check (void)
364
- {
365
- struct statfs sfs;
366
- FILE *f;
367
- char *buf = NULL;
368
- size_t len = 0;
369
-
370
- if (statfs ("/selinux", &sfs) >= 0
371
- && (unsigned int) sfs.f_type == 0xf97cff8cU)
372
- return 1;
373
- f = fopen ("/proc/mounts", "r");
374
- if (f == NULL)
375
- return 0;
376
- while (getline (&buf, &len, f) >= 0)
377
- {
378
- char *p = strchr (buf, ' ');
379
- if (p == NULL)
380
- break;
381
- p = strchr (p + 1, ' ');
382
- if (p == NULL)
383
- break;
384
- if (strncmp (p + 1, "selinuxfs ", 10) == 0)
385
- {
386
- free (buf);
387
- fclose (f);
388
- return 1;
389
- }
390
- }
391
- free (buf);
392
- fclose (f);
393
- return 0;
394
- }
395
-
396
- #define is_selinux_enabled() (selinux_enabled >= 0 ? selinux_enabled \
397
- : (selinux_enabled = selinux_enabled_check ()))
398
-
399
- #else
400
-
401
- #define is_selinux_enabled() 0
402
-
403
- #endif /* !FFI_MMAP_EXEC_SELINUX */
404
-
405
- /* On PaX enable kernels that have MPROTECT enable we can't use PROT_EXEC. */
406
- #ifdef FFI_MMAP_EXEC_EMUTRAMP_PAX
407
- #include <stdlib.h>
408
-
409
- static int emutramp_enabled = -1;
410
-
411
- static int
412
- emutramp_enabled_check (void)
413
- {
414
- char *buf = NULL;
415
- size_t len = 0;
416
- FILE *f;
417
- int ret;
418
- f = fopen ("/proc/self/status", "r");
419
- if (f == NULL)
420
- return 0;
421
- ret = 0;
422
-
423
- while (getline (&buf, &len, f) != -1)
424
- if (!strncmp (buf, "PaX:", 4))
425
- {
426
- char emutramp;
427
- if (sscanf (buf, "%*s %*c%c", &emutramp) == 1)
428
- ret = (emutramp == 'E');
429
- break;
430
- }
431
- free (buf);
432
- fclose (f);
433
- return ret;
434
- }
435
-
436
- #define is_emutramp_enabled() (emutramp_enabled >= 0 ? emutramp_enabled \
437
- : (emutramp_enabled = emutramp_enabled_check ()))
438
- #endif /* FFI_MMAP_EXEC_EMUTRAMP_PAX */
439
-
440
- #elif defined (__CYGWIN__) || defined(__INTERIX)
441
-
442
- #include <sys/mman.h>
443
-
444
- /* Cygwin is Linux-like, but not quite that Linux-like. */
445
- #define is_selinux_enabled() 0
446
-
447
- #endif /* !defined(X86_WIN32) && !defined(X86_WIN64) */
448
-
449
- #ifndef FFI_MMAP_EXEC_EMUTRAMP_PAX
450
- #define is_emutramp_enabled() 0
451
- #endif /* FFI_MMAP_EXEC_EMUTRAMP_PAX */
452
-
453
- /* Declare all functions defined in dlmalloc.c as static. */
454
- static void *dlmalloc(size_t);
455
- static void dlfree(void*);
456
- static void *dlcalloc(size_t, size_t) MAYBE_UNUSED;
457
- static void *dlrealloc(void *, size_t) MAYBE_UNUSED;
458
- static void *dlmemalign(size_t, size_t) MAYBE_UNUSED;
459
- static void *dlvalloc(size_t) MAYBE_UNUSED;
460
- static int dlmallopt(int, int) MAYBE_UNUSED;
461
- static size_t dlmalloc_footprint(void) MAYBE_UNUSED;
462
- static size_t dlmalloc_max_footprint(void) MAYBE_UNUSED;
463
- static void** dlindependent_calloc(size_t, size_t, void**) MAYBE_UNUSED;
464
- static void** dlindependent_comalloc(size_t, size_t*, void**) MAYBE_UNUSED;
465
- static void *dlpvalloc(size_t) MAYBE_UNUSED;
466
- static int dlmalloc_trim(size_t) MAYBE_UNUSED;
467
- static size_t dlmalloc_usable_size(void*) MAYBE_UNUSED;
468
- static void dlmalloc_stats(void) MAYBE_UNUSED;
469
-
470
- #if !(defined(X86_WIN32) || defined(X86_WIN64) || defined(__OS2__)) || defined (__CYGWIN__) || defined(__INTERIX)
471
- /* Use these for mmap and munmap within dlmalloc.c. */
472
- static void *dlmmap(void *, size_t, int, int, int, off_t);
473
- static int dlmunmap(void *, size_t);
474
- #endif /* !(defined(X86_WIN32) || defined(X86_WIN64) || defined(__OS2__)) || defined (__CYGWIN__) || defined(__INTERIX) */
475
-
476
- #define mmap dlmmap
477
- #define munmap dlmunmap
478
-
479
- #include "dlmalloc.c"
480
-
481
- #undef mmap
482
- #undef munmap
483
-
484
- #if !(defined(X86_WIN32) || defined(X86_WIN64) || defined(__OS2__)) || defined (__CYGWIN__) || defined(__INTERIX)
485
-
486
- /* A mutex used to synchronize access to *exec* variables in this file. */
487
- static pthread_mutex_t open_temp_exec_file_mutex = PTHREAD_MUTEX_INITIALIZER;
488
-
489
- /* A file descriptor of a temporary file from which we'll map
490
- executable pages. */
491
- static int execfd = -1;
492
-
493
- /* The amount of space already allocated from the temporary file. */
494
- static size_t execsize = 0;
495
-
496
- /* Open a temporary file name, and immediately unlink it. */
497
- static int
498
- open_temp_exec_file_name (char *name, int flags)
499
- {
500
- int fd;
501
-
502
- #ifdef HAVE_MKOSTEMP
503
- fd = mkostemp (name, flags);
504
- #else
505
- fd = mkstemp (name);
506
- #endif
507
-
508
- if (fd != -1)
509
- unlink (name);
510
-
511
- return fd;
512
- }
513
-
514
- /* Open a temporary file in the named directory. */
515
- static int
516
- open_temp_exec_file_dir (const char *dir)
517
- {
518
- static const char suffix[] = "/ffiXXXXXX";
519
- int lendir, flags;
520
- char *tempname;
521
- #ifdef O_TMPFILE
522
- int fd;
523
- #endif
524
-
525
- #ifdef O_CLOEXEC
526
- flags = O_CLOEXEC;
527
- #else
528
- flags = 0;
529
- #endif
530
-
531
- #ifdef O_TMPFILE
532
- fd = open (dir, flags | O_RDWR | O_EXCL | O_TMPFILE, 0700);
533
- /* If the running system does not support the O_TMPFILE flag then retry without it. */
534
- if (fd != -1 || (errno != EINVAL && errno != EISDIR && errno != EOPNOTSUPP)) {
535
- return fd;
536
- } else {
537
- errno = 0;
538
- }
539
- #endif
540
-
541
- lendir = strlen (dir);
542
- tempname = __builtin_alloca (lendir + sizeof (suffix));
543
-
544
- if (!tempname)
545
- return -1;
546
-
547
- memcpy (tempname, dir, lendir);
548
- memcpy (tempname + lendir, suffix, sizeof (suffix));
549
-
550
- return open_temp_exec_file_name (tempname, flags);
551
- }
552
-
553
- /* Open a temporary file in the directory in the named environment
554
- variable. */
555
- static int
556
- open_temp_exec_file_env (const char *envvar)
557
- {
558
- const char *value = getenv (envvar);
559
-
560
- if (!value)
561
- return -1;
562
-
563
- return open_temp_exec_file_dir (value);
564
- }
565
-
566
- #ifdef HAVE_MNTENT
567
- /* Open a temporary file in an executable and writable mount point
568
- listed in the mounts file. Subsequent calls with the same mounts
569
- keep searching for mount points in the same file. Providing NULL
570
- as the mounts file closes the file. */
571
- static int
572
- open_temp_exec_file_mnt (const char *mounts)
573
- {
574
- static const char *last_mounts;
575
- static FILE *last_mntent;
576
-
577
- if (mounts != last_mounts)
578
- {
579
- if (last_mntent)
580
- endmntent (last_mntent);
581
-
582
- last_mounts = mounts;
583
-
584
- if (mounts)
585
- last_mntent = setmntent (mounts, "r");
586
- else
587
- last_mntent = NULL;
588
- }
589
-
590
- if (!last_mntent)
591
- return -1;
592
-
593
- for (;;)
594
- {
595
- int fd;
596
- struct mntent mnt;
597
- char buf[MAXPATHLEN * 3];
598
-
599
- if (getmntent_r (last_mntent, &mnt, buf, sizeof (buf)) == NULL)
600
- return -1;
601
-
602
- if (hasmntopt (&mnt, "ro")
603
- || hasmntopt (&mnt, "noexec")
604
- || access (mnt.mnt_dir, W_OK))
605
- continue;
606
-
607
- fd = open_temp_exec_file_dir (mnt.mnt_dir);
608
-
609
- if (fd != -1)
610
- return fd;
611
- }
612
- }
613
- #endif /* HAVE_MNTENT */
614
-
615
- /* Instructions to look for a location to hold a temporary file that
616
- can be mapped in for execution. */
617
- static struct
618
- {
619
- int (*func)(const char *);
620
- const char *arg;
621
- int repeat;
622
- } open_temp_exec_file_opts[] = {
623
- { open_temp_exec_file_env, "TMPDIR", 0 },
624
- { open_temp_exec_file_dir, "/tmp", 0 },
625
- { open_temp_exec_file_dir, "/var/tmp", 0 },
626
- { open_temp_exec_file_dir, "/dev/shm", 0 },
627
- { open_temp_exec_file_env, "HOME", 0 },
628
- #ifdef HAVE_MNTENT
629
- { open_temp_exec_file_mnt, "/etc/mtab", 1 },
630
- { open_temp_exec_file_mnt, "/proc/mounts", 1 },
631
- #endif /* HAVE_MNTENT */
632
- };
633
-
634
- /* Current index into open_temp_exec_file_opts. */
635
- static int open_temp_exec_file_opts_idx = 0;
636
-
637
- /* Reset a current multi-call func, then advances to the next entry.
638
- If we're at the last, go back to the first and return nonzero,
639
- otherwise return zero. */
640
- static int
641
- open_temp_exec_file_opts_next (void)
642
- {
643
- if (open_temp_exec_file_opts[open_temp_exec_file_opts_idx].repeat)
644
- open_temp_exec_file_opts[open_temp_exec_file_opts_idx].func (NULL);
645
-
646
- open_temp_exec_file_opts_idx++;
647
- if (open_temp_exec_file_opts_idx
648
- == (sizeof (open_temp_exec_file_opts)
649
- / sizeof (*open_temp_exec_file_opts)))
650
- {
651
- open_temp_exec_file_opts_idx = 0;
652
- return 1;
653
- }
654
-
655
- return 0;
656
- }
657
-
658
- /* Return a file descriptor of a temporary zero-sized file in a
659
- writable and executable filesystem. */
660
- static int
661
- open_temp_exec_file (void)
662
- {
663
- int fd;
664
-
665
- do
666
- {
667
- fd = open_temp_exec_file_opts[open_temp_exec_file_opts_idx].func
668
- (open_temp_exec_file_opts[open_temp_exec_file_opts_idx].arg);
669
-
670
- if (!open_temp_exec_file_opts[open_temp_exec_file_opts_idx].repeat
671
- || fd == -1)
672
- {
673
- if (open_temp_exec_file_opts_next ())
674
- break;
675
- }
676
- }
677
- while (fd == -1);
678
-
679
- return fd;
680
- }
681
-
682
- /* Map in a chunk of memory from the temporary exec file into separate
683
- locations in the virtual memory address space, one writable and one
684
- executable. Returns the address of the writable portion, after
685
- storing an offset to the corresponding executable portion at the
686
- last word of the requested chunk. */
687
- static void *
688
- dlmmap_locked (void *start, size_t length, int prot, int flags, off_t offset)
689
- {
690
- void *ptr;
691
-
692
- if (execfd == -1)
693
- {
694
- open_temp_exec_file_opts_idx = 0;
695
- retry_open:
696
- execfd = open_temp_exec_file ();
697
- if (execfd == -1)
698
- return MFAIL;
699
- }
700
-
701
- offset = execsize;
702
-
703
- if (ftruncate (execfd, offset + length))
704
- return MFAIL;
705
-
706
- flags &= ~(MAP_PRIVATE | MAP_ANONYMOUS);
707
- flags |= MAP_SHARED;
708
-
709
- ptr = mmap (NULL, length, (prot & ~PROT_WRITE) | PROT_EXEC,
710
- flags, execfd, offset);
711
- if (ptr == MFAIL)
712
- {
713
- if (!offset)
714
- {
715
- close (execfd);
716
- goto retry_open;
717
- }
718
- ftruncate (execfd, offset);
719
- return MFAIL;
720
- }
721
- else if (!offset
722
- && open_temp_exec_file_opts[open_temp_exec_file_opts_idx].repeat)
723
- open_temp_exec_file_opts_next ();
724
-
725
- start = mmap (start, length, prot, flags, execfd, offset);
726
-
727
- if (start == MFAIL)
728
- {
729
- munmap (ptr, length);
730
- ftruncate (execfd, offset);
731
- return start;
732
- }
733
-
734
- mmap_exec_offset ((char *)start, length) = (char*)ptr - (char*)start;
735
-
736
- execsize += length;
737
-
738
- return start;
739
- }
740
-
741
- /* Map in a writable and executable chunk of memory if possible.
742
- Failing that, fall back to dlmmap_locked. */
743
- static void *
744
- dlmmap (void *start, size_t length, int prot,
745
- int flags, int fd, off_t offset)
746
- {
747
- void *ptr;
748
-
749
- assert (start == NULL && length % malloc_getpagesize == 0
750
- && prot == (PROT_READ | PROT_WRITE)
751
- && flags == (MAP_PRIVATE | MAP_ANONYMOUS)
752
- && fd == -1 && offset == 0);
753
-
754
- if (execfd == -1 && is_emutramp_enabled ())
755
- {
756
- ptr = mmap (start, length, prot & ~PROT_EXEC, flags, fd, offset);
757
- return ptr;
758
- }
759
-
760
- if (execfd == -1 && !is_selinux_enabled ())
761
- {
762
- ptr = mmap (start, length, prot | PROT_EXEC, flags, fd, offset);
763
-
764
- if (ptr != MFAIL || (errno != EPERM && errno != EACCES))
765
- /* Cool, no need to mess with separate segments. */
766
- return ptr;
767
-
768
- /* If MREMAP_DUP is ever introduced and implemented, try mmap
769
- with ((prot & ~PROT_WRITE) | PROT_EXEC) and mremap with
770
- MREMAP_DUP and prot at this point. */
771
- }
772
-
773
- if (execsize == 0 || execfd == -1)
774
- {
775
- pthread_mutex_lock (&open_temp_exec_file_mutex);
776
- ptr = dlmmap_locked (start, length, prot, flags, offset);
777
- pthread_mutex_unlock (&open_temp_exec_file_mutex);
778
-
779
- return ptr;
780
- }
781
-
782
- return dlmmap_locked (start, length, prot, flags, offset);
783
- }
784
-
785
- /* Release memory at the given address, as well as the corresponding
786
- executable page if it's separate. */
787
- static int
788
- dlmunmap (void *start, size_t length)
789
- {
790
- /* We don't bother decreasing execsize or truncating the file, since
791
- we can't quite tell whether we're unmapping the end of the file.
792
- We don't expect frequent deallocation anyway. If we did, we
793
- could locate pages in the file by writing to the pages being
794
- deallocated and checking that the file contents change.
795
- Yuck. */
796
- msegmentptr seg = segment_holding (gm, start);
797
- void *code;
798
-
799
- if (seg && (code = add_segment_exec_offset (start, seg)) != start)
800
- {
801
- int ret = munmap (code, length);
802
- if (ret)
803
- return ret;
804
- }
805
-
806
- return munmap (start, length);
807
- }
808
-
809
- #if FFI_CLOSURE_FREE_CODE
810
- /* Return segment holding given code address. */
811
- static msegmentptr
812
- segment_holding_code (mstate m, char* addr)
813
- {
814
- msegmentptr sp = &m->seg;
815
- for (;;) {
816
- if (addr >= add_segment_exec_offset (sp->base, sp)
817
- && addr < add_segment_exec_offset (sp->base, sp) + sp->size)
818
- return sp;
819
- if ((sp = sp->next) == 0)
820
- return 0;
821
- }
822
- }
823
- #endif
824
-
825
- #endif /* !(defined(X86_WIN32) || defined(X86_WIN64) || defined(__OS2__)) || defined (__CYGWIN__) || defined(__INTERIX) */
826
-
827
- /* Allocate a chunk of memory with the given size. Returns a pointer
828
- to the writable address, and sets *CODE to the executable
829
- corresponding virtual address. */
830
- void *
831
- ffi_closure_alloc (size_t size, void **code)
832
- {
833
- void *ptr;
834
-
835
- if (!code)
836
- return NULL;
837
-
838
- ptr = dlmalloc (size);
839
-
840
- if (ptr)
841
- {
842
- msegmentptr seg = segment_holding (gm, ptr);
843
-
844
- *code = add_segment_exec_offset (ptr, seg);
845
- }
846
-
847
- return ptr;
848
- }
849
-
850
- /* Release a chunk of memory allocated with ffi_closure_alloc. If
851
- FFI_CLOSURE_FREE_CODE is nonzero, the given address can be the
852
- writable or the executable address given. Otherwise, only the
853
- writable address can be provided here. */
854
- void
855
- ffi_closure_free (void *ptr)
856
- {
857
- #if FFI_CLOSURE_FREE_CODE
858
- msegmentptr seg = segment_holding_code (gm, ptr);
859
-
860
- if (seg)
861
- ptr = sub_segment_exec_offset (ptr, seg);
862
- #endif
863
-
864
- dlfree (ptr);
865
- }
866
-
867
- # else /* ! FFI_MMAP_EXEC_WRIT */
868
-
869
- /* On many systems, memory returned by malloc is writable and
870
- executable, so just use it. */
871
-
872
- #include <stdlib.h>
873
-
874
- void *
875
- ffi_closure_alloc (size_t size, void **code)
876
- {
877
- if (!code)
878
- return NULL;
879
-
880
- return *code = malloc (size);
881
- }
882
-
883
- void
884
- ffi_closure_free (void *ptr)
885
- {
886
- free (ptr);
887
- }
888
-
889
- # endif /* ! FFI_MMAP_EXEC_WRIT */
890
- #endif /* FFI_CLOSURES */