# Módulos estándar
import os
-import sys
import pwd
import time
import signal
-import locale
import shutil
import datetime
-import logging
-import logging.config
-import ConfigParser
-# Módulos externos
-import sqlobject
+import subprocess
# Módulos locales
+import sercom
from sercom.dbo import *
-class secure:
+class secure_process:
def __init__(self, chroot, uid, gid, cpu):
self.chroot = chroot
self.uid = uid
chroot(self.chroot)
setgid(self.gid)
setuid(self.uid)
- resource.setrlimit(resource.RLIMIT_AS, 20*1024*1024)
- resource.setrlimit(resource.RLIMIT_CORE, 0)
- resource.setrlimit(resource.RLIMIT_CPU, (self.cpu, self.cpu))
- resource.setrlimit(resource.RLIMIT_DATA, 20*1024*1024)
- resource.setrlimit(resource.RLIMIT_FSIZE, 20*1024*1024) #XXX Obtener de archivos esperados?
- resource.setrlimit(resource.RLIMIT_LOCKS, 100)
- resource.setrlimit(resource.RLIMIT_MEMLOCK, 100)
- resource.setrlimit(resource.RLIMIT_NOFILE, 100)
- resource.setrlimit(resource.RLIMIT_NPROC, 0)
-
-def logger():
- log = None
- for log_conf in ('log.ini', os.path.expanduser('~/.sercom/log.ini'), '/etc/sercom/log.ini'):
- if (os.access(log_conf, os.R_OK)):
- logging.config.fileConfig(log_conf)
- log = logging.getLogger('test')
- return log
+ x2 = lambda val: (val, val) # Devuelve una tupla con val 2 veces
+ resource.setrlimit(resource.RLIMIT_AS, x2(20*1024*1024))
+ resource.setrlimit(resource.RLIMIT_CORE, x2(0))
+ resource.setrlimit(resource.RLIMIT_CPU, x2(self.cpu))
+ resource.setrlimit(resource.RLIMIT_DATA, x2(20*1024*1024))
+ resource.setrlimit(resource.RLIMIT_FSIZE, x2(20*1024*1024)) #XXX Obtener de archivos esperados?
+ #resource.setrlimit(resource.RLIMIT_LOCKS, x2(100)) XXX NO EXISTE EN python
+ resource.setrlimit(resource.RLIMIT_MEMLOCK, x2(100))
+ resource.setrlimit(resource.RLIMIT_NOFILE, x2(100))
+ resource.setrlimit(resource.RLIMIT_NPROC, x2(0))
def sigchld(signum, frame):
"""Signal handler para SIGCHILD."""
continuar = False
log.debug('Señal %d recibida', signum)
+# Conecto señales
+signal.signal(signal.SIGCHLD, sigchld)
+signal.signal(signal.SIGTERM, sigterm)
+signal.signal(signal.SIGINT, sigterm)
-# Seteo locale
-locale.setlocale(locale.LC_ALL, '')
-
-# Obtengo configuración
-conf = ConfigParser.SafeConfigParser()
-if not conf.read(('/etc/sercom/sercom.ini', os.path.expanduser('~/.sercom/sercom.ini'), 'sercom.ini')):
- sys.stderr.write('No se pudo obtener configuración!\n')
- sys.exit(1)
+# Inicializo
+conf, conn, log = sercom.init('test')
+log.info('Iniciado')
# Obtengo id de usuario con el cual ejecutar las pruebas
(uid, gid) = pwd.getpwnam(conf.get('general', 'user'))[2:4]
# Cambio UID efectivo
os.seteuid(uid)
-# Seteo umask para que el grupo pueda leer
-os.umask(00027)
-
-# Conecto señales
-signal.signal(signal.SIGCHLD, sigchld)
-signal.signal(signal.SIGTERM, sigterm)
-signal.signal(signal.SIGINT, sigterm)
-
-# Conexión a la DB
-conn = sqlobject.connectionForURI(conf.get('dbo', 'database'))
-
-# Cargo config del logger
-log = logger()
-if not log:
- print >>sys.stderr, 'No se pudo cargar archivo de configuración de log.'
- sys.exit(1)
-log.info('Iniciado')
-
# Algunas variables de configuración útiles
data_dir = conf.get('general', 'data_dir')
intervalo = float(conf.get('general', 'intervalo'))
log.info('Nuevo intento a probar (%s)', intento)
# Obtengo paths
intento_dir = os.path.join(data_dir, intento.path('intentos'))
- entrega_dir = os.path.join(data_dir, intento.path('entregas'))
+ entrega_dir = os.path.join(data_dir, 'ejercicios', str(intento.entrega.ejercicioID))
+ print entrega_dir
# Busco makefile
makefile = os.path.join(entrega_dir, 'Makefile')
if not os.path.exists(makefile):
makefile = os.path.join(data_dir, 'Makefile')
shutil.copy(makefile, intento_dir)
# Compilo
- log.debug('A punto de ejecutar el comando: make -f %s', makefile)
+ log.debug('Ejecutando: make -f %s', makefile)
intento.inicioCompila = datetime.datetime.now()
- make = subprocess.Popen(('make', '-f', makefile), stdout=subproccess.PIPE,
- stderr=subproccess.PIPE, cwd=intento_dir)
+ make = subprocess.Popen(('make', '-f', makefile), stdout=subprocess.PIPE,
+ stderr=subprocess.PIPE, cwd=intento_dir)
make.wait()
intento.finCompila = datetime.datetime.now()
log.debug('Fin del comando: make -f %s', makefile)
# Verifico compilación
if make.returncode:
log.debug('Error al compilar, código de retorno: %d, salida estándar: '
- '%s, salida de error: %s)', make.retcode, make.stdout.read(),
+ '%s, salida de error: %s)', make.returncode, make.stdout.read(),
make.stderr.read())
intento.compila = False
#TODO enviar_respuesta(R_ERR, $mail, "ERROR AL COMPILAR!\n\n$err\n\nCódigo de retorno: $ret\n", $intento);
tiempo_cpu = caso_de_prueba.tiempoCpu
if tiempo_cpu is None:
tiempo_cpu = conf.get('general', 'tiempo_cpu')
+ tiempo_cpu = int(tiempo_cpu)
# Creo prueba nueva
- prueba = Prueba(intento.id, caso_de_prueba.id, datetime.datetime.now())
+ prueba = Prueba(intento=intento, casoDePrueba=caso_de_prueba,
+ inicio=datetime.datetime.now(), connection = conn)
log.debug('Prueba: %s', prueba)
# Abro archivos para fds básicos
#XXX sacar nombres de archivos de prueba????
- stdin = file(os.path.join(intento_dir, 'stdin'), 'r')
+ #stdin = file(os.path.join(intento_dir, 'stdin'), 'r')
stdout = file(os.path.join(intento_dir, 'stdout'), 'w')
stderr = file(os.path.join(intento_dir, 'stderr'), 'w')
# Ejecuto programa
- log.debug('Ejecutando /tp %s', prueba.params)
+ log.debug('Ejecutando /tp %s', caso_de_prueba.parametros)
os.seteuid(0) # Dios! (para chroot)
- proc = subprocess.Popen('/tp', stdin=stdin, stdout=stdout, stderr=stderr,
- preexec_fn=secure(chroot_dir, uid, gid, tiempo_cpu))
+ # FIXME caso_de_prueba.parametros
+ try:
+ proc = subprocess.Popen('/tp', stdout=stdout, stderr=stderr, #stdin=stdin,
+ preexec_fn=secure_process(chroot_dir, uid, gid, tiempo_cpu))
+ except Exception, e: # FIXME poner en el manejo de exceptiones estandar
+ try:
+ print e, e.child_traceback
+ except:
+ print e
os.seteuid(uid) # Mortal de nuevo
time.sleep(tiempo_cpu)
# Si el proceso sigue andando lo tenemos que matar
prueba.pasada = False
continue
proc.wait() # Para que no queden zombies
- prueba.fin = datetime.datetime.now()
+ prueba.fin = str(datetime.datetime.now())
# Salió con una señal?
if proc.returncode < 0:
sig = -proc.returncode
#TODO verificar salidas, hacer diff
log.debug('Fin de ejecución de caso de prueba (hijo: %d, ret: %d)',
proc.pid, proc.returncode)
- log.debug('Prueba OK')
prueba.pasada = True
+ log.debug('Prueba OK: %s', prueba)
intento.finPruebas = datetime.datetime.now()
#TODO make clean
#TODO Armar mail de respuesta al alumno
- for prueba in Prueba.selectBy(conn, Prueba.q.intento == intento):
+ for prueba in Prueba.selectBy(intentoID=intento.id, connection=conn):
#TODO Si es publica, veo si se hizo ok o no y voy creando mail
pass
- time.sleep(conf.get('general', 'intervalo'))
+ time.sleep(intervalo)