沙盒仅适用于 linux。您必须首先使用库函数实际创建沙箱,然后告诉沙箱运行您的程序。
此 python 示例显示了如何从 python 中执行此操作。“#targeted program”行显示了您将在哪里指定实际应用程序的名称。
def main(args):
# sandbox configuration
cookbook = {
'args': args[1:], # targeted program
'stdin': sys.stdin, # input to targeted program
'stdout': sys.stdout, # output from targeted program
'stderr': sys.stderr, # error from targeted program
'quota': dict(wallclock = 30000,# 30 sec
cpu = 2000, # 2 sec
memory = 8388608, # 8 MB
disk = 1048576)} # 1 MB
# create a sandbox instance and execute till end
msb = MiniSandbox(**cookbook)
msb.run()
# verbose statistics
sys.stderr.write("result: %(result)s\ncpu: %(cpu)dms\nmem: %(mem)dkB\n" % \
msb.probe())
return os.EX_OK
我建议去 libsandbox 下载页面并在那里获取完整的 sample2.py 文件,然后使用 python 脚本运行沙箱。这比制作一个 C++ 或 C 程序来为你做这件事要容易得多。
所以...
制作您的 C 或 C++ 程序。不要将其链接到 LIBSANDBOX。
确保你已经安装了 python。
从 libsandbox 页面运行示例 python 脚本。
python 脚本将为您加载 libsandbox。然后它将运行您在沙箱中构建的程序。
简单的。