Spaces:
Running
Running
File size: 11,558 Bytes
d57737f 7738e45 d57737f 7738e45 d57737f | 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 | """
Out-of-process verifier runner.
Reads JSON payload from stdin, executes verifier code under OS-level resource
limits
Invoked by ``verifier.py`` via ``subprocess.run``
The runner imports a small whitelist of modules into the exec namespace
(sqlite3, json, re plus a curated builtins set) and intentionally does NOT
inject ``os`` — verifiers in the AWM dataset only need DB I/O, JSON, and
regex.
Protocol:
stdin (one JSON object):
{
"verifier_code": str,
"function_name": str,
"initial_db_path": str,
"final_db_path": str,
"final_answer": str | None, # only used by code mode
"mode": "sql" | "code",
}
stdout (one JSON object):
For mode == "sql": the verifier's return value, or
{"execution_status": "error", "error_message": str}
For mode == "code":
{"result": "complete"|"others",
"execution_status": "success"|"error",
"raw_result"?: <verifier return>,
"error_message"?: str}
"""
from __future__ import annotations
import builtins as _builtins
import inspect
import json
import re as _re
import sqlite3
import sys
from typing import Any
try:
import resource
except ImportError:
resource = None # Windows — resource limits not enforced
# ---------------------------------------------------------------------------
# Resource limits applied before exec()
# ---------------------------------------------------------------------------
DEFAULT_CPU_SECONDS = 20
DEFAULT_ADDRESS_SPACE_BYTES = 512 * 1024 * 1024 # 512 MiB
DEFAULT_FILE_SIZE_BYTES = 16 * 1024 * 1024 # 16 MiB
DEFAULT_OPEN_FILES = 64
DEFAULT_NPROC = 0 # disallow fork/exec from inside the verifier where supported
# builtin whitelist
_SAFE_BUILTIN_NAMES = frozenset(
{
# constants
"True",
"False",
"None",
# numeric / sequence / mapping types
"int",
"float",
"complex",
"bool",
"str",
"bytes",
"bytearray",
"list",
"tuple",
"dict",
"set",
"frozenset",
"range",
"slice",
"memoryview",
# iteration / functional helpers
"iter",
"next",
"len",
"enumerate",
"zip",
"map",
"filter",
"reversed",
"sorted",
"any",
"all",
"sum",
"min",
"max",
# numeric helpers
"abs",
"round",
"divmod",
"pow",
# type introspection (read-only style)
"isinstance",
"issubclass",
"type",
"hasattr",
"getattr",
"setattr",
"delattr",
"callable",
"id",
"vars",
"dir",
# globals/locals are needed by some idiomatic verifier patterns
"globals",
"locals",
"__build_class__",
# string / repr helpers
"repr",
"str",
"ord",
"chr",
"format",
"ascii",
"hex",
"oct",
"bin",
# io that's safe to keep (writes to runner stdout, captured by parent)
"print",
# exceptions verifiers commonly raise/catch
"Exception",
"ValueError",
"TypeError",
"KeyError",
"IndexError",
"AttributeError",
"RuntimeError",
"ArithmeticError",
"ZeroDivisionError",
"StopIteration",
"AssertionError",
"NotImplementedError",
"LookupError",
"ArithmeticError",
"BaseException",
"ImportError",
"OverflowError",
"FloatingPointError",
"UnicodeError",
"UnicodeDecodeError",
"UnicodeEncodeError",
"BufferError",
"DeprecationWarning",
"Warning",
"UserWarning",
}
)
# Modules verifier code is allowed to import
_ALLOWED_IMPORTS = frozenset(
{
"sqlite3",
"json",
"re",
"math",
"decimal",
"fractions",
"datetime",
"time",
"calendar",
"zoneinfo",
"collections",
"collections.abc",
"itertools",
"functools",
"operator",
"string",
"statistics",
"heapq",
"bisect",
"uuid",
"hashlib",
"base64",
"binascii",
"unicodedata",
"typing",
"enum",
"dataclasses",
"copy",
"pprint",
"textwrap",
"difflib",
"contextlib",
"traceback",
"ipaddress",
"io",
"csv",
"urllib.parse",
"dateutil",
"pytz",
"_strptime",
}
)
# Sentinel injected into the user's exec namespace
_USER_NS_MARKER = "_AWM_SANDBOX_USER"
import os.path as _stdlib_ospath
class _SafeOsShim:
"""Drop-in for ``os`` exposing only ``os.path``."""
path = _stdlib_ospath
def __repr__(self) -> str:
return "<sandboxed os shim — only os.path is available>"
_OS_SHIM = _SafeOsShim()
def _safe_import(
name: str,
globals: Any = None,
locals: Any = None,
fromlist: tuple = (),
level: int = 0,
) -> Any:
if level != 0:
raise ImportError("Relative imports are not permitted in verifier code")
caller = sys._getframe(1)
is_user_caller = caller.f_globals.get(_USER_NS_MARKER) is True
if is_user_caller:
if name == "os" or name.startswith("os."):
return _OS_SHIM
root = name.split(".", 1)[0]
if root not in _ALLOWED_IMPORTS and name not in _ALLOWED_IMPORTS:
raise ImportError(f"Import of '{name}' is not permitted in verifier code")
return _builtins.__import__(name, globals, locals, fromlist, level)
def _build_safe_builtins() -> dict[str, Any]:
real = _builtins.__dict__
safe = {name: real[name] for name in _SAFE_BUILTIN_NAMES if name in real}
safe["__import__"] = _safe_import
return safe
# resource limits
def _apply_resource_limits() -> None:
if resource is None:
return # Windows — fall back to the parent's subprocess timeout.
def _set(which: int, soft: int, hard: int | None = None) -> None:
try:
resource.setrlimit(which, (soft, hard if hard is not None else soft))
except (ValueError, OSError, resource.error):
# Some limits (RLIMIT_NPROC, RLIMIT_AS) aren't supported on every
# platform / inside every container; that's fine — the parent's
# subprocess timeout still backstops runaway verifiers.
pass
_set(resource.RLIMIT_CPU, DEFAULT_CPU_SECONDS)
_set(resource.RLIMIT_AS, DEFAULT_ADDRESS_SPACE_BYTES)
_set(resource.RLIMIT_FSIZE, DEFAULT_FILE_SIZE_BYTES)
_set(resource.RLIMIT_NOFILE, DEFAULT_OPEN_FILES)
if hasattr(resource, "RLIMIT_NPROC"):
_set(resource.RLIMIT_NPROC, DEFAULT_NPROC)
def _sanitize_for_json(obj: Any) -> Any:
if isinstance(obj, dict):
return {
str(k) if isinstance(k, tuple) else k: _sanitize_for_json(v)
for k, v in obj.items()
}
if isinstance(obj, (list, tuple)):
return [_sanitize_for_json(item) for item in obj]
if isinstance(obj, bytes):
return obj.decode("utf-8", errors="ignore")
try:
json.dumps(obj)
return obj
except TypeError:
return str(obj)
def _call_verifier_func(
verify_func: Any,
initial_db_path: str,
final_db_path: str,
final_answer: str | None,
) -> Any:
sig = inspect.signature(verify_func)
params = sig.parameters
kwargs: dict[str, Any] = {}
if "initial_db_path" in params:
kwargs["initial_db_path"] = initial_db_path
if "final_db_path" in params:
kwargs["final_db_path"] = final_db_path
if "final_answer" in params:
kwargs["final_answer"] = final_answer or ""
if not kwargs and len(params) >= 2:
args = [initial_db_path, final_db_path]
if len(params) >= 3:
args.append(final_answer or "")
return verify_func(*args)
return verify_func(**kwargs)
def _run(payload: dict[str, Any]) -> dict[str, Any]:
mode = payload.get("mode")
code = payload["verifier_code"]
function_name = payload["function_name"]
initial_db_path = payload["initial_db_path"]
final_db_path = payload["final_db_path"]
final_answer = payload.get("final_answer")
namespace: dict[str, Any] = {
"sqlite3": sqlite3,
"json": json,
"re": _re,
"__builtins__": _build_safe_builtins(),
"__name__": "__main__",
_USER_NS_MARKER: True,
}
try:
exec(code, namespace) # noqa: S102 — sandboxed by rlimits + restricted builtins
except Exception as e:
if mode == "code":
return {
"result": "others",
"execution_status": "error",
"error_message": f"Compile error: {e}",
}
return {"execution_status": "error", "error_message": f"Compile error: {e}"}
verify_func = namespace.get(function_name)
if not callable(verify_func):
if mode == "code":
return {
"result": "others",
"execution_status": "error",
"error_message": f"Function '{function_name}' not found",
}
return {
"execution_status": "error",
"error_message": f"Function '{function_name}' not found",
}
try:
result = _call_verifier_func(
verify_func, initial_db_path, final_db_path, final_answer
)
except Exception as e:
if mode == "code":
return {
"result": "others",
"execution_status": "error",
"error_message": f"Execution error: {e}",
}
return {"execution_status": "error", "error_message": f"Execution error: {e}"}
if mode == "code":
if not isinstance(result, dict) or "result" not in result:
return {
"result": "others",
"execution_status": "error",
"error_message": f"Invalid return format: {type(result).__name__}",
}
result_value = result.get("result", "others")
if result_value not in ("complete", "others"):
result_value = "others"
return {
"result": result_value,
"execution_status": "success",
"raw_result": _sanitize_for_json(result),
}
# SQL mode: return whatever the verifier returned, JSON-safe
try:
json.dumps(result)
return result
except TypeError:
return _sanitize_for_json(result)
def main() -> int:
_apply_resource_limits()
try:
payload = json.loads(sys.stdin.read())
except json.JSONDecodeError as e:
sys.stdout.write(
json.dumps(
{"execution_status": "error", "error_message": f"Bad payload: {e}"}
)
)
return 0
result = _run(payload)
try:
sys.stdout.write(json.dumps(result, default=str))
except (TypeError, ValueError) as e:
sys.stdout.write(
json.dumps(
{
"execution_status": "error",
"error_message": f"Result not JSON-serializable: {e}",
}
)
)
return 0
if __name__ == "__main__":
sys.exit(main())
|