-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcontest.sh
executable file
·165 lines (140 loc) · 3.75 KB
/
contest.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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
#!/bin/sh
# This needs to run as root!
contestprep()
{
CONTESTID=$1
# Prepare system for contest. This is run BEFORE start of contest.
# init 3
pkill -9 -u ioi
UID=$(id -u ioi)
EPASSWD=$(grep ioi /etc/shadow | cut -d: -f2)
FULLNAME=$(grep ^ioi: /etc/passwd | cut -d: -f5 | cut -d, -f1)
# Forces removal of home directory and mail spool
userdel -rf ioi > /dev/null 2>&1
# Remove all other user files in /tmp and /var/tmp
find /tmp -user $UID -exec rm -rf {} \;
find /var/tmp -user $UID -exec rm -rf {} \;
# Recreate submissions directory
rm -rf /opt/ioi/store/submissions
mkdir /opt/ioi/store/submissions
chown $UID.$UID /opt/ioi/store/submissions
# Remove screenshot data
rm /opt/ioi/store/screenshots/*
/opt/ioi/sbin/mkioiuser.sh
# Detect cases where the crypt password is invalid, and if so set default passwd
if [ ${#EPASSWD} -gt 5 ]; then
echo "ioi:$EPASSWD" | chpasswd -e
else
echo "ioi:ioi" | chpasswd
fi
chfn -f "$FULLNAME" ioi
/opt/ioi/sbin/firewall.sh start
USER=$(/opt/ioi/bin/ioicheckuser -q)
echo "$USER" > /opt/ioi/run/userid.txt
echo "$CONTESTID" > /opt/ioi/run/contestid.txt
echo "$CONTESTID" > /opt/ioi/run/lockdown
# init 5
}
schedule()
{
# Remove existing jobs that were created by this script
for i in `atq | cut -f1`; do
if at -c $i | grep -q '# AUTO-CONTEST-SCHEDULE'; then
atrm $i
fi
done
while IFS=" " read date time cmd
do
cat - <<EOM | at $time $date 2> /dev/null
# AUTO-CONTEST-SCHEDULE
$cmd
EOM
#echo $date, $time, $cmd
done < /opt/ioi/misc/schedule
}
monitor()
{
DATE=$(date +%Y%m%d%H%M%S)
DISPLAY=:0.0 sudo -u ioi xhost +local:root > /dev/null
echo "$DATE monitor run" >> /opt/ioi/store/contest.log
# capture screen every minute but with 50% chance
if [ $(seq 2 | shuf | head -1) -eq 2 ]; then
USER=$(cat /opt/ioi/run/userid.txt)
DISPLAY=:0.0 xwd -root -silent | convert xwd:- png:- | bzip2 -c - \
> /opt/ioi/store/screenshots/$USER-$DATE.png.bz2
fi
RESOLUTION=$(DISPLAY=:0.0 xdpyinfo | grep dimensions | awk '{print $2}')
if [ -f /opt/ioi/run/resolution ]; then
if [ "$RESOLUTION" != "$(cat /opt/ioi/run/resolution)" ]; then
logger -p local0.alert "MONITOR: Display resolution changed to $RESOLUTION"
echo "$RESOLUTION" > /opt/ioi/run/resolution
fi
else
echo "$RESOLUTION" > /opt/ioi/run/resolution
logger -p local0.info "MONITOR: Display resolution is $RESOLUTION"
fi
# Check if auto backups are requested
if [ -f /opt/ioi/config/autobackup ]; then
# This script runs every minute, but we want to only do backups every 5 mins
if [ $(( $(date +%s) / 60 % 5)) -eq 0 ]; then
# Insert a random delay up to 30 seconds so backups don't all start at the same time
sleep $(seq 30 | shuf | head -1)
/opt/ioi/bin/ioibackup.sh > /dev/null &
fi
fi
}
lock()
{
passwd -l ioi
cat - <<EOM > /etc/gdm3/greeter.dconf-defaults
[org/gnome/login-screen]
banner-message-enable=true
banner-message-text='The contest is about to start.\nYour computer is temporarily locked.\nYou are not allowed to log in yet.\nPlease wait for further instructions.'
EOM
systemctl restart gdm3
}
unlock()
{
passwd -u ioi
cat - <<EOM > /etc/gdm3/greeter.dconf-defaults
[org/gnome/login-screen]
banner-message-enable=false
EOM
systemctl restart gdm3
}
logger -p local0.info "CONTEST: execute '$@'"
case "$1" in
lock)
lock
;;
unlock)
unlock
;;
prep)
contestprep $2
unlock
;;
start)
logkeys --start --keymap /opt/ioi/misc/en_US_ubuntu_1204.map
echo "* * * * * root /opt/ioi/sbin/contest.sh monitor" > /etc/cron.d/contest
;;
stop)
logkeys --kill
rm /etc/cron.d/contest
;;
done)
/opt/ioi/sbin/firewall.sh stop
rm /opt/ioi/run/lockdown
rm /opt/ioi/run/contestid.txt
rm /opt/ioi/run/userid.txt
;;
schedule)
schedule
;;
monitor)
monitor
;;
*)
;;
esac
# vim: ft=sh ts=4 noet