forked from mjnaderi/Sharif-Judge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathruncode.sh
executable file
·73 lines (57 loc) · 1.79 KB
/
runcode.sh
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
#!/bin/bash
# This file runs a command with given limits
# usage: ./runcode.sh extension memorylimit timelimit timelimit_int input_file command
EXT=$1
shift
MEMLIMIT=$1
shift
TIMELIMIT=$1
shift
TIMELIMITINT=$1
shift
IN=$1
shift
# The Command:
CMD=$@
# detecting existence of timeout
TIMEOUT_EXISTS=true
hash timeout 2>/dev/null || TIMEOUT_EXISTS=false
if [ $EXT == "py2" ]; then
mem=$(pid=$(python2 >/dev/null 2>/dev/null & echo $!) && ps -p $pid -o vsz=; kill $pid >/dev/null 2>/dev/null;)
MEMLIMIT=$((MEMLIMIT+mem+5000))
elif [ $EXT == "py3" ]; then
mem=$(pid=$(python3 >/dev/null 2>/dev/null & echo $!) && ps -p $pid -o vsz=; kill $pid >/dev/null 2>/dev/null;)
MEMLIMIT=$((MEMLIMIT+mem+5000))
fi
# Imposing memory limit with ulimit
if [ "$EXT" != "java" ]; then
ulimit -v $((MEMLIMIT+10000))
ulimit -m $((MEMLIMIT+10000))
ulimit -s $((MEMLIMIT+10000))
fi
# Imposing time limit with ulimit
ulimit -t $TIMELIMITINT
if $TIMEOUT_EXISTS; then
# Run the command with REAL time limit of TIMELIMITINT*2
timeout -s9 $((TIMELIMITINT*2)) $CMD <$IN >out 2>err
else
# Run the command
$CMD <$IN >out 2>err
fi
# You can run submitted codes as another user:
#
# if $TIMEOUT_EXISTS; then
# sudo -u another_user timeout -s9 $((TIMELIMITINT*2)) $CMD <$IN >out 2>err
# else
# sudo -u another_user $CMD <$IN >out 2>err
# fi
#
# But you should change your sudoers file and allow the user running PHP (e.g. www-data in Ubuntu+Apache) to su to another_user
# e.g. In Ubuntu (Apache running under www-data), run visudo and add this line:
# www-data ALL=(another_user) NOPASSWD: ALL
EC=$?
# KILL all processes of another_user (A process may still be alive!)
# If you are running codes as another_user, also uncomment this line:
#sudo -u another_user pkill -9 -u another_user
# Return exitcode
exit $EC