init_ynh-hotspot 12 KB

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