+ log.debug(_(u'Descomprimiendo archivo %s'), f)
+ file(join(dst, f), 'w').write(zfile.read(f))
+#}}}
+
+class SecureProcess(object): #{{{
+ default = dict(
+ max_tiempo_cpu = 120,
+ max_memoria = 16,
+ max_tam_archivo = 5,
+ max_cant_archivos = 5,
+ max_cant_procesos = 0,
+ max_locks_memoria = 0,
+ )
+ gid = config.get('sercom.tester.chroot.gid', 65534)
+ uid = config.get('sercom.tester.chroot.uid', 65534)
+ MB = 1048576
+ # XXX probar! make de un solo archivo lleva nproc=100 y nofile=15
+ def __init__(self, comando, chroot, cwd):
+ self.comando = comando
+ self.chroot = chroot
+ self.cwd = cwd
+ def __getattr__(self, name):
+ if getattr(self.comando, name) is not None:
+ return getattr(self.comando, name)
+ return config.get('sercom.tester.limits.' + name, self.default[name])
+ def __call__(self):
+ x2 = lambda x: (x, x)
+ os.chroot(self.chroot)
+ os.chdir(self.cwd)
+ os.setgid(self.gid)
+ os.setuid(self.uid)
+ rsrc.setrlimit(rsrc.RLIMIT_CPU, x2(self.max_tiempo_cpu))
+ rsrc.setrlimit(rsrc.RLIMIT_AS, x2(self.max_memoria*self.MB))
+ rsrc.setrlimit(rsrc.RLIMIT_FSIZE, x2(self.max_tam_archivo*self.MB)) # XXX calcular en base a archivos esperados?
+ rsrc.setrlimit(rsrc.RLIMIT_NOFILE, x2(self.max_cant_archivos)) #XXX Obtener de archivos esperados?
+ rsrc.setrlimit(rsrc.RLIMIT_NPROC, x2(self.max_cant_procesos))
+ rsrc.setrlimit(rsrc.RLIMIT_MEMLOCK, x2(self.max_locks_memoria))
+ rsrc.setrlimit(rsrc.RLIMIT_CORE, x2(0))
+ log.debug('Proceso segurizado: chroot=%s, cwd=%s, uid=%s, gid=%s, '
+ 'cpu=%s, as=%s, fsize=%s, nofile=%s, nproc=%s, memlock=%s',
+ self.chroot, self.cwd, self.uid, self.gid, self.max_tiempo_cpu,
+ self.max_memoria*self.MB, self.max_tam_archivo*self.MB,
+ self.max_cant_archivos, self.max_cant_procesos,
+ self.max_locks_memoria)
+ # Tratamos de forzar un sync para que entre al sleep del padre FIXME
+ import time
+ time.sleep(0)