install-release.sh 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503
  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. zipRoot() {
  131. unzip -lqq "$1" | awk -e '
  132. NR == 1 {
  133. prefix = $4;
  134. }
  135. NR != 1 {
  136. prefix_len = length(prefix);
  137. cur_len = length($4);
  138. for (len = prefix_len < cur_len ? prefix_len : cur_len; len >= 1; len -= 1) {
  139. sub_prefix = substr(prefix, 1, len);
  140. sub_cur = substr($4, 1, len);
  141. if (sub_prefix == sub_cur) {
  142. prefix = sub_prefix;
  143. break;
  144. }
  145. }
  146. if (len == 0) {
  147. prefix = "";
  148. nextfile;
  149. }
  150. }
  151. END {
  152. print prefix;
  153. }
  154. '
  155. }
  156. downloadV2Ray(){
  157. rm -rf /tmp/v2ray
  158. mkdir -p /tmp/v2ray
  159. if [[ "${DIST_SRC}" == "jsdelivr" ]]; then
  160. DOWNLOAD_LINK="https://cdn.jsdelivr.net/gh/v2ray/dist/v2ray-linux-${VDIS}.zip"
  161. else
  162. DOWNLOAD_LINK="https://github.com/v2ray/v2ray-core/releases/download/${NEW_VER}/v2ray-linux-${VDIS}.zip"
  163. fi
  164. colorEcho ${BLUE} "Downloading V2Ray: ${DOWNLOAD_LINK}"
  165. curl ${PROXY} -L -H "Cache-Control: no-cache" -o ${ZIPFILE} ${DOWNLOAD_LINK}
  166. if [ $? != 0 ];then
  167. colorEcho ${RED} "Failed to download! Please check your network or try again."
  168. return 3
  169. fi
  170. return 0
  171. }
  172. installSoftware(){
  173. COMPONENT=$1
  174. if [[ -n `command -v $COMPONENT` ]]; then
  175. return 0
  176. fi
  177. getPMT
  178. if [[ $? -eq 1 ]]; then
  179. colorEcho ${RED} "The system package manager tool isn't APT or YUM, please install ${COMPONENT} manually."
  180. return 1
  181. fi
  182. if [[ $SOFTWARE_UPDATED -eq 0 ]]; then
  183. colorEcho ${BLUE} "Updating software repo"
  184. $CMD_UPDATE
  185. SOFTWARE_UPDATED=1
  186. fi
  187. colorEcho ${BLUE} "Installing ${COMPONENT}"
  188. $CMD_INSTALL $COMPONENT
  189. if [[ $? -ne 0 ]]; then
  190. colorEcho ${RED} "Failed to install ${COMPONENT}. Please install it manually."
  191. return 1
  192. fi
  193. return 0
  194. }
  195. # return 1: not apt, yum, or zypper
  196. getPMT(){
  197. if [[ -n `command -v apt-get` ]];then
  198. CMD_INSTALL="apt-get -y -qq install"
  199. CMD_UPDATE="apt-get -qq update"
  200. elif [[ -n `command -v yum` ]]; then
  201. CMD_INSTALL="yum -y -q install"
  202. CMD_UPDATE="yum -q makecache"
  203. elif [[ -n `command -v zypper` ]]; then
  204. CMD_INSTALL="zypper -y install"
  205. CMD_UPDATE="zypper ref"
  206. else
  207. return 1
  208. fi
  209. return 0
  210. }
  211. extract(){
  212. colorEcho ${BLUE}"Extracting V2Ray package to /tmp/v2ray."
  213. mkdir -p /tmp/v2ray
  214. unzip $1 -d ${VSRC_ROOT}
  215. if [[ $? -ne 0 ]]; then
  216. colorEcho ${RED} "Failed to extract V2Ray."
  217. return 2
  218. fi
  219. if [[ -d "/tmp/v2ray/v2ray-${NEW_VER}-linux-${VDIS}" ]]; then
  220. VSRC_ROOT="/tmp/v2ray/v2ray-${NEW_VER}-linux-${VDIS}"
  221. fi
  222. return 0
  223. }
  224. normalizeVersion() {
  225. if [ -n "$1" ]; then
  226. case "$1" in
  227. v*)
  228. echo "$1"
  229. ;;
  230. *)
  231. echo "v$1"
  232. ;;
  233. esac
  234. else
  235. echo ""
  236. fi
  237. }
  238. # 1: new V2Ray. 0: no. 2: not installed. 3: check failed. 4: don't check.
  239. getVersion(){
  240. if [[ -n "$VERSION" ]]; then
  241. NEW_VER="$(normalizeVersion "$VERSION")"
  242. return 4
  243. else
  244. VER="$(/usr/bin/v2ray/v2ray -version 2>/dev/null)"
  245. RETVAL=$?
  246. CUR_VER="$(normalizeVersion "$(echo "$VER" | head -n 1 | cut -d " " -f2)")"
  247. TAG_URL="https://api.github.com/repos/v2ray/v2ray-core/releases/latest"
  248. NEW_VER="$(normalizeVersion "$(curl ${PROXY} -s "${TAG_URL}" --connect-timeout 10| grep 'tag_name' | cut -d\" -f4)")"
  249. if [[ $? -ne 0 ]] || [[ $NEW_VER == "" ]]; then
  250. colorEcho ${RED} "Failed to fetch release information. Please check your network or try again."
  251. return 3
  252. elif [[ $RETVAL -ne 0 ]];then
  253. return 2
  254. elif [[ $NEW_VER != $CUR_VER ]];then
  255. return 1
  256. fi
  257. return 0
  258. fi
  259. }
  260. stopV2ray(){
  261. colorEcho ${BLUE} "Shutting down V2Ray service."
  262. if [[ -n "${SYSTEMCTL_CMD}" ]] || [[ -f "/lib/systemd/system/v2ray.service" ]] || [[ -f "/etc/systemd/system/v2ray.service" ]]; then
  263. ${SYSTEMCTL_CMD} stop v2ray
  264. elif [[ -n "${SERVICE_CMD}" ]] || [[ -f "/etc/init.d/v2ray" ]]; then
  265. ${SERVICE_CMD} v2ray stop
  266. fi
  267. if [[ $? -ne 0 ]]; then
  268. colorEcho ${YELLOW} "Failed to shutdown V2Ray service."
  269. return 2
  270. fi
  271. return 0
  272. }
  273. startV2ray(){
  274. if [ -n "${SYSTEMCTL_CMD}" ] && [[ -f "/lib/systemd/system/v2ray.service" || -f "/etc/systemd/system/v2ray.service" ]]; then
  275. ${SYSTEMCTL_CMD} start v2ray
  276. elif [ -n "${SERVICE_CMD}" ] && [ -f "/etc/init.d/v2ray" ]; then
  277. ${SERVICE_CMD} v2ray start
  278. fi
  279. if [[ $? -ne 0 ]]; then
  280. colorEcho ${YELLOW} "Failed to start V2Ray service."
  281. return 2
  282. fi
  283. return 0
  284. }
  285. installV2Ray(){
  286. # Install V2Ray binary to /usr/bin/v2ray
  287. mkdir -p '/usr/bin/v2ray' '/etc/v2ray' '/var/log/v2ray' && \
  288. cp "${VSRC_ROOT}/v2ray" \
  289. "${VSRC_ROOT}/v2ctl" \
  290. "${VSRC_ROOT}/geoip.dat" \
  291. "${VSRC_ROOT}/geosite.dat" \
  292. "/usr/bin/v2ray/" && \
  293. chmod +x '/usr/bin/v2ray/v2ray' '/usr/bin/v2ray/v2ctl' || {
  294. colorEcho ${RED} "Failed to copy V2Ray binary and resources."
  295. return 1
  296. }
  297. # Install V2Ray server config to /etc/v2ray
  298. if [[ ! -f "/etc/v2ray/config.json" ]]; then
  299. cp "${VSRC_ROOT}/vpoint_vmess_freedom.json" "/etc/v2ray/config.json"
  300. if [[ $? -ne 0 ]]; then
  301. colorEcho ${YELLOW} "Failed to create V2Ray configuration file. Please create it manually."
  302. return 1
  303. fi
  304. let PORT=$RANDOM+10000
  305. UUID=$(cat /proc/sys/kernel/random/uuid)
  306. sed -i "s/10086/${PORT}/g" "/etc/v2ray/config.json"
  307. sed -i "s/23ad6b10-8d1a-40f7-8ad0-e3e35cd38297/${UUID}/g" "/etc/v2ray/config.json"
  308. colorEcho ${BLUE} "PORT:${PORT}"
  309. colorEcho ${BLUE} "UUID:${UUID}"
  310. fi
  311. return 0
  312. }
  313. installInitScript(){
  314. if [[ -n "${SYSTEMCTL_CMD}" ]] && [[ ! -f "/etc/systemd/system/v2ray.service" && ! -f "/lib/systemd/system/v2ray.service" ]]; then
  315. cp "${VSRC_ROOT}/systemd/v2ray.service" "/etc/systemd/system/"
  316. systemctl enable v2ray.service
  317. elif [[ -n "${SERVICE_CMD}" ]] && [[ ! -f "/etc/init.d/v2ray" ]]; then
  318. installSoftware "daemon" || return $?
  319. cp "${VSRC_ROOT}/systemv/v2ray" "/etc/init.d/v2ray"
  320. chmod +x "/etc/init.d/v2ray"
  321. update-rc.d v2ray defaults
  322. fi
  323. }
  324. Help(){
  325. cat - 1>& 2 << EOF
  326. ./install-release.sh [-h] [-c] [--remove] [-p proxy] [-f] [--version vx.y.z] [-l file]
  327. -h, --help Show help
  328. -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
  329. -f, --force Force install
  330. --version Install a particular version, use --version v3.15
  331. -l, --local Install from a local file
  332. --remove Remove installed V2Ray
  333. -c, --check Check for update
  334. EOF
  335. }
  336. remove(){
  337. if [[ -n "${SYSTEMCTL_CMD}" ]] && [[ -f "/etc/systemd/system/v2ray.service" ]];then
  338. if pgrep "v2ray" > /dev/null ; then
  339. stopV2ray
  340. fi
  341. systemctl disable v2ray.service
  342. rm -rf "/usr/bin/v2ray" "/etc/systemd/system/v2ray.service"
  343. if [[ $? -ne 0 ]]; then
  344. colorEcho ${RED} "Failed to remove V2Ray."
  345. return 0
  346. else
  347. colorEcho ${GREEN} "Removed V2Ray successfully."
  348. colorEcho ${BLUE} "If necessary, please remove configuration file and log file manually."
  349. return 0
  350. fi
  351. elif [[ -n "${SYSTEMCTL_CMD}" ]] && [[ -f "/lib/systemd/system/v2ray.service" ]];then
  352. if pgrep "v2ray" > /dev/null ; then
  353. stopV2ray
  354. fi
  355. systemctl disable v2ray.service
  356. rm -rf "/usr/bin/v2ray" "/lib/systemd/system/v2ray.service"
  357. if [[ $? -ne 0 ]]; then
  358. colorEcho ${RED} "Failed to remove V2Ray."
  359. return 0
  360. else
  361. colorEcho ${GREEN} "Removed V2Ray successfully."
  362. colorEcho ${BLUE} "If necessary, please remove configuration file and log file manually."
  363. return 0
  364. fi
  365. elif [[ -n "${SERVICE_CMD}" ]] && [[ -f "/etc/init.d/v2ray" ]]; then
  366. if pgrep "v2ray" > /dev/null ; then
  367. stopV2ray
  368. fi
  369. rm -rf "/usr/bin/v2ray" "/etc/init.d/v2ray"
  370. if [[ $? -ne 0 ]]; then
  371. colorEcho ${RED} "Failed to remove V2Ray."
  372. return 0
  373. else
  374. colorEcho ${GREEN} "Removed V2Ray successfully."
  375. colorEcho ${BLUE} "If necessary, please remove configuration file and log file manually."
  376. return 0
  377. fi
  378. else
  379. colorEcho ${YELLOW} "V2Ray not found."
  380. return 0
  381. fi
  382. }
  383. checkUpdate(){
  384. echo "Checking for update."
  385. VERSION=""
  386. getVersion
  387. RETVAL="$?"
  388. if [[ $RETVAL -eq 1 ]]; then
  389. colorEcho ${BLUE} "Found new version ${NEW_VER} for V2Ray.(Current version:$CUR_VER)"
  390. elif [[ $RETVAL -eq 0 ]]; then
  391. colorEcho ${BLUE} "No new version. Current version is ${NEW_VER}."
  392. elif [[ $RETVAL -eq 2 ]]; then
  393. colorEcho ${YELLOW} "No V2Ray installed."
  394. colorEcho ${BLUE} "The newest version for V2Ray is ${NEW_VER}."
  395. fi
  396. return 0
  397. }
  398. main(){
  399. #helping information
  400. [[ "$HELP" == "1" ]] && Help && return
  401. [[ "$CHECK" == "1" ]] && checkUpdate && return
  402. [[ "$REMOVE" == "1" ]] && remove && return
  403. local ARCH=$(uname -m)
  404. VDIS="$(archAffix)"
  405. # extract local file
  406. if [[ $LOCAL_INSTALL -eq 1 ]]; then
  407. 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."
  408. NEW_VER=local
  409. installSoftware unzip || return $?
  410. rm -rf /tmp/v2ray
  411. extract $LOCAL || return $?
  412. #FILEVDIS=`ls /tmp/v2ray |grep v2ray-v |cut -d "-" -f4`
  413. #SYSTEM=`ls /tmp/v2ray |grep v2ray-v |cut -d "-" -f3`
  414. #if [[ ${SYSTEM} != "linux" ]]; then
  415. # colorEcho ${RED} "The local V2Ray can not be installed in linux."
  416. # return 1
  417. #elif [[ ${FILEVDIS} != ${VDIS} ]]; then
  418. # colorEcho ${RED} "The local V2Ray can not be installed in ${ARCH} system."
  419. # return 1
  420. #else
  421. # NEW_VER=`ls /tmp/v2ray |grep v2ray-v |cut -d "-" -f2`
  422. #fi
  423. else
  424. # download via network and extract
  425. installSoftware "curl" || return $?
  426. getVersion
  427. RETVAL="$?"
  428. if [[ $RETVAL == 0 ]] && [[ "$FORCE" != "1" ]]; then
  429. colorEcho ${BLUE} "Latest version ${CUR_VER} is already installed."
  430. if [ -n "${ERROR_IF_UPTODATE}" ]; then
  431. return 10
  432. fi
  433. return
  434. elif [[ $RETVAL == 3 ]]; then
  435. return 3
  436. else
  437. colorEcho ${BLUE} "Installing V2Ray ${NEW_VER} on ${ARCH}"
  438. downloadV2Ray || return $?
  439. installSoftware unzip || return $?
  440. extract ${ZIPFILE} || return $?
  441. fi
  442. fi
  443. if [ -n "${EXTRACT_ONLY}" ]; then
  444. colorEcho ${GREEN} "V2Ray extracted to ${VSRC_ROOT}, and exiting..."
  445. return 0
  446. fi
  447. if pgrep "v2ray" > /dev/null ; then
  448. V2RAY_RUNNING=1
  449. stopV2ray
  450. fi
  451. installV2Ray || return $?
  452. installInitScript || return $?
  453. if [[ ${V2RAY_RUNNING} -eq 1 ]];then
  454. colorEcho ${BLUE} "Restarting V2Ray service."
  455. startV2ray
  456. fi
  457. colorEcho ${GREEN} "V2Ray ${NEW_VER} is installed."
  458. rm -rf /tmp/v2ray
  459. return 0
  460. }
  461. main