-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrun.sh
executable file
·78 lines (63 loc) · 1.85 KB
/
run.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
#!/usr/bin/env bash
# Author: Adrien Mahieux
# Twitter: @saruspete
# License: "THE BEER-WARE LICENSE" (Revision 42):
# As long as you retain this notice you can do whatever you want with this stuff.
# If we meet some day, and you think this stuff is worth it, you can buy me a beer in return
typeset MYSELF="$(realpath $0)"
typeset MYPATH="${MYSELF%/*}"
set -o nounset -o noclobber
export LC_ALL=C
export PATH="/bin:/sbin:/usr/bin:/usr/sbin:$PATH"
export PS4=' (${BASH_SOURCE##*/}:$LINENO ${FUNCNAME[0]:-main}) '
function die {
echo >&2 "$@"
exit 1
}
function sysctlSet {
typeset sysctl="$1"
typeset value="$2"
typeset valCurr="$(sysctl "$sysctl" 2>/dev/null)"
valCurr="${valCurr##*= }"
if [[ "$valCurr" -lt "$value" ]]; then
if [[ $UID != 0 ]]; then
echo >&2 "ERR: You are not root, cannot increase sysctl '$sysctl' from '$valCurr' to '$value'"
else
sysctl "$sysctl=$value"
fi
fi
}
function rlimitSet {
typeset ulim="$1"
typeset uval="$2"
typeset valCurr="$(ulimit -$ulim)"
if [[ "$valCurr" != "$uval" ]]; then
if ! ulimit -$ulim "$uval" 2>/dev/null; then
if [[ $UID -ne 0 ]]; then
echo >&2 "ERR: You are not root. Cannot increase ulimit '$ulim' from '$valCurr' to '$uval'"
else
echo >&2 "ERR: Limit '$uval' too high for '$ulim'. Check your /etc/security/limits.conf"
fi
fi
fi
}
function loadavgGet1 {
typeset avg="$(</proc/loadavg)"
echo "${avg%% *}"
}
# Check for compilation
if ! [[ -x "$MYPATH/clone" ]] || [[ "$MYPATH/clone.c" -nt "$MYPATH/clone" ]]; then
echo "Compiling clone..."
cc -static -Wall $MYPATH/clone.c -o $MYPATH/clone || die "Compilation error"
fi
# Check for limits
rlimitSet u unlimited
rlimitSet s unlimited
sysctlSet kernel.pid_max 4194304
sysctlSet kernel.threads-max 4194304
# Run the app
# Will consume a lot of task_struct
typeset load="${1:-max}"
shift
taskset -c 1,2 ./clone "$load" "$@"
uptime