1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-28 18:25:23 +00:00
v2fly/release/install-release.sh

493 lines
14 KiB
Bash
Raw Normal View History

2015-12-03 09:58:31 +00:00
#!/bin/bash
2016-07-27 21:40:47 +00:00
# This file is accessible as https://install.direct/go.sh
2016-08-21 16:02:12 +00:00
# Original source is located at github.com/v2ray/v2ray-core/release/install-release.sh
2016-07-27 21:40:47 +00:00
2018-04-12 08:56:00 +00:00
# If not specify, default meaning of return value:
2018-04-12 13:56:19 +00:00
# 0: Success
2018-04-12 08:56:00 +00:00
# 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=''
DIST_SRC='github'
ERROR_IF_UPTODATE=''
2016-12-31 13:44:52 +00:00
CUR_VER=""
NEW_VER=""
VDIS=''
2016-12-31 13:44:52 +00:00
ZIPFILE="/tmp/v2ray/v2ray.zip"
V2RAY_RUNNING=0
CMD_INSTALL=""
CMD_UPDATE=""
SOFTWARE_UPDATED=0
2018-04-14 07:34:59 +00:00
SYSTEMCTL_CMD=$(command -v systemctl 2>/dev/null)
SERVICE_CMD=$(command -v service 2>/dev/null)
2016-12-31 13:44:52 +00:00
#######color code########
2018-04-14 07:10:10 +00:00
RED="31m" # Error message
GREEN="32m" # Success message
YELLOW="33m" # Warning message
BLUE="36m" # Info message
2017-01-02 13:02:54 +00:00
2016-12-31 13:44:52 +00:00
#########################
while [[ $# > 0 ]]; do
case "$1" in
2016-12-31 13:44:52 +00:00
-p|--proxy)
PROXY="-x ${2}"
shift # past argument
;;
-h|--help)
HELP="1"
;;
-f|--force)
FORCE="1"
;;
-c|--check)
CHECK="1"
;;
2017-01-06 06:22:59 +00:00
--remove)
2016-12-31 13:44:52 +00:00
REMOVE="1"
;;
2017-01-06 06:22:59 +00:00
--version)
2016-12-31 13:44:52 +00:00
VERSION="$2"
shift
;;
2018-10-06 12:14:15 +00:00
--extract)
VSRC_ROOT="$2"
shift
;;
--extractonly)
EXTRACT_ONLY="1"
;;
2016-12-31 13:44:52 +00:00
-l|--local)
LOCAL="$2"
LOCAL_INSTALL="1"
shift
;;
--source)
DIST_SRC="$2"
shift
;;
2018-10-07 12:07:03 +00:00
--errifuptodate)
ERROR_IF_UPTODATE="1"
;;
2016-12-31 13:44:52 +00:00
*)
# unknown option
;;
esac
shift # past argument or value
done
2016-12-31 13:44:52 +00:00
###############################
colorEcho(){
echo -e "\033[${1}${@:2}\033[0m" 1>& 2
2016-12-31 13:44:52 +00:00
}
archAffix(){
case "${1:-"$(uname -m)"}" in
i686|i386)
echo '32'
;;
x86_64|amd64)
echo '64'
;;
*armv7*|armv6l)
echo 'arm'
;;
*armv8*|aarch64)
echo 'arm64'
;;
*mips64le*)
echo 'mips64le'
;;
*mips64*)
echo 'mips64'
;;
*mipsle*)
echo 'mipsle'
;;
*mips*)
echo 'mips'
;;
*s390x*)
echo 's390x'
;;
ppc64le)
echo 'ppc64le'
;;
ppc64)
echo 'ppc64'
;;
*)
return 1
;;
esac
return 0
2016-12-31 13:44:52 +00:00
}
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;
}
'
}
2016-12-31 13:44:52 +00:00
downloadV2Ray(){
rm -rf /tmp/v2ray
mkdir -p /tmp/v2ray
if [[ "${DIST_SRC}" == "jsdelivr" ]]; then
DOWNLOAD_LINK="https://cdn.jsdelivr.net/gh/v2ray/dist/v2ray-linux-${VDIS}.zip"
else
DOWNLOAD_LINK="https://github.com/v2ray/v2ray-core/releases/download/${NEW_VER}/v2ray-linux-${VDIS}.zip"
fi
colorEcho ${BLUE} "Downloading V2Ray: ${DOWNLOAD_LINK}"
2016-12-31 13:44:52 +00:00
curl ${PROXY} -L -H "Cache-Control: no-cache" -o ${ZIPFILE} ${DOWNLOAD_LINK}
if [ $? != 0 ];then
2017-01-02 13:02:54 +00:00
colorEcho ${RED} "Failed to download! Please check your network or try again."
return 3
2016-12-31 13:44:52 +00:00
fi
2018-04-12 07:57:04 +00:00
return 0
2016-12-31 13:44:52 +00:00
}
2016-12-31 13:44:52 +00:00
installSoftware(){
COMPONENT=$1
if [[ -n `command -v $COMPONENT` ]]; then
return 0
fi
2016-02-21 13:34:32 +00:00
2016-12-31 13:44:52 +00:00
getPMT
if [[ $? -eq 1 ]]; then
2018-04-14 07:10:10 +00:00
colorEcho ${RED} "The system package manager tool isn't APT or YUM, please install ${COMPONENT} manually."
2020-01-07 15:22:25 +00:00
return 1
2016-12-31 13:44:52 +00:00
fi
if [[ $SOFTWARE_UPDATED -eq 0 ]]; then
2017-01-02 13:02:54 +00:00
colorEcho ${BLUE} "Updating software repo"
2020-01-07 15:22:25 +00:00
$CMD_UPDATE
2016-12-31 13:44:52 +00:00
SOFTWARE_UPDATED=1
fi
2017-01-02 13:02:54 +00:00
colorEcho ${BLUE} "Installing ${COMPONENT}"
2016-12-31 13:44:52 +00:00
$CMD_INSTALL $COMPONENT
if [[ $? -ne 0 ]]; then
colorEcho ${RED} "Failed to install ${COMPONENT}. Please install it manually."
2018-04-12 13:56:19 +00:00
return 1
2016-12-31 13:44:52 +00:00
fi
2018-04-12 07:57:04 +00:00
return 0
2016-12-31 13:44:52 +00:00
}
2018-06-08 13:53:06 +00:00
# return 1: not apt, yum, or zypper
2016-12-31 13:44:52 +00:00
getPMT(){
2018-04-07 07:59:23 +00:00
if [[ -n `command -v apt-get` ]];then
2016-12-31 13:44:52 +00:00
CMD_INSTALL="apt-get -y -qq install"
CMD_UPDATE="apt-get -qq update"
elif [[ -n `command -v yum` ]]; then
2017-01-06 06:08:48 +00:00
CMD_INSTALL="yum -y -q install"
2016-12-31 13:44:52 +00:00
CMD_UPDATE="yum -q makecache"
2018-06-08 15:13:33 +00:00
elif [[ -n `command -v zypper` ]]; then
2018-06-08 13:53:06 +00:00
CMD_INSTALL="zypper -y install"
CMD_UPDATE="zypper ref"
2016-12-31 13:44:52 +00:00
else
return 1
fi
2018-04-12 07:57:04 +00:00
return 0
2016-12-31 13:44:52 +00:00
}
2020-01-07 15:21:34 +00:00
normalizeVersion() {
if [ -n "$1" ]; then
case "$1" in
v*)
echo "$1"
;;
*)
echo "v$1"
;;
esac
else
echo ""
fi
}
2016-12-31 13:44:52 +00:00
# 1: new V2Ray. 0: no. 2: not installed. 3: check failed. 4: don't check.
2016-12-31 13:44:52 +00:00
getVersion(){
if [[ -n "$VERSION" ]]; then
2020-01-07 15:21:34 +00:00
NEW_VER="$(normalizeVersion "$VERSION")"
return 4
2016-12-31 13:44:52 +00:00
else
2020-01-07 15:21:34 +00:00
VER="$(/usr/bin/v2ray/v2ray -version 2>/dev/null)"
RETVAL=$?
CUR_VER="$(normalizeVersion "$(echo "$VER" | head -n 1 | cut -d " " -f2)")"
2016-12-31 13:44:52 +00:00
TAG_URL="https://api.github.com/repos/v2ray/v2ray-core/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)")"
2020-01-07 15:21:34 +00:00
2016-12-31 13:44:52 +00:00
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
2016-12-31 13:44:52 +00:00
fi
return 0
fi
2016-02-21 13:34:32 +00:00
}
2016-12-31 13:44:52 +00:00
stopV2ray(){
2017-01-02 13:02:54 +00:00
colorEcho ${BLUE} "Shutting down V2Ray service."
if [[ -n "${SYSTEMCTL_CMD}" ]] || [[ -f "/lib/systemd/system/v2ray.service" ]] || [[ -f "/etc/systemd/system/v2ray.service" ]]; then
2016-12-31 13:44:52 +00:00
${SYSTEMCTL_CMD} stop v2ray
elif [[ -n "${SERVICE_CMD}" ]] || [[ -f "/etc/init.d/v2ray" ]]; then
${SERVICE_CMD} v2ray stop
fi
if [[ $? -ne 0 ]]; then
2018-04-14 07:10:10 +00:00
colorEcho ${YELLOW} "Failed to shutdown V2Ray service."
return 2
fi
2016-12-31 13:44:52 +00:00
return 0
}
startV2ray(){
if [ -n "${SYSTEMCTL_CMD}" ] && [[ -f "/lib/systemd/system/v2ray.service" || -f "/etc/systemd/system/v2ray.service" ]]; then
${SYSTEMCTL_CMD} start v2ray
2016-12-31 13:44:52 +00:00
elif [ -n "${SERVICE_CMD}" ] && [ -f "/etc/init.d/v2ray" ]; then
${SERVICE_CMD} v2ray start
fi
if [[ $? -ne 0 ]]; then
2018-04-14 07:10:10 +00:00
colorEcho ${YELLOW} "Failed to start V2Ray service."
return 2
fi
2016-12-31 13:44:52 +00:00
return 0
}
2017-11-03 22:42:33 +00:00
installV2Ray(){
# Install V2Ray binary to /usr/bin/v2ray
mkdir -p '/etc/v2ray' '/var/log/v2ray' && \
unzip -oj "$1" "$2v2ray" "$2v2ctl" "$2geoip.dat" "$2geosite.dat" -d '/usr/bin/v2ray' && \
chmod +x '/usr/bin/v2ray/v2ray' '/usr/bin/v2ray/v2ctl' || {
colorEcho ${RED} "Failed to copy V2Ray binary and resources."
2018-04-14 07:59:53 +00:00
return 1
}
2016-12-31 13:44:52 +00:00
# Install V2Ray server config to /etc/v2ray
if [ ! -f '/etc/v2ray/config.json' ]; then
local PORT="$(($RANDOM + 10000))"
local UUID="$(cat '/proc/sys/kernel/random/uuid')"
unzip -pq "$1" "$2vpoint_vmess_freedom.json" | \
sed -e "s/10086/${PORT}/g; s/23ad6b10-8d1a-40f7-8ad0-e3e35cd38297/${UUID}/g;" - > \
'/etc/v2ray/config.json' || {
colorEcho ${YELLOW} "Failed to create V2Ray configuration file. Please create it manually."
return 1
}
2018-04-14 07:10:10 +00:00
colorEcho ${BLUE} "PORT:${PORT}"
colorEcho ${BLUE} "UUID:${UUID}"
2016-12-31 13:44:52 +00:00
fi
}
2018-03-06 14:39:13 +00:00
installInitScript(){
if [[ -n "${SYSTEMCTL_CMD}" ]]; then
if [[ ! -f "/etc/systemd/system/v2ray.service" && ! -f "/lib/systemd/system/v2ray.service" ]]; then
unzip -oj "$1" "$2systemd/v2ray.service" -d '/etc/systemd/system' && \
systemctl enable v2ray.service
fi
2016-12-31 13:44:52 +00:00
elif [[ -n "${SERVICE_CMD}" ]] && [[ ! -f "/etc/init.d/v2ray" ]]; then
installSoftware 'daemon' && \
unzip -oj "$1" "$2systemv/v2ray" -d '/etc/init.d' && \
chmod +x '/etc/init.d/v2ray' && \
2016-12-31 13:44:52 +00:00
update-rc.d v2ray defaults
fi
2016-02-21 13:34:32 +00:00
}
2016-12-31 13:44:52 +00:00
Help(){
cat - 1>& 2 << EOF
./install-release.sh [-h] [-c] [--remove] [-p proxy] [-f] [--version vx.y.z] [-l file]
-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
-c, --check Check for update
EOF
2016-12-31 13:44:52 +00:00
}
remove(){
if [[ -n "${SYSTEMCTL_CMD}" ]] && [[ -f "/etc/systemd/system/v2ray.service" ]];then
if pgrep "v2ray" > /dev/null ; then
stopV2ray
fi
systemctl disable v2ray.service
rm -rf "/usr/bin/v2ray" "/etc/systemd/system/v2ray.service"
if [[ $? -ne 0 ]]; then
colorEcho ${RED} "Failed to remove V2Ray."
2018-04-12 07:48:32 +00:00
return 0
else
colorEcho ${GREEN} "Removed V2Ray successfully."
2018-04-14 07:10:10 +00:00
colorEcho ${BLUE} "If necessary, please remove configuration file and log file manually."
return 0
fi
elif [[ -n "${SYSTEMCTL_CMD}" ]] && [[ -f "/lib/systemd/system/v2ray.service" ]];then
2017-01-02 13:02:54 +00:00
if pgrep "v2ray" > /dev/null ; then
stopV2ray
fi
systemctl disable v2ray.service
2017-01-06 06:08:48 +00:00
rm -rf "/usr/bin/v2ray" "/lib/systemd/system/v2ray.service"
2017-01-02 13:02:54 +00:00
if [[ $? -ne 0 ]]; then
colorEcho ${RED} "Failed to remove V2Ray."
2018-04-12 07:48:32 +00:00
return 0
2017-01-02 13:02:54 +00:00
else
colorEcho ${GREEN} "Removed V2Ray successfully."
2018-04-14 07:10:10 +00:00
colorEcho ${BLUE} "If necessary, please remove configuration file and log file manually."
return 0
2017-01-02 13:02:54 +00:00
fi
elif [[ -n "${SERVICE_CMD}" ]] && [[ -f "/etc/init.d/v2ray" ]]; then
if pgrep "v2ray" > /dev/null ; then
stopV2ray
fi
2017-01-06 06:08:48 +00:00
rm -rf "/usr/bin/v2ray" "/etc/init.d/v2ray"
2017-01-02 13:02:54 +00:00
if [[ $? -ne 0 ]]; then
colorEcho ${RED} "Failed to remove V2Ray."
2018-04-12 07:48:32 +00:00
return 0
2017-01-02 13:02:54 +00:00
else
colorEcho ${GREEN} "Removed V2Ray successfully."
2018-04-14 07:10:10 +00:00
colorEcho ${BLUE} "If necessary, please remove configuration file and log file manually."
return 0
2020-01-07 15:22:25 +00:00
fi
else
2018-04-14 07:10:10 +00:00
colorEcho ${YELLOW} "V2Ray not found."
return 0
2016-12-31 13:44:52 +00:00
fi
}
checkUpdate(){
echo "Checking for update."
VERSION=""
getVersion
RETVAL="$?"
if [[ $RETVAL -eq 1 ]]; then
2018-04-14 07:10:10 +00:00
colorEcho ${BLUE} "Found new version ${NEW_VER} for V2Ray.(Current version:$CUR_VER)"
elif [[ $RETVAL -eq 0 ]]; then
2018-04-14 07:10:10 +00:00
colorEcho ${BLUE} "No new version. Current version is ${NEW_VER}."
elif [[ $RETVAL -eq 2 ]]; then
2018-04-14 07:10:10 +00:00
colorEcho ${YELLOW} "No V2Ray installed."
colorEcho ${BLUE} "The newest version for V2Ray is ${NEW_VER}."
fi
return 0
2016-12-31 13:44:52 +00:00
}
main(){
#helping information
[[ "$HELP" == "1" ]] && Help && return
2018-04-12 13:56:19 +00:00
[[ "$CHECK" == "1" ]] && checkUpdate && return
[[ "$REMOVE" == "1" ]] && remove && return
2020-01-07 15:22:25 +00:00
local ARCH=$(uname -m)
VDIS="$(archAffix)"
2017-01-02 13:02:54 +00:00
# extract local file
2016-12-31 13:44:52 +00:00
if [[ $LOCAL_INSTALL -eq 1 ]]; then
2018-10-05 19:24:00 +00:00
colorEcho ${YELLOW} "Installing V2Ray via local file. Please make sure the file is a valid V2Ray package, as we are not able to determine that."
NEW_VER=local
2016-12-31 13:44:52 +00:00
rm -rf /tmp/v2ray
2020-01-09 09:34:55 +00:00
ZIPFILE="$LOCAL"
2018-10-05 19:24:00 +00:00
#FILEVDIS=`ls /tmp/v2ray |grep v2ray-v |cut -d "-" -f4`
#SYSTEM=`ls /tmp/v2ray |grep v2ray-v |cut -d "-" -f3`
#if [[ ${SYSTEM} != "linux" ]]; then
# colorEcho ${RED} "The local V2Ray can not be installed in linux."
# return 1
#elif [[ ${FILEVDIS} != ${VDIS} ]]; then
# colorEcho ${RED} "The local V2Ray can not be installed in ${ARCH} system."
# return 1
#else
# NEW_VER=`ls /tmp/v2ray |grep v2ray-v |cut -d "-" -f2`
#fi
2016-12-31 13:44:52 +00:00
else
2018-03-06 15:18:49 +00:00
# download via network and extract
installSoftware "curl" || return $?
2016-12-31 13:44:52 +00:00
getVersion
RETVAL="$?"
if [[ $RETVAL == 0 ]] && [[ "$FORCE" != "1" ]]; then
colorEcho ${BLUE} "Latest version ${CUR_VER} is already installed."
if [ -n "${ERROR_IF_UPTODATE}" ]; then
2018-10-07 12:07:03 +00:00
return 10
fi
return
elif [[ $RETVAL == 3 ]]; then
return 3
2016-12-31 13:44:52 +00:00
else
2017-01-02 13:02:54 +00:00
colorEcho ${BLUE} "Installing V2Ray ${NEW_VER} on ${ARCH}"
2018-04-12 07:46:52 +00:00
downloadV2Ray || return $?
2016-12-31 13:44:52 +00:00
fi
fi
local ZIPROOT="$(zipRoot "${ZIPFILE}")"
2020-01-09 09:34:55 +00:00
installSoftware unzip || return $?
if [ -n "${EXTRACT_ONLY}" ]; then
2020-01-09 09:34:55 +00:00
colorEcho ${BLUE} "Extracting V2Ray package to ${VSRC_ROOT}."
if unzip -o "${ZIPFILE}" -d ${VSRC_ROOT}; then
colorEcho ${GREEN} "V2Ray extracted to ${VSRC_ROOT%/}${ZIPROOT:+/${ZIPROOT%/}}, and exiting..."
return 0
else
colorEcho ${RED} "Failed to extract V2Ray."
return 2
fi
2018-10-06 12:14:15 +00:00
fi
2016-12-31 13:44:52 +00:00
if pgrep "v2ray" > /dev/null ; then
V2RAY_RUNNING=1
stopV2ray
fi
installV2Ray "${ZIPFILE}" "${ZIPROOT}" || return $?
installInitScript "${ZIPFILE}" "${ZIPROOT}" || return $?
2016-12-31 13:44:52 +00:00
if [[ ${V2RAY_RUNNING} -eq 1 ]];then
2017-01-02 13:02:54 +00:00
colorEcho ${BLUE} "Restarting V2Ray service."
2018-04-12 07:46:52 +00:00
startV2ray
2016-12-31 13:44:52 +00:00
fi
2017-01-02 13:02:54 +00:00
colorEcho ${GREEN} "V2Ray ${NEW_VER} is installed."
2016-12-31 13:44:52 +00:00
rm -rf /tmp/v2ray
return 0
}
2015-12-03 09:58:31 +00:00
2016-12-31 13:44:52 +00:00
main