-
Notifications
You must be signed in to change notification settings - Fork 2.4k
/
go.sh
559 lines (514 loc) · 15 KB
/
go.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
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
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
#!/bin/bash
# This file is accessible as https://multi.netlify.app/go.sh
# If not specify, default meaning of return value:
# 0: Success
# 1: System error
# 2: Application error
# 3: Network error
# CLI arguments
proxy=''
help=''
force=''
check=''
remove=''
version=''
vsrc_root='/tmp/v2ray'
extract_only=''
local=''
local_install=''
error_if_uptodate=''
cur_ver=""
new_ver=""
zipfile="/tmp/v2ray/v2ray.zip"
v2ray_running=0
cmd_install=""
cmd_update=""
software_updated=0
key="V2Ray"
key_lower="v2ray"
repos="v2fly/v2ray-core"
systemctl_cmd=$(command -v systemctl 2>/dev/null)
#######color code########
red="31m" # Error message
green="32m" # Success message
yellow="33m" # Warning message
blue="36m" # Info message
xray_set(){
key="Xray"
key_lower="xray"
repos="XTLS/Xray-core"
vsrc_root='/tmp/xray'
zipfile="/tmp/xray/xray.zip"
}
#########################
while [[ $# > 0 ]]; do
case "$1" in
-p|--proxy)
proxy="-x ${2}"
shift # past argument
;;
-h|--help)
help="1"
;;
-f|--force)
force="1"
;;
-c|--check)
check="1"
;;
-x|--xray)
xray_set
;;
--remove)
remove="1"
;;
--version)
version="$2"
shift
;;
--extract)
vsrc_root="$2"
shift
;;
--extractonly)
extract_only="1"
;;
-l|--local)
local="$2"
local_install="1"
shift
;;
--errifuptodate)
error_if_uptodate="1"
;;
*)
# unknown option
;;
esac
shift # past argument or value
done
###############################
colorEcho(){
echo -e "\033[${1}${@:2}\033[0m" 1>& 2
}
archAffix(){
case "$(uname -m)" in
'i386' | 'i686')
machine='32'
;;
'amd64' | 'x86_64')
machine='64'
;;
'armv5tel')
machine='arm32-v5'
;;
'armv6l')
machine='arm32-v6'
grep Features /proc/cpuinfo | grep -qw 'vfp' || machine='arm32-v5'
;;
'armv7' | 'armv7l')
machine='arm32-v7a'
grep Features /proc/cpuinfo | grep -qw 'vfp' || machine='arm32-v5'
;;
'armv8' | 'aarch64')
machine='arm64-v8a'
;;
'mips')
machine='mips32'
;;
'mipsle')
machine='mips32le'
;;
'mips64')
machine='mips64'
;;
'mips64le')
machine='mips64le'
;;
'ppc64')
machine='ppc64'
;;
'ppc64le')
machine='ppc64le'
;;
'riscv64')
machine='riscv64'
;;
's390x')
machine='s390x'
;;
*)
echo "error: The architecture is not supported."
exit 1
;;
esac
return 0
}
zipRoot() {
unzip -lqq "$1" | awk -e '
NR == 1 {
prefix = $4;
}
NR != 1 {
prefix_len = length(prefix);
cur_len = length($4);
for (len = prefix_len < cur_len ? prefix_len : cur_len; len >= 1; len -= 1) {
sub_prefix = substr(prefix, 1, len);
sub_cur = substr($4, 1, len);
if (sub_prefix == sub_cur) {
prefix = sub_prefix;
break;
}
}
if (len == 0) {
prefix = "";
nextfile;
}
}
END {
print prefix;
}
'
}
downloadV2Ray(){
rm -rf /tmp/$key_lower
mkdir -p /tmp/$key_lower
local pack_name=$key_lower
[[ $key == "Xray" ]] && pack_name=$key
download_link="https://github.com/$repos/releases/download/${new_ver}/${pack_name}-linux-${machine}.zip"
colorEcho ${blue} "Downloading $key: ${download_link}"
curl ${proxy} -L -H "Cache-Control: no-cache" -o ${zipfile} ${download_link}
if [ $? != 0 ];then
colorEcho ${red} "Failed to download! Please check your network or try again."
return 3
fi
return 0
}
installSoftware(){
component=$1
if [[ -n `command -v $component` ]]; then
return 0
fi
getPMT
if [[ $? -eq 1 ]]; then
colorEcho ${red} "The system package manager tool isn't APT or YUM, please install ${component} manually."
return 1
fi
if [[ $software_updated -eq 0 ]]; then
colorEcho ${blue} "Updating software repo"
$cmd_update
software_updated=1
fi
colorEcho ${blue} "Installing ${component}"
$cmd_install $component
if [[ $? -ne 0 ]]; then
colorEcho ${red} "Failed to install ${component}. Please install it manually."
return 1
fi
return 0
}
# return 1: not apt, yum, or zypper
getPMT(){
if [[ -n `command -v apt-get` ]];then
cmd_install="apt-get -y -qq install"
cmd_update="apt-get -qq update"
elif [[ -n `command -v yum` ]]; then
cmd_install="yum -y -q install"
cmd_update="yum -q makecache"
elif [[ -n `command -v zypper` ]]; then
cmd_install="zypper -y install"
cmd_update="zypper ref"
else
return 1
fi
return 0
}
normalizeVersion() {
if [ -n "$1" ]; then
case "$1" in
v*)
echo "$1"
;;
*)
echo "v$1"
;;
esac
else
echo ""
fi
}
# 1: new V2Ray. 0: no. 2: not installed. 3: check failed. 4: don't check.
getVersion(){
if [[ -n "$version" ]]; then
new_ver="$(normalizeVersion "$version")"
return 4
else
ver="$(/usr/bin/$key_lower/$key_lower -version 2>/dev/null)"
[[ -z $ver ]] && ver="$(/usr/bin/$key_lower/$key_lower version 2>/dev/null)"
retval=$?
cur_ver="$(normalizeVersion "$(echo "$ver" | head -n 1 | cut -d " " -f2)")"
tag_url="https://api.github.com/repos/$repos/releases/latest"
new_ver="$(normalizeVersion "$(curl ${proxy} -H "Accept: application/json" -H "User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:74.0) Gecko/20100101 Firefox/74.0" -s "${tag_url}" --connect-timeout 10| grep 'tag_name' | cut -d\" -f4)")"
if [[ $? -ne 0 ]] || [[ $new_ver == "" ]]; then
colorEcho ${red} "Failed to fetch release information. Please check your network or try again."
return 3
elif [[ $retval -ne 0 ]];then
return 2
elif [[ $new_ver != $cur_ver ]];then
return 1
fi
return 0
fi
}
stopV2ray(){
colorEcho ${blue} "Shutting down $key service."
if [[ -n "${systemctl_cmd}" ]] || [[ -f "/lib/systemd/system/$key_lower.service" ]] || [[ -f "/etc/systemd/system/$key_lower.service" ]]; then
${systemctl_cmd} stop $key_lower
fi
if [[ $? -ne 0 ]]; then
colorEcho ${yellow} "Failed to shutdown $key service."
return 2
fi
return 0
}
startV2ray(){
if [ -n "${systemctl_cmd}" ] && [[ -f "/lib/systemd/system/$key_lower.service" || -f "/etc/systemd/system/$key_lower.service" ]]; then
${systemctl_cmd} start $key_lower
fi
if [[ $? -ne 0 ]]; then
colorEcho ${yellow} "Failed to start $key service."
return 2
fi
return 0
}
installV2Ray(){
# Install $key binary to /usr/bin/$key_lower
if [[ $key == "V2Ray" && `unzip -l $1|grep v2ctl` ]];then
unzip_param="$2v2ctl"
chmod_param="/usr/bin/$key_lower/v2ctl"
fi
mkdir -p /etc/$key_lower /var/log/$key_lower && \
unzip -oj "$1" "$2${key_lower}" "$2geoip.dat" "$2geosite.dat" $unzip_param -d /usr/bin/$key_lower && \
chmod +x /usr/bin/$key_lower/$key_lower $chmod_param || {
colorEcho ${red} "Failed to copy $key binary and resources."
return 1
}
# Install V2Ray server config to /etc/v2ray
if [ ! -f /etc/$key_lower/config.json ]; then
local port="$(($RANDOM + 10000))"
local uuid="$(cat '/proc/sys/kernel/random/uuid')"
if [[ $key == "Xray" ]];then
cat > /etc/$key_lower/config.json <<EOF
{
"inbounds": [{
"port": 10086,
"protocol": "vmess",
"settings": {
"clients": [
{
"id": "23ad6b10-8d1a-40f7-8ad0-e3e35cd38297",
"level": 1,
"alterId": 64
}
]
}
}],
"outbounds": [{
"protocol": "freedom",
"settings": {}
},{
"protocol": "blackhole",
"settings": {},
"tag": "blocked"
}],
"routing": {
"rules": [
{
"type": "field",
"ip": ["geoip:private"],
"outboundTag": "blocked"
}
]
}
}
EOF
sed -i "s/10086/${port}/g; s/23ad6b10-8d1a-40f7-8ad0-e3e35cd38297/${uuid}/g;" /etc/$key_lower/config.json
else
unzip -pq "$1" "$2vpoint_vmess_freedom.json" | \
sed -e "s/10086/${port}/g; s/23ad6b10-8d1a-40f7-8ad0-e3e35cd38297/${uuid}/g;" - > \
/etc/$key_lower/config.json || {
colorEcho ${yellow} "Failed to create $key configuration file. Please create it manually."
return 1
}
fi
colorEcho ${blue} "port:${port}"
colorEcho ${blue} "uuid:${uuid}"
fi
}
installInitScript(){
if [[ -e /.dockerenv ]]; then
if [[ $key_lower == "v2ray" ]];then
if [[ ${new_ver} =~ "v4" ]];then
sed -i "s/run -c/-config/g" /root/run.sh
else
sed -i "s/-config/run -c/g" /root/run.sh
fi
fi
return
fi
if [[ ! -f "/etc/systemd/system/$key_lower.service" && ! -f "/lib/systemd/system/$key_lower.service" ]]; then
cat > /etc/systemd/system/$key_lower.service <<EOF
[Unit]
Description=${key} Service
After=network.target nss-lookup.target
[Service]
Type=simple
User=root
CapabilityBoundingSet=CAP_NET_ADMIN CAP_NET_BIND_SERVICE
AmbientCapabilities=CAP_NET_ADMIN CAP_NET_BIND_SERVICE
NoNewPrivileges=true
ExecStart=/usr/bin/$key_lower/$key_lower run -c /etc/$key_lower/config.json
Restart=on-failure
[Install]
WantedBy=multi-user.target
EOF
systemctl enable $key_lower.service
fi
if [[ $key_lower == "v2ray" ]];then
local modify_service=0
local check_run="`cat /etc/systemd/system/$key_lower.service|grep ExecStart|grep run`"
if [[ ${new_ver} =~ "v4" ]];then
if [[ $check_run ]];then
modify_service=1
sed -i "s?^ExecStart.*?ExecStart=/usr/bin/$key_lower/$key_lower -config /etc/$key_lower/config.json?g" /etc/systemd/system/$key_lower.service
fi
elif [[ -z $check_run ]];then
modify_service=1
sed -i "s?^ExecStart.*?ExecStart=/usr/bin/$key_lower/$key_lower run -c /etc/$key_lower/config.json?g" /etc/systemd/system/$key_lower.service
fi
if [[ $modify_service == 1 ]];then
systemctl daemon-reload
systemctl restart $key_lower
fi
fi
}
Help(){
cat - 1>& 2 << EOF
./go.sh [-h] [-c] [--remove] [-p proxy] [-f] [--version vx.y.z] [-l file] [-x]
-h, --help Show help
-p, --proxy To download through a proxy server, use -p socks5://127.0.0.1:1080 or -p http://127.0.0.1:3128 etc
-f, --force Force install
--version Install a particular version, use --version v3.15
-l, --local Install from a local file
--remove Remove installed V2Ray/Xray
-x, --xray Xray mod
-c, --check Check for update
EOF
}
remove(){
if [[ -n "${systemctl_cmd}" ]] && [[ -f "/etc/systemd/system/$key_lower.service" ]];then
if pgrep "$key_lower" > /dev/null ; then
stopV2ray
fi
systemctl disable $key_lower.service
rm -rf "/usr/bin/$key_lower" "/etc/systemd/system/$key_lower.service"
if [[ $? -ne 0 ]]; then
colorEcho ${red} "Failed to remove $key."
return 0
else
colorEcho ${green} "Removed $key successfully."
colorEcho ${blue} "If necessary, please remove configuration file and log file manually."
return 0
fi
elif [[ -n "${systemctl_cmd}" ]] && [[ -f "/lib/systemd/system/$key_lower.service" ]];then
if pgrep "$key_lower" > /dev/null ; then
stopV2ray
fi
systemctl disable $key_lower.service
rm -rf "/usr/bin/$key_lower" "/lib/systemd/system/$key_lower.service"
if [[ $? -ne 0 ]]; then
colorEcho ${red} "Failed to remove $key."
return 0
else
colorEcho ${green} "Removed $key successfully."
colorEcho ${blue} "If necessary, please remove configuration file and log file manually."
return 0
fi
else
colorEcho ${yellow} "$key not found."
return 0
fi
}
checkUpdate(){
echo "Checking for update."
version=""
getVersion
retval="$?"
if [[ $retval -eq 1 ]]; then
colorEcho ${blue} "Found new version ${new_ver} for $key.(Current version:$cur_ver)"
elif [[ $retval -eq 0 ]]; then
colorEcho ${blue} "No new version. Current version is ${new_ver}."
elif [[ $retval -eq 2 ]]; then
colorEcho ${yellow} "No $key installed."
colorEcho ${blue} "The newest version for $key is ${new_ver}."
fi
return 0
}
main(){
#helping information
[[ "$help" == "1" ]] && Help && return
[[ "$check" == "1" ]] && checkUpdate && return
[[ "$remove" == "1" ]] && remove && return
local arch=$(uname -m)
archAffix
# extract local file
if [[ $local_install -eq 1 ]]; then
colorEcho ${yellow} "Installing $key via local file. Please make sure the file is a valid $key package, as we are not able to determine that."
new_ver=local
rm -rf /tmp/$key_lower
zipfile="$local"
else
# download via network and extract
installSoftware "curl" || return $?
getVersion
retval="$?"
if [[ $retval == 0 ]] && [[ "$force" != "1" ]]; then
colorEcho ${blue} "Latest version ${cur_ver} is already installed."
if [ -n "${error_if_uptodate}" ]; then
return 10
fi
return
elif [[ $retval == 3 ]]; then
return 3
else
colorEcho ${blue} "Installing $key ${new_ver} on ${arch}"
downloadV2Ray || return $?
fi
fi
local ziproot="$(zipRoot "${zipfile}")"
installSoftware unzip || return $?
if [ -n "${extract_only}" ]; then
colorEcho ${blue} "Extracting $key package to ${vsrc_root}."
if unzip -o "${zipfile}" -d ${vsrc_root}; then
colorEcho ${green} "$key extracted to ${vsrc_root%/}${ziproot:+/${ziproot%/}}, and exiting..."
return 0
else
colorEcho ${red} "Failed to extract $key."
return 2
fi
fi
if pgrep "$key_lower" > /dev/null ; then
v2ray_running=1
stopV2ray
fi
installV2Ray "${zipfile}" "${ziproot}" || return $?
installInitScript "${zipfile}" "${ziproot}" || return $?
if [[ ${v2ray_running} -eq 1 ]];then
colorEcho ${blue} "Restarting $key service."
startV2ray
fi
colorEcho ${green} "$key ${new_ver} is installed."
rm -rf /tmp/$key_lower
return 0
}
main