1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443
|
""" Tests of libffi wrapper
"""
from rpython.translator.c.test.test_genc import compile
from rpython.translator import cdir
from rpython.rlib.clibffi import *
from rpython.rlib.objectmodel import keepalive_until_here
from rpython.rtyper.lltypesystem.ll2ctypes import ALLOCATED
from rpython.rtyper.lltypesystem import rffi, lltype
import py
import sys
import time
def get_libm_name(platform):
if platform == 'win32':
return 'msvcrt.dll'
elif platform == "darwin":
return 'libm.dylib'
else:
return 'libm.so'
class BaseFfiTest(object):
CDLL = None # overridden by subclasses
@classmethod
def setup_class(cls):
for name in type_names:
# XXX force this to be seen by ll2ctypes
# so that ALLOCATED.clear() clears it
ffistruct = globals()[name]
rffi.cast(rffi.VOIDP, ffistruct)
def setup_method(self, meth):
ALLOCATED.clear()
def get_libc(self):
return self.CDLL(get_libc_name())
def get_libm(self):
return self.CDLL(get_libm_name(sys.platform))
class TestCLibffi(BaseFfiTest):
CDLL = CDLL
def test_library_open(self):
lib = self.get_libc()
del lib
assert not ALLOCATED
def test_library_get_func(self):
lib = self.get_libc()
ptr = lib.getpointer('fopen', [], ffi_type_void)
py.test.raises(KeyError, lib.getpointer, 'xxxxxxxxxxxxxxx', [], ffi_type_void)
del ptr
del lib
assert not ALLOCATED
def test_library_func_call(self):
lib = self.get_libc()
ptr = lib.getpointer('rand', [], ffi_type_sint)
zeroes = 0
first = ptr.call(rffi.INT)
for i in range(100):
res = ptr.call(rffi.INT)
if res == first:
zeroes += 1
assert zeroes < 90
# not very hard check, but something :]
del ptr
del lib
assert not ALLOCATED
def test_call_args(self):
libm = self.get_libm()
pow = libm.getpointer('pow', [ffi_type_double, ffi_type_double],
ffi_type_double)
pow.push_arg(2.0)
pow.push_arg(2.0)
res = pow.call(rffi.DOUBLE)
assert res == 4.0
pow.push_arg(3.0)
pow.push_arg(3.0)
res = pow.call(rffi.DOUBLE)
assert res == 27.0
del pow
del libm
assert not ALLOCATED
def test_wrong_args(self):
libc = self.get_libc()
# XXX assume time_t is long
ulong = cast_type_to_ffitype(rffi.ULONG)
ctime = libc.getpointer('fopen', [ffi_type_pointer], ulong)
x = lltype.malloc(lltype.GcStruct('xxx'))
y = lltype.malloc(lltype.GcArray(rffi.LONG), 3)
z = lltype.malloc(lltype.Array(rffi.LONG), 4, flavor='raw')
py.test.raises(ValueError, "ctime.push_arg(x)")
py.test.raises(ValueError, "ctime.push_arg(y)")
py.test.raises(ValueError, "ctime.push_arg(z)")
del ctime
del libc
lltype.free(z, flavor='raw')
# allocation check makes no sense, since we've got GcStructs around
def test_unichar(self):
from rpython.rlib.runicode import MAXUNICODE
wchar = cast_type_to_ffitype(lltype.UniChar)
if MAXUNICODE > 65535:
assert wchar is ffi_type_uint32
else:
assert wchar is ffi_type_uint16
def test_call_time(self):
libc = self.get_libc()
# XXX assume time_t is long
ulong = cast_type_to_ffitype(rffi.ULONG)
try:
ctime = libc.getpointer('time', [ffi_type_pointer], ulong)
except KeyError:
# This function is named differently since msvcr80
ctime = libc.getpointer('_time32', [ffi_type_pointer], ulong)
ctime.push_arg(lltype.nullptr(rffi.CArray(rffi.LONG)))
t0 = ctime.call(rffi.LONG)
time.sleep(2)
ctime.push_arg(lltype.nullptr(rffi.CArray(rffi.LONG)))
t1 = ctime.call(rffi.LONG)
assert t1 > t0
l_t = lltype.malloc(rffi.CArray(rffi.LONG), 1, flavor='raw')
ctime.push_arg(l_t)
t1 = ctime.call(rffi.LONG)
assert l_t[0] == t1
lltype.free(l_t, flavor='raw')
del ctime
del libc
assert not ALLOCATED
def test_closure_heap(self):
ch = ClosureHeap()
assert not ch.free_list
a = ch.alloc()
assert ch.free_list
b = ch.alloc()
chunks = [a, b]
p = ch.free_list
while p:
chunks.append(p)
p = rffi.cast(rffi.VOIDPP, p)[0]
closure_size = rffi.sizeof(FFI_CLOSUREP.TO)
assert len(chunks) == CHUNK//closure_size
for i in range(len(chunks) -1 ):
s = rffi.cast(rffi.UINT, chunks[i+1])
e = rffi.cast(rffi.UINT, chunks[i])
assert (e-s) >= rffi.sizeof(FFI_CLOSUREP.TO)
ch.free(a)
assert ch.free_list == rffi.cast(rffi.VOIDP, a)
snd = rffi.cast(rffi.VOIDPP, a)[0]
assert snd == chunks[2]
ch.free(b)
assert ch.free_list == rffi.cast(rffi.VOIDP, b)
snd = rffi.cast(rffi.VOIDPP, b)[0]
assert snd == rffi.cast(rffi.VOIDP, a)
def test_callback(self):
slong = cast_type_to_ffitype(rffi.LONG)
libc = self.get_libc()
qsort = libc.getpointer('qsort', [ffi_type_pointer, slong,
slong, ffi_type_pointer],
ffi_type_void)
def callback(ll_args, ll_res, stuff):
p_a1 = rffi.cast(rffi.VOIDPP, ll_args[0])[0]
p_a2 = rffi.cast(rffi.VOIDPP, ll_args[1])[0]
a1 = rffi.cast(rffi.INTP, p_a1)[0]
a2 = rffi.cast(rffi.INTP, p_a2)[0]
res = rffi.cast(rffi.SIGNEDP, ll_res)
# must store a full ffi arg!
if a1 > a2:
res[0] = 1
else:
res[0] = -1
ptr = CallbackFuncPtr([ffi_type_pointer, ffi_type_pointer],
ffi_type_sint, callback)
TP = rffi.CArray(rffi.INT)
to_sort = lltype.malloc(TP, 4, flavor='raw')
to_sort[0] = rffi.cast(rffi.INT, 4)
to_sort[1] = rffi.cast(rffi.INT, 3)
to_sort[2] = rffi.cast(rffi.INT, 1)
to_sort[3] = rffi.cast(rffi.INT, 2)
qsort.push_arg(rffi.cast(rffi.VOIDP, to_sort))
qsort.push_arg(rffi.sizeof(rffi.INT))
qsort.push_arg(4)
qsort.push_arg(ptr.ll_closure)
qsort.call(lltype.Void)
assert ([rffi.cast(lltype.Signed, to_sort[i]) for i in range(4)] ==
[1,2,3,4])
lltype.free(to_sort, flavor='raw')
keepalive_until_here(ptr) # <= this test is not translated, but don't
# forget this in code that is meant to be
def test_compile(self):
import py
py.test.skip("Segfaulting test, skip")
# XXX cannot run it on top of llinterp, some problems
# with pointer casts
def f(x, y):
libm = self.get_libm()
c_pow = libm.getpointer('pow', [ffi_type_double, ffi_type_double], ffi_type_double)
c_pow.push_arg(x)
c_pow.push_arg(y)
res = c_pow.call(rffi.DOUBLE)
return res
fn = compile(f, [float, float])
res = fn(2.0, 4.0)
assert res == 16.0
def test_rawfuncptr(self):
libm = self.get_libm()
pow = libm.getrawpointer('pow', [ffi_type_double, ffi_type_double],
ffi_type_double)
buffer = lltype.malloc(rffi.DOUBLEP.TO, 3, flavor='raw')
buffer[0] = 2.0
buffer[1] = 3.0
buffer[2] = 43.5
pow.call([rffi.cast(rffi.VOIDP, buffer),
rffi.cast(rffi.VOIDP, rffi.ptradd(buffer, 1))],
rffi.cast(rffi.VOIDP, rffi.ptradd(buffer, 2)))
assert buffer[2] == 8.0
lltype.free(buffer, flavor='raw')
del pow
del libm
assert not ALLOCATED
def test_make_struct_ffitype_e(self):
tpe = make_struct_ffitype_e(16, 4, [ffi_type_pointer, ffi_type_uchar])
assert tpe.ffistruct.c_type == FFI_TYPE_STRUCT
assert tpe.ffistruct.c_size == 16
assert tpe.ffistruct.c_alignment == 4
assert tpe.ffistruct.c_elements[0] == ffi_type_pointer
assert tpe.ffistruct.c_elements[1] == ffi_type_uchar
assert not tpe.ffistruct.c_elements[2]
lltype.free(tpe, flavor='raw')
def test_nested_struct_elements(self):
tpe2 = make_struct_ffitype_e(16, 4, [ffi_type_pointer, ffi_type_uchar])
tp2 = tpe2.ffistruct
tpe = make_struct_ffitype_e(32, 4, [tp2, ffi_type_schar])
assert tpe.ffistruct.c_elements[0] == tp2
assert tpe.ffistruct.c_elements[1] == ffi_type_schar
assert not tpe.ffistruct.c_elements[2]
lltype.free(tpe, flavor='raw')
lltype.free(tpe2, flavor='raw')
def test_struct_by_val(self):
from rpython.translator.tool.cbuild import ExternalCompilationInfo
from rpython.translator.platform import platform
from rpython.tool.udir import udir
c_file = udir.ensure("test_libffi", dir=1).join("xlib.c")
c_file.write(py.code.Source('''
#include "src/precommondefs.h"
#include <stdlib.h>
#include <stdio.h>
struct x_y {
long x;
long y;
};
RPY_EXPORTED
long sum_x_y(struct x_y s) {
return s.x + s.y;
}
long sum_x_y_p(struct x_y *p) {
return p->x + p->y;
}
'''))
eci = ExternalCompilationInfo(include_dirs=[cdir])
lib_name = str(platform.compile([c_file], eci, 'x', standalone=False))
lib = CDLL(lib_name)
slong = cast_type_to_ffitype(rffi.LONG)
size = slong.c_size*2
alignment = slong.c_alignment
tpe = make_struct_ffitype_e(size, alignment, [slong, slong])
sum_x_y = lib.getrawpointer('sum_x_y', [tpe.ffistruct], slong)
buffer = lltype.malloc(rffi.LONGP.TO, 3, flavor='raw')
buffer[0] = 200
buffer[1] = 220
buffer[2] = 666
sum_x_y.call([rffi.cast(rffi.VOIDP, buffer)],
rffi.cast(rffi.VOIDP, rffi.ptradd(buffer, 2)))
assert buffer[2] == 420
lltype.free(buffer, flavor='raw')
del sum_x_y
lltype.free(tpe, flavor='raw')
del lib
assert not ALLOCATED
def test_ret_struct_val(self):
from rpython.translator.tool.cbuild import ExternalCompilationInfo
from rpython.translator.platform import platform
from rpython.tool.udir import udir
c_file = udir.ensure("test_libffi", dir=1).join("xlib.c")
c_file.write(py.code.Source('''
#include "src/precommondefs.h"
#include <stdlib.h>
#include <stdio.h>
struct s2h {
short x;
short y;
};
RPY_EXPORTED
struct s2h give(short x, short y) {
struct s2h out;
out.x = x;
out.y = y;
return out;
}
RPY_EXPORTED
struct s2h perturb(struct s2h inp) {
inp.x *= 2;
inp.y *= 3;
return inp;
}
'''))
eci = ExternalCompilationInfo(include_dirs=[cdir])
lib_name = str(platform.compile([c_file], eci, 'x', standalone=False))
lib = CDLL(lib_name)
size = ffi_type_sshort.c_size*2
alignment = ffi_type_sshort.c_alignment
tpe = make_struct_ffitype_e(size, alignment, [ffi_type_sshort]*2)
give = lib.getrawpointer('give', [ffi_type_sshort, ffi_type_sshort],
tpe.ffistruct)
inbuffer = lltype.malloc(rffi.SHORTP.TO, 2, flavor='raw')
inbuffer[0] = rffi.cast(rffi.SHORT, 40)
inbuffer[1] = rffi.cast(rffi.SHORT, 72)
outbuffer = lltype.malloc(rffi.SHORTP.TO, 2, flavor='raw')
give.call([rffi.cast(rffi.VOIDP, inbuffer),
rffi.cast(rffi.VOIDP, rffi.ptradd(inbuffer, 1))],
rffi.cast(rffi.VOIDP, outbuffer))
assert outbuffer[0] == 40
assert outbuffer[1] == 72
perturb = lib.getrawpointer('perturb', [tpe.ffistruct], tpe.ffistruct)
inbuffer[0] = rffi.cast(rffi.SHORT, 7)
inbuffer[1] = rffi.cast(rffi.SHORT, 11)
perturb.call([rffi.cast(rffi.VOIDP, inbuffer)],
rffi.cast(rffi.VOIDP, outbuffer))
assert inbuffer[0] == 7
assert inbuffer[1] == 11
assert outbuffer[0] == 14
assert outbuffer[1] == 33
lltype.free(outbuffer, flavor='raw')
lltype.free(inbuffer, flavor='raw')
del give
del perturb
lltype.free(tpe, flavor='raw')
del lib
assert not ALLOCATED
def test_cdll_life_time(self):
from rpython.translator.tool.cbuild import ExternalCompilationInfo
from rpython.translator.platform import platform
from rpython.tool.udir import udir
c_file = udir.ensure("test_libffi", dir=1).join("xlib.c")
c_file.write(py.code.Source('''
#include "src/precommondefs.h"
RPY_EXPORTED
long fun(long i) {
return i + 42;
}
'''))
eci = ExternalCompilationInfo(include_dirs=[cdir])
lib_name = str(platform.compile([c_file], eci, 'x', standalone=False))
lib = CDLL(lib_name)
slong = cast_type_to_ffitype(rffi.LONG)
fun = lib.getrawpointer('fun', [slong], slong)
del lib # already delete here
buffer = lltype.malloc(rffi.LONGP.TO, 2, flavor='raw')
buffer[0] = 200
buffer[1] = -1
fun.call([rffi.cast(rffi.VOIDP, buffer)],
rffi.cast(rffi.VOIDP, rffi.ptradd(buffer, 1)))
assert buffer[1] == 242
lltype.free(buffer, flavor='raw')
del fun
assert not ALLOCATED
class TestWin32Handles(BaseFfiTest):
def setup_class(cls):
if sys.platform != 'win32':
py.test.skip("Handle to libc library, Win-only test")
BaseFfiTest.setup_class()
def test_get_libc_handle(self):
handle = get_libc_handle()
print get_libc_name()
print dir(handle)
addr = rffi.cast(rffi.INT, handle)
assert addr != 0
assert addr % 0x1000 == 0
|