install-release.sh 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489
  1. #!/bin/bash
  2. # This file is accessible as https://install.direct/go.sh
  3. # Original source is located at github.com/v2ray/v2ray-core/release/install-release.sh
  4. # If not specify, default meaning of return value:
  5. # 0: Success
  6. # 1: System error
  7. # 2: Application error
  8. # 3: Network error
  9. # CLI arguments
  10. PROXY=''
  11. HELP=''
  12. FORCE=''
  13. CHECK=''
  14. REMOVE=''
  15. VERSION=''
  16. VSRC_ROOT='/tmp/v2ray'
  17. EXTRACT_ONLY=''
  18. LOCAL=''
  19. LOCAL_INSTALL=''
  20. DIST_SRC='github'
  21. ERROR_IF_UPTODATE=''
  22. CUR_VER=""
  23. NEW_VER=""
  24. VDIS=''
  25. ZIPFILE="/tmp/v2ray/v2ray.zip"
  26. V2RAY_RUNNING=0
  27. CMD_INSTALL=""
  28. CMD_UPDATE=""
  29. SOFTWARE_UPDATED=0
  30. SYSTEMCTL_CMD=$(command -v systemctl 2>/dev/null)
  31. SERVICE_CMD=$(command -v service 2>/dev/null)
  32. #######color code########
  33. RED="31m" # Error message
  34. GREEN="32m" # Success message
  35. YELLOW="33m" # Warning message
  36. BLUE="36m" # Info message
  37. #########################
  38. while [[ $# > 0 ]]; do
  39. case "$1" in
  40. -p|--proxy)
  41. PROXY="-x ${2}"
  42. shift # past argument
  43. ;;
  44. -h|--help)
  45. HELP="1"
  46. ;;
  47. -f|--force)
  48. FORCE="1"
  49. ;;
  50. -c|--check)
  51. CHECK="1"
  52. ;;
  53. --remove)
  54. REMOVE="1"
  55. ;;
  56. --version)
  57. VERSION="$2"
  58. shift
  59. ;;
  60. --extract)
  61. VSRC_ROOT="$2"
  62. shift
  63. ;;
  64. --extractonly)
  65. EXTRACT_ONLY="1"
  66. ;;
  67. -l|--local)
  68. LOCAL="$2"
  69. LOCAL_INSTALL="1"
  70. shift
  71. ;;
  72. --source)
  73. DIST_SRC="$2"
  74. shift
  75. ;;
  76. --errifuptodate)
  77. ERROR_IF_UPTODATE="1"
  78. ;;
  79. *)
  80. # unknown option
  81. ;;
  82. esac
  83. shift # past argument or value
  84. done
  85. ###############################
  86. colorEcho(){
  87. echo -e "\033[${1}${@:2}\033[0m" 1>& 2
  88. }
  89. archAffix(){
  90. case "${1:-"$(uname -m)"}" in
  91. i686|i386)
  92. echo '32'
  93. ;;
  94. x86_64|amd64)
  95. echo '64'
  96. ;;
  97. *armv7*|armv6l)
  98. echo 'arm'
  99. ;;
  100. *armv8*|aarch64)
  101. echo 'arm64'
  102. ;;
  103. *mips64le*)
  104. echo 'mips64le'
  105. ;;
  106. *mips64*)
  107. echo 'mips64'
  108. ;;
  109. *mipsle*)
  110. echo 'mipsle'
  111. ;;
  112. *mips*)
  113. echo 'mips'
  114. ;;
  115. *s390x*)
  116. echo 's390x'
  117. ;;
  118. ppc64le)
  119. echo 'ppc64le'
  120. ;;
  121. ppc64)
  122. echo 'ppc64'
  123. ;;
  124. *)
  125. return 1
  126. ;;
  127. esac
  128. return 0
  129. }
  130. downloadV2Ray(){
  131. rm -rf /tmp/v2ray
  132. mkdir -p /tmp/v2ray
  133. if [[ "${DIST_SRC}" == "jsdelivr" ]]; then
  134. DOWNLOAD_LINK="https://cdn.jsdelivr.net/gh/v2ray/dist/v2ray-linux-${VDIS}.zip"
  135. else
  136. DOWNLOAD_LINK="https://github.com/v2ray/v2ray-core/releases/download/${NEW_VER}/v2ray-linux-${VDIS}.zip"
  137. fi
  138. colorEcho ${BLUE} "Downloading V2Ray: ${DOWNLOAD_LINK}"
  139. curl ${PROXY} -L -H "Cache-Control: no-cache" -o ${ZIPFILE} ${DOWNLOAD_LINK}
  140. if [ $? != 0 ];then
  141. colorEcho ${RED} "Failed to download! Please check your network or try again."
  142. return 3
  143. fi
  144. return 0
  145. }
  146. installSoftware(){
  147. COMPONENT=$1
  148. if [[ -n `command -v $COMPONENT` ]]; then
  149. return 0
  150. fi
  151. getPMT
  152. if [[ $? -eq 1 ]]; then
  153. colorEcho ${RED} "The system package manager tool isn't APT or YUM, please install ${COMPONENT} manually."
  154. return 1
  155. fi
  156. if [[ $SOFTWARE_UPDATED -eq 0 ]]; then
  157. colorEcho ${BLUE} "Updating software repo"
  158. $CMD_UPDATE
  159. SOFTWARE_UPDATED=1
  160. fi
  161. colorEcho ${BLUE} "Installing ${COMPONENT}"
  162. $CMD_INSTALL $COMPONENT
  163. if [[ $? -ne 0 ]]; then
  164. colorEcho ${RED} "Failed to install ${COMPONENT}. Please install it manually."
  165. return 1
  166. fi
  167. return 0
  168. }
  169. # return 1: not apt, yum, or zypper
  170. getPMT(){
  171. if [[ -n `command -v apt-get` ]];then
  172. CMD_INSTALL="apt-get -y -qq install"
  173. CMD_UPDATE="apt-get -qq update"
  174. elif [[ -n `command -v yum` ]]; then
  175. CMD_INSTALL="yum -y -q install"
  176. CMD_UPDATE="yum -q makecache"
  177. elif [[ -n `command -v zypper` ]]; then
  178. CMD_INSTALL="zypper -y install"
  179. CMD_UPDATE="zypper ref"
  180. else
  181. return 1
  182. fi
  183. return 0
  184. }
  185. extract(){
  186. colorEcho ${BLUE}"Extracting V2Ray package to /tmp/v2ray."
  187. mkdir -p /tmp/v2ray
  188. unzip $1 -d ${VSRC_ROOT}
  189. if [[ $? -ne 0 ]]; then
  190. colorEcho ${RED} "Failed to extract V2Ray."
  191. return 2
  192. fi
  193. if [[ -d "/tmp/v2ray/v2ray-${NEW_VER}-linux-${VDIS}" ]]; then
  194. VSRC_ROOT="/tmp/v2ray/v2ray-${NEW_VER}-linux-${VDIS}"
  195. fi
  196. return 0
  197. }
  198. normalizeVersion() {
  199. if [ -n "$1" ]; then
  200. case "$1" in
  201. v*)
  202. echo "$1"
  203. ;;
  204. *)
  205. echo "v$1"
  206. ;;
  207. esac
  208. else
  209. echo ""
  210. fi
  211. }
  212. # 1: new V2Ray. 0: no. 2: not installed. 3: check failed. 4: don't check.
  213. getVersion(){
  214. if [[ -n "$VERSION" ]]; then
  215. NEW_VER="$(normalizeVersion "$VERSION")"
  216. return 4
  217. else
  218. VER="$(/usr/bin/v2ray/v2ray -version 2>/dev/null)"
  219. RETVAL=$?
  220. CUR_VER="$(normalizeVersion "$(echo "$VER" | head -n 1 | cut -d " " -f2)")"
  221. TAG_URL="https://api.github.com/repos/v2ray/v2ray-core/releases/latest"
  222. NEW_VER="$(normalizeVersion "$(curl ${PROXY} -s "${TAG_URL}" --connect-timeout 10| grep 'tag_name' | cut -d\" -f4)")"
  223. if [[ $? -ne 0 ]] || [[ $NEW_VER == "" ]]; then
  224. colorEcho ${RED} "Failed to fetch release information. Please check your network or try again."
  225. return 3
  226. elif [[ $RETVAL -ne 0 ]];then
  227. return 2
  228. elif [[ $NEW_VER != $CUR_VER ]];then
  229. return 1
  230. fi
  231. return 0
  232. fi
  233. }
  234. stopV2ray(){
  235. colorEcho ${BLUE} "Shutting down V2Ray service."
  236. if [[ -n "${SYSTEMCTL_CMD}" ]] || [[ -f "/lib/systemd/system/v2ray.service" ]] || [[ -f "/etc/systemd/system/v2ray.service" ]]; then
  237. ${SYSTEMCTL_CMD} stop v2ray
  238. elif [[ -n "${SERVICE_CMD}" ]] || [[ -f "/etc/init.d/v2ray" ]]; then
  239. ${SERVICE_CMD} v2ray stop
  240. fi
  241. if [[ $? -ne 0 ]]; then
  242. colorEcho ${YELLOW} "Failed to shutdown V2Ray service."
  243. return 2
  244. fi
  245. return 0
  246. }
  247. startV2ray(){
  248. if [ -n "${SYSTEMCTL_CMD}" ] && [[ -f "/lib/systemd/system/v2ray.service" || -f "/etc/systemd/system/v2ray.service" ]]; then
  249. ${SYSTEMCTL_CMD} start v2ray
  250. elif [ -n "${SERVICE_CMD}" ] && [ -f "/etc/init.d/v2ray" ]; then
  251. ${SERVICE_CMD} v2ray start
  252. fi
  253. if [[ $? -ne 0 ]]; then
  254. colorEcho ${YELLOW} "Failed to start V2Ray service."
  255. return 2
  256. fi
  257. return 0
  258. }
  259. copyFile() {
  260. NAME=$1
  261. ERROR=`cp "${VSRC_ROOT}/${NAME}" "/usr/bin/v2ray/${NAME}" 2>&1`
  262. if [[ $? -ne 0 ]]; then
  263. colorEcho ${YELLOW} "${ERROR}"
  264. return 1
  265. fi
  266. return 0
  267. }
  268. makeExecutable() {
  269. chmod +x "/usr/bin/v2ray/$1"
  270. }
  271. installV2Ray(){
  272. # Install V2Ray binary to /usr/bin/v2ray
  273. mkdir -p /usr/bin/v2ray
  274. copyFile v2ray
  275. if [[ $? -ne 0 ]]; then
  276. colorEcho ${RED} "Failed to copy V2Ray binary and resources."
  277. return 1
  278. fi
  279. makeExecutable v2ray
  280. copyFile v2ctl && makeExecutable v2ctl
  281. copyFile geoip.dat
  282. copyFile geosite.dat
  283. # Install V2Ray server config to /etc/v2ray
  284. if [[ ! -f "/etc/v2ray/config.json" ]]; then
  285. mkdir -p /etc/v2ray
  286. mkdir -p /var/log/v2ray
  287. cp "${VSRC_ROOT}/vpoint_vmess_freedom.json" "/etc/v2ray/config.json"
  288. if [[ $? -ne 0 ]]; then
  289. colorEcho ${YELLOW} "Failed to create V2Ray configuration file. Please create it manually."
  290. return 1
  291. fi
  292. let PORT=$RANDOM+10000
  293. UUID=$(cat /proc/sys/kernel/random/uuid)
  294. sed -i "s/10086/${PORT}/g" "/etc/v2ray/config.json"
  295. sed -i "s/23ad6b10-8d1a-40f7-8ad0-e3e35cd38297/${UUID}/g" "/etc/v2ray/config.json"
  296. colorEcho ${BLUE} "PORT:${PORT}"
  297. colorEcho ${BLUE} "UUID:${UUID}"
  298. fi
  299. return 0
  300. }
  301. installInitScript(){
  302. if [[ -n "${SYSTEMCTL_CMD}" ]] && [[ ! -f "/etc/systemd/system/v2ray.service" && ! -f "/lib/systemd/system/v2ray.service" ]]; then
  303. cp "${VSRC_ROOT}/systemd/v2ray.service" "/etc/systemd/system/"
  304. systemctl enable v2ray.service
  305. elif [[ -n "${SERVICE_CMD}" ]] && [[ ! -f "/etc/init.d/v2ray" ]]; then
  306. installSoftware "daemon" || return $?
  307. cp "${VSRC_ROOT}/systemv/v2ray" "/etc/init.d/v2ray"
  308. chmod +x "/etc/init.d/v2ray"
  309. update-rc.d v2ray defaults
  310. fi
  311. }
  312. Help(){
  313. cat - 1>& 2 << EOF
  314. ./install-release.sh [-h] [-c] [--remove] [-p proxy] [-f] [--version vx.y.z] [-l file]
  315. -h, --help Show help
  316. -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
  317. -f, --force Force install
  318. --version Install a particular version, use --version v3.15
  319. -l, --local Install from a local file
  320. --remove Remove installed V2Ray
  321. -c, --check Check for update
  322. EOF
  323. }
  324. remove(){
  325. if [[ -n "${SYSTEMCTL_CMD}" ]] && [[ -f "/etc/systemd/system/v2ray.service" ]];then
  326. if pgrep "v2ray" > /dev/null ; then
  327. stopV2ray
  328. fi
  329. systemctl disable v2ray.service
  330. rm -rf "/usr/bin/v2ray" "/etc/systemd/system/v2ray.service"
  331. if [[ $? -ne 0 ]]; then
  332. colorEcho ${RED} "Failed to remove V2Ray."
  333. return 0
  334. else
  335. colorEcho ${GREEN} "Removed V2Ray successfully."
  336. colorEcho ${BLUE} "If necessary, please remove configuration file and log file manually."
  337. return 0
  338. fi
  339. elif [[ -n "${SYSTEMCTL_CMD}" ]] && [[ -f "/lib/systemd/system/v2ray.service" ]];then
  340. if pgrep "v2ray" > /dev/null ; then
  341. stopV2ray
  342. fi
  343. systemctl disable v2ray.service
  344. rm -rf "/usr/bin/v2ray" "/lib/systemd/system/v2ray.service"
  345. if [[ $? -ne 0 ]]; then
  346. colorEcho ${RED} "Failed to remove V2Ray."
  347. return 0
  348. else
  349. colorEcho ${GREEN} "Removed V2Ray successfully."
  350. colorEcho ${BLUE} "If necessary, please remove configuration file and log file manually."
  351. return 0
  352. fi
  353. elif [[ -n "${SERVICE_CMD}" ]] && [[ -f "/etc/init.d/v2ray" ]]; then
  354. if pgrep "v2ray" > /dev/null ; then
  355. stopV2ray
  356. fi
  357. rm -rf "/usr/bin/v2ray" "/etc/init.d/v2ray"
  358. if [[ $? -ne 0 ]]; then
  359. colorEcho ${RED} "Failed to remove V2Ray."
  360. return 0
  361. else
  362. colorEcho ${GREEN} "Removed V2Ray successfully."
  363. colorEcho ${BLUE} "If necessary, please remove configuration file and log file manually."
  364. return 0
  365. fi
  366. else
  367. colorEcho ${YELLOW} "V2Ray not found."
  368. return 0
  369. fi
  370. }
  371. checkUpdate(){
  372. echo "Checking for update."
  373. VERSION=""
  374. getVersion
  375. RETVAL="$?"
  376. if [[ $RETVAL -eq 1 ]]; then
  377. colorEcho ${BLUE} "Found new version ${NEW_VER} for V2Ray.(Current version:$CUR_VER)"
  378. elif [[ $RETVAL -eq 0 ]]; then
  379. colorEcho ${BLUE} "No new version. Current version is ${NEW_VER}."
  380. elif [[ $RETVAL -eq 2 ]]; then
  381. colorEcho ${YELLOW} "No V2Ray installed."
  382. colorEcho ${BLUE} "The newest version for V2Ray is ${NEW_VER}."
  383. fi
  384. return 0
  385. }
  386. main(){
  387. #helping information
  388. [[ "$HELP" == "1" ]] && Help && return
  389. [[ "$CHECK" == "1" ]] && checkUpdate && return
  390. [[ "$REMOVE" == "1" ]] && remove && return
  391. local ARCH=$(uname -m)
  392. VDIS="$(archAffix)"
  393. # extract local file
  394. if [[ $LOCAL_INSTALL -eq 1 ]]; then
  395. 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."
  396. NEW_VER=local
  397. installSoftware unzip || return $?
  398. rm -rf /tmp/v2ray
  399. extract $LOCAL || return $?
  400. #FILEVDIS=`ls /tmp/v2ray |grep v2ray-v |cut -d "-" -f4`
  401. #SYSTEM=`ls /tmp/v2ray |grep v2ray-v |cut -d "-" -f3`
  402. #if [[ ${SYSTEM} != "linux" ]]; then
  403. # colorEcho ${RED} "The local V2Ray can not be installed in linux."
  404. # return 1
  405. #elif [[ ${FILEVDIS} != ${VDIS} ]]; then
  406. # colorEcho ${RED} "The local V2Ray can not be installed in ${ARCH} system."
  407. # return 1
  408. #else
  409. # NEW_VER=`ls /tmp/v2ray |grep v2ray-v |cut -d "-" -f2`
  410. #fi
  411. else
  412. # download via network and extract
  413. installSoftware "curl" || return $?
  414. getVersion
  415. RETVAL="$?"
  416. if [[ $RETVAL == 0 ]] && [[ "$FORCE" != "1" ]]; then
  417. colorEcho ${BLUE} "Latest version ${CUR_VER} is already installed."
  418. if [ -n "${ERROR_IF_UPTODATE}" ]; then
  419. return 10
  420. fi
  421. return
  422. elif [[ $RETVAL == 3 ]]; then
  423. return 3
  424. else
  425. colorEcho ${BLUE} "Installing V2Ray ${NEW_VER} on ${ARCH}"
  426. downloadV2Ray || return $?
  427. installSoftware unzip || return $?
  428. extract ${ZIPFILE} || return $?
  429. fi
  430. fi
  431. if [ -n "${EXTRACT_ONLY}" ]; then
  432. colorEcho ${GREEN} "V2Ray extracted to ${VSRC_ROOT}, and exiting..."
  433. return 0
  434. fi
  435. if pgrep "v2ray" > /dev/null ; then
  436. V2RAY_RUNNING=1
  437. stopV2ray
  438. fi
  439. installV2Ray || return $?
  440. installInitScript || return $?
  441. if [[ ${V2RAY_RUNNING} -eq 1 ]];then
  442. colorEcho ${BLUE} "Restarting V2Ray service."
  443. startV2ray
  444. fi
  445. colorEcho ${GREEN} "V2Ray ${NEW_VER} is installed."
  446. rm -rf /tmp/v2ray
  447. return 0
  448. }
  449. main