+ log.debug(_(u'Descomprimiendo archivo %s'), f)
+ file(join(dst, f), 'w').write(zfile.read(f))
+#}}}
+
+def get_pwdgrp(unam, gnam): #{{{
+ def do(type, funcnam, funcid, name):
+ try:
+ id = funcnam(name)[2]
+ except:
+ try:
+ id = int(name)
+ name = funcid(id)[0]
+ except Exception, e:
+ log.critical(_(u'No existe el %s %s (%s)'), type, name, e)
+ sys.exit(1)
+ return (id, name)
+ return do('usuario', pwd.getpwnam, pwd.getpwuid, unam) \
+ + do('grupo', grp.getgrnam, grp.getgrgid, gnam)
+#}}}
+
+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,
+ )
+ uid = config.get('sercom.tester.chroot.user', 65534)
+ gid = config.get('sercom.tester.chroot.group', 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)
+ (uid, unam, gid, gnam) = get_pwdgrp(self.uid, self.gid)
+ os.setgid(gid)
+ os.setuid(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, user=%s(%s), '
+ 'group=%s(%s), cpu=%s, as=%sMiB, fsize=%sMiB, nofile=%s, nproc=%s, '
+ 'memlock=%s', self.chroot, self.cwd, unam, uid, gnam, gid,
+ self.max_tiempo_cpu, self.max_memoria, self.max_tam_archivo,
+ 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)