forked from serverless-dns/serverless-dns
-
Notifications
You must be signed in to change notification settings - Fork 0
/
run
executable file
·196 lines (169 loc) · 4.73 KB
/
run
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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
#!/bin/sh
set -eu
# this script is for development/test runs only
# defaults: stackoverflow.com/a/16753536
runtime="${1:-node}";
profiler="${2:-$1}";
waitsec="${3:-0}";
qdoh="${QDOH:-invalid}";
echo "run $runtime";
# patorjk.com/software/taag/#p=display&c=echo&f=Small%20Slant&t=r-profiler
profilerbanner() {
echo " ___ _ __ ";
echo " ____ ____ ___ ____ ___ / _/(_)/ /___ ____";
echo " / __//___// _ \ / __// _ \ / _// // // -_)/ __/";
echo "/_/ / .__//_/ \___//_/ /_//_/ \__//_/ ";
echo " /_/ ";
}
# patorjk.com/software/taag/#p=display&c=echo&f=Small%20Slant&t=rethinkdns
banner() {
echo " __ __ _ __ __ ";
echo " ____ ___ / /_ / / (_)___ / /__ ___/ /___ ___";
echo " / __// -_)/ __// _ \ / // _ \ / '_// _ // _ \ (_-<";
echo "/_/ \__/ \__//_//_//_//_//_//_/\_\ \_,_//_//_//___/";
echo " ";
}
cleanup() {
kill $(jobs -p)
}
trap cleanup EXIT
bgcmd() {
$1 &
}
bgsilent() {
$1 >/dev/null 2>&1 &
}
dohquery() {
domain=$1
resolver="https://localhost:8080/"
pstart="${qdoh} -i -t A -s ${resolver} -q ${domain}"
bgsilent "$pstart"
}
reqs() {
while true
do
prefix=$( dd if=/dev/urandom bs=20 count=20 status=none | tr -dc 'A-Z0-9' | xargs echo )
domain="${prefix}.dnsleaktest.com"
dohquery ${domain}
if [ $1 != "0" ]; then
sleep $1
fi
done
}
greqs() {
while true
do
dohquery google.co.pk
dohquery google.co.in
dohquery google.com
dohquery google.co.uk
if [ $1 != "0" ]; then
sleep $1
fi
done
}
if [ $runtime = "help" ] || [ $runtime = "h" ]; then
echo "note: make sure node / deno / wrangler are in path";
echo "usage: $0 [node|deno|workers] [[p1|p2] [waitsec]]";
exit 0;
fi
if [ $runtime = "deno" ] || [ $runtime = "d" ]; then
echo "note: deno v1.17+ required";
echo "using `which deno`";
start="deno run --unstable \
--allow-env \
--allow-net \
--allow-read \
--allow-write \
--import-map=import_map.json \
src/server-deno.ts";
elif [ $runtime = "workers" ] || [ $runtime = "w" ]; then
echo "note: wrangler v1.16+ required";
echo "using `which wrangler`";
start="wrangler dev --verbose";
else
echo "note: nodejs v16+ required";
echo "using `which node`";
# verbose: NODE_DEBUG=http2,http,tls,net... ref: stackoverflow.com/a/46858827
start="node --trace-warnings ./src/server-node.js";
fi
if [ $profiler = "cpu" ]; then
if [ $runtime != "node" ] && [ $runtime != "n" ]; then
echo "profiler (cpu): only on node"
exit 1
fi
echo "profiler (cpu): running clinicjs flame";
echo "profiler (cpu): press ctrl+c to open cpu flame graphs in a browser";
profilerbanner;
npx clinic flame -- $start
elif [ $profiler = "mem" ]; then
if [ $runtime != "node" ] && [ $runtime != "n" ]; then
echo "profiler (mem): only on node"
exit 1
fi
echo "profiler (mem): running clinicjs heapprofile"
echo "profiler (mem): press ctrl+c to open memory flame graphs in a browser"
profilerbanner;
npx clinic heapprofiler -- $start
elif [ $profiler = "fn" ]; then
if [ $runtime != "node" ] && [ $runtime != "n" ]; then
echo "profiler (fn): only on node"
exit 1
fi
echo "profiler (fn): running clinicjs bubbleprof"
echo "profiler (fn): press ctrl+c to open func bubble graphs in a browser"
profilerbanner;
npx clinic bubbleprof -- $start
elif [ $profiler = "profile1" ] || [ $profiler = "p1" ]; then
if [ $qdoh = "invalid" ]; then
echo "Specify env QDOH path"
exit 1
fi
echo "profiler: running doh with fetch";
profilerbanner;
DISABLE_BLOCKLISTS=true \
PROFILE_DNS_RESOLVES=true \
NODE_DOH_ONLY=true \
NODE_AVOID_FETCH=false \
LOG_LEVEL=warn \
$start &
sleep 1
reqs "$waitsec"
elif [ $profiler = "profile2" ] || [ $profiler = "p2" ]; then
if [ ${qdoh} = "invalid" ]; then
echo "Specify env QDOH path"
exit 1
fi
echo "profiler: running non-fetch doh";
profilerbanner;
DISABLE_BLOCKLISTS=true \
PROFILE_DNS_RESOLVES=true \
NODE_DOH_ONLY=true \
NODE_AVOID_FETCH=true \
LOG_LEVEL=warn \
$start &
sleep 1
reqs "$waitsec"
elif [ $profiler = "profile3" ] || [ $profiler = "p3" ]; then
if [ ${qdoh} = "invalid" ]; then
echo "Specify env QDOH path"
exit 1
fi
if [ $runtime != "node" ] && [ $runtime != "n" ]; then
echo "Profile3 only valid on Node"
exit 1
fi
echo "profiler: running podns";
profilerbanner;
DISABLE_BLOCKLISTS=true \
PROFILE_DNS_RESOLVES=true \
NODE_DOH_ONLY=false \
LOG_LEVEL=warn \
$start &
sleep 1
reqs "$waitsec"
else
banner;
bgcmd "$start"
fi
wait