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
|
import py
import sys, os, time
import struct
import subprocess
import signal
from rpython.rtyper.lltypesystem import rffi
from rpython.translator.interactive import Translation
from rpython.translator.sandbox.sandlib import read_message, write_message
from rpython.translator.sandbox.sandlib import write_exception
if hasattr(signal, 'alarm'):
_orig_read_message = read_message
def _timed_out(*args):
raise EOFError("timed out waiting for data")
def read_message(f):
signal.signal(signal.SIGALRM, _timed_out)
signal.alarm(20)
try:
return _orig_read_message(f)
finally:
signal.alarm(0)
signal.signal(signal.SIGALRM, signal.SIG_DFL)
def expect(f, g, fnname, args, result, resulttype=None):
msg = read_message(f)
assert msg == fnname
msg = read_message(f)
assert msg == args
assert [type(x) for x in msg] == [type(x) for x in args]
if isinstance(result, Exception):
write_exception(g, result)
else:
write_message(g, 0)
write_message(g, result, resulttype)
g.flush()
def compile(f, gc='ref'):
t = Translation(f, backend='c', sandbox=True, gc=gc,
check_str_without_nul=True)
return str(t.compile())
def run_in_subprocess(exe):
popen = subprocess.Popen(exe, stdin=subprocess.PIPE,
stdout=subprocess.PIPE,
stderr=subprocess.STDOUT)
return popen.stdin, popen.stdout
def test_open_dup():
def entry_point(argv):
fd = os.open("/tmp/foobar", os.O_RDONLY, 0777)
assert fd == 77
fd2 = os.dup(fd)
assert fd2 == 78
return 0
exe = compile(entry_point)
g, f = run_in_subprocess(exe)
expect(f, g, "ll_os.ll_os_open", ("/tmp/foobar", os.O_RDONLY, 0777), 77)
expect(f, g, "ll_os.ll_os_dup", (77, True), 78)
g.close()
tail = f.read()
f.close()
assert tail == ""
def test_read_write():
def entry_point(argv):
fd = os.open("/tmp/foobar", os.O_RDONLY, 0777)
assert fd == 77
res = os.read(fd, 123)
assert res == "he\x00llo"
count = os.write(fd, "world\x00!\x00")
assert count == 42
os.close(fd)
return 0
exe = compile(entry_point)
g, f = run_in_subprocess(exe)
expect(f, g, "ll_os.ll_os_open", ("/tmp/foobar", os.O_RDONLY, 0777), 77)
expect(f, g, "ll_os.ll_os_read", (77, 123), "he\x00llo")
expect(f, g, "ll_os.ll_os_write", (77, "world\x00!\x00"), 42)
expect(f, g, "ll_os.ll_os_close", (77,), None)
g.close()
tail = f.read()
f.close()
assert tail == ""
def test_dup2_access():
def entry_point(argv):
os.dup2(34, 56)
y = os.access("spam", 77)
return 1 - y
exe = compile(entry_point)
g, f = run_in_subprocess(exe)
expect(f, g, "ll_os.ll_os_dup2", (34, 56, True), None)
expect(f, g, "ll_os.ll_os_access", ("spam", 77), True)
g.close()
tail = f.read()
f.close()
assert tail == ""
def test_stat_ftruncate():
from rpython.translator.sandbox.sandlib import RESULTTYPE_STATRESULT
from rpython.rlib.rarithmetic import r_longlong
r0x12380000007 = r_longlong(0x12380000007)
if not hasattr(os, 'ftruncate'):
py.test.skip("posix only")
def entry_point(argv):
st = os.stat("somewhere")
os.ftruncate(st.st_mode, st.st_size) # nonsense, just to see outside
return 0
exe = compile(entry_point)
g, f = run_in_subprocess(exe)
st = os.stat_result((55, 0, 0, 0, 0, 0, 0x12380000007, 0, 0, 0))
expect(f, g, "ll_os.ll_os_stat", ("somewhere",), st,
resulttype = RESULTTYPE_STATRESULT)
expect(f, g, "ll_os.ll_os_ftruncate", (55, 0x12380000007), None)
g.close()
tail = f.read()
f.close()
assert tail == ""
def test_time():
def entry_point(argv):
t = time.time()
os.dup(int(t*1000))
return 0
exe = compile(entry_point)
g, f = run_in_subprocess(exe)
expect(f, g, "ll_time.ll_time_time", (), 3.141592)
expect(f, g, "ll_os.ll_os_dup", (3141, True), 3)
g.close()
tail = f.read()
f.close()
assert tail == ""
def test_getcwd():
def entry_point(argv):
t = os.getcwd()
os.dup(len(t))
return 0
exe = compile(entry_point)
g, f = run_in_subprocess(exe)
expect(f, g, "ll_os.ll_os_getcwd", (), "/tmp/foo/bar")
expect(f, g, "ll_os.ll_os_dup", (len("/tmp/foo/bar"), True), 3)
g.close()
tail = f.read()
f.close()
assert tail == ""
def test_oserror():
def entry_point(argv):
try:
os.stat("somewhere")
except OSError as e:
os.close(e.errno) # nonsense, just to see outside
return 0
exe = compile(entry_point)
g, f = run_in_subprocess(exe)
expect(f, g, "ll_os.ll_os_stat", ("somewhere",), OSError(6321, "egg"))
expect(f, g, "ll_os.ll_os_close", (6321,), None)
g.close()
tail = f.read()
f.close()
assert tail == ""
def test_hybrid_gc():
def entry_point(argv):
l = []
for i in range(int(argv[1])):
l.append("x" * int(argv[2]))
return int(len(l) > 1000)
exe = compile(entry_point, gc='hybrid')
pipe = subprocess.Popen([exe, '10', '10000'], stdout=subprocess.PIPE,
stdin=subprocess.PIPE)
g = pipe.stdin
f = pipe.stdout
expect(f, g, "ll_os.ll_os_getenv", ("PYPY_GENERATIONGC_NURSERY",), None)
#if sys.platform.startswith('linux'):
# expect(f, g, "ll_os.ll_os_open", ("/proc/cpuinfo", 0, 420),
# OSError(5232, "xyz"))
expect(f, g, "ll_os.ll_os_getenv", ("PYPY_GC_DEBUG",), None)
g.close()
tail = f.read()
f.close()
assert tail == ""
rescode = pipe.wait()
assert rescode == 0
def test_segfault_1():
class A:
def __init__(self, m):
self.m = m
def g(m):
if m < 10:
return None
return A(m)
def entry_point(argv):
x = g(len(argv))
return int(x.m)
exe = compile(entry_point)
g, f = run_in_subprocess(exe)
g.close()
tail = f.read()
f.close()
assert 'Invalid RPython operation' in tail
def test_segfault_2():
py.test.skip("hum, this is one example, but we need to be very careful")
class Base:
pass
class A(Base):
def __init__(self, m):
self.m = m
def getm(self):
return self.m
class B(Base):
def __init__(self, a):
self.a = a
def g(m):
a = A(m)
if m < 10:
a = B(a)
return a
def entry_point(argv):
x = g(len(argv))
os.write(2, str(x.getm()))
return 0
exe = compile(entry_point)
g, f, e = os.popen3(exe, "t", 0)
g.close()
tail = f.read(23)
f.close()
assert tail == "" # and not ll_os.ll_os_write
errors = e.read()
e.close()
assert '...think what kind of errors to get...' in errors
def test_safe_alloc():
from rpython.rlib.rmmap import alloc, free
def entry_point(argv):
one = alloc(1024)
free(one, 1024)
return 0
exe = compile(entry_point)
pipe = subprocess.Popen([exe], stdout=subprocess.PIPE,
stdin=subprocess.PIPE)
g = pipe.stdin
f = pipe.stdout
g.close()
tail = f.read()
f.close()
assert tail == ""
rescode = pipe.wait()
assert rescode == 0
def test_unsafe_mmap():
py.test.skip("Since this stuff is unimplemented, it won't work anyway "
"however, the day it starts working, it should pass test")
from rpython.rlib.rmmap import mmap
def entry_point(argv):
try:
res = mmap(0, 1024)
except OSError:
return 0
return 1
exe = compile(entry_point)
pipe = subprocess.Popen([exe], stdout=subprocess.PIPE,
stdin=subprocess.PIPE)
g = pipe.stdin
f = pipe.stdout
expect(f, g, "mmap", ARGS, OSError(1, "xyz"))
g.close()
tail = f.read()
f.close()
assert tail == ""
rescode = pipe.wait()
assert rescode == 0
def test_environ_items():
def entry_point(argv):
print os.environ.items()
return 0
exe = compile(entry_point)
g, f = run_in_subprocess(exe)
expect(f, g, "ll_os.ll_os_envitems", (), [])
expect(f, g, "ll_os.ll_os_write", (1, "[]\n"), 3)
g.close()
tail = f.read()
f.close()
assert tail == ""
class TestPrintedResults:
def run(self, entry_point, args, expected):
exe = compile(entry_point)
from rpython.translator.sandbox.sandlib import SimpleIOSandboxedProc
proc = SimpleIOSandboxedProc([exe] + args)
output, error = proc.communicate()
assert error == ''
assert output == expected
def test_safefuncs(self):
import math
def entry_point(argv):
a = float(argv[1])
print int(math.floor(a - 0.2)),
print int(math.ceil(a)),
print int(100.0 * math.sin(a)),
mantissa, exponent = math.frexp(a)
print int(100.0 * mantissa), exponent,
fracpart, intpart = math.modf(a)
print int(100.0 * fracpart), int(intpart),
print
return 0
self.run(entry_point, ["3.011"], "2 4 13 75 2 1 3\n")
def test_safefuncs_exception(self):
import math
def entry_point(argv):
a = float(argv[1])
x = math.log(a)
print int(x * 100.0)
try:
math.log(-a)
except ValueError:
print 'as expected, got a ValueError'
else:
print 'did not get a ValueError!'
return 0
self.run(entry_point, ["3.011"], "110\nas expected, got a ValueError\n")
def test_os_path_safe(self):
def entry_point(argv):
print os.path.join('tmp', argv[1])
return 0
self.run(entry_point, ["spam"], os.path.join("tmp", "spam")+'\n')
|