ynh-hotspot 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585
  1. #!/bin/bash
  2. #
  3. # Wifi Hotspot app for YunoHost
  4. # Copyright (C) 2015 Julien Vaubourg <julien@vaubourg.com>
  5. # Contribute at https://github.com/labriqueinternet/hotspot_ynh
  6. #
  7. # This program is free software: you can redistribute it and/or modify
  8. # it under the terms of the GNU Affero General Public License as published by
  9. # the Free Software Foundation, either version 3 of the License, or
  10. # (at your option) any later version.
  11. #
  12. # This program is distributed in the hope that it will be useful,
  13. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. # GNU Affero General Public License for more details.
  16. #
  17. # You should have received a copy of the GNU Affero General Public License
  18. # along with this program. If not, see <http://www.gnu.org/licenses/>.
  19. # Functions
  20. ## State functions
  21. has_vpnclient_app() {
  22. [ -e /tmp/.ynh-vpnclient-started ]
  23. }
  24. has_ip6delegatedprefix() {
  25. i=${1}
  26. [ "${ynh_ip6_net[${i}]}" != none ]
  27. }
  28. is_nat_set() {
  29. internet_device=${1}
  30. iptables -nvt nat -L POSTROUTING | grep MASQUERADE | grep -q "${internet_device}"
  31. }
  32. is_ip4nataddr_set() {
  33. i=${1}
  34. if [ "${i}" -eq 0 ]; then
  35. dev=${ynh_wifi_device}
  36. else
  37. dev="hotspot${i}"
  38. fi
  39. ip address show dev "${dev}" 2> /dev/null | grep -q "${ynh_ip4_nat_prefix[${i}]}.1/24"
  40. }
  41. is_ip6addr_set() {
  42. i=${1}
  43. if [ "${i}" -eq 0 ]; then
  44. dev=${ynh_wifi_device}
  45. else
  46. dev="hotspot${i}"
  47. fi
  48. ip address show dev "${dev}" 2> /dev/null | grep -q "${ynh_ip6_addr[${i}]}/64"
  49. }
  50. is_forwarding_set() {
  51. ip6=$(sysctl net.ipv6.conf.all.forwarding | awk '{ print $NF; }')
  52. ip4=$(sysctl net.ipv4.conf.all.forwarding | awk '{ print $NF; }')
  53. [ "${ip6}" -eq 1 -a "${ip4}" -eq 1 ]
  54. }
  55. is_dhcpd6_running() {
  56. i=${1}
  57. $(ps aux | grep "dhcpdv6-ssid${i}" | grep -qv grep)
  58. }
  59. is_dhcpd4_running() {
  60. i=${1}
  61. $(ps aux | grep "dhcpdv4-ssid${i}" | grep -qv grep)
  62. }
  63. is_hostapd_running() {
  64. systemctl is-active hostapd &> /dev/null
  65. }
  66. is_running() {
  67. for i in $(seq 0 $((${ynh_multissid} - 1))); do
  68. ( has_ip6delegatedprefix ${i} && is_ip6addr_set ${i} && is_dhcpd6_running ${i} || ! has_ip6delegatedprefix ${i} )\
  69. && is_ip4nataddr_set ${i} && is_dhcpd4_running ${i}
  70. if [ ! $? -eq 0 ]; then
  71. return 1
  72. fi
  73. done
  74. is_hostapd_running && is_forwarding_set && is_nat_set "${new_internet_device}"
  75. }
  76. ## Setters
  77. set_nat() {
  78. internet_device=${1}
  79. iptables -t nat -A POSTROUTING -o "${internet_device}" -j MASQUERADE
  80. }
  81. set_ip4nataddr() {
  82. i=${1}
  83. if [ "${i}" -eq 0 ]; then
  84. dev=${ynh_wifi_device}
  85. else
  86. dev="hotspot${i}"
  87. fi
  88. ip address add "${ynh_ip4_nat_prefix[${i}]}.1/24" dev "${dev}"
  89. }
  90. set_ip6addr() {
  91. i=${1}
  92. if [ "${i}" -eq 0 ]; then
  93. dev=${ynh_wifi_device}
  94. else
  95. dev="hotspot${i}"
  96. fi
  97. ip address delete "${ynh_ip6_addr[${i}]}/64" dev tun0 &> /dev/null
  98. ip address add "${ynh_ip6_addr[${i}]}/64" dev "${dev}"
  99. }
  100. set_forwarding() {
  101. sysctl -w net.ipv6.conf.all.forwarding=1 > /dev/null
  102. sysctl -w net.ipv4.conf.all.forwarding=1 > /dev/null
  103. }
  104. start_dhcpd6() {
  105. i=${1}
  106. if [ "${i}" -eq 0 ]; then
  107. dev=${ynh_wifi_device}
  108. else
  109. dev="hotspot${i}"
  110. fi
  111. cp /etc/dnsmasq.dhcpd/dhcpdv6{.conf.tpl,-ssid${i}.conf}
  112. sed "s|<TPL:WIFI_DEVICE>|${dev}|g" -i /etc/dnsmasq.dhcpd/dhcpdv6-ssid${i}.conf
  113. sed "s|<TPL:IP6_NET>|${ynh_ip6_net[${i}]}|g" -i /etc/dnsmasq.dhcpd/dhcpdv6-ssid${i}.conf
  114. sed "s|<TPL:IP6_DNS0>|${ynh_ip6_dns0[${i}]}|g" -i /etc/dnsmasq.dhcpd/dhcpdv6-ssid${i}.conf
  115. sed "s|<TPL:IP6_DNS1>|${ynh_ip6_dns1[${i}]}|g" -i /etc/dnsmasq.dhcpd/dhcpdv6-ssid${i}.conf
  116. dnsmasq -C /etc/dnsmasq.dhcpd/dhcpdv6-ssid${i}.conf -p0
  117. }
  118. start_dhcpd4() {
  119. i=${1}
  120. if [ "${i}" -eq 0 ]; then
  121. dev=${ynh_wifi_device}
  122. else
  123. dev="hotspot${i}"
  124. fi
  125. cp /etc/dnsmasq.dhcpd/dhcpdv4{.conf.tpl,-ssid${i}.conf}
  126. sed "s|<TPL:IP4_DNS0>|${ynh_ip4_dns0[${i}]}|g" -i /etc/dnsmasq.dhcpd/dhcpdv4-ssid${i}.conf
  127. sed "s|<TPL:IP4_DNS1>|${ynh_ip4_dns1[${i}]}|g" -i /etc/dnsmasq.dhcpd/dhcpdv4-ssid${i}.conf
  128. sed "s|<TPL:WIFI_DEVICE>|${dev}|g" -i /etc/dnsmasq.dhcpd/dhcpdv4-ssid${i}.conf
  129. sed "s|<TPL:IP4_NAT_PREFIX>|${ynh_ip4_nat_prefix[${i}]}|g" -i /etc/dnsmasq.dhcpd/dhcpdv4-ssid${i}.conf
  130. dnsmasq -C /etc/dnsmasq.dhcpd/dhcpdv4-ssid${i}.conf -p0
  131. }
  132. start_hostapd() {
  133. cp /etc/hostapd/hostapd.conf{.tpl1,}
  134. ethaddr=$(ip link show dev "${ynh_wifi_device}" | grep link/ether | awk -F: '{ printf "02:%s:%s:%s:%s:00", $2, $3, $4, $5 }')
  135. ip link set addr "${ethaddr}" dev "${ynh_wifi_device}"
  136. sed "s|<TPL:WIFI_DEVICE>|${ynh_wifi_device}|g" -i /etc/hostapd/hostapd.conf
  137. sed "s|<TPL:WIFI_CHANNEL>|${ynh_wifi_channel}|g" -i /etc/hostapd/hostapd.conf
  138. sed "s|<TPL:N_COMMENT>||g" -i /etc/hostapd/hostapd.conf
  139. for i in $(seq 0 $((${ynh_multissid} - 1))); do
  140. cp /etc/hostapd/hostapd.conf{.tpl2,.tmp}
  141. sed "s|<TPL:WIFI_INTERFACE>|hotspot${i}|g" -i /etc/hostapd/hostapd.conf.tmp
  142. sed "s|<TPL:WIFI_SSID>|${ynh_wifi_ssid[${i}]}|g" -i /etc/hostapd/hostapd.conf.tmp
  143. sed "s|<TPL:WIFI_PASSPHRASE>|${ynh_wifi_passphrase[${i}]}|g" -i /etc/hostapd/hostapd.conf.tmp
  144. if [ "${ynh_wifi_secure[${i}]}" -eq 1 ]; then
  145. sed "s|<TPL:SEC_COMMENT>||g" -i /etc/hostapd/hostapd.conf.tmp
  146. else
  147. sed "s|<TPL:SEC_COMMENT>|#|g" -i /etc/hostapd/hostapd.conf.tmp
  148. fi
  149. if [ "${i}" -eq 0 ]; then
  150. sed "s|<TPL:BSS_COMMENT>|#|g" -i /etc/hostapd/hostapd.conf.tmp
  151. else
  152. sed "s|<TPL:BSS_COMMENT>||g" -i /etc/hostapd/hostapd.conf.tmp
  153. fi
  154. cat /etc/hostapd/hostapd.conf.tmp >> /etc/hostapd/hostapd.conf
  155. rm /etc/hostapd/hostapd.conf.tmp
  156. done
  157. systemctl start hostapd
  158. }
  159. ## Unsetters
  160. unset_nat() {
  161. internet_device=${1}
  162. iptables -t nat -D POSTROUTING -o "${internet_device}" -j MASQUERADE
  163. }
  164. unset_ip4nataddr() {
  165. i=${1}
  166. if [ "${i}" -eq 0 ]; then
  167. dev=${ynh_wifi_device}
  168. else
  169. dev="hotspot${i}"
  170. fi
  171. ip address delete "${ynh_ip4_nat_prefix[${i}]}.1/24" dev "${dev}"
  172. }
  173. unset_ip6addr() {
  174. i=${1}
  175. if [ "${i}" -eq 0 ]; then
  176. dev=${ynh_wifi_device}
  177. else
  178. dev="hotspot${i}"
  179. fi
  180. ip address delete "${ynh_ip6_addr[${i}]}/64" dev "${dev}"
  181. }
  182. unset_forwarding() {
  183. sysctl -w net.ipv6.conf.all.forwarding=0 > /dev/null
  184. sysctl -w net.ipv4.conf.all.forwarding=0 > /dev/null
  185. }
  186. stop_dhcpd6() {
  187. kill $(ps aux | grep 'dhcpdv6-ssid' | grep -v grep | awk '{ print $2 }')
  188. rm -f /etc/dnsmasq.d/dhcpdv6-ssid*.conf
  189. }
  190. stop_dhcpd4() {
  191. kill $(ps aux | grep 'dhcpdv4-ssid' | grep -v grep | awk '{ print $2 }')
  192. rm -f /etc/dnsmasq.d/dhcpdv4-ssid*.conf
  193. }
  194. stop_hostapd() {
  195. systemctl stop hostapd
  196. }
  197. ## Tools
  198. moulinette_get() {
  199. var=${1}
  200. gotcha=0
  201. while [ "${gotcha}" -eq 0 ]; do
  202. value=$(yunohost app setting hotspot "${var}")
  203. if [[ "${value}" =~ "An instance is already running" ]]; then
  204. sleep $(($((RANDOM%5)) + 1))
  205. else
  206. gotcha=1
  207. fi
  208. done
  209. echo "${value}"
  210. }
  211. moulinette_vpnclient_get() {
  212. var=${1}
  213. gotcha=0
  214. while [ "${gotcha}" -eq 0 ]; do
  215. value=$(yunohost app setting vpnclient "${var}")
  216. if [[ "${value}" =~ "An instance is already running" ]]; then
  217. sleep $(($((RANDOM%5)) + 1))
  218. else
  219. gotcha=1
  220. fi
  221. done
  222. echo "${value}"
  223. }
  224. moulinette_set() {
  225. var=${1}
  226. value=${2}
  227. msg=$(yunohost app setting hotspot "${var}" -v "${value}")
  228. if [ ! $? -eq 0 ]; then
  229. echo "${msg}" >&2
  230. exit 1
  231. fi
  232. }
  233. if [ "$1" != restart ]; then
  234. # Restart php5-fpm at the first start (it needs to be restarted after the slapd start)
  235. if [ ! -e /tmp/.ynh-hotspot-boot ]; then
  236. touch /tmp/.ynh-hotspot-boot
  237. systemctl restart php5-fpm
  238. fi
  239. # Variables
  240. echo -n "Retrieving Yunohost settings... "
  241. ynh_service_enabled=$(moulinette_get service_enabled)
  242. ynh_wifi_device=$(moulinette_get wifi_device)
  243. ynh_wifi_channel=$(moulinette_get wifi_channel)
  244. ynh_multissid=$(moulinette_get multissid)
  245. IFS='|' read -a ynh_wifi_ssid <<< "$(moulinette_get wifi_ssid)"
  246. IFS='|' read -a ynh_wifi_secure <<< "$(moulinette_get wifi_secure)"
  247. IFS='|' read -a ynh_wifi_passphrase <<< "$(moulinette_get wifi_passphrase)"
  248. IFS='|' read -a ynh_ip6_addr <<< "$(moulinette_get ip6_addr)"
  249. IFS='|' read -a ynh_ip6_net <<< "$(moulinette_get ip6_net)"
  250. IFS='|' read -a ynh_ip6_dns0 <<< "$(moulinette_get ip6_dns0)"
  251. IFS='|' read -a ynh_ip6_dns1 <<< "$(moulinette_get ip6_dns1)"
  252. IFS='|' read -a ynh_ip4_dns0 <<< "$(moulinette_get ip4_dns0)"
  253. IFS='|' read -a ynh_ip4_dns1 <<< "$(moulinette_get ip4_dns1)"
  254. IFS='|' read -a ynh_ip4_nat_prefix <<< "$(moulinette_get ip4_nat_prefix)"
  255. old_internet_device=$(moulinette_get internet_device)
  256. new_internet_device=$(ip route | awk '/default via/ { print $NF; }')
  257. # Switch the NAT interface if there is a VPN
  258. ip link show dev tun0 &> /dev/null
  259. if [ "$?" -eq 0 ]; then
  260. new_internet_device=tun0
  261. fi
  262. echo "OK"
  263. # Check IPv6 delegated prefix from vpnclient
  264. # vpnclient_ip6_net=$(moulinette_vpnclient_get ip6_net)
  265. #
  266. # if [ ! -z "${vpnclient_ip6_addr}" ]; then
  267. # if [ "${ynh_ip6_net}" == none ]; then
  268. # ynh_ip6_net=$vpnclient_ip6_net
  269. # ynh_ip6_addr=$(moulinette_vpnclient_get ip6_addr)
  270. #
  271. # moulinette_set ip6_net "${ynh_ip6_net}"
  272. # moulinette_set ip6_addr "${ynh_ip6_addr}"
  273. # else
  274. # if [ "${ynh_ip6_net}" != "${vpnclient_ip6_net}" ]; then
  275. # echo "[WARN] The IPv6 delegated prefix is different from the vpnclient one"
  276. # fi
  277. # fi
  278. # fi
  279. fi
  280. # Script
  281. case "$1" in
  282. start)
  283. if is_running; then
  284. echo "Already started"
  285. elif [ "${ynh_service_enabled}" -eq 0 ]; then
  286. echo "Disabled service"
  287. else
  288. echo "[hotspot] Starting..."
  289. touch /tmp/.ynh-hotspot-started
  290. if [ "${new_internet_device}" == tun0 ]; then
  291. moulinette_set vpnclient yes
  292. else
  293. moulinette_set vpnclient no
  294. fi
  295. # Check old state of the ipv4 NAT settings
  296. if [ ! -z "${old_internet_device}" -a "${new_internet_device}" != "${old_internet_device}" ]\
  297. && is_nat_set "${old_internet_device}"; then
  298. unset_nat "${old_internet_device}"
  299. fi
  300. # Set ipv4 NAT
  301. if ! is_nat_set "${new_internet_device}"; then
  302. echo "Set NAT"
  303. set_nat "${new_internet_device}"
  304. fi
  305. # Set forwarding for ipv6 and ipv4
  306. if ! is_forwarding_set; then
  307. echo "Set forwarding"
  308. set_forwarding
  309. fi
  310. # Run hostapd
  311. if ! is_hostapd_running; then
  312. echo "Run hostapd"
  313. start_hostapd ${i}
  314. if [ ! $? -eq 0 ]; then
  315. exit 1
  316. fi
  317. if [ "${ynh_multissid}" -gt 1 ]; then
  318. i=0; false || while [ $? -ne 0 ]; do
  319. sleep 1 && (( i++ ))
  320. [ ${i} -gt 20 ] && stop_hostapd
  321. [ ${i} -gt 20 ] && exit 1
  322. ip link show dev hotspot1 &> /dev/null
  323. done
  324. else
  325. sleep 1
  326. fi
  327. fi
  328. # For each registred ssid
  329. for i in $(seq 0 $((${ynh_multissid} - 1))); do
  330. # Set ipv4 NAT address
  331. if ! is_ip4nataddr_set ${i}; then
  332. echo "hotspot${i}: Set IPv4 NAT address"
  333. set_ip4nataddr ${i}
  334. fi
  335. # Set the ipv6 address
  336. if has_ip6delegatedprefix ${i} && ! is_ip6addr_set ${i}; then
  337. echo "hotspot${i}: Set IPv6 address"
  338. set_ip6addr ${i}
  339. fi
  340. # Run DHCPv6 server
  341. if has_ip6delegatedprefix ${i} && ! is_dhcpd6_running ${i}; then
  342. echo "hotspot${i}: Start the NDP and DHCPv6 server (dnsmasq)"
  343. start_dhcpd6 ${i}
  344. fi
  345. # Run DHCPv4 server
  346. if ! is_dhcpd4_running ${i}; then
  347. echo "hotspot${i}: Start the DHCPv4 server (dnsmasq)"
  348. start_dhcpd4 ${i}
  349. fi
  350. done
  351. # Update dynamic settings
  352. moulinette_set internet_device "${new_internet_device}"
  353. fi
  354. ;;
  355. stop)
  356. echo "[hotspot] Stopping..."
  357. rm -f /tmp/.ynh-hotspot-started
  358. if is_nat_set "${old_internet_device}"; then
  359. echo "Unset NAT"
  360. unset_nat "${old_internet_device}"
  361. fi
  362. if is_forwarding_set; then
  363. echo "Unset forwarding"
  364. unset_forwarding
  365. fi
  366. for i in $(seq 0 $((${ynh_multissid} - 1))); do
  367. if is_ip4nataddr_set ${i}; then
  368. echo "hotspot${i}: Unset IPv4 NAT address"
  369. unset_ip4nataddr ${i}
  370. fi
  371. if has_ip6delegatedprefix ${i} && is_ip6addr_set ${i}; then
  372. echo "hotspot${i}: Unset IPv6 address"
  373. unset_ip6addr ${i}
  374. fi
  375. if is_dhcpd6_running ${i}; then
  376. echo "hotspot${i}: Stop the NDP and DHCPv6 server (dnsmasq)"
  377. stop_dhcpd6 ${i}
  378. fi
  379. if is_dhcpd4_running ${i}; then
  380. echo "hotspot${i}: Stop the DHCPv4 server (dnsmasq)"
  381. stop_dhcpd4 ${i}
  382. fi
  383. done
  384. if is_hostapd_running; then
  385. echo "Stop hostapd"
  386. stop_hostapd
  387. fi
  388. # Fix configuration
  389. if has_vpnclient_app; then
  390. ynh-vpnclient start
  391. fi
  392. ;;
  393. restart)
  394. $0 stop
  395. $0 start
  396. ;;
  397. status)
  398. exitcode=0
  399. if [ "${ynh_service_enabled}" -eq 0 ]; then
  400. echo "[ERR] Hotspot Service disabled"
  401. exitcode=1
  402. fi
  403. echo "[INFO] Autodetected internet interface: ${new_internet_device} (last start: ${old_internet_device})"
  404. if is_nat_set "${new_internet_device}"; then
  405. echo "[OK] IPv4 NAT set"
  406. else
  407. echo "[ERR] No IPv4 NAT set"
  408. exitcode=1
  409. fi
  410. if is_forwarding_set; then
  411. echo "[OK] IPv6/IPv4 forwarding set"
  412. else
  413. echo "[ERR] No IPv6/IPv4 forwarding set"
  414. exitcode=1
  415. fi
  416. if is_hostapd_running; then
  417. echo "[OK] Hostapd is running"
  418. else
  419. echo "[ERR] Hostapd is not running"
  420. exitcode=1
  421. fi
  422. for i in $(seq 0 $((${ynh_multissid} - 1))); do
  423. if has_ip6delegatedprefix ${i}; then
  424. echo "[INFO] hotspot${i}: IPv6 delegated prefix found"
  425. echo "[INFO] hotspot${i}: IPv6 address computed from the delegated prefix: ${ynh_ip6_addr}"
  426. if is_ip6addr_set ${i}; then
  427. echo "[OK] hotspot${i}: IPv6 address set"
  428. else
  429. echo "[ERR] hotspot${i}: No IPv6 address set"
  430. exitcode=1
  431. fi
  432. if is_dhcpd6_running ${i}; then
  433. echo "[OK] hotspot${i}: NDP and DHCPv6 server (dnsmasq) is running"
  434. else
  435. echo "[ERR] hotspot${i}: NDP and DHCPv6 server (dnsmasq) is not running"
  436. exitcode=1
  437. fi
  438. else
  439. echo "[INFO] hotspot${i}: No IPv6 delegated prefix found"
  440. fi
  441. if is_dhcpd4_running ${i}; then
  442. echo "[OK] hotspot${i}: DHCPv4 server (dnsmasq) is running"
  443. else
  444. echo "[ERR] hotspot${i}: NDP and DHCPv4 (dnsmasq) is not running"
  445. exitcode=1
  446. fi
  447. if is_ip4nataddr_set ${i}; then
  448. echo "[OK] hotspot${i}: IPv4 NAT address set"
  449. else
  450. echo "[ERR] hotspot${i}: No IPv4 NAT address set"
  451. exitcode=1
  452. fi
  453. done
  454. exit ${exitcode}
  455. ;;
  456. *)
  457. echo "Usage: $0 {start|stop|restart|status}"
  458. exit 1
  459. ;;
  460. esac
  461. exit 0